@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
|
@@ -16,8 +16,6 @@ import { exists } from '../runtime';
|
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
18
|
export const VaultInvitationConnectionTypeEnum = {
|
|
19
|
-
Member: 'member',
|
|
20
|
-
Service: 'service',
|
|
21
19
|
Delegate: 'delegate',
|
|
22
20
|
Null: 'null'
|
|
23
21
|
};
|
|
@@ -41,9 +39,6 @@ export function instanceOfVaultInvitation(value) {
|
|
|
41
39
|
isInstance = isInstance && "token" in value;
|
|
42
40
|
isInstance = isInstance && "delegation_role" in value;
|
|
43
41
|
isInstance = isInstance && "delegation_token" in value;
|
|
44
|
-
isInstance = isInstance && "organization_id" in value;
|
|
45
|
-
isInstance = isInstance && "organization_member_role" in value;
|
|
46
|
-
isInstance = isInstance && "service_id" in value;
|
|
47
42
|
isInstance = isInstance && "sender_did" in value;
|
|
48
43
|
isInstance = isInstance && "recipient_did" in value;
|
|
49
44
|
isInstance = isInstance && "expire_at" in value;
|
|
@@ -74,9 +69,6 @@ export function VaultInvitationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
74
69
|
'token': json['token'],
|
|
75
70
|
'delegation_role': json['delegation_role'],
|
|
76
71
|
'delegation_token': json['delegation_token'],
|
|
77
|
-
'organization_id': json['organization_id'],
|
|
78
|
-
'organization_member_role': json['organization_member_role'],
|
|
79
|
-
'service_id': json['service_id'],
|
|
80
72
|
'sender_did': json['sender_did'],
|
|
81
73
|
'recipient_did': json['recipient_did'],
|
|
82
74
|
'expire_at': (new Date(json['expire_at'])),
|
|
@@ -108,9 +100,6 @@ export function VaultInvitationToJSON(value) {
|
|
|
108
100
|
'token': value.token,
|
|
109
101
|
'delegation_role': value.delegation_role,
|
|
110
102
|
'delegation_token': value.delegation_token,
|
|
111
|
-
'organization_id': value.organization_id,
|
|
112
|
-
'organization_member_role': value.organization_member_role,
|
|
113
|
-
'service_id': value.service_id,
|
|
114
103
|
'sender_did': value.sender_did,
|
|
115
104
|
'recipient_did': value.recipient_did,
|
|
116
105
|
'expire_at': (value.expire_at.toISOString()),
|
|
@@ -24,8 +24,6 @@ export const VaultOwnConnectionDataDelegationRoleEnum = {
|
|
|
24
24
|
* @export
|
|
25
25
|
*/
|
|
26
26
|
export const VaultOwnConnectionDataConnectionTypeEnum = {
|
|
27
|
-
Member: 'member',
|
|
28
|
-
Service: 'service',
|
|
29
27
|
Delegate: 'delegate',
|
|
30
28
|
Null: 'null'
|
|
31
29
|
};
|
|
@@ -34,8 +32,7 @@ export const VaultOwnConnectionDataConnectionTypeEnum = {
|
|
|
34
32
|
*/
|
|
35
33
|
export const VaultOwnConnectionDataUserTypeEnum = {
|
|
36
34
|
Human: 'human',
|
|
37
|
-
|
|
38
|
-
ServiceAgent: 'service_agent'
|
|
35
|
+
Org: 'org'
|
|
39
36
|
};
|
|
40
37
|
/**
|
|
41
38
|
* Check if a given object implements the VaultOwnConnectionData interface.
|
|
@@ -46,7 +43,6 @@ export function instanceOfVaultOwnConnectionData(value) {
|
|
|
46
43
|
isInstance = isInstance && "encrypted_recipient_name" in value;
|
|
47
44
|
isInstance = isInstance && "delegation_token" in value;
|
|
48
45
|
isInstance = isInstance && "delegation_role" in value;
|
|
49
|
-
isInstance = isInstance && "organization_member_id" in value;
|
|
50
46
|
isInstance = isInstance && "connection_type" in value;
|
|
51
47
|
isInstance = isInstance && "user_id" in value;
|
|
52
48
|
isInstance = isInstance && "user_type" in value;
|
|
@@ -68,7 +64,6 @@ export function VaultOwnConnectionDataFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
68
64
|
'encrypted_recipient_name': json['encrypted_recipient_name'],
|
|
69
65
|
'delegation_token': json['delegation_token'],
|
|
70
66
|
'delegation_role': json['delegation_role'],
|
|
71
|
-
'organization_member_id': json['organization_member_id'],
|
|
72
67
|
'connection_type': json['connection_type'],
|
|
73
68
|
'user_id': json['user_id'],
|
|
74
69
|
'user_type': json['user_type'],
|
|
@@ -90,7 +85,6 @@ export function VaultOwnConnectionDataToJSON(value) {
|
|
|
90
85
|
'encrypted_recipient_name': value.encrypted_recipient_name,
|
|
91
86
|
'delegation_token': value.delegation_token,
|
|
92
87
|
'delegation_role': value.delegation_role,
|
|
93
|
-
'organization_member_id': value.organization_member_id,
|
|
94
88
|
'connection_type': value.connection_type,
|
|
95
89
|
'user_id': value.user_id,
|
|
96
90
|
'user_type': value.user_type,
|
|
@@ -24,8 +24,6 @@ export const VaultTheOtherConnectedUserDataDelegationRoleEnum = {
|
|
|
24
24
|
* @export
|
|
25
25
|
*/
|
|
26
26
|
export const VaultTheOtherConnectedUserDataConnectionTypeEnum = {
|
|
27
|
-
Member: 'member',
|
|
28
|
-
Service: 'service',
|
|
29
27
|
Delegate: 'delegate',
|
|
30
28
|
Null: 'null'
|
|
31
29
|
};
|
|
@@ -34,8 +32,7 @@ export const VaultTheOtherConnectedUserDataConnectionTypeEnum = {
|
|
|
34
32
|
*/
|
|
35
33
|
export const VaultTheOtherConnectedUserDataUserTypeEnum = {
|
|
36
34
|
Human: 'human',
|
|
37
|
-
|
|
38
|
-
ServiceAgent: 'service_agent'
|
|
35
|
+
Org: 'org'
|
|
39
36
|
};
|
|
40
37
|
/**
|
|
41
38
|
* Check if a given object implements the VaultTheOtherConnectedUserData interface.
|
|
@@ -45,7 +42,6 @@ export function instanceOfVaultTheOtherConnectedUserData(value) {
|
|
|
45
42
|
isInstance = isInstance && "id" in value;
|
|
46
43
|
isInstance = isInstance && "delegation_token" in value;
|
|
47
44
|
isInstance = isInstance && "delegation_role" in value;
|
|
48
|
-
isInstance = isInstance && "organization_member_id" in value;
|
|
49
45
|
isInstance = isInstance && "connection_type" in value;
|
|
50
46
|
isInstance = isInstance && "user_id" in value;
|
|
51
47
|
isInstance = isInstance && "user_type" in value;
|
|
@@ -65,7 +61,6 @@ export function VaultTheOtherConnectedUserDataFromJSONTyped(json, ignoreDiscrimi
|
|
|
65
61
|
'id': json['id'],
|
|
66
62
|
'delegation_token': json['delegation_token'],
|
|
67
63
|
'delegation_role': json['delegation_role'],
|
|
68
|
-
'organization_member_id': json['organization_member_id'],
|
|
69
64
|
'connection_type': json['connection_type'],
|
|
70
65
|
'user_id': json['user_id'],
|
|
71
66
|
'user_type': json['user_type'],
|
|
@@ -85,7 +80,6 @@ export function VaultTheOtherConnectedUserDataToJSON(value) {
|
|
|
85
80
|
'id': value.id,
|
|
86
81
|
'delegation_token': value.delegation_token,
|
|
87
82
|
'delegation_role': value.delegation_role,
|
|
88
|
-
'organization_member_id': value.organization_member_id,
|
|
89
83
|
'connection_type': value.connection_type,
|
|
90
84
|
'user_id': value.user_id,
|
|
91
85
|
'user_type': value.user_type,
|
|
@@ -19,8 +19,6 @@ import { VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsersFr
|
|
|
19
19
|
export function instanceOfVaultUserConnectionsReport(value) {
|
|
20
20
|
let isInstance = true;
|
|
21
21
|
isInstance = isInstance && "all_connections" in value;
|
|
22
|
-
isInstance = isInstance && "member_connections" in value;
|
|
23
|
-
isInstance = isInstance && "service_connections" in value;
|
|
24
22
|
isInstance = isInstance && "connections_granting_delegation_access_to_your_account" in value;
|
|
25
23
|
isInstance = isInstance && "connections_with_delegation_access_to_other_users" in value;
|
|
26
24
|
return isInstance;
|
|
@@ -34,8 +32,6 @@ export function VaultUserConnectionsReportFromJSONTyped(json, ignoreDiscriminato
|
|
|
34
32
|
}
|
|
35
33
|
return {
|
|
36
34
|
'all_connections': json['all_connections'],
|
|
37
|
-
'member_connections': json['member_connections'],
|
|
38
|
-
'service_connections': json['service_connections'],
|
|
39
35
|
'connections_granting_delegation_access_to_your_account': VaultUserConnectionsReportConnectionsGrantingDelegationAccessToYourAccountFromJSON(json['connections_granting_delegation_access_to_your_account']),
|
|
40
36
|
'connections_with_delegation_access_to_other_users': VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsersFromJSON(json['connections_with_delegation_access_to_other_users']),
|
|
41
37
|
};
|
|
@@ -49,8 +45,6 @@ export function VaultUserConnectionsReportToJSON(value) {
|
|
|
49
45
|
}
|
|
50
46
|
return {
|
|
51
47
|
'all_connections': value.all_connections,
|
|
52
|
-
'member_connections': value.member_connections,
|
|
53
|
-
'service_connections': value.service_connections,
|
|
54
48
|
'connections_granting_delegation_access_to_your_account': VaultUserConnectionsReportConnectionsGrantingDelegationAccessToYourAccountToJSON(value.connections_granting_delegation_access_to_your_account),
|
|
55
49
|
'connections_with_delegation_access_to_other_users': VaultUserConnectionsReportConnectionsWithDelegationAccessToOtherUsersToJSON(value.connections_with_delegation_access_to_other_users),
|
|
56
50
|
};
|
package/lib/esm/models/index.js
CHANGED
|
@@ -196,13 +196,13 @@ export * from './PutTasksRequest';
|
|
|
196
196
|
export * from './ReconfigureShareParamsInner';
|
|
197
197
|
export * from './ReconfigureSharesResponse';
|
|
198
198
|
export * from './SchemasIdVersionSchemaJsonGet200Response';
|
|
199
|
+
export * from './ShareIntentListResponse';
|
|
199
200
|
export * from './ShareIntentParam';
|
|
200
201
|
export * from './ShareIntentRequest';
|
|
201
202
|
export * from './ShareIntentResponse';
|
|
202
203
|
export * from './ShareIntentsResponse';
|
|
203
204
|
export * from './SharesIncomingResponse';
|
|
204
205
|
export * from './SharesOutgoingResponse';
|
|
205
|
-
export * from './ShreIntentListResponse';
|
|
206
206
|
export * from './UpdateDelegationsRequest';
|
|
207
207
|
export * from './UtilitiesApplicationVersion';
|
|
208
208
|
export * from './UtilitiesBlobInfo';
|
|
@@ -211,7 +211,13 @@ export * from './UtilitiesBlobPublicInfo';
|
|
|
211
211
|
export * from './UtilitiesBlobPublicInfoResponse';
|
|
212
212
|
export * from './UtilitiesBlobUploadUrlRequest';
|
|
213
213
|
export * from './UtilitiesComponent';
|
|
214
|
+
export * from './UtilitiesDeployment';
|
|
215
|
+
export * from './UtilitiesDeploymentWithoutLog';
|
|
214
216
|
export * from './UtilitiesError';
|
|
217
|
+
export * from './UtilitiesOwDeploymentRequest';
|
|
218
|
+
export * from './UtilitiesOwDeploymentRequestOw';
|
|
219
|
+
export * from './UtilitiesPaginatedDeployments';
|
|
220
|
+
export * from './UtilitiesPaginationMeta';
|
|
215
221
|
export * from './VCCnfDto';
|
|
216
222
|
export * from './VCComponent';
|
|
217
223
|
export * from './VCConstraintsDto';
|
|
@@ -190,12 +190,12 @@ export declare class ConnectionsApi extends runtime.BaseAPI {
|
|
|
190
190
|
*/
|
|
191
191
|
invitationsInvitationIdRejectDelete(invitationId: string, meecoDelegationId?: string, meecoOrganisationId?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InvitationRejectedResponse>;
|
|
192
192
|
/**
|
|
193
|
-
* Invite another user to connect. An invitation does not specify a recipient directly, instead the result of this operation is an invitation token which can then be sent to a recipient by a client application or some other means, mand the recipient can create a connection using this token and endpoint `POST /connections` --- Invitations and connections have 3 special use-cases: 1. a connection between an organization agent and an organization member 2. a connection between a service agent and a user of the service 3. a connection between a user and a delegate user who has been granted permissions to act on behalf of the user Blindly accepting an invitation by submitting an invitation token to `POST /connections` might have serious consequences, so client applications are advised to first read the invitation with `GET /invitations/{token}`before creating a connection. The intent of an invitation is in JSON field `integration_data`. --- For the
|
|
193
|
+
* Invite another user to connect. An invitation does not specify a recipient directly, instead the result of this operation is an invitation token which can then be sent to a recipient by a client application or some other means, mand the recipient can create a connection using this token and endpoint `POST /connections` --- Invitations and connections have 3 special use-cases: 1. a connection between an organization agent and an organization member 2. a connection between a service agent and a user of the service 3. a connection between a user and a delegate user who has been granted permissions to act on behalf of the user Blindly accepting an invitation by submitting an invitation token to `POST /connections` might have serious consequences, so client applications are advised to first read the invitation with `GET /invitations/{token}`before creating a connection. The intent of an invitation is in JSON field `integration_data`. --- For the delegation connection parameters `delegate_role` and `delegation_token` are mandatory. `delegation_token` should be obtained by running `POST /delegations` in the keystore. If `delegate_role` and `delegation_token` are present, a recipient is invited to become a delegate user who has rights to perform actions on behalf of the user who has created the invitation. Currently there are three delegate roles: * `owner` * `admin` * `reader` --- The vault supports two invitations workflows: * Simple - a sender creates an invitation. A recipient then accepts the invitation, and a connection is created. * Multistep - a sender creates an invitation. A recipient then accepts the invitation, no connection is created yet. The recipient then confirms the invitation, and a connection is created. An invitation is marked as belonging to one of these two workflows when created, boolean parameter `multistep_workflow` can be used for this. Values \'1\' and \'true\' are interpreted as true, as multistep invitation workflow. Each vault instance is configured to have a default invitation workflow. In case `multistep_workflow` is not submitted or is `null`, the default workflow is used.
|
|
194
194
|
* Create an invitation
|
|
195
195
|
*/
|
|
196
196
|
invitationsPostRaw(requestParameters: InvitationsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<InvitationResponse>>;
|
|
197
197
|
/**
|
|
198
|
-
* Invite another user to connect. An invitation does not specify a recipient directly, instead the result of this operation is an invitation token which can then be sent to a recipient by a client application or some other means, mand the recipient can create a connection using this token and endpoint `POST /connections` --- Invitations and connections have 3 special use-cases: 1. a connection between an organization agent and an organization member 2. a connection between a service agent and a user of the service 3. a connection between a user and a delegate user who has been granted permissions to act on behalf of the user Blindly accepting an invitation by submitting an invitation token to `POST /connections` might have serious consequences, so client applications are advised to first read the invitation with `GET /invitations/{token}`before creating a connection. The intent of an invitation is in JSON field `integration_data`. --- For the
|
|
198
|
+
* Invite another user to connect. An invitation does not specify a recipient directly, instead the result of this operation is an invitation token which can then be sent to a recipient by a client application or some other means, mand the recipient can create a connection using this token and endpoint `POST /connections` --- Invitations and connections have 3 special use-cases: 1. a connection between an organization agent and an organization member 2. a connection between a service agent and a user of the service 3. a connection between a user and a delegate user who has been granted permissions to act on behalf of the user Blindly accepting an invitation by submitting an invitation token to `POST /connections` might have serious consequences, so client applications are advised to first read the invitation with `GET /invitations/{token}`before creating a connection. The intent of an invitation is in JSON field `integration_data`. --- For the delegation connection parameters `delegate_role` and `delegation_token` are mandatory. `delegation_token` should be obtained by running `POST /delegations` in the keystore. If `delegate_role` and `delegation_token` are present, a recipient is invited to become a delegate user who has rights to perform actions on behalf of the user who has created the invitation. Currently there are three delegate roles: * `owner` * `admin` * `reader` --- The vault supports two invitations workflows: * Simple - a sender creates an invitation. A recipient then accepts the invitation, and a connection is created. * Multistep - a sender creates an invitation. A recipient then accepts the invitation, no connection is created yet. The recipient then confirms the invitation, and a connection is created. An invitation is marked as belonging to one of these two workflows when created, boolean parameter `multistep_workflow` can be used for this. Values \'1\' and \'true\' are interpreted as true, as multistep invitation workflow. Each vault instance is configured to have a default invitation workflow. In case `multistep_workflow` is not submitted or is `null`, the default workflow is used.
|
|
199
199
|
* Create an invitation
|
|
200
200
|
*/
|
|
201
201
|
invitationsPost(meecoDelegationId?: string, meecoOrganisationId?: string, postInvitationsRequest?: PostInvitationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<InvitationResponse>;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { UtilitiesBlobInfoResponse, UtilitiesBlobPublicInfoResponse, UtilitiesBlobUploadUrlRequest } from '../models';
|
|
13
|
+
import type { UtilitiesBlobInfoResponse, UtilitiesBlobPublicInfoResponse, UtilitiesBlobUploadUrlRequest, UtilitiesDeploymentWithoutLog, UtilitiesOwDeploymentRequest, UtilitiesPaginatedDeployments } from '../models';
|
|
14
14
|
export interface BlobsIdGetRequest {
|
|
15
15
|
id: string;
|
|
16
16
|
}
|
|
@@ -27,6 +27,20 @@ export interface BlobsPostRequest {
|
|
|
27
27
|
storageName: string;
|
|
28
28
|
utilitiesBlobUploadUrlRequest: UtilitiesBlobUploadUrlRequest;
|
|
29
29
|
}
|
|
30
|
+
export interface DeploymentsOwGetRequest {
|
|
31
|
+
perPage?: number;
|
|
32
|
+
page?: number;
|
|
33
|
+
order?: DeploymentsOwGetOrderEnum;
|
|
34
|
+
}
|
|
35
|
+
export interface DeploymentsOwIdDeleteRequest {
|
|
36
|
+
id: string;
|
|
37
|
+
}
|
|
38
|
+
export interface DeploymentsOwIdGetRequest {
|
|
39
|
+
id: string;
|
|
40
|
+
}
|
|
41
|
+
export interface DeploymentsOwPostRequest {
|
|
42
|
+
utilitiesOwDeploymentRequest: UtilitiesOwDeploymentRequest;
|
|
43
|
+
}
|
|
30
44
|
export interface OrgsOrgIdLogoGetRequest {
|
|
31
45
|
orgId: string;
|
|
32
46
|
}
|
|
@@ -87,6 +101,46 @@ export declare class HelpersApi extends runtime.BaseAPI {
|
|
|
87
101
|
* Obtain a signed upload URL
|
|
88
102
|
*/
|
|
89
103
|
blobsPost(storageName: string, utilitiesBlobUploadUrlRequest: UtilitiesBlobUploadUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UtilitiesBlobInfoResponse>;
|
|
104
|
+
/**
|
|
105
|
+
* Returns a paginated list of all OW deployments
|
|
106
|
+
* List all OW deployments
|
|
107
|
+
*/
|
|
108
|
+
deploymentsOwGetRaw(requestParameters: DeploymentsOwGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UtilitiesPaginatedDeployments>>;
|
|
109
|
+
/**
|
|
110
|
+
* Returns a paginated list of all OW deployments
|
|
111
|
+
* List all OW deployments
|
|
112
|
+
*/
|
|
113
|
+
deploymentsOwGet(perPage?: number, page?: number, order?: DeploymentsOwGetOrderEnum, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UtilitiesPaginatedDeployments>;
|
|
114
|
+
/**
|
|
115
|
+
* Deletes a specific deployment by organization ID
|
|
116
|
+
* Delete deployment by organization ID
|
|
117
|
+
*/
|
|
118
|
+
deploymentsOwIdDeleteRaw(requestParameters: DeploymentsOwIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
119
|
+
/**
|
|
120
|
+
* Deletes a specific deployment by organization ID
|
|
121
|
+
* Delete deployment by organization ID
|
|
122
|
+
*/
|
|
123
|
+
deploymentsOwIdDelete(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
124
|
+
/**
|
|
125
|
+
* Returns a specific deployment by organization ID
|
|
126
|
+
* Get deployment by organization ID
|
|
127
|
+
*/
|
|
128
|
+
deploymentsOwIdGetRaw(requestParameters: DeploymentsOwIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UtilitiesDeploymentWithoutLog>>;
|
|
129
|
+
/**
|
|
130
|
+
* Returns a specific deployment by organization ID
|
|
131
|
+
* Get deployment by organization ID
|
|
132
|
+
*/
|
|
133
|
+
deploymentsOwIdGet(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UtilitiesDeploymentWithoutLog>;
|
|
134
|
+
/**
|
|
135
|
+
* Create an OW deployment
|
|
136
|
+
* Create an OW deployment
|
|
137
|
+
*/
|
|
138
|
+
deploymentsOwPostRaw(requestParameters: DeploymentsOwPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
139
|
+
/**
|
|
140
|
+
* Create an OW deployment
|
|
141
|
+
* Create an OW deployment
|
|
142
|
+
*/
|
|
143
|
+
deploymentsOwPost(utilitiesOwDeploymentRequest: UtilitiesOwDeploymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
90
144
|
/**
|
|
91
145
|
* Redirect to the logo of an organisation. This endpoint is public and it only requires the organisation ID in the URL.
|
|
92
146
|
* Redirect to the logo of an organisation
|
|
@@ -108,3 +162,11 @@ export declare class HelpersApi extends runtime.BaseAPI {
|
|
|
108
162
|
*/
|
|
109
163
|
tenantsTenantIdLogoGet(tenantId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
110
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* @export
|
|
167
|
+
*/
|
|
168
|
+
export declare const DeploymentsOwGetOrderEnum: {
|
|
169
|
+
readonly Asc: "asc";
|
|
170
|
+
readonly Desc: "desc";
|
|
171
|
+
};
|
|
172
|
+
export type DeploymentsOwGetOrderEnum = typeof DeploymentsOwGetOrderEnum[keyof typeof DeploymentsOwGetOrderEnum];
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { CreateDeleteReconfigureSharesRequest, CreateDeleteReconfigureSharesServiceResponse, GetItemSharesResponse, ItemSharesUpdateResponse, ListOfReconfigureShareParams, PostItemEncryptRequest, PostItemSharesRequest, PutItemSharesRequest, ReconfigureSharesResponse, ShareIntentRequest, ShareIntentResponse, ShareIntentsResponse, SharesIncomingResponse, SharesOutgoingResponse,
|
|
13
|
+
import type { CreateDeleteReconfigureSharesRequest, CreateDeleteReconfigureSharesServiceResponse, GetItemSharesResponse, ItemSharesUpdateResponse, ListOfReconfigureShareParams, PostItemEncryptRequest, PostItemSharesRequest, PutItemSharesRequest, ReconfigureSharesResponse, ShareIntentListResponse, ShareIntentRequest, ShareIntentResponse, ShareIntentsResponse, SharesIncomingResponse, SharesOutgoingResponse, VaultGetShareResponse, VaultItemResponse, VaultShareWithItemData, VaultSharesCreateResponse } from '../models';
|
|
14
14
|
export interface IncomingSharesGetRequest {
|
|
15
15
|
nextPageAfter?: string;
|
|
16
16
|
perPage?: number;
|
|
@@ -226,12 +226,12 @@ export declare class SharesApi extends runtime.BaseAPI {
|
|
|
226
226
|
* share intents the user has created
|
|
227
227
|
* View share intents the user has created
|
|
228
228
|
*/
|
|
229
|
-
shareIntentsGetRaw(requestParameters: ShareIntentsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
229
|
+
shareIntentsGetRaw(requestParameters: ShareIntentsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ShareIntentListResponse>>;
|
|
230
230
|
/**
|
|
231
231
|
* share intents the user has created
|
|
232
232
|
* View share intents the user has created
|
|
233
233
|
*/
|
|
234
|
-
shareIntentsGet(meecoDelegationId?: string, meecoOrganisationId?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
234
|
+
shareIntentsGet(meecoDelegationId?: string, meecoOrganisationId?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ShareIntentListResponse>;
|
|
235
235
|
/**
|
|
236
236
|
* Delete a share intent
|
|
237
237
|
* Delete a share intent
|
|
@@ -14,32 +14,32 @@ import type { VaultShareIntent } from './VaultShareIntent';
|
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
17
|
-
* @interface
|
|
17
|
+
* @interface ShareIntentListResponse
|
|
18
18
|
*/
|
|
19
|
-
export interface
|
|
19
|
+
export interface ShareIntentListResponse {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
22
|
* @type {string}
|
|
23
|
-
* @memberof
|
|
23
|
+
* @memberof ShareIntentListResponse
|
|
24
24
|
*/
|
|
25
25
|
next_page_after: string | null;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* @type {Array<VaultShareIntent>}
|
|
29
|
-
* @memberof
|
|
29
|
+
* @memberof ShareIntentListResponse
|
|
30
30
|
*/
|
|
31
31
|
share_intents: Array<VaultShareIntent>;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {VaultCollectionReport}
|
|
35
|
-
* @memberof
|
|
35
|
+
* @memberof ShareIntentListResponse
|
|
36
36
|
*/
|
|
37
37
|
meta: VaultCollectionReport;
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
|
-
* Check if a given object implements the
|
|
40
|
+
* Check if a given object implements the ShareIntentListResponse interface.
|
|
41
41
|
*/
|
|
42
|
-
export declare function
|
|
43
|
-
export declare function
|
|
44
|
-
export declare function
|
|
45
|
-
export declare function
|
|
42
|
+
export declare function instanceOfShareIntentListResponse(value: object): boolean;
|
|
43
|
+
export declare function ShareIntentListResponseFromJSON(json: any): ShareIntentListResponse;
|
|
44
|
+
export declare function ShareIntentListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShareIntentListResponse;
|
|
45
|
+
export declare function ShareIntentListResponseToJSON(value?: ShareIntentListResponse | null): any;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 3.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UtilitiesDeployment
|
|
16
|
+
*/
|
|
17
|
+
export interface UtilitiesDeployment {
|
|
18
|
+
/**
|
|
19
|
+
* Deployment ID
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UtilitiesDeployment
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Creation timestamp
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof UtilitiesDeployment
|
|
28
|
+
*/
|
|
29
|
+
inserted_at: Date;
|
|
30
|
+
/**
|
|
31
|
+
* Deployment log data
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof UtilitiesDeployment
|
|
34
|
+
*/
|
|
35
|
+
log: object;
|
|
36
|
+
/**
|
|
37
|
+
* Organization ID
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UtilitiesDeployment
|
|
40
|
+
*/
|
|
41
|
+
org_id: string;
|
|
42
|
+
/**
|
|
43
|
+
* Organization name
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UtilitiesDeployment
|
|
46
|
+
*/
|
|
47
|
+
org_name: string;
|
|
48
|
+
/**
|
|
49
|
+
* Public host URL for the deployment
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof UtilitiesDeployment
|
|
52
|
+
*/
|
|
53
|
+
public_host?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
* Redis database number
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof UtilitiesDeployment
|
|
58
|
+
*/
|
|
59
|
+
redis_db: number;
|
|
60
|
+
/**
|
|
61
|
+
* Current deployment status
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof UtilitiesDeployment
|
|
64
|
+
*/
|
|
65
|
+
status: string;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Check if a given object implements the UtilitiesDeployment interface.
|
|
69
|
+
*/
|
|
70
|
+
export declare function instanceOfUtilitiesDeployment(value: object): boolean;
|
|
71
|
+
export declare function UtilitiesDeploymentFromJSON(json: any): UtilitiesDeployment;
|
|
72
|
+
export declare function UtilitiesDeploymentFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtilitiesDeployment;
|
|
73
|
+
export declare function UtilitiesDeploymentToJSON(value?: UtilitiesDeployment | null): any;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 3.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UtilitiesDeploymentWithoutLog
|
|
16
|
+
*/
|
|
17
|
+
export interface UtilitiesDeploymentWithoutLog {
|
|
18
|
+
/**
|
|
19
|
+
* Deployment ID
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Creation timestamp
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
28
|
+
*/
|
|
29
|
+
inserted_at: Date;
|
|
30
|
+
/**
|
|
31
|
+
* Organization ID
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
34
|
+
*/
|
|
35
|
+
org_id: string;
|
|
36
|
+
/**
|
|
37
|
+
* Organization name
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
40
|
+
*/
|
|
41
|
+
org_name: string;
|
|
42
|
+
/**
|
|
43
|
+
* Public host URL for the deployment
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
46
|
+
*/
|
|
47
|
+
public_host?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Redis database number
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
52
|
+
*/
|
|
53
|
+
redis_db: number;
|
|
54
|
+
/**
|
|
55
|
+
* Current deployment status
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof UtilitiesDeploymentWithoutLog
|
|
58
|
+
*/
|
|
59
|
+
status: string;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Check if a given object implements the UtilitiesDeploymentWithoutLog interface.
|
|
63
|
+
*/
|
|
64
|
+
export declare function instanceOfUtilitiesDeploymentWithoutLog(value: object): boolean;
|
|
65
|
+
export declare function UtilitiesDeploymentWithoutLogFromJSON(json: any): UtilitiesDeploymentWithoutLog;
|
|
66
|
+
export declare function UtilitiesDeploymentWithoutLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtilitiesDeploymentWithoutLog;
|
|
67
|
+
export declare function UtilitiesDeploymentWithoutLogToJSON(value?: UtilitiesDeploymentWithoutLog | null): any;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 3.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { UtilitiesOwDeploymentRequestOw } from './UtilitiesOwDeploymentRequestOw';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UtilitiesOwDeploymentRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface UtilitiesOwDeploymentRequest {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {UtilitiesOwDeploymentRequestOw}
|
|
22
|
+
* @memberof UtilitiesOwDeploymentRequest
|
|
23
|
+
*/
|
|
24
|
+
ow: UtilitiesOwDeploymentRequestOw;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the UtilitiesOwDeploymentRequest interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfUtilitiesOwDeploymentRequest(value: object): boolean;
|
|
30
|
+
export declare function UtilitiesOwDeploymentRequestFromJSON(json: any): UtilitiesOwDeploymentRequest;
|
|
31
|
+
export declare function UtilitiesOwDeploymentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtilitiesOwDeploymentRequest;
|
|
32
|
+
export declare function UtilitiesOwDeploymentRequestToJSON(value?: UtilitiesOwDeploymentRequest | null): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 3.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UtilitiesOwDeploymentRequestOw
|
|
16
|
+
*/
|
|
17
|
+
export interface UtilitiesOwDeploymentRequestOw {
|
|
18
|
+
/**
|
|
19
|
+
* Application client ID
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UtilitiesOwDeploymentRequestOw
|
|
22
|
+
*/
|
|
23
|
+
app_client_id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Application client secret
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UtilitiesOwDeploymentRequestOw
|
|
28
|
+
*/
|
|
29
|
+
app_client_secret: string;
|
|
30
|
+
/**
|
|
31
|
+
* Organization ID
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UtilitiesOwDeploymentRequestOw
|
|
34
|
+
*/
|
|
35
|
+
org_id: string;
|
|
36
|
+
/**
|
|
37
|
+
* Organization name
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UtilitiesOwDeploymentRequestOw
|
|
40
|
+
*/
|
|
41
|
+
org_name: string;
|
|
42
|
+
/**
|
|
43
|
+
* Organization passphrase
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UtilitiesOwDeploymentRequestOw
|
|
46
|
+
*/
|
|
47
|
+
org_passphrase: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the UtilitiesOwDeploymentRequestOw interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfUtilitiesOwDeploymentRequestOw(value: object): boolean;
|
|
53
|
+
export declare function UtilitiesOwDeploymentRequestOwFromJSON(json: any): UtilitiesOwDeploymentRequestOw;
|
|
54
|
+
export declare function UtilitiesOwDeploymentRequestOwFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtilitiesOwDeploymentRequestOw;
|
|
55
|
+
export declare function UtilitiesOwDeploymentRequestOwToJSON(value?: UtilitiesOwDeploymentRequestOw | null): any;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 3.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { UtilitiesDeployment } from './UtilitiesDeployment';
|
|
13
|
+
import type { UtilitiesPaginationMeta } from './UtilitiesPaginationMeta';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface UtilitiesPaginatedDeployments
|
|
18
|
+
*/
|
|
19
|
+
export interface UtilitiesPaginatedDeployments {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<UtilitiesDeployment>}
|
|
23
|
+
* @memberof UtilitiesPaginatedDeployments
|
|
24
|
+
*/
|
|
25
|
+
deployments: Array<UtilitiesDeployment>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {UtilitiesPaginationMeta}
|
|
29
|
+
* @memberof UtilitiesPaginatedDeployments
|
|
30
|
+
*/
|
|
31
|
+
meta: UtilitiesPaginationMeta;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the UtilitiesPaginatedDeployments interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfUtilitiesPaginatedDeployments(value: object): boolean;
|
|
37
|
+
export declare function UtilitiesPaginatedDeploymentsFromJSON(json: any): UtilitiesPaginatedDeployments;
|
|
38
|
+
export declare function UtilitiesPaginatedDeploymentsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtilitiesPaginatedDeployments;
|
|
39
|
+
export declare function UtilitiesPaginatedDeploymentsToJSON(value?: UtilitiesPaginatedDeployments | null): any;
|