@meeco/svx-api-sdk 1.0.0-stage.20240502114933.d123429 → 1.0.0-stage.20240624095554.3e253ce

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.
Files changed (62) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/lib/esm/apis/ConnectionsApi.js +69 -69
  3. package/lib/esm/apis/HelpersApi.js +14 -8
  4. package/lib/esm/apis/ItemsApi.js +24 -24
  5. package/lib/esm/apis/OrganisationsApi.js +176 -176
  6. package/lib/esm/apis/SecurityRightsApi.js +80 -80
  7. package/lib/esm/apis/SharesApi.js +24 -24
  8. package/lib/esm/apis/TenantsApi.js +174 -174
  9. package/lib/esm/apis/VerifiableCredentialsApi.js +12 -6
  10. package/lib/esm/apis/VerifiablePresentationsApi.js +1 -0
  11. package/lib/esm/models/ATOMBlobInfo.js +8 -0
  12. package/lib/esm/models/ATOMBlobPublicInfo.js +6 -0
  13. package/lib/esm/models/ATOMFileStorageBackend.js +45 -0
  14. package/lib/esm/models/ATOMFileStorageConfiguration.js +46 -0
  15. package/lib/esm/models/VCCredentialTypeModelDtoSchema.js +6 -0
  16. package/lib/esm/models/VCCredentialTypeSchemaDto.js +6 -0
  17. package/lib/esm/models/VCInputDescriptorsDto.js +3 -0
  18. package/lib/esm/models/VCPresentationDefinitionDto.js +0 -3
  19. package/lib/esm/models/VCPresentationDefinitionToSchemaModel.js +3 -0
  20. package/lib/esm/models/VCVerifyPresentationRequestResponseDto.js +3 -2
  21. package/lib/esm/models/index.js +2 -0
  22. package/lib/types/apis/ConnectionsApi.d.ts +36 -36
  23. package/lib/types/apis/HelpersApi.d.ts +8 -7
  24. package/lib/types/apis/ItemsApi.d.ts +18 -18
  25. package/lib/types/apis/OrganisationsApi.d.ts +82 -82
  26. package/lib/types/apis/SecurityRightsApi.d.ts +28 -28
  27. package/lib/types/apis/SharesApi.d.ts +16 -16
  28. package/lib/types/apis/TenantsApi.d.ts +82 -82
  29. package/lib/types/apis/VerifiableCredentialsApi.d.ts +6 -4
  30. package/lib/types/apis/VerifiablePresentationsApi.d.ts +1 -0
  31. package/lib/types/models/ATOMBlobInfo.d.ts +18 -0
  32. package/lib/types/models/ATOMBlobPublicInfo.d.ts +12 -0
  33. package/lib/types/models/ATOMFileStorageBackend.d.ts +37 -0
  34. package/lib/types/models/ATOMFileStorageConfiguration.d.ts +38 -0
  35. package/lib/types/models/VCCredentialTypeModelDtoSchema.d.ts +12 -0
  36. package/lib/types/models/VCCredentialTypeSchemaDto.d.ts +12 -0
  37. package/lib/types/models/VCInputDescriptorsDto.d.ts +7 -0
  38. package/lib/types/models/VCPresentationDefinitionDto.d.ts +0 -7
  39. package/lib/types/models/VCPresentationDefinitionToSchemaModel.d.ts +6 -0
  40. package/lib/types/models/VCVerifyPresentationRequestResponseDto.d.ts +7 -1
  41. package/lib/types/models/index.d.ts +2 -0
  42. package/lib/umd/apis/ConnectionsApi.js +69 -69
  43. package/lib/umd/apis/HelpersApi.js +14 -8
  44. package/lib/umd/apis/ItemsApi.js +24 -24
  45. package/lib/umd/apis/OrganisationsApi.js +176 -176
  46. package/lib/umd/apis/SecurityRightsApi.js +80 -80
  47. package/lib/umd/apis/SharesApi.js +24 -24
  48. package/lib/umd/apis/TenantsApi.js +174 -174
  49. package/lib/umd/apis/VerifiableCredentialsApi.js +12 -6
  50. package/lib/umd/apis/VerifiablePresentationsApi.js +1 -0
  51. package/lib/umd/models/ATOMBlobInfo.js +8 -0
  52. package/lib/umd/models/ATOMBlobPublicInfo.js +6 -0
  53. package/lib/umd/models/ATOMFileStorageBackend.js +52 -0
  54. package/lib/umd/models/ATOMFileStorageConfiguration.js +53 -0
  55. package/lib/umd/models/VCCredentialTypeModelDtoSchema.js +6 -0
  56. package/lib/umd/models/VCCredentialTypeSchemaDto.js +6 -0
  57. package/lib/umd/models/VCInputDescriptorsDto.js +3 -0
  58. package/lib/umd/models/VCPresentationDefinitionDto.js +0 -3
  59. package/lib/umd/models/VCPresentationDefinitionToSchemaModel.js +3 -0
  60. package/lib/umd/models/VCVerifyPresentationRequestResponseDto.js +3 -2
  61. package/lib/umd/models/index.js +2 -0
  62. package/package.json +1 -1
