@meeco/svx-api-sdk 1.0.0-develop.20250908173109.36b8444 → 1.0.0-develop.20251014160718.b02efb1
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/.openapi-generator/FILES +7 -1
- package/lib/esm/apis/ConnectionsApi.js +2 -2
- package/lib/esm/apis/HelpersApi.js +162 -1
- package/lib/esm/apis/SharesApi.js +2 -2
- package/lib/esm/models/{ShreIntentListResponse.js → ShareIntentListResponse.js} +6 -6
- package/lib/esm/models/UtilitiesDeployment.js +64 -0
- package/lib/esm/models/UtilitiesDeploymentWithoutLog.js +61 -0
- package/lib/esm/models/UtilitiesOwDeploymentRequest.js +44 -0
- package/lib/esm/models/UtilitiesOwDeploymentRequestOw.js +55 -0
- package/lib/esm/models/UtilitiesPaginatedDeployments.js +48 -0
- package/lib/esm/models/UtilitiesPaginationMeta.js +64 -0
- package/lib/esm/models/VaultInvitation.js +0 -11
- package/lib/esm/models/VaultOwnConnectionData.js +1 -7
- package/lib/esm/models/VaultTheOtherConnectedUserData.js +1 -7
- package/lib/esm/models/VaultUser.js +1 -2
- package/lib/esm/models/VaultUserConnectionsReport.js +0 -6
- package/lib/esm/models/index.js +7 -1
- package/lib/types/apis/ConnectionsApi.d.ts +2 -2
- package/lib/types/apis/HelpersApi.d.ts +63 -1
- package/lib/types/apis/SharesApi.d.ts +3 -3
- package/lib/types/models/{ShreIntentListResponse.d.ts → ShareIntentListResponse.d.ts} +10 -10
- package/lib/types/models/UtilitiesDeployment.d.ts +73 -0
- package/lib/types/models/UtilitiesDeploymentWithoutLog.d.ts +67 -0
- package/lib/types/models/UtilitiesOwDeploymentRequest.d.ts +32 -0
- package/lib/types/models/UtilitiesOwDeploymentRequestOw.d.ts +55 -0
- package/lib/types/models/UtilitiesPaginatedDeployments.d.ts +39 -0
- package/lib/types/models/UtilitiesPaginationMeta.d.ts +73 -0
- package/lib/types/models/VaultInvitation.d.ts +0 -22
- package/lib/types/models/VaultOwnConnectionData.d.ts +2 -13
- package/lib/types/models/VaultTheOtherConnectedUserData.d.ts +2 -13
- package/lib/types/models/VaultUser.d.ts +2 -3
- package/lib/types/models/VaultUserConnectionsReport.d.ts +0 -12
- package/lib/types/models/index.d.ts +7 -1
- package/lib/umd/apis/ConnectionsApi.js +2 -2
- package/lib/umd/apis/HelpersApi.js +162 -1
- package/lib/umd/apis/SharesApi.js +1 -1
- package/lib/umd/models/{ShreIntentListResponse.js → ShareIntentListResponse.js} +11 -11
- package/lib/umd/models/UtilitiesDeployment.js +71 -0
- package/lib/umd/models/UtilitiesDeploymentWithoutLog.js +68 -0
- package/lib/umd/models/UtilitiesOwDeploymentRequest.js +51 -0
- package/lib/umd/models/UtilitiesOwDeploymentRequestOw.js +62 -0
- package/lib/umd/models/UtilitiesPaginatedDeployments.js +55 -0
- package/lib/umd/models/UtilitiesPaginationMeta.js +71 -0
- package/lib/umd/models/VaultInvitation.js +0 -11
- package/lib/umd/models/VaultOwnConnectionData.js +1 -7
- package/lib/umd/models/VaultTheOtherConnectedUserData.js +1 -7
- package/lib/umd/models/VaultUser.js +1 -2
- package/lib/umd/models/VaultUserConnectionsReport.js +0 -6
- package/lib/umd/models/index.js +7 -1
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* SVX API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 3.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UtilitiesDeploymentWithoutLogToJSON = exports.UtilitiesDeploymentWithoutLogFromJSONTyped = exports.UtilitiesDeploymentWithoutLogFromJSON = exports.instanceOfUtilitiesDeploymentWithoutLog = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the UtilitiesDeploymentWithoutLog interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfUtilitiesDeploymentWithoutLog(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
isInstance = isInstance && "id" in value;
|
|
24
|
+
isInstance = isInstance && "inserted_at" in value;
|
|
25
|
+
isInstance = isInstance && "org_id" in value;
|
|
26
|
+
isInstance = isInstance && "org_name" in value;
|
|
27
|
+
isInstance = isInstance && "redis_db" in value;
|
|
28
|
+
isInstance = isInstance && "status" in value;
|
|
29
|
+
return isInstance;
|
|
30
|
+
}
|
|
31
|
+
exports.instanceOfUtilitiesDeploymentWithoutLog = instanceOfUtilitiesDeploymentWithoutLog;
|
|
32
|
+
function UtilitiesDeploymentWithoutLogFromJSON(json) {
|
|
33
|
+
return UtilitiesDeploymentWithoutLogFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
exports.UtilitiesDeploymentWithoutLogFromJSON = UtilitiesDeploymentWithoutLogFromJSON;
|
|
36
|
+
function UtilitiesDeploymentWithoutLogFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if ((json === undefined) || (json === null)) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'id': json['id'],
|
|
42
|
+
'inserted_at': (new Date(json['inserted_at'])),
|
|
43
|
+
'org_id': json['org_id'],
|
|
44
|
+
'org_name': json['org_name'],
|
|
45
|
+
'public_host': !(0, runtime_1.exists)(json, 'public_host') ? undefined : json['public_host'],
|
|
46
|
+
'redis_db': json['redis_db'],
|
|
47
|
+
'status': json['status'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
exports.UtilitiesDeploymentWithoutLogFromJSONTyped = UtilitiesDeploymentWithoutLogFromJSONTyped;
|
|
51
|
+
function UtilitiesDeploymentWithoutLogToJSON(value) {
|
|
52
|
+
if (value === undefined) {
|
|
53
|
+
return undefined;
|
|
54
|
+
}
|
|
55
|
+
if (value === null) {
|
|
56
|
+
return null;
|
|
57
|
+
}
|
|
58
|
+
return {
|
|
59
|
+
'id': value.id,
|
|
60
|
+
'inserted_at': (value.inserted_at.toISOString()),
|
|
61
|
+
'org_id': value.org_id,
|
|
62
|
+
'org_name': value.org_name,
|
|
63
|
+
'public_host': value.public_host,
|
|
64
|
+
'redis_db': value.redis_db,
|
|
65
|
+
'status': value.status,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
exports.UtilitiesDeploymentWithoutLogToJSON = UtilitiesDeploymentWithoutLogToJSON;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* SVX API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 3.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UtilitiesOwDeploymentRequestToJSON = exports.UtilitiesOwDeploymentRequestFromJSONTyped = exports.UtilitiesOwDeploymentRequestFromJSON = exports.instanceOfUtilitiesOwDeploymentRequest = void 0;
|
|
17
|
+
const UtilitiesOwDeploymentRequestOw_1 = require("./UtilitiesOwDeploymentRequestOw");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the UtilitiesOwDeploymentRequest interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfUtilitiesOwDeploymentRequest(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
isInstance = isInstance && "ow" in value;
|
|
24
|
+
return isInstance;
|
|
25
|
+
}
|
|
26
|
+
exports.instanceOfUtilitiesOwDeploymentRequest = instanceOfUtilitiesOwDeploymentRequest;
|
|
27
|
+
function UtilitiesOwDeploymentRequestFromJSON(json) {
|
|
28
|
+
return UtilitiesOwDeploymentRequestFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
exports.UtilitiesOwDeploymentRequestFromJSON = UtilitiesOwDeploymentRequestFromJSON;
|
|
31
|
+
function UtilitiesOwDeploymentRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if ((json === undefined) || (json === null)) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'ow': (0, UtilitiesOwDeploymentRequestOw_1.UtilitiesOwDeploymentRequestOwFromJSON)(json['ow']),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.UtilitiesOwDeploymentRequestFromJSONTyped = UtilitiesOwDeploymentRequestFromJSONTyped;
|
|
40
|
+
function UtilitiesOwDeploymentRequestToJSON(value) {
|
|
41
|
+
if (value === undefined) {
|
|
42
|
+
return undefined;
|
|
43
|
+
}
|
|
44
|
+
if (value === null) {
|
|
45
|
+
return null;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'ow': (0, UtilitiesOwDeploymentRequestOw_1.UtilitiesOwDeploymentRequestOwToJSON)(value.ow),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
exports.UtilitiesOwDeploymentRequestToJSON = UtilitiesOwDeploymentRequestToJSON;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* SVX API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 3.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UtilitiesOwDeploymentRequestOwToJSON = exports.UtilitiesOwDeploymentRequestOwFromJSONTyped = exports.UtilitiesOwDeploymentRequestOwFromJSON = exports.instanceOfUtilitiesOwDeploymentRequestOw = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the UtilitiesOwDeploymentRequestOw interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfUtilitiesOwDeploymentRequestOw(value) {
|
|
21
|
+
let isInstance = true;
|
|
22
|
+
isInstance = isInstance && "app_client_id" in value;
|
|
23
|
+
isInstance = isInstance && "app_client_secret" in value;
|
|
24
|
+
isInstance = isInstance && "org_id" in value;
|
|
25
|
+
isInstance = isInstance && "org_name" in value;
|
|
26
|
+
isInstance = isInstance && "org_passphrase" in value;
|
|
27
|
+
return isInstance;
|
|
28
|
+
}
|
|
29
|
+
exports.instanceOfUtilitiesOwDeploymentRequestOw = instanceOfUtilitiesOwDeploymentRequestOw;
|
|
30
|
+
function UtilitiesOwDeploymentRequestOwFromJSON(json) {
|
|
31
|
+
return UtilitiesOwDeploymentRequestOwFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
exports.UtilitiesOwDeploymentRequestOwFromJSON = UtilitiesOwDeploymentRequestOwFromJSON;
|
|
34
|
+
function UtilitiesOwDeploymentRequestOwFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if ((json === undefined) || (json === null)) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'app_client_id': json['app_client_id'],
|
|
40
|
+
'app_client_secret': json['app_client_secret'],
|
|
41
|
+
'org_id': json['org_id'],
|
|
42
|
+
'org_name': json['org_name'],
|
|
43
|
+
'org_passphrase': json['org_passphrase'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
exports.UtilitiesOwDeploymentRequestOwFromJSONTyped = UtilitiesOwDeploymentRequestOwFromJSONTyped;
|
|
47
|
+
function UtilitiesOwDeploymentRequestOwToJSON(value) {
|
|
48
|
+
if (value === undefined) {
|
|
49
|
+
return undefined;
|
|
50
|
+
}
|
|
51
|
+
if (value === null) {
|
|
52
|
+
return null;
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
'app_client_id': value.app_client_id,
|
|
56
|
+
'app_client_secret': value.app_client_secret,
|
|
57
|
+
'org_id': value.org_id,
|
|
58
|
+
'org_name': value.org_name,
|
|
59
|
+
'org_passphrase': value.org_passphrase,
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
exports.UtilitiesOwDeploymentRequestOwToJSON = UtilitiesOwDeploymentRequestOwToJSON;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* SVX API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 3.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UtilitiesPaginatedDeploymentsToJSON = exports.UtilitiesPaginatedDeploymentsFromJSONTyped = exports.UtilitiesPaginatedDeploymentsFromJSON = exports.instanceOfUtilitiesPaginatedDeployments = void 0;
|
|
17
|
+
const UtilitiesDeployment_1 = require("./UtilitiesDeployment");
|
|
18
|
+
const UtilitiesPaginationMeta_1 = require("./UtilitiesPaginationMeta");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the UtilitiesPaginatedDeployments interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfUtilitiesPaginatedDeployments(value) {
|
|
23
|
+
let isInstance = true;
|
|
24
|
+
isInstance = isInstance && "deployments" in value;
|
|
25
|
+
isInstance = isInstance && "meta" in value;
|
|
26
|
+
return isInstance;
|
|
27
|
+
}
|
|
28
|
+
exports.instanceOfUtilitiesPaginatedDeployments = instanceOfUtilitiesPaginatedDeployments;
|
|
29
|
+
function UtilitiesPaginatedDeploymentsFromJSON(json) {
|
|
30
|
+
return UtilitiesPaginatedDeploymentsFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
exports.UtilitiesPaginatedDeploymentsFromJSON = UtilitiesPaginatedDeploymentsFromJSON;
|
|
33
|
+
function UtilitiesPaginatedDeploymentsFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if ((json === undefined) || (json === null)) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'deployments': (json['deployments'].map(UtilitiesDeployment_1.UtilitiesDeploymentFromJSON)),
|
|
39
|
+
'meta': (0, UtilitiesPaginationMeta_1.UtilitiesPaginationMetaFromJSON)(json['meta']),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
exports.UtilitiesPaginatedDeploymentsFromJSONTyped = UtilitiesPaginatedDeploymentsFromJSONTyped;
|
|
43
|
+
function UtilitiesPaginatedDeploymentsToJSON(value) {
|
|
44
|
+
if (value === undefined) {
|
|
45
|
+
return undefined;
|
|
46
|
+
}
|
|
47
|
+
if (value === null) {
|
|
48
|
+
return null;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'deployments': (value.deployments.map(UtilitiesDeployment_1.UtilitiesDeploymentToJSON)),
|
|
52
|
+
'meta': (0, UtilitiesPaginationMeta_1.UtilitiesPaginationMetaToJSON)(value.meta),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.UtilitiesPaginatedDeploymentsToJSON = UtilitiesPaginatedDeploymentsToJSON;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* SVX API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 3.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UtilitiesPaginationMetaToJSON = exports.UtilitiesPaginationMetaFromJSONTyped = exports.UtilitiesPaginationMetaFromJSON = exports.instanceOfUtilitiesPaginationMeta = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the UtilitiesPaginationMeta interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfUtilitiesPaginationMeta(value) {
|
|
21
|
+
let isInstance = true;
|
|
22
|
+
isInstance = isInstance && "order" in value;
|
|
23
|
+
isInstance = isInstance && "order_by" in value;
|
|
24
|
+
isInstance = isInstance && "order_from_params" in value;
|
|
25
|
+
isInstance = isInstance && "page" in value;
|
|
26
|
+
isInstance = isInstance && "page_count" in value;
|
|
27
|
+
isInstance = isInstance && "per_page" in value;
|
|
28
|
+
isInstance = isInstance && "per_page_from_params" in value;
|
|
29
|
+
isInstance = isInstance && "records_count" in value;
|
|
30
|
+
return isInstance;
|
|
31
|
+
}
|
|
32
|
+
exports.instanceOfUtilitiesPaginationMeta = instanceOfUtilitiesPaginationMeta;
|
|
33
|
+
function UtilitiesPaginationMetaFromJSON(json) {
|
|
34
|
+
return UtilitiesPaginationMetaFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
exports.UtilitiesPaginationMetaFromJSON = UtilitiesPaginationMetaFromJSON;
|
|
37
|
+
function UtilitiesPaginationMetaFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
+
if ((json === undefined) || (json === null)) {
|
|
39
|
+
return json;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'order': json['order'],
|
|
43
|
+
'order_by': json['order_by'],
|
|
44
|
+
'order_from_params': json['order_from_params'],
|
|
45
|
+
'page': json['page'],
|
|
46
|
+
'page_count': json['page_count'],
|
|
47
|
+
'per_page': json['per_page'],
|
|
48
|
+
'per_page_from_params': json['per_page_from_params'],
|
|
49
|
+
'records_count': json['records_count'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
exports.UtilitiesPaginationMetaFromJSONTyped = UtilitiesPaginationMetaFromJSONTyped;
|
|
53
|
+
function UtilitiesPaginationMetaToJSON(value) {
|
|
54
|
+
if (value === undefined) {
|
|
55
|
+
return undefined;
|
|
56
|
+
}
|
|
57
|
+
if (value === null) {
|
|
58
|
+
return null;
|
|
59
|
+
}
|
|
60
|
+
return {
|
|
61
|
+
'order': value.order,
|
|
62
|
+
'order_by': value.order_by,
|
|
63
|
+
'order_from_params': value.order_from_params,
|
|
64
|
+
'page': value.page,
|
|
65
|
+
'page_count': value.page_count,
|
|
66
|
+
'per_page': value.per_page,
|
|
67
|
+
'per_page_from_params': value.per_page_from_params,
|
|
68
|
+
'records_count': value.records_count,
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
exports.UtilitiesPaginationMetaToJSON = UtilitiesPaginationMetaToJSON;
|
|
@@ -19,8 +19,6 @@ const runtime_1 = require("../runtime");
|
|
|
19
19
|
* @export
|
|
20
20
|
*/
|
|
21
21
|
exports.VaultInvitationConnectionTypeEnum = {
|
|
22
|
-
Member: 'member',
|
|
23
|
-
Service: 'service',
|
|
24
22
|
Delegate: 'delegate',
|
|
25
23
|
Null: 'null'
|
|
26
24
|
};
|
|
@@ -44,9 +42,6 @@ function instanceOfVaultInvitation(value) {
|
|
|
44
42
|
isInstance = isInstance && "token" in value;
|
|
45
43
|
isInstance = isInstance && "delegation_role" in value;
|
|
46
44
|
isInstance = isInstance && "delegation_token" in value;
|
|
47
|
-
isInstance = isInstance && "organization_id" in value;
|
|
48
|
-
isInstance = isInstance && "organization_member_role" in value;
|
|
49
|
-
isInstance = isInstance && "service_id" in value;
|
|
50
45
|
isInstance = isInstance && "sender_did" in value;
|
|
51
46
|
isInstance = isInstance && "recipient_did" in value;
|
|
52
47
|
isInstance = isInstance && "expire_at" in value;
|
|
@@ -79,9 +74,6 @@ function VaultInvitationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
79
74
|
'token': json['token'],
|
|
80
75
|
'delegation_role': json['delegation_role'],
|
|
81
76
|
'delegation_token': json['delegation_token'],
|
|
82
|
-
'organization_id': json['organization_id'],
|
|
83
|
-
'organization_member_role': json['organization_member_role'],
|
|
84
|
-
'service_id': json['service_id'],
|
|
85
77
|
'sender_did': json['sender_did'],
|
|
86
78
|
'recipient_did': json['recipient_did'],
|
|
87
79
|
'expire_at': (new Date(json['expire_at'])),
|
|
@@ -114,9 +106,6 @@ function VaultInvitationToJSON(value) {
|
|
|
114
106
|
'token': value.token,
|
|
115
107
|
'delegation_role': value.delegation_role,
|
|
116
108
|
'delegation_token': value.delegation_token,
|
|
117
|
-
'organization_id': value.organization_id,
|
|
118
|
-
'organization_member_role': value.organization_member_role,
|
|
119
|
-
'service_id': value.service_id,
|
|
120
109
|
'sender_did': value.sender_did,
|
|
121
110
|
'recipient_did': value.recipient_did,
|
|
122
111
|
'expire_at': (value.expire_at.toISOString()),
|
|
@@ -27,8 +27,6 @@ exports.VaultOwnConnectionDataDelegationRoleEnum = {
|
|
|
27
27
|
* @export
|
|
28
28
|
*/
|
|
29
29
|
exports.VaultOwnConnectionDataConnectionTypeEnum = {
|
|
30
|
-
Member: 'member',
|
|
31
|
-
Service: 'service',
|
|
32
30
|
Delegate: 'delegate',
|
|
33
31
|
Null: 'null'
|
|
34
32
|
};
|
|
@@ -37,8 +35,7 @@ exports.VaultOwnConnectionDataConnectionTypeEnum = {
|
|
|
37
35
|
*/
|
|
38
36
|
exports.VaultOwnConnectionDataUserTypeEnum = {
|
|
39
37
|
Human: 'human',
|
|
40
|
-
|
|
41
|
-
ServiceAgent: 'service_agent'
|
|
38
|
+
Org: 'org'
|
|
42
39
|
};
|
|
43
40
|
/**
|
|
44
41
|
* Check if a given object implements the VaultOwnConnectionData interface.
|
|
@@ -49,7 +46,6 @@ function instanceOfVaultOwnConnectionData(value) {
|
|
|
49
46
|
isInstance = isInstance && "encrypted_recipient_name" in value;
|
|
50
47
|
isInstance = isInstance && "delegation_token" in value;
|
|
51
48
|
isInstance = isInstance && "delegation_role" in value;
|
|
52
|
-
isInstance = isInstance && "organization_member_id" in value;
|
|
53
49
|
isInstance = isInstance && "connection_type" in value;
|
|
54
50
|
isInstance = isInstance && "user_id" in value;
|
|
55
51
|
isInstance = isInstance && "user_type" in value;
|
|
@@ -73,7 +69,6 @@ function VaultOwnConnectionDataFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
73
69
|
'encrypted_recipient_name': json['encrypted_recipient_name'],
|
|
74
70
|
'delegation_token': json['delegation_token'],
|
|
75
71
|
'delegation_role': json['delegation_role'],
|
|
76
|
-
'organization_member_id': json['organization_member_id'],
|
|
77
72
|
'connection_type': json['connection_type'],
|
|
78
73
|
'user_id': json['user_id'],
|
|
79
74
|
'user_type': json['user_type'],
|
|
@@ -96,7 +91,6 @@ function VaultOwnConnectionDataToJSON(value) {
|
|
|
96
91
|
'encrypted_recipient_name': value.encrypted_recipient_name,
|
|
97
92
|
'delegation_token': value.delegation_token,
|
|
98
93
|
'delegation_role': value.delegation_role,
|
|
99
|
-
'organization_member_id': value.organization_member_id,
|
|
100
94
|
'connection_type': value.connection_type,
|
|
101
95
|
'user_id': value.user_id,
|
|
102
96
|
'user_type': value.user_type,
|
|
@@ -27,8 +27,6 @@ exports.VaultTheOtherConnectedUserDataDelegationRoleEnum = {
|
|
|
27
27
|
* @export
|
|
28
28
|
*/
|
|
29
29
|
exports.VaultTheOtherConnectedUserDataConnectionTypeEnum = {
|
|
30
|
-
Member: 'member',
|
|
31
|
-
Service: 'service',
|
|
32
30
|
Delegate: 'delegate',
|
|
33
31
|
Null: 'null'
|
|
34
32
|
};
|
|
@@ -37,8 +35,7 @@ exports.VaultTheOtherConnectedUserDataConnectionTypeEnum = {
|
|
|
37
35
|
*/
|
|
38
36
|
exports.VaultTheOtherConnectedUserDataUserTypeEnum = {
|
|
39
37
|
Human: 'human',
|
|
40
|
-
|
|
41
|
-
ServiceAgent: 'service_agent'
|
|
38
|
+
Org: 'org'
|
|
42
39
|
};
|
|
43
40
|
/**
|
|
44
41
|
* Check if a given object implements the VaultTheOtherConnectedUserData interface.
|
|
@@ -48,7 +45,6 @@ function instanceOfVaultTheOtherConnectedUserData(value) {
|
|
|
48
45
|
isInstance = isInstance && "id" in value;
|
|
49
46
|
isInstance = isInstance && "delegation_token" in value;
|
|
50
47
|
isInstance = isInstance && "delegation_role" in value;
|
|
51
|
-
isInstance = isInstance && "organization_member_id" in value;
|
|
52
48
|
isInstance = isInstance && "connection_type" in value;
|
|
53
49
|
isInstance = isInstance && "user_id" in value;
|
|
54
50
|
isInstance = isInstance && "user_type" in value;
|
|
@@ -70,7 +66,6 @@ function VaultTheOtherConnectedUserDataFromJSONTyped(json, ignoreDiscriminator)
|
|
|
70
66
|
'id': json['id'],
|
|
71
67
|
'delegation_token': json['delegation_token'],
|
|
72
68
|
'delegation_role': json['delegation_role'],
|
|
73
|
-
'organization_member_id': json['organization_member_id'],
|
|
74
69
|
'connection_type': json['connection_type'],
|
|
75
70
|
'user_id': json['user_id'],
|
|
76
71
|
'user_type': json['user_type'],
|
|
@@ -91,7 +86,6 @@ function VaultTheOtherConnectedUserDataToJSON(value) {
|
|
|
91
86
|
'id': value.id,
|
|
92
87
|
'delegation_token': value.delegation_token,
|
|
93
88
|
'delegation_role': value.delegation_role,
|
|
94
|
-
'organization_member_id': value.organization_member_id,
|
|
95
89
|
'connection_type': value.connection_type,
|
|
96
90
|
'user_id': value.user_id,
|
|
97
91
|
'user_type': value.user_type,
|
|
@@ -19,8 +19,7 @@ exports.VaultUserToJSON = exports.VaultUserFromJSONTyped = exports.VaultUserFrom
|
|
|
19
19
|
*/
|
|
20
20
|
exports.VaultUserUserTypeEnum = {
|
|
21
21
|
Human: 'human',
|
|
22
|
-
|
|
23
|
-
ServiceAgent: 'service_agent'
|
|
22
|
+
Org: 'org'
|
|
24
23
|
};
|
|
25
24
|
/**
|
|
26
25
|
* Check if a given object implements the VaultUser interface.
|
|
@@ -22,8 +22,6 @@ const VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsers_1 =
|
|
|
22
22
|
function instanceOfVaultUserConnectionsReport(value) {
|
|
23
23
|
let isInstance = true;
|
|
24
24
|
isInstance = isInstance && "all_connections" in value;
|
|
25
|
-
isInstance = isInstance && "member_connections" in value;
|
|
26
|
-
isInstance = isInstance && "service_connections" in value;
|
|
27
25
|
isInstance = isInstance && "connections_granting_delegation_access_to_your_account" in value;
|
|
28
26
|
isInstance = isInstance && "connections_with_delegation_access_to_other_users" in value;
|
|
29
27
|
return isInstance;
|
|
@@ -39,8 +37,6 @@ function VaultUserConnectionsReportFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
37
|
}
|
|
40
38
|
return {
|
|
41
39
|
'all_connections': json['all_connections'],
|
|
42
|
-
'member_connections': json['member_connections'],
|
|
43
|
-
'service_connections': json['service_connections'],
|
|
44
40
|
'connections_granting_delegation_access_to_your_account': (0, VaultUserConnectionsReportConnectionsGrantingDelegationAccessToYourAccount_1.VaultUserConnectionsReportConnectionsGrantingDelegationAccessToYourAccountFromJSON)(json['connections_granting_delegation_access_to_your_account']),
|
|
45
41
|
'connections_with_delegation_access_to_other_users': (0, VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsers_1.VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsersFromJSON)(json['connections_with_delegation_access_to_other_users']),
|
|
46
42
|
};
|
|
@@ -55,8 +51,6 @@ function VaultUserConnectionsReportToJSON(value) {
|
|
|
55
51
|
}
|
|
56
52
|
return {
|
|
57
53
|
'all_connections': value.all_connections,
|
|
58
|
-
'member_connections': value.member_connections,
|
|
59
|
-
'service_connections': value.service_connections,
|
|
60
54
|
'connections_granting_delegation_access_to_your_account': (0, VaultUserConnectionsReportConnectionsGrantingDelegationAccessToYourAccount_1.VaultUserConnectionsReportConnectionsGrantingDelegationAccessToYourAccountToJSON)(value.connections_granting_delegation_access_to_your_account),
|
|
61
55
|
'connections_with_delegation_access_to_other_users': (0, VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsers_1.VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsersToJSON)(value.connections_with_delegation_access_to_other_users),
|
|
62
56
|
};
|
package/lib/umd/models/index.js
CHANGED
|
@@ -212,13 +212,13 @@ __exportStar(require("./PutTasksRequest"), exports);
|
|
|
212
212
|
__exportStar(require("./ReconfigureShareParamsInner"), exports);
|
|
213
213
|
__exportStar(require("./ReconfigureSharesResponse"), exports);
|
|
214
214
|
__exportStar(require("./SchemasIdVersionSchemaJsonGet200Response"), exports);
|
|
215
|
+
__exportStar(require("./ShareIntentListResponse"), exports);
|
|
215
216
|
__exportStar(require("./ShareIntentParam"), exports);
|
|
216
217
|
__exportStar(require("./ShareIntentRequest"), exports);
|
|
217
218
|
__exportStar(require("./ShareIntentResponse"), exports);
|
|
218
219
|
__exportStar(require("./ShareIntentsResponse"), exports);
|
|
219
220
|
__exportStar(require("./SharesIncomingResponse"), exports);
|
|
220
221
|
__exportStar(require("./SharesOutgoingResponse"), exports);
|
|
221
|
-
__exportStar(require("./ShreIntentListResponse"), exports);
|
|
222
222
|
__exportStar(require("./UpdateDelegationsRequest"), exports);
|
|
223
223
|
__exportStar(require("./UtilitiesApplicationVersion"), exports);
|
|
224
224
|
__exportStar(require("./UtilitiesBlobInfo"), exports);
|
|
@@ -227,7 +227,13 @@ __exportStar(require("./UtilitiesBlobPublicInfo"), exports);
|
|
|
227
227
|
__exportStar(require("./UtilitiesBlobPublicInfoResponse"), exports);
|
|
228
228
|
__exportStar(require("./UtilitiesBlobUploadUrlRequest"), exports);
|
|
229
229
|
__exportStar(require("./UtilitiesComponent"), exports);
|
|
230
|
+
__exportStar(require("./UtilitiesDeployment"), exports);
|
|
231
|
+
__exportStar(require("./UtilitiesDeploymentWithoutLog"), exports);
|
|
230
232
|
__exportStar(require("./UtilitiesError"), exports);
|
|
233
|
+
__exportStar(require("./UtilitiesOwDeploymentRequest"), exports);
|
|
234
|
+
__exportStar(require("./UtilitiesOwDeploymentRequestOw"), exports);
|
|
235
|
+
__exportStar(require("./UtilitiesPaginatedDeployments"), exports);
|
|
236
|
+
__exportStar(require("./UtilitiesPaginationMeta"), exports);
|
|
231
237
|
__exportStar(require("./VCCnfDto"), exports);
|
|
232
238
|
__exportStar(require("./VCComponent"), exports);
|
|
233
239
|
__exportStar(require("./VCConstraintsDto"), exports);
|
package/package.json
CHANGED