@serve.zone/interfaces 1.0.38 → 1.0.42
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.42',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
package/dist_ts/data/index.d.ts
CHANGED
package/dist_ts/data/index.js
CHANGED
|
@@ -5,10 +5,11 @@ export * from './deployment.js';
|
|
|
5
5
|
export * from './docker.js';
|
|
6
6
|
export * from './env.js';
|
|
7
7
|
export * from './event.js';
|
|
8
|
+
export * from './image.js';
|
|
8
9
|
export * from './secret.js';
|
|
9
10
|
export * from './server.js';
|
|
10
11
|
export * from './service.js';
|
|
11
12
|
export * from './status.js';
|
|
12
13
|
export * from './traffic.js';
|
|
13
14
|
export * from './version.js';
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9kYXRhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGFBQWEsQ0FBQTtBQUMzQixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGNBQWMsQ0FBQyJ9
|
|
@@ -5,7 +5,8 @@ import type { IService } from '../data/service.js';
|
|
|
5
5
|
export interface IRequest_Any_Cloudly_GetServerConfig extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_GetServerConfig> {
|
|
6
6
|
method: 'getServerConfig';
|
|
7
7
|
request: {
|
|
8
|
-
|
|
8
|
+
jwt: string;
|
|
9
|
+
serverId: string;
|
|
9
10
|
};
|
|
10
11
|
response: {
|
|
11
12
|
configData: serverInterfaces.IServer;
|
|
@@ -14,6 +15,7 @@ export interface IRequest_Any_Cloudly_GetServerConfig extends plugins.typedreque
|
|
|
14
15
|
export interface IRequest_Any_Cloudly_GetClusterConfig extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_GetClusterConfig> {
|
|
15
16
|
method: 'getClusterConfig';
|
|
16
17
|
request: {
|
|
18
|
+
jwt: string;
|
|
17
19
|
clusterIdentifier: clusterInterfaces.IClusterIdentifier;
|
|
18
20
|
};
|
|
19
21
|
response: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serve.zone/interfaces",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.42",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "interfaces for working with containers",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"@git.zone/tsbundle": "^2.0.8",
|
|
13
13
|
"@git.zone/tstest": "^1.0.77",
|
|
14
14
|
"@push.rocks/tapbundle": "^5.0.8",
|
|
15
|
-
"@types/node": "^20.11.
|
|
15
|
+
"@types/node": "^20.11.24"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@apiglobal/typedrequest-interfaces": "^2.0.1",
|
|
19
19
|
"@push.rocks/smartlog-interfaces": "^3.0.0",
|
|
20
|
-
"@tsclass/tsclass": "^4.0.
|
|
20
|
+
"@tsclass/tsclass": "^4.0.52"
|
|
21
21
|
},
|
|
22
22
|
"browserslist": [
|
|
23
23
|
"last 1 chrome versions"
|
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/index.ts
CHANGED
package/ts/requests/config.ts
CHANGED
|
@@ -10,7 +10,8 @@ extends plugins.typedrequestInterfaces.implementsTR<
|
|
|
10
10
|
> {
|
|
11
11
|
method: 'getServerConfig';
|
|
12
12
|
request: {
|
|
13
|
-
|
|
13
|
+
jwt: string;
|
|
14
|
+
serverId: string;
|
|
14
15
|
};
|
|
15
16
|
response: {
|
|
16
17
|
configData: serverInterfaces.IServer;
|
|
@@ -24,6 +25,7 @@ extends plugins.typedrequestInterfaces.implementsTR<
|
|
|
24
25
|
> {
|
|
25
26
|
method: 'getClusterConfig';
|
|
26
27
|
request: {
|
|
28
|
+
jwt: string;
|
|
27
29
|
clusterIdentifier: clusterInterfaces.IClusterIdentifier;
|
|
28
30
|
};
|
|
29
31
|
response: {
|