@@ -19,22 +19,6 @@ export interface TenantsGetRequest {
19
19
  nextPageAfter?: string;
20
20
  filterBy?: string;
21
21
  }
22
- export interface TenantsIdArchivePostRequest {
23
- id: string;
24
- }
25
- export interface TenantsIdDeleteRequest {
26
- id: string;
27
- }
28
- export interface TenantsIdGetRequest {
29
- id: string;
30
- }
31
- export interface TenantsIdPutRequest {
32
- id: string;
33
- aTOMCreateOrUpdateTenantRequest: ATOMCreateOrUpdateTenantRequest;
34
- }
35
- export interface TenantsIdRestorePostRequest {
36
- id: string;
37
- }
38
22
  export interface TenantsPostRequest {
39
23
  aTOMCreateOrUpdateTenantRequest: ATOMCreateOrUpdateTenantRequest;
40
24
  }
@@ -47,27 +31,43 @@ export interface TenantsTenantIdAdminsGetRequest {
47
31
  page?: number;
48
32
  nextPageAfter?: string;
49
33
  }
50
- export interface TenantsTenantIdAdminsIdArchivePostRequest {
34
+ export interface TenantsTenantIdAdminsTenantAdminIdArchivePostRequest {
51
35
  tenantId: string;
52
- id: string;
36
+ tenantAdminId: string;
53
37
  }
54
- export interface TenantsTenantIdAdminsIdDeleteRequest {
38
+ export interface TenantsTenantIdAdminsTenantAdminIdDeleteRequest {
55
39
  tenantId: string;
56
- id: string;
40
+ tenantAdminId: string;
57
41
  }
58
- export interface TenantsTenantIdAdminsIdGetRequest {
42
+ export interface TenantsTenantIdAdminsTenantAdminIdGetRequest {
59
43
  tenantId: string;
60
- id: string;
44
+ tenantAdminId: string;
61
45
  }
62
- export interface TenantsTenantIdAdminsIdRestorePostRequest {
46
+ export interface TenantsTenantIdAdminsTenantAdminIdRestorePostRequest {
63
47
  tenantId: string;
64
- id: string;
48
+ tenantAdminId: string;
65
49
  }
66
50
  export interface TenantsTenantIdAdminsTenantAdminIdSecurityRightsPostRequest {
67
51
  tenantId: string;
68
52
  tenantAdminId: string;
69
53
  aTOMAssignSecurityRightsRequest: ATOMAssignSecurityRightsRequest;
70
54
  }
55
+ export interface TenantsTenantIdArchivePostRequest {
56
+ tenantId: string;
57
+ }
58
+ export interface TenantsTenantIdDeleteRequest {
59
+ tenantId: string;
60
+ }
61
+ export interface TenantsTenantIdGetRequest {
62
+ tenantId: string;
63
+ }
64
+ export interface TenantsTenantIdPutRequest {
65
+ tenantId: string;
66
+ aTOMCreateOrUpdateTenantRequest: ATOMCreateOrUpdateTenantRequest;
67
+ }
68
+ export interface TenantsTenantIdRestorePostRequest {
69
+ tenantId: string;
70
+ }
71
71
  export interface TenantsTenantIdSecurityRightsPostRequest {
72
72
  tenantId: string;
73
73
  aTOMAssignSecurityRightsRequest: ATOMAssignSecurityRightsRequest;
@@ -90,56 +90,6 @@ export declare class TenantsApi extends runtime.BaseAPI {
90
90
  * List all tenants
91
91
  */
92
92
  tenantsGet(status?: TenantsGetStatusEnum, perPage?: number, order?: TenantsGetOrderEnum, page?: number, nextPageAfter?: string, filterBy?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMPaginatedTenantList>;
93
- /**
94
- * Archive a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
95
- * Archive a tenant
96
- */
97
- tenantsIdArchivePostRaw(requestParameters: TenantsIdArchivePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMOneTenant>>;
98
- /**
99
- * Archive a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
100
- * Archive a tenant
101
- */
102
- tenantsIdArchivePost(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMOneTenant>;
103
- /**
104
- * Delete a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
105
- * Delete a tenant
106
- */
107
- tenantsIdDeleteRaw(requestParameters: TenantsIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
108
- /**
109
- * Delete a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
110
- * Delete a tenant
111
- */
112
- tenantsIdDelete(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
113
- /**
114
- * Show a tenant. In order to execute this action the current user must have either global security right `atom:global:view_all_tenants` or tenant security right `atom:tenant:view_tenant`.
115
- * Show a tenant
116
- */
117
- tenantsIdGetRaw(requestParameters: TenantsIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
118
- /**
119
- * Show a tenant. In order to execute this action the current user must have either global security right `atom:global:view_all_tenants` or tenant security right `atom:tenant:view_tenant`.
120
- * Show a tenant
121
- */
122
- tenantsIdGet(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
123
- /**
124
- * Update a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`. It is possible to modify 3 fields: * `name` * `logo_url` * `color`
125
- * Update a tenant
126
- */
127
- tenantsIdPutRaw(requestParameters: TenantsIdPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMOneTenant>>;
128
- /**
129
- * Update a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`. It is possible to modify 3 fields: * `name` * `logo_url` * `color`
130
- * Update a tenant
131
- */
132
- tenantsIdPut(id: string, aTOMCreateOrUpdateTenantRequest: ATOMCreateOrUpdateTenantRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMOneTenant>;
133
- /**
134
- * Restore a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
135
- * Restore a tenant
136
- */
137
- tenantsIdRestorePostRaw(requestParameters: TenantsIdRestorePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMOneTenant>>;
138
- /**
139
- * Restore a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
140
- * Restore a tenant
141
- */
142
- tenantsIdRestorePost(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMOneTenant>;
143
93
  /**
144
94
  * Create a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
145
95
  * Create a tenant
@@ -164,42 +114,42 @@ export declare class TenantsApi extends runtime.BaseAPI {
164
114
  * Remove a user from admins of the given tenant, and put the admin into the registry of former admins of that tenant. In order to execute this action the current user must have one of the following security rights: * `atom:global:assign_tenant_sr_to_tenant_admin` * `atom:tenant:assign_tenant_sr_to_tenant_admin`
165
115
  * Archive a tenant admin
166
116
  */
167
- tenantsTenantIdAdminsIdArchivePostRaw(requestParameters: TenantsTenantIdAdminsIdArchivePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
117
+ tenantsTenantIdAdminsTenantAdminIdArchivePostRaw(requestParameters: TenantsTenantIdAdminsTenantAdminIdArchivePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
168
118
  /**
169
119
  * Remove a user from admins of the given tenant, and put the admin into the registry of former admins of that tenant. In order to execute this action the current user must have one of the following security rights: * `atom:global:assign_tenant_sr_to_tenant_admin` * `atom:tenant:assign_tenant_sr_to_tenant_admin`
170
120
  * Archive a tenant admin
171
121
  */
172
- tenantsTenantIdAdminsIdArchivePost(tenantId: string, id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
122
+ tenantsTenantIdAdminsTenantAdminIdArchivePost(tenantId: string, tenantAdminId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
173
123
  /**
174
124
  * Remove tenant admin privileges from a tenant admin. In order to execute this action the current user must have one of the following security rights: * `atom:global:assign_tenant_sr_to_tenant_admin` * `atom:tenant:assign_tenant_sr_to_tenant_admin`
175
125
  * Remove a user from tenant admins
176
126
  */
177
- tenantsTenantIdAdminsIdDeleteRaw(requestParameters: TenantsTenantIdAdminsIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
127
+ tenantsTenantIdAdminsTenantAdminIdDeleteRaw(requestParameters: TenantsTenantIdAdminsTenantAdminIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
178
128
  /**
179
129
  * Remove tenant admin privileges from a tenant admin. In order to execute this action the current user must have one of the following security rights: * `atom:global:assign_tenant_sr_to_tenant_admin` * `atom:tenant:assign_tenant_sr_to_tenant_admin`
180
130
  * Remove a user from tenant admins
181
131
  */
182
- tenantsTenantIdAdminsIdDelete(tenantId: string, id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
132
+ tenantsTenantIdAdminsTenantAdminIdDelete(tenantId: string, tenantAdminId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
183
133
  /**
184
134
  * Show an admin of a given tenant In order to execute this action the current user must have security right `atom:tenant:list_tenant_admins` for the tenant with the ID in parameter `tenant_id`
185
135
  * Show an admin of a given tenant
186
136
  */
187
- tenantsTenantIdAdminsIdGetRaw(requestParameters: TenantsTenantIdAdminsIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMAdmin>>;
137
+ tenantsTenantIdAdminsTenantAdminIdGetRaw(requestParameters: TenantsTenantIdAdminsTenantAdminIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMAdmin>>;
188
138
  /**
189
139
  * Show an admin of a given tenant In order to execute this action the current user must have security right `atom:tenant:list_tenant_admins` for the tenant with the ID in parameter `tenant_id`
190
140
  * Show an admin of a given tenant
191
141
  */
192
- tenantsTenantIdAdminsIdGet(tenantId: string, id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMAdmin>;
142
+ tenantsTenantIdAdminsTenantAdminIdGet(tenantId: string, tenantAdminId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMAdmin>;
193
143
  /**
194
144
  * Reinstate an archived user and make him/her a tenant admin again. In order to execute this action the current user must have one of the following security rights: * `atom:tenant:assign_tenant_sr_to_tenant_admin` * `atom:global:assign_tenant_sr_to_tenant_admin`
195
145
  * Restore an archived tenant admin
196
146
  */
197
- tenantsTenantIdAdminsIdRestorePostRaw(requestParameters: TenantsTenantIdAdminsIdRestorePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMAdmin>>;
147
+ tenantsTenantIdAdminsTenantAdminIdRestorePostRaw(requestParameters: TenantsTenantIdAdminsTenantAdminIdRestorePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMAdmin>>;
198
148
  /**
199
149
  * Reinstate an archived user and make him/her a tenant admin again. In order to execute this action the current user must have one of the following security rights: * `atom:tenant:assign_tenant_sr_to_tenant_admin` * `atom:global:assign_tenant_sr_to_tenant_admin`
200
150
  * Restore an archived tenant admin
201
151
  */
202
- tenantsTenantIdAdminsIdRestorePost(tenantId: string, id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMAdmin>;
152
+ tenantsTenantIdAdminsTenantAdminIdRestorePost(tenantId: string, tenantAdminId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMAdmin>;
203
153
  /**
204
154
  * Assign tenant security rights to a user. The user we are assigning security rights to does not need to be known by ATOM. In order to execute this action the current user must have security right `atom:tenant:assign_tenant_sr_to_tenant_admin` for the tenant with the ID in parameter `tenant_id`.
205
155
  * Assign tenant security rights to a tenant admin
@@ -210,6 +160,56 @@ export declare class TenantsApi extends runtime.BaseAPI {
210
160
  * Assign tenant security rights to a tenant admin
211
161
  */
212
162
  tenantsTenantIdAdminsTenantAdminIdSecurityRightsPost(tenantId: string, tenantAdminId: string, aTOMAssignSecurityRightsRequest: ATOMAssignSecurityRightsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
163
+ /**
164
+ * Archive a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
165
+ * Archive a tenant
166
+ */
167
+ tenantsTenantIdArchivePostRaw(requestParameters: TenantsTenantIdArchivePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMOneTenant>>;
168
+ /**
169
+ * Archive a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
170
+ * Archive a tenant
171
+ */
172
+ tenantsTenantIdArchivePost(tenantId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMOneTenant>;
173
+ /**
174
+ * Delete a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
175
+ * Delete a tenant
176
+ */
177
+ tenantsTenantIdDeleteRaw(requestParameters: TenantsTenantIdDeleteRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
178
+ /**
179
+ * Delete a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
180
+ * Delete a tenant
181
+ */
182
+ tenantsTenantIdDelete(tenantId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
183
+ /**
184
+ * Show a tenant. In order to execute this action the current user must have either global security right `atom:global:view_all_tenants` or tenant security right `atom:tenant:view_tenant`.
185
+ * Show a tenant
186
+ */
187
+ tenantsTenantIdGetRaw(requestParameters: TenantsTenantIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
188
+ /**
189
+ * Show a tenant. In order to execute this action the current user must have either global security right `atom:global:view_all_tenants` or tenant security right `atom:tenant:view_tenant`.
190
+ * Show a tenant
191
+ */
192
+ tenantsTenantIdGet(tenantId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
193
+ /**
194
+ * Update a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`. It is possible to modify 3 fields: * `name` * `logo_url` * `color`
195
+ * Update a tenant
196
+ */
197
+ tenantsTenantIdPutRaw(requestParameters: TenantsTenantIdPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMOneTenant>>;
198
+ /**
199
+ * Update a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`. It is possible to modify 3 fields: * `name` * `logo_url` * `color`
200
+ * Update a tenant
201
+ */
202
+ tenantsTenantIdPut(tenantId: string, aTOMCreateOrUpdateTenantRequest: ATOMCreateOrUpdateTenantRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMOneTenant>;
203
+ /**
204
+ * Restore a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
205
+ * Restore a tenant
206
+ */
207
+ tenantsTenantIdRestorePostRaw(requestParameters: TenantsTenantIdRestorePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ATOMOneTenant>>;
208
+ /**
209
+ * Restore a tenant. In order to execute this action the current user must have security right `atom:global:create_tenant`.
210
+ * Restore a tenant
211
+ */
212
+ tenantsTenantIdRestorePost(tenantId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ATOMOneTenant>;
213
213
  /**
214
214
  * Add security rights to a tenant. In order to execute this action the current user must have security right `atom:global:assign_sr_to_tenant`.
215
215
  * Add security rights to a tenant
@@ -14,6 +14,7 @@ import type { VCCreateCredentialTypePayloadDto, VCCreateSchemaPayloadDto, VCCred
14
14
  export interface CredentialTypesGetRequest {
15
15
  externalIssuerEnabled?: string;
16
16
  status?: CredentialTypesGetStatusEnum;
17
+ search?: string;
17
18
  meecoOrganisationID?: string;
18
19
  order?: CredentialTypesGetOrderEnum;
19
20
  orderBy?: CredentialTypesGetOrderByEnum;
@@ -67,6 +68,7 @@ export interface CredentialsVerifyPostRequest {
67
68
  }
68
69
  export interface SchemasGetRequest {
69
70
  status?: SchemasGetStatusEnum;
71
+ search?: string;
70
72
  meecoOrganisationID?: string;
71
73
  order?: SchemasGetOrderEnum;
72
74
  orderBy?: SchemasGetOrderByEnum;
@@ -110,7 +112,7 @@ export declare class VerifiableCredentialsApi extends runtime.BaseAPI {
110
112
  * <h4>Requires no security rights</h4><br /><p>Endpoint works for a tenant and organisation user based on the <b>Meeco-Organisation-ID</b> header.</p><p>Returns a list of credential types available to the caller.</p><p>In case of tenant context, endpoint returns all credential types available in the tenancy.</p><p>In case of organization context, <b>organizations</b> list always contains only one item - caller organization ID.</p>
111
113
  * List available credential types
112
114
  */
113
- credentialTypesGet(externalIssuerEnabled?: string, status?: CredentialTypesGetStatusEnum, meecoOrganisationID?: string, order?: CredentialTypesGetOrderEnum, orderBy?: CredentialTypesGetOrderByEnum, perPage?: any, page?: any, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VCCredentialTypesResponseDto>;
115
+ credentialTypesGet(externalIssuerEnabled?: string, status?: CredentialTypesGetStatusEnum, search?: string, meecoOrganisationID?: string, order?: CredentialTypesGetOrderEnum, orderBy?: CredentialTypesGetOrderByEnum, perPage?: any, page?: any, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VCCredentialTypesResponseDto>;
114
116
  /**
115
117
  * <h4>Requires the following security rights:</h4><ul><li><code>vc:org:manage</code></li></ul><br />
116
118
  * Archive credential type
@@ -162,12 +164,12 @@ export declare class VerifiableCredentialsApi extends runtime.BaseAPI {
162
164
  */
163
165
  credentialTypesPost(meecoOrganisationID: string, vCCreateCredentialTypePayloadDto: VCCreateCredentialTypePayloadDto, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VCCredentialTypeResponseDto>;
164
166
  /**
165
- * <h4>Requires the following security rights:</h4><ul><li><code>vc:org:manage</code></li></ul><br /><hr /><p>Generates unsigned verifiable credential token in JWT format. Client is expected to sign it with a private key.</p><hr /><p>An example of how credential signing in Javascript:</p><pre><code>import { generateKeyPairFromSeed } from \'@stablelib/ed25519\'; <br />import { EdDSASigner, hexToBytes } from \'did-jwt\'; <br /><br />const key = generateKeyPairFromSeed(hexToBytes(SECRET_HEX)); <br />const signerFn = EdDSASigner(key.secretKey); <br /><br />const signature = await signerFn(unsignedJwt); <br />const vcJwt = [unsignedJwt, signature].join(\'.\');</code></pre><hr /><br /><h4>Issuer property caveat</h4><p>We use <b>openapi-generator</b> to generate Typescript SDK for the given API swagger definition. However, <b>openapi-generator</b> does not support <b>oneOf</b> configuration properly and generates an invalid Typescript SDK. To avoid the problem, swagger defines <b>issuer</b> property only as string for the moment. While in fact, endpoint accepts issuer as an object in format of <code>{id: string; name: string;}</code> as well.</p><br /><h4>Type property caveat</h4><p> <code>Type</code> is required for <code>vc+sd-jwt</code> format and must be a string <br /> however, endpoint accepts <code>Type</code> as an Array of string for <code>JWT VC</code> in format of <code>[\"VerifiableCredential\", \"AlumniCredential\"]</code> as well. <br /></p>
167
+ * <h4>Requires the following security rights:</h4><ul><li><code>vc:org:manage</code></li></ul><br /><hr /><p>Generates unsigned verifiable credential token in JWT format. Client is expected to sign it with a private key.</p><hr /><p>An example of how credential signing in Javascript:</p><pre><code>import { Ed25519 } from \'@meeco/sdk\'; <br />import { EdDSASigner, hexToBytes } from \'did-jwt\'; <br /><br />const key = new Ed25519(hexToBytes(SEED_HEX)); <br />const signerFn = EdDSASigner(key.getSecretKey()); <br /><br />const signature = await signerFn(unsignedJwt); <br />const vcJwt = [unsignedJwt, signature].join(\'.\');</code></pre><hr /><br /><h4>Issuer property caveat</h4><p>We use <b>openapi-generator</b> to generate Typescript SDK for the given API swagger definition. However, <b>openapi-generator</b> does not support <b>oneOf</b> configuration properly and generates an invalid Typescript SDK. To avoid the problem, swagger defines <b>issuer</b> property only as string for the moment. While in fact, endpoint accepts issuer as an object in format of <code>{id: string; name: string;}</code> as well.</p><br /><h4>Type property caveat</h4><p> <code>Type</code> is required for <code>vc+sd-jwt</code> format and must be a string <br /> however, endpoint accepts <code>Type</code> as an Array of string for <code>JWT VC</code> in format of <code>[\"VerifiableCredential\", \"AlumniCredential\"]</code> as well. <br /></p>
166
168
  * Generate credential based on type and claims provided
167
169
  */
168
170
  credentialsGeneratePostRaw(requestParameters: CredentialsGeneratePostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VCUnsignedCredentialResponseDto>>;
169
171
  /**
170
- * <h4>Requires the following security rights:</h4><ul><li><code>vc:org:manage</code></li></ul><br /><hr /><p>Generates unsigned verifiable credential token in JWT format. Client is expected to sign it with a private key.</p><hr /><p>An example of how credential signing in Javascript:</p><pre><code>import { generateKeyPairFromSeed } from \'@stablelib/ed25519\'; <br />import { EdDSASigner, hexToBytes } from \'did-jwt\'; <br /><br />const key = generateKeyPairFromSeed(hexToBytes(SECRET_HEX)); <br />const signerFn = EdDSASigner(key.secretKey); <br /><br />const signature = await signerFn(unsignedJwt); <br />const vcJwt = [unsignedJwt, signature].join(\'.\');</code></pre><hr /><br /><h4>Issuer property caveat</h4><p>We use <b>openapi-generator</b> to generate Typescript SDK for the given API swagger definition. However, <b>openapi-generator</b> does not support <b>oneOf</b> configuration properly and generates an invalid Typescript SDK. To avoid the problem, swagger defines <b>issuer</b> property only as string for the moment. While in fact, endpoint accepts issuer as an object in format of <code>{id: string; name: string;}</code> as well.</p><br /><h4>Type property caveat</h4><p> <code>Type</code> is required for <code>vc+sd-jwt</code> format and must be a string <br /> however, endpoint accepts <code>Type</code> as an Array of string for <code>JWT VC</code> in format of <code>[\"VerifiableCredential\", \"AlumniCredential\"]</code> as well. <br /></p>
172
+ * <h4>Requires the following security rights:</h4><ul><li><code>vc:org:manage</code></li></ul><br /><hr /><p>Generates unsigned verifiable credential token in JWT format. Client is expected to sign it with a private key.</p><hr /><p>An example of how credential signing in Javascript:</p><pre><code>import { Ed25519 } from \'@meeco/sdk\'; <br />import { EdDSASigner, hexToBytes } from \'did-jwt\'; <br /><br />const key = new Ed25519(hexToBytes(SEED_HEX)); <br />const signerFn = EdDSASigner(key.getSecretKey()); <br /><br />const signature = await signerFn(unsignedJwt); <br />const vcJwt = [unsignedJwt, signature].join(\'.\');</code></pre><hr /><br /><h4>Issuer property caveat</h4><p>We use <b>openapi-generator</b> to generate Typescript SDK for the given API swagger definition. However, <b>openapi-generator</b> does not support <b>oneOf</b> configuration properly and generates an invalid Typescript SDK. To avoid the problem, swagger defines <b>issuer</b> property only as string for the moment. While in fact, endpoint accepts issuer as an object in format of <code>{id: string; name: string;}</code> as well.</p><br /><h4>Type property caveat</h4><p> <code>Type</code> is required for <code>vc+sd-jwt</code> format and must be a string <br /> however, endpoint accepts <code>Type</code> as an Array of string for <code>JWT VC</code> in format of <code>[\"VerifiableCredential\", \"AlumniCredential\"]</code> as well. <br /></p>
171
173
  * Generate credential based on type and claims provided
172
174
  */
173
175
  credentialsGeneratePost(meecoOrganisationID: string, vCGenerateCredentialPayloadDto: VCGenerateCredentialPayloadDto, accept?: CredentialsGeneratePostAcceptEnum, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VCUnsignedCredentialResponseDto>;
@@ -220,7 +222,7 @@ export declare class VerifiableCredentialsApi extends runtime.BaseAPI {
220
222
  * <p>Endpoint works for a tenant and organisation user based on the <b>Meeco-Organisation-ID</b> header.</p><p>Returns a list of schemas available to the caller.</p><p>In case of organization context, <b>organization_ids</b> list always contains only one item - caller organization ID.</p>
221
223
  * List available schemas
222
224
  */
223
- schemasGet(status?: SchemasGetStatusEnum, meecoOrganisationID?: string, order?: SchemasGetOrderEnum, orderBy?: SchemasGetOrderByEnum, perPage?: any, page?: any, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VCSchemasResponseDto>;
225
+ schemasGet(status?: SchemasGetStatusEnum, search?: string, meecoOrganisationID?: string, order?: SchemasGetOrderEnum, orderBy?: SchemasGetOrderByEnum, perPage?: any, page?: any, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VCSchemasResponseDto>;
224
226
  /**
225
227
  * <h4>Requires the following security rights:</h4><ul><li><code>vc:tenant:manage</code></li></ul><br />
226
228
  * Archive schema
@@ -366,6 +366,7 @@ export type OidcPresentationsRequestsGetOrderEnum = typeof OidcPresentationsRequ
366
366
  */
367
367
  export declare const OidcPresentationsRequestsGetOrderByEnum: {
368
368
  readonly CreatedAt: "created_at";
369
+ readonly UpdatedAt: "updated_at";
369
370
  readonly Name: "name";
370
371
  };
371
372
  export type OidcPresentationsRequestsGetOrderByEnum = typeof OidcPresentationsRequestsGetOrderByEnum[keyof typeof OidcPresentationsRequestsGetOrderByEnum];
@@ -39,6 +39,24 @@ export interface ATOMBlobInfo {
39
39
  * @memberof ATOMBlobInfo
40
40
  */
41
41
  read_url?: string;
42
+ /**
43
+ * name of the cloud storage configuration
44
+ * @type {string}
45
+ * @memberof ATOMBlobInfo
46
+ */
47
+ storage_backend_name: string;
48
+ /**
49
+ * which cloud provider the file is histed at
50
+ * @type {string}
51
+ * @memberof ATOMBlobInfo
52
+ */
53
+ storage_backend_type: string;
54
+ /**
55
+ * HTTP headers which must be added to the HTTP upload call
56
+ * @type {object}
57
+ * @memberof ATOMBlobInfo
58
+ */
59
+ upload_headers?: object;
42
60
  /**
43
61
  * the URL to which a client can upload a file. The upload is done via `PUT` and there should be header `x-ms-blob-type: BlockBlob`
44
62
  * @type {string}
@@ -39,6 +39,18 @@ export interface ATOMBlobPublicInfo {
39
39
  * @memberof ATOMBlobPublicInfo
40
40
  */
41
41
  read_url?: string;
42
+ /**
43
+ * name of the cloud storage configuration
44
+ * @type {string}
45
+ * @memberof ATOMBlobPublicInfo
46
+ */
47
+ storage_backend_name: string;
48
+ /**
49
+ * which cloud provider the file is histed at
50
+ * @type {string}
51
+ * @memberof ATOMBlobPublicInfo
52
+ */
53
+ storage_backend_type: string;
42
54
  /**
43
55
  *
44
56
  * @type {boolean}
@@ -0,0 +1,37 @@
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: 1.3.5
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 ATOMFileStorageBackend
16
+ */
17
+ export interface ATOMFileStorageBackend {
18
+ /**
19
+ * Type of a cloud backend. Currently it can be `aws_s3` or `azure`
20
+ * @type {string}
21
+ * @memberof ATOMFileStorageBackend
22
+ */
23
+ cloud?: string;
24
+ /**
25
+ * Name of a cloud file storage backend
26
+ * @type {string}
27
+ * @memberof ATOMFileStorageBackend
28
+ */
29
+ name?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the ATOMFileStorageBackend interface.
33
+ */
34
+ export declare function instanceOfATOMFileStorageBackend(value: object): boolean;
35
+ export declare function ATOMFileStorageBackendFromJSON(json: any): ATOMFileStorageBackend;
36
+ export declare function ATOMFileStorageBackendFromJSONTyped(json: any, ignoreDiscriminator: boolean): ATOMFileStorageBackend;
37
+ export declare function ATOMFileStorageBackendToJSON(value?: ATOMFileStorageBackend | null): any;
@@ -0,0 +1,38 @@
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: 1.3.5
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 { ATOMFileStorageBackend } from './ATOMFileStorageBackend';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ATOMFileStorageConfiguration
17
+ */
18
+ export interface ATOMFileStorageConfiguration {
19
+ /**
20
+ * Default cloud file storage backend
21
+ * @type {string}
22
+ * @memberof ATOMFileStorageConfiguration
23
+ */
24
+ default_storage_backend?: string;
25
+ /**
26
+ * list of configured storage backends
27
+ * @type {Array<ATOMFileStorageBackend>}
28
+ * @memberof ATOMFileStorageConfiguration
29
+ */
30
+ storage_backends?: Array<ATOMFileStorageBackend>;
31
+ }
32
+ /**
33
+ * Check if a given object implements the ATOMFileStorageConfiguration interface.
34
+ */
35
+ export declare function instanceOfATOMFileStorageConfiguration(value: object): boolean;
36
+ export declare function ATOMFileStorageConfigurationFromJSON(json: any): ATOMFileStorageConfiguration;
37
+ export declare function ATOMFileStorageConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ATOMFileStorageConfiguration;
38
+ export declare function ATOMFileStorageConfigurationToJSON(value?: ATOMFileStorageConfiguration | null): any;
@@ -33,6 +33,18 @@ export interface VCCredentialTypeModelDtoSchema {
33
33
  * @memberof VCCredentialTypeModelDtoSchema
34
34
  */
35
35
  name: string;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof VCCredentialTypeModelDtoSchema
40
+ */
41
+ archived: boolean;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof VCCredentialTypeModelDtoSchema
46
+ */
47
+ version: string;
36
48
  }
37
49
  /**
38
50
  * Check if a given object implements the VCCredentialTypeModelDtoSchema interface.
@@ -33,6 +33,18 @@ export interface VCCredentialTypeSchemaDto {
33
33
  * @memberof VCCredentialTypeSchemaDto
34
34
  */
35
35
  name: string;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof VCCredentialTypeSchemaDto
40
+ */
41
+ archived: boolean;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof VCCredentialTypeSchemaDto
46
+ */
47
+ version: string;
36
48
  }
37
49
  /**
38
50
  * Check if a given object implements the VCCredentialTypeSchemaDto interface.
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { VCConstraintsDto } from './VCConstraintsDto';
13
+ import type { VCFormatDto } from './VCFormatDto';
13
14
  import type { VCShemasDto } from './VCShemasDto';
14
15
  /**
15
16
  *
@@ -47,6 +48,12 @@ export interface VCInputDescriptorsDto {
47
48
  * @memberof VCInputDescriptorsDto
48
49
  */
49
50
  constraints?: VCConstraintsDto;
51
+ /**
52
+ *
53
+ * @type {VCFormatDto}
54
+ * @memberof VCInputDescriptorsDto
55
+ */
56
+ format?: VCFormatDto;
50
57
  }
51
58
  /**
52
59
  * Check if a given object implements the VCInputDescriptorsDto interface.
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { VCFormatDto } from './VCFormatDto';
13
12
  import type { VCInputDescriptorsDto } from './VCInputDescriptorsDto';
14
13
  /**
15
14
  *
@@ -41,12 +40,6 @@ export interface VCPresentationDefinitionDto {
41
40
  * @memberof VCPresentationDefinitionDto
42
41
  */
43
42
  purpose?: string;
44
- /**
45
- *
46
- * @type {VCFormatDto}
47
- * @memberof VCPresentationDefinitionDto
48
- */
49
- format?: VCFormatDto;
50
43
  }
51
44
  /**
52
45
  * Check if a given object implements the VCPresentationDefinitionDto interface.
@@ -40,6 +40,12 @@ export interface VCPresentationDefinitionToSchemaModel {
40
40
  * @memberof VCPresentationDefinitionToSchemaModel
41
41
  */
42
42
  schema_version: string;
43
+ /**
44
+ *
45
+ * @type {boolean}
46
+ * @memberof VCPresentationDefinitionToSchemaModel
47
+ */
48
+ archived: boolean;
43
49
  /**
44
50
  *
45
51
  * @type {VCPresentationDefinitionToSchemaModelConstraints}
@@ -26,13 +26,19 @@ export interface VCVerifyPresentationRequestResponseDto {
26
26
  * @type {string}
27
27
  * @memberof VCVerifyPresentationRequestResponseDto
28
28
  */
29
- id_token: string;
29
+ id_token?: string;
30
30
  /**
31
31
  *
32
32
  * @type {string}
33
33
  * @memberof VCVerifyPresentationRequestResponseDto
34
34
  */
35
35
  vp_token?: string;
36
+ /**
37
+ *
38
+ * @type {object}
39
+ * @memberof VCVerifyPresentationRequestResponseDto
40
+ */
41
+ presentation_submission?: object;
36
42
  /**
37
43
  * Not used anywhere at the moment
38
44
  * @type {string}
@@ -16,6 +16,8 @@ export * from './ATOMComponent';
16
16
  export * from './ATOMCreateOrUpdateOrgRequest';
17
17
  export * from './ATOMCreateOrUpdateTenantRequest';
18
18
  export * from './ATOMError';
19
+ export * from './ATOMFileStorageBackend';
20
+ export * from './ATOMFileStorageConfiguration';
19
21
  export * from './ATOMGenesisRequest';
20
22
  export * from './ATOMNewAgentRequest';
21
23
  export * from './ATOMOneAgent';