@eudiplo/sdk-core 4.3.0 → 4.5.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.
@@ -25,7 +25,7 @@ type RoleDto = {
25
25
  /**
26
26
  * OAuth2 roles
27
27
  */
28
- role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage";
28
+ role: 'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage';
29
29
  };
30
30
  type ClientCredentialsDto = {
31
31
  grant_type?: string;
@@ -37,6 +37,7 @@ type TokenResponse = {
37
37
  refresh_token?: string;
38
38
  token_type: string;
39
39
  expires_in: number;
40
+ state: string;
40
41
  };
41
42
  type ImportTenantDto = {
42
43
  /**
@@ -56,7 +57,7 @@ type SessionStorageConfig = {
56
57
  /**
57
58
  * Cleanup mode: 'full' deletes everything, 'anonymize' keeps metadata but removes PII.
58
59
  */
59
- cleanupMode?: "full" | "anonymize";
60
+ cleanupMode?: 'full' | 'anonymize';
60
61
  };
61
62
  type StatusListConfig = {
62
63
  /**
@@ -138,7 +139,7 @@ type ClientEntity = {
138
139
  /**
139
140
  * The roles assigned to the client.
140
141
  */
141
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
142
+ roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
142
143
  /**
143
144
  * The tenant that the client belongs to.
144
145
  */
@@ -165,7 +166,7 @@ type CreateTenantDto = {
165
166
  * Session storage configuration. Controls TTL and cleanup behavior.
166
167
  */
167
168
  sessionConfig?: SessionStorageConfig;
168
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
169
+ roles?: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
169
170
  };
170
171
  type UpdateTenantDto = {
171
172
  /**
@@ -184,7 +185,24 @@ type UpdateTenantDto = {
184
185
  * Session storage configuration. Controls TTL and cleanup behavior.
185
186
  */
186
187
  sessionConfig?: SessionStorageConfig;
187
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
188
+ roles?: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
189
+ };
190
+ type AuditLogResponseDto = {
191
+ id: string;
192
+ tenantId: string;
193
+ actionType: 'tenant_created' | 'tenant_updated' | 'tenant_deleted' | 'presentation_config_created' | 'presentation_config_updated' | 'presentation_config_deleted' | 'issuance_config_updated' | 'credential_config_created' | 'credential_config_updated' | 'credential_config_deleted' | 'status_list_config_updated' | 'status_list_config_reset' | 'webhook_endpoint_created' | 'webhook_endpoint_updated' | 'webhook_endpoint_deleted' | 'attribute_provider_created' | 'attribute_provider_updated' | 'attribute_provider_deleted';
194
+ actorType: 'user' | 'client' | 'system';
195
+ actorId?: string;
196
+ actorDisplay?: string;
197
+ changedFields?: Array<string>;
198
+ before?: {
199
+ [key: string]: unknown;
200
+ };
201
+ after?: {
202
+ [key: string]: unknown;
203
+ };
204
+ requestId?: string;
205
+ timestamp: string;
188
206
  };
189
207
  type ClientSecretResponseDto = {
190
208
  secret: string;
@@ -205,7 +223,7 @@ type UpdateClientDto = {
205
223
  /**
206
224
  * The roles assigned to the client.
207
225
  */
208
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
226
+ roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
209
227
  };
210
228
  type CreateClientDto = {
211
229
  /**
@@ -231,7 +249,7 @@ type CreateClientDto = {
231
249
  /**
232
250
  * The roles assigned to the client.
233
251
  */
234
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
252
+ roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
235
253
  };
236
254
  type StatusListImportDto = {
237
255
  /**
@@ -383,21 +401,21 @@ type OfferRequestDto = {
383
401
  /**
384
402
  * The type of response expected for the offer request.
385
403
  */
386
- response_type: "uri" | "dc-api";
404
+ response_type: 'uri' | 'dc-api';
387
405
  /**
388
406
  * Credential claims configuration per credential. Keys must match credentialConfigurationIds.
389
407
  */
390
408
  credentialClaims?: {
391
- additionalProperties?: {
392
- type: "inline";
409
+ [key: string]: {
410
+ type: 'inline';
393
411
  claims: {
394
412
  [key: string]: unknown;
395
413
  };
396
414
  } | {
397
- type: "attributeProvider";
415
+ type: 'attributeProvider';
398
416
  attributeProviderId: string;
399
417
  } | {
400
- type: "webhook";
418
+ type: 'webhook';
401
419
  webhook: {
402
420
  url: string;
403
421
  auth?: {
@@ -409,7 +427,7 @@ type OfferRequestDto = {
409
427
  /**
410
428
  * The flow type for the offer request.
411
429
  */
412
- flow: "authorization_code" | "pre_authorized_code";
430
+ flow: 'authorization_code' | 'pre_authorized_code';
413
431
  /**
414
432
  * Transaction code for pre-authorized code flow.
415
433
  */
@@ -435,7 +453,7 @@ type WebHookAuthConfigNone = {
435
453
  /**
436
454
  * The type of authentication used for the webhook.
437
455
  */
438
- type: "none";
456
+ type: 'none';
439
457
  };
440
458
  type ApiKeyConfig = {
441
459
  /**
@@ -451,7 +469,7 @@ type WebHookAuthConfigHeader = {
451
469
  /**
452
470
  * The type of authentication used for the webhook.
453
471
  */
454
- type: "apiKey";
472
+ type: 'apiKey';
455
473
  /**
456
474
  * Configuration for API key authentication.
457
475
  * This is required if the type is 'apiKey'.
@@ -481,7 +499,7 @@ type Session = {
481
499
  /**
482
500
  * Status of the session.
483
501
  */
484
- status: "active" | "fetched" | "completed" | "expired" | "failed";
502
+ status: 'active' | 'fetched' | 'completed' | 'expired' | 'failed';
485
503
  /**
486
504
  * Unique identifier for the session.
487
505
  */
@@ -638,6 +656,28 @@ type Session = {
638
656
  */
639
657
  consumedAt?: string;
640
658
  };
659
+ type PaginatedSessionResponseDto = {
660
+ /**
661
+ * The sessions for the current page.
662
+ */
663
+ items: Array<Session>;
664
+ /**
665
+ * Total number of sessions matching the query
666
+ */
667
+ total: number;
668
+ /**
669
+ * Current page number (1-based)
670
+ */
671
+ page: number;
672
+ /**
673
+ * Number of items per page
674
+ */
675
+ pageSize: number;
676
+ /**
677
+ * Total number of pages
678
+ */
679
+ totalPages: number;
680
+ };
641
681
  type SessionLogEntryResponseDto = {
642
682
  /**
643
683
  * Log entry ID
@@ -654,7 +694,7 @@ type SessionLogEntryResponseDto = {
654
694
  /**
655
695
  * Log level
656
696
  */
657
- level: "info" | "warn" | "error";
697
+ level: 'info' | 'warn' | 'error';
658
698
  /**
659
699
  * Flow stage
660
700
  */
@@ -694,14 +734,14 @@ type UpdateSessionConfigDto = {
694
734
  /**
695
735
  * Cleanup mode: 'full' deletes everything, 'anonymize' keeps metadata but removes PII.
696
736
  */
697
- cleanupMode?: "full" | "anonymize";
737
+ cleanupMode?: 'full' | 'anonymize';
698
738
  };
699
739
  type ManagedUserDto = {
700
740
  id: string;
701
741
  username: string;
702
742
  email?: string;
703
743
  enabled: boolean;
704
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
744
+ roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
705
745
  tenantId?: string;
706
746
  /**
707
747
  * One-time temporary password returned only on user creation.
@@ -711,7 +751,7 @@ type ManagedUserDto = {
711
751
  type CreateUserDto = {
712
752
  username: string;
713
753
  email?: string;
714
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
754
+ roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
715
755
  /**
716
756
  * One-time temporary password returned only on user creation.
717
757
  */
@@ -721,7 +761,7 @@ type CreateUserDto = {
721
761
  type UpdateUserDto = {
722
762
  username?: string;
723
763
  email?: string;
724
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
764
+ roles?: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
725
765
  /**
726
766
  * One-time temporary password returned only on user creation.
727
767
  */
@@ -730,7 +770,7 @@ type UpdateUserDto = {
730
770
  password?: string;
731
771
  };
732
772
  type AuthenticationMethodNone = {
733
- method: "none";
773
+ method: 'none';
734
774
  };
735
775
  type AuthenticationUrlConfig = {
736
776
  /**
@@ -744,7 +784,7 @@ type AuthenticationUrlConfig = {
744
784
  webhook?: WebhookConfig;
745
785
  };
746
786
  type AuthenticationMethodAuth = {
747
- method: "auth";
787
+ method: 'auth';
748
788
  config: AuthenticationUrlConfig;
749
789
  };
750
790
  type PresentationDuringIssuanceConfig = {
@@ -754,7 +794,7 @@ type PresentationDuringIssuanceConfig = {
754
794
  type: string;
755
795
  };
756
796
  type AuthenticationMethodPresentation = {
757
- method: "presentationDuringIssuance";
797
+ method: 'presentationDuringIssuance';
758
798
  config: PresentationDuringIssuanceConfig;
759
799
  };
760
800
  type UpstreamOidcConfig = {
@@ -803,6 +843,42 @@ type ChainedAsConfig = {
803
843
  */
804
844
  requireDPoP?: boolean;
805
845
  };
846
+ type FederationTrustAnchorConfig = {
847
+ /**
848
+ * Entity identifier (sub) of the federation trust anchor.
849
+ */
850
+ entityId: string;
851
+ /**
852
+ * Federation endpoint URL for the trust anchor entity configuration.
853
+ */
854
+ entityConfigurationUri: string;
855
+ };
856
+ type FederationConfig = {
857
+ /**
858
+ * Role this tenant plays in the OpenID Federation topology.
859
+ */
860
+ role?: 'trust_anchor' | 'intermediate' | 'leaf';
861
+ /**
862
+ * Trust decision strategy when both LoTE trust lists and OpenID Federation are configured.
863
+ */
864
+ mode?: 'federation-only' | 'hybrid';
865
+ /**
866
+ * Entity identifier of this issuer/verifier in the federation.
867
+ */
868
+ entityId?: string;
869
+ /**
870
+ * Whether federation checks are enforced for upstream metadata and signer trust decisions.
871
+ */
872
+ enforceSigningPolicy?: boolean;
873
+ /**
874
+ * Cache TTL in seconds for federation entity statements and trust chain results.
875
+ */
876
+ cacheTtlSeconds?: number;
877
+ /**
878
+ * Configured federation trust anchors.
879
+ */
880
+ trustAnchors: Array<FederationTrustAnchorConfig>;
881
+ };
806
882
  type DisplayLogo = {
807
883
  uri: string;
808
884
  alt_text?: string;
@@ -823,6 +899,11 @@ type IssuanceConfig = {
823
899
  * to an upstream OIDC provider while issuing its own tokens with issuer_state.
824
900
  */
825
901
  chainedAs?: ChainedAsConfig;
902
+ /**
903
+ * Optional OpenID Federation configuration used for trust evaluation.
904
+ * When omitted, trust checks rely on existing LoTE trust-list behavior.
905
+ */
906
+ federation?: FederationConfig;
826
907
  /**
827
908
  * Whether refresh tokens should be issued for OID4VCI token responses.
828
909
  */
@@ -900,6 +981,11 @@ type IssuanceDto = {
900
981
  * to an upstream OIDC provider while issuing its own tokens with issuer_state.
901
982
  */
902
983
  chainedAs?: ChainedAsConfig;
984
+ /**
985
+ * Optional OpenID Federation configuration used for trust evaluation.
986
+ * When omitted, trust checks rely on existing LoTE trust-list behavior.
987
+ */
988
+ federation?: FederationConfig;
903
989
  /**
904
990
  * Whether refresh tokens should be issued for OID4VCI token responses.
905
991
  */
@@ -960,7 +1046,7 @@ type ClaimsQuery = {
960
1046
  values?: Array<string>;
961
1047
  };
962
1048
  type TrustedAuthorityQuery = {
963
- type: "aki" | "etsi_tl";
1049
+ type: 'etsi_tl' | 'openid_federation';
964
1050
  values: Array<string>;
965
1051
  };
966
1052
  type CredentialQuery = {
@@ -983,18 +1069,18 @@ type PolicyCredential = {
983
1069
  credential_sets?: Array<CredentialSetQuery>;
984
1070
  };
985
1071
  type AttestationBasedPolicy = {
986
- policy: "attestationBased";
1072
+ policy: 'attestationBased';
987
1073
  values: Array<PolicyCredential>;
988
1074
  };
989
1075
  type NoneTrustPolicy = {
990
- policy: "none";
1076
+ policy: 'none';
991
1077
  };
992
1078
  type AllowListPolicy = {
993
- policy: "allowList";
1079
+ policy: 'allowList';
994
1080
  values: Array<string>;
995
1081
  };
996
1082
  type RootOfTrustPolicy = {
997
- policy: "rootOfTrust";
1083
+ policy: 'rootOfTrust';
998
1084
  values: string;
999
1085
  };
1000
1086
  type Vct = {
@@ -1002,15 +1088,15 @@ type Vct = {
1002
1088
  name?: string;
1003
1089
  description?: string;
1004
1090
  extends?: string;
1005
- "extends#integrity"?: string;
1091
+ 'extends#integrity'?: string;
1006
1092
  schema_uri?: string;
1007
- "schema_uri#integrity"?: string;
1093
+ 'schema_uri#integrity'?: string;
1008
1094
  };
1009
1095
  type IaeActionOpenid4VpPresentation = {
1010
1096
  /**
1011
1097
  * Action type discriminator
1012
1098
  */
1013
- type: "openid4vp_presentation";
1099
+ type: 'openid4vp_presentation';
1014
1100
  /**
1015
1101
  * Optional label for this step (for display purposes)
1016
1102
  */
@@ -1024,7 +1110,7 @@ type IaeActionRedirectToWeb = {
1024
1110
  /**
1025
1111
  * Action type discriminator
1026
1112
  */
1027
- type: "redirect_to_web";
1113
+ type: 'redirect_to_web';
1028
1114
  /**
1029
1115
  * Optional label for this step (for display purposes)
1030
1116
  */
@@ -1070,7 +1156,7 @@ type SchemaUriEntry = {
1070
1156
  /**
1071
1157
  * Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
1072
1158
  */
1073
- metadata: {
1159
+ meta: {
1074
1160
  [key: string]: unknown;
1075
1161
  };
1076
1162
  };
@@ -1082,7 +1168,7 @@ type TrustAuthorityEntry = {
1082
1168
  /**
1083
1169
  * Trust framework type (ignored when trustListId is set)
1084
1170
  */
1085
- frameworkType?: "aki" | "etsi_tl" | "openid_federation";
1171
+ frameworkType?: 'aki' | 'etsi_tl' | 'openid_federation';
1086
1172
  /**
1087
1173
  * URI of the trust list or trust anchor (ignored when trustListId is set)
1088
1174
  */
@@ -1114,11 +1200,11 @@ type SchemaMetaConfig = {
1114
1200
  /**
1115
1201
  * Attestation Level of Security
1116
1202
  */
1117
- attestationLoS?: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
1203
+ attestationLoS?: 'iso_18045_high' | 'iso_18045_moderate' | 'iso_18045_enhanced-basic' | 'iso_18045_basic';
1118
1204
  /**
1119
1205
  * Cryptographic binding type
1120
1206
  */
1121
- bindingType?: "claim" | "key" | "biometric" | "none";
1207
+ bindingType?: 'claim' | 'key' | 'biometric' | 'none';
1122
1208
  /**
1123
1209
  * Schema URIs per attestation format. When omitted, the format is derived from the credential config format field.
1124
1210
  */
@@ -1153,77 +1239,70 @@ type Display = {
1153
1239
  background_image?: DisplayImage;
1154
1240
  logo?: DisplayImage;
1155
1241
  };
1156
- type ClaimDisplayInfo = {
1242
+ type IssuerMetadataCredentialConfig = {
1157
1243
  /**
1158
- * Human-readable name for the claim
1244
+ * Key attestation requirements for JWT proofs for this credential.
1245
+ * When set, this is published in proof_types_supported.jwt.key_attestations_required
1246
+ * for this specific credential configuration.
1159
1247
  */
1160
- name?: string;
1248
+ keyAttestationsRequired?: KeyAttestationsRequired;
1249
+ format: 'mso_mdoc' | 'dc+sd-jwt';
1250
+ display: Array<Display>;
1251
+ scope?: string;
1161
1252
  /**
1162
- * Locale identifier (e.g., en-US, de-DE)
1253
+ * Document type for mDOC credentials (e.g., "org.iso.18013.5.1.mDL").
1254
+ * Only applicable when format is "mso_mdoc".
1163
1255
  */
1164
- locale?: string;
1256
+ docType?: string;
1165
1257
  };
1166
- type ClaimMetadata = {
1258
+ type FieldDisplayDto = {
1167
1259
  /**
1168
- * Path to the claim. For SD-JWT: JSONPath-like array. For mDOC: [namespace, claim_name]
1260
+ * Locale code based on BCP47 (RFC 5646)
1169
1261
  */
1170
- path: Array<string>;
1262
+ locale: string;
1171
1263
  /**
1172
- * Whether this claim must be disclosed
1264
+ * Display name
1173
1265
  */
1174
- mandatory?: boolean;
1266
+ name: string;
1175
1267
  /**
1176
- * Display information for the claim in different locales
1268
+ * Optional display description
1177
1269
  */
1178
- display?: Array<ClaimDisplayInfo>;
1270
+ description?: string;
1179
1271
  };
1180
- type IssuerMetadataCredentialConfig = {
1272
+ type ClaimFieldDefinitionDto = {
1181
1273
  /**
1182
- * Key attestation requirements for JWT proofs for this credential.
1183
- * When set, this is published in proof_types_supported.jwt.key_attestations_required
1184
- * for this specific credential configuration.
1274
+ * Path to claim value
1185
1275
  */
1186
- keyAttestationsRequired?: KeyAttestationsRequired;
1187
- format: "mso_mdoc" | "dc+sd-jwt";
1188
- display: Array<Display>;
1189
- scope?: string;
1276
+ path: Array<string | number | null>;
1190
1277
  /**
1191
- * Document type for mDOC credentials (e.g., "org.iso.18013.5.1.mDL").
1192
- * Only applicable when format is "mso_mdoc".
1278
+ * Claim value type
1193
1279
  */
1194
- docType?: string;
1280
+ type: 'string' | 'number' | 'integer' | 'boolean' | 'object' | 'array' | 'date';
1195
1281
  /**
1196
- * Namespace for mDOC credentials (e.g., "org.iso.18013.5.1").
1197
- * Only applicable when format is "mso_mdoc".
1198
- * Used when claims are provided as a flat object.
1282
+ * Default value
1283
+ */
1284
+ defaultValue?: string | number | boolean | {
1285
+ [key: string]: unknown;
1286
+ } | Array<unknown> | null;
1287
+ /**
1288
+ * Whether claim is mandatory
1289
+ */
1290
+ mandatory?: boolean;
1291
+ /**
1292
+ * Whether claim is disclosable in SD-JWT
1293
+ */
1294
+ disclosable?: boolean;
1295
+ /**
1296
+ * Namespace for mDOC field
1199
1297
  */
1200
1298
  namespace?: string;
1299
+ display?: Array<FieldDisplayDto>;
1201
1300
  /**
1202
- * Claims organized by namespace for mDOC credentials.
1203
- * Allows specifying claims across multiple namespaces.
1204
- * Only applicable when format is "mso_mdoc".
1205
- * Example:
1206
- * {
1207
- * "org.iso.18013.5.1": { "given_name": "John", "family_name": "Doe" },
1208
- * "org.iso.18013.5.1.aamva": { "DHS_compliance": "F" }
1209
- * }
1301
+ * Additional JSON schema constraints for this field
1210
1302
  */
1211
- claimsByNamespace?: {
1303
+ constraints?: {
1212
1304
  [key: string]: unknown;
1213
1305
  };
1214
- /**
1215
- * Claims metadata for wallet rendering.
1216
- * Follows the OID4VCI credential_metadata.claims specification.
1217
- * Each claim includes a path (JSONPath-like array), optional mandatory flag,
1218
- * and display information with multi-language support.
1219
- *
1220
- * Example:
1221
- * [
1222
- * { "path": ["given_name"], "mandatory": false, "display": [{ "name": "Given Name", "locale": "en-US" }] },
1223
- * { "path": ["address", "street_address"], "display": [{ "name": "Street Address", "locale": "en-US" }] }
1224
- * ]
1225
- */
1226
- claimsMetadata?: Array<ClaimMetadata>;
1227
1306
  };
1228
1307
  type AttributeProviderEntity = {
1229
1308
  auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
@@ -1255,11 +1334,11 @@ type KeyChainEntity = {
1255
1334
  /**
1256
1335
  * The purpose/role of this key chain in the system.
1257
1336
  */
1258
- usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
1337
+ usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
1259
1338
  /**
1260
1339
  * The usage type of the keys (sign or encrypt).
1261
1340
  */
1262
- usage: "sign" | "encrypt";
1341
+ usage: 'sign' | 'encrypt';
1263
1342
  /**
1264
1343
  * The KMS provider used for this key chain.
1265
1344
  * References a configured KMS provider name.
@@ -1270,7 +1349,7 @@ type KeyChainEntity = {
1270
1349
  * This field stores the provider-specific key reference for the active signing key.
1271
1350
  */
1272
1351
  externalKeyId?: string;
1273
- rootKey?: {
1352
+ rootJwk?: {
1274
1353
  [key: string]: unknown;
1275
1354
  };
1276
1355
  /**
@@ -1278,7 +1357,7 @@ type KeyChainEntity = {
1278
1357
  * Self-signed certificate for the root CA key.
1279
1358
  */
1280
1359
  rootCertificate?: string;
1281
- activeKey: {
1360
+ activeJwk: {
1282
1361
  [key: string]: unknown;
1283
1362
  };
1284
1363
  /**
@@ -1299,7 +1378,7 @@ type KeyChainEntity = {
1299
1378
  * Timestamp of when the key was last rotated.
1300
1379
  */
1301
1380
  lastRotatedAt?: string;
1302
- previousKey?: {
1381
+ previousJwk?: {
1303
1382
  [key: string]: unknown;
1304
1383
  };
1305
1384
  /**
@@ -1317,21 +1396,11 @@ type KeyChainEntity = {
1317
1396
  */
1318
1397
  updatedAt: string;
1319
1398
  };
1320
- type SchemaResponse = {
1321
- $schema: string;
1322
- type: string;
1323
- properties: {
1324
- [key: string]: unknown;
1325
- };
1326
- required?: Array<string>;
1327
- title?: string;
1328
- description?: string;
1329
- };
1330
1399
  type CredentialConfig = {
1331
1400
  /**
1332
1401
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1333
1402
  */
1334
- vct?: string | Vct;
1403
+ vct?: string | Vct | null;
1335
1404
  /**
1336
1405
  * List of IAE actions to execute before credential issuance
1337
1406
  */
@@ -1358,9 +1427,8 @@ type CredentialConfig = {
1358
1427
  */
1359
1428
  tenant: TenantEntity;
1360
1429
  config: IssuerMetadataCredentialConfig;
1361
- claims?: {
1362
- [key: string]: unknown;
1363
- };
1430
+ configVersion: number;
1431
+ fields: Array<ClaimFieldDefinitionDto>;
1364
1432
  /**
1365
1433
  * Reference to the attribute provider used for fetching claims.
1366
1434
  * Optional: if set, claims will be fetched from this provider during issuance.
@@ -1373,9 +1441,6 @@ type CredentialConfig = {
1373
1441
  */
1374
1442
  webhookEndpointId?: string;
1375
1443
  webhookEndpoint?: WebhookEndpointEntity;
1376
- disclosureFrame?: {
1377
- [key: string]: unknown;
1378
- };
1379
1444
  keyBinding?: boolean;
1380
1445
  /**
1381
1446
  * Reference to the key chain used for signing.
@@ -1384,14 +1449,19 @@ type CredentialConfig = {
1384
1449
  keyChainId?: string;
1385
1450
  keyChain?: KeyChainEntity;
1386
1451
  statusManagement?: boolean;
1452
+ /**
1453
+ * For SD-JWT credentials: determines whether to include certificate chain (x5c)
1454
+ * or use federation-based trust (iss claim).
1455
+ * Default: "x5c" (federation must be explicitly selected)
1456
+ */
1457
+ sdJwtTrustFormat?: 'x5c' | 'federation';
1387
1458
  lifeTime?: number;
1388
- schema?: SchemaResponse;
1389
1459
  };
1390
1460
  type CredentialConfigCreate = {
1391
1461
  /**
1392
1462
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1393
1463
  */
1394
- vct?: string | Vct;
1464
+ vct?: string | Vct | null;
1395
1465
  /**
1396
1466
  * List of IAE actions to execute before credential issuance
1397
1467
  */
@@ -1414,9 +1484,8 @@ type CredentialConfigCreate = {
1414
1484
  id: string;
1415
1485
  description?: string;
1416
1486
  config: IssuerMetadataCredentialConfig;
1417
- claims?: {
1418
- [key: string]: unknown;
1419
- };
1487
+ configVersion: number;
1488
+ fields: Array<ClaimFieldDefinitionDto>;
1420
1489
  /**
1421
1490
  * Reference to the attribute provider used for fetching claims.
1422
1491
  * Optional: if set, claims will be fetched from this provider during issuance.
@@ -1427,9 +1496,6 @@ type CredentialConfigCreate = {
1427
1496
  * Optional: if set, notifications will be sent to this endpoint.
1428
1497
  */
1429
1498
  webhookEndpointId?: string;
1430
- disclosureFrame?: {
1431
- [key: string]: unknown;
1432
- };
1433
1499
  keyBinding?: boolean;
1434
1500
  /**
1435
1501
  * Reference to the key chain used for signing.
@@ -1437,14 +1503,19 @@ type CredentialConfigCreate = {
1437
1503
  */
1438
1504
  keyChainId?: string;
1439
1505
  statusManagement?: boolean;
1506
+ /**
1507
+ * For SD-JWT credentials: determines whether to include certificate chain (x5c)
1508
+ * or use federation-based trust (iss claim).
1509
+ * Default: "x5c" (federation must be explicitly selected)
1510
+ */
1511
+ sdJwtTrustFormat?: 'x5c' | 'federation';
1440
1512
  lifeTime?: number;
1441
- schema?: SchemaResponse;
1442
1513
  };
1443
1514
  type CredentialConfigUpdate = {
1444
1515
  /**
1445
1516
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1446
1517
  */
1447
- vct?: string | Vct;
1518
+ vct?: string | Vct | null;
1448
1519
  /**
1449
1520
  * List of IAE actions to execute before credential issuance
1450
1521
  */
@@ -1467,9 +1538,8 @@ type CredentialConfigUpdate = {
1467
1538
  id?: string;
1468
1539
  description?: string;
1469
1540
  config?: IssuerMetadataCredentialConfig;
1470
- claims?: {
1471
- [key: string]: unknown;
1472
- };
1541
+ configVersion?: number;
1542
+ fields?: Array<ClaimFieldDefinitionDto>;
1473
1543
  /**
1474
1544
  * Reference to the attribute provider used for fetching claims.
1475
1545
  * Optional: if set, claims will be fetched from this provider during issuance.
@@ -1480,9 +1550,6 @@ type CredentialConfigUpdate = {
1480
1550
  * Optional: if set, notifications will be sent to this endpoint.
1481
1551
  */
1482
1552
  webhookEndpointId?: string;
1483
- disclosureFrame?: {
1484
- [key: string]: unknown;
1485
- };
1486
1553
  keyBinding?: boolean;
1487
1554
  /**
1488
1555
  * Reference to the key chain used for signing.
@@ -1490,8 +1557,13 @@ type CredentialConfigUpdate = {
1490
1557
  */
1491
1558
  keyChainId?: string;
1492
1559
  statusManagement?: boolean;
1560
+ /**
1561
+ * For SD-JWT credentials: determines whether to include certificate chain (x5c)
1562
+ * or use federation-based trust (iss claim).
1563
+ * Default: "x5c" (federation must be explicitly selected)
1564
+ */
1565
+ sdJwtTrustFormat?: 'x5c' | 'federation';
1493
1566
  lifeTime?: number;
1494
- schema?: SchemaResponse;
1495
1567
  };
1496
1568
  type SignSchemaMetaConfigDto = {
1497
1569
  /**
@@ -1517,141 +1589,334 @@ type SignVersionSchemaMetaConfigDto = {
1517
1589
  */
1518
1590
  keyChainId?: string;
1519
1591
  };
1520
- type CreateAttributeProviderDto = {
1521
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1522
- id: string;
1523
- name: string;
1524
- description?: string;
1525
- url: string;
1526
- };
1527
- type UpdateAttributeProviderDto = {
1528
- auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1529
- id?: string;
1530
- name?: string;
1531
- description?: string;
1532
- url?: string;
1533
- };
1534
- type CreateWebhookEndpointDto = {
1592
+ type VocabularyEntryDto = {
1535
1593
  /**
1536
- * Unique identifier for the webhook endpoint
1594
+ * Stable machine-readable value to submit in schema metadata category/tags fields.
1537
1595
  */
1538
- id: string;
1539
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1540
- name: string;
1541
- description?: string;
1542
- url: string;
1543
- };
1544
- type UpdateWebhookEndpointDto = {
1596
+ code: string;
1545
1597
  /**
1546
- * Unique identifier for the webhook endpoint
1598
+ * Display label for UI rendering.
1547
1599
  */
1548
- id?: string;
1549
- auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1550
- name?: string;
1551
- description?: string;
1552
- url?: string;
1553
- };
1554
- type TrustListEntityInfo = {
1555
- name: string;
1556
- lang?: string;
1557
- uri?: string;
1558
- country?: string;
1559
- locality?: string;
1560
- postalCode?: string;
1561
- streetAddress?: string;
1562
- contactUri?: string;
1563
- };
1564
- type InternalTrustListEntity = {
1565
- type: "internal";
1566
- issuerKeyChainId: string;
1567
- revocationKeyChainId: string;
1568
- info: TrustListEntityInfo;
1569
- };
1570
- type ExternalTrustListEntity = {
1571
- type: "external";
1572
- issuerCertPem: string;
1573
- revocationCertPem: string;
1574
- info: TrustListEntityInfo;
1600
+ label: string;
1601
+ /**
1602
+ * Vocabulary lifecycle status.
1603
+ */
1604
+ status: 'active' | 'deprecated';
1605
+ /**
1606
+ * Replacement code when status is deprecated.
1607
+ */
1608
+ replacedBy?: string;
1575
1609
  };
1576
- type TrustListCreateDto = {
1577
- description?: string;
1610
+ type SchemaMetadataVocabulariesDto = {
1578
1611
  /**
1579
- * The full trust list JSON (generated LoTE structure)
1612
+ * Vocabulary publication version for cache invalidation.
1580
1613
  */
1581
- data?: {
1582
- [key: string]: unknown;
1583
- };
1584
- entities: Array<({
1585
- type: "internal";
1586
- } & InternalTrustListEntity) | ({
1587
- type: "external";
1588
- } & ExternalTrustListEntity)>;
1589
- id?: string;
1590
- keyChainId?: string;
1614
+ version: string;
1615
+ /**
1616
+ * Allowed category values that can be used when updating schema metadata category.
1617
+ */
1618
+ categories: Array<VocabularyEntryDto>;
1619
+ /**
1620
+ * Allowed tag values that can be used when updating schema metadata tags.
1621
+ */
1622
+ tags: Array<VocabularyEntryDto>;
1591
1623
  };
1592
- type TrustList = {
1624
+ type MetadataSchemaDto = {
1593
1625
  /**
1594
- * Unique identifier for the trust list
1626
+ * Unique identifier for this schema entry
1595
1627
  */
1596
1628
  id: string;
1597
- description?: string;
1598
1629
  /**
1599
- * The tenant ID for which the VP request is made.
1630
+ * The credential format identifier
1600
1631
  */
1601
- tenantId: string;
1632
+ formatIdentifier: 'dc+sd-jwt' | 'mso_mdoc';
1602
1633
  /**
1603
- * The tenant that owns this object.
1634
+ * URI to the schema definition
1604
1635
  */
1605
- tenant: TenantEntity;
1606
- keyChainId: string;
1607
- keyChain: KeyChainEntity;
1636
+ uri?: string;
1608
1637
  /**
1609
- * The full trust list JSON (generated LoTE structure)
1638
+ * Inline schema content (JSON Schema)
1610
1639
  */
1611
- data?: {
1640
+ schemaContent?: {
1612
1641
  [key: string]: unknown;
1613
1642
  };
1614
1643
  /**
1615
- * The original entity configuration used to create this trust list.
1616
- * Stored for round-tripping when editing.
1644
+ * Subresource Integrity hash for the schema
1617
1645
  */
1618
- entityConfig?: Array<{
1619
- [key: string]: unknown;
1620
- }>;
1646
+ integrity?: string;
1647
+ };
1648
+ type TrustAuthorityDto = {
1621
1649
  /**
1622
- * The sequence number for versioning (incremented on updates)
1650
+ * Unique identifier for this trust authority entry
1623
1651
  */
1624
- sequenceNumber: number;
1652
+ id: string;
1625
1653
  /**
1626
- * The signed JWT representation of this trust list
1654
+ * Type of trust framework
1627
1655
  */
1628
- jwt: string;
1629
- createdAt: string;
1630
- updatedAt: string;
1631
- };
1632
- type TrustListVersion = {
1633
- id: string;
1634
- trustListId: string;
1635
- trustList: TrustList;
1636
- tenantId: string;
1656
+ frameworkType: 'etsi_tl';
1637
1657
  /**
1638
- * The sequence number at the time this version was created
1658
+ * URI or identifier for the trust list / authority
1639
1659
  */
1640
- sequenceNumber: number;
1660
+ value: string;
1641
1661
  /**
1642
- * The full trust list JSON at this version
1662
+ * Verification method for the trust list signature (e.g., JWK)
1643
1663
  */
1644
- data: {
1664
+ verificationMethod?: {
1645
1665
  [key: string]: unknown;
1646
1666
  };
1667
+ };
1668
+ type AccessCertificateRefDto = {
1669
+ id: string;
1670
+ relyingPartyId: string;
1671
+ certificate: string;
1672
+ revoked: string;
1673
+ createdAt: string;
1674
+ };
1675
+ type SchemaMetadataResponseDto = {
1647
1676
  /**
1648
- * The entity configuration at this version
1677
+ * The unique, server-assigned identifier (UUID) for the schema metadata
1649
1678
  */
1650
- entityConfig?: {
1651
- [key: string]: unknown;
1652
- };
1679
+ id: string;
1653
1680
  /**
1654
- * The signed JWT at this version
1681
+ * Version of this schema metadata (SemVer)
1682
+ */
1683
+ version: string;
1684
+ /**
1685
+ * URI of the human-readable Rulebook document
1686
+ */
1687
+ rulebookURI?: string;
1688
+ /**
1689
+ * Subresource Integrity hash for the rulebook URI
1690
+ */
1691
+ rulebookIntegrity?: string;
1692
+ /**
1693
+ * Level of security (LoS) of this attestation
1694
+ */
1695
+ attestationLoS: 'iso_18045_high' | 'iso_18045_moderate' | 'iso_18045_enhanced-basic' | 'iso_18045_basic';
1696
+ /**
1697
+ * Required binding type between attestation and holder
1698
+ */
1699
+ bindingType: 'claim' | 'key' | 'biometric' | 'none';
1700
+ /**
1701
+ * Credential formats in which this attestation is available
1702
+ */
1703
+ supportedFormats: Array<'dc+sd-jwt' | 'mso_mdoc'>;
1704
+ /**
1705
+ * Format-specific schema URIs for this schema metadata
1706
+ */
1707
+ schemaURIs: Array<MetadataSchemaDto>;
1708
+ /**
1709
+ * Trust frameworks / trust anchors applicable to this schema metadata
1710
+ */
1711
+ trustedAuthorities: Array<TrustAuthorityDto>;
1712
+ /**
1713
+ * Domain category for filtering
1714
+ */
1715
+ category?: 'identity' | 'health' | 'finance' | 'education' | 'mobility' | 'employment' | 'other';
1716
+ /**
1717
+ * Free-form tags for filtering and search
1718
+ */
1719
+ tags?: Array<string>;
1720
+ /**
1721
+ * The original signed JWT
1722
+ */
1723
+ signedJwt: string;
1724
+ /**
1725
+ * Issuer from the JWT (`iss` claim)
1726
+ */
1727
+ issuer: string;
1728
+ /**
1729
+ * Serial number of the access certificate that signed this schema metadata
1730
+ */
1731
+ signerCertificateSerial: string;
1732
+ /**
1733
+ * The access certificate used to sign this schema metadata
1734
+ */
1735
+ signerCertificate?: AccessCertificateRefDto;
1736
+ /**
1737
+ * Timestamp when the JWT was issued (from the `iat` claim)
1738
+ */
1739
+ issuedAt: string;
1740
+ /**
1741
+ * Server creation timestamp
1742
+ */
1743
+ createdAt: string;
1744
+ /**
1745
+ * Last update timestamp
1746
+ */
1747
+ updatedAt: string;
1748
+ /**
1749
+ * Whether this version is deprecated
1750
+ */
1751
+ deprecated?: boolean;
1752
+ /**
1753
+ * Deprecation message shown to consumers
1754
+ */
1755
+ deprecationMessage?: string;
1756
+ /**
1757
+ * The version that supersedes this one
1758
+ */
1759
+ supersededByVersion?: string;
1760
+ };
1761
+ type UpdateSchemaMetadataDto = {
1762
+ /**
1763
+ * Domain category for filtering
1764
+ */
1765
+ category?: 'identity' | 'health' | 'finance' | 'education' | 'mobility' | 'employment' | 'other';
1766
+ /**
1767
+ * Predefined tags for filtering and search
1768
+ */
1769
+ tags?: Array<'pid' | 'eudi' | 'kyc' | 'aml' | 'age-verification' | 'residency' | 'membership' | 'education' | 'employment' | 'mobility'>;
1770
+ };
1771
+ type DeprecateSchemaMetadataDto = {
1772
+ /**
1773
+ * Whether to mark this version as deprecated
1774
+ */
1775
+ deprecated: boolean;
1776
+ /**
1777
+ * Deprecation message shown to consumers
1778
+ */
1779
+ message?: string;
1780
+ /**
1781
+ * The version that supersedes this one
1782
+ */
1783
+ supersededByVersion?: string;
1784
+ };
1785
+ type CreateAttributeProviderDto = {
1786
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1787
+ id: string;
1788
+ name: string;
1789
+ description?: string;
1790
+ url: string;
1791
+ };
1792
+ type UpdateAttributeProviderDto = {
1793
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1794
+ id?: string;
1795
+ name?: string;
1796
+ description?: string;
1797
+ url?: string;
1798
+ };
1799
+ type CreateWebhookEndpointDto = {
1800
+ /**
1801
+ * Unique identifier for the webhook endpoint
1802
+ */
1803
+ id: string;
1804
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1805
+ name: string;
1806
+ description?: string;
1807
+ url: string;
1808
+ };
1809
+ type UpdateWebhookEndpointDto = {
1810
+ /**
1811
+ * Unique identifier for the webhook endpoint
1812
+ */
1813
+ id?: string;
1814
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1815
+ name?: string;
1816
+ description?: string;
1817
+ url?: string;
1818
+ };
1819
+ type TrustListEntityInfo = {
1820
+ name: string;
1821
+ lang?: string;
1822
+ uri?: string;
1823
+ country?: string;
1824
+ locality?: string;
1825
+ postalCode?: string;
1826
+ streetAddress?: string;
1827
+ contactUri?: string;
1828
+ };
1829
+ type InternalTrustListEntity = {
1830
+ type: 'internal';
1831
+ issuerKeyChainId: string;
1832
+ revocationKeyChainId: string;
1833
+ info: TrustListEntityInfo;
1834
+ };
1835
+ type ExternalTrustListEntity = {
1836
+ type: 'external';
1837
+ issuerCertPem: string;
1838
+ revocationCertPem: string;
1839
+ info: TrustListEntityInfo;
1840
+ };
1841
+ type TrustListCreateDto = {
1842
+ description?: string;
1843
+ /**
1844
+ * The full trust list JSON (generated LoTE structure)
1845
+ */
1846
+ data?: {
1847
+ [key: string]: unknown;
1848
+ };
1849
+ entities: Array<({
1850
+ type: 'internal';
1851
+ } & InternalTrustListEntity) | ({
1852
+ type: 'external';
1853
+ } & ExternalTrustListEntity)>;
1854
+ id?: string;
1855
+ keyChainId?: string;
1856
+ };
1857
+ type TrustList = {
1858
+ /**
1859
+ * Unique identifier for the trust list
1860
+ */
1861
+ id: string;
1862
+ description?: string;
1863
+ /**
1864
+ * The tenant ID for which the VP request is made.
1865
+ */
1866
+ tenantId: string;
1867
+ /**
1868
+ * The tenant that owns this object.
1869
+ */
1870
+ tenant: TenantEntity;
1871
+ keyChainId: string;
1872
+ keyChain: KeyChainEntity;
1873
+ /**
1874
+ * The full trust list JSON (generated LoTE structure)
1875
+ */
1876
+ data?: {
1877
+ [key: string]: unknown;
1878
+ };
1879
+ /**
1880
+ * The original entity configuration used to create this trust list.
1881
+ * Stored for round-tripping when editing.
1882
+ */
1883
+ entityConfig?: Array<{
1884
+ [key: string]: unknown;
1885
+ }>;
1886
+ /**
1887
+ * The sequence number for versioning (incremented on updates)
1888
+ */
1889
+ sequenceNumber: number;
1890
+ /**
1891
+ * The signed JWT representation of this trust list
1892
+ */
1893
+ jwt: string;
1894
+ createdAt: string;
1895
+ updatedAt: string;
1896
+ };
1897
+ type TrustListVersion = {
1898
+ id: string;
1899
+ trustListId: string;
1900
+ trustList: TrustList;
1901
+ tenantId: string;
1902
+ /**
1903
+ * The sequence number at the time this version was created
1904
+ */
1905
+ sequenceNumber: number;
1906
+ /**
1907
+ * The full trust list JSON at this version
1908
+ */
1909
+ data: {
1910
+ [key: string]: unknown;
1911
+ };
1912
+ /**
1913
+ * The entity configuration at this version
1914
+ */
1915
+ entityConfig?: {
1916
+ [key: string]: unknown;
1917
+ };
1918
+ /**
1919
+ * The signed JWT at this version
1655
1920
  */
1656
1921
  jwt: string;
1657
1922
  createdAt: string;
@@ -1900,272 +2165,79 @@ type RegistrarConfigResponseDto = {
1900
2165
  */
1901
2166
  username: string;
1902
2167
  /**
1903
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1904
- */
1905
- registrationCertificateDefaults?: RegistrationCertificateDefaults;
1906
- /**
1907
- * Indicates whether a password is configured (actual password is never returned)
1908
- */
1909
- hasPassword: boolean;
1910
- };
1911
- type CreateRegistrarConfigDto = {
1912
- /**
1913
- * The base URL of the registrar API
1914
- */
1915
- registrarUrl: string;
1916
- /**
1917
- * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1918
- */
1919
- oidcUrl: string;
1920
- /**
1921
- * The OIDC client ID for the registrar
1922
- */
1923
- clientId: string;
1924
- /**
1925
- * The OIDC client secret (optional, for confidential clients)
1926
- */
1927
- clientSecret?: string;
1928
- /**
1929
- * The username for OIDC login
1930
- */
1931
- username: string;
1932
- /**
1933
- * The password for OIDC login (stored in plaintext)
1934
- */
1935
- password: string;
1936
- /**
1937
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1938
- */
1939
- registrationCertificateDefaults?: RegistrationCertificateDefaults;
1940
- };
1941
- type UpdateRegistrarConfigDto = {
1942
- /**
1943
- * The base URL of the registrar API
1944
- */
1945
- registrarUrl?: string;
1946
- /**
1947
- * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1948
- */
1949
- oidcUrl?: string;
1950
- /**
1951
- * The OIDC client ID for the registrar
1952
- */
1953
- clientId?: string;
1954
- /**
1955
- * The OIDC client secret (optional, for confidential clients)
1956
- */
1957
- clientSecret?: string;
1958
- /**
1959
- * The username for OIDC login
1960
- */
1961
- username?: string;
1962
- /**
1963
- * The password for OIDC login (stored in plaintext)
1964
- */
1965
- password?: string;
1966
- /**
1967
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1968
- */
1969
- registrationCertificateDefaults?: RegistrationCertificateDefaults;
1970
- };
1971
- type CreateAccessCertificateDto = {
1972
- /**
1973
- * The ID of the key to create an access certificate for
1974
- */
1975
- keyId: string;
1976
- };
1977
- type VocabularyEntryDto = {
1978
- /**
1979
- * Stable machine-readable value to submit in schema metadata category/tags fields.
1980
- */
1981
- code: string;
1982
- /**
1983
- * Display label for UI rendering.
1984
- */
1985
- label: string;
1986
- /**
1987
- * Vocabulary lifecycle status.
1988
- */
1989
- status: "active" | "deprecated";
1990
- /**
1991
- * Replacement code when status is deprecated.
1992
- */
1993
- replacedBy?: string;
1994
- };
1995
- type SchemaMetadataVocabulariesDto = {
1996
- /**
1997
- * Vocabulary publication version for cache invalidation.
1998
- */
1999
- version: string;
2000
- /**
2001
- * Allowed category values that can be used when updating schema metadata category.
2002
- */
2003
- categories: Array<VocabularyEntryDto>;
2004
- /**
2005
- * Allowed tag values that can be used when updating schema metadata tags.
2006
- */
2007
- tags: Array<VocabularyEntryDto>;
2008
- };
2009
- type MetadataSchemaDto = {
2010
- /**
2011
- * Unique identifier for this schema entry
2012
- */
2013
- id: string;
2014
- /**
2015
- * The credential format identifier
2016
- */
2017
- formatIdentifier: "dc+sd-jwt" | "mso_mdoc";
2018
- /**
2019
- * URI to the schema definition
2020
- */
2021
- uri?: string;
2022
- /**
2023
- * Inline schema content (JSON Schema)
2024
- */
2025
- schemaContent?: {
2026
- [key: string]: unknown;
2027
- };
2028
- /**
2029
- * Subresource Integrity hash for the schema
2030
- */
2031
- integrity?: string;
2032
- };
2033
- type TrustAuthorityDto = {
2034
- /**
2035
- * Unique identifier for this trust authority entry
2036
- */
2037
- id: string;
2038
- /**
2039
- * Type of trust framework
2040
- */
2041
- frameworkType: "etsi_tl";
2042
- /**
2043
- * URI or identifier for the trust list / authority
2044
- */
2045
- value: string;
2046
- /**
2047
- * Verification method for the trust list signature (e.g., JWK)
2048
- */
2049
- verificationMethod?: {
2050
- [key: string]: unknown;
2051
- };
2052
- };
2053
- type AccessCertificateRefDto = {
2054
- id: string;
2055
- relyingPartyId: string;
2056
- certificate: string;
2057
- revoked: string;
2058
- createdAt: string;
2059
- };
2060
- type SchemaMetadataResponseDto = {
2061
- /**
2062
- * The unique, server-assigned identifier (UUID) for the schema metadata
2063
- */
2064
- id: string;
2065
- /**
2066
- * Version of this schema metadata (SemVer)
2067
- */
2068
- version: string;
2069
- /**
2070
- * URI of the human-readable Rulebook document
2071
- */
2072
- rulebookURI?: string;
2073
- /**
2074
- * Subresource Integrity hash for the rulebook URI
2075
- */
2076
- rulebookIntegrity?: string;
2077
- /**
2078
- * Level of security (LoS) of this attestation
2079
- */
2080
- attestationLoS: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
2081
- /**
2082
- * Required binding type between attestation and holder
2083
- */
2084
- bindingType: "claim" | "key" | "biometric" | "none";
2085
- /**
2086
- * Credential formats in which this attestation is available
2087
- */
2088
- supportedFormats: Array<"dc+sd-jwt" | "mso_mdoc">;
2089
- /**
2090
- * Format-specific schema URIs for this schema metadata
2091
- */
2092
- schemaURIs: Array<MetadataSchemaDto>;
2093
- /**
2094
- * Trust frameworks / trust anchors applicable to this schema metadata
2095
- */
2096
- trustedAuthorities: Array<TrustAuthorityDto>;
2097
- /**
2098
- * Domain category for filtering
2168
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
2099
2169
  */
2100
- category?: "identity" | "health" | "finance" | "education" | "mobility" | "employment" | "other";
2170
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
2101
2171
  /**
2102
- * Free-form tags for filtering and search
2172
+ * Indicates whether a password is configured (actual password is never returned)
2103
2173
  */
2104
- tags?: Array<string>;
2174
+ hasPassword: boolean;
2175
+ };
2176
+ type CreateRegistrarConfigDto = {
2105
2177
  /**
2106
- * The original signed JWT
2178
+ * The base URL of the registrar API
2107
2179
  */
2108
- signedJwt: string;
2180
+ registrarUrl: string;
2109
2181
  /**
2110
- * Issuer from the JWT (`iss` claim)
2182
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
2111
2183
  */
2112
- issuer: string;
2184
+ oidcUrl: string;
2113
2185
  /**
2114
- * Serial number of the access certificate that signed this schema metadata
2186
+ * The OIDC client ID for the registrar
2115
2187
  */
2116
- signerCertificateSerial: string;
2188
+ clientId: string;
2117
2189
  /**
2118
- * The access certificate used to sign this schema metadata
2190
+ * The OIDC client secret (optional, for confidential clients)
2119
2191
  */
2120
- signerCertificate?: AccessCertificateRefDto;
2192
+ clientSecret?: string;
2121
2193
  /**
2122
- * Timestamp when the JWT was issued (from the `iat` claim)
2194
+ * The username for OIDC login
2123
2195
  */
2124
- issuedAt: string;
2196
+ username: string;
2125
2197
  /**
2126
- * Server creation timestamp
2198
+ * The password for OIDC login (stored in plaintext)
2127
2199
  */
2128
- createdAt: string;
2200
+ password: string;
2129
2201
  /**
2130
- * Last update timestamp
2202
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
2131
2203
  */
2132
- updatedAt: string;
2204
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
2205
+ };
2206
+ type UpdateRegistrarConfigDto = {
2133
2207
  /**
2134
- * Whether this version is deprecated
2208
+ * The base URL of the registrar API
2135
2209
  */
2136
- deprecated?: boolean;
2210
+ registrarUrl?: string;
2137
2211
  /**
2138
- * Deprecation message shown to consumers
2212
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
2139
2213
  */
2140
- deprecationMessage?: string;
2214
+ oidcUrl?: string;
2141
2215
  /**
2142
- * The version that supersedes this one
2216
+ * The OIDC client ID for the registrar
2143
2217
  */
2144
- supersededByVersion?: string;
2145
- };
2146
- type UpdateSchemaMetadataDto = {
2218
+ clientId?: string;
2147
2219
  /**
2148
- * Domain category for filtering
2220
+ * The OIDC client secret (optional, for confidential clients)
2149
2221
  */
2150
- category?: "identity" | "health" | "finance" | "education" | "mobility" | "employment" | "other";
2222
+ clientSecret?: string;
2151
2223
  /**
2152
- * Predefined tags for filtering and search
2224
+ * The username for OIDC login
2153
2225
  */
2154
- tags?: Array<"pid" | "eudi" | "kyc" | "aml" | "age-verification" | "residency" | "membership" | "education" | "employment" | "mobility">;
2155
- };
2156
- type DeprecateSchemaMetadataDto = {
2226
+ username?: string;
2157
2227
  /**
2158
- * Whether to mark this version as deprecated
2228
+ * The password for OIDC login (stored in plaintext)
2159
2229
  */
2160
- deprecated: boolean;
2230
+ password?: string;
2161
2231
  /**
2162
- * Deprecation message shown to consumers
2232
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
2163
2233
  */
2164
- message?: string;
2234
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
2235
+ };
2236
+ type CreateAccessCertificateDto = {
2165
2237
  /**
2166
- * The version that supersedes this one
2238
+ * The ID of the key to create an access certificate for
2167
2239
  */
2168
- supersededByVersion?: string;
2240
+ keyId: string;
2169
2241
  };
2170
2242
  type DeferredCredentialRequestDto = {
2171
2243
  /**
@@ -2175,9 +2247,7 @@ type DeferredCredentialRequestDto = {
2175
2247
  };
2176
2248
  type NotificationRequestDto = {
2177
2249
  notification_id: string;
2178
- event: {
2179
- [key: string]: unknown;
2180
- };
2250
+ event: 'credential_accepted' | 'credential_failure' | 'credential_deleted';
2181
2251
  };
2182
2252
  type Object$1 = {
2183
2253
  [key: string]: unknown;
@@ -2382,7 +2452,7 @@ type DeferredOperationResponse = {
2382
2452
  /**
2383
2453
  * The new status of the transaction
2384
2454
  */
2385
- status: "pending" | "ready" | "retrieved" | "expired" | "failed";
2455
+ status: 'pending' | 'ready' | 'retrieved' | 'expired' | 'failed';
2386
2456
  /**
2387
2457
  * Optional message
2388
2458
  */
@@ -2455,6 +2525,14 @@ type KmsProviderCapabilitiesDto = {
2455
2525
  * Whether the provider supports deleting keys.
2456
2526
  */
2457
2527
  canDelete: boolean;
2528
+ /**
2529
+ * Signing algorithms supported by the provider.
2530
+ */
2531
+ supportedAlgs: Array<string>;
2532
+ /**
2533
+ * Default signing algorithm used when caller does not specify one.
2534
+ */
2535
+ defaultAlg: string;
2458
2536
  };
2459
2537
  type KmsProviderInfoDto = {
2460
2538
  /**
@@ -2554,11 +2632,11 @@ type KeyChainResponseDto = {
2554
2632
  /**
2555
2633
  * Usage type of the key chain.
2556
2634
  */
2557
- usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2635
+ usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
2558
2636
  /**
2559
2637
  * Type of key chain (standalone or internalChain).
2560
2638
  */
2561
- type: "standalone" | "internalChain";
2639
+ type: 'standalone' | 'internalChain';
2562
2640
  /**
2563
2641
  * Human-readable description.
2564
2642
  */
@@ -2660,7 +2738,7 @@ type KeyChainExportDto = {
2660
2738
  /**
2661
2739
  * Usage type for this key chain.
2662
2740
  */
2663
- usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2741
+ usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
2664
2742
  /**
2665
2743
  * The private key in JWK format (EC).
2666
2744
  */
@@ -2696,11 +2774,11 @@ type KeyChainCreateDto = {
2696
2774
  /**
2697
2775
  * Usage type determines the purpose of this key chain (access, attestation, etc.).
2698
2776
  */
2699
- usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2777
+ usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
2700
2778
  /**
2701
2779
  * Type of key chain to create.
2702
2780
  */
2703
- type: "standalone" | "internalChain";
2781
+ type: 'standalone' | 'internalChain';
2704
2782
  /**
2705
2783
  * Human-readable description for the key chain.
2706
2784
  */
@@ -2753,7 +2831,7 @@ type KeyChainImportDto = {
2753
2831
  /**
2754
2832
  * Usage type for this key chain.
2755
2833
  */
2756
- usageType: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
2834
+ usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
2757
2835
  /**
2758
2836
  * Certificate chain in PEM format (leaf first, then intermediates/CA).
2759
2837
  */
@@ -2799,7 +2877,7 @@ type PresentationRequest = {
2799
2877
  /**
2800
2878
  * The type of response expected from the presentation request.
2801
2879
  */
2802
- response_type: "uri" | "dc-api";
2880
+ response_type: 'uri' | 'dc-api';
2803
2881
  /**
2804
2882
  * Identifier of the presentation configuration
2805
2883
  */
@@ -2814,6 +2892,11 @@ type PresentationRequest = {
2814
2892
  * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
2815
2893
  */
2816
2894
  redirectUri?: string;
2895
+ /**
2896
+ * Optional expected browser origin for DC API key-binding audience.
2897
+ * Example: "http://localhost:8080"
2898
+ */
2899
+ expected_origin?: string;
2817
2900
  /**
2818
2901
  * Optional transaction data to include in the OID4VP request.
2819
2902
  * If provided, this will override the transaction_data from the presentation configuration.
@@ -2888,7 +2971,7 @@ type AppControllerGetVersionData = {
2888
2971
  body?: never;
2889
2972
  path?: never;
2890
2973
  query?: never;
2891
- url: "/api/version";
2974
+ url: '/api/version';
2892
2975
  };
2893
2976
  type AppControllerGetVersionResponses = {
2894
2977
  /**
@@ -2900,7 +2983,7 @@ type AppControllerGetFrontendConfigData = {
2900
2983
  body?: never;
2901
2984
  path?: never;
2902
2985
  query?: never;
2903
- url: "/api/frontend-config";
2986
+ url: '/api/frontend-config';
2904
2987
  };
2905
2988
  type AppControllerGetFrontendConfigResponses = {
2906
2989
  /**
@@ -2909,11 +2992,30 @@ type AppControllerGetFrontendConfigResponses = {
2909
2992
  200: FrontendConfigResponseDto;
2910
2993
  };
2911
2994
  type AppControllerGetFrontendConfigResponse = AppControllerGetFrontendConfigResponses[keyof AppControllerGetFrontendConfigResponses];
2995
+ type AuthControllerGetOAuth2TokenData = {
2996
+ body: ClientCredentialsDto;
2997
+ path?: never;
2998
+ query?: never;
2999
+ url: '/api/oauth2/token';
3000
+ };
3001
+ type AuthControllerGetOAuth2TokenErrors = {
3002
+ /**
3003
+ * Invalid client credentials
3004
+ */
3005
+ 401: unknown;
3006
+ };
3007
+ type AuthControllerGetOAuth2TokenResponses = {
3008
+ /**
3009
+ * OAuth2 token response
3010
+ */
3011
+ 200: TokenResponse;
3012
+ };
3013
+ type AuthControllerGetOAuth2TokenResponse = AuthControllerGetOAuth2TokenResponses[keyof AuthControllerGetOAuth2TokenResponses];
2912
3014
  type TenantControllerGetTenantsData = {
2913
3015
  body?: never;
2914
3016
  path?: never;
2915
3017
  query?: never;
2916
- url: "/api/tenant";
3018
+ url: '/api/tenant';
2917
3019
  };
2918
3020
  type TenantControllerGetTenantsResponses = {
2919
3021
  200: Array<TenantEntity>;
@@ -2923,7 +3025,7 @@ type TenantControllerInitTenantData = {
2923
3025
  body: CreateTenantDto;
2924
3026
  path?: never;
2925
3027
  query?: never;
2926
- url: "/api/tenant";
3028
+ url: '/api/tenant';
2927
3029
  };
2928
3030
  type TenantControllerInitTenantResponses = {
2929
3031
  201: {
@@ -2937,7 +3039,7 @@ type TenantControllerDeleteTenantData = {
2937
3039
  id: string;
2938
3040
  };
2939
3041
  query?: never;
2940
- url: "/api/tenant/{id}";
3042
+ url: '/api/tenant/{id}';
2941
3043
  };
2942
3044
  type TenantControllerDeleteTenantResponses = {
2943
3045
  200: unknown;
@@ -2948,7 +3050,7 @@ type TenantControllerGetTenantData = {
2948
3050
  id: string;
2949
3051
  };
2950
3052
  query?: never;
2951
- url: "/api/tenant/{id}";
3053
+ url: '/api/tenant/{id}';
2952
3054
  };
2953
3055
  type TenantControllerGetTenantResponses = {
2954
3056
  200: TenantEntity;
@@ -2960,17 +3062,32 @@ type TenantControllerUpdateTenantData = {
2960
3062
  id: string;
2961
3063
  };
2962
3064
  query?: never;
2963
- url: "/api/tenant/{id}";
3065
+ url: '/api/tenant/{id}';
2964
3066
  };
2965
3067
  type TenantControllerUpdateTenantResponses = {
2966
3068
  200: TenantEntity;
2967
3069
  };
2968
3070
  type TenantControllerUpdateTenantResponse = TenantControllerUpdateTenantResponses[keyof TenantControllerUpdateTenantResponses];
3071
+ type AuditLogControllerGetAuditLogsData = {
3072
+ body?: never;
3073
+ path?: never;
3074
+ query?: {
3075
+ /**
3076
+ * Maximum number of entries to return (1–500)
3077
+ */
3078
+ limit?: number;
3079
+ };
3080
+ url: '/api/admin/audit-logs';
3081
+ };
3082
+ type AuditLogControllerGetAuditLogsResponses = {
3083
+ 200: Array<AuditLogResponseDto>;
3084
+ };
3085
+ type AuditLogControllerGetAuditLogsResponse = AuditLogControllerGetAuditLogsResponses[keyof AuditLogControllerGetAuditLogsResponses];
2969
3086
  type ClientControllerGetClientsData = {
2970
3087
  body?: never;
2971
3088
  path?: never;
2972
3089
  query?: never;
2973
- url: "/api/client";
3090
+ url: '/api/client';
2974
3091
  };
2975
3092
  type ClientControllerGetClientsResponses = {
2976
3093
  200: Array<ClientEntity>;
@@ -2980,7 +3097,7 @@ type ClientControllerCreateClientData = {
2980
3097
  body: CreateClientDto;
2981
3098
  path?: never;
2982
3099
  query?: never;
2983
- url: "/api/client";
3100
+ url: '/api/client';
2984
3101
  };
2985
3102
  type ClientControllerCreateClientResponses = {
2986
3103
  201: ClientEntity;
@@ -2992,7 +3109,7 @@ type ClientControllerDeleteClientData = {
2992
3109
  id: string;
2993
3110
  };
2994
3111
  query?: never;
2995
- url: "/api/client/{id}";
3112
+ url: '/api/client/{id}';
2996
3113
  };
2997
3114
  type ClientControllerDeleteClientResponses = {
2998
3115
  200: unknown;
@@ -3003,7 +3120,7 @@ type ClientControllerGetClientData = {
3003
3120
  id: string;
3004
3121
  };
3005
3122
  query?: never;
3006
- url: "/api/client/{id}";
3123
+ url: '/api/client/{id}';
3007
3124
  };
3008
3125
  type ClientControllerGetClientResponses = {
3009
3126
  200: ClientEntity;
@@ -3015,7 +3132,7 @@ type ClientControllerUpdateClientData = {
3015
3132
  id: string;
3016
3133
  };
3017
3134
  query?: never;
3018
- url: "/api/client/{id}";
3135
+ url: '/api/client/{id}';
3019
3136
  };
3020
3137
  type ClientControllerUpdateClientResponses = {
3021
3138
  200: {
@@ -3029,7 +3146,7 @@ type ClientControllerGetClientSecretData = {
3029
3146
  id: string;
3030
3147
  };
3031
3148
  query?: never;
3032
- url: "/api/client/{id}/secret";
3149
+ url: '/api/client/{id}/secret';
3033
3150
  };
3034
3151
  type ClientControllerGetClientSecretResponses = {
3035
3152
  200: ClientSecretResponseDto;
@@ -3041,7 +3158,7 @@ type ClientControllerRotateClientSecretData = {
3041
3158
  id: string;
3042
3159
  };
3043
3160
  query?: never;
3044
- url: "/api/client/{id}/rotate-secret";
3161
+ url: '/api/client/{id}/rotate-secret';
3045
3162
  };
3046
3163
  type ClientControllerRotateClientSecretResponses = {
3047
3164
  201: ClientSecretResponseDto;
@@ -3051,7 +3168,7 @@ type StatusListConfigControllerResetConfigData = {
3051
3168
  body?: never;
3052
3169
  path?: never;
3053
3170
  query?: never;
3054
- url: "/api/status-list-config";
3171
+ url: '/api/status-list-config';
3055
3172
  };
3056
3173
  type StatusListConfigControllerResetConfigResponses = {
3057
3174
  /**
@@ -3064,7 +3181,7 @@ type StatusListConfigControllerGetConfigData = {
3064
3181
  body?: never;
3065
3182
  path?: never;
3066
3183
  query?: never;
3067
- url: "/api/status-list-config";
3184
+ url: '/api/status-list-config';
3068
3185
  };
3069
3186
  type StatusListConfigControllerGetConfigResponses = {
3070
3187
  /**
@@ -3077,7 +3194,7 @@ type StatusListConfigControllerUpdateConfigData = {
3077
3194
  body: UpdateStatusListConfigDto;
3078
3195
  path?: never;
3079
3196
  query?: never;
3080
- url: "/api/status-list-config";
3197
+ url: '/api/status-list-config';
3081
3198
  };
3082
3199
  type StatusListConfigControllerUpdateConfigResponses = {
3083
3200
  /**
@@ -3090,7 +3207,7 @@ type StatusListManagementControllerGetListsData = {
3090
3207
  body?: never;
3091
3208
  path?: never;
3092
3209
  query?: never;
3093
- url: "/api/status-lists";
3210
+ url: '/api/status-lists';
3094
3211
  };
3095
3212
  type StatusListManagementControllerGetListsResponses = {
3096
3213
  /**
@@ -3103,7 +3220,7 @@ type StatusListManagementControllerCreateListData = {
3103
3220
  body: CreateStatusListDto;
3104
3221
  path?: never;
3105
3222
  query?: never;
3106
- url: "/api/status-lists";
3223
+ url: '/api/status-lists';
3107
3224
  };
3108
3225
  type StatusListManagementControllerCreateListResponses = {
3109
3226
  /**
@@ -3121,7 +3238,7 @@ type StatusListManagementControllerDeleteListData = {
3121
3238
  listId: string;
3122
3239
  };
3123
3240
  query?: never;
3124
- url: "/api/status-lists/{listId}";
3241
+ url: '/api/status-lists/{listId}';
3125
3242
  };
3126
3243
  type StatusListManagementControllerDeleteListResponses = {
3127
3244
  /**
@@ -3139,7 +3256,7 @@ type StatusListManagementControllerGetListData = {
3139
3256
  listId: string;
3140
3257
  };
3141
3258
  query?: never;
3142
- url: "/api/status-lists/{listId}";
3259
+ url: '/api/status-lists/{listId}';
3143
3260
  };
3144
3261
  type StatusListManagementControllerGetListResponses = {
3145
3262
  /**
@@ -3157,7 +3274,7 @@ type StatusListManagementControllerUpdateListData = {
3157
3274
  listId: string;
3158
3275
  };
3159
3276
  query?: never;
3160
- url: "/api/status-lists/{listId}";
3277
+ url: '/api/status-lists/{listId}';
3161
3278
  };
3162
3279
  type StatusListManagementControllerUpdateListResponses = {
3163
3280
  /**
@@ -3169,11 +3286,36 @@ type StatusListManagementControllerUpdateListResponse = StatusListManagementCont
3169
3286
  type SessionControllerGetAllSessionsData = {
3170
3287
  body?: never;
3171
3288
  path?: never;
3172
- query?: never;
3173
- url: "/api/session";
3289
+ query?: {
3290
+ /**
3291
+ * Page number (1-based)
3292
+ */
3293
+ page?: number;
3294
+ /**
3295
+ * Number of items per page
3296
+ */
3297
+ pageSize?: number;
3298
+ /**
3299
+ * Filter by session status
3300
+ */
3301
+ status?: 'active' | 'fetched' | 'completed' | 'expired' | 'failed';
3302
+ /**
3303
+ * Filter by session type
3304
+ */
3305
+ type?: 'issuance' | 'presentation';
3306
+ /**
3307
+ * Field to sort by
3308
+ */
3309
+ sortBy?: 'id' | 'status' | 'createdAt' | 'requestId';
3310
+ /**
3311
+ * Sort direction
3312
+ */
3313
+ sortOrder?: 'asc' | 'desc';
3314
+ };
3315
+ url: '/api/session';
3174
3316
  };
3175
3317
  type SessionControllerGetAllSessionsResponses = {
3176
- 200: Array<Session>;
3318
+ 200: PaginatedSessionResponseDto;
3177
3319
  };
3178
3320
  type SessionControllerGetAllSessionsResponse = SessionControllerGetAllSessionsResponses[keyof SessionControllerGetAllSessionsResponses];
3179
3321
  type SessionControllerDeleteSessionData = {
@@ -3182,7 +3324,7 @@ type SessionControllerDeleteSessionData = {
3182
3324
  id: string;
3183
3325
  };
3184
3326
  query?: never;
3185
- url: "/api/session/{id}";
3327
+ url: '/api/session/{id}';
3186
3328
  };
3187
3329
  type SessionControllerDeleteSessionResponses = {
3188
3330
  200: unknown;
@@ -3196,7 +3338,7 @@ type SessionControllerGetSessionData = {
3196
3338
  id: string;
3197
3339
  };
3198
3340
  query?: never;
3199
- url: "/api/session/{id}";
3341
+ url: '/api/session/{id}';
3200
3342
  };
3201
3343
  type SessionControllerGetSessionResponses = {
3202
3344
  200: Session;
@@ -3211,7 +3353,7 @@ type SessionControllerGetSessionLogsData = {
3211
3353
  id: string;
3212
3354
  };
3213
3355
  query?: never;
3214
- url: "/api/session/{id}/logs";
3356
+ url: '/api/session/{id}/logs';
3215
3357
  };
3216
3358
  type SessionControllerGetSessionLogsResponses = {
3217
3359
  200: Array<SessionLogEntryResponseDto>;
@@ -3221,7 +3363,7 @@ type SessionControllerRevokeAllData = {
3221
3363
  body: StatusUpdateDto;
3222
3364
  path?: never;
3223
3365
  query?: never;
3224
- url: "/api/session/revoke";
3366
+ url: '/api/session/revoke';
3225
3367
  };
3226
3368
  type SessionControllerRevokeAllResponses = {
3227
3369
  201: unknown;
@@ -3230,7 +3372,7 @@ type SessionConfigControllerResetConfigData = {
3230
3372
  body?: never;
3231
3373
  path?: never;
3232
3374
  query?: never;
3233
- url: "/api/session-config";
3375
+ url: '/api/session-config';
3234
3376
  };
3235
3377
  type SessionConfigControllerResetConfigResponses = {
3236
3378
  /**
@@ -3242,7 +3384,7 @@ type SessionConfigControllerGetConfigData = {
3242
3384
  body?: never;
3243
3385
  path?: never;
3244
3386
  query?: never;
3245
- url: "/api/session-config";
3387
+ url: '/api/session-config';
3246
3388
  };
3247
3389
  type SessionConfigControllerGetConfigResponses = {
3248
3390
  /**
@@ -3255,7 +3397,7 @@ type SessionConfigControllerUpdateConfigData = {
3255
3397
  body: UpdateSessionConfigDto;
3256
3398
  path?: never;
3257
3399
  query?: never;
3258
- url: "/api/session-config";
3400
+ url: '/api/session-config';
3259
3401
  };
3260
3402
  type SessionConfigControllerUpdateConfigResponses = {
3261
3403
  /**
@@ -3278,7 +3420,7 @@ type SessionEventsControllerSubscribeToSessionEventsData = {
3278
3420
  */
3279
3421
  token: string;
3280
3422
  };
3281
- url: "/api/session/{id}/events";
3423
+ url: '/api/session/{id}/events';
3282
3424
  };
3283
3425
  type SessionEventsControllerSubscribeToSessionEventsResponses = {
3284
3426
  200: unknown;
@@ -3287,7 +3429,7 @@ type UserControllerGetUsersData = {
3287
3429
  body?: never;
3288
3430
  path?: never;
3289
3431
  query?: never;
3290
- url: "/api/user";
3432
+ url: '/api/user';
3291
3433
  };
3292
3434
  type UserControllerGetUsersResponses = {
3293
3435
  200: Array<ManagedUserDto>;
@@ -3297,7 +3439,7 @@ type UserControllerCreateUserData = {
3297
3439
  body: CreateUserDto;
3298
3440
  path?: never;
3299
3441
  query?: never;
3300
- url: "/api/user";
3442
+ url: '/api/user';
3301
3443
  };
3302
3444
  type UserControllerCreateUserResponses = {
3303
3445
  201: ManagedUserDto;
@@ -3309,7 +3451,7 @@ type UserControllerDeleteUserData = {
3309
3451
  id: string;
3310
3452
  };
3311
3453
  query?: never;
3312
- url: "/api/user/{id}";
3454
+ url: '/api/user/{id}';
3313
3455
  };
3314
3456
  type UserControllerDeleteUserResponses = {
3315
3457
  200: unknown;
@@ -3320,7 +3462,7 @@ type UserControllerGetUserData = {
3320
3462
  id: string;
3321
3463
  };
3322
3464
  query?: never;
3323
- url: "/api/user/{id}";
3465
+ url: '/api/user/{id}';
3324
3466
  };
3325
3467
  type UserControllerGetUserResponses = {
3326
3468
  200: ManagedUserDto;
@@ -3332,7 +3474,7 @@ type UserControllerUpdateUserData = {
3332
3474
  id: string;
3333
3475
  };
3334
3476
  query?: never;
3335
- url: "/api/user/{id}";
3477
+ url: '/api/user/{id}';
3336
3478
  };
3337
3479
  type UserControllerUpdateUserResponses = {
3338
3480
  200: ManagedUserDto;
@@ -3342,7 +3484,7 @@ type IssuanceConfigControllerGetIssuanceConfigurationsData = {
3342
3484
  body?: never;
3343
3485
  path?: never;
3344
3486
  query?: never;
3345
- url: "/api/issuer/config";
3487
+ url: '/api/issuer/config';
3346
3488
  };
3347
3489
  type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
3348
3490
  200: IssuanceConfig;
@@ -3352,7 +3494,7 @@ type IssuanceConfigControllerStoreIssuanceConfigurationData = {
3352
3494
  body: IssuanceDto;
3353
3495
  path?: never;
3354
3496
  query?: never;
3355
- url: "/api/issuer/config";
3497
+ url: '/api/issuer/config';
3356
3498
  };
3357
3499
  type IssuanceConfigControllerStoreIssuanceConfigurationResponses = {
3358
3500
  201: {
@@ -3364,7 +3506,7 @@ type CredentialConfigControllerGetConfigsData = {
3364
3506
  body?: never;
3365
3507
  path?: never;
3366
3508
  query?: never;
3367
- url: "/api/issuer/credentials";
3509
+ url: '/api/issuer/credentials';
3368
3510
  };
3369
3511
  type CredentialConfigControllerGetConfigsResponses = {
3370
3512
  200: Array<CredentialConfig>;
@@ -3374,7 +3516,7 @@ type CredentialConfigControllerStoreCredentialConfigurationData = {
3374
3516
  body: CredentialConfigCreate;
3375
3517
  path?: never;
3376
3518
  query?: never;
3377
- url: "/api/issuer/credentials";
3519
+ url: '/api/issuer/credentials';
3378
3520
  };
3379
3521
  type CredentialConfigControllerStoreCredentialConfigurationResponses = {
3380
3522
  201: {
@@ -3388,7 +3530,7 @@ type CredentialConfigControllerDeleteIssuanceConfigurationData = {
3388
3530
  id: string;
3389
3531
  };
3390
3532
  query?: never;
3391
- url: "/api/issuer/credentials/{id}";
3533
+ url: '/api/issuer/credentials/{id}';
3392
3534
  };
3393
3535
  type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
3394
3536
  200: {
@@ -3402,7 +3544,7 @@ type CredentialConfigControllerGetConfigByIdData = {
3402
3544
  id: string;
3403
3545
  };
3404
3546
  query?: never;
3405
- url: "/api/issuer/credentials/{id}";
3547
+ url: '/api/issuer/credentials/{id}';
3406
3548
  };
3407
3549
  type CredentialConfigControllerGetConfigByIdResponses = {
3408
3550
  200: CredentialConfig;
@@ -3414,7 +3556,7 @@ type CredentialConfigControllerUpdateCredentialConfigurationData = {
3414
3556
  id: string;
3415
3557
  };
3416
3558
  query?: never;
3417
- url: "/api/issuer/credentials/{id}";
3559
+ url: '/api/issuer/credentials/{id}';
3418
3560
  };
3419
3561
  type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
3420
3562
  200: {
@@ -3422,47 +3564,200 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
3422
3564
  };
3423
3565
  };
3424
3566
  type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
3425
- type CredentialConfigControllerSignSchemaMetaConfigData = {
3567
+ type SchemaMetadataControllerSignSchemaMetaConfigData = {
3426
3568
  body: SignSchemaMetaConfigDto;
3427
3569
  path?: never;
3428
3570
  query?: never;
3429
- url: "/api/issuer/credentials/schema-metadata/sign";
3571
+ url: '/api/schema-metadata/sign';
3430
3572
  };
3431
- type CredentialConfigControllerSignSchemaMetaConfigErrors = {
3573
+ type SchemaMetadataControllerSignSchemaMetaConfigErrors = {
3432
3574
  /**
3433
3575
  * Invalid schema metadata or missing certificate for signing
3434
3576
  */
3435
3577
  400: unknown;
3436
3578
  };
3437
- type CredentialConfigControllerSignSchemaMetaConfigResponses = {
3579
+ type SchemaMetadataControllerSignSchemaMetaConfigResponses = {
3438
3580
  /**
3439
3581
  * Registrar metadata entry for the freshly submitted schema metadata.
3440
3582
  */
3441
3583
  201: unknown;
3442
3584
  };
3443
- type CredentialConfigControllerSignVersionSchemaMetaConfigData = {
3585
+ type SchemaMetadataControllerSignVersionSchemaMetaConfigData = {
3444
3586
  body: SignVersionSchemaMetaConfigDto;
3445
3587
  path?: never;
3446
3588
  query?: never;
3447
- url: "/api/issuer/credentials/schema-metadata/sign-version";
3589
+ url: '/api/schema-metadata/sign-version';
3448
3590
  };
3449
- type CredentialConfigControllerSignVersionSchemaMetaConfigErrors = {
3591
+ type SchemaMetadataControllerSignVersionSchemaMetaConfigErrors = {
3450
3592
  /**
3451
3593
  * config.id is required; or invalid schema metadata
3452
3594
  */
3453
3595
  400: unknown;
3454
3596
  };
3455
- type CredentialConfigControllerSignVersionSchemaMetaConfigResponses = {
3456
- /**
3457
- * Registrar metadata entry for the newly submitted version.
3458
- */
3459
- 201: unknown;
3597
+ type SchemaMetadataControllerSignVersionSchemaMetaConfigResponses = {
3598
+ /**
3599
+ * Registrar metadata entry for the newly submitted version.
3600
+ */
3601
+ 201: unknown;
3602
+ };
3603
+ type SchemaMetadataControllerGetVocabulariesData = {
3604
+ body?: never;
3605
+ path?: never;
3606
+ query?: never;
3607
+ url: '/api/schema-metadata/vocabularies';
3608
+ };
3609
+ type SchemaMetadataControllerGetVocabulariesResponses = {
3610
+ 200: SchemaMetadataVocabulariesDto;
3611
+ };
3612
+ type SchemaMetadataControllerGetVocabulariesResponse = SchemaMetadataControllerGetVocabulariesResponses[keyof SchemaMetadataControllerGetVocabulariesResponses];
3613
+ type SchemaMetadataControllerFindAllData = {
3614
+ body?: never;
3615
+ path?: never;
3616
+ query?: {
3617
+ attestationId?: string;
3618
+ version?: string;
3619
+ };
3620
+ url: '/api/schema-metadata';
3621
+ };
3622
+ type SchemaMetadataControllerFindAllResponses = {
3623
+ 200: Array<SchemaMetadataResponseDto>;
3624
+ };
3625
+ type SchemaMetadataControllerFindAllResponse = SchemaMetadataControllerFindAllResponses[keyof SchemaMetadataControllerFindAllResponses];
3626
+ type SchemaMetadataControllerFindOneData = {
3627
+ body?: never;
3628
+ path: {
3629
+ id: string;
3630
+ };
3631
+ query?: never;
3632
+ url: '/api/schema-metadata/{id}';
3633
+ };
3634
+ type SchemaMetadataControllerFindOneResponses = {
3635
+ 200: SchemaMetadataResponseDto;
3636
+ };
3637
+ type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
3638
+ type SchemaMetadataControllerRemoveData = {
3639
+ body?: never;
3640
+ path: {
3641
+ id: string;
3642
+ version: string;
3643
+ };
3644
+ query?: never;
3645
+ url: '/api/schema-metadata/{id}/versions/{version}';
3646
+ };
3647
+ type SchemaMetadataControllerRemoveResponses = {
3648
+ /**
3649
+ * Deleted
3650
+ */
3651
+ 200: unknown;
3652
+ };
3653
+ type SchemaMetadataControllerUpdateData = {
3654
+ body: UpdateSchemaMetadataDto;
3655
+ path: {
3656
+ id: string;
3657
+ version: string;
3658
+ };
3659
+ query?: never;
3660
+ url: '/api/schema-metadata/{id}/versions/{version}';
3661
+ };
3662
+ type SchemaMetadataControllerUpdateResponses = {
3663
+ 200: SchemaMetadataResponseDto;
3664
+ };
3665
+ type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
3666
+ type SchemaMetadataControllerGetLatestData = {
3667
+ body?: never;
3668
+ path: {
3669
+ id: string;
3670
+ };
3671
+ query?: never;
3672
+ url: '/api/schema-metadata/{id}/latest';
3673
+ };
3674
+ type SchemaMetadataControllerGetLatestResponses = {
3675
+ 200: SchemaMetadataResponseDto;
3676
+ };
3677
+ type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
3678
+ type SchemaMetadataControllerGetVersionsData = {
3679
+ body?: never;
3680
+ path: {
3681
+ id: string;
3682
+ };
3683
+ query?: never;
3684
+ url: '/api/schema-metadata/{id}/versions';
3685
+ };
3686
+ type SchemaMetadataControllerGetVersionsResponses = {
3687
+ 200: Array<SchemaMetadataResponseDto>;
3688
+ };
3689
+ type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
3690
+ type SchemaMetadataControllerGetJwtData = {
3691
+ body?: never;
3692
+ path: {
3693
+ id: string;
3694
+ version: string;
3695
+ };
3696
+ query?: never;
3697
+ url: '/api/schema-metadata/{id}/versions/{version}/jwt';
3698
+ };
3699
+ type SchemaMetadataControllerGetJwtResponses = {
3700
+ /**
3701
+ * Compact-serialization JWS string
3702
+ */
3703
+ 200: string;
3704
+ };
3705
+ type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
3706
+ type SchemaMetadataControllerExportData = {
3707
+ body?: never;
3708
+ path: {
3709
+ id: string;
3710
+ version: string;
3711
+ };
3712
+ query?: never;
3713
+ url: '/api/schema-metadata/{id}/versions/{version}/export';
3714
+ };
3715
+ type SchemaMetadataControllerExportResponses = {
3716
+ /**
3717
+ * Registrar-defined catalog document
3718
+ */
3719
+ 200: {
3720
+ [key: string]: unknown;
3721
+ };
3722
+ };
3723
+ type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
3724
+ type SchemaMetadataControllerGetSchemaData = {
3725
+ body?: never;
3726
+ path: {
3727
+ id: string;
3728
+ version: string;
3729
+ format: string;
3730
+ };
3731
+ query?: never;
3732
+ url: '/api/schema-metadata/{id}/versions/{version}/schemas/{format}';
3733
+ };
3734
+ type SchemaMetadataControllerGetSchemaResponses = {
3735
+ /**
3736
+ * JSON Schema document for the requested format
3737
+ */
3738
+ 200: {
3739
+ [key: string]: unknown;
3740
+ };
3741
+ };
3742
+ type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
3743
+ type SchemaMetadataControllerDeprecateVersionData = {
3744
+ body: DeprecateSchemaMetadataDto;
3745
+ path: {
3746
+ id: string;
3747
+ version: string;
3748
+ };
3749
+ query?: never;
3750
+ url: '/api/schema-metadata/{id}/versions/{version}/deprecation';
3751
+ };
3752
+ type SchemaMetadataControllerDeprecateVersionResponses = {
3753
+ 200: SchemaMetadataResponseDto;
3460
3754
  };
3755
+ type SchemaMetadataControllerDeprecateVersionResponse = SchemaMetadataControllerDeprecateVersionResponses[keyof SchemaMetadataControllerDeprecateVersionResponses];
3461
3756
  type AttributeProviderControllerGetAllData = {
3462
3757
  body?: never;
3463
3758
  path?: never;
3464
3759
  query?: never;
3465
- url: "/api/issuer/attribute-providers";
3760
+ url: '/api/issuer/attribute-providers';
3466
3761
  };
3467
3762
  type AttributeProviderControllerGetAllResponses = {
3468
3763
  /**
@@ -3474,7 +3769,7 @@ type AttributeProviderControllerCreateData = {
3474
3769
  body: CreateAttributeProviderDto;
3475
3770
  path?: never;
3476
3771
  query?: never;
3477
- url: "/api/issuer/attribute-providers";
3772
+ url: '/api/issuer/attribute-providers';
3478
3773
  };
3479
3774
  type AttributeProviderControllerCreateResponses = {
3480
3775
  /**
@@ -3488,7 +3783,7 @@ type AttributeProviderControllerDeleteData = {
3488
3783
  id: string;
3489
3784
  };
3490
3785
  query?: never;
3491
- url: "/api/issuer/attribute-providers/{id}";
3786
+ url: '/api/issuer/attribute-providers/{id}';
3492
3787
  };
3493
3788
  type AttributeProviderControllerDeleteErrors = {
3494
3789
  /**
@@ -3508,7 +3803,7 @@ type AttributeProviderControllerGetByIdData = {
3508
3803
  id: string;
3509
3804
  };
3510
3805
  query?: never;
3511
- url: "/api/issuer/attribute-providers/{id}";
3806
+ url: '/api/issuer/attribute-providers/{id}';
3512
3807
  };
3513
3808
  type AttributeProviderControllerGetByIdErrors = {
3514
3809
  /**
@@ -3528,7 +3823,7 @@ type AttributeProviderControllerUpdateData = {
3528
3823
  id: string;
3529
3824
  };
3530
3825
  query?: never;
3531
- url: "/api/issuer/attribute-providers/{id}";
3826
+ url: '/api/issuer/attribute-providers/{id}';
3532
3827
  };
3533
3828
  type AttributeProviderControllerUpdateErrors = {
3534
3829
  /**
@@ -3546,7 +3841,7 @@ type WebhookEndpointControllerGetAllData = {
3546
3841
  body?: never;
3547
3842
  path?: never;
3548
3843
  query?: never;
3549
- url: "/api/issuer/webhook-endpoints";
3844
+ url: '/api/issuer/webhook-endpoints';
3550
3845
  };
3551
3846
  type WebhookEndpointControllerGetAllResponses = {
3552
3847
  /**
@@ -3559,7 +3854,7 @@ type WebhookEndpointControllerCreateData = {
3559
3854
  body: CreateWebhookEndpointDto;
3560
3855
  path?: never;
3561
3856
  query?: never;
3562
- url: "/api/issuer/webhook-endpoints";
3857
+ url: '/api/issuer/webhook-endpoints';
3563
3858
  };
3564
3859
  type WebhookEndpointControllerCreateResponses = {
3565
3860
  /**
@@ -3573,7 +3868,7 @@ type WebhookEndpointControllerDeleteData = {
3573
3868
  id: string;
3574
3869
  };
3575
3870
  query?: never;
3576
- url: "/api/issuer/webhook-endpoints/{id}";
3871
+ url: '/api/issuer/webhook-endpoints/{id}';
3577
3872
  };
3578
3873
  type WebhookEndpointControllerDeleteErrors = {
3579
3874
  /**
@@ -3593,7 +3888,7 @@ type WebhookEndpointControllerGetByIdData = {
3593
3888
  id: string;
3594
3889
  };
3595
3890
  query?: never;
3596
- url: "/api/issuer/webhook-endpoints/{id}";
3891
+ url: '/api/issuer/webhook-endpoints/{id}';
3597
3892
  };
3598
3893
  type WebhookEndpointControllerGetByIdErrors = {
3599
3894
  /**
@@ -3613,7 +3908,7 @@ type WebhookEndpointControllerUpdateData = {
3613
3908
  id: string;
3614
3909
  };
3615
3910
  query?: never;
3616
- url: "/api/issuer/webhook-endpoints/{id}";
3911
+ url: '/api/issuer/webhook-endpoints/{id}';
3617
3912
  };
3618
3913
  type WebhookEndpointControllerUpdateErrors = {
3619
3914
  /**
@@ -3631,7 +3926,7 @@ type TrustListControllerGetAllTrustListsData = {
3631
3926
  body?: never;
3632
3927
  path?: never;
3633
3928
  query?: never;
3634
- url: "/api/trust-list";
3929
+ url: '/api/trust-list';
3635
3930
  };
3636
3931
  type TrustListControllerGetAllTrustListsResponses = {
3637
3932
  200: Array<TrustList>;
@@ -3641,7 +3936,7 @@ type TrustListControllerCreateTrustListData = {
3641
3936
  body: TrustListCreateDto;
3642
3937
  path?: never;
3643
3938
  query?: never;
3644
- url: "/api/trust-list";
3939
+ url: '/api/trust-list';
3645
3940
  };
3646
3941
  type TrustListControllerCreateTrustListResponses = {
3647
3942
  201: TrustList;
@@ -3653,7 +3948,7 @@ type TrustListControllerDeleteTrustListData = {
3653
3948
  id: string;
3654
3949
  };
3655
3950
  query?: never;
3656
- url: "/api/trust-list/{id}";
3951
+ url: '/api/trust-list/{id}';
3657
3952
  };
3658
3953
  type TrustListControllerDeleteTrustListResponses = {
3659
3954
  200: unknown;
@@ -3664,7 +3959,7 @@ type TrustListControllerGetTrustListData = {
3664
3959
  id: string;
3665
3960
  };
3666
3961
  query?: never;
3667
- url: "/api/trust-list/{id}";
3962
+ url: '/api/trust-list/{id}';
3668
3963
  };
3669
3964
  type TrustListControllerGetTrustListResponses = {
3670
3965
  200: TrustList;
@@ -3676,7 +3971,7 @@ type TrustListControllerUpdateTrustListData = {
3676
3971
  id: string;
3677
3972
  };
3678
3973
  query?: never;
3679
- url: "/api/trust-list/{id}";
3974
+ url: '/api/trust-list/{id}';
3680
3975
  };
3681
3976
  type TrustListControllerUpdateTrustListResponses = {
3682
3977
  200: TrustList;
@@ -3688,7 +3983,7 @@ type TrustListControllerExportTrustListData = {
3688
3983
  id: string;
3689
3984
  };
3690
3985
  query?: never;
3691
- url: "/api/trust-list/{id}/export";
3986
+ url: '/api/trust-list/{id}/export';
3692
3987
  };
3693
3988
  type TrustListControllerExportTrustListResponses = {
3694
3989
  200: TrustListCreateDto;
@@ -3700,7 +3995,7 @@ type TrustListControllerGetTrustListVersionsData = {
3700
3995
  id: string;
3701
3996
  };
3702
3997
  query?: never;
3703
- url: "/api/trust-list/{id}/versions";
3998
+ url: '/api/trust-list/{id}/versions';
3704
3999
  };
3705
4000
  type TrustListControllerGetTrustListVersionsResponses = {
3706
4001
  200: Array<TrustListVersion>;
@@ -3713,17 +4008,68 @@ type TrustListControllerGetTrustListVersionData = {
3713
4008
  versionId: string;
3714
4009
  };
3715
4010
  query?: never;
3716
- url: "/api/trust-list/{id}/versions/{versionId}";
4011
+ url: '/api/trust-list/{id}/versions/{versionId}';
3717
4012
  };
3718
4013
  type TrustListControllerGetTrustListVersionResponses = {
3719
4014
  200: TrustListVersion;
3720
4015
  };
3721
4016
  type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
4017
+ type CacheControllerGetStatsData = {
4018
+ body?: never;
4019
+ path?: never;
4020
+ query?: never;
4021
+ url: '/api/cache/stats';
4022
+ };
4023
+ type CacheControllerGetStatsResponses = {
4024
+ /**
4025
+ * Cache statistics
4026
+ */
4027
+ 200: unknown;
4028
+ };
4029
+ type CacheControllerClearAllCachesData = {
4030
+ body?: never;
4031
+ path?: never;
4032
+ query?: never;
4033
+ url: '/api/cache';
4034
+ };
4035
+ type CacheControllerClearAllCachesResponses = {
4036
+ /**
4037
+ * All caches cleared successfully
4038
+ */
4039
+ 204: void;
4040
+ };
4041
+ type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
4042
+ type CacheControllerClearTrustListCacheData = {
4043
+ body?: never;
4044
+ path?: never;
4045
+ query?: never;
4046
+ url: '/api/cache/trust-list';
4047
+ };
4048
+ type CacheControllerClearTrustListCacheResponses = {
4049
+ /**
4050
+ * Trust list cache cleared successfully
4051
+ */
4052
+ 204: void;
4053
+ };
4054
+ type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
4055
+ type CacheControllerClearStatusListCacheData = {
4056
+ body?: never;
4057
+ path?: never;
4058
+ query?: never;
4059
+ url: '/api/cache/status-list';
4060
+ };
4061
+ type CacheControllerClearStatusListCacheResponses = {
4062
+ /**
4063
+ * Status list cache cleared successfully
4064
+ */
4065
+ 204: void;
4066
+ };
4067
+ type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
3722
4068
  type PresentationManagementControllerConfigurationData = {
3723
4069
  body?: never;
3724
4070
  path?: never;
3725
4071
  query?: never;
3726
- url: "/api/verifier/config";
4072
+ url: '/api/verifier/config';
3727
4073
  };
3728
4074
  type PresentationManagementControllerConfigurationResponses = {
3729
4075
  200: Array<PresentationConfig>;
@@ -3733,7 +4079,7 @@ type PresentationManagementControllerStorePresentationConfigData = {
3733
4079
  body: PresentationConfigCreateDto;
3734
4080
  path?: never;
3735
4081
  query?: never;
3736
- url: "/api/verifier/config";
4082
+ url: '/api/verifier/config';
3737
4083
  };
3738
4084
  type PresentationManagementControllerStorePresentationConfigResponses = {
3739
4085
  201: PresentationConfig;
@@ -3743,7 +4089,7 @@ type PresentationManagementControllerResolveIssuerMetadataData = {
3743
4089
  body: ResolveIssuerMetadataDto;
3744
4090
  path?: never;
3745
4091
  query?: never;
3746
- url: "/api/verifier/config/issuer-metadata/resolve";
4092
+ url: '/api/verifier/config/issuer-metadata/resolve';
3747
4093
  };
3748
4094
  type PresentationManagementControllerResolveIssuerMetadataErrors = {
3749
4095
  /**
@@ -3761,7 +4107,7 @@ type PresentationManagementControllerResolveSchemaMetadataData = {
3761
4107
  body: ResolveSchemaMetadataDto;
3762
4108
  path?: never;
3763
4109
  query?: never;
3764
- url: "/api/verifier/config/schema-metadata/resolve";
4110
+ url: '/api/verifier/config/schema-metadata/resolve';
3765
4111
  };
3766
4112
  type PresentationManagementControllerResolveSchemaMetadataErrors = {
3767
4113
  /**
@@ -3779,7 +4125,7 @@ type PresentationManagementControllerListSchemaMetadataCatalogData = {
3779
4125
  body?: never;
3780
4126
  path?: never;
3781
4127
  query?: never;
3782
- url: "/api/verifier/config/schema-metadata/catalog";
4128
+ url: '/api/verifier/config/schema-metadata/catalog';
3783
4129
  };
3784
4130
  type PresentationManagementControllerListSchemaMetadataCatalogResponses = {
3785
4131
  /**
@@ -3793,7 +4139,7 @@ type PresentationManagementControllerDeleteConfigurationData = {
3793
4139
  id: string;
3794
4140
  };
3795
4141
  query?: never;
3796
- url: "/api/verifier/config/{id}";
4142
+ url: '/api/verifier/config/{id}';
3797
4143
  };
3798
4144
  type PresentationManagementControllerDeleteConfigurationResponses = {
3799
4145
  200: unknown;
@@ -3804,7 +4150,7 @@ type PresentationManagementControllerGetConfigurationData = {
3804
4150
  id: string;
3805
4151
  };
3806
4152
  query?: never;
3807
- url: "/api/verifier/config/{id}";
4153
+ url: '/api/verifier/config/{id}';
3808
4154
  };
3809
4155
  type PresentationManagementControllerGetConfigurationResponses = {
3810
4156
  200: PresentationConfig;
@@ -3816,7 +4162,7 @@ type PresentationManagementControllerUpdateConfigurationData = {
3816
4162
  id: string;
3817
4163
  };
3818
4164
  query?: never;
3819
- url: "/api/verifier/config/{id}";
4165
+ url: '/api/verifier/config/{id}';
3820
4166
  };
3821
4167
  type PresentationManagementControllerUpdateConfigurationResponses = {
3822
4168
  200: PresentationConfig;
@@ -3828,7 +4174,7 @@ type PresentationManagementControllerReissueRegistrationCertificateData = {
3828
4174
  id: string;
3829
4175
  };
3830
4176
  query?: never;
3831
- url: "/api/verifier/config/{id}/registration-cert/reissue";
4177
+ url: '/api/verifier/config/{id}/registration-cert/reissue';
3832
4178
  };
3833
4179
  type PresentationManagementControllerReissueRegistrationCertificateErrors = {
3834
4180
  /**
@@ -3842,62 +4188,11 @@ type PresentationManagementControllerReissueRegistrationCertificateResponses = {
3842
4188
  */
3843
4189
  200: unknown;
3844
4190
  };
3845
- type CacheControllerGetStatsData = {
3846
- body?: never;
3847
- path?: never;
3848
- query?: never;
3849
- url: "/api/cache/stats";
3850
- };
3851
- type CacheControllerGetStatsResponses = {
3852
- /**
3853
- * Cache statistics
3854
- */
3855
- 200: unknown;
3856
- };
3857
- type CacheControllerClearAllCachesData = {
3858
- body?: never;
3859
- path?: never;
3860
- query?: never;
3861
- url: "/api/cache";
3862
- };
3863
- type CacheControllerClearAllCachesResponses = {
3864
- /**
3865
- * All caches cleared successfully
3866
- */
3867
- 204: void;
3868
- };
3869
- type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
3870
- type CacheControllerClearTrustListCacheData = {
3871
- body?: never;
3872
- path?: never;
3873
- query?: never;
3874
- url: "/api/cache/trust-list";
3875
- };
3876
- type CacheControllerClearTrustListCacheResponses = {
3877
- /**
3878
- * Trust list cache cleared successfully
3879
- */
3880
- 204: void;
3881
- };
3882
- type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
3883
- type CacheControllerClearStatusListCacheData = {
3884
- body?: never;
3885
- path?: never;
3886
- query?: never;
3887
- url: "/api/cache/status-list";
3888
- };
3889
- type CacheControllerClearStatusListCacheResponses = {
3890
- /**
3891
- * Status list cache cleared successfully
3892
- */
3893
- 204: void;
3894
- };
3895
- type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
3896
4191
  type RegistrarControllerDeleteConfigData = {
3897
4192
  body?: never;
3898
4193
  path?: never;
3899
4194
  query?: never;
3900
- url: "/api/registrar/config";
4195
+ url: '/api/registrar/config';
3901
4196
  };
3902
4197
  type RegistrarControllerDeleteConfigResponses = {
3903
4198
  /**
@@ -3910,7 +4205,7 @@ type RegistrarControllerGetConfigData = {
3910
4205
  body?: never;
3911
4206
  path?: never;
3912
4207
  query?: never;
3913
- url: "/api/registrar/config";
4208
+ url: '/api/registrar/config';
3914
4209
  };
3915
4210
  type RegistrarControllerGetConfigErrors = {
3916
4211
  /**
@@ -3929,7 +4224,7 @@ type RegistrarControllerUpdateConfigData = {
3929
4224
  body: UpdateRegistrarConfigDto;
3930
4225
  path?: never;
3931
4226
  query?: never;
3932
- url: "/api/registrar/config";
4227
+ url: '/api/registrar/config';
3933
4228
  };
3934
4229
  type RegistrarControllerUpdateConfigErrors = {
3935
4230
  /**
@@ -3940,6 +4235,10 @@ type RegistrarControllerUpdateConfigErrors = {
3940
4235
  * No registrar configuration found
3941
4236
  */
3942
4237
  404: unknown;
4238
+ /**
4239
+ * Registrar OIDC endpoint unreachable — credentials could not be verified
4240
+ */
4241
+ 503: unknown;
3943
4242
  };
3944
4243
  type RegistrarControllerUpdateConfigResponses = {
3945
4244
  /**
@@ -3952,13 +4251,17 @@ type RegistrarControllerCreateConfigData = {
3952
4251
  body: CreateRegistrarConfigDto;
3953
4252
  path?: never;
3954
4253
  query?: never;
3955
- url: "/api/registrar/config";
4254
+ url: '/api/registrar/config';
3956
4255
  };
3957
4256
  type RegistrarControllerCreateConfigErrors = {
3958
4257
  /**
3959
4258
  * Invalid credentials
3960
4259
  */
3961
4260
  400: unknown;
4261
+ /**
4262
+ * Registrar OIDC endpoint unreachable — credentials could not be verified
4263
+ */
4264
+ 503: unknown;
3962
4265
  };
3963
4266
  type RegistrarControllerCreateConfigResponses = {
3964
4267
  /**
@@ -3971,7 +4274,7 @@ type RegistrarControllerCreateAccessCertificateData = {
3971
4274
  body: CreateAccessCertificateDto;
3972
4275
  path?: never;
3973
4276
  query?: never;
3974
- url: "/api/registrar/access-certificate";
4277
+ url: '/api/registrar/access-certificate';
3975
4278
  };
3976
4279
  type RegistrarControllerCreateAccessCertificateErrors = {
3977
4280
  /**
@@ -3999,164 +4302,11 @@ type RegistrarControllerCreateAccessCertificateResponses = {
3999
4302
  };
4000
4303
  };
4001
4304
  type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
4002
- type SchemaMetadataControllerGetVocabulariesData = {
4003
- body?: never;
4004
- path?: never;
4005
- query?: never;
4006
- url: "/api/schema-metadata/vocabularies";
4007
- };
4008
- type SchemaMetadataControllerGetVocabulariesResponses = {
4009
- 200: SchemaMetadataVocabulariesDto;
4010
- };
4011
- type SchemaMetadataControllerGetVocabulariesResponse = SchemaMetadataControllerGetVocabulariesResponses[keyof SchemaMetadataControllerGetVocabulariesResponses];
4012
- type SchemaMetadataControllerFindAllData = {
4013
- body?: never;
4014
- path?: never;
4015
- query?: {
4016
- attestationId?: string;
4017
- version?: string;
4018
- };
4019
- url: "/api/schema-metadata";
4020
- };
4021
- type SchemaMetadataControllerFindAllResponses = {
4022
- 200: Array<SchemaMetadataResponseDto>;
4023
- };
4024
- type SchemaMetadataControllerFindAllResponse = SchemaMetadataControllerFindAllResponses[keyof SchemaMetadataControllerFindAllResponses];
4025
- type SchemaMetadataControllerFindOneData = {
4026
- body?: never;
4027
- path: {
4028
- id: string;
4029
- };
4030
- query?: never;
4031
- url: "/api/schema-metadata/{id}";
4032
- };
4033
- type SchemaMetadataControllerFindOneResponses = {
4034
- 200: SchemaMetadataResponseDto;
4035
- };
4036
- type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
4037
- type SchemaMetadataControllerRemoveData = {
4038
- body?: never;
4039
- path: {
4040
- id: string;
4041
- version: string;
4042
- };
4043
- query?: never;
4044
- url: "/api/schema-metadata/{id}/versions/{version}";
4045
- };
4046
- type SchemaMetadataControllerRemoveResponses = {
4047
- /**
4048
- * Deleted
4049
- */
4050
- 200: unknown;
4051
- };
4052
- type SchemaMetadataControllerUpdateData = {
4053
- body: UpdateSchemaMetadataDto;
4054
- path: {
4055
- id: string;
4056
- version: string;
4057
- };
4058
- query?: never;
4059
- url: "/api/schema-metadata/{id}/versions/{version}";
4060
- };
4061
- type SchemaMetadataControllerUpdateResponses = {
4062
- 200: SchemaMetadataResponseDto;
4063
- };
4064
- type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
4065
- type SchemaMetadataControllerGetLatestData = {
4066
- body?: never;
4067
- path: {
4068
- id: string;
4069
- };
4070
- query?: never;
4071
- url: "/api/schema-metadata/{id}/latest";
4072
- };
4073
- type SchemaMetadataControllerGetLatestResponses = {
4074
- 200: SchemaMetadataResponseDto;
4075
- };
4076
- type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
4077
- type SchemaMetadataControllerGetVersionsData = {
4078
- body?: never;
4079
- path: {
4080
- id: string;
4081
- };
4082
- query?: never;
4083
- url: "/api/schema-metadata/{id}/versions";
4084
- };
4085
- type SchemaMetadataControllerGetVersionsResponses = {
4086
- 200: Array<SchemaMetadataResponseDto>;
4087
- };
4088
- type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
4089
- type SchemaMetadataControllerGetJwtData = {
4090
- body?: never;
4091
- path: {
4092
- id: string;
4093
- version: string;
4094
- };
4095
- query?: never;
4096
- url: "/api/schema-metadata/{id}/versions/{version}/jwt";
4097
- };
4098
- type SchemaMetadataControllerGetJwtResponses = {
4099
- /**
4100
- * Compact-serialization JWS string
4101
- */
4102
- 200: string;
4103
- };
4104
- type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
4105
- type SchemaMetadataControllerExportData = {
4106
- body?: never;
4107
- path: {
4108
- id: string;
4109
- version: string;
4110
- };
4111
- query?: never;
4112
- url: "/api/schema-metadata/{id}/versions/{version}/export";
4113
- };
4114
- type SchemaMetadataControllerExportResponses = {
4115
- /**
4116
- * Registrar-defined catalog document
4117
- */
4118
- 200: {
4119
- [key: string]: unknown;
4120
- };
4121
- };
4122
- type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
4123
- type SchemaMetadataControllerGetSchemaData = {
4124
- body?: never;
4125
- path: {
4126
- id: string;
4127
- version: string;
4128
- format: string;
4129
- };
4130
- query?: never;
4131
- url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}";
4132
- };
4133
- type SchemaMetadataControllerGetSchemaResponses = {
4134
- /**
4135
- * JSON Schema document for the requested format
4136
- */
4137
- 200: {
4138
- [key: string]: unknown;
4139
- };
4140
- };
4141
- type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
4142
- type SchemaMetadataControllerDeprecateVersionData = {
4143
- body: DeprecateSchemaMetadataDto;
4144
- path: {
4145
- id: string;
4146
- version: string;
4147
- };
4148
- query?: never;
4149
- url: "/api/schema-metadata/{id}/versions/{version}/deprecation";
4150
- };
4151
- type SchemaMetadataControllerDeprecateVersionResponses = {
4152
- 200: SchemaMetadataResponseDto;
4153
- };
4154
- type SchemaMetadataControllerDeprecateVersionResponse = SchemaMetadataControllerDeprecateVersionResponses[keyof SchemaMetadataControllerDeprecateVersionResponses];
4155
4305
  type CredentialOfferControllerGetOfferData = {
4156
4306
  body: OfferRequestDto;
4157
4307
  path?: never;
4158
4308
  query?: never;
4159
- url: "/api/issuer/offer";
4309
+ url: '/api/issuer/offer';
4160
4310
  };
4161
4311
  type CredentialOfferControllerGetOfferResponses = {
4162
4312
  /**
@@ -4171,7 +4321,7 @@ type DeferredControllerCompleteDeferredData = {
4171
4321
  transactionId: string;
4172
4322
  };
4173
4323
  query?: never;
4174
- url: "/api/issuer/deferred/{transactionId}/complete";
4324
+ url: '/api/issuer/deferred/{transactionId}/complete';
4175
4325
  };
4176
4326
  type DeferredControllerCompleteDeferredErrors = {
4177
4327
  /**
@@ -4192,7 +4342,7 @@ type DeferredControllerFailDeferredData = {
4192
4342
  transactionId: string;
4193
4343
  };
4194
4344
  query?: never;
4195
- url: "/api/issuer/deferred/{transactionId}/fail";
4345
+ url: '/api/issuer/deferred/{transactionId}/fail';
4196
4346
  };
4197
4347
  type DeferredControllerFailDeferredErrors = {
4198
4348
  /**
@@ -4211,7 +4361,7 @@ type KeyChainControllerGetProvidersData = {
4211
4361
  body?: never;
4212
4362
  path?: never;
4213
4363
  query?: never;
4214
- url: "/api/key-chain/providers";
4364
+ url: '/api/key-chain/providers';
4215
4365
  };
4216
4366
  type KeyChainControllerGetProvidersResponses = {
4217
4367
  /**
@@ -4220,6 +4370,18 @@ type KeyChainControllerGetProvidersResponses = {
4220
4370
  200: KmsProvidersResponseDto;
4221
4371
  };
4222
4372
  type KeyChainControllerGetProvidersResponse = KeyChainControllerGetProvidersResponses[keyof KeyChainControllerGetProvidersResponses];
4373
+ type KeyChainControllerGetProvidersHealthData = {
4374
+ body?: never;
4375
+ path?: never;
4376
+ query?: never;
4377
+ url: '/api/key-chain/providers/health';
4378
+ };
4379
+ type KeyChainControllerGetProvidersHealthResponses = {
4380
+ /**
4381
+ * Per-provider health result (ok, latencyMs, optional error).
4382
+ */
4383
+ 200: unknown;
4384
+ };
4223
4385
  type KeyChainControllerGetAllData = {
4224
4386
  body?: never;
4225
4387
  path?: never;
@@ -4227,9 +4389,9 @@ type KeyChainControllerGetAllData = {
4227
4389
  /**
4228
4390
  * Optional usage type filter
4229
4391
  */
4230
- usageType?: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
4392
+ usageType?: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
4231
4393
  };
4232
- url: "/api/key-chain";
4394
+ url: '/api/key-chain';
4233
4395
  };
4234
4396
  type KeyChainControllerGetAllResponses = {
4235
4397
  /**
@@ -4242,7 +4404,7 @@ type KeyChainControllerCreateData = {
4242
4404
  body: KeyChainCreateDto;
4243
4405
  path?: never;
4244
4406
  query?: never;
4245
- url: "/api/key-chain";
4407
+ url: '/api/key-chain';
4246
4408
  };
4247
4409
  type KeyChainControllerCreateResponses = {
4248
4410
  /**
@@ -4256,7 +4418,7 @@ type KeyChainControllerDeleteData = {
4256
4418
  id: string;
4257
4419
  };
4258
4420
  query?: never;
4259
- url: "/api/key-chain/{id}";
4421
+ url: '/api/key-chain/{id}';
4260
4422
  };
4261
4423
  type KeyChainControllerDeleteErrors = {
4262
4424
  /**
@@ -4276,7 +4438,7 @@ type KeyChainControllerGetByIdData = {
4276
4438
  id: string;
4277
4439
  };
4278
4440
  query?: never;
4279
- url: "/api/key-chain/{id}";
4441
+ url: '/api/key-chain/{id}';
4280
4442
  };
4281
4443
  type KeyChainControllerGetByIdErrors = {
4282
4444
  /**
@@ -4297,7 +4459,7 @@ type KeyChainControllerUpdateData = {
4297
4459
  id: string;
4298
4460
  };
4299
4461
  query?: never;
4300
- url: "/api/key-chain/{id}";
4462
+ url: '/api/key-chain/{id}';
4301
4463
  };
4302
4464
  type KeyChainControllerUpdateErrors = {
4303
4465
  /**
@@ -4317,7 +4479,7 @@ type KeyChainControllerExportData = {
4317
4479
  id: string;
4318
4480
  };
4319
4481
  query?: never;
4320
- url: "/api/key-chain/{id}/export";
4482
+ url: '/api/key-chain/{id}/export';
4321
4483
  };
4322
4484
  type KeyChainControllerExportErrors = {
4323
4485
  /**
@@ -4336,7 +4498,7 @@ type KeyChainControllerImportData = {
4336
4498
  body: KeyChainImportDto;
4337
4499
  path?: never;
4338
4500
  query?: never;
4339
- url: "/api/key-chain/import";
4501
+ url: '/api/key-chain/import';
4340
4502
  };
4341
4503
  type KeyChainControllerImportResponses = {
4342
4504
  /**
@@ -4350,7 +4512,7 @@ type KeyChainControllerRotateData = {
4350
4512
  id: string;
4351
4513
  };
4352
4514
  query?: never;
4353
- url: "/api/key-chain/{id}/rotate";
4515
+ url: '/api/key-chain/{id}/rotate';
4354
4516
  };
4355
4517
  type KeyChainControllerRotateErrors = {
4356
4518
  /**
@@ -4368,7 +4530,7 @@ type VerifierOfferControllerGetOfferData = {
4368
4530
  body: PresentationRequest;
4369
4531
  path?: never;
4370
4532
  query?: never;
4371
- url: "/api/verifier/offer";
4533
+ url: '/api/verifier/offer';
4372
4534
  };
4373
4535
  type VerifierOfferControllerGetOfferResponses = {
4374
4536
  /**
@@ -4381,7 +4543,7 @@ type StorageControllerUploadData = {
4381
4543
  body: FileUploadDto;
4382
4544
  path?: never;
4383
4545
  query?: never;
4384
- url: "/api/storage";
4546
+ url: '/api/storage';
4385
4547
  };
4386
4548
  type StorageControllerUploadResponses = {
4387
4549
  201: {
@@ -4390,4 +4552,4 @@ type StorageControllerUploadResponses = {
4390
4552
  };
4391
4553
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
4392
4554
 
4393
- export type { ClientControllerCreateClientResponses as $, AccessCertificateRefDto as A, AuthorizationResponse as B, AuthorizeQueries as C, CacheControllerClearAllCachesData as D, CacheControllerClearAllCachesResponse as E, CacheControllerClearAllCachesResponses as F, CacheControllerClearStatusListCacheData as G, CacheControllerClearStatusListCacheResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertificateInfoDto as O, ChainedAsConfig as P, ChainedAsErrorResponseDto as Q, ChainedAsParResponseDto as R, Session as S, ChainedAsTokenConfig as T, ChainedAsTokenRequestDto as U, ChainedAsTokenResponseDto as V, ClaimDisplayInfo as W, ClaimMetadata as X, ClaimsQuery as Y, ClientControllerCreateClientData as Z, ClientControllerCreateClientResponse as _, AllowListPolicy as a, DeferredControllerCompleteDeferredResponses as a$, ClientControllerDeleteClientData as a0, ClientControllerDeleteClientResponses as a1, ClientControllerGetClientData as a2, ClientControllerGetClientResponse as a3, ClientControllerGetClientResponses as a4, ClientControllerGetClientSecretData as a5, ClientControllerGetClientSecretResponse as a6, ClientControllerGetClientSecretResponses as a7, ClientControllerGetClientsData as a8, ClientControllerGetClientsResponse as a9, CredentialConfigControllerGetConfigByIdResponses as aA, CredentialConfigControllerGetConfigsData as aB, CredentialConfigControllerGetConfigsResponse as aC, CredentialConfigControllerGetConfigsResponses as aD, CredentialConfigControllerSignSchemaMetaConfigData as aE, CredentialConfigControllerSignSchemaMetaConfigErrors as aF, CredentialConfigControllerSignSchemaMetaConfigResponses as aG, CredentialConfigControllerSignVersionSchemaMetaConfigData as aH, CredentialConfigControllerSignVersionSchemaMetaConfigErrors as aI, CredentialConfigControllerSignVersionSchemaMetaConfigResponses as aJ, CredentialConfigControllerStoreCredentialConfigurationData as aK, CredentialConfigControllerStoreCredentialConfigurationResponse as aL, CredentialConfigControllerStoreCredentialConfigurationResponses as aM, CredentialConfigControllerUpdateCredentialConfigurationData as aN, CredentialConfigControllerUpdateCredentialConfigurationResponse as aO, CredentialConfigControllerUpdateCredentialConfigurationResponses as aP, CredentialConfigCreate as aQ, CredentialConfigUpdate as aR, CredentialOfferControllerGetOfferData as aS, CredentialOfferControllerGetOfferResponse as aT, CredentialOfferControllerGetOfferResponses as aU, CredentialQuery as aV, CredentialSetQuery as aW, Dcql as aX, DeferredControllerCompleteDeferredData as aY, DeferredControllerCompleteDeferredErrors as aZ, DeferredControllerCompleteDeferredResponse as a_, ClientControllerGetClientsResponses as aa, ClientControllerRotateClientSecretData as ab, ClientControllerRotateClientSecretResponse as ac, ClientControllerRotateClientSecretResponses as ad, ClientControllerUpdateClientData as ae, ClientControllerUpdateClientResponse as af, ClientControllerUpdateClientResponses as ag, ClientCredentialsDto as ah, ClientEntity as ai, ClientOptions as aj, ClientSecretResponseDto as ak, CompleteDeferredDto as al, CreateAccessCertificateDto as am, CreateAttributeProviderDto as an, CreateClientDto as ao, CreateRegistrarConfigDto as ap, CreateStatusListDto as aq, CreateTenantDto as ar, CreateUserDto as as, CreateWebhookEndpointDto as at, CredentialConfig as au, CredentialConfigControllerDeleteIssuanceConfigurationData as av, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aw, CredentialConfigControllerDeleteIssuanceConfigurationResponses as ax, CredentialConfigControllerGetConfigByIdData as ay, CredentialConfigControllerGetConfigByIdResponse as az, ApiKeyConfig as b, KeyChainControllerUpdateData as b$, DeferredControllerFailDeferredData as b0, DeferredControllerFailDeferredErrors as b1, DeferredControllerFailDeferredResponse as b2, DeferredControllerFailDeferredResponses as b3, DeferredCredentialRequestDto as b4, DeferredOperationResponse as b5, DeprecateSchemaMetadataDto as b6, Display as b7, DisplayImage as b8, DisplayInfo as b9, IssuerMetadataCredentialConfig as bA, JwksResponseDto as bB, KeyAttestationsRequired as bC, KeyChainControllerCreateData as bD, KeyChainControllerCreateResponses as bE, KeyChainControllerDeleteData as bF, KeyChainControllerDeleteErrors as bG, KeyChainControllerDeleteResponses as bH, KeyChainControllerExportData as bI, KeyChainControllerExportErrors as bJ, KeyChainControllerExportResponse as bK, KeyChainControllerExportResponses as bL, KeyChainControllerGetAllData as bM, KeyChainControllerGetAllResponse as bN, KeyChainControllerGetAllResponses as bO, KeyChainControllerGetByIdData as bP, KeyChainControllerGetByIdErrors as bQ, KeyChainControllerGetByIdResponse as bR, KeyChainControllerGetByIdResponses as bS, KeyChainControllerGetProvidersData as bT, KeyChainControllerGetProvidersResponse as bU, KeyChainControllerGetProvidersResponses as bV, KeyChainControllerImportData as bW, KeyChainControllerImportResponses as bX, KeyChainControllerRotateData as bY, KeyChainControllerRotateErrors as bZ, KeyChainControllerRotateResponses as b_, DisplayLogo as ba, EcJwk as bb, EcPublic as bc, EmbeddedDisclosurePolicy as bd, ExportEcJwk as be, ExportRotationPolicyDto as bf, ExternalTrustListEntity as bg, FailDeferredDto as bh, FileUploadDto as bi, FrontendConfigResponseDto as bj, GrafanaConfigDto as bk, IaeActionOpenid4VpPresentation as bl, IaeActionRedirectToWeb as bm, ImportTenantDto as bn, InteractiveAuthorizationCodeResponseDto as bo, InteractiveAuthorizationErrorResponseDto as bp, InteractiveAuthorizationRequestDto as bq, InternalTrustListEntity as br, IssuanceConfig as bs, IssuanceConfigControllerGetIssuanceConfigurationsData as bt, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bu, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bv, IssuanceConfigControllerStoreIssuanceConfigurationData as bw, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bx, IssuanceConfigControllerStoreIssuanceConfigurationResponses as by, IssuanceDto as bz, AppControllerGetFrontendConfigData as c, RegistrarControllerDeleteConfigData as c$, KeyChainControllerUpdateErrors as c0, KeyChainControllerUpdateResponses as c1, KeyChainCreateDto as c2, KeyChainEntity as c3, KeyChainExportDto as c4, KeyChainImportDto as c5, KeyChainResponseDto as c6, KeyChainUpdateDto as c7, KmsProviderCapabilitiesDto as c8, KmsProviderInfoDto as c9, PresentationManagementControllerListSchemaMetadataCatalogResponses as cA, PresentationManagementControllerReissueRegistrationCertificateData as cB, PresentationManagementControllerReissueRegistrationCertificateErrors as cC, PresentationManagementControllerReissueRegistrationCertificateResponses as cD, PresentationManagementControllerResolveIssuerMetadataData as cE, PresentationManagementControllerResolveIssuerMetadataErrors as cF, PresentationManagementControllerResolveIssuerMetadataResponses as cG, PresentationManagementControllerResolveSchemaMetadataData as cH, PresentationManagementControllerResolveSchemaMetadataErrors as cI, PresentationManagementControllerResolveSchemaMetadataResponses as cJ, PresentationManagementControllerStorePresentationConfigData as cK, PresentationManagementControllerStorePresentationConfigResponse as cL, PresentationManagementControllerStorePresentationConfigResponses as cM, PresentationManagementControllerUpdateConfigurationData as cN, PresentationManagementControllerUpdateConfigurationResponse as cO, PresentationManagementControllerUpdateConfigurationResponses as cP, PresentationRequest as cQ, PublicKeyInfoDto as cR, RegistrarConfigResponseDto as cS, RegistrarControllerCreateAccessCertificateData as cT, RegistrarControllerCreateAccessCertificateErrors as cU, RegistrarControllerCreateAccessCertificateResponse as cV, RegistrarControllerCreateAccessCertificateResponses as cW, RegistrarControllerCreateConfigData as cX, RegistrarControllerCreateConfigErrors as cY, RegistrarControllerCreateConfigResponse as cZ, RegistrarControllerCreateConfigResponses as c_, KmsProvidersResponseDto as ca, ManagedUserDto as cb, MetadataSchemaDto as cc, NoneTrustPolicy as cd, NotificationRequestDto as ce, Object$1 as cf, ObjectWritable as cg, OfferRequestDto as ch, OfferResponse as ci, ParResponseDto as cj, PolicyCredential as ck, PresentationAttachment as cl, PresentationConfig as cm, PresentationConfigCreateDto as cn, PresentationConfigUpdateDto as co, PresentationConfigWritable as cp, PresentationDuringIssuanceConfig as cq, PresentationManagementControllerConfigurationData as cr, PresentationManagementControllerConfigurationResponse as cs, PresentationManagementControllerConfigurationResponses as ct, PresentationManagementControllerDeleteConfigurationData as cu, PresentationManagementControllerDeleteConfigurationResponses as cv, PresentationManagementControllerGetConfigurationData as cw, PresentationManagementControllerGetConfigurationResponse as cx, PresentationManagementControllerGetConfigurationResponses as cy, PresentationManagementControllerListSchemaMetadataCatalogData as cz, AppControllerGetFrontendConfigResponse as d, SessionConfigControllerResetConfigData as d$, RegistrarControllerDeleteConfigResponse as d0, RegistrarControllerDeleteConfigResponses as d1, RegistrarControllerGetConfigData as d2, RegistrarControllerGetConfigErrors as d3, RegistrarControllerGetConfigResponse as d4, RegistrarControllerGetConfigResponses as d5, RegistrarControllerUpdateConfigData as d6, RegistrarControllerUpdateConfigErrors as d7, RegistrarControllerUpdateConfigResponse as d8, RegistrarControllerUpdateConfigResponses as d9, SchemaMetadataControllerGetJwtData as dA, SchemaMetadataControllerGetJwtResponse as dB, SchemaMetadataControllerGetJwtResponses as dC, SchemaMetadataControllerGetLatestData as dD, SchemaMetadataControllerGetLatestResponse as dE, SchemaMetadataControllerGetLatestResponses as dF, SchemaMetadataControllerGetSchemaData as dG, SchemaMetadataControllerGetSchemaResponse as dH, SchemaMetadataControllerGetSchemaResponses as dI, SchemaMetadataControllerGetVersionsData as dJ, SchemaMetadataControllerGetVersionsResponse as dK, SchemaMetadataControllerGetVersionsResponses as dL, SchemaMetadataControllerGetVocabulariesData as dM, SchemaMetadataControllerGetVocabulariesResponse as dN, SchemaMetadataControllerGetVocabulariesResponses as dO, SchemaMetadataControllerRemoveData as dP, SchemaMetadataControllerRemoveResponses as dQ, SchemaMetadataControllerUpdateData as dR, SchemaMetadataControllerUpdateResponse as dS, SchemaMetadataControllerUpdateResponses as dT, SchemaMetadataResponseDto as dU, SchemaMetadataVocabulariesDto as dV, SchemaResponse as dW, SchemaUriEntry as dX, SessionConfigControllerGetConfigData as dY, SessionConfigControllerGetConfigResponse as dZ, SessionConfigControllerGetConfigResponses as d_, RegistrationCertificateBody as da, RegistrationCertificateDefaults as db, RegistrationCertificatePurpose as dc, RegistrationCertificateRequest as dd, ResolveIssuerMetadataDto as de, ResolveSchemaMetadataDto as df, RoleDto as dg, RootOfTrustPolicy as dh, RotationPolicyCreateDto as di, RotationPolicyImportDto as dj, RotationPolicyResponseDto as dk, RotationPolicyUpdateDto as dl, SchemaMetaConfig as dm, SchemaMetadataControllerDeprecateVersionData as dn, SchemaMetadataControllerDeprecateVersionResponse as dp, SchemaMetadataControllerDeprecateVersionResponses as dq, SchemaMetadataControllerExportData as dr, SchemaMetadataControllerExportResponse as ds, SchemaMetadataControllerExportResponses as dt, SchemaMetadataControllerFindAllData as du, SchemaMetadataControllerFindAllResponse as dv, SchemaMetadataControllerFindAllResponses as dw, SchemaMetadataControllerFindOneData as dx, SchemaMetadataControllerFindOneResponse as dy, SchemaMetadataControllerFindOneResponses as dz, AppControllerGetFrontendConfigResponses as e, TenantControllerInitTenantData as e$, SessionConfigControllerResetConfigResponses as e0, SessionConfigControllerUpdateConfigData as e1, SessionConfigControllerUpdateConfigResponse as e2, SessionConfigControllerUpdateConfigResponses as e3, SessionControllerDeleteSessionData as e4, SessionControllerDeleteSessionResponses as e5, SessionControllerGetAllSessionsData as e6, SessionControllerGetAllSessionsResponse as e7, SessionControllerGetAllSessionsResponses as e8, SessionControllerGetSessionData as e9, StatusListManagementControllerCreateListResponse as eA, StatusListManagementControllerCreateListResponses as eB, StatusListManagementControllerDeleteListData as eC, StatusListManagementControllerDeleteListResponse as eD, StatusListManagementControllerDeleteListResponses as eE, StatusListManagementControllerGetListData as eF, StatusListManagementControllerGetListResponse as eG, StatusListManagementControllerGetListResponses as eH, StatusListManagementControllerGetListsData as eI, StatusListManagementControllerGetListsResponse as eJ, StatusListManagementControllerGetListsResponses as eK, StatusListManagementControllerUpdateListData as eL, StatusListManagementControllerUpdateListResponse as eM, StatusListManagementControllerUpdateListResponses as eN, StatusListResponseDto as eO, StatusUpdateDto as eP, StorageControllerUploadData as eQ, StorageControllerUploadResponse as eR, StorageControllerUploadResponses as eS, TenantControllerDeleteTenantData as eT, TenantControllerDeleteTenantResponses as eU, TenantControllerGetTenantData as eV, TenantControllerGetTenantResponse as eW, TenantControllerGetTenantResponses as eX, TenantControllerGetTenantsData as eY, TenantControllerGetTenantsResponse as eZ, TenantControllerGetTenantsResponses as e_, SessionControllerGetSessionLogsData as ea, SessionControllerGetSessionLogsResponse as eb, SessionControllerGetSessionLogsResponses as ec, SessionControllerGetSessionResponse as ed, SessionControllerGetSessionResponses as ee, SessionControllerRevokeAllData as ef, SessionControllerRevokeAllResponses as eg, SessionEventsControllerSubscribeToSessionEventsData as eh, SessionEventsControllerSubscribeToSessionEventsResponses as ei, SessionLogEntryResponseDto as ej, SessionStorageConfig as ek, SignSchemaMetaConfigDto as el, SignVersionSchemaMetaConfigDto as em, StatusListAggregationDto as en, StatusListConfig as eo, StatusListConfigControllerGetConfigData as ep, StatusListConfigControllerGetConfigResponse as eq, StatusListConfigControllerGetConfigResponses as er, StatusListConfigControllerResetConfigData as es, StatusListConfigControllerResetConfigResponse as et, StatusListConfigControllerResetConfigResponses as eu, StatusListConfigControllerUpdateConfigData as ev, StatusListConfigControllerUpdateConfigResponse as ew, StatusListConfigControllerUpdateConfigResponses as ex, StatusListImportDto as ey, StatusListManagementControllerCreateListData as ez, AppControllerGetVersionData as f, Vct as f$, TenantControllerInitTenantResponse as f0, TenantControllerInitTenantResponses as f1, TenantControllerUpdateTenantData as f2, TenantControllerUpdateTenantResponse as f3, TenantControllerUpdateTenantResponses as f4, TenantEntity as f5, TokenResponse as f6, TransactionData as f7, TrustAuthorityDto as f8, TrustAuthorityEntry as f9, TrustListVersion as fA, TrustedAuthorityQuery as fB, UpdateAttributeProviderDto as fC, UpdateClientDto as fD, UpdateRegistrarConfigDto as fE, UpdateSchemaMetadataDto as fF, UpdateSessionConfigDto as fG, UpdateStatusListConfigDto as fH, UpdateStatusListDto as fI, UpdateTenantDto as fJ, UpdateUserDto as fK, UpdateWebhookEndpointDto as fL, UpstreamOidcConfig as fM, UserControllerCreateUserData as fN, UserControllerCreateUserResponse as fO, UserControllerCreateUserResponses as fP, UserControllerDeleteUserData as fQ, UserControllerDeleteUserResponses as fR, UserControllerGetUserData as fS, UserControllerGetUserResponse as fT, UserControllerGetUserResponses as fU, UserControllerGetUsersData as fV, UserControllerGetUsersResponse as fW, UserControllerGetUsersResponses as fX, UserControllerUpdateUserData as fY, UserControllerUpdateUserResponse as fZ, UserControllerUpdateUserResponses as f_, TrustList as fa, TrustListControllerCreateTrustListData as fb, TrustListControllerCreateTrustListResponse as fc, TrustListControllerCreateTrustListResponses as fd, TrustListControllerDeleteTrustListData as fe, TrustListControllerDeleteTrustListResponses as ff, TrustListControllerExportTrustListData as fg, TrustListControllerExportTrustListResponse as fh, TrustListControllerExportTrustListResponses as fi, TrustListControllerGetAllTrustListsData as fj, TrustListControllerGetAllTrustListsResponse as fk, TrustListControllerGetAllTrustListsResponses as fl, TrustListControllerGetTrustListData as fm, TrustListControllerGetTrustListResponse as fn, TrustListControllerGetTrustListResponses as fo, TrustListControllerGetTrustListVersionData as fp, TrustListControllerGetTrustListVersionResponse as fq, TrustListControllerGetTrustListVersionResponses as fr, TrustListControllerGetTrustListVersionsData as fs, TrustListControllerGetTrustListVersionsResponse as ft, TrustListControllerGetTrustListVersionsResponses as fu, TrustListControllerUpdateTrustListData as fv, TrustListControllerUpdateTrustListResponse as fw, TrustListControllerUpdateTrustListResponses as fx, TrustListCreateDto as fy, TrustListEntityInfo as fz, AppControllerGetVersionResponses as g, VerifierOfferControllerGetOfferData as g0, VerifierOfferControllerGetOfferResponse as g1, VerifierOfferControllerGetOfferResponses as g2, VocabularyEntryDto as g3, WebHookAuthConfigHeader as g4, WebHookAuthConfigNone as g5, WebhookConfig as g6, WebhookEndpointControllerCreateData as g7, WebhookEndpointControllerCreateResponses as g8, WebhookEndpointControllerDeleteData as g9, WebhookEndpointControllerDeleteErrors as ga, WebhookEndpointControllerDeleteResponses as gb, WebhookEndpointControllerGetAllData as gc, WebhookEndpointControllerGetAllResponse as gd, WebhookEndpointControllerGetAllResponses as ge, WebhookEndpointControllerGetByIdData as gf, WebhookEndpointControllerGetByIdErrors as gg, WebhookEndpointControllerGetByIdResponses as gh, WebhookEndpointControllerUpdateData as gi, WebhookEndpointControllerUpdateErrors as gj, WebhookEndpointControllerUpdateResponses as gk, WebhookEndpointEntity as gl, AttestationBasedPolicy as h, AttributeProviderControllerCreateData as i, AttributeProviderControllerCreateResponses as j, AttributeProviderControllerDeleteData as k, AttributeProviderControllerDeleteErrors as l, AttributeProviderControllerDeleteResponses as m, AttributeProviderControllerGetAllData as n, AttributeProviderControllerGetAllResponses as o, AttributeProviderControllerGetByIdData as p, AttributeProviderControllerGetByIdErrors as q, AttributeProviderControllerGetByIdResponses as r, AttributeProviderControllerUpdateData as s, AttributeProviderControllerUpdateErrors as t, AttributeProviderControllerUpdateResponses as u, AttributeProviderEntity as v, AuthenticationMethodAuth as w, AuthenticationMethodNone as x, AuthenticationMethodPresentation as y, AuthenticationUrlConfig as z };
4555
+ export type { ChainedAsParResponseDto as $, AccessCertificateRefDto as A, AuthControllerGetOAuth2TokenData as B, ClientOptions as C, AuthControllerGetOAuth2TokenErrors as D, AuthControllerGetOAuth2TokenResponse as E, AuthControllerGetOAuth2TokenResponses as F, AuthenticationMethodAuth as G, AuthenticationMethodNone as H, AuthenticationMethodPresentation as I, AuthenticationUrlConfig as J, AuthorizationResponse as K, AuthorizeQueries as L, CacheControllerClearAllCachesData as M, CacheControllerClearAllCachesResponse as N, CacheControllerClearAllCachesResponses as O, CacheControllerClearStatusListCacheData as P, CacheControllerClearStatusListCacheResponse as Q, CacheControllerClearStatusListCacheResponses as R, Session as S, CacheControllerClearTrustListCacheData as T, CacheControllerClearTrustListCacheResponse as U, CacheControllerClearTrustListCacheResponses as V, CacheControllerGetStatsData as W, CacheControllerGetStatsResponses as X, CertificateInfoDto as Y, ChainedAsConfig as Z, ChainedAsErrorResponseDto as _, AllowListPolicy as a, DeferredControllerCompleteDeferredResponse as a$, ChainedAsTokenConfig as a0, ChainedAsTokenRequestDto as a1, ChainedAsTokenResponseDto as a2, ClaimFieldDefinitionDto as a3, ClaimsQuery as a4, ClientControllerCreateClientData as a5, ClientControllerCreateClientResponse as a6, ClientControllerCreateClientResponses as a7, ClientControllerDeleteClientData as a8, ClientControllerDeleteClientResponses as a9, CreateWebhookEndpointDto as aA, CredentialConfig as aB, CredentialConfigControllerDeleteIssuanceConfigurationData as aC, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aD, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aE, CredentialConfigControllerGetConfigByIdData as aF, CredentialConfigControllerGetConfigByIdResponse as aG, CredentialConfigControllerGetConfigByIdResponses as aH, CredentialConfigControllerGetConfigsData as aI, CredentialConfigControllerGetConfigsResponse as aJ, CredentialConfigControllerGetConfigsResponses as aK, CredentialConfigControllerStoreCredentialConfigurationData as aL, CredentialConfigControllerStoreCredentialConfigurationResponse as aM, CredentialConfigControllerStoreCredentialConfigurationResponses as aN, CredentialConfigControllerUpdateCredentialConfigurationData as aO, CredentialConfigControllerUpdateCredentialConfigurationResponse as aP, CredentialConfigControllerUpdateCredentialConfigurationResponses as aQ, CredentialConfigCreate as aR, CredentialConfigUpdate as aS, CredentialOfferControllerGetOfferData as aT, CredentialOfferControllerGetOfferResponse as aU, CredentialOfferControllerGetOfferResponses as aV, CredentialQuery as aW, CredentialSetQuery as aX, Dcql as aY, DeferredControllerCompleteDeferredData as aZ, DeferredControllerCompleteDeferredErrors as a_, ClientControllerGetClientData as aa, ClientControllerGetClientResponse as ab, ClientControllerGetClientResponses as ac, ClientControllerGetClientSecretData as ad, ClientControllerGetClientSecretResponse as ae, ClientControllerGetClientSecretResponses as af, ClientControllerGetClientsData as ag, ClientControllerGetClientsResponse as ah, ClientControllerGetClientsResponses as ai, ClientControllerRotateClientSecretData as aj, ClientControllerRotateClientSecretResponse as ak, ClientControllerRotateClientSecretResponses as al, ClientControllerUpdateClientData as am, ClientControllerUpdateClientResponse as an, ClientControllerUpdateClientResponses as ao, ClientCredentialsDto as ap, ClientEntity as aq, ClientSecretResponseDto as ar, CompleteDeferredDto as as, CreateAccessCertificateDto as at, CreateAttributeProviderDto as au, CreateClientDto as av, CreateRegistrarConfigDto as aw, CreateStatusListDto as ax, CreateTenantDto as ay, CreateUserDto as az, ApiKeyConfig as b, KeyChainControllerGetProvidersResponses as b$, DeferredControllerCompleteDeferredResponses as b0, DeferredControllerFailDeferredData as b1, DeferredControllerFailDeferredErrors as b2, DeferredControllerFailDeferredResponse as b3, DeferredControllerFailDeferredResponses as b4, DeferredCredentialRequestDto as b5, DeferredOperationResponse as b6, DeprecateSchemaMetadataDto as b7, Display as b8, DisplayImage as b9, IssuanceConfigControllerStoreIssuanceConfigurationData as bA, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bB, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bC, IssuanceDto as bD, IssuerMetadataCredentialConfig as bE, JwksResponseDto as bF, KeyAttestationsRequired as bG, KeyChainControllerCreateData as bH, KeyChainControllerCreateResponses as bI, KeyChainControllerDeleteData as bJ, KeyChainControllerDeleteErrors as bK, KeyChainControllerDeleteResponses as bL, KeyChainControllerExportData as bM, KeyChainControllerExportErrors as bN, KeyChainControllerExportResponse as bO, KeyChainControllerExportResponses as bP, KeyChainControllerGetAllData as bQ, KeyChainControllerGetAllResponse as bR, KeyChainControllerGetAllResponses as bS, KeyChainControllerGetByIdData as bT, KeyChainControllerGetByIdErrors as bU, KeyChainControllerGetByIdResponse as bV, KeyChainControllerGetByIdResponses as bW, KeyChainControllerGetProvidersData as bX, KeyChainControllerGetProvidersHealthData as bY, KeyChainControllerGetProvidersHealthResponses as bZ, KeyChainControllerGetProvidersResponse as b_, DisplayInfo as ba, DisplayLogo as bb, EcJwk as bc, EcPublic as bd, EmbeddedDisclosurePolicy as be, ExportEcJwk as bf, ExportRotationPolicyDto as bg, ExternalTrustListEntity as bh, FailDeferredDto as bi, FederationConfig as bj, FederationTrustAnchorConfig as bk, FieldDisplayDto as bl, FileUploadDto as bm, FrontendConfigResponseDto as bn, GrafanaConfigDto as bo, IaeActionOpenid4VpPresentation as bp, IaeActionRedirectToWeb as bq, ImportTenantDto as br, InteractiveAuthorizationCodeResponseDto as bs, InteractiveAuthorizationErrorResponseDto as bt, InteractiveAuthorizationRequestDto as bu, InternalTrustListEntity as bv, IssuanceConfig as bw, IssuanceConfigControllerGetIssuanceConfigurationsData as bx, IssuanceConfigControllerGetIssuanceConfigurationsResponse as by, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bz, AppControllerGetFrontendConfigData as c, RegistrarControllerCreateAccessCertificateErrors as c$, KeyChainControllerImportData as c0, KeyChainControllerImportResponses as c1, KeyChainControllerRotateData as c2, KeyChainControllerRotateErrors as c3, KeyChainControllerRotateResponses as c4, KeyChainControllerUpdateData as c5, KeyChainControllerUpdateErrors as c6, KeyChainControllerUpdateResponses as c7, KeyChainCreateDto as c8, KeyChainEntity as c9, PresentationManagementControllerConfigurationResponses as cA, PresentationManagementControllerDeleteConfigurationData as cB, PresentationManagementControllerDeleteConfigurationResponses as cC, PresentationManagementControllerGetConfigurationData as cD, PresentationManagementControllerGetConfigurationResponse as cE, PresentationManagementControllerGetConfigurationResponses as cF, PresentationManagementControllerListSchemaMetadataCatalogData as cG, PresentationManagementControllerListSchemaMetadataCatalogResponses as cH, PresentationManagementControllerReissueRegistrationCertificateData as cI, PresentationManagementControllerReissueRegistrationCertificateErrors as cJ, PresentationManagementControllerReissueRegistrationCertificateResponses as cK, PresentationManagementControllerResolveIssuerMetadataData as cL, PresentationManagementControllerResolveIssuerMetadataErrors as cM, PresentationManagementControllerResolveIssuerMetadataResponses as cN, PresentationManagementControllerResolveSchemaMetadataData as cO, PresentationManagementControllerResolveSchemaMetadataErrors as cP, PresentationManagementControllerResolveSchemaMetadataResponses as cQ, PresentationManagementControllerStorePresentationConfigData as cR, PresentationManagementControllerStorePresentationConfigResponse as cS, PresentationManagementControllerStorePresentationConfigResponses as cT, PresentationManagementControllerUpdateConfigurationData as cU, PresentationManagementControllerUpdateConfigurationResponse as cV, PresentationManagementControllerUpdateConfigurationResponses as cW, PresentationRequest as cX, PublicKeyInfoDto as cY, RegistrarConfigResponseDto as cZ, RegistrarControllerCreateAccessCertificateData as c_, KeyChainExportDto as ca, KeyChainImportDto as cb, KeyChainResponseDto as cc, KeyChainUpdateDto as cd, KmsProviderCapabilitiesDto as ce, KmsProviderInfoDto as cf, KmsProvidersResponseDto as cg, ManagedUserDto as ch, MetadataSchemaDto as ci, NoneTrustPolicy as cj, NotificationRequestDto as ck, Object$1 as cl, ObjectWritable as cm, OfferRequestDto as cn, OfferResponse as co, PaginatedSessionResponseDto as cp, ParResponseDto as cq, PolicyCredential as cr, PresentationAttachment as cs, PresentationConfig as ct, PresentationConfigCreateDto as cu, PresentationConfigUpdateDto as cv, PresentationConfigWritable as cw, PresentationDuringIssuanceConfig as cx, PresentationManagementControllerConfigurationData as cy, PresentationManagementControllerConfigurationResponse as cz, AppControllerGetFrontendConfigResponse as d, SchemaMetadataControllerSignVersionSchemaMetaConfigData as d$, RegistrarControllerCreateAccessCertificateResponse as d0, RegistrarControllerCreateAccessCertificateResponses as d1, RegistrarControllerCreateConfigData as d2, RegistrarControllerCreateConfigErrors as d3, RegistrarControllerCreateConfigResponse as d4, RegistrarControllerCreateConfigResponses as d5, RegistrarControllerDeleteConfigData as d6, RegistrarControllerDeleteConfigResponse as d7, RegistrarControllerDeleteConfigResponses as d8, RegistrarControllerGetConfigData as d9, SchemaMetadataControllerExportResponses as dA, SchemaMetadataControllerFindAllData as dB, SchemaMetadataControllerFindAllResponse as dC, SchemaMetadataControllerFindAllResponses as dD, SchemaMetadataControllerFindOneData as dE, SchemaMetadataControllerFindOneResponse as dF, SchemaMetadataControllerFindOneResponses as dG, SchemaMetadataControllerGetJwtData as dH, SchemaMetadataControllerGetJwtResponse as dI, SchemaMetadataControllerGetJwtResponses as dJ, SchemaMetadataControllerGetLatestData as dK, SchemaMetadataControllerGetLatestResponse as dL, SchemaMetadataControllerGetLatestResponses as dM, SchemaMetadataControllerGetSchemaData as dN, SchemaMetadataControllerGetSchemaResponse as dO, SchemaMetadataControllerGetSchemaResponses as dP, SchemaMetadataControllerGetVersionsData as dQ, SchemaMetadataControllerGetVersionsResponse as dR, SchemaMetadataControllerGetVersionsResponses as dS, SchemaMetadataControllerGetVocabulariesData as dT, SchemaMetadataControllerGetVocabulariesResponse as dU, SchemaMetadataControllerGetVocabulariesResponses as dV, SchemaMetadataControllerRemoveData as dW, SchemaMetadataControllerRemoveResponses as dX, SchemaMetadataControllerSignSchemaMetaConfigData as dY, SchemaMetadataControllerSignSchemaMetaConfigErrors as dZ, SchemaMetadataControllerSignSchemaMetaConfigResponses as d_, RegistrarControllerGetConfigErrors as da, RegistrarControllerGetConfigResponse as db, RegistrarControllerGetConfigResponses as dc, RegistrarControllerUpdateConfigData as dd, RegistrarControllerUpdateConfigErrors as de, RegistrarControllerUpdateConfigResponse as df, RegistrarControllerUpdateConfigResponses as dg, RegistrationCertificateBody as dh, RegistrationCertificateDefaults as di, RegistrationCertificatePurpose as dj, RegistrationCertificateRequest as dk, ResolveIssuerMetadataDto as dl, ResolveSchemaMetadataDto as dm, RoleDto as dn, RootOfTrustPolicy as dp, RotationPolicyCreateDto as dq, RotationPolicyImportDto as dr, RotationPolicyResponseDto as ds, RotationPolicyUpdateDto as dt, SchemaMetaConfig as du, SchemaMetadataControllerDeprecateVersionData as dv, SchemaMetadataControllerDeprecateVersionResponse as dw, SchemaMetadataControllerDeprecateVersionResponses as dx, SchemaMetadataControllerExportData as dy, SchemaMetadataControllerExportResponse as dz, AppControllerGetFrontendConfigResponses as e, StatusUpdateDto as e$, SchemaMetadataControllerSignVersionSchemaMetaConfigErrors as e0, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as e1, SchemaMetadataControllerUpdateData as e2, SchemaMetadataControllerUpdateResponse as e3, SchemaMetadataControllerUpdateResponses as e4, SchemaMetadataResponseDto as e5, SchemaMetadataVocabulariesDto as e6, SchemaUriEntry as e7, SessionConfigControllerGetConfigData as e8, SessionConfigControllerGetConfigResponse as e9, StatusListConfig as eA, StatusListConfigControllerGetConfigData as eB, StatusListConfigControllerGetConfigResponse as eC, StatusListConfigControllerGetConfigResponses as eD, StatusListConfigControllerResetConfigData as eE, StatusListConfigControllerResetConfigResponse as eF, StatusListConfigControllerResetConfigResponses as eG, StatusListConfigControllerUpdateConfigData as eH, StatusListConfigControllerUpdateConfigResponse as eI, StatusListConfigControllerUpdateConfigResponses as eJ, StatusListImportDto as eK, StatusListManagementControllerCreateListData as eL, StatusListManagementControllerCreateListResponse as eM, StatusListManagementControllerCreateListResponses as eN, StatusListManagementControllerDeleteListData as eO, StatusListManagementControllerDeleteListResponse as eP, StatusListManagementControllerDeleteListResponses as eQ, StatusListManagementControllerGetListData as eR, StatusListManagementControllerGetListResponse as eS, StatusListManagementControllerGetListResponses as eT, StatusListManagementControllerGetListsData as eU, StatusListManagementControllerGetListsResponse as eV, StatusListManagementControllerGetListsResponses as eW, StatusListManagementControllerUpdateListData as eX, StatusListManagementControllerUpdateListResponse as eY, StatusListManagementControllerUpdateListResponses as eZ, StatusListResponseDto as e_, SessionConfigControllerGetConfigResponses as ea, SessionConfigControllerResetConfigData as eb, SessionConfigControllerResetConfigResponses as ec, SessionConfigControllerUpdateConfigData as ed, SessionConfigControllerUpdateConfigResponse as ee, SessionConfigControllerUpdateConfigResponses as ef, SessionControllerDeleteSessionData as eg, SessionControllerDeleteSessionResponses as eh, SessionControllerGetAllSessionsData as ei, SessionControllerGetAllSessionsResponse as ej, SessionControllerGetAllSessionsResponses as ek, SessionControllerGetSessionData as el, SessionControllerGetSessionLogsData as em, SessionControllerGetSessionLogsResponse as en, SessionControllerGetSessionLogsResponses as eo, SessionControllerGetSessionResponse as ep, SessionControllerGetSessionResponses as eq, SessionControllerRevokeAllData as er, SessionControllerRevokeAllResponses as es, SessionEventsControllerSubscribeToSessionEventsData as et, SessionEventsControllerSubscribeToSessionEventsResponses as eu, SessionLogEntryResponseDto as ev, SessionStorageConfig as ew, SignSchemaMetaConfigDto as ex, SignVersionSchemaMetaConfigDto as ey, StatusListAggregationDto as ez, AppControllerGetVersionData as f, UserControllerCreateUserResponses as f$, StorageControllerUploadData as f0, StorageControllerUploadResponse as f1, StorageControllerUploadResponses as f2, TenantControllerDeleteTenantData as f3, TenantControllerDeleteTenantResponses as f4, TenantControllerGetTenantData as f5, TenantControllerGetTenantResponse as f6, TenantControllerGetTenantResponses as f7, TenantControllerGetTenantsData as f8, TenantControllerGetTenantsResponse as f9, TrustListControllerGetTrustListResponses as fA, TrustListControllerGetTrustListVersionData as fB, TrustListControllerGetTrustListVersionResponse as fC, TrustListControllerGetTrustListVersionResponses as fD, TrustListControllerGetTrustListVersionsData as fE, TrustListControllerGetTrustListVersionsResponse as fF, TrustListControllerGetTrustListVersionsResponses as fG, TrustListControllerUpdateTrustListData as fH, TrustListControllerUpdateTrustListResponse as fI, TrustListControllerUpdateTrustListResponses as fJ, TrustListCreateDto as fK, TrustListEntityInfo as fL, TrustListVersion as fM, TrustedAuthorityQuery as fN, UpdateAttributeProviderDto as fO, UpdateClientDto as fP, UpdateRegistrarConfigDto as fQ, UpdateSchemaMetadataDto as fR, UpdateSessionConfigDto as fS, UpdateStatusListConfigDto as fT, UpdateStatusListDto as fU, UpdateTenantDto as fV, UpdateUserDto as fW, UpdateWebhookEndpointDto as fX, UpstreamOidcConfig as fY, UserControllerCreateUserData as fZ, UserControllerCreateUserResponse as f_, TenantControllerGetTenantsResponses as fa, TenantControllerInitTenantData as fb, TenantControllerInitTenantResponse as fc, TenantControllerInitTenantResponses as fd, TenantControllerUpdateTenantData as fe, TenantControllerUpdateTenantResponse as ff, TenantControllerUpdateTenantResponses as fg, TenantEntity as fh, TokenResponse as fi, TransactionData as fj, TrustAuthorityDto as fk, TrustAuthorityEntry as fl, TrustList as fm, TrustListControllerCreateTrustListData as fn, TrustListControllerCreateTrustListResponse as fo, TrustListControllerCreateTrustListResponses as fp, TrustListControllerDeleteTrustListData as fq, TrustListControllerDeleteTrustListResponses as fr, TrustListControllerExportTrustListData as fs, TrustListControllerExportTrustListResponse as ft, TrustListControllerExportTrustListResponses as fu, TrustListControllerGetAllTrustListsData as fv, TrustListControllerGetAllTrustListsResponse as fw, TrustListControllerGetAllTrustListsResponses as fx, TrustListControllerGetTrustListData as fy, TrustListControllerGetTrustListResponse as fz, AppControllerGetVersionResponses as g, UserControllerDeleteUserData as g0, UserControllerDeleteUserResponses as g1, UserControllerGetUserData as g2, UserControllerGetUserResponse as g3, UserControllerGetUserResponses as g4, UserControllerGetUsersData as g5, UserControllerGetUsersResponse as g6, UserControllerGetUsersResponses as g7, UserControllerUpdateUserData as g8, UserControllerUpdateUserResponse as g9, UserControllerUpdateUserResponses as ga, Vct as gb, VerifierOfferControllerGetOfferData as gc, VerifierOfferControllerGetOfferResponse as gd, VerifierOfferControllerGetOfferResponses as ge, VocabularyEntryDto as gf, WebHookAuthConfigHeader as gg, WebHookAuthConfigNone as gh, WebhookConfig as gi, WebhookEndpointControllerCreateData as gj, WebhookEndpointControllerCreateResponses as gk, WebhookEndpointControllerDeleteData as gl, WebhookEndpointControllerDeleteErrors as gm, WebhookEndpointControllerDeleteResponses as gn, WebhookEndpointControllerGetAllData as go, WebhookEndpointControllerGetAllResponse as gp, WebhookEndpointControllerGetAllResponses as gq, WebhookEndpointControllerGetByIdData as gr, WebhookEndpointControllerGetByIdErrors as gs, WebhookEndpointControllerGetByIdResponses as gt, WebhookEndpointControllerUpdateData as gu, WebhookEndpointControllerUpdateErrors as gv, WebhookEndpointControllerUpdateResponses as gw, WebhookEndpointEntity as gx, AttestationBasedPolicy as h, AttributeProviderControllerCreateData as i, AttributeProviderControllerCreateResponses as j, AttributeProviderControllerDeleteData as k, AttributeProviderControllerDeleteErrors as l, AttributeProviderControllerDeleteResponses as m, AttributeProviderControllerGetAllData as n, AttributeProviderControllerGetAllResponses as o, AttributeProviderControllerGetByIdData as p, AttributeProviderControllerGetByIdErrors as q, AttributeProviderControllerGetByIdResponses as r, AttributeProviderControllerUpdateData as s, AttributeProviderControllerUpdateErrors as t, AttributeProviderControllerUpdateResponses as u, AttributeProviderEntity as v, AuditLogControllerGetAuditLogsData as w, AuditLogControllerGetAuditLogsResponse as x, AuditLogControllerGetAuditLogsResponses as y, AuditLogResponseDto as z };