@serve.zone/interfaces 1.0.77 → 1.0.79
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/requests/certificate.d.ts +6 -4
- package/dist_ts/requests/certificate.js +2 -1
- package/dist_ts/requests/identity.d.ts +3 -3
- package/package.json +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/requests/certificate.ts +7 -5
- package/ts/requests/identity.ts +4 -4
|
@@ -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.79',
|
|
7
7
|
description: 'interfaces for working with containers'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as plugins from '../plugins.js';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
import * as userInterfaces from '../data/user.js';
|
|
3
|
+
export interface IRequest_Any_Cloudly_GetCertificateForDomain extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_GetCertificateForDomain> {
|
|
4
|
+
method: 'getCertificateForDomain';
|
|
4
5
|
request: {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
identity: userInterfaces.IIdentity;
|
|
7
|
+
domainName: string;
|
|
8
|
+
type: 'ssl';
|
|
7
9
|
};
|
|
8
10
|
response: {
|
|
9
11
|
certificate: plugins.tsclass.network.ICert;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import * as plugins from '../plugins.js';
|
|
2
|
-
|
|
2
|
+
import * as userInterfaces from '../data/user.js';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2VydGlmaWNhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9yZXF1ZXN0cy9jZXJ0aWZpY2F0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssT0FBTyxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEtBQUssY0FBYyxNQUFNLGlCQUFpQixDQUFDIn0=
|
|
@@ -3,10 +3,10 @@ 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
|
|
7
|
-
method: '
|
|
6
|
+
export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityToken extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_CoreflowManager_GetIdentityToken> {
|
|
7
|
+
method: 'getIdentityByToken';
|
|
8
8
|
request: {
|
|
9
|
-
|
|
9
|
+
token: string;
|
|
10
10
|
};
|
|
11
11
|
response: {
|
|
12
12
|
identity: userInterfaces.IIdentity;
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import * as plugins from '../plugins.js';
|
|
2
|
+
import * as userInterfaces from '../data/user.js';
|
|
2
3
|
|
|
3
|
-
export interface
|
|
4
|
+
export interface IRequest_Any_Cloudly_GetCertificateForDomain
|
|
4
5
|
extends plugins.typedrequestInterfaces.implementsTR<
|
|
5
6
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
6
|
-
|
|
7
|
+
IRequest_Any_Cloudly_GetCertificateForDomain
|
|
7
8
|
> {
|
|
8
|
-
method: '
|
|
9
|
+
method: 'getCertificateForDomain';
|
|
9
10
|
request: {
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
identity: userInterfaces.IIdentity;
|
|
12
|
+
domainName: string;
|
|
13
|
+
type: 'ssl';
|
|
12
14
|
};
|
|
13
15
|
response: {
|
|
14
16
|
certificate: plugins.tsclass.network.ICert;
|
package/ts/requests/identity.ts
CHANGED
|
@@ -8,14 +8,14 @@ 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_GetIdentityToken
|
|
12
12
|
extends plugins.typedrequestInterfaces.implementsTR<
|
|
13
13
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
14
|
-
|
|
14
|
+
IRequest_Any_Cloudly_CoreflowManager_GetIdentityToken
|
|
15
15
|
> {
|
|
16
|
-
method: '
|
|
16
|
+
method: 'getIdentityByToken';
|
|
17
17
|
request: {
|
|
18
|
-
|
|
18
|
+
token: string;
|
|
19
19
|
};
|
|
20
20
|
response: {
|
|
21
21
|
identity: userInterfaces.IIdentity;
|