@serve.zone/interfaces 1.0.44 → 1.0.45
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.45',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
package/dist_ts/plugins.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as typedrequestInterfaces from '@
|
|
1
|
+
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
|
|
2
2
|
export { typedrequestInterfaces };
|
|
3
3
|
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
|
|
4
4
|
export { smartlogInterfaces, };
|
package/dist_ts/plugins.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// @apiglobal scope
|
|
2
|
-
import * as typedrequestInterfaces from '@
|
|
2
|
+
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
|
|
3
3
|
export { typedrequestInterfaces };
|
|
4
4
|
// @push.rocks scope
|
|
5
5
|
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
|
|
@@ -7,4 +7,4 @@ export { smartlogInterfaces, };
|
|
|
7
7
|
// tsclass scope
|
|
8
8
|
import * as tsclass from '@tsclass/tsclass';
|
|
9
9
|
export { tsclass };
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGx1Z2lucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3BsdWdpbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsbUJBQW1CO0FBQ25CLE9BQU8sS0FBSyxzQkFBc0IsTUFBTSxxQ0FBcUMsQ0FBQztBQUU5RSxPQUFPLEVBQ0wsc0JBQXNCLEVBQ3ZCLENBQUE7QUFFRCxvQkFBb0I7QUFDcEIsT0FBTyxLQUFLLGtCQUFrQixNQUFNLGlDQUFpQyxDQUFDO0FBRXRFLE9BQU8sRUFDTCxrQkFBa0IsR0FDbkIsQ0FBQTtBQUVELGdCQUFnQjtBQUNoQixPQUFPLEtBQUssT0FBTyxNQUFNLGtCQUFrQixDQUFDO0FBRTVDLE9BQU8sRUFDTCxPQUFPLEVBQ1IsQ0FBQSJ9
|
|
@@ -6,23 +6,19 @@ export interface IRequest_PushImage extends plugins.typedrequestInterfaces.imple
|
|
|
6
6
|
jwt: string;
|
|
7
7
|
image: string;
|
|
8
8
|
version: string;
|
|
9
|
-
|
|
9
|
+
imageStream?: plugins.typedrequestInterfaces.IVirtualStream;
|
|
10
10
|
chunk: Buffer;
|
|
11
11
|
};
|
|
12
|
-
response: {
|
|
13
|
-
transferId: string;
|
|
14
|
-
};
|
|
12
|
+
response: {};
|
|
15
13
|
}
|
|
16
14
|
export interface IRequest_DownloadImage extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_DownloadImage> {
|
|
17
|
-
method: '
|
|
15
|
+
method: 'pullImage';
|
|
18
16
|
request: {
|
|
19
17
|
jwt: string;
|
|
20
18
|
image: string;
|
|
21
19
|
version: string;
|
|
22
|
-
transferId: string;
|
|
23
20
|
};
|
|
24
21
|
response: {
|
|
25
|
-
|
|
26
|
-
chunk: Buffer;
|
|
22
|
+
imageStream: plugins.typedrequestInterfaces.IVirtualStream;
|
|
27
23
|
};
|
|
28
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serve.zone/interfaces",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.45",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "interfaces for working with containers",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@types/node": "^20.11.24"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@
|
|
18
|
+
"@api.global/typedrequest-interfaces": "^3.0.18",
|
|
19
19
|
"@push.rocks/smartlog-interfaces": "^3.0.0",
|
|
20
20
|
"@tsclass/tsclass": "^4.0.52"
|
|
21
21
|
},
|
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/plugins.ts
CHANGED
package/ts/requests/image.ts
CHANGED
|
@@ -9,11 +9,10 @@ export interface IRequest_PushImage extends plugins.typedrequestInterfaces.imple
|
|
|
9
9
|
jwt: string;
|
|
10
10
|
image: string;
|
|
11
11
|
version: string;
|
|
12
|
-
|
|
12
|
+
imageStream?: plugins.typedrequestInterfaces.IVirtualStream;
|
|
13
13
|
chunk: Buffer;
|
|
14
14
|
};
|
|
15
15
|
response: {
|
|
16
|
-
transferId: string;
|
|
17
16
|
};
|
|
18
17
|
}
|
|
19
18
|
|
|
@@ -21,15 +20,13 @@ export interface IRequest_DownloadImage extends plugins.typedrequestInterfaces.i
|
|
|
21
20
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
22
21
|
IRequest_DownloadImage
|
|
23
22
|
> {
|
|
24
|
-
method: '
|
|
23
|
+
method: 'pullImage';
|
|
25
24
|
request: {
|
|
26
25
|
jwt: string;
|
|
27
26
|
image: string;
|
|
28
27
|
version: string;
|
|
29
|
-
transferId: string;
|
|
30
28
|
};
|
|
31
29
|
response: {
|
|
32
|
-
|
|
33
|
-
chunk: Buffer;
|
|
30
|
+
imageStream: plugins.typedrequestInterfaces.IVirtualStream;
|
|
34
31
|
};
|
|
35
32
|
}
|