@serve.zone/interfaces 1.0.16 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '1.0.
|
|
6
|
+
version: '1.0.18',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
package/dist_ts/data/secret.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ export interface ISecretGroup {
|
|
|
4
4
|
*/
|
|
5
5
|
id: string;
|
|
6
6
|
data: {
|
|
7
|
+
name: string;
|
|
8
|
+
description: string;
|
|
7
9
|
/**
|
|
8
10
|
* the key of the secretgroup like CI_RUNNER_TOKEN
|
|
9
11
|
*/
|
|
@@ -47,7 +49,8 @@ export interface ISecretGroup {
|
|
|
47
49
|
export interface ISecretBundle {
|
|
48
50
|
id: string;
|
|
49
51
|
data: {
|
|
50
|
-
|
|
52
|
+
name: string;
|
|
53
|
+
description: string;
|
|
51
54
|
/**
|
|
52
55
|
* You can add specific secret groups using this
|
|
53
56
|
*/
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/secret.ts
CHANGED
|
@@ -5,6 +5,9 @@ export interface ISecretGroup {
|
|
|
5
5
|
id: string;
|
|
6
6
|
|
|
7
7
|
data: {
|
|
8
|
+
name: string;
|
|
9
|
+
description: string;
|
|
10
|
+
|
|
8
11
|
/**
|
|
9
12
|
* the key of the secretgroup like CI_RUNNER_TOKEN
|
|
10
13
|
*/
|
|
@@ -53,7 +56,9 @@ export interface ISecretGroup {
|
|
|
53
56
|
export interface ISecretBundle {
|
|
54
57
|
id: string;
|
|
55
58
|
data: {
|
|
56
|
-
|
|
59
|
+
name: string;
|
|
60
|
+
description: string;
|
|
61
|
+
|
|
57
62
|
/**
|
|
58
63
|
* You can add specific secret groups using this
|
|
59
64
|
*/
|