@serve.zone/interfaces 1.0.76 → 1.0.78
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 +1 -1
- 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 +1 -1
|
@@ -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.78',
|
|
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=
|
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;
|