@serve.zone/interfaces 1.0.78 → 1.0.80

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.78',
6
+ version: '1.0.80',
7
7
  description: 'interfaces for working with containers'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
@@ -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 IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode> {
7
- method: 'getIdentityByJumpCode';
6
+ export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken> {
7
+ method: 'getIdentityByToken';
8
8
  request: {
9
- jumpCode: string;
9
+ token: string;
10
10
  };
11
11
  response: {
12
12
  identity: userInterfaces.IIdentity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
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.78',
6
+ version: '1.0.80',
7
7
  description: 'interfaces for working with containers'
8
8
  }
@@ -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 IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode
11
+ export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken
12
12
  extends plugins.typedrequestInterfaces.implementsTR<
13
13
  plugins.typedrequestInterfaces.ITypedRequest,
14
- IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode
14
+ IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken
15
15
  > {
16
- method: 'getIdentityByJumpCode';
16
+ method: 'getIdentityByToken';
17
17
  request: {
18
- jumpCode: string;
18
+ token: string;
19
19
  };
20
20
  response: {
21
21
  identity: userInterfaces.IIdentity;