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