@serve.zone/interfaces 1.0.79 → 1.0.81
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.81',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
|
@@ -4,16 +4,10 @@ export interface ICluster {
|
|
|
4
4
|
id: string;
|
|
5
5
|
data: {
|
|
6
6
|
name: string;
|
|
7
|
-
initialJumpToken: string;
|
|
8
7
|
/**
|
|
9
8
|
* a cluster has a machine user that governs access rights.
|
|
10
9
|
*/
|
|
11
10
|
userId: string;
|
|
12
|
-
/**
|
|
13
|
-
* when was the jump code used
|
|
14
|
-
* avoid replay attacks
|
|
15
|
-
*/
|
|
16
|
-
initialJumpTokenUsedAt?: number;
|
|
17
11
|
/**
|
|
18
12
|
* how can the cluster reach cloudly
|
|
19
13
|
*/
|
|
@@ -3,7 +3,7 @@ import * as userInterfaces from '../data/user.js';
|
|
|
3
3
|
/**
|
|
4
4
|
* get the identity that then will be used to get the config
|
|
5
5
|
*/
|
|
6
|
-
export interface
|
|
6
|
+
export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken> {
|
|
7
7
|
method: 'getIdentityByToken';
|
|
8
8
|
request: {
|
|
9
9
|
token: string;
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/cluster.ts
CHANGED
|
@@ -7,18 +7,11 @@ export interface ICluster {
|
|
|
7
7
|
id: string;
|
|
8
8
|
data: {
|
|
9
9
|
name: string;
|
|
10
|
-
initialJumpToken: string;
|
|
11
10
|
|
|
12
11
|
/**
|
|
13
12
|
* a cluster has a machine user that governs access rights.
|
|
14
13
|
*/
|
|
15
14
|
userId: string;
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* when was the jump code used
|
|
19
|
-
* avoid replay attacks
|
|
20
|
-
*/
|
|
21
|
-
initialJumpTokenUsedAt?: number;
|
|
22
15
|
|
|
23
16
|
/**
|
|
24
17
|
* how can the cluster reach cloudly
|
package/ts/requests/identity.ts
CHANGED
|
@@ -8,10 +8,10 @@ import * as userInterfaces from '../data/user.js'
|
|
|
8
8
|
/**
|
|
9
9
|
* get the identity that then will be used to get the config
|
|
10
10
|
*/
|
|
11
|
-
export interface
|
|
11
|
+
export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken
|
|
12
12
|
extends plugins.typedrequestInterfaces.implementsTR<
|
|
13
13
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
14
|
-
|
|
14
|
+
IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken
|
|
15
15
|
> {
|
|
16
16
|
method: 'getIdentityByToken';
|
|
17
17
|
request: {
|