@serve.zone/interfaces 1.0.15 → 1.0.18
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.
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/data/secret.d.ts +4 -1
- package/dist_ts/plugins.d.ts +2 -0
- package/dist_ts/plugins.js +4 -1
- package/dist_ts/requests/index.d.ts +3 -1
- package/dist_ts/requests/index.js +4 -2
- package/dist_ts/requests/log.d.ts +9 -0
- package/dist_ts/requests/log.js +2 -0
- package/package.json +2 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/data/secret.ts +6 -1
- package/ts/plugins.ts +7 -0
- package/ts/requests/index.ts +4 -0
- package/ts/requests/log.ts +13 -0
|
@@ -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.18',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
package/dist_ts/data/secret.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ export interface ISecretGroup {
|
|
|
4
4
|
*/
|
|
5
5
|
id: string;
|
|
6
6
|
data: {
|
|
7
|
+
name: string;
|
|
8
|
+
description: string;
|
|
7
9
|
/**
|
|
8
10
|
* the key of the secretgroup like CI_RUNNER_TOKEN
|
|
9
11
|
*/
|
|
@@ -47,7 +49,8 @@ export interface ISecretGroup {
|
|
|
47
49
|
export interface ISecretBundle {
|
|
48
50
|
id: string;
|
|
49
51
|
data: {
|
|
50
|
-
|
|
52
|
+
name: string;
|
|
53
|
+
description: string;
|
|
51
54
|
/**
|
|
52
55
|
* You can add specific secret groups using this
|
|
53
56
|
*/
|
package/dist_ts/plugins.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
|
|
2
2
|
export { typedrequestInterfaces };
|
|
3
|
+
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
|
|
4
|
+
export { smartlogInterfaces, };
|
|
3
5
|
import * as tsclass from '@tsclass/tsclass';
|
|
4
6
|
export { tsclass };
|
package/dist_ts/plugins.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
// @apiglobal scope
|
|
2
2
|
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
|
|
3
3
|
export { typedrequestInterfaces };
|
|
4
|
+
// @push.rocks scope
|
|
5
|
+
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
|
|
6
|
+
export { smartlogInterfaces, };
|
|
4
7
|
// tsclass scope
|
|
5
8
|
import * as tsclass from '@tsclass/tsclass';
|
|
6
9
|
export { tsclass };
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGx1Z2lucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3BsdWdpbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsbUJBQW1CO0FBQ25CLE9BQU8sS0FBSyxzQkFBc0IsTUFBTSxvQ0FBb0MsQ0FBQztBQUU3RSxPQUFPLEVBQ0wsc0JBQXNCLEVBQ3ZCLENBQUE7QUFFRCxvQkFBb0I7QUFDcEIsT0FBTyxLQUFLLGtCQUFrQixNQUFNLGlDQUFpQyxDQUFDO0FBRXRFLE9BQU8sRUFDTCxrQkFBa0IsR0FDbkIsQ0FBQTtBQUVELGdCQUFnQjtBQUNoQixPQUFPLEtBQUssT0FBTyxNQUFNLGtCQUFrQixDQUFDO0FBRTVDLE9BQU8sRUFDTCxPQUFPLEVBQ1IsQ0FBQSJ9
|
|
@@ -2,11 +2,13 @@ import * as certificateRequests from './certificate.js';
|
|
|
2
2
|
import * as clusterRequests from './cluster.js';
|
|
3
3
|
import * as configRequests from './config.js';
|
|
4
4
|
import * as identityRequests from './identity.js';
|
|
5
|
+
import * as informRequests from './inform.js';
|
|
6
|
+
import * as logRequests from './log.js';
|
|
5
7
|
import * as networkRequests from './network.js';
|
|
6
8
|
import * as routingRequests from './routing.js';
|
|
7
9
|
import * as secretRequests from './secret.js';
|
|
8
10
|
import * as serverRequests from './server.js';
|
|
9
11
|
import * as statusRequests from './status.js';
|
|
10
12
|
import * as versionRequests from './version.js';
|
|
11
|
-
export { certificateRequests as certificate, clusterRequests as cluster, configRequests as config, identityRequests as identity, networkRequests as network, routingRequests as routing, secretRequests as secret, serverRequests as server, statusRequests as status, versionRequests as version, };
|
|
13
|
+
export { certificateRequests as certificate, clusterRequests as cluster, configRequests as config, identityRequests as identity, informRequests as inform, logRequests as log, networkRequests as network, routingRequests as routing, secretRequests as secret, serverRequests as server, statusRequests as status, versionRequests as version, };
|
|
12
14
|
export * from './inform.js';
|
|
@@ -3,12 +3,14 @@ import * as certificateRequests from './certificate.js';
|
|
|
3
3
|
import * as clusterRequests from './cluster.js';
|
|
4
4
|
import * as configRequests from './config.js';
|
|
5
5
|
import * as identityRequests from './identity.js';
|
|
6
|
+
import * as informRequests from './inform.js';
|
|
7
|
+
import * as logRequests from './log.js';
|
|
6
8
|
import * as networkRequests from './network.js';
|
|
7
9
|
import * as routingRequests from './routing.js';
|
|
8
10
|
import * as secretRequests from './secret.js';
|
|
9
11
|
import * as serverRequests from './server.js';
|
|
10
12
|
import * as statusRequests from './status.js';
|
|
11
13
|
import * as versionRequests from './version.js';
|
|
12
|
-
export { certificateRequests as certificate, clusterRequests as cluster, configRequests as config, identityRequests as identity, networkRequests as network, routingRequests as routing, secretRequests as secret, serverRequests as server, statusRequests as status, versionRequests as version, };
|
|
14
|
+
export { certificateRequests as certificate, clusterRequests as cluster, configRequests as config, identityRequests as identity, informRequests as inform, logRequests as log, networkRequests as network, routingRequests as routing, secretRequests as secret, serverRequests as server, statusRequests as status, versionRequests as version, };
|
|
13
15
|
export * from './inform.js';
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9yZXF1ZXN0cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssT0FBTyxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEtBQUssbUJBQW1CLE1BQU0sa0JBQWtCLENBQUM7QUFDeEQsT0FBTyxLQUFLLGVBQWUsTUFBTSxjQUFjLENBQUM7QUFDaEQsT0FBTyxLQUFLLGNBQWMsTUFBTSxhQUFhLENBQUM7QUFDOUMsT0FBTyxLQUFLLGdCQUFnQixNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEtBQUssY0FBYyxNQUFNLGFBQWEsQ0FBQztBQUM5QyxPQUFPLEtBQUssV0FBVyxNQUFNLFVBQVUsQ0FBQztBQUN4QyxPQUFPLEtBQUssZUFBZSxNQUFNLGNBQWMsQ0FBQztBQUNoRCxPQUFPLEtBQUssZUFBZSxNQUFNLGNBQWMsQ0FBQztBQUNoRCxPQUFPLEtBQUssY0FBYyxNQUFNLGFBQWEsQ0FBQztBQUM5QyxPQUFPLEtBQUssY0FBYyxNQUFNLGFBQWEsQ0FBQztBQUM5QyxPQUFPLEtBQUssY0FBYyxNQUFNLGFBQWEsQ0FBQztBQUM5QyxPQUFPLEtBQUssZUFBZSxNQUFNLGNBQWMsQ0FBQztBQUVoRCxPQUFPLEVBQ0wsbUJBQW1CLElBQUksV0FBVyxFQUNsQyxlQUFlLElBQUksT0FBTyxFQUMxQixjQUFjLElBQUksTUFBTSxFQUN4QixnQkFBZ0IsSUFBSSxRQUFRLEVBQzVCLGNBQWMsSUFBSSxNQUFNLEVBQ3hCLFdBQVcsSUFBSSxHQUFHLEVBQ2xCLGVBQWUsSUFBSSxPQUFPLEVBQzFCLGVBQWUsSUFBSSxPQUFPLEVBQzFCLGNBQWMsSUFBSSxNQUFNLEVBQ3hCLGNBQWMsSUFBSSxNQUFNLEVBQ3hCLGNBQWMsSUFBSSxNQUFNLEVBQ3hCLGVBQWUsSUFBSSxPQUFPLEdBQzNCLENBQUM7QUFFRixjQUFjLGFBQWEsQ0FBQyJ9
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
export interface IRequest_Log extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Log> {
|
|
3
|
+
method: 'log';
|
|
4
|
+
request: {
|
|
5
|
+
authToken: string;
|
|
6
|
+
logPackages: plugins.smartlogInterfaces.ILogPackage[];
|
|
7
|
+
};
|
|
8
|
+
response: {};
|
|
9
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvcmVxdWVzdHMvbG9nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxPQUFPLE1BQU0sZUFBZSxDQUFDIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serve.zone/interfaces",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "interfaces for working with containers",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@apiglobal/typedrequest-interfaces": "^2.0.1",
|
|
19
|
+
"@push.rocks/smartlog-interfaces": "^3.0.0",
|
|
19
20
|
"@tsclass/tsclass": "^4.0.46"
|
|
20
21
|
},
|
|
21
22
|
"browserslist": [
|
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/secret.ts
CHANGED
|
@@ -5,6 +5,9 @@ export interface ISecretGroup {
|
|
|
5
5
|
id: string;
|
|
6
6
|
|
|
7
7
|
data: {
|
|
8
|
+
name: string;
|
|
9
|
+
description: string;
|
|
10
|
+
|
|
8
11
|
/**
|
|
9
12
|
* the key of the secretgroup like CI_RUNNER_TOKEN
|
|
10
13
|
*/
|
|
@@ -53,7 +56,9 @@ export interface ISecretGroup {
|
|
|
53
56
|
export interface ISecretBundle {
|
|
54
57
|
id: string;
|
|
55
58
|
data: {
|
|
56
|
-
|
|
59
|
+
name: string;
|
|
60
|
+
description: string;
|
|
61
|
+
|
|
57
62
|
/**
|
|
58
63
|
* You can add specific secret groups using this
|
|
59
64
|
*/
|
package/ts/plugins.ts
CHANGED
package/ts/requests/index.ts
CHANGED
|
@@ -4,6 +4,8 @@ import * as certificateRequests from './certificate.js';
|
|
|
4
4
|
import * as clusterRequests from './cluster.js';
|
|
5
5
|
import * as configRequests from './config.js';
|
|
6
6
|
import * as identityRequests from './identity.js';
|
|
7
|
+
import * as informRequests from './inform.js';
|
|
8
|
+
import * as logRequests from './log.js';
|
|
7
9
|
import * as networkRequests from './network.js';
|
|
8
10
|
import * as routingRequests from './routing.js';
|
|
9
11
|
import * as secretRequests from './secret.js';
|
|
@@ -16,6 +18,8 @@ export {
|
|
|
16
18
|
clusterRequests as cluster,
|
|
17
19
|
configRequests as config,
|
|
18
20
|
identityRequests as identity,
|
|
21
|
+
informRequests as inform,
|
|
22
|
+
logRequests as log,
|
|
19
23
|
networkRequests as network,
|
|
20
24
|
routingRequests as routing,
|
|
21
25
|
secretRequests as secret,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as plugins from '../plugins.js';
|
|
2
|
+
|
|
3
|
+
export interface IRequest_Log extends plugins.typedrequestInterfaces.implementsTR<
|
|
4
|
+
plugins.typedrequestInterfaces.ITypedRequest,
|
|
5
|
+
IRequest_Log
|
|
6
|
+
> {
|
|
7
|
+
method: 'log';
|
|
8
|
+
request: {
|
|
9
|
+
authToken: string;
|
|
10
|
+
logPackages: plugins.smartlogInterfaces.ILogPackage[];
|
|
11
|
+
},
|
|
12
|
+
response: {};
|
|
13
|
+
}
|