@serve.zone/interfaces 1.0.75 → 1.0.76

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.75',
6
+ version: '1.0.76',
7
7
  description: 'interfaces for working with containers'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
@@ -5,6 +5,10 @@ export interface ICluster {
5
5
  data: {
6
6
  name: string;
7
7
  initialJumpToken: string;
8
+ /**
9
+ * a cluster has a machine user that governs access rights.
10
+ */
11
+ userId: string;
8
12
  /**
9
13
  * when was the jump code used
10
14
  * avoid replay attacks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "private": false,
5
5
  "description": "interfaces for working with containers",
6
6
  "main": "dist_ts/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.75',
6
+ version: '1.0.76',
7
7
  description: 'interfaces for working with containers'
8
8
  }
@@ -9,6 +9,11 @@ export interface ICluster {
9
9
  name: string;
10
10
  initialJumpToken: string;
11
11
 
12
+ /**
13
+ * a cluster has a machine user that governs access rights.
14
+ */
15
+ userId: string;
16
+
12
17
  /**
13
18
  * when was the jump code used
14
19
  * avoid replay attacks