fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-04 20:17:51 +01:00
parent fe2cfa9c61
commit c9df3d1d9b
2 changed files with 7 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/interfaces', name: '@serve.zone/interfaces',
version: '1.0.16', version: '1.0.17',
description: 'interfaces for working with containers' description: 'interfaces for working with containers'
} }

View File

@ -5,6 +5,9 @@ export interface ISecretGroup {
id: string; id: string;
data: { data: {
name: string;
description: string;
/** /**
* the key of the secretgroup like CI_RUNNER_TOKEN * the key of the secretgroup like CI_RUNNER_TOKEN
*/ */
@ -53,7 +56,9 @@ export interface ISecretGroup {
export interface ISecretBundle { export interface ISecretBundle {
id: string; id: string;
data: { data: {
purpose: string; name: string;
description: string;
/** /**
* You can add specific secret groups using this * You can add specific secret groups using this
*/ */