@serve.zone/interfaces 1.0.53 → 1.0.56
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.56',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as plugins from '../plugins.js';
|
|
2
2
|
import type { IServer } from './server.js';
|
|
3
3
|
export interface IClusterIdentifier {
|
|
4
|
+
clusterId: string;
|
|
4
5
|
clusterName: string;
|
|
5
|
-
|
|
6
|
+
jwt: string;
|
|
6
7
|
}
|
|
7
8
|
export interface ICluster {
|
|
8
9
|
id: string;
|
|
9
10
|
data: {
|
|
10
11
|
name: string;
|
|
11
|
-
secretKey: string;
|
|
12
12
|
jumpCode: string;
|
|
13
13
|
/**
|
|
14
14
|
* when was the jump code used
|
|
@@ -18,7 +18,7 @@ export interface ICluster {
|
|
|
18
18
|
/**
|
|
19
19
|
* how can the cluster reach cloudly
|
|
20
20
|
*/
|
|
21
|
-
cloudlyUrl
|
|
21
|
+
cloudlyUrl?: string;
|
|
22
22
|
/**
|
|
23
23
|
* what servers are expected to be part of the cluster
|
|
24
24
|
*/
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/cluster.ts
CHANGED
|
@@ -4,15 +4,15 @@ import { type IDockerRegistryInfo } from '../data/docker.js';
|
|
|
4
4
|
import type { IServer } from './server.js';
|
|
5
5
|
|
|
6
6
|
export interface IClusterIdentifier {
|
|
7
|
+
clusterId: string;
|
|
7
8
|
clusterName: string;
|
|
8
|
-
|
|
9
|
+
jwt: string;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
export interface ICluster {
|
|
12
13
|
id: string;
|
|
13
14
|
data: {
|
|
14
15
|
name: string;
|
|
15
|
-
secretKey: string;
|
|
16
16
|
jumpCode: string;
|
|
17
17
|
|
|
18
18
|
/**
|
|
@@ -24,7 +24,7 @@ export interface ICluster {
|
|
|
24
24
|
/**
|
|
25
25
|
* how can the cluster reach cloudly
|
|
26
26
|
*/
|
|
27
|
-
cloudlyUrl
|
|
27
|
+
cloudlyUrl?: string;
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
* what servers are expected to be part of the cluster
|