@eudiplo/sdk-core 3.1.1 → 4.0.0

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.
@@ -213,138 +213,6 @@ type CreateClientDto = {
213
213
  */
214
214
  roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
215
215
  };
216
- type KeyEntity = {
217
- /**
218
- * Unique identifier for the key.
219
- */
220
- id: string;
221
- /**
222
- * Description of the key.
223
- */
224
- description?: string;
225
- /**
226
- * Tenant ID for the key.
227
- */
228
- tenantId: string;
229
- /**
230
- * The tenant that owns this object.
231
- */
232
- tenant: TenantEntity;
233
- /**
234
- * The key material.
235
- * Encrypted at rest using AES-256-GCM.
236
- */
237
- key: {
238
- [key: string]: unknown;
239
- };
240
- /**
241
- * The usage type of the key.
242
- */
243
- usage: {
244
- [key: string]: unknown;
245
- };
246
- /**
247
- * The KMS provider used for this key.
248
- * References a configured KMS provider name.
249
- */
250
- kmsProvider: string;
251
- /**
252
- * Certificates associated with this key.
253
- */
254
- certificates: Array<CertEntity>;
255
- /**
256
- * The timestamp when the key was created.
257
- */
258
- createdAt: string;
259
- /**
260
- * The timestamp when the key was last updated.
261
- */
262
- updatedAt: string;
263
- };
264
- type CertEntity = {
265
- /**
266
- * The key ID this certificate is associated with
267
- */
268
- keyId: string;
269
- /**
270
- * Unique identifier for the key.
271
- */
272
- id: string;
273
- /**
274
- * Tenant ID for the key.
275
- */
276
- tenantId: string;
277
- /**
278
- * The tenant that owns this object.
279
- */
280
- tenant: TenantEntity;
281
- /**
282
- * Certificate chain in PEM format (leaf first, then intermediates/CA).
283
- */
284
- crt: Array<string>;
285
- usages: Array<CertUsageEntity>;
286
- /**
287
- * Description of the key.
288
- */
289
- description?: string;
290
- key: KeyEntity;
291
- /**
292
- * The timestamp when the certificate was created.
293
- */
294
- createdAt: string;
295
- /**
296
- * The timestamp when the certificate was last updated.
297
- */
298
- updatedAt: string;
299
- };
300
- type CertUsageEntity = {
301
- tenantId: string;
302
- certId: string;
303
- usage: "access" | "signing" | "trustList" | "statusList";
304
- cert: CertEntity;
305
- };
306
- type CertImportDto = {
307
- /**
308
- * The key ID this certificate is associated with
309
- */
310
- keyId: string;
311
- id?: string;
312
- /**
313
- * Usage types for the certificate.
314
- */
315
- certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
316
- /**
317
- * Certificate chain in PEM format (leaf first, then intermediates/CA).
318
- * If not provided, a self-signed certificate will be generated.
319
- */
320
- crt?: Array<string>;
321
- /**
322
- * Subject name (CN) for self-signed certificate generation.
323
- * If not provided, the tenant name will be used.
324
- */
325
- subjectName?: string;
326
- /**
327
- * Description of the key.
328
- */
329
- description?: string;
330
- };
331
- type CertResponseDto = {
332
- /**
333
- * The ID of the created self-signed certificate.
334
- */
335
- id: string;
336
- };
337
- type CertUpdateDto = {
338
- /**
339
- * Usage types for the certificate.
340
- */
341
- certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
342
- usages: Array<CertUsageEntity>;
343
- /**
344
- * Description of the key.
345
- */
346
- description?: string;
347
- };
348
216
  type StatusListImportDto = {
349
217
  /**
350
218
  * Unique identifier for the status list
@@ -355,9 +223,9 @@ type StatusListImportDto = {
355
223
  */
356
224
  credentialConfigurationId?: string;
357
225
  /**
358
- * Certificate ID to use for signing. Leave empty to use the tenant's default StatusList certificate.
226
+ * Key chain ID to use for signing. Leave empty to use the tenant's default StatusList key chain.
359
227
  */
360
- certId?: string;
228
+ keyChainId?: string;
361
229
  /**
362
230
  * Capacity of the status list. If not provided, uses tenant or global defaults.
363
231
  */
@@ -409,9 +277,9 @@ type StatusListResponseDto = {
409
277
  */
410
278
  credentialConfigurationId?: string;
411
279
  /**
412
- * Certificate ID used for signing. Null means using the tenant's default.
280
+ * Key chain ID used for signing. Null means using the tenant's default.
413
281
  */
414
- certId?: string;
282
+ keyChainId?: string;
415
283
  /**
416
284
  * Bits per status value
417
285
  */
@@ -447,9 +315,9 @@ type CreateStatusListDto = {
447
315
  */
448
316
  credentialConfigurationId?: string;
449
317
  /**
450
- * Certificate ID to use for signing. Leave empty to use the tenant's default StatusList certificate.
318
+ * Key chain ID to use for signing. Leave empty to use the tenant's default StatusList key chain.
451
319
  */
452
- certId?: string;
320
+ keyChainId?: string;
453
321
  /**
454
322
  * Bits per status value. More bits allow more status states. Defaults to tenant configuration.
455
323
  */
@@ -465,9 +333,9 @@ type UpdateStatusListDto = {
465
333
  */
466
334
  credentialConfigurationId?: string;
467
335
  /**
468
- * Certificate ID to use for signing. Set to null to use the tenant's default StatusList certificate.
336
+ * Key chain ID to use for signing. Set to null to use the tenant's default StatusList key chain.
469
337
  */
470
- certId?: string;
338
+ keyChainId?: string;
471
339
  };
472
340
  type AuthorizeQueries = {
473
341
  issuer_state?: string;
@@ -483,44 +351,6 @@ type AuthorizeQueries = {
483
351
  auth_session?: string;
484
352
  state?: string;
485
353
  };
486
- type WebHookAuthConfigNone = {
487
- /**
488
- * The type of authentication used for the webhook.
489
- */
490
- type: "none";
491
- };
492
- type ApiKeyConfig = {
493
- /**
494
- * The name of the header where the API key will be sent.
495
- */
496
- headerName: string;
497
- /**
498
- * The value of the API key to be sent in the header.
499
- */
500
- value: string;
501
- };
502
- type WebHookAuthConfigHeader = {
503
- /**
504
- * The type of authentication used for the webhook.
505
- */
506
- type: "apiKey";
507
- /**
508
- * Configuration for API key authentication.
509
- * This is required if the type is 'apiKey'.
510
- */
511
- config: ApiKeyConfig;
512
- };
513
- type WebhookConfig = {
514
- /**
515
- * Optional authentication configuration for the webhook.
516
- * If not provided, no authentication will be used.
517
- */
518
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
519
- /**
520
- * The URL to which the webhook will send notifications.
521
- */
522
- url: string;
523
- };
524
354
  type OfferRequestDto = {
525
355
  /**
526
356
  * The type of response expected for the offer request.
@@ -535,10 +365,16 @@ type OfferRequestDto = {
535
365
  claims: {
536
366
  [key: string]: unknown;
537
367
  };
368
+ } | {
369
+ type: "attributeProvider";
370
+ attributeProviderId: string;
538
371
  } | {
539
372
  type: "webhook";
540
373
  webhook: {
541
- [key: string]: unknown;
374
+ url: string;
375
+ auth?: {
376
+ [key: string]: unknown;
377
+ };
542
378
  };
543
379
  };
544
380
  };
@@ -563,9 +399,47 @@ type OfferRequestDto = {
563
399
  */
564
400
  authorization_server?: string;
565
401
  /**
566
- * Webhook to notify about the status of the issuance process.
402
+ * ID of the webhook endpoint to notify about the status of the issuance process.
567
403
  */
568
- notifyWebhook?: WebhookConfig;
404
+ webhookEndpointId?: string;
405
+ };
406
+ type WebHookAuthConfigNone = {
407
+ /**
408
+ * The type of authentication used for the webhook.
409
+ */
410
+ type: "none";
411
+ };
412
+ type ApiKeyConfig = {
413
+ /**
414
+ * The name of the header where the API key will be sent.
415
+ */
416
+ headerName: string;
417
+ /**
418
+ * The value of the API key to be sent in the header.
419
+ */
420
+ value: string;
421
+ };
422
+ type WebHookAuthConfigHeader = {
423
+ /**
424
+ * The type of authentication used for the webhook.
425
+ */
426
+ type: "apiKey";
427
+ /**
428
+ * Configuration for API key authentication.
429
+ * This is required if the type is 'apiKey'.
430
+ */
431
+ config: ApiKeyConfig;
432
+ };
433
+ type WebhookConfig = {
434
+ /**
435
+ * Optional authentication configuration for the webhook.
436
+ * If not provided, no authentication will be used.
437
+ */
438
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
439
+ /**
440
+ * The URL to which the webhook will send notifications.
441
+ */
442
+ url: string;
569
443
  };
570
444
  type TransactionData = {
571
445
  type: string;
@@ -631,9 +505,9 @@ type Session = {
631
505
  */
632
506
  credentialPayload?: OfferRequestDto;
633
507
  /**
634
- * Webhook configuration to send the result of the notification response.
508
+ * ID of the webhook endpoint to notify about issuance status.
635
509
  */
636
- notifyWebhook?: WebhookConfig;
510
+ webhookEndpointId?: string;
637
511
  /**
638
512
  * Notifications associated with the session.
639
513
  */
@@ -688,6 +562,38 @@ type Session = {
688
562
  */
689
563
  externalSubject?: string;
690
564
  };
565
+ type SessionLogEntryResponseDto = {
566
+ /**
567
+ * Log entry ID
568
+ */
569
+ id: string;
570
+ /**
571
+ * Session ID
572
+ */
573
+ sessionId: string;
574
+ /**
575
+ * Timestamp of the log entry
576
+ */
577
+ timestamp: string;
578
+ /**
579
+ * Log level
580
+ */
581
+ level: "info" | "warn" | "error";
582
+ /**
583
+ * Flow stage
584
+ */
585
+ stage?: string;
586
+ /**
587
+ * Log message
588
+ */
589
+ message: string;
590
+ /**
591
+ * Additional structured detail
592
+ */
593
+ detail?: {
594
+ [key: string]: unknown;
595
+ };
596
+ };
691
597
  type StatusUpdateDto = {
692
598
  /**
693
599
  * The session ID of the user
@@ -798,6 +704,10 @@ type DisplayInfo = {
798
704
  logo?: DisplayLogo;
799
705
  };
800
706
  type IssuanceConfig = {
707
+ /**
708
+ * Key ID for signing access tokens. If unset, the default signing key is used.
709
+ */
710
+ signingKeyId?: string;
801
711
  /**
802
712
  * Configuration for Chained Authorization Server mode.
803
713
  * When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
@@ -833,6 +743,13 @@ type IssuanceConfig = {
833
743
  * If empty and walletAttestationRequired is true, all wallet providers are rejected.
834
744
  */
835
745
  walletProviderTrustLists?: Array<string>;
746
+ /**
747
+ * The URL of the preferred authorization server for wallet-initiated flows.
748
+ * When set, this AS is placed first in the `authorization_servers` array
749
+ * of the credential issuer metadata, signaling wallets to use it by default.
750
+ * Must match one of the configured auth servers, the chained AS URL, or "built-in".
751
+ */
752
+ preferredAuthServer?: string;
836
753
  display: Array<DisplayInfo>;
837
754
  /**
838
755
  * The timestamp when the VP request was created.
@@ -844,6 +761,10 @@ type IssuanceConfig = {
844
761
  updatedAt: string;
845
762
  };
846
763
  type IssuanceDto = {
764
+ /**
765
+ * Key ID for signing access tokens. If unset, the default signing key is used.
766
+ */
767
+ signingKeyId?: string;
847
768
  /**
848
769
  * Configuration for Chained Authorization Server mode.
849
770
  * When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
@@ -875,6 +796,13 @@ type IssuanceDto = {
875
796
  * If empty and walletAttestationRequired is true, all wallet providers are rejected.
876
797
  */
877
798
  walletProviderTrustLists?: Array<string>;
799
+ /**
800
+ * The URL of the preferred authorization server for wallet-initiated flows.
801
+ * When set, this AS is placed first in the `authorization_servers` array
802
+ * of the credential issuer metadata, signaling wallets to use it by default.
803
+ * Must match one of the configured auth servers, the chained AS URL, or "built-in".
804
+ */
805
+ preferredAuthServer?: string;
878
806
  display: Array<DisplayInfo>;
879
807
  };
880
808
  type ClaimsQuery = {
@@ -1009,76 +937,179 @@ type IssuerMetadataCredentialConfig = {
1009
937
  [key: string]: unknown;
1010
938
  };
1011
939
  };
1012
- type SchemaResponse = {
1013
- $schema: string;
1014
- type: string;
1015
- properties: {
1016
- [key: string]: unknown;
1017
- };
1018
- required?: Array<string>;
1019
- title?: string;
940
+ type AttributeProviderEntity = {
941
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
942
+ id: string;
943
+ tenantId: string;
944
+ tenant: TenantEntity;
945
+ name: string;
1020
946
  description?: string;
947
+ url: string;
1021
948
  };
1022
- type CredentialConfig = {
949
+ type WebhookEndpointEntity = {
950
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
951
+ id: string;
952
+ tenantId: string;
953
+ tenant: TenantEntity;
954
+ name: string;
955
+ description?: string;
956
+ url: string;
957
+ };
958
+ type KeyChainEntity = {
1023
959
  /**
1024
- * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
960
+ * Unique identifier for the key chain.
961
+ * This is the ID referenced by other entities (e.g., issuance config's signingKeyId).
1025
962
  */
1026
- vct?: string | Vct;
963
+ id: string;
1027
964
  /**
1028
- * List of IAE actions to execute before credential issuance
965
+ * Tenant ID for the key chain.
1029
966
  */
1030
- iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
967
+ tenantId: string;
1031
968
  /**
1032
- * Embedded disclosure policy (discriminated union by `policy`).
1033
- * The discriminator makes class-transformer instantiate the right subclass,
1034
- * and then class-validator runs that subclass’s rules.
969
+ * The tenant that owns this key chain.
970
+ */
971
+ tenant: TenantEntity;
972
+ /**
973
+ * Human-readable description of the key chain.
1035
974
  */
1036
- embeddedDisclosurePolicy?: EmbeddedDisclosurePolicy;
1037
- id: string;
1038
975
  description?: string;
1039
976
  /**
1040
- * The tenant that owns this object.
977
+ * The purpose/role of this key chain in the system.
1041
978
  */
1042
- tenant: TenantEntity;
1043
- config: IssuerMetadataCredentialConfig;
1044
- claims?: {
1045
- [key: string]: unknown;
1046
- };
979
+ usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
1047
980
  /**
1048
- * Webhook to receive claims for the issuance process.
981
+ * The usage type of the keys (sign or encrypt).
1049
982
  */
1050
- claimsWebhook?: WebhookConfig;
983
+ usage: "sign" | "encrypt";
1051
984
  /**
1052
- * Webhook to receive claims for the issuance process.
985
+ * The KMS provider used for this key chain.
986
+ * References a configured KMS provider name.
1053
987
  */
1054
- notificationWebhook?: WebhookConfig;
1055
- disclosureFrame?: {
988
+ kmsProvider: string;
989
+ /**
990
+ * External key identifier for cloud KMS providers.
991
+ * This field stores the provider-specific key reference for the active signing key.
992
+ */
993
+ externalKeyId?: string;
994
+ rootKey?: {
1056
995
  [key: string]: unknown;
1057
996
  };
1058
- keyBinding?: boolean;
1059
997
  /**
1060
- * Reference to the certificate used for signing.
1061
- * Note: No DB-level FK constraint because CertEntity has a composite PK
1062
- * (id + tenantId) and SET NULL behavior cannot work when tenantId is
1063
- * part of this entity's own PK.
998
+ * Root CA certificate in PEM format.
999
+ * Self-signed certificate for the root CA key.
1064
1000
  */
1065
- certId?: string;
1066
- cert?: CertEntity;
1067
- statusManagement?: boolean;
1068
- lifeTime?: number;
1069
- schema?: SchemaResponse;
1070
- };
1071
- type CredentialConfigCreate = {
1001
+ rootCertificate?: string;
1002
+ activeKey: {
1003
+ [key: string]: unknown;
1004
+ };
1072
1005
  /**
1073
- * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1006
+ * Certificate for the active signing key in PEM format.
1007
+ * Either CA-signed (if rootKey exists) or self-signed.
1074
1008
  */
1075
- vct?: string | Vct;
1009
+ activeCertificate: string;
1010
+ rotationEnabled: boolean;
1076
1011
  /**
1077
- * List of IAE actions to execute before credential issuance
1012
+ * Rotation interval in days. Key material will be rotated after this many days.
1078
1013
  */
1079
- iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1014
+ rotationIntervalDays?: number;
1080
1015
  /**
1081
- * Embedded disclosure policy (discriminated union by `policy`).
1016
+ * Certificate validity in days when generating new certificates.
1017
+ */
1018
+ certValidityDays?: number;
1019
+ /**
1020
+ * Timestamp of when the key was last rotated.
1021
+ */
1022
+ lastRotatedAt?: string;
1023
+ previousKey?: {
1024
+ [key: string]: unknown;
1025
+ };
1026
+ /**
1027
+ * Certificate for the previous signing key in PEM format.
1028
+ */
1029
+ previousCertificate?: string;
1030
+ /**
1031
+ * Expiry date for the previous key.
1032
+ * After this date, the previous key should be deleted.
1033
+ */
1034
+ previousKeyExpiry?: string;
1035
+ createdAt: string;
1036
+ /**
1037
+ * The timestamp when the key chain was last updated.
1038
+ */
1039
+ updatedAt: string;
1040
+ };
1041
+ type SchemaResponse = {
1042
+ $schema: string;
1043
+ type: string;
1044
+ properties: {
1045
+ [key: string]: unknown;
1046
+ };
1047
+ required?: Array<string>;
1048
+ title?: string;
1049
+ description?: string;
1050
+ };
1051
+ type CredentialConfig = {
1052
+ /**
1053
+ * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1054
+ */
1055
+ vct?: string | Vct;
1056
+ /**
1057
+ * List of IAE actions to execute before credential issuance
1058
+ */
1059
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1060
+ /**
1061
+ * Embedded disclosure policy (discriminated union by `policy`).
1062
+ * The discriminator makes class-transformer instantiate the right subclass,
1063
+ * and then class-validator runs that subclass’s rules.
1064
+ */
1065
+ embeddedDisclosurePolicy?: EmbeddedDisclosurePolicy;
1066
+ id: string;
1067
+ description?: string;
1068
+ /**
1069
+ * The tenant that owns this object.
1070
+ */
1071
+ tenant: TenantEntity;
1072
+ config: IssuerMetadataCredentialConfig;
1073
+ claims?: {
1074
+ [key: string]: unknown;
1075
+ };
1076
+ /**
1077
+ * Reference to the attribute provider used for fetching claims.
1078
+ * Optional: if set, claims will be fetched from this provider during issuance.
1079
+ */
1080
+ attributeProviderId?: string;
1081
+ attributeProvider?: AttributeProviderEntity;
1082
+ /**
1083
+ * Reference to the webhook endpoint used for notifications.
1084
+ * Optional: if set, notifications will be sent to this endpoint.
1085
+ */
1086
+ webhookEndpointId?: string;
1087
+ webhookEndpoint?: WebhookEndpointEntity;
1088
+ disclosureFrame?: {
1089
+ [key: string]: unknown;
1090
+ };
1091
+ keyBinding?: boolean;
1092
+ /**
1093
+ * Reference to the key chain used for signing.
1094
+ * Optional: if not specified, the default attestation key chain will be used.
1095
+ */
1096
+ keyChainId?: string;
1097
+ keyChain?: KeyChainEntity;
1098
+ statusManagement?: boolean;
1099
+ lifeTime?: number;
1100
+ schema?: SchemaResponse;
1101
+ };
1102
+ type CredentialConfigCreate = {
1103
+ /**
1104
+ * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1105
+ */
1106
+ vct?: string | Vct;
1107
+ /**
1108
+ * List of IAE actions to execute before credential issuance
1109
+ */
1110
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1111
+ /**
1112
+ * Embedded disclosure policy (discriminated union by `policy`).
1082
1113
  * The discriminator makes class-transformer instantiate the right subclass,
1083
1114
  * and then class-validator runs that subclass’s rules.
1084
1115
  */
@@ -1090,24 +1121,24 @@ type CredentialConfigCreate = {
1090
1121
  [key: string]: unknown;
1091
1122
  };
1092
1123
  /**
1093
- * Webhook to receive claims for the issuance process.
1124
+ * Reference to the attribute provider used for fetching claims.
1125
+ * Optional: if set, claims will be fetched from this provider during issuance.
1094
1126
  */
1095
- claimsWebhook?: WebhookConfig;
1127
+ attributeProviderId?: string;
1096
1128
  /**
1097
- * Webhook to receive claims for the issuance process.
1129
+ * Reference to the webhook endpoint used for notifications.
1130
+ * Optional: if set, notifications will be sent to this endpoint.
1098
1131
  */
1099
- notificationWebhook?: WebhookConfig;
1132
+ webhookEndpointId?: string;
1100
1133
  disclosureFrame?: {
1101
1134
  [key: string]: unknown;
1102
1135
  };
1103
1136
  keyBinding?: boolean;
1104
1137
  /**
1105
- * Reference to the certificate used for signing.
1106
- * Note: No DB-level FK constraint because CertEntity has a composite PK
1107
- * (id + tenantId) and SET NULL behavior cannot work when tenantId is
1108
- * part of this entity's own PK.
1138
+ * Reference to the key chain used for signing.
1139
+ * Optional: if not specified, the default attestation key chain will be used.
1109
1140
  */
1110
- certId?: string;
1141
+ keyChainId?: string;
1111
1142
  statusManagement?: boolean;
1112
1143
  lifeTime?: number;
1113
1144
  schema?: SchemaResponse;
@@ -1134,28 +1165,56 @@ type CredentialConfigUpdate = {
1134
1165
  [key: string]: unknown;
1135
1166
  };
1136
1167
  /**
1137
- * Webhook to receive claims for the issuance process.
1168
+ * Reference to the attribute provider used for fetching claims.
1169
+ * Optional: if set, claims will be fetched from this provider during issuance.
1138
1170
  */
1139
- claimsWebhook?: WebhookConfig;
1171
+ attributeProviderId?: string;
1140
1172
  /**
1141
- * Webhook to receive claims for the issuance process.
1173
+ * Reference to the webhook endpoint used for notifications.
1174
+ * Optional: if set, notifications will be sent to this endpoint.
1142
1175
  */
1143
- notificationWebhook?: WebhookConfig;
1176
+ webhookEndpointId?: string;
1144
1177
  disclosureFrame?: {
1145
1178
  [key: string]: unknown;
1146
1179
  };
1147
1180
  keyBinding?: boolean;
1148
1181
  /**
1149
- * Reference to the certificate used for signing.
1150
- * Note: No DB-level FK constraint because CertEntity has a composite PK
1151
- * (id + tenantId) and SET NULL behavior cannot work when tenantId is
1152
- * part of this entity's own PK.
1182
+ * Reference to the key chain used for signing.
1183
+ * Optional: if not specified, the default attestation key chain will be used.
1153
1184
  */
1154
- certId?: string;
1185
+ keyChainId?: string;
1155
1186
  statusManagement?: boolean;
1156
1187
  lifeTime?: number;
1157
1188
  schema?: SchemaResponse;
1158
1189
  };
1190
+ type CreateAttributeProviderDto = {
1191
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1192
+ id: string;
1193
+ name: string;
1194
+ description?: string;
1195
+ url: string;
1196
+ };
1197
+ type UpdateAttributeProviderDto = {
1198
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1199
+ id?: string;
1200
+ name?: string;
1201
+ description?: string;
1202
+ url?: string;
1203
+ };
1204
+ type CreateWebhookEndpointDto = {
1205
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1206
+ id: string;
1207
+ name: string;
1208
+ description?: string;
1209
+ url: string;
1210
+ };
1211
+ type UpdateWebhookEndpointDto = {
1212
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1213
+ id?: string;
1214
+ name?: string;
1215
+ description?: string;
1216
+ url?: string;
1217
+ };
1159
1218
  type Dcql = {
1160
1219
  credentials: Array<CredentialQuery>;
1161
1220
  credential_sets?: Array<CredentialSetQuery>;
@@ -1229,7 +1288,7 @@ type PresentationConfig = {
1229
1288
  * that reference only part of a composite primary key. The relationship is handled
1230
1289
  * at the application level in the service layer.
1231
1290
  */
1232
- accessCertId?: string;
1291
+ accessKeyChainId?: string;
1233
1292
  };
1234
1293
  type PresentationConfigCreateDto = {
1235
1294
  /**
@@ -1275,7 +1334,7 @@ type PresentationConfigCreateDto = {
1275
1334
  * that reference only part of a composite primary key. The relationship is handled
1276
1335
  * at the application level in the service layer.
1277
1336
  */
1278
- accessCertId?: string;
1337
+ accessKeyChainId?: string;
1279
1338
  };
1280
1339
  type PresentationConfigUpdateDto = {
1281
1340
  /**
@@ -1321,7 +1380,7 @@ type PresentationConfigUpdateDto = {
1321
1380
  * that reference only part of a composite primary key. The relationship is handled
1322
1381
  * at the application level in the service layer.
1323
1382
  */
1324
- accessCertId?: string;
1383
+ accessKeyChainId?: string;
1325
1384
  };
1326
1385
  type DeferredCredentialRequestDto = {
1327
1386
  /**
@@ -1705,13 +1764,37 @@ type CreateAccessCertificateDto = {
1705
1764
  */
1706
1765
  keyId: string;
1707
1766
  };
1767
+ type TrustListEntityInfo = {
1768
+ name: string;
1769
+ lang?: string;
1770
+ uri?: string;
1771
+ country?: string;
1772
+ locality?: string;
1773
+ postalCode?: string;
1774
+ streetAddress?: string;
1775
+ contactUri?: string;
1776
+ };
1777
+ type InternalTrustListEntity = {
1778
+ type: "internal";
1779
+ issuerKeyChainId: string;
1780
+ revocationKeyChainId: string;
1781
+ info: TrustListEntityInfo;
1782
+ };
1783
+ type ExternalTrustListEntity = {
1784
+ type: "external";
1785
+ issuerCertPem: string;
1786
+ revocationCertPem: string;
1787
+ info: TrustListEntityInfo;
1788
+ };
1708
1789
  type TrustListCreateDto = {
1790
+ entities: Array<({
1791
+ type: "internal";
1792
+ } & InternalTrustListEntity) | ({
1793
+ type: "external";
1794
+ } & ExternalTrustListEntity)>;
1709
1795
  id?: string;
1710
- certId?: string;
1711
- entities: Array<{
1712
- [key: string]: unknown;
1713
- }>;
1714
1796
  description?: string;
1797
+ keyChainId?: string;
1715
1798
  /**
1716
1799
  * The full trust list JSON (generated LoTE structure)
1717
1800
  */
@@ -1733,8 +1816,8 @@ type TrustList = {
1733
1816
  * The tenant that owns this object.
1734
1817
  */
1735
1818
  tenant: TenantEntity;
1736
- certId: string;
1737
- cert: CertEntity;
1819
+ keyChainId: string;
1820
+ keyChain: KeyChainEntity;
1738
1821
  /**
1739
1822
  * The full trust list JSON (generated LoTE structure)
1740
1823
  */
@@ -1786,29 +1869,6 @@ type TrustListVersion = {
1786
1869
  jwt: string;
1787
1870
  createdAt: string;
1788
1871
  };
1789
- type DbKmsConfigDto = {
1790
- [key: string]: unknown;
1791
- };
1792
- type VaultKmsConfigDto = {
1793
- /**
1794
- * URL of the HashiCorp Vault instance. Supports ${ENV_VAR} placeholders.
1795
- */
1796
- vaultUrl: string;
1797
- /**
1798
- * Authentication token for HashiCorp Vault. Supports ${ENV_VAR} placeholders.
1799
- */
1800
- vaultToken: string;
1801
- };
1802
- type KmsConfigDto = {
1803
- /**
1804
- * Name of the default KMS provider. Defaults to "db" if not set.
1805
- */
1806
- defaultProvider?: string;
1807
- providers: {
1808
- db?: DbKmsConfigDto;
1809
- vault?: VaultKmsConfigDto;
1810
- };
1811
- };
1812
1872
  type KmsProviderCapabilitiesDto = {
1813
1873
  /**
1814
1874
  * Whether the provider supports importing existing keys.
@@ -1825,9 +1885,17 @@ type KmsProviderCapabilitiesDto = {
1825
1885
  };
1826
1886
  type KmsProviderInfoDto = {
1827
1887
  /**
1828
- * Unique provider name (matches the key in kms.json).
1888
+ * Unique provider ID (matches the id in kms.json).
1829
1889
  */
1830
1890
  name: string;
1891
+ /**
1892
+ * Type of the KMS provider (db, vault, aws-kms).
1893
+ */
1894
+ type: string;
1895
+ /**
1896
+ * Human-readable description of this provider instance.
1897
+ */
1898
+ description?: string;
1831
1899
  /**
1832
1900
  * Capabilities of this provider.
1833
1901
  */
@@ -1843,202 +1911,362 @@ type KmsProvidersResponseDto = {
1843
1911
  */
1844
1912
  default: string;
1845
1913
  };
1846
- type KeyGenerateDto = {
1914
+ type CertificateInfoDto = {
1847
1915
  /**
1848
- * KMS provider to use (defaults to the configured default provider).
1916
+ * Certificate in PEM format.
1849
1917
  */
1850
- kmsProvider?: string;
1918
+ pem: string;
1851
1919
  /**
1852
- * Optional human-readable description for the key.
1920
+ * Certificate subject (CN).
1853
1921
  */
1854
- description?: string;
1922
+ subject?: string;
1923
+ /**
1924
+ * Certificate issuer (CN).
1925
+ */
1926
+ issuer?: string;
1927
+ /**
1928
+ * Certificate not before date.
1929
+ */
1930
+ notBefore?: string;
1931
+ /**
1932
+ * Certificate not after date.
1933
+ */
1934
+ notAfter?: string;
1935
+ /**
1936
+ * Serial number.
1937
+ */
1938
+ serialNumber?: string;
1855
1939
  };
1856
- type Key = {
1940
+ type PublicKeyInfoDto = {
1941
+ /**
1942
+ * Key type (e.g., EC).
1943
+ */
1857
1944
  kty: string;
1858
- x: string;
1859
- y: string;
1860
- crv: string;
1861
- d: string;
1862
- alg: string;
1945
+ /**
1946
+ * Key algorithm (e.g., ES256).
1947
+ */
1948
+ alg?: string;
1949
+ /**
1950
+ * Key ID.
1951
+ */
1952
+ kid?: string;
1953
+ /**
1954
+ * Curve (for EC keys).
1955
+ */
1956
+ crv?: string;
1863
1957
  };
1864
- type KeyImportDto = {
1958
+ type RotationPolicyResponseDto = {
1865
1959
  /**
1866
- * KMS provider name to use for this key. Defaults to the configured default.
1960
+ * Whether automatic key rotation is enabled.
1867
1961
  */
1868
- kmsProvider?: string;
1962
+ enabled: boolean;
1869
1963
  /**
1870
- * The private key in JWK format.
1964
+ * Rotation interval in days.
1871
1965
  */
1872
- key: Key;
1966
+ intervalDays?: number;
1873
1967
  /**
1874
- * Unique identifier for the key.
1968
+ * Certificate validity in days.
1875
1969
  */
1876
- id: string;
1970
+ certValidityDays?: number;
1877
1971
  /**
1878
- * Description of the key.
1972
+ * Next scheduled rotation date.
1879
1973
  */
1880
- description?: string;
1974
+ nextRotationAt?: string;
1881
1975
  };
1882
- type UpdateKeyDto = {
1976
+ type KeyChainResponseDto = {
1883
1977
  /**
1884
- * KMS provider name to use for this key. Defaults to the configured default.
1978
+ * Unique identifier for the key chain.
1885
1979
  */
1886
- kmsProvider?: string;
1980
+ id: string;
1887
1981
  /**
1888
- * Unique identifier for the key.
1982
+ * Usage type of the key chain.
1889
1983
  */
1890
- id: string;
1984
+ usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
1985
+ /**
1986
+ * Type of key chain (standalone or internalChain).
1987
+ */
1988
+ type: "standalone" | "internalChain";
1891
1989
  /**
1892
- * Description of the key.
1990
+ * Human-readable description.
1893
1991
  */
1894
1992
  description?: string;
1895
- };
1896
- type PresentationRequest = {
1897
1993
  /**
1898
- * The type of response expected from the presentation request.
1994
+ * KMS provider used for this key chain.
1899
1995
  */
1900
- response_type: "uri" | "dc-api";
1996
+ kmsProvider: string;
1901
1997
  /**
1902
- * Identifier of the presentation configuration
1998
+ * Root CA certificate (only for internalChain type).
1903
1999
  */
1904
- requestId: string;
2000
+ rootCertificate?: CertificateInfoDto;
1905
2001
  /**
1906
- * Webhook configuration to receive the response.
1907
- * If not provided, the configured webhook from the configuration will be used.
2002
+ * Active signing key's public key info.
1908
2003
  */
1909
- webhook?: WebhookConfig;
2004
+ activePublicKey: PublicKeyInfoDto;
1910
2005
  /**
1911
- * Optional redirect URI to which the user-agent should be redirected after the presentation is completed.
1912
- * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
2006
+ * Active signing key's certificate. Not present for encryption keys.
1913
2007
  */
1914
- redirectUri?: string;
2008
+ activeCertificate?: CertificateInfoDto;
1915
2009
  /**
1916
- * Optional transaction data to include in the OID4VP request.
1917
- * If provided, this will override the transaction_data from the presentation configuration.
2010
+ * Previous signing key's public key info (if in grace period).
1918
2011
  */
1919
- transaction_data?: Array<TransactionData>;
1920
- };
1921
- type FileUploadDto = {
1922
- file: Blob | File;
1923
- };
1924
- type AppControllerMainData = {
1925
- body?: never;
1926
- path?: never;
1927
- query?: never;
1928
- url: "/";
1929
- };
1930
- type AppControllerMainResponses = {
1931
- 200: unknown;
1932
- };
1933
- type HealthControllerCheckData = {
1934
- body?: never;
1935
- path?: never;
1936
- query?: never;
1937
- url: "/health";
1938
- };
1939
- type HealthControllerCheckErrors = {
2012
+ previousPublicKey?: PublicKeyInfoDto;
1940
2013
  /**
1941
- * The Health Check is not successful
2014
+ * Previous signing key's certificate (if in grace period).
1942
2015
  */
1943
- 503: {
1944
- status?: string;
1945
- info?: {
1946
- [key: string]: {
1947
- status: string;
1948
- [key: string]: unknown | string;
1949
- };
1950
- };
1951
- error?: {
1952
- [key: string]: {
1953
- status: string;
1954
- [key: string]: unknown | string;
1955
- };
1956
- };
1957
- details?: {
1958
- [key: string]: {
1959
- status: string;
1960
- [key: string]: unknown | string;
1961
- };
1962
- };
1963
- };
1964
- };
1965
- type HealthControllerCheckError = HealthControllerCheckErrors[keyof HealthControllerCheckErrors];
1966
- type HealthControllerCheckResponses = {
2016
+ previousCertificate?: CertificateInfoDto;
1967
2017
  /**
1968
- * The Health Check is successful
2018
+ * Previous key expiry date.
1969
2019
  */
1970
- 200: {
1971
- status?: string;
1972
- info?: {
1973
- [key: string]: {
1974
- status: string;
1975
- [key: string]: unknown | string;
1976
- };
1977
- };
1978
- error?: {
1979
- [key: string]: {
1980
- status: string;
1981
- [key: string]: unknown | string;
1982
- };
1983
- };
1984
- details?: {
1985
- [key: string]: {
1986
- status: string;
1987
- [key: string]: unknown | string;
1988
- };
1989
- };
1990
- };
1991
- };
1992
- type HealthControllerCheckResponse = HealthControllerCheckResponses[keyof HealthControllerCheckResponses];
1993
- type AuthControllerGetOAuth2TokenData = {
1994
- body: ClientCredentialsDto;
1995
- path?: never;
1996
- query?: never;
1997
- url: "/oauth2/token";
1998
- };
1999
- type AuthControllerGetOAuth2TokenErrors = {
2020
+ previousKeyExpiry?: string;
2000
2021
  /**
2001
- * Invalid client credentials
2022
+ * Rotation policy configuration.
2002
2023
  */
2003
- 401: unknown;
2004
- };
2005
- type AuthControllerGetOAuth2TokenResponses = {
2024
+ rotationPolicy: RotationPolicyResponseDto;
2006
2025
  /**
2007
- * OAuth2 token response
2026
+ * Timestamp when the key chain was created.
2008
2027
  */
2009
- 200: TokenResponse;
2010
- 201: TokenResponse;
2011
- };
2012
- type AuthControllerGetOAuth2TokenResponse = AuthControllerGetOAuth2TokenResponses[keyof AuthControllerGetOAuth2TokenResponses];
2013
- type AuthControllerGetOidcDiscoveryData = {
2014
- body?: never;
2015
- path?: never;
2016
- query?: never;
2017
- url: "/.well-known/oauth-authorization-server";
2028
+ createdAt: string;
2029
+ /**
2030
+ * Timestamp when the key chain was last updated.
2031
+ */
2032
+ updatedAt: string;
2018
2033
  };
2019
- type AuthControllerGetOidcDiscoveryResponses = {
2034
+ type ExportEcJwk = {
2020
2035
  /**
2021
- * OIDC Discovery Configuration
2036
+ * Key type
2022
2037
  */
2023
- 200: unknown;
2038
+ kty: string;
2039
+ /**
2040
+ * Curve
2041
+ */
2042
+ crv: string;
2043
+ /**
2044
+ * X coordinate (base64url)
2045
+ */
2046
+ x: string;
2047
+ /**
2048
+ * Y coordinate (base64url)
2049
+ */
2050
+ y: string;
2051
+ /**
2052
+ * Private key (base64url)
2053
+ */
2054
+ d: string;
2055
+ /**
2056
+ * Algorithm
2057
+ */
2058
+ alg?: string;
2059
+ /**
2060
+ * Key ID
2061
+ */
2062
+ kid?: string;
2024
2063
  };
2025
- type AuthControllerGetGlobalJwksData = {
2026
- body?: never;
2027
- path?: never;
2028
- query?: never;
2029
- url: "/.well-known/jwks.json";
2064
+ type ExportRotationPolicyDto = {
2065
+ /**
2066
+ * Whether rotation is enabled.
2067
+ */
2068
+ enabled: boolean;
2069
+ /**
2070
+ * Rotation interval in days.
2071
+ */
2072
+ intervalDays?: number;
2073
+ /**
2074
+ * Certificate validity in days.
2075
+ */
2076
+ certValidityDays?: number;
2030
2077
  };
2031
- type AuthControllerGetGlobalJwksResponses = {
2078
+ type KeyChainExportDto = {
2032
2079
  /**
2033
- * JSON Web Key Set
2080
+ * Key chain ID.
2034
2081
  */
2035
- 200: unknown;
2082
+ id: string;
2083
+ /**
2084
+ * Human-readable description.
2085
+ */
2086
+ description?: string;
2087
+ /**
2088
+ * Usage type for this key chain.
2089
+ */
2090
+ usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2091
+ /**
2092
+ * The private key in JWK format (EC).
2093
+ */
2094
+ key: ExportEcJwk;
2095
+ /**
2096
+ * Certificate chain in PEM format (leaf first, then intermediates/CA).
2097
+ */
2098
+ crt?: Array<string>;
2099
+ /**
2100
+ * KMS provider name.
2101
+ */
2102
+ kmsProvider?: string;
2103
+ /**
2104
+ * Rotation policy.
2105
+ */
2106
+ rotationPolicy?: ExportRotationPolicyDto;
2036
2107
  };
2037
- type TenantControllerGetTenantsData = {
2038
- body?: never;
2039
- path?: never;
2040
- query?: never;
2041
- url: "/tenant";
2108
+ type RotationPolicyCreateDto = {
2109
+ /**
2110
+ * Whether automatic key rotation is enabled.
2111
+ */
2112
+ enabled: boolean;
2113
+ /**
2114
+ * Rotation interval in days. Required when enabled is true.
2115
+ */
2116
+ intervalDays?: number;
2117
+ /**
2118
+ * Certificate validity in days. Defaults to rotation interval + 30 days grace period.
2119
+ */
2120
+ certValidityDays?: number;
2121
+ };
2122
+ type KeyChainCreateDto = {
2123
+ /**
2124
+ * Usage type determines the purpose of this key chain (access, attestation, etc.).
2125
+ */
2126
+ usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2127
+ /**
2128
+ * Type of key chain to create.
2129
+ */
2130
+ type: "standalone" | "internalChain";
2131
+ /**
2132
+ * Human-readable description for the key chain.
2133
+ */
2134
+ description?: string;
2135
+ /**
2136
+ * KMS provider to use (defaults to the configured default provider).
2137
+ */
2138
+ kmsProvider?: string;
2139
+ /**
2140
+ * Rotation policy configuration. Only applicable for the signing key (root CA never rotates).
2141
+ */
2142
+ rotationPolicy?: RotationPolicyCreateDto;
2143
+ };
2144
+ type EcJwk = {
2145
+ kty: string;
2146
+ x: string;
2147
+ y: string;
2148
+ crv: string;
2149
+ d: string;
2150
+ alg?: string;
2151
+ kid?: string;
2152
+ };
2153
+ type RotationPolicyImportDto = {
2154
+ /**
2155
+ * Whether rotation is enabled. When true, the imported key becomes a root CA.
2156
+ */
2157
+ enabled: boolean;
2158
+ /**
2159
+ * Rotation interval in days.
2160
+ */
2161
+ intervalDays?: number;
2162
+ /**
2163
+ * Certificate validity in days.
2164
+ */
2165
+ certValidityDays?: number;
2166
+ };
2167
+ type KeyChainImportDto = {
2168
+ /**
2169
+ * ID for the key chain. If not provided, a new UUID will be generated.
2170
+ */
2171
+ id?: string;
2172
+ /**
2173
+ * The private key in JWK format.
2174
+ */
2175
+ key: EcJwk;
2176
+ /**
2177
+ * Human-readable description.
2178
+ */
2179
+ description?: string;
2180
+ /**
2181
+ * Usage type for this key chain.
2182
+ */
2183
+ usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2184
+ /**
2185
+ * Certificate chain in PEM format (leaf first, then intermediates/CA).
2186
+ */
2187
+ crt?: Array<string>;
2188
+ /**
2189
+ * KMS provider to use. Defaults to 'db'.
2190
+ */
2191
+ kmsProvider?: string;
2192
+ /**
2193
+ * Rotation policy. When enabled, the imported key becomes a root CA and a new leaf key is generated.
2194
+ */
2195
+ rotationPolicy?: RotationPolicyImportDto;
2196
+ };
2197
+ type RotationPolicyUpdateDto = {
2198
+ /**
2199
+ * Whether automatic key rotation is enabled.
2200
+ */
2201
+ enabled?: boolean;
2202
+ /**
2203
+ * Rotation interval in days.
2204
+ */
2205
+ intervalDays?: number;
2206
+ /**
2207
+ * Certificate validity in days.
2208
+ */
2209
+ certValidityDays?: number;
2210
+ };
2211
+ type KeyChainUpdateDto = {
2212
+ /**
2213
+ * Human-readable description for the key chain.
2214
+ */
2215
+ description?: string;
2216
+ /**
2217
+ * Rotation policy configuration.
2218
+ */
2219
+ rotationPolicy?: RotationPolicyUpdateDto;
2220
+ /**
2221
+ * Active certificate chain in PEM format. Used for external certificate updates.
2222
+ */
2223
+ activeCertificate?: string;
2224
+ };
2225
+ type PresentationRequest = {
2226
+ /**
2227
+ * The type of response expected from the presentation request.
2228
+ */
2229
+ response_type: "uri" | "dc-api";
2230
+ /**
2231
+ * Identifier of the presentation configuration
2232
+ */
2233
+ requestId: string;
2234
+ /**
2235
+ * Webhook configuration to receive the response.
2236
+ * If not provided, the configured webhook from the configuration will be used.
2237
+ */
2238
+ webhook?: WebhookConfig;
2239
+ /**
2240
+ * Optional redirect URI to which the user-agent should be redirected after the presentation is completed.
2241
+ * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
2242
+ */
2243
+ redirectUri?: string;
2244
+ /**
2245
+ * Optional transaction data to include in the OID4VP request.
2246
+ * If provided, this will override the transaction_data from the presentation configuration.
2247
+ */
2248
+ transaction_data?: Array<TransactionData>;
2249
+ };
2250
+ type FileUploadDto = {
2251
+ file: Blob | File;
2252
+ };
2253
+ type AppControllerGetVersionData = {
2254
+ body?: never;
2255
+ path?: never;
2256
+ query?: never;
2257
+ url: "/api/version";
2258
+ };
2259
+ type AppControllerGetVersionResponses = {
2260
+ /**
2261
+ * Service version info
2262
+ */
2263
+ 200: unknown;
2264
+ };
2265
+ type TenantControllerGetTenantsData = {
2266
+ body?: never;
2267
+ path?: never;
2268
+ query?: never;
2269
+ url: "/api/tenant";
2042
2270
  };
2043
2271
  type TenantControllerGetTenantsResponses = {
2044
2272
  200: Array<TenantEntity>;
@@ -2048,7 +2276,7 @@ type TenantControllerInitTenantData = {
2048
2276
  body: CreateTenantDto;
2049
2277
  path?: never;
2050
2278
  query?: never;
2051
- url: "/tenant";
2279
+ url: "/api/tenant";
2052
2280
  };
2053
2281
  type TenantControllerInitTenantResponses = {
2054
2282
  201: {
@@ -2062,7 +2290,7 @@ type TenantControllerDeleteTenantData = {
2062
2290
  id: string;
2063
2291
  };
2064
2292
  query?: never;
2065
- url: "/tenant/{id}";
2293
+ url: "/api/tenant/{id}";
2066
2294
  };
2067
2295
  type TenantControllerDeleteTenantResponses = {
2068
2296
  200: unknown;
@@ -2073,7 +2301,7 @@ type TenantControllerGetTenantData = {
2073
2301
  id: string;
2074
2302
  };
2075
2303
  query?: never;
2076
- url: "/tenant/{id}";
2304
+ url: "/api/tenant/{id}";
2077
2305
  };
2078
2306
  type TenantControllerGetTenantResponses = {
2079
2307
  200: TenantEntity;
@@ -2085,7 +2313,7 @@ type TenantControllerUpdateTenantData = {
2085
2313
  id: string;
2086
2314
  };
2087
2315
  query?: never;
2088
- url: "/tenant/{id}";
2316
+ url: "/api/tenant/{id}";
2089
2317
  };
2090
2318
  type TenantControllerUpdateTenantResponses = {
2091
2319
  200: TenantEntity;
@@ -2095,7 +2323,7 @@ type ClientControllerGetClientsData = {
2095
2323
  body?: never;
2096
2324
  path?: never;
2097
2325
  query?: never;
2098
- url: "/client";
2326
+ url: "/api/client";
2099
2327
  };
2100
2328
  type ClientControllerGetClientsResponses = {
2101
2329
  200: Array<ClientEntity>;
@@ -2105,7 +2333,7 @@ type ClientControllerCreateClientData = {
2105
2333
  body: CreateClientDto;
2106
2334
  path?: never;
2107
2335
  query?: never;
2108
- url: "/client";
2336
+ url: "/api/client";
2109
2337
  };
2110
2338
  type ClientControllerCreateClientResponses = {
2111
2339
  201: ClientEntity;
@@ -2117,7 +2345,7 @@ type ClientControllerDeleteClientData = {
2117
2345
  id: string;
2118
2346
  };
2119
2347
  query?: never;
2120
- url: "/client/{id}";
2348
+ url: "/api/client/{id}";
2121
2349
  };
2122
2350
  type ClientControllerDeleteClientResponses = {
2123
2351
  200: unknown;
@@ -2128,7 +2356,7 @@ type ClientControllerGetClientData = {
2128
2356
  id: string;
2129
2357
  };
2130
2358
  query?: never;
2131
- url: "/client/{id}";
2359
+ url: "/api/client/{id}";
2132
2360
  };
2133
2361
  type ClientControllerGetClientResponses = {
2134
2362
  200: ClientEntity;
@@ -2140,7 +2368,7 @@ type ClientControllerUpdateClientData = {
2140
2368
  id: string;
2141
2369
  };
2142
2370
  query?: never;
2143
- url: "/client/{id}";
2371
+ url: "/api/client/{id}";
2144
2372
  };
2145
2373
  type ClientControllerUpdateClientResponses = {
2146
2374
  200: {
@@ -2154,7 +2382,7 @@ type ClientControllerGetClientSecretData = {
2154
2382
  id: string;
2155
2383
  };
2156
2384
  query?: never;
2157
- url: "/client/{id}/secret";
2385
+ url: "/api/client/{id}/secret";
2158
2386
  };
2159
2387
  type ClientControllerGetClientSecretResponses = {
2160
2388
  200: ClientSecretResponseDto;
@@ -2166,113 +2394,17 @@ type ClientControllerRotateClientSecretData = {
2166
2394
  id: string;
2167
2395
  };
2168
2396
  query?: never;
2169
- url: "/client/{id}/rotate-secret";
2397
+ url: "/api/client/{id}/rotate-secret";
2170
2398
  };
2171
2399
  type ClientControllerRotateClientSecretResponses = {
2172
2400
  201: ClientSecretResponseDto;
2173
2401
  };
2174
2402
  type ClientControllerRotateClientSecretResponse = ClientControllerRotateClientSecretResponses[keyof ClientControllerRotateClientSecretResponses];
2175
- type CertControllerGetCertificatesData = {
2176
- body?: never;
2177
- path?: never;
2178
- query?: {
2179
- keyId?: string;
2180
- };
2181
- url: "/certs";
2182
- };
2183
- type CertControllerGetCertificatesResponses = {
2184
- 200: Array<CertEntity>;
2185
- };
2186
- type CertControllerGetCertificatesResponse = CertControllerGetCertificatesResponses[keyof CertControllerGetCertificatesResponses];
2187
- type CertControllerAddCertificateData = {
2188
- body: CertImportDto;
2189
- path?: never;
2190
- query?: never;
2191
- url: "/certs";
2192
- };
2193
- type CertControllerAddCertificateResponses = {
2194
- 201: CertResponseDto;
2195
- };
2196
- type CertControllerAddCertificateResponse = CertControllerAddCertificateResponses[keyof CertControllerAddCertificateResponses];
2197
- type CertControllerDeleteCertificateData = {
2198
- body?: never;
2199
- path: {
2200
- certId: string;
2201
- };
2202
- query?: never;
2203
- url: "/certs/{certId}";
2204
- };
2205
- type CertControllerDeleteCertificateResponses = {
2206
- 200: unknown;
2207
- };
2208
- type CertControllerGetCertificateData = {
2209
- body?: never;
2210
- path: {
2211
- certId: string;
2212
- };
2213
- query?: never;
2214
- url: "/certs/{certId}";
2215
- };
2216
- type CertControllerGetCertificateResponses = {
2217
- 200: CertEntity;
2218
- };
2219
- type CertControllerGetCertificateResponse = CertControllerGetCertificateResponses[keyof CertControllerGetCertificateResponses];
2220
- type CertControllerUpdateCertificateData = {
2221
- body: CertUpdateDto;
2222
- path: {
2223
- certId: string;
2224
- };
2225
- query?: never;
2226
- url: "/certs/{certId}";
2227
- };
2228
- type CertControllerUpdateCertificateResponses = {
2229
- 200: unknown;
2230
- };
2231
- type CertControllerExportConfigData = {
2232
- body?: never;
2233
- path: {
2234
- certId: string;
2235
- };
2236
- query?: never;
2237
- url: "/certs/{certId}/config";
2238
- };
2239
- type CertControllerExportConfigResponses = {
2240
- 200: CertImportDto;
2241
- };
2242
- type CertControllerExportConfigResponse = CertControllerExportConfigResponses[keyof CertControllerExportConfigResponses];
2243
- type StatusListControllerGetListData = {
2244
- body?: never;
2245
- path: {
2246
- tenantId: string;
2247
- listId: string;
2248
- };
2249
- query?: never;
2250
- url: "/{tenantId}/status-management/status-list/{listId}";
2251
- };
2252
- type StatusListControllerGetListResponses = {
2253
- 200: string;
2254
- };
2255
- type StatusListControllerGetListResponse = StatusListControllerGetListResponses[keyof StatusListControllerGetListResponses];
2256
- type StatusListControllerGetStatusListAggregationData = {
2257
- body?: never;
2258
- path: {
2259
- tenantId: string;
2260
- };
2261
- query?: never;
2262
- url: "/{tenantId}/status-management/status-list-aggregation";
2263
- };
2264
- type StatusListControllerGetStatusListAggregationResponses = {
2265
- /**
2266
- * List of status list URIs
2267
- */
2268
- 200: StatusListAggregationDto;
2269
- };
2270
- type StatusListControllerGetStatusListAggregationResponse = StatusListControllerGetStatusListAggregationResponses[keyof StatusListControllerGetStatusListAggregationResponses];
2271
2403
  type StatusListConfigControllerResetConfigData = {
2272
2404
  body?: never;
2273
2405
  path?: never;
2274
2406
  query?: never;
2275
- url: "/status-list-config";
2407
+ url: "/api/status-list-config";
2276
2408
  };
2277
2409
  type StatusListConfigControllerResetConfigResponses = {
2278
2410
  /**
@@ -2285,7 +2417,7 @@ type StatusListConfigControllerGetConfigData = {
2285
2417
  body?: never;
2286
2418
  path?: never;
2287
2419
  query?: never;
2288
- url: "/status-list-config";
2420
+ url: "/api/status-list-config";
2289
2421
  };
2290
2422
  type StatusListConfigControllerGetConfigResponses = {
2291
2423
  /**
@@ -2298,7 +2430,7 @@ type StatusListConfigControllerUpdateConfigData = {
2298
2430
  body: UpdateStatusListConfigDto;
2299
2431
  path?: never;
2300
2432
  query?: never;
2301
- url: "/status-list-config";
2433
+ url: "/api/status-list-config";
2302
2434
  };
2303
2435
  type StatusListConfigControllerUpdateConfigResponses = {
2304
2436
  /**
@@ -2311,7 +2443,7 @@ type StatusListManagementControllerGetListsData = {
2311
2443
  body?: never;
2312
2444
  path?: never;
2313
2445
  query?: never;
2314
- url: "/status-lists";
2446
+ url: "/api/status-lists";
2315
2447
  };
2316
2448
  type StatusListManagementControllerGetListsResponses = {
2317
2449
  /**
@@ -2324,7 +2456,7 @@ type StatusListManagementControllerCreateListData = {
2324
2456
  body: CreateStatusListDto;
2325
2457
  path?: never;
2326
2458
  query?: never;
2327
- url: "/status-lists";
2459
+ url: "/api/status-lists";
2328
2460
  };
2329
2461
  type StatusListManagementControllerCreateListResponses = {
2330
2462
  /**
@@ -2342,7 +2474,7 @@ type StatusListManagementControllerDeleteListData = {
2342
2474
  listId: string;
2343
2475
  };
2344
2476
  query?: never;
2345
- url: "/status-lists/{listId}";
2477
+ url: "/api/status-lists/{listId}";
2346
2478
  };
2347
2479
  type StatusListManagementControllerDeleteListResponses = {
2348
2480
  /**
@@ -2360,7 +2492,7 @@ type StatusListManagementControllerGetListData = {
2360
2492
  listId: string;
2361
2493
  };
2362
2494
  query?: never;
2363
- url: "/status-lists/{listId}";
2495
+ url: "/api/status-lists/{listId}";
2364
2496
  };
2365
2497
  type StatusListManagementControllerGetListResponses = {
2366
2498
  /**
@@ -2378,7 +2510,7 @@ type StatusListManagementControllerUpdateListData = {
2378
2510
  listId: string;
2379
2511
  };
2380
2512
  query?: never;
2381
- url: "/status-lists/{listId}";
2513
+ url: "/api/status-lists/{listId}";
2382
2514
  };
2383
2515
  type StatusListManagementControllerUpdateListResponses = {
2384
2516
  /**
@@ -2391,7 +2523,7 @@ type SessionControllerGetAllSessionsData = {
2391
2523
  body?: never;
2392
2524
  path?: never;
2393
2525
  query?: never;
2394
- url: "/session";
2526
+ url: "/api/session";
2395
2527
  };
2396
2528
  type SessionControllerGetAllSessionsResponses = {
2397
2529
  200: Array<Session>;
@@ -2403,7 +2535,7 @@ type SessionControllerDeleteSessionData = {
2403
2535
  id: string;
2404
2536
  };
2405
2537
  query?: never;
2406
- url: "/session/{id}";
2538
+ url: "/api/session/{id}";
2407
2539
  };
2408
2540
  type SessionControllerDeleteSessionResponses = {
2409
2541
  200: unknown;
@@ -2417,17 +2549,32 @@ type SessionControllerGetSessionData = {
2417
2549
  id: string;
2418
2550
  };
2419
2551
  query?: never;
2420
- url: "/session/{id}";
2552
+ url: "/api/session/{id}";
2421
2553
  };
2422
2554
  type SessionControllerGetSessionResponses = {
2423
2555
  200: Session;
2424
2556
  };
2425
2557
  type SessionControllerGetSessionResponse = SessionControllerGetSessionResponses[keyof SessionControllerGetSessionResponses];
2558
+ type SessionControllerGetSessionLogsData = {
2559
+ body?: never;
2560
+ path: {
2561
+ /**
2562
+ * The session ID
2563
+ */
2564
+ id: string;
2565
+ };
2566
+ query?: never;
2567
+ url: "/api/session/{id}/logs";
2568
+ };
2569
+ type SessionControllerGetSessionLogsResponses = {
2570
+ 200: Array<SessionLogEntryResponseDto>;
2571
+ };
2572
+ type SessionControllerGetSessionLogsResponse = SessionControllerGetSessionLogsResponses[keyof SessionControllerGetSessionLogsResponses];
2426
2573
  type SessionControllerRevokeAllData = {
2427
2574
  body: StatusUpdateDto;
2428
2575
  path?: never;
2429
2576
  query?: never;
2430
- url: "/session/revoke";
2577
+ url: "/api/session/revoke";
2431
2578
  };
2432
2579
  type SessionControllerRevokeAllResponses = {
2433
2580
  201: unknown;
@@ -2436,7 +2583,7 @@ type SessionConfigControllerResetConfigData = {
2436
2583
  body?: never;
2437
2584
  path?: never;
2438
2585
  query?: never;
2439
- url: "/session-config";
2586
+ url: "/api/session-config";
2440
2587
  };
2441
2588
  type SessionConfigControllerResetConfigResponses = {
2442
2589
  /**
@@ -2448,7 +2595,7 @@ type SessionConfigControllerGetConfigData = {
2448
2595
  body?: never;
2449
2596
  path?: never;
2450
2597
  query?: never;
2451
- url: "/session-config";
2598
+ url: "/api/session-config";
2452
2599
  };
2453
2600
  type SessionConfigControllerGetConfigResponses = {
2454
2601
  /**
@@ -2461,7 +2608,7 @@ type SessionConfigControllerUpdateConfigData = {
2461
2608
  body: UpdateSessionConfigDto;
2462
2609
  path?: never;
2463
2610
  query?: never;
2464
- url: "/session-config";
2611
+ url: "/api/session-config";
2465
2612
  };
2466
2613
  type SessionConfigControllerUpdateConfigResponses = {
2467
2614
  /**
@@ -2484,7 +2631,7 @@ type SessionEventsControllerSubscribeToSessionEventsData = {
2484
2631
  */
2485
2632
  token: string;
2486
2633
  };
2487
- url: "/session/{id}/events";
2634
+ url: "/api/session/{id}/events";
2488
2635
  };
2489
2636
  type SessionEventsControllerSubscribeToSessionEventsResponses = {
2490
2637
  200: unknown;
@@ -2493,7 +2640,7 @@ type IssuanceConfigControllerGetIssuanceConfigurationsData = {
2493
2640
  body?: never;
2494
2641
  path?: never;
2495
2642
  query?: never;
2496
- url: "/issuer/config";
2643
+ url: "/api/issuer/config";
2497
2644
  };
2498
2645
  type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
2499
2646
  200: IssuanceConfig;
@@ -2503,7 +2650,7 @@ type IssuanceConfigControllerStoreIssuanceConfigurationData = {
2503
2650
  body: IssuanceDto;
2504
2651
  path?: never;
2505
2652
  query?: never;
2506
- url: "/issuer/config";
2653
+ url: "/api/issuer/config";
2507
2654
  };
2508
2655
  type IssuanceConfigControllerStoreIssuanceConfigurationResponses = {
2509
2656
  201: {
@@ -2515,7 +2662,7 @@ type CredentialConfigControllerGetConfigsData = {
2515
2662
  body?: never;
2516
2663
  path?: never;
2517
2664
  query?: never;
2518
- url: "/issuer/credentials";
2665
+ url: "/api/issuer/credentials";
2519
2666
  };
2520
2667
  type CredentialConfigControllerGetConfigsResponses = {
2521
2668
  200: Array<CredentialConfig>;
@@ -2525,7 +2672,7 @@ type CredentialConfigControllerStoreCredentialConfigurationData = {
2525
2672
  body: CredentialConfigCreate;
2526
2673
  path?: never;
2527
2674
  query?: never;
2528
- url: "/issuer/credentials";
2675
+ url: "/api/issuer/credentials";
2529
2676
  };
2530
2677
  type CredentialConfigControllerStoreCredentialConfigurationResponses = {
2531
2678
  201: {
@@ -2539,7 +2686,7 @@ type CredentialConfigControllerDeleteIssuanceConfigurationData = {
2539
2686
  id: string;
2540
2687
  };
2541
2688
  query?: never;
2542
- url: "/issuer/credentials/{id}";
2689
+ url: "/api/issuer/credentials/{id}";
2543
2690
  };
2544
2691
  type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
2545
2692
  200: unknown;
@@ -2550,7 +2697,7 @@ type CredentialConfigControllerGetConfigByIdData = {
2550
2697
  id: string;
2551
2698
  };
2552
2699
  query?: never;
2553
- url: "/issuer/credentials/{id}";
2700
+ url: "/api/issuer/credentials/{id}";
2554
2701
  };
2555
2702
  type CredentialConfigControllerGetConfigByIdResponses = {
2556
2703
  200: CredentialConfig;
@@ -2562,7 +2709,7 @@ type CredentialConfigControllerUpdateCredentialConfigurationData = {
2562
2709
  id: string;
2563
2710
  };
2564
2711
  query?: never;
2565
- url: "/issuer/credentials/{id}";
2712
+ url: "/api/issuer/credentials/{id}";
2566
2713
  };
2567
2714
  type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
2568
2715
  200: {
@@ -2570,432 +2717,289 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
2570
2717
  };
2571
2718
  };
2572
2719
  type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
2573
- type PresentationManagementControllerConfigurationData = {
2720
+ type AttributeProviderControllerGetAllData = {
2574
2721
  body?: never;
2575
2722
  path?: never;
2576
2723
  query?: never;
2577
- url: "/verifier/config";
2724
+ url: "/api/issuer/attribute-providers";
2578
2725
  };
2579
- type PresentationManagementControllerConfigurationResponses = {
2580
- 200: Array<PresentationConfig>;
2726
+ type AttributeProviderControllerGetAllResponses = {
2727
+ /**
2728
+ * List of attribute providers
2729
+ */
2730
+ 200: unknown;
2581
2731
  };
2582
- type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
2583
- type PresentationManagementControllerStorePresentationConfigData = {
2584
- body: PresentationConfigCreateDto;
2732
+ type AttributeProviderControllerCreateData = {
2733
+ body: CreateAttributeProviderDto;
2585
2734
  path?: never;
2586
2735
  query?: never;
2587
- url: "/verifier/config";
2736
+ url: "/api/issuer/attribute-providers";
2588
2737
  };
2589
- type PresentationManagementControllerStorePresentationConfigResponses = {
2590
- 201: {
2591
- [key: string]: unknown;
2592
- };
2738
+ type AttributeProviderControllerCreateResponses = {
2739
+ /**
2740
+ * Attribute provider created
2741
+ */
2742
+ 201: unknown;
2593
2743
  };
2594
- type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
2595
- type PresentationManagementControllerDeleteConfigurationData = {
2744
+ type AttributeProviderControllerDeleteData = {
2596
2745
  body?: never;
2597
2746
  path: {
2598
2747
  id: string;
2599
2748
  };
2600
2749
  query?: never;
2601
- url: "/verifier/config/{id}";
2750
+ url: "/api/issuer/attribute-providers/{id}";
2602
2751
  };
2603
- type PresentationManagementControllerDeleteConfigurationResponses = {
2752
+ type AttributeProviderControllerDeleteErrors = {
2753
+ /**
2754
+ * Attribute provider not found
2755
+ */
2756
+ 404: unknown;
2757
+ };
2758
+ type AttributeProviderControllerDeleteResponses = {
2759
+ /**
2760
+ * Attribute provider deleted
2761
+ */
2604
2762
  200: unknown;
2605
2763
  };
2606
- type PresentationManagementControllerGetConfigurationData = {
2764
+ type AttributeProviderControllerGetByIdData = {
2607
2765
  body?: never;
2608
2766
  path: {
2609
2767
  id: string;
2610
2768
  };
2611
2769
  query?: never;
2612
- url: "/verifier/config/{id}";
2770
+ url: "/api/issuer/attribute-providers/{id}";
2613
2771
  };
2614
- type PresentationManagementControllerGetConfigurationResponses = {
2615
- 200: PresentationConfig;
2772
+ type AttributeProviderControllerGetByIdErrors = {
2773
+ /**
2774
+ * Attribute provider not found
2775
+ */
2776
+ 404: unknown;
2616
2777
  };
2617
- type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
2618
- type PresentationManagementControllerUpdateConfigurationData = {
2619
- body: PresentationConfigUpdateDto;
2778
+ type AttributeProviderControllerGetByIdResponses = {
2779
+ /**
2780
+ * The attribute provider
2781
+ */
2782
+ 200: unknown;
2783
+ };
2784
+ type AttributeProviderControllerUpdateData = {
2785
+ body: UpdateAttributeProviderDto;
2620
2786
  path: {
2621
2787
  id: string;
2622
2788
  };
2623
2789
  query?: never;
2624
- url: "/verifier/config/{id}";
2625
- };
2626
- type PresentationManagementControllerUpdateConfigurationResponses = {
2627
- 200: {
2628
- [key: string]: unknown;
2629
- };
2790
+ url: "/api/issuer/attribute-providers/{id}";
2630
2791
  };
2631
- type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
2632
- type CacheControllerGetStatsData = {
2633
- body?: never;
2634
- path?: never;
2635
- query?: never;
2636
- url: "/cache/stats";
2792
+ type AttributeProviderControllerUpdateErrors = {
2793
+ /**
2794
+ * Attribute provider not found
2795
+ */
2796
+ 404: unknown;
2637
2797
  };
2638
- type CacheControllerGetStatsResponses = {
2798
+ type AttributeProviderControllerUpdateResponses = {
2639
2799
  /**
2640
- * Cache statistics
2800
+ * Attribute provider updated
2641
2801
  */
2642
2802
  200: unknown;
2643
2803
  };
2644
- type CacheControllerClearAllCachesData = {
2804
+ type WebhookEndpointControllerGetAllData = {
2645
2805
  body?: never;
2646
2806
  path?: never;
2647
2807
  query?: never;
2648
- url: "/cache";
2808
+ url: "/api/issuer/webhook-endpoints";
2649
2809
  };
2650
- type CacheControllerClearAllCachesResponses = {
2810
+ type WebhookEndpointControllerGetAllResponses = {
2651
2811
  /**
2652
- * All caches cleared successfully
2812
+ * List of webhook endpoints
2653
2813
  */
2654
- 204: void;
2814
+ 200: unknown;
2655
2815
  };
2656
- type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
2657
- type CacheControllerClearTrustListCacheData = {
2658
- body?: never;
2816
+ type WebhookEndpointControllerCreateData = {
2817
+ body: CreateWebhookEndpointDto;
2659
2818
  path?: never;
2660
2819
  query?: never;
2661
- url: "/cache/trust-list";
2820
+ url: "/api/issuer/webhook-endpoints";
2662
2821
  };
2663
- type CacheControllerClearTrustListCacheResponses = {
2822
+ type WebhookEndpointControllerCreateResponses = {
2664
2823
  /**
2665
- * Trust list cache cleared successfully
2824
+ * Webhook endpoint created
2666
2825
  */
2667
- 204: void;
2826
+ 201: unknown;
2668
2827
  };
2669
- type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
2670
- type CacheControllerClearStatusListCacheData = {
2828
+ type WebhookEndpointControllerDeleteData = {
2671
2829
  body?: never;
2672
- path?: never;
2830
+ path: {
2831
+ id: string;
2832
+ };
2673
2833
  query?: never;
2674
- url: "/cache/status-list";
2834
+ url: "/api/issuer/webhook-endpoints/{id}";
2675
2835
  };
2676
- type CacheControllerClearStatusListCacheResponses = {
2836
+ type WebhookEndpointControllerDeleteErrors = {
2677
2837
  /**
2678
- * Status list cache cleared successfully
2838
+ * Webhook endpoint not found
2679
2839
  */
2680
- 204: void;
2840
+ 404: unknown;
2681
2841
  };
2682
- type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
2683
- type Oid4VciControllerCredentialData = {
2842
+ type WebhookEndpointControllerDeleteResponses = {
2843
+ /**
2844
+ * Webhook endpoint deleted
2845
+ */
2846
+ 200: unknown;
2847
+ };
2848
+ type WebhookEndpointControllerGetByIdData = {
2684
2849
  body?: never;
2685
2850
  path: {
2686
- tenantId: string;
2851
+ id: string;
2687
2852
  };
2688
2853
  query?: never;
2689
- url: "/{tenantId}/vci/credential";
2690
- };
2691
- type Oid4VciControllerCredentialResponses = {
2692
- 200: {
2693
- [key: string]: unknown;
2694
- };
2854
+ url: "/api/issuer/webhook-endpoints/{id}";
2695
2855
  };
2696
- type Oid4VciControllerCredentialResponse = Oid4VciControllerCredentialResponses[keyof Oid4VciControllerCredentialResponses];
2697
- type Oid4VciControllerDeferredCredentialData = {
2698
- body: DeferredCredentialRequestDto;
2699
- path: {
2700
- tenantId: string;
2701
- };
2702
- query?: never;
2703
- url: "/{tenantId}/vci/deferred_credential";
2856
+ type WebhookEndpointControllerGetByIdErrors = {
2857
+ /**
2858
+ * Webhook endpoint not found
2859
+ */
2860
+ 404: unknown;
2704
2861
  };
2705
- type Oid4VciControllerDeferredCredentialResponses = {
2862
+ type WebhookEndpointControllerGetByIdResponses = {
2863
+ /**
2864
+ * The webhook endpoint
2865
+ */
2706
2866
  200: unknown;
2707
2867
  };
2708
- type Oid4VciControllerNotificationsData = {
2709
- body: NotificationRequestDto;
2868
+ type WebhookEndpointControllerUpdateData = {
2869
+ body: UpdateWebhookEndpointDto;
2710
2870
  path: {
2711
- tenantId: string;
2871
+ id: string;
2712
2872
  };
2713
2873
  query?: never;
2714
- url: "/{tenantId}/vci/notification";
2874
+ url: "/api/issuer/webhook-endpoints/{id}";
2715
2875
  };
2716
- type Oid4VciControllerNotificationsResponses = {
2717
- 201: unknown;
2718
- };
2719
- type Oid4VciControllerNonceData = {
2720
- body?: never;
2721
- path: {
2722
- tenantId: string;
2723
- };
2724
- query?: never;
2725
- url: "/{tenantId}/vci/nonce";
2876
+ type WebhookEndpointControllerUpdateErrors = {
2877
+ /**
2878
+ * Webhook endpoint not found
2879
+ */
2880
+ 404: unknown;
2726
2881
  };
2727
- type Oid4VciControllerNonceResponses = {
2882
+ type WebhookEndpointControllerUpdateResponses = {
2883
+ /**
2884
+ * Webhook endpoint updated
2885
+ */
2728
2886
  200: unknown;
2729
2887
  };
2730
- type AuthorizeControllerAuthorizeData = {
2888
+ type PresentationManagementControllerConfigurationData = {
2731
2889
  body?: never;
2732
- path: {
2733
- tenantId: string;
2734
- };
2735
- query?: {
2736
- issuer_state?: string;
2737
- response_type?: string;
2738
- client_id?: string;
2739
- redirect_uri?: string;
2740
- resource?: string;
2741
- scope?: string;
2742
- code_challenge?: string;
2743
- code_challenge_method?: string;
2744
- dpop_jkt?: string;
2745
- request_uri?: string;
2746
- auth_session?: string;
2747
- state?: string;
2748
- };
2749
- url: "/{tenantId}/authorize";
2750
- };
2751
- type AuthorizeControllerAuthorizeResponses = {
2752
- 200: unknown;
2753
- };
2754
- type AuthorizeControllerParData = {
2755
- /**
2756
- * Pushed Authorization Request
2757
- */
2758
- body: AuthorizeQueries;
2759
2890
  path?: never;
2760
2891
  query?: never;
2761
- url: "/{tenantId}/authorize/par";
2892
+ url: "/api/verifier/config";
2762
2893
  };
2763
- type AuthorizeControllerParResponses = {
2764
- 201: ParResponseDto;
2894
+ type PresentationManagementControllerConfigurationResponses = {
2895
+ 200: Array<PresentationConfig>;
2765
2896
  };
2766
- type AuthorizeControllerParResponse = AuthorizeControllerParResponses[keyof AuthorizeControllerParResponses];
2767
- type AuthorizeControllerTokenData = {
2768
- body?: never;
2769
- path: {
2770
- tenantId: string;
2771
- };
2897
+ type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
2898
+ type PresentationManagementControllerStorePresentationConfigData = {
2899
+ body: PresentationConfigCreateDto;
2900
+ path?: never;
2772
2901
  query?: never;
2773
- url: "/{tenantId}/authorize/token";
2902
+ url: "/api/verifier/config";
2774
2903
  };
2775
- type AuthorizeControllerTokenResponses = {
2904
+ type PresentationManagementControllerStorePresentationConfigResponses = {
2776
2905
  201: {
2777
2906
  [key: string]: unknown;
2778
2907
  };
2779
2908
  };
2780
- type AuthorizeControllerTokenResponse = AuthorizeControllerTokenResponses[keyof AuthorizeControllerTokenResponses];
2781
- type InteractiveAuthorizationControllerInteractiveAuthorizationData = {
2782
- /**
2783
- * Interactive authorization request
2784
- */
2785
- body: InteractiveAuthorizationRequestDto;
2786
- headers: {
2787
- origin: string;
2788
- };
2909
+ type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
2910
+ type PresentationManagementControllerDeleteConfigurationData = {
2911
+ body?: never;
2789
2912
  path: {
2790
- tenantId: string;
2913
+ id: string;
2791
2914
  };
2792
2915
  query?: never;
2793
- url: "/{tenantId}/authorize/interactive";
2916
+ url: "/api/verifier/config/{id}";
2794
2917
  };
2795
- type InteractiveAuthorizationControllerInteractiveAuthorizationErrors = {
2796
- /**
2797
- * Error response
2798
- */
2799
- 400: InteractiveAuthorizationErrorResponseDto;
2800
- };
2801
- type InteractiveAuthorizationControllerInteractiveAuthorizationError = InteractiveAuthorizationControllerInteractiveAuthorizationErrors[keyof InteractiveAuthorizationControllerInteractiveAuthorizationErrors];
2802
- type InteractiveAuthorizationControllerInteractiveAuthorizationResponses = {
2803
- /**
2804
- * Authorization code response (successful completion)
2805
- */
2806
- 200: InteractiveAuthorizationCodeResponseDto;
2918
+ type PresentationManagementControllerDeleteConfigurationResponses = {
2919
+ 200: unknown;
2807
2920
  };
2808
- type InteractiveAuthorizationControllerInteractiveAuthorizationResponse = InteractiveAuthorizationControllerInteractiveAuthorizationResponses[keyof InteractiveAuthorizationControllerInteractiveAuthorizationResponses];
2809
- type InteractiveAuthorizationControllerCompleteWebAuthData = {
2921
+ type PresentationManagementControllerGetConfigurationData = {
2810
2922
  body?: never;
2811
2923
  path: {
2812
- authSession: string;
2813
- tenantId: string;
2924
+ id: string;
2814
2925
  };
2815
2926
  query?: never;
2816
- url: "/{tenantId}/authorize/interactive/complete-web-auth/{authSession}";
2817
- };
2818
- type InteractiveAuthorizationControllerCompleteWebAuthErrors = {
2819
- /**
2820
- * Auth session not found
2821
- */
2822
- 404: unknown;
2927
+ url: "/api/verifier/config/{id}";
2823
2928
  };
2824
- type InteractiveAuthorizationControllerCompleteWebAuthResponses = {
2825
- /**
2826
- * Web authorization marked as completed
2827
- */
2828
- 200: unknown;
2929
+ type PresentationManagementControllerGetConfigurationResponses = {
2930
+ 200: PresentationConfig;
2829
2931
  };
2830
- type ChainedAsControllerParData = {
2831
- body: ChainedAsParRequestDto;
2832
- headers?: {
2833
- /**
2834
- * DPoP proof JWT
2835
- */
2836
- DPoP?: string;
2837
- /**
2838
- * Wallet attestation JWT
2839
- */
2840
- "OAuth-Client-Attestation"?: string;
2841
- /**
2842
- * Wallet attestation proof-of-possession JWT
2843
- */
2844
- "OAuth-Client-Attestation-PoP"?: string;
2845
- };
2932
+ type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
2933
+ type PresentationManagementControllerUpdateConfigurationData = {
2934
+ body: PresentationConfigUpdateDto;
2846
2935
  path: {
2847
- /**
2848
- * Tenant identifier
2849
- */
2850
- tenant: string;
2936
+ id: string;
2851
2937
  };
2852
2938
  query?: never;
2853
- url: "/{tenant}/chained-as/par";
2939
+ url: "/api/verifier/config/{id}";
2854
2940
  };
2855
- type ChainedAsControllerParErrors = {
2856
- /**
2857
- * Invalid request
2858
- */
2859
- 400: ChainedAsErrorResponseDto;
2860
- };
2861
- type ChainedAsControllerParError = ChainedAsControllerParErrors[keyof ChainedAsControllerParErrors];
2862
- type ChainedAsControllerParResponses = {
2863
- /**
2864
- * PAR request accepted
2865
- */
2866
- 201: ChainedAsParResponseDto;
2867
- };
2868
- type ChainedAsControllerParResponse = ChainedAsControllerParResponses[keyof ChainedAsControllerParResponses];
2869
- type ChainedAsControllerAuthorizeData = {
2870
- body?: never;
2871
- path: {
2872
- /**
2873
- * Tenant identifier
2874
- */
2875
- tenant: string;
2876
- };
2877
- query: {
2878
- /**
2879
- * Client identifier
2880
- */
2881
- client_id: string;
2882
- /**
2883
- * Request URI from PAR response
2884
- */
2885
- request_uri: string;
2941
+ type PresentationManagementControllerUpdateConfigurationResponses = {
2942
+ 200: {
2943
+ [key: string]: unknown;
2886
2944
  };
2887
- url: "/{tenant}/chained-as/authorize";
2888
2945
  };
2889
- type ChainedAsControllerAuthorizeErrors = {
2890
- /**
2891
- * Invalid request
2892
- */
2893
- 400: ChainedAsErrorResponseDto;
2894
- };
2895
- type ChainedAsControllerAuthorizeError = ChainedAsControllerAuthorizeErrors[keyof ChainedAsControllerAuthorizeErrors];
2896
- type ChainedAsControllerAuthorizeResponses = {
2897
- 200: unknown;
2898
- };
2899
- type ChainedAsControllerCallbackData = {
2946
+ type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
2947
+ type CacheControllerGetStatsData = {
2900
2948
  body?: never;
2901
- path: {
2902
- /**
2903
- * Tenant identifier
2904
- */
2905
- tenant: string;
2906
- };
2907
- query: {
2908
- code: string;
2909
- state: string;
2910
- error: string;
2911
- error_description: string;
2912
- };
2913
- url: "/{tenant}/chained-as/callback";
2949
+ path?: never;
2950
+ query?: never;
2951
+ url: "/api/cache/stats";
2914
2952
  };
2915
- type ChainedAsControllerCallbackErrors = {
2953
+ type CacheControllerGetStatsResponses = {
2916
2954
  /**
2917
- * Invalid callback
2955
+ * Cache statistics
2918
2956
  */
2919
- 400: ChainedAsErrorResponseDto;
2920
- };
2921
- type ChainedAsControllerCallbackError = ChainedAsControllerCallbackErrors[keyof ChainedAsControllerCallbackErrors];
2922
- type ChainedAsControllerCallbackResponses = {
2923
2957
  200: unknown;
2924
2958
  };
2925
- type ChainedAsControllerTokenData = {
2926
- body: ChainedAsTokenRequestDto;
2927
- headers?: {
2928
- /**
2929
- * DPoP proof JWT
2930
- */
2931
- DPoP?: string;
2932
- };
2933
- path: {
2934
- /**
2935
- * Tenant identifier
2936
- */
2937
- tenant: string;
2938
- };
2959
+ type CacheControllerClearAllCachesData = {
2960
+ body?: never;
2961
+ path?: never;
2939
2962
  query?: never;
2940
- url: "/{tenant}/chained-as/token";
2963
+ url: "/api/cache";
2941
2964
  };
2942
- type ChainedAsControllerTokenErrors = {
2943
- /**
2944
- * Invalid request
2945
- */
2946
- 400: ChainedAsErrorResponseDto;
2947
- /**
2948
- * Invalid authorization code
2949
- */
2950
- 401: ChainedAsErrorResponseDto;
2951
- };
2952
- type ChainedAsControllerTokenError = ChainedAsControllerTokenErrors[keyof ChainedAsControllerTokenErrors];
2953
- type ChainedAsControllerTokenResponses = {
2965
+ type CacheControllerClearAllCachesResponses = {
2954
2966
  /**
2955
- * Token issued successfully
2967
+ * All caches cleared successfully
2956
2968
  */
2957
- 200: ChainedAsTokenResponseDto;
2969
+ 204: void;
2958
2970
  };
2959
- type ChainedAsControllerTokenResponse = ChainedAsControllerTokenResponses[keyof ChainedAsControllerTokenResponses];
2960
- type ChainedAsControllerJwksData = {
2971
+ type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
2972
+ type CacheControllerClearTrustListCacheData = {
2961
2973
  body?: never;
2962
- path: {
2963
- /**
2964
- * Tenant identifier
2965
- */
2966
- tenant: string;
2967
- };
2974
+ path?: never;
2968
2975
  query?: never;
2969
- url: "/{tenant}/chained-as/.well-known/jwks.json";
2976
+ url: "/api/cache/trust-list";
2970
2977
  };
2971
- type ChainedAsControllerJwksResponses = {
2978
+ type CacheControllerClearTrustListCacheResponses = {
2972
2979
  /**
2973
- * JWKS document
2980
+ * Trust list cache cleared successfully
2974
2981
  */
2975
- 200: unknown;
2982
+ 204: void;
2976
2983
  };
2977
- type ChainedAsControllerGetMetadataData = {
2984
+ type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
2985
+ type CacheControllerClearStatusListCacheData = {
2978
2986
  body?: never;
2979
- path: {
2980
- /**
2981
- * Tenant identifier
2982
- */
2983
- tenant: string;
2984
- };
2987
+ path?: never;
2985
2988
  query?: never;
2986
- url: "/{tenant}/chained-as/.well-known/oauth-authorization-server";
2989
+ url: "/api/cache/status-list";
2987
2990
  };
2988
- type ChainedAsControllerGetMetadataResponses = {
2991
+ type CacheControllerClearStatusListCacheResponses = {
2989
2992
  /**
2990
- * OAuth AS metadata
2993
+ * Status list cache cleared successfully
2991
2994
  */
2992
- 200: unknown;
2995
+ 204: void;
2993
2996
  };
2997
+ type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
2994
2998
  type CredentialOfferControllerGetOfferData = {
2995
2999
  body: OfferRequestDto;
2996
3000
  path?: never;
2997
3001
  query?: never;
2998
- url: "/issuer/offer";
3002
+ url: "/api/issuer/offer";
2999
3003
  };
3000
3004
  type CredentialOfferControllerGetOfferResponses = {
3001
3005
  /**
@@ -3010,7 +3014,7 @@ type DeferredControllerCompleteDeferredData = {
3010
3014
  transactionId: string;
3011
3015
  };
3012
3016
  query?: never;
3013
- url: "/issuer/deferred/{transactionId}/complete";
3017
+ url: "/api/issuer/deferred/{transactionId}/complete";
3014
3018
  };
3015
3019
  type DeferredControllerCompleteDeferredErrors = {
3016
3020
  /**
@@ -3031,7 +3035,7 @@ type DeferredControllerFailDeferredData = {
3031
3035
  transactionId: string;
3032
3036
  };
3033
3037
  query?: never;
3034
- url: "/issuer/deferred/{transactionId}/fail";
3038
+ url: "/api/issuer/deferred/{transactionId}/fail";
3035
3039
  };
3036
3040
  type DeferredControllerFailDeferredErrors = {
3037
3041
  /**
@@ -3046,162 +3050,11 @@ type DeferredControllerFailDeferredResponses = {
3046
3050
  200: DeferredOperationResponse;
3047
3051
  };
3048
3052
  type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
3049
- type Oid4VciMetadataControllerVctData = {
3050
- body?: never;
3051
- path: {
3052
- id: string;
3053
- tenantId: string;
3054
- };
3055
- query?: never;
3056
- url: "/{tenantId}/credentials-metadata/vct/{id}";
3057
- };
3058
- type Oid4VciMetadataControllerVctResponses = {
3059
- 200: Vct;
3060
- };
3061
- type Oid4VciMetadataControllerVctResponse = Oid4VciMetadataControllerVctResponses[keyof Oid4VciMetadataControllerVctResponses];
3062
- type WellKnownControllerIssuerMetadata0Data = {
3063
- body?: never;
3064
- path: {
3065
- tenantId: string;
3066
- };
3067
- query?: never;
3068
- url: "/.well-known/openid-credential-issuer/{tenantId}";
3069
- };
3070
- type WellKnownControllerIssuerMetadata0Responses = {
3071
- 200: {
3072
- [key: string]: unknown;
3073
- };
3074
- };
3075
- type WellKnownControllerIssuerMetadata0Response = WellKnownControllerIssuerMetadata0Responses[keyof WellKnownControllerIssuerMetadata0Responses];
3076
- type WellKnownControllerIssuerMetadata1Data = {
3077
- body?: never;
3078
- path: {
3079
- tenantId: string;
3080
- };
3081
- query?: never;
3082
- url: "/{tenantId}/.well-known/openid-credential-issuer";
3083
- };
3084
- type WellKnownControllerIssuerMetadata1Responses = {
3085
- 200: {
3086
- [key: string]: unknown;
3087
- };
3088
- };
3089
- type WellKnownControllerIssuerMetadata1Response = WellKnownControllerIssuerMetadata1Responses[keyof WellKnownControllerIssuerMetadata1Responses];
3090
- type WellKnownControllerAuthzMetadata0Data = {
3091
- body?: never;
3092
- path: {
3093
- tenantId: string;
3094
- };
3095
- query?: never;
3096
- url: "/.well-known/oauth-authorization-server/{tenantId}";
3097
- };
3098
- type WellKnownControllerAuthzMetadata0Responses = {
3099
- 200: unknown;
3100
- };
3101
- type WellKnownControllerAuthzMetadata1Data = {
3102
- body?: never;
3103
- path: {
3104
- tenantId: string;
3105
- };
3106
- query?: never;
3107
- url: "/{tenantId}/.well-known/oauth-authorization-server";
3108
- };
3109
- type WellKnownControllerAuthzMetadata1Responses = {
3110
- 200: unknown;
3111
- };
3112
- type WellKnownControllerChainedAsMetadataData = {
3113
- body?: never;
3114
- path: {
3115
- tenantId: string;
3116
- };
3117
- query?: never;
3118
- url: "/.well-known/oauth-authorization-server/{tenantId}/chained-as";
3119
- };
3120
- type WellKnownControllerChainedAsMetadataResponses = {
3121
- 200: {
3122
- [key: string]: unknown;
3123
- };
3124
- };
3125
- type WellKnownControllerChainedAsMetadataResponse = WellKnownControllerChainedAsMetadataResponses[keyof WellKnownControllerChainedAsMetadataResponses];
3126
- type WellKnownControllerGetJwks0Data = {
3127
- body?: never;
3128
- path: {
3129
- tenantId: string;
3130
- };
3131
- query?: never;
3132
- url: "/.well-known/jwks.json/{tenantId}";
3133
- };
3134
- type WellKnownControllerGetJwks0Responses = {
3135
- 200: JwksResponseDto;
3136
- };
3137
- type WellKnownControllerGetJwks0Response = WellKnownControllerGetJwks0Responses[keyof WellKnownControllerGetJwks0Responses];
3138
- type WellKnownControllerGetJwks1Data = {
3139
- body?: never;
3140
- path: {
3141
- tenantId: string;
3142
- };
3143
- query?: never;
3144
- url: "/{tenantId}/.well-known/jwks.json";
3145
- };
3146
- type WellKnownControllerGetJwks1Responses = {
3147
- 200: JwksResponseDto;
3148
- };
3149
- type WellKnownControllerGetJwks1Response = WellKnownControllerGetJwks1Responses[keyof WellKnownControllerGetJwks1Responses];
3150
- type Oid4VpControllerGetRequestWithSessionData = {
3151
- body?: never;
3152
- path: {
3153
- session: string;
3154
- };
3155
- query?: never;
3156
- url: "/{session}/oid4vp/request";
3157
- };
3158
- type Oid4VpControllerGetRequestWithSessionResponses = {
3159
- 200: string;
3160
- };
3161
- type Oid4VpControllerGetRequestWithSessionResponse = Oid4VpControllerGetRequestWithSessionResponses[keyof Oid4VpControllerGetRequestWithSessionResponses];
3162
- type Oid4VpControllerGetPostRequestWithSessionData = {
3163
- body?: never;
3164
- path: {
3165
- session: string;
3166
- };
3167
- query?: never;
3168
- url: "/{session}/oid4vp/request";
3169
- };
3170
- type Oid4VpControllerGetPostRequestWithSessionResponses = {
3171
- 201: string;
3172
- };
3173
- type Oid4VpControllerGetPostRequestWithSessionResponse = Oid4VpControllerGetPostRequestWithSessionResponses[keyof Oid4VpControllerGetPostRequestWithSessionResponses];
3174
- type Oid4VpControllerGetRequestNoRedirectWithSessionData = {
3175
- body?: never;
3176
- path: {
3177
- session: string;
3178
- };
3179
- query?: never;
3180
- url: "/{session}/oid4vp/request/no-redirect";
3181
- };
3182
- type Oid4VpControllerGetRequestNoRedirectWithSessionResponses = {
3183
- 200: string;
3184
- };
3185
- type Oid4VpControllerGetRequestNoRedirectWithSessionResponse = Oid4VpControllerGetRequestNoRedirectWithSessionResponses[keyof Oid4VpControllerGetRequestNoRedirectWithSessionResponses];
3186
- type Oid4VpControllerGetResponseData = {
3187
- body: AuthorizationResponse;
3188
- path: {
3189
- session: string;
3190
- };
3191
- query?: never;
3192
- url: "/{session}/oid4vp";
3193
- };
3194
- type Oid4VpControllerGetResponseResponses = {
3195
- 200: {
3196
- [key: string]: unknown;
3197
- };
3198
- };
3199
- type Oid4VpControllerGetResponseResponse = Oid4VpControllerGetResponseResponses[keyof Oid4VpControllerGetResponseResponses];
3200
3053
  type RegistrarControllerDeleteConfigData = {
3201
3054
  body?: never;
3202
3055
  path?: never;
3203
3056
  query?: never;
3204
- url: "/registrar/config";
3057
+ url: "/api/registrar/config";
3205
3058
  };
3206
3059
  type RegistrarControllerDeleteConfigResponses = {
3207
3060
  /**
@@ -3214,7 +3067,7 @@ type RegistrarControllerGetConfigData = {
3214
3067
  body?: never;
3215
3068
  path?: never;
3216
3069
  query?: never;
3217
- url: "/registrar/config";
3070
+ url: "/api/registrar/config";
3218
3071
  };
3219
3072
  type RegistrarControllerGetConfigErrors = {
3220
3073
  /**
@@ -3233,7 +3086,7 @@ type RegistrarControllerUpdateConfigData = {
3233
3086
  body: UpdateRegistrarConfigDto;
3234
3087
  path?: never;
3235
3088
  query?: never;
3236
- url: "/registrar/config";
3089
+ url: "/api/registrar/config";
3237
3090
  };
3238
3091
  type RegistrarControllerUpdateConfigErrors = {
3239
3092
  /**
@@ -3256,7 +3109,7 @@ type RegistrarControllerCreateConfigData = {
3256
3109
  body: CreateRegistrarConfigDto;
3257
3110
  path?: never;
3258
3111
  query?: never;
3259
- url: "/registrar/config";
3112
+ url: "/api/registrar/config";
3260
3113
  };
3261
3114
  type RegistrarControllerCreateConfigErrors = {
3262
3115
  /**
@@ -3275,7 +3128,7 @@ type RegistrarControllerCreateAccessCertificateData = {
3275
3128
  body: CreateAccessCertificateDto;
3276
3129
  path?: never;
3277
3130
  query?: never;
3278
- url: "/registrar/access-certificate";
3131
+ url: "/api/registrar/access-certificate";
3279
3132
  };
3280
3133
  type RegistrarControllerCreateAccessCertificateErrors = {
3281
3134
  /**
@@ -3307,7 +3160,7 @@ type TrustListControllerGetAllTrustListsData = {
3307
3160
  body?: never;
3308
3161
  path?: never;
3309
3162
  query?: never;
3310
- url: "/trust-list";
3163
+ url: "/api/trust-list";
3311
3164
  };
3312
3165
  type TrustListControllerGetAllTrustListsResponses = {
3313
3166
  200: Array<TrustList>;
@@ -3317,7 +3170,7 @@ type TrustListControllerCreateTrustListData = {
3317
3170
  body: TrustListCreateDto;
3318
3171
  path?: never;
3319
3172
  query?: never;
3320
- url: "/trust-list";
3173
+ url: "/api/trust-list";
3321
3174
  };
3322
3175
  type TrustListControllerCreateTrustListResponses = {
3323
3176
  201: TrustList;
@@ -3329,7 +3182,7 @@ type TrustListControllerDeleteTrustListData = {
3329
3182
  id: string;
3330
3183
  };
3331
3184
  query?: never;
3332
- url: "/trust-list/{id}";
3185
+ url: "/api/trust-list/{id}";
3333
3186
  };
3334
3187
  type TrustListControllerDeleteTrustListResponses = {
3335
3188
  200: unknown;
@@ -3340,7 +3193,7 @@ type TrustListControllerGetTrustListData = {
3340
3193
  id: string;
3341
3194
  };
3342
3195
  query?: never;
3343
- url: "/trust-list/{id}";
3196
+ url: "/api/trust-list/{id}";
3344
3197
  };
3345
3198
  type TrustListControllerGetTrustListResponses = {
3346
3199
  200: TrustList;
@@ -3352,7 +3205,7 @@ type TrustListControllerUpdateTrustListData = {
3352
3205
  id: string;
3353
3206
  };
3354
3207
  query?: never;
3355
- url: "/trust-list/{id}";
3208
+ url: "/api/trust-list/{id}";
3356
3209
  };
3357
3210
  type TrustListControllerUpdateTrustListResponses = {
3358
3211
  200: TrustList;
@@ -3364,7 +3217,7 @@ type TrustListControllerExportTrustListData = {
3364
3217
  id: string;
3365
3218
  };
3366
3219
  query?: never;
3367
- url: "/trust-list/{id}/export";
3220
+ url: "/api/trust-list/{id}/export";
3368
3221
  };
3369
3222
  type TrustListControllerExportTrustListResponses = {
3370
3223
  200: TrustListCreateDto;
@@ -3376,7 +3229,7 @@ type TrustListControllerGetTrustListVersionsData = {
3376
3229
  id: string;
3377
3230
  };
3378
3231
  query?: never;
3379
- url: "/trust-list/{id}/versions";
3232
+ url: "/api/trust-list/{id}/versions";
3380
3233
  };
3381
3234
  type TrustListControllerGetTrustListVersionsResponses = {
3382
3235
  200: Array<TrustListVersion>;
@@ -3389,117 +3242,170 @@ type TrustListControllerGetTrustListVersionData = {
3389
3242
  versionId: string;
3390
3243
  };
3391
3244
  query?: never;
3392
- url: "/trust-list/{id}/versions/{versionId}";
3245
+ url: "/api/trust-list/{id}/versions/{versionId}";
3393
3246
  };
3394
3247
  type TrustListControllerGetTrustListVersionResponses = {
3395
3248
  200: TrustListVersion;
3396
3249
  };
3397
3250
  type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
3398
- type TrustListPublicControllerGetTrustListJwtData = {
3399
- body?: never;
3400
- path: {
3401
- tenantId: string;
3402
- id: string;
3403
- };
3404
- query?: never;
3405
- url: "/{tenantId}/trust-list/{id}";
3406
- };
3407
- type TrustListPublicControllerGetTrustListJwtResponses = {
3408
- 200: string;
3409
- };
3410
- type TrustListPublicControllerGetTrustListJwtResponse = TrustListPublicControllerGetTrustListJwtResponses[keyof TrustListPublicControllerGetTrustListJwtResponses];
3411
- type KeyControllerGetProvidersData = {
3251
+ type KeyChainControllerGetProvidersData = {
3412
3252
  body?: never;
3413
3253
  path?: never;
3414
3254
  query?: never;
3415
- url: "/key/providers";
3255
+ url: "/api/key-chain/providers";
3416
3256
  };
3417
- type KeyControllerGetProvidersResponses = {
3257
+ type KeyChainControllerGetProvidersResponses = {
3418
3258
  /**
3419
- * List of available KMS providers
3259
+ * List of available KMS providers with capabilities
3420
3260
  */
3421
3261
  200: KmsProvidersResponseDto;
3422
3262
  };
3423
- type KeyControllerGetProvidersResponse = KeyControllerGetProvidersResponses[keyof KeyControllerGetProvidersResponses];
3424
- type KeyControllerGetKeysData = {
3263
+ type KeyChainControllerGetProvidersResponse = KeyChainControllerGetProvidersResponses[keyof KeyChainControllerGetProvidersResponses];
3264
+ type KeyChainControllerGetAllData = {
3425
3265
  body?: never;
3426
3266
  path?: never;
3427
3267
  query?: never;
3428
- url: "/key";
3268
+ url: "/api/key-chain";
3429
3269
  };
3430
- type KeyControllerGetKeysResponses = {
3431
- 200: Array<KeyEntity>;
3270
+ type KeyChainControllerGetAllResponses = {
3271
+ /**
3272
+ * List of key chains
3273
+ */
3274
+ 200: Array<KeyChainResponseDto>;
3432
3275
  };
3433
- type KeyControllerGetKeysResponse = KeyControllerGetKeysResponses[keyof KeyControllerGetKeysResponses];
3434
- type KeyControllerAddKeyData = {
3435
- body: KeyImportDto;
3276
+ type KeyChainControllerGetAllResponse = KeyChainControllerGetAllResponses[keyof KeyChainControllerGetAllResponses];
3277
+ type KeyChainControllerCreateData = {
3278
+ body: KeyChainCreateDto;
3436
3279
  path?: never;
3437
3280
  query?: never;
3438
- url: "/key";
3281
+ url: "/api/key-chain";
3439
3282
  };
3440
- type KeyControllerAddKeyResponses = {
3283
+ type KeyChainControllerCreateResponses = {
3441
3284
  /**
3442
- * Key imported successfully
3285
+ * Key chain created successfully
3443
3286
  */
3444
3287
  201: unknown;
3445
3288
  };
3446
- type KeyControllerDeleteKeyData = {
3289
+ type KeyChainControllerDeleteData = {
3447
3290
  body?: never;
3448
3291
  path: {
3449
3292
  id: string;
3450
3293
  };
3451
3294
  query?: never;
3452
- url: "/key/{id}";
3295
+ url: "/api/key-chain/{id}";
3296
+ };
3297
+ type KeyChainControllerDeleteErrors = {
3298
+ /**
3299
+ * Key chain not found
3300
+ */
3301
+ 404: unknown;
3453
3302
  };
3454
- type KeyControllerDeleteKeyResponses = {
3303
+ type KeyChainControllerDeleteResponses = {
3455
3304
  /**
3456
- * Key deleted successfully
3305
+ * Key chain deleted successfully
3457
3306
  */
3458
3307
  200: unknown;
3459
3308
  };
3460
- type KeyControllerGetKeyData = {
3309
+ type KeyChainControllerGetByIdData = {
3461
3310
  body?: never;
3462
3311
  path: {
3463
3312
  id: string;
3464
3313
  };
3465
3314
  query?: never;
3466
- url: "/key/{id}";
3315
+ url: "/api/key-chain/{id}";
3467
3316
  };
3468
- type KeyControllerGetKeyResponses = {
3469
- 200: KeyEntity;
3317
+ type KeyChainControllerGetByIdErrors = {
3318
+ /**
3319
+ * Key chain not found
3320
+ */
3321
+ 404: unknown;
3470
3322
  };
3471
- type KeyControllerGetKeyResponse = KeyControllerGetKeyResponses[keyof KeyControllerGetKeyResponses];
3472
- type KeyControllerUpdateKeyData = {
3473
- body: UpdateKeyDto;
3323
+ type KeyChainControllerGetByIdResponses = {
3324
+ /**
3325
+ * The key chain
3326
+ */
3327
+ 200: KeyChainResponseDto;
3328
+ };
3329
+ type KeyChainControllerGetByIdResponse = KeyChainControllerGetByIdResponses[keyof KeyChainControllerGetByIdResponses];
3330
+ type KeyChainControllerUpdateData = {
3331
+ body: KeyChainUpdateDto;
3474
3332
  path: {
3475
3333
  id: string;
3476
3334
  };
3477
3335
  query?: never;
3478
- url: "/key/{id}";
3336
+ url: "/api/key-chain/{id}";
3337
+ };
3338
+ type KeyChainControllerUpdateErrors = {
3339
+ /**
3340
+ * Key chain not found
3341
+ */
3342
+ 404: unknown;
3479
3343
  };
3480
- type KeyControllerUpdateKeyResponses = {
3344
+ type KeyChainControllerUpdateResponses = {
3481
3345
  /**
3482
- * Key updated successfully
3346
+ * Key chain updated successfully
3483
3347
  */
3484
3348
  200: unknown;
3485
3349
  };
3486
- type KeyControllerGenerateKeyData = {
3487
- body: KeyGenerateDto;
3350
+ type KeyChainControllerExportData = {
3351
+ body?: never;
3352
+ path: {
3353
+ id: string;
3354
+ };
3355
+ query?: never;
3356
+ url: "/api/key-chain/{id}/export";
3357
+ };
3358
+ type KeyChainControllerExportErrors = {
3359
+ /**
3360
+ * Key chain not found
3361
+ */
3362
+ 404: unknown;
3363
+ };
3364
+ type KeyChainControllerExportResponses = {
3365
+ /**
3366
+ * Key chain export data
3367
+ */
3368
+ 200: KeyChainExportDto;
3369
+ };
3370
+ type KeyChainControllerExportResponse = KeyChainControllerExportResponses[keyof KeyChainControllerExportResponses];
3371
+ type KeyChainControllerImportData = {
3372
+ body: KeyChainImportDto;
3488
3373
  path?: never;
3489
3374
  query?: never;
3490
- url: "/key/generate";
3375
+ url: "/api/key-chain/import";
3491
3376
  };
3492
- type KeyControllerGenerateKeyResponses = {
3377
+ type KeyChainControllerImportResponses = {
3493
3378
  /**
3494
- * Key generated successfully
3379
+ * Key chain imported successfully
3495
3380
  */
3496
3381
  201: unknown;
3497
3382
  };
3383
+ type KeyChainControllerRotateData = {
3384
+ body?: never;
3385
+ path: {
3386
+ id: string;
3387
+ };
3388
+ query?: never;
3389
+ url: "/api/key-chain/{id}/rotate";
3390
+ };
3391
+ type KeyChainControllerRotateErrors = {
3392
+ /**
3393
+ * Key chain not found
3394
+ */
3395
+ 404: unknown;
3396
+ };
3397
+ type KeyChainControllerRotateResponses = {
3398
+ /**
3399
+ * Key chain rotated successfully
3400
+ */
3401
+ 200: unknown;
3402
+ 201: unknown;
3403
+ };
3498
3404
  type VerifierOfferControllerGetOfferData = {
3499
3405
  body: PresentationRequest;
3500
3406
  path?: never;
3501
3407
  query?: never;
3502
- url: "/verifier/offer";
3408
+ url: "/api/verifier/offer";
3503
3409
  };
3504
3410
  type VerifierOfferControllerGetOfferResponses = {
3505
3411
  /**
@@ -3515,7 +3421,7 @@ type StorageControllerUploadData = {
3515
3421
  body: FileUploadDto;
3516
3422
  path?: never;
3517
3423
  query?: never;
3518
- url: "/storage";
3424
+ url: "/api/storage";
3519
3425
  };
3520
3426
  type StorageControllerUploadResponses = {
3521
3427
  201: {
@@ -3523,16 +3429,5 @@ type StorageControllerUploadResponses = {
3523
3429
  };
3524
3430
  };
3525
3431
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
3526
- type StorageControllerDownloadData = {
3527
- body?: never;
3528
- path: {
3529
- key: string;
3530
- };
3531
- query?: never;
3532
- url: "/storage/{key}";
3533
- };
3534
- type StorageControllerDownloadResponses = {
3535
- 200: unknown;
3536
- };
3537
3432
 
3538
- export type { CertControllerGetCertificatesResponse as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, HealthControllerCheckResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertControllerAddCertificateData as O, CertControllerAddCertificateResponse as P, CertControllerAddCertificateResponses as Q, CertControllerDeleteCertificateData as R, Session as S, CertControllerDeleteCertificateResponses as T, CertControllerExportConfigData as U, CertControllerExportConfigResponse as V, CertControllerExportConfigResponses as W, CertControllerGetCertificateData as X, CertControllerGetCertificateResponse as Y, CertControllerGetCertificateResponses as Z, CertControllerGetCertificatesData as _, HealthControllerCheckError as a, CreateAccessCertificateDto as a$, CertControllerGetCertificatesResponses as a0, CertControllerUpdateCertificateData as a1, CertControllerUpdateCertificateResponses as a2, CertEntity as a3, CertImportDto as a4, CertResponseDto as a5, CertUpdateDto as a6, CertUsageEntity as a7, ChainedAsConfig as a8, ChainedAsControllerAuthorizeData as a9, ChainedAsTokenResponseDto as aA, ClaimsQuery as aB, ClientControllerCreateClientData as aC, ClientControllerCreateClientResponse as aD, ClientControllerCreateClientResponses as aE, ClientControllerDeleteClientData as aF, ClientControllerDeleteClientResponses as aG, ClientControllerGetClientData as aH, ClientControllerGetClientResponse as aI, ClientControllerGetClientResponses as aJ, ClientControllerGetClientSecretData as aK, ClientControllerGetClientSecretResponse as aL, ClientControllerGetClientSecretResponses as aM, ClientControllerGetClientsData as aN, ClientControllerGetClientsResponse as aO, ClientControllerGetClientsResponses as aP, ClientControllerRotateClientSecretData as aQ, ClientControllerRotateClientSecretResponse as aR, ClientControllerRotateClientSecretResponses as aS, ClientControllerUpdateClientData as aT, ClientControllerUpdateClientResponse as aU, ClientControllerUpdateClientResponses as aV, ClientCredentialsDto as aW, ClientEntity as aX, ClientOptions as aY, ClientSecretResponseDto as aZ, CompleteDeferredDto as a_, ChainedAsControllerAuthorizeError as aa, ChainedAsControllerAuthorizeErrors as ab, ChainedAsControllerAuthorizeResponses as ac, ChainedAsControllerCallbackData as ad, ChainedAsControllerCallbackError as ae, ChainedAsControllerCallbackErrors as af, ChainedAsControllerCallbackResponses as ag, ChainedAsControllerGetMetadataData as ah, ChainedAsControllerGetMetadataResponses as ai, ChainedAsControllerJwksData as aj, ChainedAsControllerJwksResponses as ak, ChainedAsControllerParData as al, ChainedAsControllerParError as am, ChainedAsControllerParErrors as an, ChainedAsControllerParResponse as ao, ChainedAsControllerParResponses as ap, ChainedAsControllerTokenData as aq, ChainedAsControllerTokenError as ar, ChainedAsControllerTokenErrors as as, ChainedAsControllerTokenResponse as at, ChainedAsControllerTokenResponses as au, ChainedAsErrorResponseDto as av, ChainedAsParRequestDto as aw, ChainedAsParResponseDto as ax, ChainedAsTokenConfig as ay, ChainedAsTokenRequestDto as az, ApiKeyConfig as b, IssuanceConfig as b$, CreateClientDto as b0, CreateRegistrarConfigDto as b1, CreateStatusListDto as b2, CreateTenantDto as b3, CredentialConfig as b4, CredentialConfigControllerDeleteIssuanceConfigurationData as b5, CredentialConfigControllerDeleteIssuanceConfigurationResponses as b6, CredentialConfigControllerGetConfigByIdData as b7, CredentialConfigControllerGetConfigByIdResponse as b8, CredentialConfigControllerGetConfigByIdResponses as b9, DeferredCredentialRequestDto as bA, DeferredOperationResponse as bB, Display as bC, DisplayImage as bD, DisplayInfo as bE, DisplayLogo as bF, EcPublic as bG, EmbeddedDisclosurePolicy as bH, FailDeferredDto as bI, FileUploadDto as bJ, HealthControllerCheckData as bK, HealthControllerCheckErrors as bL, HealthControllerCheckResponses as bM, IaeActionOpenid4VpPresentation as bN, IaeActionRedirectToWeb as bO, ImportTenantDto as bP, InteractiveAuthorizationCodeResponseDto as bQ, InteractiveAuthorizationControllerCompleteWebAuthData as bR, InteractiveAuthorizationControllerCompleteWebAuthErrors as bS, InteractiveAuthorizationControllerCompleteWebAuthResponses as bT, InteractiveAuthorizationControllerInteractiveAuthorizationData as bU, InteractiveAuthorizationControllerInteractiveAuthorizationError as bV, InteractiveAuthorizationControllerInteractiveAuthorizationErrors as bW, InteractiveAuthorizationControllerInteractiveAuthorizationResponse as bX, InteractiveAuthorizationControllerInteractiveAuthorizationResponses as bY, InteractiveAuthorizationErrorResponseDto as bZ, InteractiveAuthorizationRequestDto as b_, CredentialConfigControllerGetConfigsData as ba, CredentialConfigControllerGetConfigsResponse as bb, CredentialConfigControllerGetConfigsResponses as bc, CredentialConfigControllerStoreCredentialConfigurationData as bd, CredentialConfigControllerStoreCredentialConfigurationResponse as be, CredentialConfigControllerStoreCredentialConfigurationResponses as bf, CredentialConfigControllerUpdateCredentialConfigurationData as bg, CredentialConfigControllerUpdateCredentialConfigurationResponse as bh, CredentialConfigControllerUpdateCredentialConfigurationResponses as bi, CredentialConfigCreate as bj, CredentialConfigUpdate as bk, CredentialOfferControllerGetOfferData as bl, CredentialOfferControllerGetOfferResponse as bm, CredentialOfferControllerGetOfferResponses as bn, CredentialQuery as bo, CredentialSetQuery as bp, DbKmsConfigDto as bq, Dcql as br, DeferredControllerCompleteDeferredData as bs, DeferredControllerCompleteDeferredErrors as bt, DeferredControllerCompleteDeferredResponse as bu, DeferredControllerCompleteDeferredResponses as bv, DeferredControllerFailDeferredData as bw, DeferredControllerFailDeferredErrors as bx, DeferredControllerFailDeferredResponse as by, DeferredControllerFailDeferredResponses as bz, AppControllerMainData as c, PolicyCredential as c$, IssuanceConfigControllerGetIssuanceConfigurationsData as c0, IssuanceConfigControllerGetIssuanceConfigurationsResponse as c1, IssuanceConfigControllerGetIssuanceConfigurationsResponses as c2, IssuanceConfigControllerStoreIssuanceConfigurationData as c3, IssuanceConfigControllerStoreIssuanceConfigurationResponse as c4, IssuanceConfigControllerStoreIssuanceConfigurationResponses as c5, IssuanceDto as c6, IssuerMetadataCredentialConfig as c7, JwksResponseDto as c8, Key as c9, OfferRequestDto as cA, OfferResponse as cB, Oid4VciControllerCredentialData as cC, Oid4VciControllerCredentialResponse as cD, Oid4VciControllerCredentialResponses as cE, Oid4VciControllerDeferredCredentialData as cF, Oid4VciControllerDeferredCredentialResponses as cG, Oid4VciControllerNonceData as cH, Oid4VciControllerNonceResponses as cI, Oid4VciControllerNotificationsData as cJ, Oid4VciControllerNotificationsResponses as cK, Oid4VciMetadataControllerVctData as cL, Oid4VciMetadataControllerVctResponse as cM, Oid4VciMetadataControllerVctResponses as cN, Oid4VpControllerGetPostRequestWithSessionData as cO, Oid4VpControllerGetPostRequestWithSessionResponse as cP, Oid4VpControllerGetPostRequestWithSessionResponses as cQ, Oid4VpControllerGetRequestNoRedirectWithSessionData as cR, Oid4VpControllerGetRequestNoRedirectWithSessionResponse as cS, Oid4VpControllerGetRequestNoRedirectWithSessionResponses as cT, Oid4VpControllerGetRequestWithSessionData as cU, Oid4VpControllerGetRequestWithSessionResponse as cV, Oid4VpControllerGetRequestWithSessionResponses as cW, Oid4VpControllerGetResponseData as cX, Oid4VpControllerGetResponseResponse as cY, Oid4VpControllerGetResponseResponses as cZ, ParResponseDto as c_, KeyControllerAddKeyData as ca, KeyControllerAddKeyResponses as cb, KeyControllerDeleteKeyData as cc, KeyControllerDeleteKeyResponses as cd, KeyControllerGenerateKeyData as ce, KeyControllerGenerateKeyResponses as cf, KeyControllerGetKeyData as cg, KeyControllerGetKeyResponse as ch, KeyControllerGetKeyResponses as ci, KeyControllerGetKeysData as cj, KeyControllerGetKeysResponse as ck, KeyControllerGetKeysResponses as cl, KeyControllerGetProvidersData as cm, KeyControllerGetProvidersResponse as cn, KeyControllerGetProvidersResponses as co, KeyControllerUpdateKeyData as cp, KeyControllerUpdateKeyResponses as cq, KeyEntity as cr, KeyGenerateDto as cs, KeyImportDto as ct, KmsConfigDto as cu, KmsProviderCapabilitiesDto as cv, KmsProviderInfoDto as cw, KmsProvidersResponseDto as cx, NoneTrustPolicy as cy, NotificationRequestDto as cz, AppControllerMainResponses as d, SessionEventsControllerSubscribeToSessionEventsData as d$, PresentationAttachment as d0, PresentationConfig as d1, PresentationConfigCreateDto as d2, PresentationConfigUpdateDto as d3, PresentationDuringIssuanceConfig as d4, PresentationManagementControllerConfigurationData as d5, PresentationManagementControllerConfigurationResponse as d6, PresentationManagementControllerConfigurationResponses as d7, PresentationManagementControllerDeleteConfigurationData as d8, PresentationManagementControllerDeleteConfigurationResponses as d9, RegistrarControllerGetConfigResponses as dA, RegistrarControllerUpdateConfigData as dB, RegistrarControllerUpdateConfigErrors as dC, RegistrarControllerUpdateConfigResponse as dD, RegistrarControllerUpdateConfigResponses as dE, RegistrationCertificateRequest as dF, RoleDto as dG, RootOfTrustPolicy as dH, SchemaResponse as dI, SessionConfigControllerGetConfigData as dJ, SessionConfigControllerGetConfigResponse as dK, SessionConfigControllerGetConfigResponses as dL, SessionConfigControllerResetConfigData as dM, SessionConfigControllerResetConfigResponses as dN, SessionConfigControllerUpdateConfigData as dO, SessionConfigControllerUpdateConfigResponse as dP, SessionConfigControllerUpdateConfigResponses as dQ, SessionControllerDeleteSessionData as dR, SessionControllerDeleteSessionResponses as dS, SessionControllerGetAllSessionsData as dT, SessionControllerGetAllSessionsResponse as dU, SessionControllerGetAllSessionsResponses as dV, SessionControllerGetSessionData as dW, SessionControllerGetSessionResponse as dX, SessionControllerGetSessionResponses as dY, SessionControllerRevokeAllData as dZ, SessionControllerRevokeAllResponses as d_, PresentationManagementControllerGetConfigurationData as da, PresentationManagementControllerGetConfigurationResponse as db, PresentationManagementControllerGetConfigurationResponses as dc, PresentationManagementControllerStorePresentationConfigData as dd, PresentationManagementControllerStorePresentationConfigResponse as de, PresentationManagementControllerStorePresentationConfigResponses as df, PresentationManagementControllerUpdateConfigurationData as dg, PresentationManagementControllerUpdateConfigurationResponse as dh, PresentationManagementControllerUpdateConfigurationResponses as di, PresentationRequest as dj, RegistrarConfigEntity as dk, RegistrarControllerCreateAccessCertificateData as dl, RegistrarControllerCreateAccessCertificateErrors as dm, RegistrarControllerCreateAccessCertificateResponse as dn, RegistrarControllerCreateAccessCertificateResponses as dp, RegistrarControllerCreateConfigData as dq, RegistrarControllerCreateConfigErrors as dr, RegistrarControllerCreateConfigResponse as ds, RegistrarControllerCreateConfigResponses as dt, RegistrarControllerDeleteConfigData as du, RegistrarControllerDeleteConfigResponse as dv, RegistrarControllerDeleteConfigResponses as dw, RegistrarControllerGetConfigData as dx, RegistrarControllerGetConfigErrors as dy, RegistrarControllerGetConfigResponse as dz, AttestationBasedPolicy as e, TrustListControllerDeleteTrustListData as e$, SessionEventsControllerSubscribeToSessionEventsResponses as e0, SessionStorageConfig as e1, StatusListAggregationDto as e2, StatusListConfig as e3, StatusListConfigControllerGetConfigData as e4, StatusListConfigControllerGetConfigResponse as e5, StatusListConfigControllerGetConfigResponses as e6, StatusListConfigControllerResetConfigData as e7, StatusListConfigControllerResetConfigResponse as e8, StatusListConfigControllerResetConfigResponses as e9, StatusUpdateDto as eA, StorageControllerDownloadData as eB, StorageControllerDownloadResponses as eC, StorageControllerUploadData as eD, StorageControllerUploadResponse as eE, StorageControllerUploadResponses as eF, TenantControllerDeleteTenantData as eG, TenantControllerDeleteTenantResponses as eH, TenantControllerGetTenantData as eI, TenantControllerGetTenantResponse as eJ, TenantControllerGetTenantResponses as eK, TenantControllerGetTenantsData as eL, TenantControllerGetTenantsResponse as eM, TenantControllerGetTenantsResponses as eN, TenantControllerInitTenantData as eO, TenantControllerInitTenantResponse as eP, TenantControllerInitTenantResponses as eQ, TenantControllerUpdateTenantData as eR, TenantControllerUpdateTenantResponse as eS, TenantControllerUpdateTenantResponses as eT, TenantEntity as eU, TokenResponse as eV, TransactionData as eW, TrustList as eX, TrustListControllerCreateTrustListData as eY, TrustListControllerCreateTrustListResponse as eZ, TrustListControllerCreateTrustListResponses as e_, StatusListConfigControllerUpdateConfigData as ea, StatusListConfigControllerUpdateConfigResponse as eb, StatusListConfigControllerUpdateConfigResponses as ec, StatusListControllerGetListData as ed, StatusListControllerGetListResponse as ee, StatusListControllerGetListResponses as ef, StatusListControllerGetStatusListAggregationData as eg, StatusListControllerGetStatusListAggregationResponse as eh, StatusListControllerGetStatusListAggregationResponses as ei, StatusListImportDto as ej, StatusListManagementControllerCreateListData as ek, StatusListManagementControllerCreateListResponse as el, StatusListManagementControllerCreateListResponses as em, StatusListManagementControllerDeleteListData as en, StatusListManagementControllerDeleteListResponse as eo, StatusListManagementControllerDeleteListResponses as ep, StatusListManagementControllerGetListData as eq, StatusListManagementControllerGetListResponse as er, StatusListManagementControllerGetListResponses as es, StatusListManagementControllerGetListsData as et, StatusListManagementControllerGetListsResponse as eu, StatusListManagementControllerGetListsResponses as ev, StatusListManagementControllerUpdateListData as ew, StatusListManagementControllerUpdateListResponse as ex, StatusListManagementControllerUpdateListResponses as ey, StatusListResponseDto as ez, AuthControllerGetGlobalJwksData as f, TrustListControllerDeleteTrustListResponses as f0, TrustListControllerExportTrustListData as f1, TrustListControllerExportTrustListResponse as f2, TrustListControllerExportTrustListResponses as f3, TrustListControllerGetAllTrustListsData as f4, TrustListControllerGetAllTrustListsResponse as f5, TrustListControllerGetAllTrustListsResponses as f6, TrustListControllerGetTrustListData as f7, TrustListControllerGetTrustListResponse as f8, TrustListControllerGetTrustListResponses as f9, VerifierOfferControllerGetOfferResponse as fA, VerifierOfferControllerGetOfferResponses as fB, WebHookAuthConfigHeader as fC, WebHookAuthConfigNone as fD, WebhookConfig as fE, WellKnownControllerAuthzMetadata0Data as fF, WellKnownControllerAuthzMetadata0Responses as fG, WellKnownControllerAuthzMetadata1Data as fH, WellKnownControllerAuthzMetadata1Responses as fI, WellKnownControllerChainedAsMetadataData as fJ, WellKnownControllerChainedAsMetadataResponse as fK, WellKnownControllerChainedAsMetadataResponses as fL, WellKnownControllerGetJwks0Data as fM, WellKnownControllerGetJwks0Response as fN, WellKnownControllerGetJwks0Responses as fO, WellKnownControllerGetJwks1Data as fP, WellKnownControllerGetJwks1Response as fQ, WellKnownControllerGetJwks1Responses as fR, WellKnownControllerIssuerMetadata0Data as fS, WellKnownControllerIssuerMetadata0Response as fT, WellKnownControllerIssuerMetadata0Responses as fU, WellKnownControllerIssuerMetadata1Data as fV, WellKnownControllerIssuerMetadata1Response as fW, WellKnownControllerIssuerMetadata1Responses as fX, TrustListControllerGetTrustListVersionData as fa, TrustListControllerGetTrustListVersionResponse as fb, TrustListControllerGetTrustListVersionResponses as fc, TrustListControllerGetTrustListVersionsData as fd, TrustListControllerGetTrustListVersionsResponse as fe, TrustListControllerGetTrustListVersionsResponses as ff, TrustListControllerUpdateTrustListData as fg, TrustListControllerUpdateTrustListResponse as fh, TrustListControllerUpdateTrustListResponses as fi, TrustListCreateDto as fj, TrustListPublicControllerGetTrustListJwtData as fk, TrustListPublicControllerGetTrustListJwtResponse as fl, TrustListPublicControllerGetTrustListJwtResponses as fm, TrustListVersion as fn, TrustedAuthorityQuery as fo, UpdateClientDto as fp, UpdateKeyDto as fq, UpdateRegistrarConfigDto as fr, UpdateSessionConfigDto as fs, UpdateStatusListConfigDto as ft, UpdateStatusListDto as fu, UpdateTenantDto as fv, UpstreamOidcConfig as fw, VaultKmsConfigDto as fx, Vct as fy, VerifierOfferControllerGetOfferData as fz, AuthControllerGetGlobalJwksResponses as g, AuthControllerGetOAuth2TokenData as h, AuthControllerGetOAuth2TokenErrors as i, AuthControllerGetOAuth2TokenResponse as j, AuthControllerGetOAuth2TokenResponses as k, AuthControllerGetOidcDiscoveryData as l, AuthControllerGetOidcDiscoveryResponses as m, AuthenticationMethodAuth as n, AuthenticationMethodNone as o, AuthenticationMethodPresentation as p, AuthenticationUrlConfig as q, AuthorizationResponse as r, AuthorizeControllerAuthorizeData as s, AuthorizeControllerAuthorizeResponses as t, AuthorizeControllerParData as u, AuthorizeControllerParResponse as v, AuthorizeControllerParResponses as w, AuthorizeControllerTokenData as x, AuthorizeControllerTokenResponse as y, AuthorizeControllerTokenResponses as z };
3433
+ export type { ClientControllerGetClientResponses as $, AllowListPolicy as A, CacheControllerClearStatusListCacheData as B, CacheControllerClearAllCachesData as C, CacheControllerClearStatusListCacheResponse as D, CacheControllerClearStatusListCacheResponses as E, CacheControllerClearTrustListCacheData as F, CacheControllerClearTrustListCacheResponse as G, CacheControllerClearTrustListCacheResponses as H, CacheControllerGetStatsData as I, CacheControllerGetStatsResponses as J, CertificateInfoDto as K, ChainedAsConfig as L, ChainedAsErrorResponseDto as M, ChainedAsParRequestDto as N, ChainedAsParResponseDto as O, ChainedAsTokenConfig as P, ChainedAsTokenRequestDto as Q, ChainedAsTokenResponseDto as R, Session as S, ClaimsQuery as T, ClientControllerCreateClientData as U, ClientControllerCreateClientResponse as V, ClientControllerCreateClientResponses as W, ClientControllerDeleteClientData as X, ClientControllerDeleteClientResponses as Y, ClientControllerGetClientData as Z, ClientControllerGetClientResponse as _, ApiKeyConfig as a, EmbeddedDisclosurePolicy as a$, ClientControllerGetClientSecretData as a0, ClientControllerGetClientSecretResponse as a1, ClientControllerGetClientSecretResponses as a2, ClientControllerGetClientsData as a3, ClientControllerGetClientsResponse as a4, ClientControllerGetClientsResponses as a5, ClientControllerRotateClientSecretData as a6, ClientControllerRotateClientSecretResponse as a7, ClientControllerRotateClientSecretResponses as a8, ClientControllerUpdateClientData as a9, CredentialConfigControllerUpdateCredentialConfigurationData as aA, CredentialConfigControllerUpdateCredentialConfigurationResponse as aB, CredentialConfigControllerUpdateCredentialConfigurationResponses as aC, CredentialConfigCreate as aD, CredentialConfigUpdate as aE, CredentialOfferControllerGetOfferData as aF, CredentialOfferControllerGetOfferResponse as aG, CredentialOfferControllerGetOfferResponses as aH, CredentialQuery as aI, CredentialSetQuery as aJ, Dcql as aK, DeferredControllerCompleteDeferredData as aL, DeferredControllerCompleteDeferredErrors as aM, DeferredControllerCompleteDeferredResponse as aN, DeferredControllerCompleteDeferredResponses as aO, DeferredControllerFailDeferredData as aP, DeferredControllerFailDeferredErrors as aQ, DeferredControllerFailDeferredResponse as aR, DeferredControllerFailDeferredResponses as aS, DeferredCredentialRequestDto as aT, DeferredOperationResponse as aU, Display as aV, DisplayImage as aW, DisplayInfo as aX, DisplayLogo as aY, EcJwk as aZ, EcPublic as a_, ClientControllerUpdateClientResponse as aa, ClientControllerUpdateClientResponses as ab, ClientCredentialsDto as ac, ClientEntity as ad, ClientOptions as ae, ClientSecretResponseDto as af, CompleteDeferredDto as ag, CreateAccessCertificateDto as ah, CreateAttributeProviderDto as ai, CreateClientDto as aj, CreateRegistrarConfigDto as ak, CreateStatusListDto as al, CreateTenantDto as am, CreateWebhookEndpointDto as an, CredentialConfig as ao, CredentialConfigControllerDeleteIssuanceConfigurationData as ap, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aq, CredentialConfigControllerGetConfigByIdData as ar, CredentialConfigControllerGetConfigByIdResponse as as, CredentialConfigControllerGetConfigByIdResponses as at, CredentialConfigControllerGetConfigsData as au, CredentialConfigControllerGetConfigsResponse as av, CredentialConfigControllerGetConfigsResponses as aw, CredentialConfigControllerStoreCredentialConfigurationData as ax, CredentialConfigControllerStoreCredentialConfigurationResponse as ay, CredentialConfigControllerStoreCredentialConfigurationResponses as az, AppControllerGetVersionData as b, PolicyCredential as b$, ExportEcJwk as b0, ExportRotationPolicyDto as b1, ExternalTrustListEntity as b2, FailDeferredDto as b3, FileUploadDto as b4, IaeActionOpenid4VpPresentation as b5, IaeActionRedirectToWeb as b6, ImportTenantDto as b7, InteractiveAuthorizationCodeResponseDto as b8, InteractiveAuthorizationErrorResponseDto as b9, KeyChainControllerGetByIdResponse as bA, KeyChainControllerGetByIdResponses as bB, KeyChainControllerGetProvidersData as bC, KeyChainControllerGetProvidersResponse as bD, KeyChainControllerGetProvidersResponses as bE, KeyChainControllerImportData as bF, KeyChainControllerImportResponses as bG, KeyChainControllerRotateData as bH, KeyChainControllerRotateErrors as bI, KeyChainControllerRotateResponses as bJ, KeyChainControllerUpdateData as bK, KeyChainControllerUpdateErrors as bL, KeyChainControllerUpdateResponses as bM, KeyChainCreateDto as bN, KeyChainEntity as bO, KeyChainExportDto as bP, KeyChainImportDto as bQ, KeyChainResponseDto as bR, KeyChainUpdateDto as bS, KmsProviderCapabilitiesDto as bT, KmsProviderInfoDto as bU, KmsProvidersResponseDto as bV, NoneTrustPolicy as bW, NotificationRequestDto as bX, OfferRequestDto as bY, OfferResponse as bZ, ParResponseDto as b_, InteractiveAuthorizationRequestDto as ba, InternalTrustListEntity as bb, IssuanceConfig as bc, IssuanceConfigControllerGetIssuanceConfigurationsData as bd, IssuanceConfigControllerGetIssuanceConfigurationsResponse as be, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bf, IssuanceConfigControllerStoreIssuanceConfigurationData as bg, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bh, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bi, IssuanceDto as bj, IssuerMetadataCredentialConfig as bk, JwksResponseDto as bl, KeyChainControllerCreateData as bm, KeyChainControllerCreateResponses as bn, KeyChainControllerDeleteData as bo, KeyChainControllerDeleteErrors as bp, KeyChainControllerDeleteResponses as bq, KeyChainControllerExportData as br, KeyChainControllerExportErrors as bs, KeyChainControllerExportResponse as bt, KeyChainControllerExportResponses as bu, KeyChainControllerGetAllData as bv, KeyChainControllerGetAllResponse as bw, KeyChainControllerGetAllResponses as bx, KeyChainControllerGetByIdData as by, KeyChainControllerGetByIdErrors as bz, AppControllerGetVersionResponses as c, SessionControllerGetSessionLogsData as c$, PresentationAttachment as c0, PresentationConfig as c1, PresentationConfigCreateDto as c2, PresentationConfigUpdateDto as c3, PresentationDuringIssuanceConfig as c4, PresentationManagementControllerConfigurationData as c5, PresentationManagementControllerConfigurationResponse as c6, PresentationManagementControllerConfigurationResponses as c7, PresentationManagementControllerDeleteConfigurationData as c8, PresentationManagementControllerDeleteConfigurationResponses as c9, RegistrarControllerGetConfigResponses as cA, RegistrarControllerUpdateConfigData as cB, RegistrarControllerUpdateConfigErrors as cC, RegistrarControllerUpdateConfigResponse as cD, RegistrarControllerUpdateConfigResponses as cE, RegistrationCertificateRequest as cF, RoleDto as cG, RootOfTrustPolicy as cH, RotationPolicyCreateDto as cI, RotationPolicyImportDto as cJ, RotationPolicyResponseDto as cK, RotationPolicyUpdateDto as cL, SchemaResponse as cM, SessionConfigControllerGetConfigData as cN, SessionConfigControllerGetConfigResponse as cO, SessionConfigControllerGetConfigResponses as cP, SessionConfigControllerResetConfigData as cQ, SessionConfigControllerResetConfigResponses as cR, SessionConfigControllerUpdateConfigData as cS, SessionConfigControllerUpdateConfigResponse as cT, SessionConfigControllerUpdateConfigResponses as cU, SessionControllerDeleteSessionData as cV, SessionControllerDeleteSessionResponses as cW, SessionControllerGetAllSessionsData as cX, SessionControllerGetAllSessionsResponse as cY, SessionControllerGetAllSessionsResponses as cZ, SessionControllerGetSessionData as c_, PresentationManagementControllerGetConfigurationData as ca, PresentationManagementControllerGetConfigurationResponse as cb, PresentationManagementControllerGetConfigurationResponses as cc, PresentationManagementControllerStorePresentationConfigData as cd, PresentationManagementControllerStorePresentationConfigResponse as ce, PresentationManagementControllerStorePresentationConfigResponses as cf, PresentationManagementControllerUpdateConfigurationData as cg, PresentationManagementControllerUpdateConfigurationResponse as ch, PresentationManagementControllerUpdateConfigurationResponses as ci, PresentationRequest as cj, PublicKeyInfoDto as ck, RegistrarConfigEntity as cl, RegistrarControllerCreateAccessCertificateData as cm, RegistrarControllerCreateAccessCertificateErrors as cn, RegistrarControllerCreateAccessCertificateResponse as co, RegistrarControllerCreateAccessCertificateResponses as cp, RegistrarControllerCreateConfigData as cq, RegistrarControllerCreateConfigErrors as cr, RegistrarControllerCreateConfigResponse as cs, RegistrarControllerCreateConfigResponses as ct, RegistrarControllerDeleteConfigData as cu, RegistrarControllerDeleteConfigResponse as cv, RegistrarControllerDeleteConfigResponses as cw, RegistrarControllerGetConfigData as cx, RegistrarControllerGetConfigErrors as cy, RegistrarControllerGetConfigResponse as cz, AttestationBasedPolicy as d, TrustListControllerCreateTrustListResponses as d$, SessionControllerGetSessionLogsResponse as d0, SessionControllerGetSessionLogsResponses as d1, SessionControllerGetSessionResponse as d2, SessionControllerGetSessionResponses as d3, SessionControllerRevokeAllData as d4, SessionControllerRevokeAllResponses as d5, SessionEventsControllerSubscribeToSessionEventsData as d6, SessionEventsControllerSubscribeToSessionEventsResponses as d7, SessionLogEntryResponseDto as d8, SessionStorageConfig as d9, StatusListManagementControllerUpdateListResponse as dA, StatusListManagementControllerUpdateListResponses as dB, StatusListResponseDto as dC, StatusUpdateDto as dD, StorageControllerUploadData as dE, StorageControllerUploadResponse as dF, StorageControllerUploadResponses as dG, TenantControllerDeleteTenantData as dH, TenantControllerDeleteTenantResponses as dI, TenantControllerGetTenantData as dJ, TenantControllerGetTenantResponse as dK, TenantControllerGetTenantResponses as dL, TenantControllerGetTenantsData as dM, TenantControllerGetTenantsResponse as dN, TenantControllerGetTenantsResponses as dO, TenantControllerInitTenantData as dP, TenantControllerInitTenantResponse as dQ, TenantControllerInitTenantResponses as dR, TenantControllerUpdateTenantData as dS, TenantControllerUpdateTenantResponse as dT, TenantControllerUpdateTenantResponses as dU, TenantEntity as dV, TokenResponse as dW, TransactionData as dX, TrustList as dY, TrustListControllerCreateTrustListData as dZ, TrustListControllerCreateTrustListResponse as d_, StatusListAggregationDto as da, StatusListConfig as db, StatusListConfigControllerGetConfigData as dc, StatusListConfigControllerGetConfigResponse as dd, StatusListConfigControllerGetConfigResponses as de, StatusListConfigControllerResetConfigData as df, StatusListConfigControllerResetConfigResponse as dg, StatusListConfigControllerResetConfigResponses as dh, StatusListConfigControllerUpdateConfigData as di, StatusListConfigControllerUpdateConfigResponse as dj, StatusListConfigControllerUpdateConfigResponses as dk, StatusListImportDto as dl, StatusListManagementControllerCreateListData as dm, StatusListManagementControllerCreateListResponse as dn, StatusListManagementControllerCreateListResponses as dp, StatusListManagementControllerDeleteListData as dq, StatusListManagementControllerDeleteListResponse as dr, StatusListManagementControllerDeleteListResponses as ds, StatusListManagementControllerGetListData as dt, StatusListManagementControllerGetListResponse as du, StatusListManagementControllerGetListResponses as dv, StatusListManagementControllerGetListsData as dw, StatusListManagementControllerGetListsResponse as dx, StatusListManagementControllerGetListsResponses as dy, StatusListManagementControllerUpdateListData as dz, AttributeProviderControllerCreateData as e, TrustListControllerDeleteTrustListData as e0, TrustListControllerDeleteTrustListResponses as e1, TrustListControllerExportTrustListData as e2, TrustListControllerExportTrustListResponse as e3, TrustListControllerExportTrustListResponses as e4, TrustListControllerGetAllTrustListsData as e5, TrustListControllerGetAllTrustListsResponse as e6, TrustListControllerGetAllTrustListsResponses as e7, TrustListControllerGetTrustListData as e8, TrustListControllerGetTrustListResponse as e9, VerifierOfferControllerGetOfferResponses as eA, WebHookAuthConfigHeader as eB, WebHookAuthConfigNone as eC, WebhookConfig as eD, WebhookEndpointControllerCreateData as eE, WebhookEndpointControllerCreateResponses as eF, WebhookEndpointControllerDeleteData as eG, WebhookEndpointControllerDeleteErrors as eH, WebhookEndpointControllerDeleteResponses as eI, WebhookEndpointControllerGetAllData as eJ, WebhookEndpointControllerGetAllResponses as eK, WebhookEndpointControllerGetByIdData as eL, WebhookEndpointControllerGetByIdErrors as eM, WebhookEndpointControllerGetByIdResponses as eN, WebhookEndpointControllerUpdateData as eO, WebhookEndpointControllerUpdateErrors as eP, WebhookEndpointControllerUpdateResponses as eQ, WebhookEndpointEntity as eR, TrustListControllerGetTrustListResponses as ea, TrustListControllerGetTrustListVersionData as eb, TrustListControllerGetTrustListVersionResponse as ec, TrustListControllerGetTrustListVersionResponses as ed, TrustListControllerGetTrustListVersionsData as ee, TrustListControllerGetTrustListVersionsResponse as ef, TrustListControllerGetTrustListVersionsResponses as eg, TrustListControllerUpdateTrustListData as eh, TrustListControllerUpdateTrustListResponse as ei, TrustListControllerUpdateTrustListResponses as ej, TrustListCreateDto as ek, TrustListEntityInfo as el, TrustListVersion as em, TrustedAuthorityQuery as en, UpdateAttributeProviderDto as eo, UpdateClientDto as ep, UpdateRegistrarConfigDto as eq, UpdateSessionConfigDto as er, UpdateStatusListConfigDto as es, UpdateStatusListDto as et, UpdateTenantDto as eu, UpdateWebhookEndpointDto as ev, UpstreamOidcConfig as ew, Vct as ex, VerifierOfferControllerGetOfferData as ey, VerifierOfferControllerGetOfferResponse as ez, AttributeProviderControllerCreateResponses as f, AttributeProviderControllerDeleteData as g, AttributeProviderControllerDeleteErrors as h, AttributeProviderControllerDeleteResponses as i, AttributeProviderControllerGetAllData as j, AttributeProviderControllerGetAllResponses as k, AttributeProviderControllerGetByIdData as l, AttributeProviderControllerGetByIdErrors as m, AttributeProviderControllerGetByIdResponses as n, AttributeProviderControllerUpdateData as o, AttributeProviderControllerUpdateErrors as p, AttributeProviderControllerUpdateResponses as q, AttributeProviderEntity as r, AuthenticationMethodAuth as s, AuthenticationMethodNone as t, AuthenticationMethodPresentation as u, AuthenticationUrlConfig as v, AuthorizationResponse as w, AuthorizeQueries as x, CacheControllerClearAllCachesResponse as y, CacheControllerClearAllCachesResponses as z };