@eudiplo/sdk-core 1.14.0-main.1b9bbd4 → 1.14.0-main.551a58f

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