@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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.76',
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
- export interface IRequest_Any_Cloudly_GetSslCertificate extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_GetSslCertificate> {
3
- method: 'getSslCertificate';
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
- authToken: string;
6
- requiredCertName: string;
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
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2VydGlmaWNhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9yZXF1ZXN0cy9jZXJ0aWZpY2F0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssT0FBTyxNQUFNLGVBQWUsQ0FBQyJ9
2
+ import * as userInterfaces from '../data/user.js';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2VydGlmaWNhdGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9yZXF1ZXN0cy9jZXJ0aWZpY2F0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssT0FBTyxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEtBQUssY0FBYyxNQUFNLGlCQUFpQixDQUFDIn0=
@@ -9,6 +9,6 @@ export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode exte
9
9
  jumpCode: string;
10
10
  };
11
11
  response: {
12
- clusterIdentifier: userInterfaces.IIdentity;
12
+ identity: userInterfaces.IIdentity;
13
13
  };
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
4
4
  "private": false,
5
5
  "description": "interfaces for working with containers",
6
6
  "main": "dist_ts/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.76',
6
+ version: '1.0.78',
7
7
  description: 'interfaces for working with containers'
8
8
  }
@@ -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 IRequest_Any_Cloudly_GetSslCertificate
4
+ export interface IRequest_Any_Cloudly_GetCertificateForDomain
4
5
  extends plugins.typedrequestInterfaces.implementsTR<
5
6
  plugins.typedrequestInterfaces.ITypedRequest,
6
- IRequest_Any_Cloudly_GetSslCertificate
7
+ IRequest_Any_Cloudly_GetCertificateForDomain
7
8
  > {
8
- method: 'getSslCertificate';
9
+ method: 'getCertificateForDomain';
9
10
  request: {
10
- authToken: string;
11
- requiredCertName: string;
11
+ identity: userInterfaces.IIdentity;
12
+ domainName: string;
13
+ type: 'ssl';
12
14
  };
13
15
  response: {
14
16
  certificate: plugins.tsclass.network.ICert;
@@ -18,6 +18,6 @@ extends plugins.typedrequestInterfaces.implementsTR<
18
18
  jumpCode: string;
19
19
  };
20
20
  response: {
21
- clusterIdentifier: userInterfaces.IIdentity;
21
+ identity: userInterfaces.IIdentity;
22
22
  };
23
23
  }