@eudiplo/sdk-core 1.14.0 → 1.15.2
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/dist/api/client/client.gen.d.mts +5 -0
- package/dist/api/client/client.gen.d.ts +5 -0
- package/dist/api/client/client.gen.js +819 -0
- package/dist/api/client/client.gen.mjs +817 -0
- package/dist/api/client/index.d.mts +58 -0
- package/dist/api/client/index.d.ts +58 -0
- package/dist/api/client/index.js +1048 -0
- package/dist/api/client/index.mjs +1039 -0
- package/dist/api/client/types.gen.d.mts +1 -0
- package/dist/api/client/types.gen.d.ts +1 -0
- package/dist/api/client/types.gen.js +4 -0
- package/dist/api/client/types.gen.mjs +3 -0
- package/dist/api/client.gen.d.mts +2 -0
- package/dist/api/client.gen.d.ts +2 -0
- package/dist/api/client.gen.js +824 -0
- package/dist/api/client.gen.mjs +822 -0
- package/dist/api/index.d.mts +8 -2641
- package/dist/api/index.d.ts +8 -2641
- package/dist/api/index.js +11 -0
- package/dist/api/index.mjs +10 -1
- package/dist/client.gen-CU56lLgT.d.mts +2442 -0
- package/dist/client.gen-CsfHl8pY.d.ts +2442 -0
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +22 -6
- package/dist/index.mjs +21 -7
- package/dist/types.gen-CIiveH8G.d.mts +328 -0
- package/dist/types.gen-CIiveH8G.d.ts +328 -0
- package/package.json +16 -6
- package/dist/api/index.js.map +0 -1
- package/dist/api/index.mjs.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/index.mjs.map +0 -1
package/dist/api/index.d.ts
CHANGED
|
@@ -1,2643 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
};
|
|
4
|
-
type RoleDto = {
|
|
5
|
-
/**
|
|
6
|
-
* OAuth2 roles
|
|
7
|
-
*/
|
|
8
|
-
role: "presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage";
|
|
9
|
-
};
|
|
10
|
-
type ClientCredentialsDto = {
|
|
11
|
-
client_id: string;
|
|
12
|
-
client_secret: string;
|
|
13
|
-
};
|
|
14
|
-
type TokenResponse = {
|
|
15
|
-
access_token: string;
|
|
16
|
-
refresh_token?: string;
|
|
17
|
-
token_type: string;
|
|
18
|
-
expires_in: number;
|
|
19
|
-
};
|
|
20
|
-
type SessionStorageConfig = {
|
|
21
|
-
/**
|
|
22
|
-
* Time-to-live for sessions in seconds. If not set, uses global SESSION_TTL.
|
|
23
|
-
*/
|
|
24
|
-
ttlSeconds?: number;
|
|
25
|
-
/**
|
|
26
|
-
* Cleanup mode: 'full' deletes everything, 'anonymize' keeps metadata but removes PII.
|
|
27
|
-
*/
|
|
28
|
-
cleanupMode?: "full" | "anonymize";
|
|
29
|
-
};
|
|
30
|
-
type StatusListConfig = {
|
|
31
|
-
/**
|
|
32
|
-
* The capacity of the status list. If not set, uses global STATUS_CAPACITY.
|
|
33
|
-
*/
|
|
34
|
-
capacity?: number;
|
|
35
|
-
/**
|
|
36
|
-
* Bits per status entry: 1 (valid/revoked), 2 (with suspended), 4/8 (extended). If not set, uses global STATUS_BITS.
|
|
37
|
-
*/
|
|
38
|
-
bits?: 1 | 2 | 4 | 8;
|
|
39
|
-
/**
|
|
40
|
-
* TTL in seconds for the status list JWT. If not set, uses global STATUS_TTL.
|
|
41
|
-
*/
|
|
42
|
-
ttl?: number;
|
|
43
|
-
/**
|
|
44
|
-
* If true, regenerate JWT immediately on status changes. If false (default), use lazy regeneration on TTL expiry.
|
|
45
|
-
*/
|
|
46
|
-
immediateUpdate?: boolean;
|
|
47
|
-
/**
|
|
48
|
-
* If true, include aggregation_uri in status list JWTs for pre-fetching support (default: true).
|
|
49
|
-
*/
|
|
50
|
-
enableAggregation?: boolean;
|
|
51
|
-
};
|
|
52
|
-
type TenantEntity = {
|
|
53
|
-
/**
|
|
54
|
-
* Session storage configuration for this tenant. Controls TTL and cleanup behavior.
|
|
55
|
-
*/
|
|
56
|
-
sessionConfig?: SessionStorageConfig;
|
|
57
|
-
/**
|
|
58
|
-
* Status list configuration for this tenant. Only affects newly created status lists.
|
|
59
|
-
*/
|
|
60
|
-
statusListConfig?: StatusListConfig;
|
|
61
|
-
/**
|
|
62
|
-
* The unique identifier for the tenant.
|
|
63
|
-
*/
|
|
64
|
-
id: string;
|
|
65
|
-
/**
|
|
66
|
-
* The name of the tenant.
|
|
67
|
-
*/
|
|
68
|
-
name: string;
|
|
69
|
-
/**
|
|
70
|
-
* The description of the tenant.
|
|
71
|
-
*/
|
|
72
|
-
description?: string;
|
|
73
|
-
/**
|
|
74
|
-
* The current status of the tenant.
|
|
75
|
-
*/
|
|
76
|
-
status: string;
|
|
77
|
-
/**
|
|
78
|
-
* The clients associated with the tenant.
|
|
79
|
-
*/
|
|
80
|
-
clients: Array<ClientEntity>;
|
|
81
|
-
};
|
|
82
|
-
type ClientEntity = {
|
|
83
|
-
/**
|
|
84
|
-
* The unique identifier for the client.
|
|
85
|
-
*/
|
|
86
|
-
clientId: string;
|
|
87
|
-
/**
|
|
88
|
-
* The secret key for the client.
|
|
89
|
-
*/
|
|
90
|
-
secret?: string;
|
|
91
|
-
/**
|
|
92
|
-
* The unique identifier for the tenant that the client belongs to. Only null for accounts that manage tenants, that do not belong to a client
|
|
93
|
-
*/
|
|
94
|
-
tenantId?: string;
|
|
95
|
-
/**
|
|
96
|
-
* The description of the client.
|
|
97
|
-
*/
|
|
98
|
-
description?: string;
|
|
99
|
-
/**
|
|
100
|
-
* The roles assigned to the client.
|
|
101
|
-
*/
|
|
102
|
-
roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
|
|
103
|
-
/**
|
|
104
|
-
* The tenant that the client belongs to.
|
|
105
|
-
*/
|
|
106
|
-
tenant?: TenantEntity;
|
|
107
|
-
};
|
|
108
|
-
type CreateTenantDto = {
|
|
109
|
-
/**
|
|
110
|
-
* Status list configuration for this tenant. Only affects newly created status lists.
|
|
111
|
-
*/
|
|
112
|
-
statusListConfig?: StatusListConfig;
|
|
113
|
-
/**
|
|
114
|
-
* Session storage configuration. Controls TTL and cleanup behavior.
|
|
115
|
-
*/
|
|
116
|
-
sessionConfig?: SessionStorageConfig;
|
|
117
|
-
roles?: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
|
|
118
|
-
/**
|
|
119
|
-
* The unique identifier for the tenant.
|
|
120
|
-
*/
|
|
121
|
-
id: string;
|
|
122
|
-
/**
|
|
123
|
-
* The name of the tenant.
|
|
124
|
-
*/
|
|
125
|
-
name: string;
|
|
126
|
-
/**
|
|
127
|
-
* The description of the tenant.
|
|
128
|
-
*/
|
|
129
|
-
description?: string;
|
|
130
|
-
};
|
|
131
|
-
type ClientSecretResponseDto = {
|
|
132
|
-
secret: string;
|
|
133
|
-
};
|
|
134
|
-
type UpdateClientDto = {
|
|
135
|
-
/**
|
|
136
|
-
* The description of the client.
|
|
137
|
-
*/
|
|
138
|
-
description?: string;
|
|
139
|
-
/**
|
|
140
|
-
* The roles assigned to the client.
|
|
141
|
-
*/
|
|
142
|
-
roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
|
|
143
|
-
};
|
|
144
|
-
type CreateClientDto = {
|
|
145
|
-
/**
|
|
146
|
-
* The unique identifier for the client.
|
|
147
|
-
*/
|
|
148
|
-
clientId: string;
|
|
149
|
-
/**
|
|
150
|
-
* The description of the client.
|
|
151
|
-
*/
|
|
152
|
-
description?: string;
|
|
153
|
-
/**
|
|
154
|
-
* The roles assigned to the client.
|
|
155
|
-
*/
|
|
156
|
-
roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
|
|
157
|
-
};
|
|
158
|
-
type CertUsageEntity = {
|
|
159
|
-
tenantId: string;
|
|
160
|
-
certId: string;
|
|
161
|
-
usage: "access" | "signing" | "trustList" | "statusList";
|
|
162
|
-
cert: CertEntity;
|
|
163
|
-
};
|
|
164
|
-
type KeyEntity = {
|
|
165
|
-
/**
|
|
166
|
-
* Unique identifier for the key.
|
|
167
|
-
*/
|
|
168
|
-
id: string;
|
|
169
|
-
/**
|
|
170
|
-
* Description of the key.
|
|
171
|
-
*/
|
|
172
|
-
description?: string;
|
|
173
|
-
/**
|
|
174
|
-
* Tenant ID for the key.
|
|
175
|
-
*/
|
|
176
|
-
tenantId: string;
|
|
177
|
-
/**
|
|
178
|
-
* The tenant that owns this object.
|
|
179
|
-
*/
|
|
180
|
-
tenant: TenantEntity;
|
|
181
|
-
/**
|
|
182
|
-
* The key material.
|
|
183
|
-
*/
|
|
184
|
-
key: {
|
|
185
|
-
[key: string]: unknown;
|
|
186
|
-
};
|
|
187
|
-
/**
|
|
188
|
-
* The usage type of the key.
|
|
189
|
-
*/
|
|
190
|
-
usage: {
|
|
191
|
-
[key: string]: unknown;
|
|
192
|
-
};
|
|
193
|
-
/**
|
|
194
|
-
* Certificates associated with this key.
|
|
195
|
-
*/
|
|
196
|
-
certificates: Array<CertEntity>;
|
|
197
|
-
/**
|
|
198
|
-
* The timestamp when the key was created.
|
|
199
|
-
*/
|
|
200
|
-
createdAt: string;
|
|
201
|
-
/**
|
|
202
|
-
* The timestamp when the key was last updated.
|
|
203
|
-
*/
|
|
204
|
-
updatedAt: string;
|
|
205
|
-
};
|
|
206
|
-
type CertEntity = {
|
|
207
|
-
/**
|
|
208
|
-
* The key ID this certificate is associated with
|
|
209
|
-
*/
|
|
210
|
-
keyId: string;
|
|
211
|
-
/**
|
|
212
|
-
* Unique identifier for the key.
|
|
213
|
-
*/
|
|
214
|
-
id: string;
|
|
215
|
-
/**
|
|
216
|
-
* Tenant ID for the key.
|
|
217
|
-
*/
|
|
218
|
-
tenantId: string;
|
|
219
|
-
/**
|
|
220
|
-
* The tenant that owns this object.
|
|
221
|
-
*/
|
|
222
|
-
tenant: TenantEntity;
|
|
223
|
-
/**
|
|
224
|
-
* Certificate in PEM format.
|
|
225
|
-
*/
|
|
226
|
-
crt: string;
|
|
227
|
-
usages: Array<CertUsageEntity>;
|
|
228
|
-
/**
|
|
229
|
-
* Description of the key.
|
|
230
|
-
*/
|
|
231
|
-
description?: string;
|
|
232
|
-
key: KeyEntity;
|
|
233
|
-
/**
|
|
234
|
-
* The timestamp when the certificate was created.
|
|
235
|
-
*/
|
|
236
|
-
createdAt: string;
|
|
237
|
-
/**
|
|
238
|
-
* The timestamp when the certificate was last updated.
|
|
239
|
-
*/
|
|
240
|
-
updatedAt: string;
|
|
241
|
-
};
|
|
242
|
-
type Key = {
|
|
243
|
-
kty: string;
|
|
244
|
-
x: string;
|
|
245
|
-
y: string;
|
|
246
|
-
crv: string;
|
|
247
|
-
d: string;
|
|
248
|
-
alg: string;
|
|
249
|
-
};
|
|
250
|
-
type KeyImportDto = {
|
|
251
|
-
/**
|
|
252
|
-
* The private key in JWK format.
|
|
253
|
-
*/
|
|
254
|
-
key: Key;
|
|
255
|
-
/**
|
|
256
|
-
* Unique identifier for the key.
|
|
257
|
-
*/
|
|
258
|
-
id: string;
|
|
259
|
-
/**
|
|
260
|
-
* Description of the key.
|
|
261
|
-
*/
|
|
262
|
-
description?: string;
|
|
263
|
-
};
|
|
264
|
-
type UpdateKeyDto = {
|
|
265
|
-
/**
|
|
266
|
-
* Unique identifier for the key.
|
|
267
|
-
*/
|
|
268
|
-
id: string;
|
|
269
|
-
/**
|
|
270
|
-
* Description of the key.
|
|
271
|
-
*/
|
|
272
|
-
description?: string;
|
|
273
|
-
};
|
|
274
|
-
type CertImportDto = {
|
|
275
|
-
/**
|
|
276
|
-
* The key ID this certificate is associated with
|
|
277
|
-
*/
|
|
278
|
-
keyId: string;
|
|
279
|
-
id?: string;
|
|
280
|
-
/**
|
|
281
|
-
* Usage types for the certificate.
|
|
282
|
-
*/
|
|
283
|
-
certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
|
|
284
|
-
/**
|
|
285
|
-
* Certificate in PEM format, if not provided, a self-signed certificate will be generated.
|
|
286
|
-
*/
|
|
287
|
-
crt?: string;
|
|
288
|
-
/**
|
|
289
|
-
* Description of the key.
|
|
290
|
-
*/
|
|
291
|
-
description?: string;
|
|
292
|
-
};
|
|
293
|
-
type CertResponseDto = {
|
|
294
|
-
/**
|
|
295
|
-
* The ID of the created self-signed certificate.
|
|
296
|
-
*/
|
|
297
|
-
id: string;
|
|
298
|
-
};
|
|
299
|
-
type CertUpdateDto = {
|
|
300
|
-
/**
|
|
301
|
-
* Usage types for the certificate.
|
|
302
|
-
*/
|
|
303
|
-
certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
|
|
304
|
-
usages: Array<CertUsageEntity>;
|
|
305
|
-
/**
|
|
306
|
-
* Description of the key.
|
|
307
|
-
*/
|
|
308
|
-
description?: string;
|
|
309
|
-
};
|
|
310
|
-
type StatusListImportDto = {
|
|
311
|
-
/**
|
|
312
|
-
* Unique identifier for the status list
|
|
313
|
-
*/
|
|
314
|
-
id: string;
|
|
315
|
-
/**
|
|
316
|
-
* Credential configuration ID to bind this list exclusively to. Leave empty for a shared list.
|
|
317
|
-
*/
|
|
318
|
-
credentialConfigurationId?: string;
|
|
319
|
-
/**
|
|
320
|
-
* Certificate ID to use for signing. Leave empty to use the tenant's default StatusList certificate.
|
|
321
|
-
*/
|
|
322
|
-
certId?: string;
|
|
323
|
-
/**
|
|
324
|
-
* Capacity of the status list. If not provided, uses tenant or global defaults.
|
|
325
|
-
*/
|
|
326
|
-
capacity?: number;
|
|
327
|
-
/**
|
|
328
|
-
* Bits per status value. If not provided, uses tenant or global defaults.
|
|
329
|
-
*/
|
|
330
|
-
bits?: 1 | 2 | 4 | 8;
|
|
331
|
-
};
|
|
332
|
-
type StatusListAggregationDto = {
|
|
333
|
-
/**
|
|
334
|
-
* Array of status list token URIs
|
|
335
|
-
*/
|
|
336
|
-
status_lists: Array<string>;
|
|
337
|
-
};
|
|
338
|
-
type UpdateStatusListConfigDto = {
|
|
339
|
-
/**
|
|
340
|
-
* The capacity of the status list. Set to null to reset to global default.
|
|
341
|
-
*/
|
|
342
|
-
capacity?: number;
|
|
343
|
-
/**
|
|
344
|
-
* Bits per status entry. Set to null to reset to global default.
|
|
345
|
-
*/
|
|
346
|
-
bits?: 1 | 2 | 4 | 8;
|
|
347
|
-
/**
|
|
348
|
-
* TTL in seconds for the status list JWT. Set to null to reset to global default.
|
|
349
|
-
*/
|
|
350
|
-
ttl?: number;
|
|
351
|
-
/**
|
|
352
|
-
* If true, regenerate JWT on every status change. Set to null to reset to default (false).
|
|
353
|
-
*/
|
|
354
|
-
immediateUpdate?: boolean;
|
|
355
|
-
/**
|
|
356
|
-
* If true, include aggregation_uri in status list JWTs for pre-fetching support. Set to null to reset to default (true).
|
|
357
|
-
*/
|
|
358
|
-
enableAggregation?: boolean;
|
|
359
|
-
};
|
|
360
|
-
type StatusListResponseDto = {
|
|
361
|
-
/**
|
|
362
|
-
* Unique identifier for the status list
|
|
363
|
-
*/
|
|
364
|
-
id: string;
|
|
365
|
-
/**
|
|
366
|
-
* The tenant ID
|
|
367
|
-
*/
|
|
368
|
-
tenantId: string;
|
|
369
|
-
/**
|
|
370
|
-
* Credential configuration ID this list is bound to. Null means shared.
|
|
371
|
-
*/
|
|
372
|
-
credentialConfigurationId?: string;
|
|
373
|
-
/**
|
|
374
|
-
* Certificate ID used for signing. Null means using the tenant's default.
|
|
375
|
-
*/
|
|
376
|
-
certId?: string;
|
|
377
|
-
/**
|
|
378
|
-
* Bits per status value
|
|
379
|
-
*/
|
|
380
|
-
bits: 1 | 2 | 4 | 8;
|
|
381
|
-
/**
|
|
382
|
-
* Total capacity of the status list
|
|
383
|
-
*/
|
|
384
|
-
capacity: number;
|
|
385
|
-
/**
|
|
386
|
-
* Number of entries in use
|
|
387
|
-
*/
|
|
388
|
-
usedEntries: number;
|
|
389
|
-
/**
|
|
390
|
-
* Number of available entries
|
|
391
|
-
*/
|
|
392
|
-
availableEntries: number;
|
|
393
|
-
/**
|
|
394
|
-
* The public URI for this status list
|
|
395
|
-
*/
|
|
396
|
-
uri: string;
|
|
397
|
-
/**
|
|
398
|
-
* Creation timestamp
|
|
399
|
-
*/
|
|
400
|
-
createdAt: string;
|
|
401
|
-
/**
|
|
402
|
-
* JWT expiration timestamp. Null if JWT has not been generated yet.
|
|
403
|
-
*/
|
|
404
|
-
expiresAt?: string;
|
|
405
|
-
};
|
|
406
|
-
type CreateStatusListDto = {
|
|
407
|
-
/**
|
|
408
|
-
* Credential configuration ID to bind this list exclusively to. Leave empty for a shared list.
|
|
409
|
-
*/
|
|
410
|
-
credentialConfigurationId?: string;
|
|
411
|
-
/**
|
|
412
|
-
* Certificate ID to use for signing. Leave empty to use the tenant's default StatusList certificate.
|
|
413
|
-
*/
|
|
414
|
-
certId?: string;
|
|
415
|
-
/**
|
|
416
|
-
* Bits per status value. More bits allow more status states. Defaults to tenant configuration.
|
|
417
|
-
*/
|
|
418
|
-
bits?: 1 | 2 | 4 | 8;
|
|
419
|
-
/**
|
|
420
|
-
* Maximum number of credential status entries. Defaults to tenant configuration.
|
|
421
|
-
*/
|
|
422
|
-
capacity?: number;
|
|
423
|
-
};
|
|
424
|
-
type UpdateStatusListDto = {
|
|
425
|
-
/**
|
|
426
|
-
* Credential configuration ID to bind this list exclusively to. Set to null to make this a shared list.
|
|
427
|
-
*/
|
|
428
|
-
credentialConfigurationId?: string;
|
|
429
|
-
/**
|
|
430
|
-
* Certificate ID to use for signing. Set to null to use the tenant's default StatusList certificate.
|
|
431
|
-
*/
|
|
432
|
-
certId?: string;
|
|
433
|
-
};
|
|
434
|
-
type AuthorizeQueries = {
|
|
435
|
-
issuer_state?: string;
|
|
436
|
-
response_type?: string;
|
|
437
|
-
client_id?: string;
|
|
438
|
-
redirect_uri?: string;
|
|
439
|
-
resource?: string;
|
|
440
|
-
scope?: string;
|
|
441
|
-
code_challenge?: string;
|
|
442
|
-
code_challenge_method?: string;
|
|
443
|
-
dpop_jkt?: string;
|
|
444
|
-
request_uri?: string;
|
|
445
|
-
auth_session?: string;
|
|
446
|
-
state?: string;
|
|
447
|
-
};
|
|
448
|
-
type WebHookAuthConfigNone = {
|
|
449
|
-
/**
|
|
450
|
-
* The type of authentication used for the webhook.
|
|
451
|
-
*/
|
|
452
|
-
type: "none";
|
|
453
|
-
};
|
|
454
|
-
type ApiKeyConfig = {
|
|
455
|
-
/**
|
|
456
|
-
* The name of the header where the API key will be sent.
|
|
457
|
-
*/
|
|
458
|
-
headerName: string;
|
|
459
|
-
/**
|
|
460
|
-
* The value of the API key to be sent in the header.
|
|
461
|
-
*/
|
|
462
|
-
value: string;
|
|
463
|
-
};
|
|
464
|
-
type WebHookAuthConfigHeader = {
|
|
465
|
-
/**
|
|
466
|
-
* The type of authentication used for the webhook.
|
|
467
|
-
*/
|
|
468
|
-
type: "apiKey";
|
|
469
|
-
/**
|
|
470
|
-
* Configuration for API key authentication.
|
|
471
|
-
* This is required if the type is 'apiKey'.
|
|
472
|
-
*/
|
|
473
|
-
config: ApiKeyConfig;
|
|
474
|
-
};
|
|
475
|
-
type WebhookConfig = {
|
|
476
|
-
/**
|
|
477
|
-
* Optional authentication configuration for the webhook.
|
|
478
|
-
* If not provided, no authentication will be used.
|
|
479
|
-
*/
|
|
480
|
-
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
481
|
-
/**
|
|
482
|
-
* The URL to which the webhook will send notifications.
|
|
483
|
-
*/
|
|
484
|
-
url: string;
|
|
485
|
-
};
|
|
486
|
-
type OfferRequestDto = {
|
|
487
|
-
/**
|
|
488
|
-
* The type of response expected for the offer request.
|
|
489
|
-
*/
|
|
490
|
-
response_type: "qrcode" | "uri" | "dc-api";
|
|
491
|
-
/**
|
|
492
|
-
* Credential claims configuration per credential. Keys must match credentialConfigurationIds.
|
|
493
|
-
*/
|
|
494
|
-
credentialClaims?: {
|
|
495
|
-
additionalProperties?: {
|
|
496
|
-
type: "inline";
|
|
497
|
-
claims: {
|
|
498
|
-
[key: string]: unknown;
|
|
499
|
-
};
|
|
500
|
-
} | {
|
|
501
|
-
type: "webhook";
|
|
502
|
-
webhook: {
|
|
503
|
-
[key: string]: unknown;
|
|
504
|
-
};
|
|
505
|
-
};
|
|
506
|
-
};
|
|
507
|
-
/**
|
|
508
|
-
* The flow type for the offer request.
|
|
509
|
-
*/
|
|
510
|
-
flow: "authorization_code" | "pre_authorized_code";
|
|
511
|
-
/**
|
|
512
|
-
* Transaction code for pre-authorized code flow.
|
|
513
|
-
*/
|
|
514
|
-
tx_code?: string;
|
|
515
|
-
/**
|
|
516
|
-
* List of credential configuration ids to be included in the offer.
|
|
517
|
-
*/
|
|
518
|
-
credentialConfigurationIds: Array<string>;
|
|
519
|
-
/**
|
|
520
|
-
* Webhook to notify about the status of the issuance process.
|
|
521
|
-
*/
|
|
522
|
-
notifyWebhook?: WebhookConfig;
|
|
523
|
-
};
|
|
524
|
-
type Session = {
|
|
525
|
-
/**
|
|
526
|
-
* Status of the session.
|
|
527
|
-
*/
|
|
528
|
-
status: "active" | "fetched" | "completed" | "expired" | "failed";
|
|
529
|
-
/**
|
|
530
|
-
* Unique identifier for the session.
|
|
531
|
-
*/
|
|
532
|
-
id: string;
|
|
533
|
-
/**
|
|
534
|
-
* The timestamp when the request was created.
|
|
535
|
-
*/
|
|
536
|
-
createdAt: string;
|
|
537
|
-
/**
|
|
538
|
-
* The timestamp when the request was last updated.
|
|
539
|
-
*/
|
|
540
|
-
updatedAt: string;
|
|
541
|
-
/**
|
|
542
|
-
* The timestamp when the request is set to expire.
|
|
543
|
-
*/
|
|
544
|
-
expiresAt?: string;
|
|
545
|
-
/**
|
|
546
|
-
* Flag indicating whether to use the DC API for the presentation request.
|
|
547
|
-
*/
|
|
548
|
-
useDcApi: boolean;
|
|
549
|
-
/**
|
|
550
|
-
* Tenant ID for multi-tenancy support.
|
|
551
|
-
*/
|
|
552
|
-
tenantId: string;
|
|
553
|
-
/**
|
|
554
|
-
* The tenant that owns this object.
|
|
555
|
-
*/
|
|
556
|
-
tenant: TenantEntity;
|
|
557
|
-
authorization_code?: string;
|
|
558
|
-
/**
|
|
559
|
-
* Request URI from the authorization request.
|
|
560
|
-
*/
|
|
561
|
-
request_uri?: string;
|
|
562
|
-
/**
|
|
563
|
-
* Authorization queries associated with the session.
|
|
564
|
-
*/
|
|
565
|
-
auth_queries?: AuthorizeQueries;
|
|
566
|
-
/**
|
|
567
|
-
* Credential offer object containing details about the credential offer or presentation request.
|
|
568
|
-
*/
|
|
569
|
-
offer?: {
|
|
570
|
-
[key: string]: unknown;
|
|
571
|
-
};
|
|
572
|
-
/**
|
|
573
|
-
* Offer URL for the credential offer.
|
|
574
|
-
*/
|
|
575
|
-
offerUrl?: string;
|
|
576
|
-
/**
|
|
577
|
-
* Credential payload containing the offer request details.
|
|
578
|
-
*/
|
|
579
|
-
credentialPayload?: OfferRequestDto;
|
|
580
|
-
/**
|
|
581
|
-
* Webhook configuration to send the result of the notification response.
|
|
582
|
-
*/
|
|
583
|
-
notifyWebhook?: WebhookConfig;
|
|
584
|
-
/**
|
|
585
|
-
* Notifications associated with the session.
|
|
586
|
-
*/
|
|
587
|
-
notifications: Array<{
|
|
588
|
-
[key: string]: unknown;
|
|
589
|
-
}>;
|
|
590
|
-
requestId?: string;
|
|
591
|
-
/**
|
|
592
|
-
* The URL of the presentation auth request.
|
|
593
|
-
*/
|
|
594
|
-
requestUrl?: string;
|
|
595
|
-
/**
|
|
596
|
-
* Signed presentation auth request.
|
|
597
|
-
*/
|
|
598
|
-
requestObject?: string;
|
|
599
|
-
/**
|
|
600
|
-
* Verified credentials from the presentation process.
|
|
601
|
-
*/
|
|
602
|
-
credentials?: Array<{
|
|
603
|
-
[key: string]: unknown;
|
|
604
|
-
}>;
|
|
605
|
-
/**
|
|
606
|
-
* Noncce from the Verifiable Presentation request.
|
|
607
|
-
*/
|
|
608
|
-
vp_nonce?: string;
|
|
609
|
-
/**
|
|
610
|
-
* Client ID used in the OID4VP authorization request.
|
|
611
|
-
*/
|
|
612
|
-
clientId?: string;
|
|
613
|
-
/**
|
|
614
|
-
* Response URI used in the OID4VP authorization request.
|
|
615
|
-
*/
|
|
616
|
-
responseUri?: string;
|
|
617
|
-
/**
|
|
618
|
-
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
619
|
-
*/
|
|
620
|
-
redirectUri?: string;
|
|
621
|
-
/**
|
|
622
|
-
* Where to send the claims webhook response.
|
|
623
|
-
*/
|
|
624
|
-
parsedWebhook?: WebhookConfig;
|
|
625
|
-
};
|
|
626
|
-
type StatusUpdateDto = {
|
|
627
|
-
/**
|
|
628
|
-
* The session ID of the user
|
|
629
|
-
*/
|
|
630
|
-
sessionId: string;
|
|
631
|
-
/**
|
|
632
|
-
* The ID of the credential configuration
|
|
633
|
-
* This is optional, if not provided, all credentials will be revoked of the session.
|
|
634
|
-
*/
|
|
635
|
-
credentialConfigurationId?: string;
|
|
636
|
-
/**
|
|
637
|
-
* The status of the credential
|
|
638
|
-
* 0 = valid, 1 = revoked, 2 = suspended
|
|
639
|
-
*/
|
|
640
|
-
status: number;
|
|
641
|
-
};
|
|
642
|
-
type UpdateSessionConfigDto = {
|
|
643
|
-
/**
|
|
644
|
-
* Time-to-live for sessions in seconds. Set to null to use global default.
|
|
645
|
-
*/
|
|
646
|
-
ttlSeconds?: number;
|
|
647
|
-
/**
|
|
648
|
-
* Cleanup mode: 'full' deletes everything, 'anonymize' keeps metadata but removes PII.
|
|
649
|
-
*/
|
|
650
|
-
cleanupMode?: "full" | "anonymize";
|
|
651
|
-
};
|
|
652
|
-
type AuthenticationMethodNone = {
|
|
653
|
-
method: "none";
|
|
654
|
-
};
|
|
655
|
-
type AuthenticationUrlConfig = {
|
|
656
|
-
/**
|
|
657
|
-
* The URL used in the OID4VCI authorized code flow.
|
|
658
|
-
* This URL is where users will be redirected for authentication.
|
|
659
|
-
*/
|
|
660
|
-
url: string;
|
|
661
|
-
/**
|
|
662
|
-
* Optional webhook configuration for authentication callbacks
|
|
663
|
-
*/
|
|
664
|
-
webhook?: WebhookConfig;
|
|
665
|
-
};
|
|
666
|
-
type AuthenticationMethodAuth = {
|
|
667
|
-
method: "auth";
|
|
668
|
-
config: AuthenticationUrlConfig;
|
|
669
|
-
};
|
|
670
|
-
type PresentationDuringIssuanceConfig = {
|
|
671
|
-
/**
|
|
672
|
-
* Link to the presentation configuration that is relevant for the issuance process
|
|
673
|
-
*/
|
|
674
|
-
type: string;
|
|
675
|
-
};
|
|
676
|
-
type AuthenticationMethodPresentation = {
|
|
677
|
-
method: "presentationDuringIssuance";
|
|
678
|
-
config: PresentationDuringIssuanceConfig;
|
|
679
|
-
};
|
|
680
|
-
type DisplayLogo = {
|
|
681
|
-
uri: string;
|
|
682
|
-
alt_text?: string;
|
|
683
|
-
};
|
|
684
|
-
type DisplayInfo = {
|
|
685
|
-
name?: string;
|
|
686
|
-
locale?: string;
|
|
687
|
-
logo?: DisplayLogo;
|
|
688
|
-
};
|
|
689
|
-
type IssuanceConfig = {
|
|
690
|
-
/**
|
|
691
|
-
* The tenant that owns this object.
|
|
692
|
-
*/
|
|
693
|
-
tenant: TenantEntity;
|
|
694
|
-
/**
|
|
695
|
-
* Authentication server URL for the issuance process.
|
|
696
|
-
*/
|
|
697
|
-
authServers?: Array<string>;
|
|
698
|
-
/**
|
|
699
|
-
* Value to determine the amount of credentials that are issued in a batch.
|
|
700
|
-
* Default is 1.
|
|
701
|
-
*/
|
|
702
|
-
batchSize?: number;
|
|
703
|
-
/**
|
|
704
|
-
* Indicates whether DPoP is required for the issuance process. Default value is true.
|
|
705
|
-
*/
|
|
706
|
-
dPopRequired?: boolean;
|
|
707
|
-
display: Array<DisplayInfo>;
|
|
708
|
-
/**
|
|
709
|
-
* The timestamp when the VP request was created.
|
|
710
|
-
*/
|
|
711
|
-
createdAt: string;
|
|
712
|
-
/**
|
|
713
|
-
* The timestamp when the VP request was last updated.
|
|
714
|
-
*/
|
|
715
|
-
updatedAt: string;
|
|
716
|
-
};
|
|
717
|
-
type IssuanceDto = {
|
|
718
|
-
/**
|
|
719
|
-
* Authentication server URL for the issuance process.
|
|
720
|
-
*/
|
|
721
|
-
authServers?: Array<string>;
|
|
722
|
-
/**
|
|
723
|
-
* Value to determine the amount of credentials that are issued in a batch.
|
|
724
|
-
* Default is 1.
|
|
725
|
-
*/
|
|
726
|
-
batchSize?: number;
|
|
727
|
-
/**
|
|
728
|
-
* Indicates whether DPoP is required for the issuance process. Default value is true.
|
|
729
|
-
*/
|
|
730
|
-
dPopRequired?: boolean;
|
|
731
|
-
display: Array<DisplayInfo>;
|
|
732
|
-
};
|
|
733
|
-
type ClaimsQuery = {
|
|
734
|
-
id: string;
|
|
735
|
-
path: Array<string>;
|
|
736
|
-
values?: Array<{
|
|
737
|
-
[key: string]: unknown;
|
|
738
|
-
}>;
|
|
739
|
-
};
|
|
740
|
-
type Claim = {
|
|
741
|
-
path: Array<string>;
|
|
742
|
-
};
|
|
743
|
-
type TrustedAuthorityQuery = {
|
|
744
|
-
type: "aki" | "etsi_tl";
|
|
745
|
-
values: Array<string>;
|
|
746
|
-
};
|
|
747
|
-
type CredentialQuery = {
|
|
748
|
-
id: string;
|
|
749
|
-
format: string;
|
|
750
|
-
multiple?: boolean;
|
|
751
|
-
claims?: Array<Claim>;
|
|
752
|
-
meta: {
|
|
753
|
-
[key: string]: unknown;
|
|
754
|
-
};
|
|
755
|
-
trusted_authorities?: Array<TrustedAuthorityQuery>;
|
|
756
|
-
};
|
|
757
|
-
type CredentialSetQuery = {
|
|
758
|
-
options: Array<Array<string>>;
|
|
759
|
-
required?: boolean;
|
|
760
|
-
};
|
|
761
|
-
type PolicyCredential = {
|
|
762
|
-
claims?: Array<ClaimsQuery>;
|
|
763
|
-
credentials: Array<CredentialQuery>;
|
|
764
|
-
credential_sets?: Array<CredentialSetQuery>;
|
|
765
|
-
};
|
|
766
|
-
type AttestationBasedPolicy = {
|
|
767
|
-
policy: "attestationBased";
|
|
768
|
-
values: Array<PolicyCredential>;
|
|
769
|
-
};
|
|
770
|
-
type NoneTrustPolicy = {
|
|
771
|
-
policy: "none";
|
|
772
|
-
};
|
|
773
|
-
type AllowListPolicy = {
|
|
774
|
-
policy: "allowList";
|
|
775
|
-
values: Array<string>;
|
|
776
|
-
};
|
|
777
|
-
type RootOfTrustPolicy = {
|
|
778
|
-
policy: "rootOfTrust";
|
|
779
|
-
values: string;
|
|
780
|
-
};
|
|
781
|
-
type EmbeddedDisclosurePolicy = {
|
|
782
|
-
policy: string;
|
|
783
|
-
};
|
|
784
|
-
type DisplayImage = {
|
|
785
|
-
uri: string;
|
|
786
|
-
};
|
|
787
|
-
type Display = {
|
|
788
|
-
name: string;
|
|
789
|
-
description: string;
|
|
790
|
-
locale: string;
|
|
791
|
-
background_color?: string;
|
|
792
|
-
text_color?: string;
|
|
793
|
-
background_image?: DisplayImage;
|
|
794
|
-
logo?: DisplayImage;
|
|
795
|
-
};
|
|
796
|
-
type IssuerMetadataCredentialConfig = {
|
|
797
|
-
format: string;
|
|
798
|
-
display: Array<Display>;
|
|
799
|
-
scope?: string;
|
|
800
|
-
/**
|
|
801
|
-
* Document type for mDOC credentials (e.g., "org.iso.18013.5.1.mDL").
|
|
802
|
-
* Only applicable when format is "mso_mdoc".
|
|
803
|
-
*/
|
|
804
|
-
docType?: string;
|
|
805
|
-
/**
|
|
806
|
-
* Namespace for mDOC credentials (e.g., "org.iso.18013.5.1").
|
|
807
|
-
* Only applicable when format is "mso_mdoc".
|
|
808
|
-
* Used when claims are provided as a flat object.
|
|
809
|
-
*/
|
|
810
|
-
namespace?: string;
|
|
811
|
-
/**
|
|
812
|
-
* Claims organized by namespace for mDOC credentials.
|
|
813
|
-
* Allows specifying claims across multiple namespaces.
|
|
814
|
-
* Only applicable when format is "mso_mdoc".
|
|
815
|
-
* Example:
|
|
816
|
-
* {
|
|
817
|
-
* "org.iso.18013.5.1": { "given_name": "John", "family_name": "Doe" },
|
|
818
|
-
* "org.iso.18013.5.1.aamva": { "DHS_compliance": "F" }
|
|
819
|
-
* }
|
|
820
|
-
*/
|
|
821
|
-
claimsByNamespace?: {
|
|
822
|
-
[key: string]: unknown;
|
|
823
|
-
};
|
|
824
|
-
};
|
|
825
|
-
type Vct = {
|
|
826
|
-
vct?: string;
|
|
827
|
-
name?: string;
|
|
828
|
-
description?: string;
|
|
829
|
-
extends?: string;
|
|
830
|
-
"extends#integrity"?: string;
|
|
831
|
-
schema_uri?: string;
|
|
832
|
-
"schema_uri#integrity"?: string;
|
|
833
|
-
};
|
|
834
|
-
type SchemaResponse = {
|
|
835
|
-
$schema: string;
|
|
836
|
-
type: string;
|
|
837
|
-
properties: {
|
|
838
|
-
[key: string]: unknown;
|
|
839
|
-
};
|
|
840
|
-
required?: Array<string>;
|
|
841
|
-
title?: string;
|
|
842
|
-
description?: string;
|
|
843
|
-
};
|
|
844
|
-
type CredentialConfig = {
|
|
845
|
-
/**
|
|
846
|
-
* Embedded disclosure policy (discriminated union by `policy`).
|
|
847
|
-
* The discriminator makes class-transformer instantiate the right subclass,
|
|
848
|
-
* and then class-validator runs that subclass’s rules.
|
|
849
|
-
*/
|
|
850
|
-
embeddedDisclosurePolicy?: EmbeddedDisclosurePolicy;
|
|
851
|
-
id: string;
|
|
852
|
-
description?: string;
|
|
853
|
-
/**
|
|
854
|
-
* The tenant that owns this object.
|
|
855
|
-
*/
|
|
856
|
-
tenant: TenantEntity;
|
|
857
|
-
config: IssuerMetadataCredentialConfig;
|
|
858
|
-
claims?: {
|
|
859
|
-
[key: string]: unknown;
|
|
860
|
-
};
|
|
861
|
-
/**
|
|
862
|
-
* Webhook to receive claims for the issuance process.
|
|
863
|
-
*/
|
|
864
|
-
claimsWebhook?: WebhookConfig;
|
|
865
|
-
/**
|
|
866
|
-
* Webhook to receive claims for the issuance process.
|
|
867
|
-
*/
|
|
868
|
-
notificationWebhook?: WebhookConfig;
|
|
869
|
-
disclosureFrame?: {
|
|
870
|
-
[key: string]: unknown;
|
|
871
|
-
};
|
|
872
|
-
vct?: Vct;
|
|
873
|
-
keyBinding?: boolean;
|
|
874
|
-
certId?: string;
|
|
875
|
-
cert: CertEntity;
|
|
876
|
-
statusManagement?: boolean;
|
|
877
|
-
lifeTime?: number;
|
|
878
|
-
schema?: SchemaResponse;
|
|
879
|
-
};
|
|
880
|
-
type CredentialConfigCreate = {
|
|
881
|
-
/**
|
|
882
|
-
* Embedded disclosure policy (discriminated union by `policy`).
|
|
883
|
-
* The discriminator makes class-transformer instantiate the right subclass,
|
|
884
|
-
* and then class-validator runs that subclass’s rules.
|
|
885
|
-
*/
|
|
886
|
-
embeddedDisclosurePolicy?: EmbeddedDisclosurePolicy;
|
|
887
|
-
id: string;
|
|
888
|
-
description?: string;
|
|
889
|
-
config: IssuerMetadataCredentialConfig;
|
|
890
|
-
claims?: {
|
|
891
|
-
[key: string]: unknown;
|
|
892
|
-
};
|
|
893
|
-
/**
|
|
894
|
-
* Webhook to receive claims for the issuance process.
|
|
895
|
-
*/
|
|
896
|
-
claimsWebhook?: WebhookConfig;
|
|
897
|
-
/**
|
|
898
|
-
* Webhook to receive claims for the issuance process.
|
|
899
|
-
*/
|
|
900
|
-
notificationWebhook?: WebhookConfig;
|
|
901
|
-
disclosureFrame?: {
|
|
902
|
-
[key: string]: unknown;
|
|
903
|
-
};
|
|
904
|
-
vct?: Vct;
|
|
905
|
-
keyBinding?: boolean;
|
|
906
|
-
certId?: string;
|
|
907
|
-
statusManagement?: boolean;
|
|
908
|
-
lifeTime?: number;
|
|
909
|
-
schema?: SchemaResponse;
|
|
910
|
-
};
|
|
911
|
-
type CredentialConfigUpdate = {
|
|
912
|
-
/**
|
|
913
|
-
* Embedded disclosure policy (discriminated union by `policy`).
|
|
914
|
-
* The discriminator makes class-transformer instantiate the right subclass,
|
|
915
|
-
* and then class-validator runs that subclass’s rules.
|
|
916
|
-
*/
|
|
917
|
-
embeddedDisclosurePolicy?: EmbeddedDisclosurePolicy;
|
|
918
|
-
id?: string;
|
|
919
|
-
description?: string;
|
|
920
|
-
config?: IssuerMetadataCredentialConfig;
|
|
921
|
-
claims?: {
|
|
922
|
-
[key: string]: unknown;
|
|
923
|
-
};
|
|
924
|
-
/**
|
|
925
|
-
* Webhook to receive claims for the issuance process.
|
|
926
|
-
*/
|
|
927
|
-
claimsWebhook?: WebhookConfig;
|
|
928
|
-
/**
|
|
929
|
-
* Webhook to receive claims for the issuance process.
|
|
930
|
-
*/
|
|
931
|
-
notificationWebhook?: WebhookConfig;
|
|
932
|
-
disclosureFrame?: {
|
|
933
|
-
[key: string]: unknown;
|
|
934
|
-
};
|
|
935
|
-
vct?: Vct;
|
|
936
|
-
keyBinding?: boolean;
|
|
937
|
-
certId?: string;
|
|
938
|
-
statusManagement?: boolean;
|
|
939
|
-
lifeTime?: number;
|
|
940
|
-
schema?: SchemaResponse;
|
|
941
|
-
};
|
|
942
|
-
type NotificationRequestDto = {
|
|
943
|
-
notification_id: string;
|
|
944
|
-
event: {
|
|
945
|
-
[key: string]: unknown;
|
|
946
|
-
};
|
|
947
|
-
};
|
|
948
|
-
type ParResponseDto = {
|
|
949
|
-
/**
|
|
950
|
-
* The request URI for the Pushed Authorization Request.
|
|
951
|
-
*/
|
|
952
|
-
request_uri: string;
|
|
953
|
-
/**
|
|
954
|
-
* The expiration time for the request URI in seconds.
|
|
955
|
-
*/
|
|
956
|
-
expires_in: number;
|
|
957
|
-
};
|
|
958
|
-
type OfferResponse = {
|
|
959
|
-
uri: string;
|
|
960
|
-
session: string;
|
|
961
|
-
};
|
|
962
|
-
type EcPublic = {
|
|
963
|
-
/**
|
|
964
|
-
* The key type, which is always 'EC' for Elliptic Curve keys.
|
|
965
|
-
*/
|
|
966
|
-
kty: string;
|
|
967
|
-
/**
|
|
968
|
-
* The algorithm intended for use with the key, such as 'ES256'.
|
|
969
|
-
*/
|
|
970
|
-
crv: string;
|
|
971
|
-
/**
|
|
972
|
-
* The x coordinate of the EC public key.
|
|
973
|
-
*/
|
|
974
|
-
x: string;
|
|
975
|
-
/**
|
|
976
|
-
* The y coordinate of the EC public key.
|
|
977
|
-
*/
|
|
978
|
-
y: string;
|
|
979
|
-
};
|
|
980
|
-
type JwksResponseDto = {
|
|
981
|
-
/**
|
|
982
|
-
* An array of EC public keys in JWK format.
|
|
983
|
-
*/
|
|
984
|
-
keys: Array<EcPublic>;
|
|
985
|
-
};
|
|
986
|
-
type AuthorizationResponse = {
|
|
987
|
-
/**
|
|
988
|
-
* The response string containing the authorization details.
|
|
989
|
-
*/
|
|
990
|
-
response: string;
|
|
991
|
-
/**
|
|
992
|
-
* When set to true, the authorization response will be sent to the client.
|
|
993
|
-
*/
|
|
994
|
-
sendResponse?: boolean;
|
|
995
|
-
};
|
|
996
|
-
type Dcql = {
|
|
997
|
-
credentials: Array<CredentialQuery>;
|
|
998
|
-
credential_set?: Array<CredentialSetQuery>;
|
|
999
|
-
};
|
|
1000
|
-
type RegistrationCertificateRequest = {
|
|
1001
|
-
/**
|
|
1002
|
-
* The body of the registration certificate request containing the necessary details.
|
|
1003
|
-
*/
|
|
1004
|
-
jwt: string;
|
|
1005
|
-
};
|
|
1006
|
-
type PresentationAttachment = {
|
|
1007
|
-
format: string;
|
|
1008
|
-
data: {
|
|
1009
|
-
[key: string]: unknown;
|
|
1010
|
-
};
|
|
1011
|
-
credential_ids?: Array<string>;
|
|
1012
|
-
};
|
|
1013
|
-
type PresentationConfig = {
|
|
1014
|
-
/**
|
|
1015
|
-
* Unique identifier for the VP request.
|
|
1016
|
-
*/
|
|
1017
|
-
id: string;
|
|
1018
|
-
/**
|
|
1019
|
-
* The tenant that owns this object.
|
|
1020
|
-
*/
|
|
1021
|
-
tenant: TenantEntity;
|
|
1022
|
-
/**
|
|
1023
|
-
* Description of the presentation configuration.
|
|
1024
|
-
*/
|
|
1025
|
-
description?: string;
|
|
1026
|
-
/**
|
|
1027
|
-
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
1028
|
-
*/
|
|
1029
|
-
lifeTime?: number;
|
|
1030
|
-
/**
|
|
1031
|
-
* The DCQL query to be used for the VP request.
|
|
1032
|
-
*/
|
|
1033
|
-
dcql_query: Dcql;
|
|
1034
|
-
/**
|
|
1035
|
-
* The registration certificate request containing the necessary details.
|
|
1036
|
-
*/
|
|
1037
|
-
registrationCert?: RegistrationCertificateRequest;
|
|
1038
|
-
/**
|
|
1039
|
-
* Optional webhook URL to receive the response.
|
|
1040
|
-
*/
|
|
1041
|
-
webhook?: WebhookConfig;
|
|
1042
|
-
/**
|
|
1043
|
-
* The timestamp when the VP request was created.
|
|
1044
|
-
*/
|
|
1045
|
-
createdAt: string;
|
|
1046
|
-
/**
|
|
1047
|
-
* The timestamp when the VP request was last updated.
|
|
1048
|
-
*/
|
|
1049
|
-
updatedAt: string;
|
|
1050
|
-
/**
|
|
1051
|
-
* Attestation that should be attached
|
|
1052
|
-
*/
|
|
1053
|
-
attached?: Array<PresentationAttachment>;
|
|
1054
|
-
/**
|
|
1055
|
-
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1056
|
-
*/
|
|
1057
|
-
redirectUri?: string;
|
|
1058
|
-
};
|
|
1059
|
-
type PresentationConfigCreateDto = {
|
|
1060
|
-
/**
|
|
1061
|
-
* Unique identifier for the VP request.
|
|
1062
|
-
*/
|
|
1063
|
-
id: string;
|
|
1064
|
-
/**
|
|
1065
|
-
* Description of the presentation configuration.
|
|
1066
|
-
*/
|
|
1067
|
-
description?: string;
|
|
1068
|
-
/**
|
|
1069
|
-
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
1070
|
-
*/
|
|
1071
|
-
lifeTime?: number;
|
|
1072
|
-
/**
|
|
1073
|
-
* The DCQL query to be used for the VP request.
|
|
1074
|
-
*/
|
|
1075
|
-
dcql_query: Dcql;
|
|
1076
|
-
/**
|
|
1077
|
-
* The registration certificate request containing the necessary details.
|
|
1078
|
-
*/
|
|
1079
|
-
registrationCert?: RegistrationCertificateRequest;
|
|
1080
|
-
/**
|
|
1081
|
-
* Optional webhook URL to receive the response.
|
|
1082
|
-
*/
|
|
1083
|
-
webhook?: WebhookConfig;
|
|
1084
|
-
/**
|
|
1085
|
-
* Attestation that should be attached
|
|
1086
|
-
*/
|
|
1087
|
-
attached?: Array<PresentationAttachment>;
|
|
1088
|
-
/**
|
|
1089
|
-
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1090
|
-
*/
|
|
1091
|
-
redirectUri?: string;
|
|
1092
|
-
};
|
|
1093
|
-
type PresentationConfigUpdateDto = {
|
|
1094
|
-
/**
|
|
1095
|
-
* Unique identifier for the VP request.
|
|
1096
|
-
*/
|
|
1097
|
-
id?: string;
|
|
1098
|
-
/**
|
|
1099
|
-
* Description of the presentation configuration.
|
|
1100
|
-
*/
|
|
1101
|
-
description?: string;
|
|
1102
|
-
/**
|
|
1103
|
-
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
1104
|
-
*/
|
|
1105
|
-
lifeTime?: number;
|
|
1106
|
-
/**
|
|
1107
|
-
* The DCQL query to be used for the VP request.
|
|
1108
|
-
*/
|
|
1109
|
-
dcql_query?: Dcql;
|
|
1110
|
-
/**
|
|
1111
|
-
* The registration certificate request containing the necessary details.
|
|
1112
|
-
*/
|
|
1113
|
-
registrationCert?: RegistrationCertificateRequest;
|
|
1114
|
-
/**
|
|
1115
|
-
* Optional webhook URL to receive the response.
|
|
1116
|
-
*/
|
|
1117
|
-
webhook?: WebhookConfig;
|
|
1118
|
-
/**
|
|
1119
|
-
* Attestation that should be attached
|
|
1120
|
-
*/
|
|
1121
|
-
attached?: Array<PresentationAttachment>;
|
|
1122
|
-
/**
|
|
1123
|
-
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1124
|
-
*/
|
|
1125
|
-
redirectUri?: string;
|
|
1126
|
-
};
|
|
1127
|
-
type TrustListCreateDto = {
|
|
1128
|
-
certId?: string;
|
|
1129
|
-
entities: Array<{
|
|
1130
|
-
[key: string]: unknown;
|
|
1131
|
-
}>;
|
|
1132
|
-
/**
|
|
1133
|
-
* Unique identifier for the trust list
|
|
1134
|
-
*/
|
|
1135
|
-
id?: string;
|
|
1136
|
-
description?: string;
|
|
1137
|
-
/**
|
|
1138
|
-
* The full trust list JSON (generated LoTE structure)
|
|
1139
|
-
*/
|
|
1140
|
-
data?: {
|
|
1141
|
-
[key: string]: unknown;
|
|
1142
|
-
};
|
|
1143
|
-
};
|
|
1144
|
-
type TrustList = {
|
|
1145
|
-
/**
|
|
1146
|
-
* Unique identifier for the trust list
|
|
1147
|
-
*/
|
|
1148
|
-
id?: string;
|
|
1149
|
-
description?: string;
|
|
1150
|
-
/**
|
|
1151
|
-
* The tenant ID for which the VP request is made.
|
|
1152
|
-
*/
|
|
1153
|
-
tenantId: string;
|
|
1154
|
-
/**
|
|
1155
|
-
* The tenant that owns this object.
|
|
1156
|
-
*/
|
|
1157
|
-
tenant: TenantEntity;
|
|
1158
|
-
certId: string;
|
|
1159
|
-
cert: CertEntity;
|
|
1160
|
-
/**
|
|
1161
|
-
* The full trust list JSON (generated LoTE structure)
|
|
1162
|
-
*/
|
|
1163
|
-
data?: {
|
|
1164
|
-
[key: string]: unknown;
|
|
1165
|
-
};
|
|
1166
|
-
/**
|
|
1167
|
-
* The original entity configuration used to create this trust list.
|
|
1168
|
-
* Stored for round-tripping when editing.
|
|
1169
|
-
*/
|
|
1170
|
-
entityConfig?: Array<{
|
|
1171
|
-
[key: string]: unknown;
|
|
1172
|
-
}>;
|
|
1173
|
-
/**
|
|
1174
|
-
* The sequence number for versioning (incremented on updates)
|
|
1175
|
-
*/
|
|
1176
|
-
sequenceNumber: number;
|
|
1177
|
-
/**
|
|
1178
|
-
* The signed JWT representation of this trust list
|
|
1179
|
-
*/
|
|
1180
|
-
jwt: string;
|
|
1181
|
-
createdAt: string;
|
|
1182
|
-
updatedAt: string;
|
|
1183
|
-
};
|
|
1184
|
-
type TrustListVersion = {
|
|
1185
|
-
id: string;
|
|
1186
|
-
trustListId: string;
|
|
1187
|
-
trustList: TrustList;
|
|
1188
|
-
tenantId: string;
|
|
1189
|
-
/**
|
|
1190
|
-
* The sequence number at the time this version was created
|
|
1191
|
-
*/
|
|
1192
|
-
sequenceNumber: number;
|
|
1193
|
-
/**
|
|
1194
|
-
* The full trust list JSON at this version
|
|
1195
|
-
*/
|
|
1196
|
-
data: {
|
|
1197
|
-
[key: string]: unknown;
|
|
1198
|
-
};
|
|
1199
|
-
/**
|
|
1200
|
-
* The entity configuration at this version
|
|
1201
|
-
*/
|
|
1202
|
-
entityConfig?: {
|
|
1203
|
-
[key: string]: unknown;
|
|
1204
|
-
};
|
|
1205
|
-
/**
|
|
1206
|
-
* The signed JWT at this version
|
|
1207
|
-
*/
|
|
1208
|
-
jwt: string;
|
|
1209
|
-
createdAt: string;
|
|
1210
|
-
};
|
|
1211
|
-
type PresentationRequest = {
|
|
1212
|
-
/**
|
|
1213
|
-
* The type of response expected from the presentation request.
|
|
1214
|
-
*/
|
|
1215
|
-
response_type: "qrcode" | "uri" | "dc-api";
|
|
1216
|
-
/**
|
|
1217
|
-
* Identifier of the presentation configuration
|
|
1218
|
-
*/
|
|
1219
|
-
requestId: string;
|
|
1220
|
-
/**
|
|
1221
|
-
* Webhook configuration to receive the response.
|
|
1222
|
-
* If not provided, the configured webhook from the configuration will be used.
|
|
1223
|
-
*/
|
|
1224
|
-
webhook?: WebhookConfig;
|
|
1225
|
-
/**
|
|
1226
|
-
* Optional redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1227
|
-
*/
|
|
1228
|
-
redirectUri?: string;
|
|
1229
|
-
};
|
|
1230
|
-
type FileUploadDto = {
|
|
1231
|
-
file: Blob | File;
|
|
1232
|
-
};
|
|
1233
|
-
type AppControllerMainData = {
|
|
1234
|
-
body?: never;
|
|
1235
|
-
path?: never;
|
|
1236
|
-
query?: never;
|
|
1237
|
-
url: "/";
|
|
1238
|
-
};
|
|
1239
|
-
type AppControllerMainResponses = {
|
|
1240
|
-
200: unknown;
|
|
1241
|
-
};
|
|
1242
|
-
type HealthControllerCheckData = {
|
|
1243
|
-
body?: never;
|
|
1244
|
-
path?: never;
|
|
1245
|
-
query?: never;
|
|
1246
|
-
url: "/health";
|
|
1247
|
-
};
|
|
1248
|
-
type HealthControllerCheckErrors = {
|
|
1249
|
-
/**
|
|
1250
|
-
* The Health Check is not successful
|
|
1251
|
-
*/
|
|
1252
|
-
503: {
|
|
1253
|
-
status?: string;
|
|
1254
|
-
info?: {
|
|
1255
|
-
[key: string]: {
|
|
1256
|
-
status: string;
|
|
1257
|
-
[key: string]: unknown | string;
|
|
1258
|
-
};
|
|
1259
|
-
};
|
|
1260
|
-
error?: {
|
|
1261
|
-
[key: string]: {
|
|
1262
|
-
status: string;
|
|
1263
|
-
[key: string]: unknown | string;
|
|
1264
|
-
};
|
|
1265
|
-
};
|
|
1266
|
-
details?: {
|
|
1267
|
-
[key: string]: {
|
|
1268
|
-
status: string;
|
|
1269
|
-
[key: string]: unknown | string;
|
|
1270
|
-
};
|
|
1271
|
-
};
|
|
1272
|
-
};
|
|
1273
|
-
};
|
|
1274
|
-
type HealthControllerCheckError = HealthControllerCheckErrors[keyof HealthControllerCheckErrors];
|
|
1275
|
-
type HealthControllerCheckResponses = {
|
|
1276
|
-
/**
|
|
1277
|
-
* The Health Check is successful
|
|
1278
|
-
*/
|
|
1279
|
-
200: {
|
|
1280
|
-
status?: string;
|
|
1281
|
-
info?: {
|
|
1282
|
-
[key: string]: {
|
|
1283
|
-
status: string;
|
|
1284
|
-
[key: string]: unknown | string;
|
|
1285
|
-
};
|
|
1286
|
-
};
|
|
1287
|
-
error?: {
|
|
1288
|
-
[key: string]: {
|
|
1289
|
-
status: string;
|
|
1290
|
-
[key: string]: unknown | string;
|
|
1291
|
-
};
|
|
1292
|
-
};
|
|
1293
|
-
details?: {
|
|
1294
|
-
[key: string]: {
|
|
1295
|
-
status: string;
|
|
1296
|
-
[key: string]: unknown | string;
|
|
1297
|
-
};
|
|
1298
|
-
};
|
|
1299
|
-
};
|
|
1300
|
-
};
|
|
1301
|
-
type HealthControllerCheckResponse = HealthControllerCheckResponses[keyof HealthControllerCheckResponses];
|
|
1302
|
-
type PrometheusControllerIndexData = {
|
|
1303
|
-
body?: never;
|
|
1304
|
-
path?: never;
|
|
1305
|
-
query?: never;
|
|
1306
|
-
url: "/metrics";
|
|
1307
|
-
};
|
|
1308
|
-
type PrometheusControllerIndexResponses = {
|
|
1309
|
-
200: unknown;
|
|
1310
|
-
};
|
|
1311
|
-
type AuthControllerGetOAuth2TokenData = {
|
|
1312
|
-
body: ClientCredentialsDto;
|
|
1313
|
-
path?: never;
|
|
1314
|
-
query?: never;
|
|
1315
|
-
url: "/oauth2/token";
|
|
1316
|
-
};
|
|
1317
|
-
type AuthControllerGetOAuth2TokenErrors = {
|
|
1318
|
-
/**
|
|
1319
|
-
* Invalid client credentials
|
|
1320
|
-
*/
|
|
1321
|
-
401: unknown;
|
|
1322
|
-
};
|
|
1323
|
-
type AuthControllerGetOAuth2TokenResponses = {
|
|
1324
|
-
/**
|
|
1325
|
-
* OAuth2 token response
|
|
1326
|
-
*/
|
|
1327
|
-
200: TokenResponse;
|
|
1328
|
-
201: TokenResponse;
|
|
1329
|
-
};
|
|
1330
|
-
type AuthControllerGetOAuth2TokenResponse = AuthControllerGetOAuth2TokenResponses[keyof AuthControllerGetOAuth2TokenResponses];
|
|
1331
|
-
type AuthControllerGetOidcDiscoveryData = {
|
|
1332
|
-
body?: never;
|
|
1333
|
-
path?: never;
|
|
1334
|
-
query?: never;
|
|
1335
|
-
url: "/.well-known/oauth-authorization-server";
|
|
1336
|
-
};
|
|
1337
|
-
type AuthControllerGetOidcDiscoveryResponses = {
|
|
1338
|
-
/**
|
|
1339
|
-
* OIDC Discovery Configuration
|
|
1340
|
-
*/
|
|
1341
|
-
200: unknown;
|
|
1342
|
-
};
|
|
1343
|
-
type AuthControllerGetGlobalJwksData = {
|
|
1344
|
-
body?: never;
|
|
1345
|
-
path?: never;
|
|
1346
|
-
query?: never;
|
|
1347
|
-
url: "/.well-known/jwks.json";
|
|
1348
|
-
};
|
|
1349
|
-
type AuthControllerGetGlobalJwksResponses = {
|
|
1350
|
-
/**
|
|
1351
|
-
* JSON Web Key Set
|
|
1352
|
-
*/
|
|
1353
|
-
200: unknown;
|
|
1354
|
-
};
|
|
1355
|
-
type TenantControllerGetTenantsData = {
|
|
1356
|
-
body?: never;
|
|
1357
|
-
path?: never;
|
|
1358
|
-
query?: never;
|
|
1359
|
-
url: "/tenant";
|
|
1360
|
-
};
|
|
1361
|
-
type TenantControllerGetTenantsResponses = {
|
|
1362
|
-
200: Array<TenantEntity>;
|
|
1363
|
-
};
|
|
1364
|
-
type TenantControllerGetTenantsResponse = TenantControllerGetTenantsResponses[keyof TenantControllerGetTenantsResponses];
|
|
1365
|
-
type TenantControllerInitTenantData = {
|
|
1366
|
-
body: CreateTenantDto;
|
|
1367
|
-
path?: never;
|
|
1368
|
-
query?: never;
|
|
1369
|
-
url: "/tenant";
|
|
1370
|
-
};
|
|
1371
|
-
type TenantControllerInitTenantResponses = {
|
|
1372
|
-
201: unknown;
|
|
1373
|
-
};
|
|
1374
|
-
type TenantControllerDeleteTenantData = {
|
|
1375
|
-
body?: never;
|
|
1376
|
-
path: {
|
|
1377
|
-
id: string;
|
|
1378
|
-
};
|
|
1379
|
-
query?: never;
|
|
1380
|
-
url: "/tenant/{id}";
|
|
1381
|
-
};
|
|
1382
|
-
type TenantControllerDeleteTenantResponses = {
|
|
1383
|
-
200: unknown;
|
|
1384
|
-
};
|
|
1385
|
-
type TenantControllerGetTenantData = {
|
|
1386
|
-
body?: never;
|
|
1387
|
-
path: {
|
|
1388
|
-
id: string;
|
|
1389
|
-
};
|
|
1390
|
-
query?: never;
|
|
1391
|
-
url: "/tenant/{id}";
|
|
1392
|
-
};
|
|
1393
|
-
type TenantControllerGetTenantResponses = {
|
|
1394
|
-
200: TenantEntity;
|
|
1395
|
-
};
|
|
1396
|
-
type TenantControllerGetTenantResponse = TenantControllerGetTenantResponses[keyof TenantControllerGetTenantResponses];
|
|
1397
|
-
type ClientControllerGetClientsData = {
|
|
1398
|
-
body?: never;
|
|
1399
|
-
path?: never;
|
|
1400
|
-
query?: never;
|
|
1401
|
-
url: "/client";
|
|
1402
|
-
};
|
|
1403
|
-
type ClientControllerGetClientsResponses = {
|
|
1404
|
-
200: Array<ClientEntity>;
|
|
1405
|
-
};
|
|
1406
|
-
type ClientControllerGetClientsResponse = ClientControllerGetClientsResponses[keyof ClientControllerGetClientsResponses];
|
|
1407
|
-
type ClientControllerCreateClientData = {
|
|
1408
|
-
body: CreateClientDto;
|
|
1409
|
-
path?: never;
|
|
1410
|
-
query?: never;
|
|
1411
|
-
url: "/client";
|
|
1412
|
-
};
|
|
1413
|
-
type ClientControllerCreateClientResponses = {
|
|
1414
|
-
201: ClientEntity;
|
|
1415
|
-
};
|
|
1416
|
-
type ClientControllerCreateClientResponse = ClientControllerCreateClientResponses[keyof ClientControllerCreateClientResponses];
|
|
1417
|
-
type ClientControllerDeleteClientData = {
|
|
1418
|
-
body?: never;
|
|
1419
|
-
path: {
|
|
1420
|
-
id: string;
|
|
1421
|
-
};
|
|
1422
|
-
query?: never;
|
|
1423
|
-
url: "/client/{id}";
|
|
1424
|
-
};
|
|
1425
|
-
type ClientControllerDeleteClientResponses = {
|
|
1426
|
-
200: unknown;
|
|
1427
|
-
};
|
|
1428
|
-
type ClientControllerGetClientData = {
|
|
1429
|
-
body?: never;
|
|
1430
|
-
path: {
|
|
1431
|
-
id: string;
|
|
1432
|
-
};
|
|
1433
|
-
query?: never;
|
|
1434
|
-
url: "/client/{id}";
|
|
1435
|
-
};
|
|
1436
|
-
type ClientControllerGetClientResponses = {
|
|
1437
|
-
200: ClientEntity;
|
|
1438
|
-
};
|
|
1439
|
-
type ClientControllerGetClientResponse = ClientControllerGetClientResponses[keyof ClientControllerGetClientResponses];
|
|
1440
|
-
type ClientControllerUpdateClientData = {
|
|
1441
|
-
body: UpdateClientDto;
|
|
1442
|
-
path: {
|
|
1443
|
-
id: string;
|
|
1444
|
-
};
|
|
1445
|
-
query?: never;
|
|
1446
|
-
url: "/client/{id}";
|
|
1447
|
-
};
|
|
1448
|
-
type ClientControllerUpdateClientResponses = {
|
|
1449
|
-
200: {
|
|
1450
|
-
[key: string]: unknown;
|
|
1451
|
-
};
|
|
1452
|
-
};
|
|
1453
|
-
type ClientControllerUpdateClientResponse = ClientControllerUpdateClientResponses[keyof ClientControllerUpdateClientResponses];
|
|
1454
|
-
type ClientControllerGetClientSecretData = {
|
|
1455
|
-
body?: never;
|
|
1456
|
-
path: {
|
|
1457
|
-
id: string;
|
|
1458
|
-
};
|
|
1459
|
-
query?: never;
|
|
1460
|
-
url: "/client/{id}/secret";
|
|
1461
|
-
};
|
|
1462
|
-
type ClientControllerGetClientSecretResponses = {
|
|
1463
|
-
200: ClientSecretResponseDto;
|
|
1464
|
-
};
|
|
1465
|
-
type ClientControllerGetClientSecretResponse = ClientControllerGetClientSecretResponses[keyof ClientControllerGetClientSecretResponses];
|
|
1466
|
-
type KeyControllerGetKeysData = {
|
|
1467
|
-
body?: never;
|
|
1468
|
-
path?: never;
|
|
1469
|
-
query?: never;
|
|
1470
|
-
url: "/key";
|
|
1471
|
-
};
|
|
1472
|
-
type KeyControllerGetKeysResponses = {
|
|
1473
|
-
200: Array<KeyEntity>;
|
|
1474
|
-
};
|
|
1475
|
-
type KeyControllerGetKeysResponse = KeyControllerGetKeysResponses[keyof KeyControllerGetKeysResponses];
|
|
1476
|
-
type KeyControllerAddKeyData = {
|
|
1477
|
-
body: KeyImportDto;
|
|
1478
|
-
path?: never;
|
|
1479
|
-
query?: never;
|
|
1480
|
-
url: "/key";
|
|
1481
|
-
};
|
|
1482
|
-
type KeyControllerAddKeyResponses = {
|
|
1483
|
-
201: unknown;
|
|
1484
|
-
};
|
|
1485
|
-
type KeyControllerDeleteKeyData = {
|
|
1486
|
-
body?: never;
|
|
1487
|
-
path: {
|
|
1488
|
-
id: string;
|
|
1489
|
-
};
|
|
1490
|
-
query?: never;
|
|
1491
|
-
url: "/key/{id}";
|
|
1492
|
-
};
|
|
1493
|
-
type KeyControllerDeleteKeyResponses = {
|
|
1494
|
-
200: unknown;
|
|
1495
|
-
};
|
|
1496
|
-
type KeyControllerGetKeyData = {
|
|
1497
|
-
body?: never;
|
|
1498
|
-
path: {
|
|
1499
|
-
id: string;
|
|
1500
|
-
};
|
|
1501
|
-
query?: never;
|
|
1502
|
-
url: "/key/{id}";
|
|
1503
|
-
};
|
|
1504
|
-
type KeyControllerGetKeyResponses = {
|
|
1505
|
-
200: KeyEntity;
|
|
1506
|
-
};
|
|
1507
|
-
type KeyControllerGetKeyResponse = KeyControllerGetKeyResponses[keyof KeyControllerGetKeyResponses];
|
|
1508
|
-
type KeyControllerUpdateKeyData = {
|
|
1509
|
-
body: UpdateKeyDto;
|
|
1510
|
-
path: {
|
|
1511
|
-
id: string;
|
|
1512
|
-
};
|
|
1513
|
-
query?: never;
|
|
1514
|
-
url: "/key/{id}";
|
|
1515
|
-
};
|
|
1516
|
-
type KeyControllerUpdateKeyResponses = {
|
|
1517
|
-
200: unknown;
|
|
1518
|
-
};
|
|
1519
|
-
type CertControllerGetCertificatesData = {
|
|
1520
|
-
body?: never;
|
|
1521
|
-
path?: never;
|
|
1522
|
-
query?: {
|
|
1523
|
-
keyId?: string;
|
|
1524
|
-
};
|
|
1525
|
-
url: "/certs";
|
|
1526
|
-
};
|
|
1527
|
-
type CertControllerGetCertificatesResponses = {
|
|
1528
|
-
200: Array<CertEntity>;
|
|
1529
|
-
};
|
|
1530
|
-
type CertControllerGetCertificatesResponse = CertControllerGetCertificatesResponses[keyof CertControllerGetCertificatesResponses];
|
|
1531
|
-
type CertControllerAddCertificateData = {
|
|
1532
|
-
body: CertImportDto;
|
|
1533
|
-
path?: never;
|
|
1534
|
-
query?: never;
|
|
1535
|
-
url: "/certs";
|
|
1536
|
-
};
|
|
1537
|
-
type CertControllerAddCertificateResponses = {
|
|
1538
|
-
201: CertResponseDto;
|
|
1539
|
-
};
|
|
1540
|
-
type CertControllerAddCertificateResponse = CertControllerAddCertificateResponses[keyof CertControllerAddCertificateResponses];
|
|
1541
|
-
type CertControllerDeleteCertificateData = {
|
|
1542
|
-
body?: never;
|
|
1543
|
-
path: {
|
|
1544
|
-
certId: string;
|
|
1545
|
-
};
|
|
1546
|
-
query?: never;
|
|
1547
|
-
url: "/certs/{certId}";
|
|
1548
|
-
};
|
|
1549
|
-
type CertControllerDeleteCertificateResponses = {
|
|
1550
|
-
200: unknown;
|
|
1551
|
-
};
|
|
1552
|
-
type CertControllerGetCertificateData = {
|
|
1553
|
-
body?: never;
|
|
1554
|
-
path: {
|
|
1555
|
-
certId: string;
|
|
1556
|
-
};
|
|
1557
|
-
query?: never;
|
|
1558
|
-
url: "/certs/{certId}";
|
|
1559
|
-
};
|
|
1560
|
-
type CertControllerGetCertificateResponses = {
|
|
1561
|
-
200: CertEntity;
|
|
1562
|
-
};
|
|
1563
|
-
type CertControllerGetCertificateResponse = CertControllerGetCertificateResponses[keyof CertControllerGetCertificateResponses];
|
|
1564
|
-
type CertControllerUpdateCertificateData = {
|
|
1565
|
-
body: CertUpdateDto;
|
|
1566
|
-
path: {
|
|
1567
|
-
certId: string;
|
|
1568
|
-
};
|
|
1569
|
-
query?: never;
|
|
1570
|
-
url: "/certs/{certId}";
|
|
1571
|
-
};
|
|
1572
|
-
type CertControllerUpdateCertificateResponses = {
|
|
1573
|
-
200: unknown;
|
|
1574
|
-
};
|
|
1575
|
-
type CertControllerExportConfigData = {
|
|
1576
|
-
body?: never;
|
|
1577
|
-
path: {
|
|
1578
|
-
certId: string;
|
|
1579
|
-
};
|
|
1580
|
-
query?: never;
|
|
1581
|
-
url: "/certs/{certId}/config";
|
|
1582
|
-
};
|
|
1583
|
-
type CertControllerExportConfigResponses = {
|
|
1584
|
-
200: CertImportDto;
|
|
1585
|
-
};
|
|
1586
|
-
type CertControllerExportConfigResponse = CertControllerExportConfigResponses[keyof CertControllerExportConfigResponses];
|
|
1587
|
-
type StatusListControllerGetListData = {
|
|
1588
|
-
body?: never;
|
|
1589
|
-
path: {
|
|
1590
|
-
tenantId: string;
|
|
1591
|
-
listId: string;
|
|
1592
|
-
};
|
|
1593
|
-
query?: never;
|
|
1594
|
-
url: "/{tenantId}/status-management/status-list/{listId}";
|
|
1595
|
-
};
|
|
1596
|
-
type StatusListControllerGetListResponses = {
|
|
1597
|
-
200: string;
|
|
1598
|
-
};
|
|
1599
|
-
type StatusListControllerGetListResponse = StatusListControllerGetListResponses[keyof StatusListControllerGetListResponses];
|
|
1600
|
-
type StatusListControllerGetStatusListAggregationData = {
|
|
1601
|
-
body?: never;
|
|
1602
|
-
path: {
|
|
1603
|
-
tenantId: string;
|
|
1604
|
-
};
|
|
1605
|
-
query?: never;
|
|
1606
|
-
url: "/{tenantId}/status-management/status-list-aggregation";
|
|
1607
|
-
};
|
|
1608
|
-
type StatusListControllerGetStatusListAggregationResponses = {
|
|
1609
|
-
/**
|
|
1610
|
-
* List of status list URIs
|
|
1611
|
-
*/
|
|
1612
|
-
200: StatusListAggregationDto;
|
|
1613
|
-
};
|
|
1614
|
-
type StatusListControllerGetStatusListAggregationResponse = StatusListControllerGetStatusListAggregationResponses[keyof StatusListControllerGetStatusListAggregationResponses];
|
|
1615
|
-
type StatusListConfigControllerResetConfigData = {
|
|
1616
|
-
body?: never;
|
|
1617
|
-
path?: never;
|
|
1618
|
-
query?: never;
|
|
1619
|
-
url: "/status-list-config";
|
|
1620
|
-
};
|
|
1621
|
-
type StatusListConfigControllerResetConfigResponses = {
|
|
1622
|
-
/**
|
|
1623
|
-
* Configuration reset successfully
|
|
1624
|
-
*/
|
|
1625
|
-
204: void;
|
|
1626
|
-
};
|
|
1627
|
-
type StatusListConfigControllerResetConfigResponse = StatusListConfigControllerResetConfigResponses[keyof StatusListConfigControllerResetConfigResponses];
|
|
1628
|
-
type StatusListConfigControllerGetConfigData = {
|
|
1629
|
-
body?: never;
|
|
1630
|
-
path?: never;
|
|
1631
|
-
query?: never;
|
|
1632
|
-
url: "/status-list-config";
|
|
1633
|
-
};
|
|
1634
|
-
type StatusListConfigControllerGetConfigResponses = {
|
|
1635
|
-
/**
|
|
1636
|
-
* The status list configuration
|
|
1637
|
-
*/
|
|
1638
|
-
200: StatusListConfig;
|
|
1639
|
-
};
|
|
1640
|
-
type StatusListConfigControllerGetConfigResponse = StatusListConfigControllerGetConfigResponses[keyof StatusListConfigControllerGetConfigResponses];
|
|
1641
|
-
type StatusListConfigControllerUpdateConfigData = {
|
|
1642
|
-
body: UpdateStatusListConfigDto;
|
|
1643
|
-
path?: never;
|
|
1644
|
-
query?: never;
|
|
1645
|
-
url: "/status-list-config";
|
|
1646
|
-
};
|
|
1647
|
-
type StatusListConfigControllerUpdateConfigResponses = {
|
|
1648
|
-
/**
|
|
1649
|
-
* The updated status list configuration
|
|
1650
|
-
*/
|
|
1651
|
-
200: StatusListConfig;
|
|
1652
|
-
};
|
|
1653
|
-
type StatusListConfigControllerUpdateConfigResponse = StatusListConfigControllerUpdateConfigResponses[keyof StatusListConfigControllerUpdateConfigResponses];
|
|
1654
|
-
type StatusListManagementControllerGetListsData = {
|
|
1655
|
-
body?: never;
|
|
1656
|
-
path?: never;
|
|
1657
|
-
query?: never;
|
|
1658
|
-
url: "/status-lists";
|
|
1659
|
-
};
|
|
1660
|
-
type StatusListManagementControllerGetListsResponses = {
|
|
1661
|
-
/**
|
|
1662
|
-
* List of status lists
|
|
1663
|
-
*/
|
|
1664
|
-
200: Array<StatusListResponseDto>;
|
|
1665
|
-
};
|
|
1666
|
-
type StatusListManagementControllerGetListsResponse = StatusListManagementControllerGetListsResponses[keyof StatusListManagementControllerGetListsResponses];
|
|
1667
|
-
type StatusListManagementControllerCreateListData = {
|
|
1668
|
-
body: CreateStatusListDto;
|
|
1669
|
-
path?: never;
|
|
1670
|
-
query?: never;
|
|
1671
|
-
url: "/status-lists";
|
|
1672
|
-
};
|
|
1673
|
-
type StatusListManagementControllerCreateListResponses = {
|
|
1674
|
-
/**
|
|
1675
|
-
* The created status list
|
|
1676
|
-
*/
|
|
1677
|
-
201: StatusListResponseDto;
|
|
1678
|
-
};
|
|
1679
|
-
type StatusListManagementControllerCreateListResponse = StatusListManagementControllerCreateListResponses[keyof StatusListManagementControllerCreateListResponses];
|
|
1680
|
-
type StatusListManagementControllerDeleteListData = {
|
|
1681
|
-
body?: never;
|
|
1682
|
-
path: {
|
|
1683
|
-
/**
|
|
1684
|
-
* The status list ID
|
|
1685
|
-
*/
|
|
1686
|
-
listId: string;
|
|
1687
|
-
};
|
|
1688
|
-
query?: never;
|
|
1689
|
-
url: "/status-lists/{listId}";
|
|
1690
|
-
};
|
|
1691
|
-
type StatusListManagementControllerDeleteListResponses = {
|
|
1692
|
-
/**
|
|
1693
|
-
* Status list deleted successfully
|
|
1694
|
-
*/
|
|
1695
|
-
204: void;
|
|
1696
|
-
};
|
|
1697
|
-
type StatusListManagementControllerDeleteListResponse = StatusListManagementControllerDeleteListResponses[keyof StatusListManagementControllerDeleteListResponses];
|
|
1698
|
-
type StatusListManagementControllerGetListData = {
|
|
1699
|
-
body?: never;
|
|
1700
|
-
path: {
|
|
1701
|
-
/**
|
|
1702
|
-
* The status list ID
|
|
1703
|
-
*/
|
|
1704
|
-
listId: string;
|
|
1705
|
-
};
|
|
1706
|
-
query?: never;
|
|
1707
|
-
url: "/status-lists/{listId}";
|
|
1708
|
-
};
|
|
1709
|
-
type StatusListManagementControllerGetListResponses = {
|
|
1710
|
-
/**
|
|
1711
|
-
* The status list
|
|
1712
|
-
*/
|
|
1713
|
-
200: StatusListResponseDto;
|
|
1714
|
-
};
|
|
1715
|
-
type StatusListManagementControllerGetListResponse = StatusListManagementControllerGetListResponses[keyof StatusListManagementControllerGetListResponses];
|
|
1716
|
-
type StatusListManagementControllerUpdateListData = {
|
|
1717
|
-
body: UpdateStatusListDto;
|
|
1718
|
-
path: {
|
|
1719
|
-
/**
|
|
1720
|
-
* The status list ID
|
|
1721
|
-
*/
|
|
1722
|
-
listId: string;
|
|
1723
|
-
};
|
|
1724
|
-
query?: never;
|
|
1725
|
-
url: "/status-lists/{listId}";
|
|
1726
|
-
};
|
|
1727
|
-
type StatusListManagementControllerUpdateListResponses = {
|
|
1728
|
-
/**
|
|
1729
|
-
* The updated status list
|
|
1730
|
-
*/
|
|
1731
|
-
200: StatusListResponseDto;
|
|
1732
|
-
};
|
|
1733
|
-
type StatusListManagementControllerUpdateListResponse = StatusListManagementControllerUpdateListResponses[keyof StatusListManagementControllerUpdateListResponses];
|
|
1734
|
-
type SessionControllerGetAllSessionsData = {
|
|
1735
|
-
body?: never;
|
|
1736
|
-
path?: never;
|
|
1737
|
-
query?: never;
|
|
1738
|
-
url: "/session";
|
|
1739
|
-
};
|
|
1740
|
-
type SessionControllerGetAllSessionsResponses = {
|
|
1741
|
-
200: Array<Session>;
|
|
1742
|
-
};
|
|
1743
|
-
type SessionControllerGetAllSessionsResponse = SessionControllerGetAllSessionsResponses[keyof SessionControllerGetAllSessionsResponses];
|
|
1744
|
-
type SessionControllerDeleteSessionData = {
|
|
1745
|
-
body?: never;
|
|
1746
|
-
path: {
|
|
1747
|
-
id: string;
|
|
1748
|
-
};
|
|
1749
|
-
query?: never;
|
|
1750
|
-
url: "/session/{id}";
|
|
1751
|
-
};
|
|
1752
|
-
type SessionControllerDeleteSessionResponses = {
|
|
1753
|
-
200: unknown;
|
|
1754
|
-
};
|
|
1755
|
-
type SessionControllerGetSessionData = {
|
|
1756
|
-
body?: never;
|
|
1757
|
-
path: {
|
|
1758
|
-
/**
|
|
1759
|
-
* The session ID
|
|
1760
|
-
*/
|
|
1761
|
-
id: string;
|
|
1762
|
-
};
|
|
1763
|
-
query?: never;
|
|
1764
|
-
url: "/session/{id}";
|
|
1765
|
-
};
|
|
1766
|
-
type SessionControllerGetSessionResponses = {
|
|
1767
|
-
200: Session;
|
|
1768
|
-
};
|
|
1769
|
-
type SessionControllerGetSessionResponse = SessionControllerGetSessionResponses[keyof SessionControllerGetSessionResponses];
|
|
1770
|
-
type SessionControllerRevokeAllData = {
|
|
1771
|
-
body: StatusUpdateDto;
|
|
1772
|
-
path?: never;
|
|
1773
|
-
query?: never;
|
|
1774
|
-
url: "/session/revoke";
|
|
1775
|
-
};
|
|
1776
|
-
type SessionControllerRevokeAllResponses = {
|
|
1777
|
-
201: unknown;
|
|
1778
|
-
};
|
|
1779
|
-
type SessionConfigControllerResetConfigData = {
|
|
1780
|
-
body?: never;
|
|
1781
|
-
path?: never;
|
|
1782
|
-
query?: never;
|
|
1783
|
-
url: "/session-config";
|
|
1784
|
-
};
|
|
1785
|
-
type SessionConfigControllerResetConfigResponses = {
|
|
1786
|
-
/**
|
|
1787
|
-
* Configuration reset successfully
|
|
1788
|
-
*/
|
|
1789
|
-
200: unknown;
|
|
1790
|
-
};
|
|
1791
|
-
type SessionConfigControllerGetConfigData = {
|
|
1792
|
-
body?: never;
|
|
1793
|
-
path?: never;
|
|
1794
|
-
query?: never;
|
|
1795
|
-
url: "/session-config";
|
|
1796
|
-
};
|
|
1797
|
-
type SessionConfigControllerGetConfigResponses = {
|
|
1798
|
-
/**
|
|
1799
|
-
* The session storage configuration
|
|
1800
|
-
*/
|
|
1801
|
-
200: SessionStorageConfig;
|
|
1802
|
-
};
|
|
1803
|
-
type SessionConfigControllerGetConfigResponse = SessionConfigControllerGetConfigResponses[keyof SessionConfigControllerGetConfigResponses];
|
|
1804
|
-
type SessionConfigControllerUpdateConfigData = {
|
|
1805
|
-
body: UpdateSessionConfigDto;
|
|
1806
|
-
path?: never;
|
|
1807
|
-
query?: never;
|
|
1808
|
-
url: "/session-config";
|
|
1809
|
-
};
|
|
1810
|
-
type SessionConfigControllerUpdateConfigResponses = {
|
|
1811
|
-
/**
|
|
1812
|
-
* The updated session storage configuration
|
|
1813
|
-
*/
|
|
1814
|
-
200: SessionStorageConfig;
|
|
1815
|
-
};
|
|
1816
|
-
type SessionConfigControllerUpdateConfigResponse = SessionConfigControllerUpdateConfigResponses[keyof SessionConfigControllerUpdateConfigResponses];
|
|
1817
|
-
type IssuanceConfigControllerGetIssuanceConfigurationsData = {
|
|
1818
|
-
body?: never;
|
|
1819
|
-
path?: never;
|
|
1820
|
-
query?: never;
|
|
1821
|
-
url: "/issuer/config";
|
|
1822
|
-
};
|
|
1823
|
-
type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
|
|
1824
|
-
200: IssuanceConfig;
|
|
1825
|
-
};
|
|
1826
|
-
type IssuanceConfigControllerGetIssuanceConfigurationsResponse = IssuanceConfigControllerGetIssuanceConfigurationsResponses[keyof IssuanceConfigControllerGetIssuanceConfigurationsResponses];
|
|
1827
|
-
type IssuanceConfigControllerStoreIssuanceConfigurationData = {
|
|
1828
|
-
body: IssuanceDto;
|
|
1829
|
-
path?: never;
|
|
1830
|
-
query?: never;
|
|
1831
|
-
url: "/issuer/config";
|
|
1832
|
-
};
|
|
1833
|
-
type IssuanceConfigControllerStoreIssuanceConfigurationResponses = {
|
|
1834
|
-
201: {
|
|
1835
|
-
[key: string]: unknown;
|
|
1836
|
-
};
|
|
1837
|
-
};
|
|
1838
|
-
type IssuanceConfigControllerStoreIssuanceConfigurationResponse = IssuanceConfigControllerStoreIssuanceConfigurationResponses[keyof IssuanceConfigControllerStoreIssuanceConfigurationResponses];
|
|
1839
|
-
type CredentialConfigControllerGetConfigsData = {
|
|
1840
|
-
body?: never;
|
|
1841
|
-
path?: never;
|
|
1842
|
-
query?: never;
|
|
1843
|
-
url: "/issuer/credentials";
|
|
1844
|
-
};
|
|
1845
|
-
type CredentialConfigControllerGetConfigsResponses = {
|
|
1846
|
-
200: Array<CredentialConfig>;
|
|
1847
|
-
};
|
|
1848
|
-
type CredentialConfigControllerGetConfigsResponse = CredentialConfigControllerGetConfigsResponses[keyof CredentialConfigControllerGetConfigsResponses];
|
|
1849
|
-
type CredentialConfigControllerStoreCredentialConfigurationData = {
|
|
1850
|
-
body: CredentialConfigCreate;
|
|
1851
|
-
path?: never;
|
|
1852
|
-
query?: never;
|
|
1853
|
-
url: "/issuer/credentials";
|
|
1854
|
-
};
|
|
1855
|
-
type CredentialConfigControllerStoreCredentialConfigurationResponses = {
|
|
1856
|
-
201: {
|
|
1857
|
-
[key: string]: unknown;
|
|
1858
|
-
};
|
|
1859
|
-
};
|
|
1860
|
-
type CredentialConfigControllerStoreCredentialConfigurationResponse = CredentialConfigControllerStoreCredentialConfigurationResponses[keyof CredentialConfigControllerStoreCredentialConfigurationResponses];
|
|
1861
|
-
type CredentialConfigControllerDeleteIssuanceConfigurationData = {
|
|
1862
|
-
body?: never;
|
|
1863
|
-
path: {
|
|
1864
|
-
id: string;
|
|
1865
|
-
};
|
|
1866
|
-
query?: never;
|
|
1867
|
-
url: "/issuer/credentials/{id}";
|
|
1868
|
-
};
|
|
1869
|
-
type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
|
|
1870
|
-
200: unknown;
|
|
1871
|
-
};
|
|
1872
|
-
type CredentialConfigControllerGetConfigByIdData = {
|
|
1873
|
-
body?: never;
|
|
1874
|
-
path: {
|
|
1875
|
-
id: string;
|
|
1876
|
-
};
|
|
1877
|
-
query?: never;
|
|
1878
|
-
url: "/issuer/credentials/{id}";
|
|
1879
|
-
};
|
|
1880
|
-
type CredentialConfigControllerGetConfigByIdResponses = {
|
|
1881
|
-
200: CredentialConfig;
|
|
1882
|
-
};
|
|
1883
|
-
type CredentialConfigControllerGetConfigByIdResponse = CredentialConfigControllerGetConfigByIdResponses[keyof CredentialConfigControllerGetConfigByIdResponses];
|
|
1884
|
-
type CredentialConfigControllerUpdateCredentialConfigurationData = {
|
|
1885
|
-
body: CredentialConfigUpdate;
|
|
1886
|
-
path: {
|
|
1887
|
-
id: string;
|
|
1888
|
-
};
|
|
1889
|
-
query?: never;
|
|
1890
|
-
url: "/issuer/credentials/{id}";
|
|
1891
|
-
};
|
|
1892
|
-
type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
1893
|
-
200: {
|
|
1894
|
-
[key: string]: unknown;
|
|
1895
|
-
};
|
|
1896
|
-
};
|
|
1897
|
-
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
1898
|
-
type Oid4VciControllerCredentialData = {
|
|
1899
|
-
body?: never;
|
|
1900
|
-
path: {
|
|
1901
|
-
tenantId: string;
|
|
1902
|
-
};
|
|
1903
|
-
query?: never;
|
|
1904
|
-
url: "/{tenantId}/vci/credential";
|
|
1905
|
-
};
|
|
1906
|
-
type Oid4VciControllerCredentialResponses = {
|
|
1907
|
-
200: unknown;
|
|
1908
|
-
};
|
|
1909
|
-
type Oid4VciControllerNotificationsData = {
|
|
1910
|
-
body: NotificationRequestDto;
|
|
1911
|
-
path: {
|
|
1912
|
-
tenantId: string;
|
|
1913
|
-
};
|
|
1914
|
-
query?: never;
|
|
1915
|
-
url: "/{tenantId}/vci/notification";
|
|
1916
|
-
};
|
|
1917
|
-
type Oid4VciControllerNotificationsResponses = {
|
|
1918
|
-
201: unknown;
|
|
1919
|
-
};
|
|
1920
|
-
type Oid4VciControllerNonceData = {
|
|
1921
|
-
body?: never;
|
|
1922
|
-
path: {
|
|
1923
|
-
tenantId: string;
|
|
1924
|
-
};
|
|
1925
|
-
query?: never;
|
|
1926
|
-
url: "/{tenantId}/vci/nonce";
|
|
1927
|
-
};
|
|
1928
|
-
type Oid4VciControllerNonceResponses = {
|
|
1929
|
-
200: unknown;
|
|
1930
|
-
};
|
|
1931
|
-
type AuthorizeControllerAuthorizeData = {
|
|
1932
|
-
body?: never;
|
|
1933
|
-
path: {
|
|
1934
|
-
tenantId: string;
|
|
1935
|
-
};
|
|
1936
|
-
query?: {
|
|
1937
|
-
issuer_state?: string;
|
|
1938
|
-
response_type?: string;
|
|
1939
|
-
client_id?: string;
|
|
1940
|
-
redirect_uri?: string;
|
|
1941
|
-
resource?: string;
|
|
1942
|
-
scope?: string;
|
|
1943
|
-
code_challenge?: string;
|
|
1944
|
-
code_challenge_method?: string;
|
|
1945
|
-
dpop_jkt?: string;
|
|
1946
|
-
request_uri?: string;
|
|
1947
|
-
auth_session?: string;
|
|
1948
|
-
state?: string;
|
|
1949
|
-
};
|
|
1950
|
-
url: "/{tenantId}/authorize";
|
|
1951
|
-
};
|
|
1952
|
-
type AuthorizeControllerAuthorizeResponses = {
|
|
1953
|
-
200: unknown;
|
|
1954
|
-
};
|
|
1955
|
-
type AuthorizeControllerParData = {
|
|
1956
|
-
/**
|
|
1957
|
-
* Pushed Authorization Request
|
|
1958
|
-
*/
|
|
1959
|
-
body: AuthorizeQueries;
|
|
1960
|
-
path?: never;
|
|
1961
|
-
query?: never;
|
|
1962
|
-
url: "/{tenantId}/authorize/par";
|
|
1963
|
-
};
|
|
1964
|
-
type AuthorizeControllerParResponses = {
|
|
1965
|
-
201: ParResponseDto;
|
|
1966
|
-
};
|
|
1967
|
-
type AuthorizeControllerParResponse = AuthorizeControllerParResponses[keyof AuthorizeControllerParResponses];
|
|
1968
|
-
type AuthorizeControllerTokenData = {
|
|
1969
|
-
body?: never;
|
|
1970
|
-
path: {
|
|
1971
|
-
tenantId: string;
|
|
1972
|
-
};
|
|
1973
|
-
query?: never;
|
|
1974
|
-
url: "/{tenantId}/authorize/token";
|
|
1975
|
-
};
|
|
1976
|
-
type AuthorizeControllerTokenResponses = {
|
|
1977
|
-
201: {
|
|
1978
|
-
[key: string]: unknown;
|
|
1979
|
-
};
|
|
1980
|
-
};
|
|
1981
|
-
type AuthorizeControllerTokenResponse = AuthorizeControllerTokenResponses[keyof AuthorizeControllerTokenResponses];
|
|
1982
|
-
type AuthorizeControllerAuthorizationChallengeEndpointData = {
|
|
1983
|
-
body: AuthorizeQueries;
|
|
1984
|
-
path: {
|
|
1985
|
-
tenantId: string;
|
|
1986
|
-
};
|
|
1987
|
-
query?: never;
|
|
1988
|
-
url: "/{tenantId}/authorize/challenge";
|
|
1989
|
-
};
|
|
1990
|
-
type AuthorizeControllerAuthorizationChallengeEndpointResponses = {
|
|
1991
|
-
201: unknown;
|
|
1992
|
-
};
|
|
1993
|
-
type CredentialOfferControllerGetOfferData = {
|
|
1994
|
-
body: OfferRequestDto;
|
|
1995
|
-
path?: never;
|
|
1996
|
-
query?: never;
|
|
1997
|
-
url: "/issuer/offer";
|
|
1998
|
-
};
|
|
1999
|
-
type CredentialOfferControllerGetOfferResponses = {
|
|
2000
|
-
/**
|
|
2001
|
-
* JSON response
|
|
2002
|
-
*/
|
|
2003
|
-
201: OfferResponse;
|
|
2004
|
-
};
|
|
2005
|
-
type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
|
|
2006
|
-
type Oid4VciMetadataControllerVctData = {
|
|
2007
|
-
body?: never;
|
|
2008
|
-
path: {
|
|
2009
|
-
id: string;
|
|
2010
|
-
tenantId: string;
|
|
2011
|
-
};
|
|
2012
|
-
query?: never;
|
|
2013
|
-
url: "/{tenantId}/credentials-metadata/vct/{id}";
|
|
2014
|
-
};
|
|
2015
|
-
type Oid4VciMetadataControllerVctResponses = {
|
|
2016
|
-
200: Vct;
|
|
2017
|
-
};
|
|
2018
|
-
type Oid4VciMetadataControllerVctResponse = Oid4VciMetadataControllerVctResponses[keyof Oid4VciMetadataControllerVctResponses];
|
|
2019
|
-
type WellKnownControllerIssuerMetadata0Data = {
|
|
2020
|
-
body?: never;
|
|
2021
|
-
path: {
|
|
2022
|
-
tenantId: string;
|
|
2023
|
-
};
|
|
2024
|
-
query?: never;
|
|
2025
|
-
url: "/.well-known/openid-credential-issuer/{tenantId}";
|
|
2026
|
-
};
|
|
2027
|
-
type WellKnownControllerIssuerMetadata0Responses = {
|
|
2028
|
-
200: {
|
|
2029
|
-
[key: string]: unknown;
|
|
2030
|
-
};
|
|
2031
|
-
};
|
|
2032
|
-
type WellKnownControllerIssuerMetadata0Response = WellKnownControllerIssuerMetadata0Responses[keyof WellKnownControllerIssuerMetadata0Responses];
|
|
2033
|
-
type WellKnownControllerIssuerMetadata1Data = {
|
|
2034
|
-
body?: never;
|
|
2035
|
-
path: {
|
|
2036
|
-
tenantId: string;
|
|
2037
|
-
};
|
|
2038
|
-
query?: never;
|
|
2039
|
-
url: "/{tenantId}/.well-known/openid-credential-issuer";
|
|
2040
|
-
};
|
|
2041
|
-
type WellKnownControllerIssuerMetadata1Responses = {
|
|
2042
|
-
200: {
|
|
2043
|
-
[key: string]: unknown;
|
|
2044
|
-
};
|
|
2045
|
-
};
|
|
2046
|
-
type WellKnownControllerIssuerMetadata1Response = WellKnownControllerIssuerMetadata1Responses[keyof WellKnownControllerIssuerMetadata1Responses];
|
|
2047
|
-
type WellKnownControllerAuthzMetadata0Data = {
|
|
2048
|
-
body?: never;
|
|
2049
|
-
path: {
|
|
2050
|
-
tenantId: string;
|
|
2051
|
-
};
|
|
2052
|
-
query?: never;
|
|
2053
|
-
url: "/.well-known/oauth-authorization-server/{tenantId}";
|
|
2054
|
-
};
|
|
2055
|
-
type WellKnownControllerAuthzMetadata0Responses = {
|
|
2056
|
-
200: unknown;
|
|
2057
|
-
};
|
|
2058
|
-
type WellKnownControllerAuthzMetadata1Data = {
|
|
2059
|
-
body?: never;
|
|
2060
|
-
path: {
|
|
2061
|
-
tenantId: string;
|
|
2062
|
-
};
|
|
2063
|
-
query?: never;
|
|
2064
|
-
url: "/{tenantId}/.well-known/oauth-authorization-server";
|
|
2065
|
-
};
|
|
2066
|
-
type WellKnownControllerAuthzMetadata1Responses = {
|
|
2067
|
-
200: unknown;
|
|
2068
|
-
};
|
|
2069
|
-
type WellKnownControllerGetJwks0Data = {
|
|
2070
|
-
body?: never;
|
|
2071
|
-
path: {
|
|
2072
|
-
tenantId: string;
|
|
2073
|
-
};
|
|
2074
|
-
query?: never;
|
|
2075
|
-
url: "/.well-known/jwks.json/{tenantId}";
|
|
2076
|
-
};
|
|
2077
|
-
type WellKnownControllerGetJwks0Responses = {
|
|
2078
|
-
200: JwksResponseDto;
|
|
2079
|
-
};
|
|
2080
|
-
type WellKnownControllerGetJwks0Response = WellKnownControllerGetJwks0Responses[keyof WellKnownControllerGetJwks0Responses];
|
|
2081
|
-
type WellKnownControllerGetJwks1Data = {
|
|
2082
|
-
body?: never;
|
|
2083
|
-
path: {
|
|
2084
|
-
tenantId: string;
|
|
2085
|
-
};
|
|
2086
|
-
query?: never;
|
|
2087
|
-
url: "/{tenantId}/.well-known/jwks.json";
|
|
2088
|
-
};
|
|
2089
|
-
type WellKnownControllerGetJwks1Responses = {
|
|
2090
|
-
200: JwksResponseDto;
|
|
2091
|
-
};
|
|
2092
|
-
type WellKnownControllerGetJwks1Response = WellKnownControllerGetJwks1Responses[keyof WellKnownControllerGetJwks1Responses];
|
|
2093
|
-
type Oid4VpControllerGetRequestWithSessionData = {
|
|
2094
|
-
body?: never;
|
|
2095
|
-
path: {
|
|
2096
|
-
session: string;
|
|
2097
|
-
};
|
|
2098
|
-
query?: never;
|
|
2099
|
-
url: "/{session}/oid4vp/request";
|
|
2100
|
-
};
|
|
2101
|
-
type Oid4VpControllerGetRequestWithSessionResponses = {
|
|
2102
|
-
200: string;
|
|
2103
|
-
};
|
|
2104
|
-
type Oid4VpControllerGetRequestWithSessionResponse = Oid4VpControllerGetRequestWithSessionResponses[keyof Oid4VpControllerGetRequestWithSessionResponses];
|
|
2105
|
-
type Oid4VpControllerGetPostRequestWithSessionData = {
|
|
2106
|
-
body?: never;
|
|
2107
|
-
path: {
|
|
2108
|
-
session: string;
|
|
2109
|
-
};
|
|
2110
|
-
query?: never;
|
|
2111
|
-
url: "/{session}/oid4vp/request";
|
|
2112
|
-
};
|
|
2113
|
-
type Oid4VpControllerGetPostRequestWithSessionResponses = {
|
|
2114
|
-
201: string;
|
|
2115
|
-
};
|
|
2116
|
-
type Oid4VpControllerGetPostRequestWithSessionResponse = Oid4VpControllerGetPostRequestWithSessionResponses[keyof Oid4VpControllerGetPostRequestWithSessionResponses];
|
|
2117
|
-
type Oid4VpControllerGetResponseData = {
|
|
2118
|
-
body: AuthorizationResponse;
|
|
2119
|
-
path: {
|
|
2120
|
-
session: string;
|
|
2121
|
-
};
|
|
2122
|
-
query?: never;
|
|
2123
|
-
url: "/{session}/oid4vp";
|
|
2124
|
-
};
|
|
2125
|
-
type Oid4VpControllerGetResponseResponses = {
|
|
2126
|
-
200: {
|
|
2127
|
-
[key: string]: unknown;
|
|
2128
|
-
};
|
|
2129
|
-
};
|
|
2130
|
-
type Oid4VpControllerGetResponseResponse = Oid4VpControllerGetResponseResponses[keyof Oid4VpControllerGetResponseResponses];
|
|
2131
|
-
type PresentationManagementControllerConfigurationData = {
|
|
2132
|
-
body?: never;
|
|
2133
|
-
path?: never;
|
|
2134
|
-
query?: never;
|
|
2135
|
-
url: "/verifier/config";
|
|
2136
|
-
};
|
|
2137
|
-
type PresentationManagementControllerConfigurationResponses = {
|
|
2138
|
-
200: Array<PresentationConfig>;
|
|
2139
|
-
};
|
|
2140
|
-
type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
|
|
2141
|
-
type PresentationManagementControllerStorePresentationConfigData = {
|
|
2142
|
-
body: PresentationConfigCreateDto;
|
|
2143
|
-
path?: never;
|
|
2144
|
-
query?: never;
|
|
2145
|
-
url: "/verifier/config";
|
|
2146
|
-
};
|
|
2147
|
-
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
2148
|
-
201: {
|
|
2149
|
-
[key: string]: unknown;
|
|
2150
|
-
};
|
|
2151
|
-
};
|
|
2152
|
-
type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
|
|
2153
|
-
type PresentationManagementControllerDeleteConfigurationData = {
|
|
2154
|
-
body?: never;
|
|
2155
|
-
path: {
|
|
2156
|
-
id: string;
|
|
2157
|
-
};
|
|
2158
|
-
query?: never;
|
|
2159
|
-
url: "/verifier/config/{id}";
|
|
2160
|
-
};
|
|
2161
|
-
type PresentationManagementControllerDeleteConfigurationResponses = {
|
|
2162
|
-
200: unknown;
|
|
2163
|
-
};
|
|
2164
|
-
type PresentationManagementControllerGetConfigurationData = {
|
|
2165
|
-
body?: never;
|
|
2166
|
-
path: {
|
|
2167
|
-
id: string;
|
|
2168
|
-
};
|
|
2169
|
-
query?: never;
|
|
2170
|
-
url: "/verifier/config/{id}";
|
|
2171
|
-
};
|
|
2172
|
-
type PresentationManagementControllerGetConfigurationResponses = {
|
|
2173
|
-
200: PresentationConfig;
|
|
2174
|
-
};
|
|
2175
|
-
type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
|
|
2176
|
-
type PresentationManagementControllerUpdateConfigurationData = {
|
|
2177
|
-
body: PresentationConfigUpdateDto;
|
|
2178
|
-
path: {
|
|
2179
|
-
id: string;
|
|
2180
|
-
};
|
|
2181
|
-
query?: never;
|
|
2182
|
-
url: "/verifier/config/{id}";
|
|
2183
|
-
};
|
|
2184
|
-
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
2185
|
-
200: {
|
|
2186
|
-
[key: string]: unknown;
|
|
2187
|
-
};
|
|
2188
|
-
};
|
|
2189
|
-
type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
|
|
2190
|
-
type TrustListControllerGetAllTrustListsData = {
|
|
2191
|
-
body?: never;
|
|
2192
|
-
path?: never;
|
|
2193
|
-
query?: never;
|
|
2194
|
-
url: "/trust-list";
|
|
2195
|
-
};
|
|
2196
|
-
type TrustListControllerGetAllTrustListsResponses = {
|
|
2197
|
-
200: Array<TrustList>;
|
|
2198
|
-
};
|
|
2199
|
-
type TrustListControllerGetAllTrustListsResponse = TrustListControllerGetAllTrustListsResponses[keyof TrustListControllerGetAllTrustListsResponses];
|
|
2200
|
-
type TrustListControllerCreateTrustListData = {
|
|
2201
|
-
body: TrustListCreateDto;
|
|
2202
|
-
path?: never;
|
|
2203
|
-
query?: never;
|
|
2204
|
-
url: "/trust-list";
|
|
2205
|
-
};
|
|
2206
|
-
type TrustListControllerCreateTrustListResponses = {
|
|
2207
|
-
201: TrustList;
|
|
2208
|
-
};
|
|
2209
|
-
type TrustListControllerCreateTrustListResponse = TrustListControllerCreateTrustListResponses[keyof TrustListControllerCreateTrustListResponses];
|
|
2210
|
-
type TrustListControllerDeleteTrustListData = {
|
|
2211
|
-
body?: never;
|
|
2212
|
-
path: {
|
|
2213
|
-
id: string;
|
|
2214
|
-
};
|
|
2215
|
-
query?: never;
|
|
2216
|
-
url: "/trust-list/{id}";
|
|
2217
|
-
};
|
|
2218
|
-
type TrustListControllerDeleteTrustListResponses = {
|
|
2219
|
-
200: unknown;
|
|
2220
|
-
};
|
|
2221
|
-
type TrustListControllerGetTrustListData = {
|
|
2222
|
-
body?: never;
|
|
2223
|
-
path: {
|
|
2224
|
-
id: string;
|
|
2225
|
-
};
|
|
2226
|
-
query?: never;
|
|
2227
|
-
url: "/trust-list/{id}";
|
|
2228
|
-
};
|
|
2229
|
-
type TrustListControllerGetTrustListResponses = {
|
|
2230
|
-
200: TrustList;
|
|
2231
|
-
};
|
|
2232
|
-
type TrustListControllerGetTrustListResponse = TrustListControllerGetTrustListResponses[keyof TrustListControllerGetTrustListResponses];
|
|
2233
|
-
type TrustListControllerUpdateTrustListData = {
|
|
2234
|
-
body: TrustListCreateDto;
|
|
2235
|
-
path: {
|
|
2236
|
-
id: string;
|
|
2237
|
-
};
|
|
2238
|
-
query?: never;
|
|
2239
|
-
url: "/trust-list/{id}";
|
|
2240
|
-
};
|
|
2241
|
-
type TrustListControllerUpdateTrustListResponses = {
|
|
2242
|
-
200: TrustList;
|
|
2243
|
-
};
|
|
2244
|
-
type TrustListControllerUpdateTrustListResponse = TrustListControllerUpdateTrustListResponses[keyof TrustListControllerUpdateTrustListResponses];
|
|
2245
|
-
type TrustListControllerExportTrustListData = {
|
|
2246
|
-
body?: never;
|
|
2247
|
-
path: {
|
|
2248
|
-
id: string;
|
|
2249
|
-
};
|
|
2250
|
-
query?: never;
|
|
2251
|
-
url: "/trust-list/{id}/export";
|
|
2252
|
-
};
|
|
2253
|
-
type TrustListControllerExportTrustListResponses = {
|
|
2254
|
-
200: TrustListCreateDto;
|
|
2255
|
-
};
|
|
2256
|
-
type TrustListControllerExportTrustListResponse = TrustListControllerExportTrustListResponses[keyof TrustListControllerExportTrustListResponses];
|
|
2257
|
-
type TrustListControllerGetTrustListVersionsData = {
|
|
2258
|
-
body?: never;
|
|
2259
|
-
path: {
|
|
2260
|
-
id: string;
|
|
2261
|
-
};
|
|
2262
|
-
query?: never;
|
|
2263
|
-
url: "/trust-list/{id}/versions";
|
|
2264
|
-
};
|
|
2265
|
-
type TrustListControllerGetTrustListVersionsResponses = {
|
|
2266
|
-
200: Array<TrustListVersion>;
|
|
2267
|
-
};
|
|
2268
|
-
type TrustListControllerGetTrustListVersionsResponse = TrustListControllerGetTrustListVersionsResponses[keyof TrustListControllerGetTrustListVersionsResponses];
|
|
2269
|
-
type TrustListControllerGetTrustListVersionData = {
|
|
2270
|
-
body?: never;
|
|
2271
|
-
path: {
|
|
2272
|
-
id: string;
|
|
2273
|
-
versionId: string;
|
|
2274
|
-
};
|
|
2275
|
-
query?: never;
|
|
2276
|
-
url: "/trust-list/{id}/versions/{versionId}";
|
|
2277
|
-
};
|
|
2278
|
-
type TrustListControllerGetTrustListVersionResponses = {
|
|
2279
|
-
200: TrustListVersion;
|
|
2280
|
-
};
|
|
2281
|
-
type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
|
|
2282
|
-
type TrustListPublicControllerGetTrustListJwtData = {
|
|
2283
|
-
body?: never;
|
|
2284
|
-
path: {
|
|
2285
|
-
tenantId: string;
|
|
2286
|
-
id: string;
|
|
2287
|
-
};
|
|
2288
|
-
query?: never;
|
|
2289
|
-
url: "/{tenantId}/trust-list/{id}";
|
|
2290
|
-
};
|
|
2291
|
-
type TrustListPublicControllerGetTrustListJwtResponses = {
|
|
2292
|
-
200: string;
|
|
2293
|
-
};
|
|
2294
|
-
type TrustListPublicControllerGetTrustListJwtResponse = TrustListPublicControllerGetTrustListJwtResponses[keyof TrustListPublicControllerGetTrustListJwtResponses];
|
|
2295
|
-
type VerifierOfferControllerGetOfferData = {
|
|
2296
|
-
body: PresentationRequest;
|
|
2297
|
-
path?: never;
|
|
2298
|
-
query?: never;
|
|
2299
|
-
url: "/verifier/offer";
|
|
2300
|
-
};
|
|
2301
|
-
type VerifierOfferControllerGetOfferResponses = {
|
|
2302
|
-
/**
|
|
2303
|
-
* JSON response
|
|
2304
|
-
*/
|
|
2305
|
-
201: OfferResponse;
|
|
2306
|
-
};
|
|
2307
|
-
type VerifierOfferControllerGetOfferResponse = VerifierOfferControllerGetOfferResponses[keyof VerifierOfferControllerGetOfferResponses];
|
|
2308
|
-
type StorageControllerUploadData = {
|
|
2309
|
-
/**
|
|
2310
|
-
* List of cats
|
|
2311
|
-
*/
|
|
2312
|
-
body: FileUploadDto;
|
|
2313
|
-
path?: never;
|
|
2314
|
-
query?: never;
|
|
2315
|
-
url: "/storage";
|
|
2316
|
-
};
|
|
2317
|
-
type StorageControllerUploadResponses = {
|
|
2318
|
-
201: {
|
|
2319
|
-
[key: string]: unknown;
|
|
2320
|
-
};
|
|
2321
|
-
};
|
|
2322
|
-
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
2323
|
-
type StorageControllerDownloadData = {
|
|
2324
|
-
body?: never;
|
|
2325
|
-
path: {
|
|
2326
|
-
key: string;
|
|
2327
|
-
};
|
|
2328
|
-
query?: never;
|
|
2329
|
-
url: "/storage/{key}";
|
|
2330
|
-
};
|
|
2331
|
-
type StorageControllerDownloadResponses = {
|
|
2332
|
-
200: unknown;
|
|
2333
|
-
};
|
|
2334
|
-
|
|
2335
|
-
type AuthToken = string | undefined;
|
|
2336
|
-
interface Auth {
|
|
2337
|
-
/**
|
|
2338
|
-
* Which part of the request do we use to send the auth?
|
|
2339
|
-
*
|
|
2340
|
-
* @default 'header'
|
|
2341
|
-
*/
|
|
2342
|
-
in?: "header" | "query" | "cookie";
|
|
2343
|
-
/**
|
|
2344
|
-
* Header or query parameter name.
|
|
2345
|
-
*
|
|
2346
|
-
* @default 'Authorization'
|
|
2347
|
-
*/
|
|
2348
|
-
name?: string;
|
|
2349
|
-
scheme?: "basic" | "bearer";
|
|
2350
|
-
type: "apiKey" | "http";
|
|
2351
|
-
}
|
|
2352
|
-
|
|
2353
|
-
interface SerializerOptions<T> {
|
|
2354
|
-
/**
|
|
2355
|
-
* @default true
|
|
2356
|
-
*/
|
|
2357
|
-
explode: boolean;
|
|
2358
|
-
style: T;
|
|
2359
|
-
}
|
|
2360
|
-
type ArrayStyle = "form" | "spaceDelimited" | "pipeDelimited";
|
|
2361
|
-
type ObjectStyle = "form" | "deepObject";
|
|
2362
|
-
|
|
2363
|
-
type QuerySerializer = (query: Record<string, unknown>) => string;
|
|
2364
|
-
type BodySerializer = (body: any) => any;
|
|
2365
|
-
type QuerySerializerOptionsObject = {
|
|
2366
|
-
allowReserved?: boolean;
|
|
2367
|
-
array?: Partial<SerializerOptions<ArrayStyle>>;
|
|
2368
|
-
object?: Partial<SerializerOptions<ObjectStyle>>;
|
|
2369
|
-
};
|
|
2370
|
-
type QuerySerializerOptions = QuerySerializerOptionsObject & {
|
|
2371
|
-
/**
|
|
2372
|
-
* Per-parameter serialization overrides. When provided, these settings
|
|
2373
|
-
* override the global array/object settings for specific parameter names.
|
|
2374
|
-
*/
|
|
2375
|
-
parameters?: Record<string, QuerySerializerOptionsObject>;
|
|
2376
|
-
};
|
|
2377
|
-
|
|
2378
|
-
type HttpMethod = "connect" | "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace";
|
|
2379
|
-
type Client$1<RequestFn = never, Config = unknown, MethodFn = never, BuildUrlFn = never, SseFn = never> = {
|
|
2380
|
-
/**
|
|
2381
|
-
* Returns the final request URL.
|
|
2382
|
-
*/
|
|
2383
|
-
buildUrl: BuildUrlFn;
|
|
2384
|
-
getConfig: () => Config;
|
|
2385
|
-
request: RequestFn;
|
|
2386
|
-
setConfig: (config: Config) => Config;
|
|
2387
|
-
} & {
|
|
2388
|
-
[K in HttpMethod]: MethodFn;
|
|
2389
|
-
} & ([SseFn] extends [never] ? {
|
|
2390
|
-
sse?: never;
|
|
2391
|
-
} : {
|
|
2392
|
-
sse: {
|
|
2393
|
-
[K in HttpMethod]: SseFn;
|
|
2394
|
-
};
|
|
2395
|
-
});
|
|
2396
|
-
interface Config$1 {
|
|
2397
|
-
/**
|
|
2398
|
-
* Auth token or a function returning auth token. The resolved value will be
|
|
2399
|
-
* added to the request payload as defined by its `security` array.
|
|
2400
|
-
*/
|
|
2401
|
-
auth?: ((auth: Auth) => Promise<AuthToken> | AuthToken) | AuthToken;
|
|
2402
|
-
/**
|
|
2403
|
-
* A function for serializing request body parameter. By default,
|
|
2404
|
-
* {@link JSON.stringify()} will be used.
|
|
2405
|
-
*/
|
|
2406
|
-
bodySerializer?: BodySerializer | null;
|
|
2407
|
-
/**
|
|
2408
|
-
* An object containing any HTTP headers that you want to pre-populate your
|
|
2409
|
-
* `Headers` object with.
|
|
2410
|
-
*
|
|
2411
|
-
* {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more}
|
|
2412
|
-
*/
|
|
2413
|
-
headers?: RequestInit["headers"] | Record<string, string | number | boolean | (string | number | boolean)[] | null | undefined | unknown>;
|
|
2414
|
-
/**
|
|
2415
|
-
* The request method.
|
|
2416
|
-
*
|
|
2417
|
-
* {@link https://developer.mozilla.org/docs/Web/API/fetch#method See more}
|
|
2418
|
-
*/
|
|
2419
|
-
method?: Uppercase<HttpMethod>;
|
|
2420
|
-
/**
|
|
2421
|
-
* A function for serializing request query parameters. By default, arrays
|
|
2422
|
-
* will be exploded in form style, objects will be exploded in deepObject
|
|
2423
|
-
* style, and reserved characters are percent-encoded.
|
|
2424
|
-
*
|
|
2425
|
-
* This method will have no effect if the native `paramsSerializer()` Axios
|
|
2426
|
-
* API function is used.
|
|
2427
|
-
*
|
|
2428
|
-
* {@link https://swagger.io/docs/specification/serialization/#query View examples}
|
|
2429
|
-
*/
|
|
2430
|
-
querySerializer?: QuerySerializer | QuerySerializerOptions;
|
|
2431
|
-
/**
|
|
2432
|
-
* A function validating request data. This is useful if you want to ensure
|
|
2433
|
-
* the request conforms to the desired shape, so it can be safely sent to
|
|
2434
|
-
* the server.
|
|
2435
|
-
*/
|
|
2436
|
-
requestValidator?: (data: unknown) => Promise<unknown>;
|
|
2437
|
-
/**
|
|
2438
|
-
* A function transforming response data before it's returned. This is useful
|
|
2439
|
-
* for post-processing data, e.g. converting ISO strings into Date objects.
|
|
2440
|
-
*/
|
|
2441
|
-
responseTransformer?: (data: unknown) => Promise<unknown>;
|
|
2442
|
-
/**
|
|
2443
|
-
* A function validating response data. This is useful if you want to ensure
|
|
2444
|
-
* the response conforms to the desired shape, so it can be safely passed to
|
|
2445
|
-
* the transformers and returned to the user.
|
|
2446
|
-
*/
|
|
2447
|
-
responseValidator?: (data: unknown) => Promise<unknown>;
|
|
2448
|
-
}
|
|
2449
|
-
|
|
2450
|
-
type ServerSentEventsOptions<TData = unknown> = Omit<RequestInit, "method"> & Pick<Config$1, "method" | "responseTransformer" | "responseValidator"> & {
|
|
2451
|
-
/**
|
|
2452
|
-
* Fetch API implementation. You can use this option to provide a custom
|
|
2453
|
-
* fetch instance.
|
|
2454
|
-
*
|
|
2455
|
-
* @default globalThis.fetch
|
|
2456
|
-
*/
|
|
2457
|
-
fetch?: typeof fetch;
|
|
2458
|
-
/**
|
|
2459
|
-
* Implementing clients can call request interceptors inside this hook.
|
|
2460
|
-
*/
|
|
2461
|
-
onRequest?: (url: string, init: RequestInit) => Promise<Request>;
|
|
2462
|
-
/**
|
|
2463
|
-
* Callback invoked when a network or parsing error occurs during streaming.
|
|
2464
|
-
*
|
|
2465
|
-
* This option applies only if the endpoint returns a stream of events.
|
|
2466
|
-
*
|
|
2467
|
-
* @param error The error that occurred.
|
|
2468
|
-
*/
|
|
2469
|
-
onSseError?: (error: unknown) => void;
|
|
2470
|
-
/**
|
|
2471
|
-
* Callback invoked when an event is streamed from the server.
|
|
2472
|
-
*
|
|
2473
|
-
* This option applies only if the endpoint returns a stream of events.
|
|
2474
|
-
*
|
|
2475
|
-
* @param event Event streamed from the server.
|
|
2476
|
-
* @returns Nothing (void).
|
|
2477
|
-
*/
|
|
2478
|
-
onSseEvent?: (event: StreamEvent<TData>) => void;
|
|
2479
|
-
serializedBody?: RequestInit["body"];
|
|
2480
|
-
/**
|
|
2481
|
-
* Default retry delay in milliseconds.
|
|
2482
|
-
*
|
|
2483
|
-
* This option applies only if the endpoint returns a stream of events.
|
|
2484
|
-
*
|
|
2485
|
-
* @default 3000
|
|
2486
|
-
*/
|
|
2487
|
-
sseDefaultRetryDelay?: number;
|
|
2488
|
-
/**
|
|
2489
|
-
* Maximum number of retry attempts before giving up.
|
|
2490
|
-
*/
|
|
2491
|
-
sseMaxRetryAttempts?: number;
|
|
2492
|
-
/**
|
|
2493
|
-
* Maximum retry delay in milliseconds.
|
|
2494
|
-
*
|
|
2495
|
-
* Applies only when exponential backoff is used.
|
|
2496
|
-
*
|
|
2497
|
-
* This option applies only if the endpoint returns a stream of events.
|
|
2498
|
-
*
|
|
2499
|
-
* @default 30000
|
|
2500
|
-
*/
|
|
2501
|
-
sseMaxRetryDelay?: number;
|
|
2502
|
-
/**
|
|
2503
|
-
* Optional sleep function for retry backoff.
|
|
2504
|
-
*
|
|
2505
|
-
* Defaults to using `setTimeout`.
|
|
2506
|
-
*/
|
|
2507
|
-
sseSleepFn?: (ms: number) => Promise<void>;
|
|
2508
|
-
url: string;
|
|
2509
|
-
};
|
|
2510
|
-
interface StreamEvent<TData = unknown> {
|
|
2511
|
-
data: TData;
|
|
2512
|
-
event?: string;
|
|
2513
|
-
id?: string;
|
|
2514
|
-
retry?: number;
|
|
2515
|
-
}
|
|
2516
|
-
type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> = {
|
|
2517
|
-
stream: AsyncGenerator<TData extends Record<string, unknown> ? TData[keyof TData] : TData, TReturn, TNext>;
|
|
2518
|
-
};
|
|
2519
|
-
|
|
2520
|
-
type ErrInterceptor<Err, Res, Req, Options> = (error: Err, response: Res, request: Req, options: Options) => Err | Promise<Err>;
|
|
2521
|
-
type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
|
|
2522
|
-
type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
|
|
2523
|
-
declare class Interceptors<Interceptor> {
|
|
2524
|
-
fns: Array<Interceptor | null>;
|
|
2525
|
-
clear(): void;
|
|
2526
|
-
eject(id: number | Interceptor): void;
|
|
2527
|
-
exists(id: number | Interceptor): boolean;
|
|
2528
|
-
getInterceptorIndex(id: number | Interceptor): number;
|
|
2529
|
-
update(id: number | Interceptor, fn: Interceptor): number | Interceptor | false;
|
|
2530
|
-
use(fn: Interceptor): number;
|
|
2531
|
-
}
|
|
2532
|
-
interface Middleware<Req, Res, Err, Options> {
|
|
2533
|
-
error: Interceptors<ErrInterceptor<Err, Res, Req, Options>>;
|
|
2534
|
-
request: Interceptors<ReqInterceptor<Req, Options>>;
|
|
2535
|
-
response: Interceptors<ResInterceptor<Res, Req, Options>>;
|
|
2536
|
-
}
|
|
2537
|
-
|
|
2538
|
-
type ResponseStyle = "data" | "fields";
|
|
2539
|
-
interface Config<T extends ClientOptions = ClientOptions> extends Omit<RequestInit, "body" | "headers" | "method">, Config$1 {
|
|
2540
|
-
/**
|
|
2541
|
-
* Base URL for all requests made by this client.
|
|
2542
|
-
*/
|
|
2543
|
-
baseUrl?: T["baseUrl"];
|
|
2544
|
-
/**
|
|
2545
|
-
* Fetch API implementation. You can use this option to provide a custom
|
|
2546
|
-
* fetch instance.
|
|
2547
|
-
*
|
|
2548
|
-
* @default globalThis.fetch
|
|
2549
|
-
*/
|
|
2550
|
-
fetch?: typeof fetch;
|
|
2551
|
-
/**
|
|
2552
|
-
* Please don't use the Fetch client for Next.js applications. The `next`
|
|
2553
|
-
* options won't have any effect.
|
|
2554
|
-
*
|
|
2555
|
-
* Install {@link https://www.npmjs.com/package/@hey-api/client-next `@hey-api/client-next`} instead.
|
|
2556
|
-
*/
|
|
2557
|
-
next?: never;
|
|
2558
|
-
/**
|
|
2559
|
-
* Return the response data parsed in a specified format. By default, `auto`
|
|
2560
|
-
* will infer the appropriate method from the `Content-Type` response header.
|
|
2561
|
-
* You can override this behavior with any of the {@link Body} methods.
|
|
2562
|
-
* Select `stream` if you don't want to parse response data at all.
|
|
2563
|
-
*
|
|
2564
|
-
* @default 'auto'
|
|
2565
|
-
*/
|
|
2566
|
-
parseAs?: "arrayBuffer" | "auto" | "blob" | "formData" | "json" | "stream" | "text";
|
|
2567
|
-
/**
|
|
2568
|
-
* Should we return only data or multiple fields (data, error, response, etc.)?
|
|
2569
|
-
*
|
|
2570
|
-
* @default 'fields'
|
|
2571
|
-
*/
|
|
2572
|
-
responseStyle?: ResponseStyle;
|
|
2573
|
-
/**
|
|
2574
|
-
* Throw an error instead of returning it in the response?
|
|
2575
|
-
*
|
|
2576
|
-
* @default false
|
|
2577
|
-
*/
|
|
2578
|
-
throwOnError?: T["throwOnError"];
|
|
2579
|
-
}
|
|
2580
|
-
interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle = "fields", ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
|
|
2581
|
-
responseStyle: TResponseStyle;
|
|
2582
|
-
throwOnError: ThrowOnError;
|
|
2583
|
-
}>, Pick<ServerSentEventsOptions<TData>, "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay"> {
|
|
2584
|
-
/**
|
|
2585
|
-
* Any body that you want to add to your request.
|
|
2586
|
-
*
|
|
2587
|
-
* {@link https://developer.mozilla.org/docs/Web/API/fetch#body}
|
|
2588
|
-
*/
|
|
2589
|
-
body?: unknown;
|
|
2590
|
-
path?: Record<string, unknown>;
|
|
2591
|
-
query?: Record<string, unknown>;
|
|
2592
|
-
/**
|
|
2593
|
-
* Security mechanism(s) to use for the request.
|
|
2594
|
-
*/
|
|
2595
|
-
security?: ReadonlyArray<Auth>;
|
|
2596
|
-
url: Url;
|
|
2597
|
-
}
|
|
2598
|
-
interface ResolvedRequestOptions<TResponseStyle extends ResponseStyle = "fields", ThrowOnError extends boolean = boolean, Url extends string = string> extends RequestOptions<unknown, TResponseStyle, ThrowOnError, Url> {
|
|
2599
|
-
serializedBody?: string;
|
|
2600
|
-
}
|
|
2601
|
-
type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boolean = boolean, TResponseStyle extends ResponseStyle = "fields"> = ThrowOnError extends true ? Promise<TResponseStyle extends "data" ? TData extends Record<string, unknown> ? TData[keyof TData] : TData : {
|
|
2602
|
-
data: TData extends Record<string, unknown> ? TData[keyof TData] : TData;
|
|
2603
|
-
request: Request;
|
|
2604
|
-
response: Response;
|
|
2605
|
-
}> : Promise<TResponseStyle extends "data" ? (TData extends Record<string, unknown> ? TData[keyof TData] : TData) | undefined : ({
|
|
2606
|
-
data: TData extends Record<string, unknown> ? TData[keyof TData] : TData;
|
|
2607
|
-
error: undefined;
|
|
2608
|
-
} | {
|
|
2609
|
-
data: undefined;
|
|
2610
|
-
error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
|
|
2611
|
-
}) & {
|
|
2612
|
-
request: Request;
|
|
2613
|
-
response: Response;
|
|
2614
|
-
}>;
|
|
2615
|
-
interface ClientOptions {
|
|
2616
|
-
baseUrl?: string;
|
|
2617
|
-
responseStyle?: ResponseStyle;
|
|
2618
|
-
throwOnError?: boolean;
|
|
2619
|
-
}
|
|
2620
|
-
type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = "fields">(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, "method">) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
|
|
2621
|
-
type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = "fields">(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, "method">) => Promise<ServerSentEventsResult<TData, TError>>;
|
|
2622
|
-
type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = "fields">(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, "method"> & Pick<Required<RequestOptions<TData, TResponseStyle, ThrowOnError>>, "method">) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
|
|
2623
|
-
type BuildUrlFn = <TData extends {
|
|
2624
|
-
body?: unknown;
|
|
2625
|
-
path?: Record<string, unknown>;
|
|
2626
|
-
query?: Record<string, unknown>;
|
|
2627
|
-
url: string;
|
|
2628
|
-
}>(options: TData & Options$1<TData>) => string;
|
|
2629
|
-
type Client = Client$1<RequestFn, Config, MethodFn, BuildUrlFn, SseFn> & {
|
|
2630
|
-
interceptors: Middleware<Request, Response, unknown, ResolvedRequestOptions>;
|
|
2631
|
-
};
|
|
2632
|
-
interface TDataShape {
|
|
2633
|
-
body?: unknown;
|
|
2634
|
-
headers?: unknown;
|
|
2635
|
-
path?: unknown;
|
|
2636
|
-
query?: unknown;
|
|
2637
|
-
url: string;
|
|
2638
|
-
}
|
|
2639
|
-
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
2640
|
-
type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = "fields"> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, "body" | "path" | "query" | "url"> & ([TData] extends [never] ? unknown : Omit<TData, "url">);
|
|
1
|
+
import { b as AppControllerMainData, c as AppControllerMainResponses, e as AuthControllerGetGlobalJwksData, f as AuthControllerGetGlobalJwksResponses, g as AuthControllerGetOAuth2TokenData, j as AuthControllerGetOAuth2TokenResponses, h as AuthControllerGetOAuth2TokenErrors, k as AuthControllerGetOidcDiscoveryData, l as AuthControllerGetOidcDiscoveryResponses, r as AuthorizeControllerAuthorizationChallengeEndpointData, s as AuthorizeControllerAuthorizationChallengeEndpointResponses, t as AuthorizeControllerAuthorizeData, u as AuthorizeControllerAuthorizeResponses, v as AuthorizeControllerParData, x as AuthorizeControllerParResponses, y as AuthorizeControllerTokenData, B as AuthorizeControllerTokenResponses, D as CertControllerAddCertificateData, F as CertControllerAddCertificateResponses, G as CertControllerDeleteCertificateData, H as CertControllerDeleteCertificateResponses, I as CertControllerExportConfigData, K as CertControllerExportConfigResponses, L as CertControllerGetCertificateData, N as CertControllerGetCertificateResponses, O as CertControllerGetCertificatesData, Q as CertControllerGetCertificatesResponses, R as CertControllerUpdateCertificateData, T as CertControllerUpdateCertificateResponses, $ as ClientControllerCreateClientData, a1 as ClientControllerCreateClientResponses, a2 as ClientControllerDeleteClientData, a3 as ClientControllerDeleteClientResponses, a4 as ClientControllerGetClientData, a6 as ClientControllerGetClientResponses, a7 as ClientControllerGetClientSecretData, a9 as ClientControllerGetClientSecretResponses, aa as ClientControllerGetClientsData, ac as ClientControllerGetClientsResponses, ad as ClientControllerUpdateClientData, af as ClientControllerUpdateClientResponses, ao as CredentialConfigControllerDeleteIssuanceConfigurationData, ap as CredentialConfigControllerDeleteIssuanceConfigurationResponses, aq as CredentialConfigControllerGetConfigByIdData, as as CredentialConfigControllerGetConfigByIdResponses, at as CredentialConfigControllerGetConfigsData, av as CredentialConfigControllerGetConfigsResponses, aw as CredentialConfigControllerStoreCredentialConfigurationData, ay as CredentialConfigControllerStoreCredentialConfigurationResponses, az as CredentialConfigControllerUpdateCredentialConfigurationData, aB as CredentialConfigControllerUpdateCredentialConfigurationResponses, aE as CredentialOfferControllerGetOfferData, aG as CredentialOfferControllerGetOfferResponses, aR as HealthControllerCheckData, aV as HealthControllerCheckResponses, aT as HealthControllerCheckErrors, aY as IssuanceConfigControllerGetIssuanceConfigurationsData, a_ as IssuanceConfigControllerGetIssuanceConfigurationsResponses, a$ as IssuanceConfigControllerStoreIssuanceConfigurationData, b1 as IssuanceConfigControllerStoreIssuanceConfigurationResponses, b6 as KeyControllerAddKeyData, b7 as KeyControllerAddKeyResponses, b8 as KeyControllerDeleteKeyData, b9 as KeyControllerDeleteKeyResponses, ba as KeyControllerGetKeyData, bc as KeyControllerGetKeyResponses, bd as KeyControllerGetKeysData, bf as KeyControllerGetKeysResponses, bg as KeyControllerUpdateKeyData, bh as KeyControllerUpdateKeyResponses, bo as Oid4VciControllerCredentialData, bp as Oid4VciControllerCredentialResponses, bq as Oid4VciControllerNonceData, br as Oid4VciControllerNonceResponses, bs as Oid4VciControllerNotificationsData, bt as Oid4VciControllerNotificationsResponses, bu as Oid4VciMetadataControllerVctData, bw as Oid4VciMetadataControllerVctResponses, bx as Oid4VpControllerGetPostRequestWithSessionData, bz as Oid4VpControllerGetPostRequestWithSessionResponses, bA as Oid4VpControllerGetRequestWithSessionData, bC as Oid4VpControllerGetRequestWithSessionResponses, bD as Oid4VpControllerGetResponseData, bF as Oid4VpControllerGetResponseResponses, bN as PresentationManagementControllerConfigurationData, bP as PresentationManagementControllerConfigurationResponses, bQ as PresentationManagementControllerDeleteConfigurationData, bR as PresentationManagementControllerDeleteConfigurationResponses, bS as PresentationManagementControllerGetConfigurationData, bU as PresentationManagementControllerGetConfigurationResponses, bV as PresentationManagementControllerStorePresentationConfigData, bX as PresentationManagementControllerStorePresentationConfigResponses, bY as PresentationManagementControllerUpdateConfigurationData, b_ as PresentationManagementControllerUpdateConfigurationResponses, c0 as PrometheusControllerIndexData, c1 as PrometheusControllerIndexResponses, c6 as SessionConfigControllerGetConfigData, c8 as SessionConfigControllerGetConfigResponses, c9 as SessionConfigControllerResetConfigData, ca as SessionConfigControllerResetConfigResponses, cb as SessionConfigControllerUpdateConfigData, cd as SessionConfigControllerUpdateConfigResponses, ce as SessionControllerDeleteSessionData, cf as SessionControllerDeleteSessionResponses, cg as SessionControllerGetAllSessionsData, ci as SessionControllerGetAllSessionsResponses, cj as SessionControllerGetSessionData, cl as SessionControllerGetSessionResponses, cm as SessionControllerRevokeAllData, cn as SessionControllerRevokeAllResponses, cr as StatusListConfigControllerGetConfigData, ct as StatusListConfigControllerGetConfigResponses, cu as StatusListConfigControllerResetConfigData, cw as StatusListConfigControllerResetConfigResponses, cx as StatusListConfigControllerUpdateConfigData, cz as StatusListConfigControllerUpdateConfigResponses, cA as StatusListControllerGetListData, cC as StatusListControllerGetListResponses, cD as StatusListControllerGetStatusListAggregationData, cF as StatusListControllerGetStatusListAggregationResponses, cH as StatusListManagementControllerCreateListData, cJ as StatusListManagementControllerCreateListResponses, cK as StatusListManagementControllerDeleteListData, cM as StatusListManagementControllerDeleteListResponses, cN as StatusListManagementControllerGetListData, cP as StatusListManagementControllerGetListResponses, cQ as StatusListManagementControllerGetListsData, cS as StatusListManagementControllerGetListsResponses, cT as StatusListManagementControllerUpdateListData, cV as StatusListManagementControllerUpdateListResponses, cY as StorageControllerDownloadData, cZ as StorageControllerDownloadResponses, c_ as StorageControllerUploadData, d0 as StorageControllerUploadResponses, d1 as TenantControllerDeleteTenantData, d2 as TenantControllerDeleteTenantResponses, d3 as TenantControllerGetTenantData, d5 as TenantControllerGetTenantResponses, d6 as TenantControllerGetTenantsData, d8 as TenantControllerGetTenantsResponses, d9 as TenantControllerInitTenantData, da as TenantControllerInitTenantResponses, db as TenantControllerUpdateTenantData, dd as TenantControllerUpdateTenantResponses, dh as TrustListControllerCreateTrustListData, dj as TrustListControllerCreateTrustListResponses, dk as TrustListControllerDeleteTrustListData, dl as TrustListControllerDeleteTrustListResponses, dm as TrustListControllerExportTrustListData, dp as TrustListControllerExportTrustListResponses, dq as TrustListControllerGetAllTrustListsData, ds as TrustListControllerGetAllTrustListsResponses, dt as TrustListControllerGetTrustListData, dv as TrustListControllerGetTrustListResponses, dw as TrustListControllerGetTrustListVersionData, dy as TrustListControllerGetTrustListVersionResponses, dz as TrustListControllerGetTrustListVersionsData, dB as TrustListControllerGetTrustListVersionsResponses, dC as TrustListControllerUpdateTrustListData, dE as TrustListControllerUpdateTrustListResponses, dG as TrustListPublicControllerGetTrustListJwtData, dI as TrustListPublicControllerGetTrustListJwtResponses, dS as VerifierOfferControllerGetOfferData, dU as VerifierOfferControllerGetOfferResponses, dY as WellKnownControllerAuthzMetadata0Data, dZ as WellKnownControllerAuthzMetadata0Responses, d_ as WellKnownControllerAuthzMetadata1Data, d$ as WellKnownControllerAuthzMetadata1Responses, e0 as WellKnownControllerGetJwks0Data, e2 as WellKnownControllerGetJwks0Responses, e3 as WellKnownControllerGetJwks1Data, e5 as WellKnownControllerGetJwks1Responses, e6 as WellKnownControllerIssuerMetadata0Data, e8 as WellKnownControllerIssuerMetadata0Responses, e9 as WellKnownControllerIssuerMetadata1Data, eb as WellKnownControllerIssuerMetadata1Responses } from '../client.gen-CsfHl8pY.js';
|
|
2
|
+
export { A as AllowListPolicy, a as ApiKeyConfig, d as AttestationBasedPolicy, i as AuthControllerGetOAuth2TokenResponse, m as AuthenticationMethodAuth, n as AuthenticationMethodNone, o as AuthenticationMethodPresentation, p as AuthenticationUrlConfig, q as AuthorizationResponse, w as AuthorizeControllerParResponse, z as AuthorizeControllerTokenResponse, C as AuthorizeQueries, E as CertControllerAddCertificateResponse, J as CertControllerExportConfigResponse, M as CertControllerGetCertificateResponse, P as CertControllerGetCertificatesResponse, U as CertEntity, V as CertImportDto, W as CertResponseDto, X as CertUpdateDto, Y as CertUsageEntity, Z as Claim, _ as ClaimsQuery, a0 as ClientControllerCreateClientResponse, a5 as ClientControllerGetClientResponse, a8 as ClientControllerGetClientSecretResponse, ab as ClientControllerGetClientsResponse, ae as ClientControllerUpdateClientResponse, ag as ClientCredentialsDto, ah as ClientEntity, ai as ClientOptions, aj as ClientSecretResponseDto, ak as CreateClientDto, al as CreateStatusListDto, am as CreateTenantDto, an as CredentialConfig, ar as CredentialConfigControllerGetConfigByIdResponse, au as CredentialConfigControllerGetConfigsResponse, ax as CredentialConfigControllerStoreCredentialConfigurationResponse, aA as CredentialConfigControllerUpdateCredentialConfigurationResponse, aC as CredentialConfigCreate, aD as CredentialConfigUpdate, aF as CredentialOfferControllerGetOfferResponse, aH as CredentialQuery, aI as CredentialSetQuery, aJ as Dcql, aK as Display, aL as DisplayImage, aM as DisplayInfo, aN as DisplayLogo, aO as EcPublic, aP as EmbeddedDisclosurePolicy, aQ as FileUploadDto, aS as HealthControllerCheckError, aU as HealthControllerCheckResponse, aW as ImportTenantDto, aX as IssuanceConfig, aZ as IssuanceConfigControllerGetIssuanceConfigurationsResponse, b0 as IssuanceConfigControllerStoreIssuanceConfigurationResponse, b2 as IssuanceDto, b3 as IssuerMetadataCredentialConfig, b4 as JwksResponseDto, b5 as Key, bb as KeyControllerGetKeyResponse, be as KeyControllerGetKeysResponse, bi as KeyEntity, bj as KeyImportDto, bk as NoneTrustPolicy, bl as NotificationRequestDto, bm as OfferRequestDto, bn as OfferResponse, bv as Oid4VciMetadataControllerVctResponse, by as Oid4VpControllerGetPostRequestWithSessionResponse, bB as Oid4VpControllerGetRequestWithSessionResponse, bE as Oid4VpControllerGetResponseResponse, bG as ParResponseDto, bH as PolicyCredential, bI as PresentationAttachment, bJ as PresentationConfig, bK as PresentationConfigCreateDto, bL as PresentationConfigUpdateDto, bM as PresentationDuringIssuanceConfig, bO as PresentationManagementControllerConfigurationResponse, bT as PresentationManagementControllerGetConfigurationResponse, bW as PresentationManagementControllerStorePresentationConfigResponse, bZ as PresentationManagementControllerUpdateConfigurationResponse, b$ as PresentationRequest, c2 as RegistrationCertificateRequest, c3 as RoleDto, c4 as RootOfTrustPolicy, c5 as SchemaResponse, S as Session, c7 as SessionConfigControllerGetConfigResponse, cc as SessionConfigControllerUpdateConfigResponse, ch as SessionControllerGetAllSessionsResponse, ck as SessionControllerGetSessionResponse, co as SessionStorageConfig, cp as StatusListAggregationDto, cq as StatusListConfig, cs as StatusListConfigControllerGetConfigResponse, cv as StatusListConfigControllerResetConfigResponse, cy as StatusListConfigControllerUpdateConfigResponse, cB as StatusListControllerGetListResponse, cE as StatusListControllerGetStatusListAggregationResponse, cG as StatusListImportDto, cI as StatusListManagementControllerCreateListResponse, cL as StatusListManagementControllerDeleteListResponse, cO as StatusListManagementControllerGetListResponse, cR as StatusListManagementControllerGetListsResponse, cU as StatusListManagementControllerUpdateListResponse, cW as StatusListResponseDto, cX as StatusUpdateDto, c$ as StorageControllerUploadResponse, d4 as TenantControllerGetTenantResponse, d7 as TenantControllerGetTenantsResponse, dc as TenantControllerUpdateTenantResponse, de as TenantEntity, df as TokenResponse, dg as TrustList, di as TrustListControllerCreateTrustListResponse, dn as TrustListControllerExportTrustListResponse, dr as TrustListControllerGetAllTrustListsResponse, du as TrustListControllerGetTrustListResponse, dx as TrustListControllerGetTrustListVersionResponse, dA as TrustListControllerGetTrustListVersionsResponse, dD as TrustListControllerUpdateTrustListResponse, dF as TrustListCreateDto, dH as TrustListPublicControllerGetTrustListJwtResponse, dJ as TrustListVersion, dK as TrustedAuthorityQuery, dL as UpdateClientDto, dM as UpdateKeyDto, dN as UpdateSessionConfigDto, dO as UpdateStatusListConfigDto, dP as UpdateStatusListDto, dQ as UpdateTenantDto, dR as Vct, dT as VerifierOfferControllerGetOfferResponse, dV as WebHookAuthConfigHeader, dW as WebHookAuthConfigNone, dX as WebhookConfig, e1 as WellKnownControllerGetJwks0Response, e4 as WellKnownControllerGetJwks1Response, e7 as WellKnownControllerIssuerMetadata0Response, ea as WellKnownControllerIssuerMetadata1Response, ec as client } from '../client.gen-CsfHl8pY.js';
|
|
3
|
+
import { T as TDataShape, O as Options$1, a as Client, d as RequestResult } from '../types.gen-CIiveH8G.js';
|
|
2641
4
|
|
|
2642
5
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
2643
6
|
/**
|
|
@@ -2694,6 +57,10 @@ declare const tenantControllerDeleteTenant: <ThrowOnError extends boolean = true
|
|
|
2694
57
|
* Get a tenant by ID
|
|
2695
58
|
*/
|
|
2696
59
|
declare const tenantControllerGetTenant: <ThrowOnError extends boolean = true>(options: Options<TenantControllerGetTenantData, ThrowOnError>) => RequestResult<TenantControllerGetTenantResponses, unknown, ThrowOnError, "fields">;
|
|
60
|
+
/**
|
|
61
|
+
* Update a tenant by ID
|
|
62
|
+
*/
|
|
63
|
+
declare const tenantControllerUpdateTenant: <ThrowOnError extends boolean = true>(options: Options<TenantControllerUpdateTenantData, ThrowOnError>) => RequestResult<TenantControllerUpdateTenantResponses, unknown, ThrowOnError, "fields">;
|
|
2697
64
|
/**
|
|
2698
65
|
* Get all clients for a user
|
|
2699
66
|
*/
|
|
@@ -3024,4 +391,4 @@ declare const verifierOfferControllerGetOffer: <ThrowOnError extends boolean = t
|
|
|
3024
391
|
declare const storageControllerUpload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerUploadData, ThrowOnError>) => RequestResult<StorageControllerUploadResponses, unknown, ThrowOnError, "fields">;
|
|
3025
392
|
declare const storageControllerDownload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerDownloadData, ThrowOnError>) => RequestResult<StorageControllerDownloadResponses, unknown, ThrowOnError, "fields">;
|
|
3026
393
|
|
|
3027
|
-
export { type AllowListPolicy, type ApiKeyConfig, type AppControllerMainData, type AppControllerMainResponses, type AttestationBasedPolicy, type AuthControllerGetGlobalJwksData, type AuthControllerGetGlobalJwksResponses, type AuthControllerGetOAuth2TokenData, type AuthControllerGetOAuth2TokenErrors, type AuthControllerGetOAuth2TokenResponse, type AuthControllerGetOAuth2TokenResponses, type AuthControllerGetOidcDiscoveryData, type AuthControllerGetOidcDiscoveryResponses, type AuthenticationMethodAuth, type AuthenticationMethodNone, type AuthenticationMethodPresentation, type AuthenticationUrlConfig, type AuthorizationResponse, type AuthorizeControllerAuthorizationChallengeEndpointData, type AuthorizeControllerAuthorizationChallengeEndpointResponses, type AuthorizeControllerAuthorizeData, type AuthorizeControllerAuthorizeResponses, type AuthorizeControllerParData, type AuthorizeControllerParResponse, type AuthorizeControllerParResponses, type AuthorizeControllerTokenData, type AuthorizeControllerTokenResponse, type AuthorizeControllerTokenResponses, type AuthorizeQueries, type CertControllerAddCertificateData, type CertControllerAddCertificateResponse, type CertControllerAddCertificateResponses, type CertControllerDeleteCertificateData, type CertControllerDeleteCertificateResponses, type CertControllerExportConfigData, type CertControllerExportConfigResponse, type CertControllerExportConfigResponses, type CertControllerGetCertificateData, type CertControllerGetCertificateResponse, type CertControllerGetCertificateResponses, type CertControllerGetCertificatesData, type CertControllerGetCertificatesResponse, type CertControllerGetCertificatesResponses, type CertControllerUpdateCertificateData, type CertControllerUpdateCertificateResponses, type CertEntity, type CertImportDto, type CertResponseDto, type CertUpdateDto, type CertUsageEntity, type Claim, type ClaimsQuery, type ClientControllerCreateClientData, type ClientControllerCreateClientResponse, type ClientControllerCreateClientResponses, type ClientControllerDeleteClientData, type ClientControllerDeleteClientResponses, type ClientControllerGetClientData, type ClientControllerGetClientResponse, type ClientControllerGetClientResponses, type ClientControllerGetClientSecretData, type ClientControllerGetClientSecretResponse, type ClientControllerGetClientSecretResponses, type ClientControllerGetClientsData, type ClientControllerGetClientsResponse, type ClientControllerGetClientsResponses, type ClientControllerUpdateClientData, type ClientControllerUpdateClientResponse, type ClientControllerUpdateClientResponses, type ClientCredentialsDto, type ClientEntity, type ClientOptions$1 as ClientOptions, type ClientSecretResponseDto, type CreateClientDto, type CreateStatusListDto, type CreateTenantDto, type CredentialConfig, type CredentialConfigControllerDeleteIssuanceConfigurationData, type CredentialConfigControllerDeleteIssuanceConfigurationResponses, type CredentialConfigControllerGetConfigByIdData, type CredentialConfigControllerGetConfigByIdResponse, type CredentialConfigControllerGetConfigByIdResponses, type CredentialConfigControllerGetConfigsData, type CredentialConfigControllerGetConfigsResponse, type CredentialConfigControllerGetConfigsResponses, type CredentialConfigControllerStoreCredentialConfigurationData, type CredentialConfigControllerStoreCredentialConfigurationResponse, type CredentialConfigControllerStoreCredentialConfigurationResponses, type CredentialConfigControllerUpdateCredentialConfigurationData, type CredentialConfigControllerUpdateCredentialConfigurationResponse, type CredentialConfigControllerUpdateCredentialConfigurationResponses, type CredentialConfigCreate, type CredentialConfigUpdate, type CredentialOfferControllerGetOfferData, type CredentialOfferControllerGetOfferResponse, type CredentialOfferControllerGetOfferResponses, type CredentialQuery, type CredentialSetQuery, type Dcql, type Display, type DisplayImage, type DisplayInfo, type DisplayLogo, type EcPublic, type EmbeddedDisclosurePolicy, type FileUploadDto, type HealthControllerCheckData, type HealthControllerCheckError, type HealthControllerCheckErrors, type HealthControllerCheckResponse, type HealthControllerCheckResponses, type IssuanceConfig, type IssuanceConfigControllerGetIssuanceConfigurationsData, type IssuanceConfigControllerGetIssuanceConfigurationsResponse, type IssuanceConfigControllerGetIssuanceConfigurationsResponses, type IssuanceConfigControllerStoreIssuanceConfigurationData, type IssuanceConfigControllerStoreIssuanceConfigurationResponse, type IssuanceConfigControllerStoreIssuanceConfigurationResponses, type IssuanceDto, type IssuerMetadataCredentialConfig, type JwksResponseDto, type Key, type KeyControllerAddKeyData, type KeyControllerAddKeyResponses, type KeyControllerDeleteKeyData, type KeyControllerDeleteKeyResponses, type KeyControllerGetKeyData, type KeyControllerGetKeyResponse, type KeyControllerGetKeyResponses, type KeyControllerGetKeysData, type KeyControllerGetKeysResponse, type KeyControllerGetKeysResponses, type KeyControllerUpdateKeyData, type KeyControllerUpdateKeyResponses, type KeyEntity, type KeyImportDto, type NoneTrustPolicy, type NotificationRequestDto, type OfferRequestDto, type OfferResponse, type Oid4VciControllerCredentialData, type Oid4VciControllerCredentialResponses, type Oid4VciControllerNonceData, type Oid4VciControllerNonceResponses, type Oid4VciControllerNotificationsData, type Oid4VciControllerNotificationsResponses, type Oid4VciMetadataControllerVctData, type Oid4VciMetadataControllerVctResponse, type Oid4VciMetadataControllerVctResponses, type Oid4VpControllerGetPostRequestWithSessionData, type Oid4VpControllerGetPostRequestWithSessionResponse, type Oid4VpControllerGetPostRequestWithSessionResponses, type Oid4VpControllerGetRequestWithSessionData, type Oid4VpControllerGetRequestWithSessionResponse, type Oid4VpControllerGetRequestWithSessionResponses, type Oid4VpControllerGetResponseData, type Oid4VpControllerGetResponseResponse, type Oid4VpControllerGetResponseResponses, type Options, type ParResponseDto, type PolicyCredential, type PresentationAttachment, type PresentationConfig, type PresentationConfigCreateDto, type PresentationConfigUpdateDto, type PresentationDuringIssuanceConfig, type PresentationManagementControllerConfigurationData, type PresentationManagementControllerConfigurationResponse, type PresentationManagementControllerConfigurationResponses, type PresentationManagementControllerDeleteConfigurationData, type PresentationManagementControllerDeleteConfigurationResponses, type PresentationManagementControllerGetConfigurationData, type PresentationManagementControllerGetConfigurationResponse, type PresentationManagementControllerGetConfigurationResponses, type PresentationManagementControllerStorePresentationConfigData, type PresentationManagementControllerStorePresentationConfigResponse, type PresentationManagementControllerStorePresentationConfigResponses, type PresentationManagementControllerUpdateConfigurationData, type PresentationManagementControllerUpdateConfigurationResponse, type PresentationManagementControllerUpdateConfigurationResponses, type PresentationRequest, type PrometheusControllerIndexData, type PrometheusControllerIndexResponses, type RegistrationCertificateRequest, type RoleDto, type RootOfTrustPolicy, type SchemaResponse, type Session, type SessionConfigControllerGetConfigData, type SessionConfigControllerGetConfigResponse, type SessionConfigControllerGetConfigResponses, type SessionConfigControllerResetConfigData, type SessionConfigControllerResetConfigResponses, type SessionConfigControllerUpdateConfigData, type SessionConfigControllerUpdateConfigResponse, type SessionConfigControllerUpdateConfigResponses, type SessionControllerDeleteSessionData, type SessionControllerDeleteSessionResponses, type SessionControllerGetAllSessionsData, type SessionControllerGetAllSessionsResponse, type SessionControllerGetAllSessionsResponses, type SessionControllerGetSessionData, type SessionControllerGetSessionResponse, type SessionControllerGetSessionResponses, type SessionControllerRevokeAllData, type SessionControllerRevokeAllResponses, type SessionStorageConfig, type StatusListAggregationDto, type StatusListConfig, type StatusListConfigControllerGetConfigData, type StatusListConfigControllerGetConfigResponse, type StatusListConfigControllerGetConfigResponses, type StatusListConfigControllerResetConfigData, type StatusListConfigControllerResetConfigResponse, type StatusListConfigControllerResetConfigResponses, type StatusListConfigControllerUpdateConfigData, type StatusListConfigControllerUpdateConfigResponse, type StatusListConfigControllerUpdateConfigResponses, type StatusListControllerGetListData, type StatusListControllerGetListResponse, type StatusListControllerGetListResponses, type StatusListControllerGetStatusListAggregationData, type StatusListControllerGetStatusListAggregationResponse, type StatusListControllerGetStatusListAggregationResponses, type StatusListImportDto, type StatusListManagementControllerCreateListData, type StatusListManagementControllerCreateListResponse, type StatusListManagementControllerCreateListResponses, type StatusListManagementControllerDeleteListData, type StatusListManagementControllerDeleteListResponse, type StatusListManagementControllerDeleteListResponses, type StatusListManagementControllerGetListData, type StatusListManagementControllerGetListResponse, type StatusListManagementControllerGetListResponses, type StatusListManagementControllerGetListsData, type StatusListManagementControllerGetListsResponse, type StatusListManagementControllerGetListsResponses, type StatusListManagementControllerUpdateListData, type StatusListManagementControllerUpdateListResponse, type StatusListManagementControllerUpdateListResponses, type StatusListResponseDto, type StatusUpdateDto, type StorageControllerDownloadData, type StorageControllerDownloadResponses, type StorageControllerUploadData, type StorageControllerUploadResponse, type StorageControllerUploadResponses, type TenantControllerDeleteTenantData, type TenantControllerDeleteTenantResponses, type TenantControllerGetTenantData, type TenantControllerGetTenantResponse, type TenantControllerGetTenantResponses, type TenantControllerGetTenantsData, type TenantControllerGetTenantsResponse, type TenantControllerGetTenantsResponses, type TenantControllerInitTenantData, type TenantControllerInitTenantResponses, type TenantEntity, type TokenResponse, type TrustList, type TrustListControllerCreateTrustListData, type TrustListControllerCreateTrustListResponse, type TrustListControllerCreateTrustListResponses, type TrustListControllerDeleteTrustListData, type TrustListControllerDeleteTrustListResponses, type TrustListControllerExportTrustListData, type TrustListControllerExportTrustListResponse, type TrustListControllerExportTrustListResponses, type TrustListControllerGetAllTrustListsData, type TrustListControllerGetAllTrustListsResponse, type TrustListControllerGetAllTrustListsResponses, type TrustListControllerGetTrustListData, type TrustListControllerGetTrustListResponse, type TrustListControllerGetTrustListResponses, type TrustListControllerGetTrustListVersionData, type TrustListControllerGetTrustListVersionResponse, type TrustListControllerGetTrustListVersionResponses, type TrustListControllerGetTrustListVersionsData, type TrustListControllerGetTrustListVersionsResponse, type TrustListControllerGetTrustListVersionsResponses, type TrustListControllerUpdateTrustListData, type TrustListControllerUpdateTrustListResponse, type TrustListControllerUpdateTrustListResponses, type TrustListCreateDto, type TrustListPublicControllerGetTrustListJwtData, type TrustListPublicControllerGetTrustListJwtResponse, type TrustListPublicControllerGetTrustListJwtResponses, type TrustListVersion, type TrustedAuthorityQuery, type UpdateClientDto, type UpdateKeyDto, type UpdateSessionConfigDto, type UpdateStatusListConfigDto, type UpdateStatusListDto, type Vct, type VerifierOfferControllerGetOfferData, type VerifierOfferControllerGetOfferResponse, type VerifierOfferControllerGetOfferResponses, type WebHookAuthConfigHeader, type WebHookAuthConfigNone, type WebhookConfig, type WellKnownControllerAuthzMetadata0Data, type WellKnownControllerAuthzMetadata0Responses, type WellKnownControllerAuthzMetadata1Data, type WellKnownControllerAuthzMetadata1Responses, type WellKnownControllerGetJwks0Data, type WellKnownControllerGetJwks0Response, type WellKnownControllerGetJwks0Responses, type WellKnownControllerGetJwks1Data, type WellKnownControllerGetJwks1Response, type WellKnownControllerGetJwks1Responses, type WellKnownControllerIssuerMetadata0Data, type WellKnownControllerIssuerMetadata0Response, type WellKnownControllerIssuerMetadata0Responses, type WellKnownControllerIssuerMetadata1Data, type WellKnownControllerIssuerMetadata1Response, type WellKnownControllerIssuerMetadata1Responses, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, healthControllerCheck, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };
|
|
394
|
+
export { AppControllerMainData, AppControllerMainResponses, AuthControllerGetGlobalJwksData, AuthControllerGetGlobalJwksResponses, AuthControllerGetOAuth2TokenData, AuthControllerGetOAuth2TokenErrors, AuthControllerGetOAuth2TokenResponses, AuthControllerGetOidcDiscoveryData, AuthControllerGetOidcDiscoveryResponses, AuthorizeControllerAuthorizationChallengeEndpointData, AuthorizeControllerAuthorizationChallengeEndpointResponses, AuthorizeControllerAuthorizeData, AuthorizeControllerAuthorizeResponses, AuthorizeControllerParData, AuthorizeControllerParResponses, AuthorizeControllerTokenData, AuthorizeControllerTokenResponses, CertControllerAddCertificateData, CertControllerAddCertificateResponses, CertControllerDeleteCertificateData, CertControllerDeleteCertificateResponses, CertControllerExportConfigData, CertControllerExportConfigResponses, CertControllerGetCertificateData, CertControllerGetCertificateResponses, CertControllerGetCertificatesData, CertControllerGetCertificatesResponses, CertControllerUpdateCertificateData, CertControllerUpdateCertificateResponses, ClientControllerCreateClientData, ClientControllerCreateClientResponses, ClientControllerDeleteClientData, ClientControllerDeleteClientResponses, ClientControllerGetClientData, ClientControllerGetClientResponses, ClientControllerGetClientSecretData, ClientControllerGetClientSecretResponses, ClientControllerGetClientsData, ClientControllerGetClientsResponses, ClientControllerUpdateClientData, ClientControllerUpdateClientResponses, CredentialConfigControllerDeleteIssuanceConfigurationData, CredentialConfigControllerDeleteIssuanceConfigurationResponses, CredentialConfigControllerGetConfigByIdData, CredentialConfigControllerGetConfigByIdResponses, CredentialConfigControllerGetConfigsData, CredentialConfigControllerGetConfigsResponses, CredentialConfigControllerStoreCredentialConfigurationData, CredentialConfigControllerStoreCredentialConfigurationResponses, CredentialConfigControllerUpdateCredentialConfigurationData, CredentialConfigControllerUpdateCredentialConfigurationResponses, CredentialOfferControllerGetOfferData, CredentialOfferControllerGetOfferResponses, HealthControllerCheckData, HealthControllerCheckErrors, HealthControllerCheckResponses, IssuanceConfigControllerGetIssuanceConfigurationsData, IssuanceConfigControllerGetIssuanceConfigurationsResponses, IssuanceConfigControllerStoreIssuanceConfigurationData, IssuanceConfigControllerStoreIssuanceConfigurationResponses, KeyControllerAddKeyData, KeyControllerAddKeyResponses, KeyControllerDeleteKeyData, KeyControllerDeleteKeyResponses, KeyControllerGetKeyData, KeyControllerGetKeyResponses, KeyControllerGetKeysData, KeyControllerGetKeysResponses, KeyControllerUpdateKeyData, KeyControllerUpdateKeyResponses, Oid4VciControllerCredentialData, Oid4VciControllerCredentialResponses, Oid4VciControllerNonceData, Oid4VciControllerNonceResponses, Oid4VciControllerNotificationsData, Oid4VciControllerNotificationsResponses, Oid4VciMetadataControllerVctData, Oid4VciMetadataControllerVctResponses, Oid4VpControllerGetPostRequestWithSessionData, Oid4VpControllerGetPostRequestWithSessionResponses, Oid4VpControllerGetRequestWithSessionData, Oid4VpControllerGetRequestWithSessionResponses, Oid4VpControllerGetResponseData, Oid4VpControllerGetResponseResponses, type Options, PresentationManagementControllerConfigurationData, PresentationManagementControllerConfigurationResponses, PresentationManagementControllerDeleteConfigurationData, PresentationManagementControllerDeleteConfigurationResponses, PresentationManagementControllerGetConfigurationData, PresentationManagementControllerGetConfigurationResponses, PresentationManagementControllerStorePresentationConfigData, PresentationManagementControllerStorePresentationConfigResponses, PresentationManagementControllerUpdateConfigurationData, PresentationManagementControllerUpdateConfigurationResponses, PrometheusControllerIndexData, PrometheusControllerIndexResponses, SessionConfigControllerGetConfigData, SessionConfigControllerGetConfigResponses, SessionConfigControllerResetConfigData, SessionConfigControllerResetConfigResponses, SessionConfigControllerUpdateConfigData, SessionConfigControllerUpdateConfigResponses, SessionControllerDeleteSessionData, SessionControllerDeleteSessionResponses, SessionControllerGetAllSessionsData, SessionControllerGetAllSessionsResponses, SessionControllerGetSessionData, SessionControllerGetSessionResponses, SessionControllerRevokeAllData, SessionControllerRevokeAllResponses, StatusListConfigControllerGetConfigData, StatusListConfigControllerGetConfigResponses, StatusListConfigControllerResetConfigData, StatusListConfigControllerResetConfigResponses, StatusListConfigControllerUpdateConfigData, StatusListConfigControllerUpdateConfigResponses, StatusListControllerGetListData, StatusListControllerGetListResponses, StatusListControllerGetStatusListAggregationData, StatusListControllerGetStatusListAggregationResponses, StatusListManagementControllerCreateListData, StatusListManagementControllerCreateListResponses, StatusListManagementControllerDeleteListData, StatusListManagementControllerDeleteListResponses, StatusListManagementControllerGetListData, StatusListManagementControllerGetListResponses, StatusListManagementControllerGetListsData, StatusListManagementControllerGetListsResponses, StatusListManagementControllerUpdateListData, StatusListManagementControllerUpdateListResponses, StorageControllerDownloadData, StorageControllerDownloadResponses, StorageControllerUploadData, StorageControllerUploadResponses, TenantControllerDeleteTenantData, TenantControllerDeleteTenantResponses, TenantControllerGetTenantData, TenantControllerGetTenantResponses, TenantControllerGetTenantsData, TenantControllerGetTenantsResponses, TenantControllerInitTenantData, TenantControllerInitTenantResponses, TenantControllerUpdateTenantData, TenantControllerUpdateTenantResponses, TrustListControllerCreateTrustListData, TrustListControllerCreateTrustListResponses, TrustListControllerDeleteTrustListData, TrustListControllerDeleteTrustListResponses, TrustListControllerExportTrustListData, TrustListControllerExportTrustListResponses, TrustListControllerGetAllTrustListsData, TrustListControllerGetAllTrustListsResponses, TrustListControllerGetTrustListData, TrustListControllerGetTrustListResponses, TrustListControllerGetTrustListVersionData, TrustListControllerGetTrustListVersionResponses, TrustListControllerGetTrustListVersionsData, TrustListControllerGetTrustListVersionsResponses, TrustListControllerUpdateTrustListData, TrustListControllerUpdateTrustListResponses, TrustListPublicControllerGetTrustListJwtData, TrustListPublicControllerGetTrustListJwtResponses, VerifierOfferControllerGetOfferData, VerifierOfferControllerGetOfferResponses, WellKnownControllerAuthzMetadata0Data, WellKnownControllerAuthzMetadata0Responses, WellKnownControllerAuthzMetadata1Data, WellKnownControllerAuthzMetadata1Responses, WellKnownControllerGetJwks0Data, WellKnownControllerGetJwks0Responses, WellKnownControllerGetJwks1Data, WellKnownControllerGetJwks1Responses, WellKnownControllerIssuerMetadata0Data, WellKnownControllerIssuerMetadata0Responses, WellKnownControllerIssuerMetadata1Data, WellKnownControllerIssuerMetadata1Responses, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, healthControllerCheck, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };
|