@eudiplo/sdk-core 5.0.0 → 5.1.0-main.9cbd662

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.
@@ -825,21 +825,45 @@ type ChainedAsTokenConfig = {
825
825
  */
826
826
  signingKeyId?: string;
827
827
  };
828
- type ChainedAsConfig = {
828
+ type ManagedAuthorizationServerConfig = {
829
829
  /**
830
- * Enable chained AS mode
830
+ * Stable identifier used in the AS URL path
831
831
  */
832
- enabled: boolean;
832
+ id?: string;
833
+ /**
834
+ * Human-friendly label for the UI
835
+ */
836
+ label?: string;
837
+ /**
838
+ * Authorization server implementation type
839
+ */
840
+ type: 'external' | 'oid4vp' | 'chained';
833
841
  /**
834
- * Upstream OIDC provider configuration
842
+ * Issuer URL for external authorization servers
843
+ */
844
+ issuer?: string;
845
+ /**
846
+ * Upstream OIDC provider configuration for chained mode
835
847
  */
836
848
  upstream?: UpstreamOidcConfig;
837
849
  /**
838
- * Token configuration
850
+ * Whether this managed authorization server is enabled
851
+ */
852
+ enabled?: boolean;
853
+ /**
854
+ * Presentation configuration ID to use for OID4VP
855
+ */
856
+ presentationConfigId?: string;
857
+ /**
858
+ * Immediately redirect the browser into the wallet OID4VP request
859
+ */
860
+ immediateWalletRedirect?: boolean;
861
+ /**
862
+ * Token configuration for this authorization server
839
863
  */
840
864
  token?: ChainedAsTokenConfig;
841
865
  /**
842
- * Require DPoP binding for tokens
866
+ * Require DPoP for token requests issued by this authorization server
843
867
  */
844
868
  requireDPoP?: boolean;
845
869
  };
@@ -879,6 +903,66 @@ type FederationConfig = {
879
903
  */
880
904
  trustAnchors: Array<FederationTrustAnchorConfig>;
881
905
  };
906
+ type IssuerProvidedAttestation = {
907
+ /**
908
+ * Attestation format as expected by the registrar (for example dc+sd-jwt, mso_mdoc).
909
+ */
910
+ format?: string;
911
+ /**
912
+ * Arbitrary attestation metadata forwarded to the registrar.
913
+ */
914
+ meta?: {
915
+ [key: string]: unknown;
916
+ };
917
+ };
918
+ type IssuerRegistrationCertificateConfig = {
919
+ /**
920
+ * Enable inclusion of a registration certificate in credential issuer metadata.
921
+ */
922
+ enabled?: boolean;
923
+ /**
924
+ * import: use an existing JWT, generate: create via registrar from provided attestations and selected credential configurations.
925
+ */
926
+ mode?: 'import' | 'generate';
927
+ /**
928
+ * Existing registration certificate JWT used when mode is import.
929
+ */
930
+ jwt?: string;
931
+ /**
932
+ * Schema metadata IDs selected for inclusion in generated registration certificates.
933
+ */
934
+ schemaMetadataIds?: Array<string>;
935
+ /**
936
+ * Privacy policy URL used when generating a registration certificate (optional if registrar defaults are configured).
937
+ */
938
+ privacyPolicy?: string;
939
+ /**
940
+ * Support URI used when generating a registration certificate (optional if registrar defaults are configured).
941
+ */
942
+ supportUri?: string;
943
+ /**
944
+ * Provided attestations included in generated registration certificates.
945
+ */
946
+ providedAttestations?: Array<IssuerProvidedAttestation>;
947
+ };
948
+ type IssuerRegistrationCertificateCache = {
949
+ /**
950
+ * Cached registration certificate JWT generated by EUDIPLO.
951
+ */
952
+ readonly jwt?: string;
953
+ /**
954
+ * Config fingerprint used to detect cache invalidation.
955
+ */
956
+ readonly fingerprint?: string;
957
+ /**
958
+ * JWT iat claim, seconds since epoch.
959
+ */
960
+ readonly issuedAt?: number;
961
+ /**
962
+ * JWT exp claim, seconds since epoch.
963
+ */
964
+ readonly expiresAt?: number;
965
+ };
882
966
  type DisplayLogo = {
883
967
  uri: string;
884
968
  alt_text?: string;
@@ -894,16 +978,25 @@ type IssuanceConfig = {
894
978
  */
895
979
  signingKeyId?: string;
896
980
  /**
897
- * Configuration for Chained Authorization Server mode.
898
- * When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
899
- * to an upstream OIDC provider while issuing its own tokens with issuer_state.
981
+ * Dedicated managed authorization servers hosted by this issuer.
982
+ * Each entry creates a distinct AS endpoint and can be bound to a different
983
+ * presentation configuration.
900
984
  */
901
- chainedAs?: ChainedAsConfig;
985
+ authorizationServers?: Array<ManagedAuthorizationServerConfig>;
902
986
  /**
903
987
  * Optional OpenID Federation configuration used for trust evaluation.
904
988
  * When omitted, trust checks rely on existing LoTE trust-list behavior.
905
989
  */
906
990
  federation?: FederationConfig;
991
+ /**
992
+ * Optional registration certificate configuration for issuer metadata (`issuer_info`).
993
+ * Supports importing an existing JWT or generating one via registrar.
994
+ */
995
+ registrationCertificate?: IssuerRegistrationCertificateConfig;
996
+ /**
997
+ * Server-managed cache for generated issuer registration certificates.
998
+ */
999
+ readonly registrationCertificateCache?: IssuerRegistrationCertificateCache;
907
1000
  /**
908
1001
  * Whether refresh tokens should be issued for OID4VCI token responses.
909
1002
  */
@@ -928,10 +1021,6 @@ type IssuanceConfig = {
928
1021
  * The tenant that owns this object.
929
1022
  */
930
1023
  tenant: TenantEntity;
931
- /**
932
- * Authentication server URL for the issuance process.
933
- */
934
- authServers?: Array<string>;
935
1024
  /**
936
1025
  * Value to determine the amount of credentials that are issued in a batch.
937
1026
  * Default is 1.
@@ -976,16 +1065,25 @@ type IssuanceDto = {
976
1065
  */
977
1066
  signingKeyId?: string;
978
1067
  /**
979
- * Configuration for Chained Authorization Server mode.
980
- * When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
981
- * to an upstream OIDC provider while issuing its own tokens with issuer_state.
1068
+ * Dedicated managed authorization servers hosted by this issuer.
1069
+ * Each entry creates a distinct AS endpoint and can be bound to a different
1070
+ * presentation configuration.
982
1071
  */
983
- chainedAs?: ChainedAsConfig;
1072
+ authorizationServers?: Array<ManagedAuthorizationServerConfig>;
984
1073
  /**
985
1074
  * Optional OpenID Federation configuration used for trust evaluation.
986
1075
  * When omitted, trust checks rely on existing LoTE trust-list behavior.
987
1076
  */
988
1077
  federation?: FederationConfig;
1078
+ /**
1079
+ * Optional registration certificate configuration for issuer metadata (`issuer_info`).
1080
+ * Supports importing an existing JWT or generating one via registrar.
1081
+ */
1082
+ registrationCertificate?: IssuerRegistrationCertificateConfig;
1083
+ /**
1084
+ * Server-managed cache for generated issuer registration certificates.
1085
+ */
1086
+ readonly registrationCertificateCache?: IssuerRegistrationCertificateCache;
989
1087
  /**
990
1088
  * Whether refresh tokens should be issued for OID4VCI token responses.
991
1089
  */
@@ -1006,10 +1104,6 @@ type IssuanceDto = {
1006
1104
  * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
1007
1105
  */
1008
1106
  txCodeMaxAttempts?: number;
1009
- /**
1010
- * Authentication server URL for the issuance process.
1011
- */
1012
- authServers?: Array<string>;
1013
1107
  /**
1014
1108
  * Value to determine the amount of credentials that are issued in a batch.
1015
1109
  * Default is 1.
@@ -1156,7 +1250,7 @@ type SchemaUriEntry = {
1156
1250
  /**
1157
1251
  * Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
1158
1252
  */
1159
- meta: {
1253
+ meta?: {
1160
1254
  [key: string]: unknown;
1161
1255
  };
1162
1256
  };
@@ -1182,7 +1276,7 @@ type TrustAuthorityEntry = {
1182
1276
  */
1183
1277
  verificationMethod?: {
1184
1278
  [key: string]: unknown;
1185
- };
1279
+ } | string;
1186
1280
  };
1187
1281
  type SchemaMetaConfig = {
1188
1282
  /**
@@ -1271,13 +1365,13 @@ type FieldDisplayDto = {
1271
1365
  };
1272
1366
  type ClaimFieldDefinitionDto = {
1273
1367
  /**
1274
- * Path to claim value
1368
+ * Path to claim value. For nested child fields this can be relative to the parent path.
1275
1369
  */
1276
1370
  path: Array<string | number | null>;
1277
1371
  /**
1278
1372
  * Claim value type
1279
1373
  */
1280
- type: 'string' | 'number' | 'integer' | 'boolean' | 'object' | 'array' | 'date';
1374
+ type: 'string' | 'number' | 'integer' | 'boolean' | 'object' | 'array';
1281
1375
  /**
1282
1376
  * Default value
1283
1377
  */
@@ -1293,7 +1387,7 @@ type ClaimFieldDefinitionDto = {
1293
1387
  */
1294
1388
  disclosable?: boolean;
1295
1389
  /**
1296
- * Namespace for mDOC field
1390
+ * Namespace for mDOC field. Optional when the namespace is already present as the first path segment.
1297
1391
  */
1298
1392
  namespace?: string;
1299
1393
  display?: Array<FieldDisplayDto>;
@@ -1303,6 +1397,10 @@ type ClaimFieldDefinitionDto = {
1303
1397
  constraints?: {
1304
1398
  [key: string]: unknown;
1305
1399
  };
1400
+ /**
1401
+ * Optional nested child fields. Child paths may be specified relative to the parent field path.
1402
+ */
1403
+ children?: Array<ClaimFieldDefinitionDto>;
1306
1404
  };
1307
1405
  type AttributeProviderEntity = {
1308
1406
  auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
@@ -1427,7 +1525,6 @@ type CredentialConfig = {
1427
1525
  */
1428
1526
  tenant: TenantEntity;
1429
1527
  config: IssuerMetadataCredentialConfig;
1430
- configVersion: number;
1431
1528
  fields: Array<ClaimFieldDefinitionDto>;
1432
1529
  /**
1433
1530
  * Reference to the attribute provider used for fetching claims.
@@ -1484,7 +1581,6 @@ type CredentialConfigCreate = {
1484
1581
  id: string;
1485
1582
  description?: string;
1486
1583
  config: IssuerMetadataCredentialConfig;
1487
- configVersion: number;
1488
1584
  fields: Array<ClaimFieldDefinitionDto>;
1489
1585
  /**
1490
1586
  * Reference to the attribute provider used for fetching claims.
@@ -1538,7 +1634,6 @@ type CredentialConfigUpdate = {
1538
1634
  id?: string;
1539
1635
  description?: string;
1540
1636
  config?: IssuerMetadataCredentialConfig;
1541
- configVersion?: number;
1542
1637
  fields?: Array<ClaimFieldDefinitionDto>;
1543
1638
  /**
1544
1639
  * Reference to the attribute provider used for fetching claims.
@@ -1846,11 +1941,7 @@ type TrustListCreateDto = {
1846
1941
  data?: {
1847
1942
  [key: string]: unknown;
1848
1943
  };
1849
- entities: Array<({
1850
- type: 'internal';
1851
- } & InternalTrustListEntity) | ({
1852
- type: 'external';
1853
- } & ExternalTrustListEntity)>;
1944
+ entities: Array<InternalTrustListEntity | ExternalTrustListEntity>;
1854
1945
  id?: string;
1855
1946
  keyChainId?: string;
1856
1947
  };
@@ -1997,8 +2088,16 @@ type PresentationConfig = {
1997
2088
  * The registration certificate request containing the necessary details.
1998
2089
  */
1999
2090
  registration_cert?: RegistrationCertificateRequest;
2091
+ /**
2092
+ * Reference to the webhook endpoint used for notifications.
2093
+ * Optional: if set, notifications will be sent to this endpoint.
2094
+ */
2095
+ webhookEndpointId?: string;
2096
+ webhookEndpoint?: WebhookEndpointEntity;
2000
2097
  /**
2001
2098
  * Optional webhook URL to receive the response.
2099
+ *
2100
+ * @deprecated
2002
2101
  */
2003
2102
  webhook?: WebhookConfig;
2004
2103
  /**
@@ -2063,8 +2162,16 @@ type PresentationConfigCreateDto = {
2063
2162
  * The registration certificate request containing the necessary details.
2064
2163
  */
2065
2164
  registration_cert?: RegistrationCertificateRequest;
2165
+ /**
2166
+ * Reference to the webhook endpoint used for notifications.
2167
+ * Optional: if set, notifications will be sent to this endpoint.
2168
+ */
2169
+ webhookEndpointId?: string;
2170
+ webhookEndpoint?: WebhookEndpointEntity;
2066
2171
  /**
2067
2172
  * Optional webhook URL to receive the response.
2173
+ *
2174
+ * @deprecated
2068
2175
  */
2069
2176
  webhook?: WebhookConfig;
2070
2177
  /**
@@ -2109,8 +2216,16 @@ type PresentationConfigUpdateDto = {
2109
2216
  * The registration certificate request containing the necessary details.
2110
2217
  */
2111
2218
  registration_cert?: RegistrationCertificateRequest;
2219
+ /**
2220
+ * Reference to the webhook endpoint used for notifications.
2221
+ * Optional: if set, notifications will be sent to this endpoint.
2222
+ */
2223
+ webhookEndpointId?: string;
2224
+ webhookEndpoint?: WebhookEndpointEntity;
2112
2225
  /**
2113
2226
  * Optional webhook URL to receive the response.
2227
+ *
2228
+ * @deprecated
2114
2229
  */
2115
2230
  webhook?: WebhookConfig;
2116
2231
  /**
@@ -2249,6 +2364,90 @@ type NotificationRequestDto = {
2249
2364
  notification_id: string;
2250
2365
  event: 'credential_accepted' | 'credential_failure' | 'credential_deleted';
2251
2366
  };
2367
+ type OfferResponse = {
2368
+ uri: string;
2369
+ /**
2370
+ * URI for cross-device flows (no redirect after completion)
2371
+ */
2372
+ crossDeviceUri?: string;
2373
+ session: string;
2374
+ };
2375
+ type CompleteDeferredDto = {
2376
+ /**
2377
+ * Claims to include in the credential. The structure should match the credential configuration's expected claims.
2378
+ */
2379
+ claims: {
2380
+ [key: string]: unknown;
2381
+ };
2382
+ };
2383
+ type DeferredOperationResponse = {
2384
+ /**
2385
+ * The transaction ID
2386
+ */
2387
+ transactionId: string;
2388
+ /**
2389
+ * The new status of the transaction
2390
+ */
2391
+ status: 'pending' | 'ready' | 'retrieved' | 'expired' | 'failed';
2392
+ /**
2393
+ * Optional message
2394
+ */
2395
+ message?: string;
2396
+ };
2397
+ type FailDeferredDto = {
2398
+ /**
2399
+ * Optional error message explaining why the issuance failed
2400
+ */
2401
+ error?: string;
2402
+ };
2403
+ type EcPublic = {
2404
+ /**
2405
+ * The key type, which is always 'EC' for Elliptic Curve keys.
2406
+ */
2407
+ kty: string;
2408
+ /**
2409
+ * The algorithm intended for use with the key, such as 'ES256'.
2410
+ */
2411
+ crv: string;
2412
+ /**
2413
+ * The x coordinate of the EC public key.
2414
+ */
2415
+ x: string;
2416
+ /**
2417
+ * The y coordinate of the EC public key.
2418
+ */
2419
+ y: string;
2420
+ };
2421
+ type JwksResponseDto = {
2422
+ /**
2423
+ * An array of EC public keys in JWK format.
2424
+ */
2425
+ keys: Array<EcPublic>;
2426
+ };
2427
+ type AuthorizationResponse = {
2428
+ /**
2429
+ * The response string containing the authorization details (JWE-encrypted VP token).
2430
+ * Required for success responses, absent for error responses.
2431
+ */
2432
+ response?: string;
2433
+ /**
2434
+ * When set to true, the authorization response will be sent to the client.
2435
+ */
2436
+ sendResponse?: boolean;
2437
+ error?: string;
2438
+ /**
2439
+ * Human-readable description of the error.
2440
+ */
2441
+ error_description?: string;
2442
+ /**
2443
+ * URI with additional information about the error.
2444
+ */
2445
+ error_uri?: string;
2446
+ /**
2447
+ * State value from the authorization request (for correlation).
2448
+ */
2449
+ state?: string;
2450
+ };
2252
2451
  type Object$1 = {
2253
2452
  [key: string]: unknown;
2254
2453
  };
@@ -2428,90 +2627,6 @@ type ChainedAsTokenResponseDto = {
2428
2627
  */
2429
2628
  refresh_token?: string;
2430
2629
  };
2431
- type OfferResponse = {
2432
- uri: string;
2433
- /**
2434
- * URI for cross-device flows (no redirect after completion)
2435
- */
2436
- crossDeviceUri?: string;
2437
- session: string;
2438
- };
2439
- type CompleteDeferredDto = {
2440
- /**
2441
- * Claims to include in the credential. The structure should match the credential configuration's expected claims.
2442
- */
2443
- claims: {
2444
- [key: string]: unknown;
2445
- };
2446
- };
2447
- type DeferredOperationResponse = {
2448
- /**
2449
- * The transaction ID
2450
- */
2451
- transactionId: string;
2452
- /**
2453
- * The new status of the transaction
2454
- */
2455
- status: 'pending' | 'ready' | 'retrieved' | 'expired' | 'failed';
2456
- /**
2457
- * Optional message
2458
- */
2459
- message?: string;
2460
- };
2461
- type FailDeferredDto = {
2462
- /**
2463
- * Optional error message explaining why the issuance failed
2464
- */
2465
- error?: string;
2466
- };
2467
- type EcPublic = {
2468
- /**
2469
- * The key type, which is always 'EC' for Elliptic Curve keys.
2470
- */
2471
- kty: string;
2472
- /**
2473
- * The algorithm intended for use with the key, such as 'ES256'.
2474
- */
2475
- crv: string;
2476
- /**
2477
- * The x coordinate of the EC public key.
2478
- */
2479
- x: string;
2480
- /**
2481
- * The y coordinate of the EC public key.
2482
- */
2483
- y: string;
2484
- };
2485
- type JwksResponseDto = {
2486
- /**
2487
- * An array of EC public keys in JWK format.
2488
- */
2489
- keys: Array<EcPublic>;
2490
- };
2491
- type AuthorizationResponse = {
2492
- /**
2493
- * The response string containing the authorization details (JWE-encrypted VP token).
2494
- * Required for success responses, absent for error responses.
2495
- */
2496
- response?: string;
2497
- /**
2498
- * When set to true, the authorization response will be sent to the client.
2499
- */
2500
- sendResponse?: boolean;
2501
- error?: string;
2502
- /**
2503
- * Human-readable description of the error.
2504
- */
2505
- error_description?: string;
2506
- /**
2507
- * URI with additional information about the error.
2508
- */
2509
- error_uri?: string;
2510
- /**
2511
- * State value from the authorization request (for correlation).
2512
- */
2513
- state?: string;
2514
- };
2515
2630
  type KmsProviderCapabilitiesDto = {
2516
2631
  /**
2517
2632
  * Whether the provider supports importing existing keys.
@@ -2833,7 +2948,7 @@ type KeyChainImportDto = {
2833
2948
  */
2834
2949
  usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
2835
2950
  /**
2836
- * Certificate chain in PEM format (leaf first, then intermediates/CA).
2951
+ * Certificate chain (leaf first). Each entry may be PEM or base64-encoded DER; values are normalized to PEM during import.
2837
2952
  */
2838
2953
  crt?: Array<string>;
2839
2954
  /**
@@ -2906,6 +3021,160 @@ type PresentationRequest = {
2906
3021
  type FileUploadDto = {
2907
3022
  file: Blob | File;
2908
3023
  };
3024
+ type IssuanceConfigWritable = {
3025
+ /**
3026
+ * Key ID for signing access tokens. If unset, the default signing key is used.
3027
+ */
3028
+ signingKeyId?: string;
3029
+ /**
3030
+ * Dedicated managed authorization servers hosted by this issuer.
3031
+ * Each entry creates a distinct AS endpoint and can be bound to a different
3032
+ * presentation configuration.
3033
+ */
3034
+ authorizationServers?: Array<ManagedAuthorizationServerConfig>;
3035
+ /**
3036
+ * Optional OpenID Federation configuration used for trust evaluation.
3037
+ * When omitted, trust checks rely on existing LoTE trust-list behavior.
3038
+ */
3039
+ federation?: FederationConfig;
3040
+ /**
3041
+ * Optional registration certificate configuration for issuer metadata (`issuer_info`).
3042
+ * Supports importing an existing JWT or generating one via registrar.
3043
+ */
3044
+ registrationCertificate?: IssuerRegistrationCertificateConfig;
3045
+ /**
3046
+ * Whether refresh tokens should be issued for OID4VCI token responses.
3047
+ */
3048
+ refreshTokenEnabled?: boolean;
3049
+ /**
3050
+ * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
3051
+ */
3052
+ credentialResponseEncryption?: boolean;
3053
+ /**
3054
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
3055
+ */
3056
+ credentialRequestEncryption?: boolean;
3057
+ /**
3058
+ * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
3059
+ */
3060
+ refreshTokenExpiresInSeconds?: number;
3061
+ /**
3062
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
3063
+ */
3064
+ txCodeMaxAttempts?: number;
3065
+ /**
3066
+ * The tenant that owns this object.
3067
+ */
3068
+ tenant: TenantEntity;
3069
+ /**
3070
+ * Value to determine the amount of credentials that are issued in a batch.
3071
+ * Default is 1.
3072
+ */
3073
+ batchSize?: number;
3074
+ /**
3075
+ * Indicates whether DPoP is required for the issuance process. Default value is true.
3076
+ */
3077
+ dPopRequired?: boolean;
3078
+ /**
3079
+ * Indicates whether wallet attestation is required for the token endpoint.
3080
+ * When enabled, wallets must provide OAuth-Client-Attestation headers.
3081
+ * Default value is false.
3082
+ */
3083
+ walletAttestationRequired?: boolean;
3084
+ /**
3085
+ * URLs of trust lists containing trusted wallet providers.
3086
+ * The wallet attestation's X.509 certificate will be validated against these trust lists.
3087
+ * If empty and walletAttestationRequired is true, all wallet providers are rejected.
3088
+ */
3089
+ walletProviderTrustLists?: Array<string>;
3090
+ /**
3091
+ * The URL of the preferred authorization server for wallet-initiated flows.
3092
+ * When set, this AS is placed first in the `authorization_servers` array
3093
+ * of the credential issuer metadata, signaling wallets to use it by default.
3094
+ * Must match one of the configured auth servers, the chained AS URL, or "built-in".
3095
+ */
3096
+ preferredAuthServer?: string;
3097
+ display: Array<DisplayInfo>;
3098
+ /**
3099
+ * The timestamp when the VP request was created.
3100
+ */
3101
+ createdAt: string;
3102
+ /**
3103
+ * The timestamp when the VP request was last updated.
3104
+ */
3105
+ updatedAt: string;
3106
+ };
3107
+ type IssuanceDtoWritable = {
3108
+ /**
3109
+ * Key ID for signing access tokens. If unset, the default signing key is used.
3110
+ */
3111
+ signingKeyId?: string;
3112
+ /**
3113
+ * Dedicated managed authorization servers hosted by this issuer.
3114
+ * Each entry creates a distinct AS endpoint and can be bound to a different
3115
+ * presentation configuration.
3116
+ */
3117
+ authorizationServers?: Array<ManagedAuthorizationServerConfig>;
3118
+ /**
3119
+ * Optional OpenID Federation configuration used for trust evaluation.
3120
+ * When omitted, trust checks rely on existing LoTE trust-list behavior.
3121
+ */
3122
+ federation?: FederationConfig;
3123
+ /**
3124
+ * Optional registration certificate configuration for issuer metadata (`issuer_info`).
3125
+ * Supports importing an existing JWT or generating one via registrar.
3126
+ */
3127
+ registrationCertificate?: IssuerRegistrationCertificateConfig;
3128
+ /**
3129
+ * Whether refresh tokens should be issued for OID4VCI token responses.
3130
+ */
3131
+ refreshTokenEnabled?: boolean;
3132
+ /**
3133
+ * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
3134
+ */
3135
+ credentialResponseEncryption?: boolean;
3136
+ /**
3137
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
3138
+ */
3139
+ credentialRequestEncryption?: boolean;
3140
+ /**
3141
+ * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
3142
+ */
3143
+ refreshTokenExpiresInSeconds?: number;
3144
+ /**
3145
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
3146
+ */
3147
+ txCodeMaxAttempts?: number;
3148
+ /**
3149
+ * Value to determine the amount of credentials that are issued in a batch.
3150
+ * Default is 1.
3151
+ */
3152
+ batchSize?: number;
3153
+ /**
3154
+ * Indicates whether DPoP is required for the issuance process. Default value is true.
3155
+ */
3156
+ dPopRequired?: boolean;
3157
+ /**
3158
+ * Indicates whether wallet attestation is required for the token endpoint.
3159
+ * When enabled, wallets must provide OAuth-Client-Attestation headers.
3160
+ * Default value is false.
3161
+ */
3162
+ walletAttestationRequired?: boolean;
3163
+ /**
3164
+ * URLs of trust lists containing trusted wallet providers.
3165
+ * The wallet attestation's X.509 certificate will be validated against these trust lists.
3166
+ * If empty and walletAttestationRequired is true, all wallet providers are rejected.
3167
+ */
3168
+ walletProviderTrustLists?: Array<string>;
3169
+ /**
3170
+ * The URL of the preferred authorization server for wallet-initiated flows.
3171
+ * When set, this AS is placed first in the `authorization_servers` array
3172
+ * of the credential issuer metadata, signaling wallets to use it by default.
3173
+ * Must match one of the configured auth servers, the chained AS URL, or "built-in".
3174
+ */
3175
+ preferredAuthServer?: string;
3176
+ display: Array<DisplayInfo>;
3177
+ };
2909
3178
  type PresentationConfigWritable = {
2910
3179
  /**
2911
3180
  * Unique identifier for the VP request.
@@ -2932,8 +3201,16 @@ type PresentationConfigWritable = {
2932
3201
  * The registration certificate request containing the necessary details.
2933
3202
  */
2934
3203
  registration_cert?: RegistrationCertificateRequest;
3204
+ /**
3205
+ * Reference to the webhook endpoint used for notifications.
3206
+ * Optional: if set, notifications will be sent to this endpoint.
3207
+ */
3208
+ webhookEndpointId?: string;
3209
+ webhookEndpoint?: WebhookEndpointEntity;
2935
3210
  /**
2936
3211
  * Optional webhook URL to receive the response.
3212
+ *
3213
+ * @deprecated
2937
3214
  */
2938
3215
  webhook?: WebhookConfig;
2939
3216
  /**
@@ -3491,7 +3768,7 @@ type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
3491
3768
  };
3492
3769
  type IssuanceConfigControllerGetIssuanceConfigurationsResponse = IssuanceConfigControllerGetIssuanceConfigurationsResponses[keyof IssuanceConfigControllerGetIssuanceConfigurationsResponses];
3493
3770
  type IssuanceConfigControllerStoreIssuanceConfigurationData = {
3494
- body: IssuanceDto;
3771
+ body: IssuanceDtoWritable;
3495
3772
  path?: never;
3496
3773
  query?: never;
3497
3774
  url: '/api/issuer/config';
@@ -3623,6 +3900,16 @@ type SchemaMetadataControllerFindAllResponses = {
3623
3900
  200: Array<SchemaMetadataResponseDto>;
3624
3901
  };
3625
3902
  type SchemaMetadataControllerFindAllResponse = SchemaMetadataControllerFindAllResponses[keyof SchemaMetadataControllerFindAllResponses];
3903
+ type SchemaMetadataControllerGetMineData = {
3904
+ body?: never;
3905
+ path?: never;
3906
+ query?: never;
3907
+ url: '/api/schema-metadata/mine';
3908
+ };
3909
+ type SchemaMetadataControllerGetMineResponses = {
3910
+ 200: Array<SchemaMetadataResponseDto>;
3911
+ };
3912
+ type SchemaMetadataControllerGetMineResponse = SchemaMetadataControllerGetMineResponses[keyof SchemaMetadataControllerGetMineResponses];
3626
3913
  type SchemaMetadataControllerFindOneData = {
3627
3914
  body?: never;
3628
3915
  path: {
@@ -4357,6 +4644,108 @@ type DeferredControllerFailDeferredResponses = {
4357
4644
  200: DeferredOperationResponse;
4358
4645
  };
4359
4646
  type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
4647
+ type ChainedAsVpControllerParData = {
4648
+ body?: never;
4649
+ headers?: {
4650
+ /**
4651
+ * DPoP proof JWT
4652
+ */
4653
+ DPoP?: string;
4654
+ /**
4655
+ * Wallet attestation JWT
4656
+ */
4657
+ 'OAuth-Client-Attestation'?: string;
4658
+ /**
4659
+ * Wallet attestation proof-of-possession JWT
4660
+ */
4661
+ 'OAuth-Client-Attestation-PoP'?: string;
4662
+ };
4663
+ path: {
4664
+ /**
4665
+ * Tenant identifier
4666
+ */
4667
+ tenantId: string;
4668
+ };
4669
+ query?: never;
4670
+ url: '/api/issuers/{tenantId}/chained-as-vp/par';
4671
+ };
4672
+ type ChainedAsVpControllerParErrors = {
4673
+ 400: ChainedAsErrorResponseDto;
4674
+ };
4675
+ type ChainedAsVpControllerParError = ChainedAsVpControllerParErrors[keyof ChainedAsVpControllerParErrors];
4676
+ type ChainedAsVpControllerParResponses = {
4677
+ 201: ChainedAsParResponseDto;
4678
+ };
4679
+ type ChainedAsVpControllerParResponse = ChainedAsVpControllerParResponses[keyof ChainedAsVpControllerParResponses];
4680
+ type ChainedAsVpControllerAuthorizeData = {
4681
+ body?: never;
4682
+ path: {
4683
+ /**
4684
+ * Tenant identifier
4685
+ */
4686
+ tenantId: string;
4687
+ };
4688
+ query: {
4689
+ /**
4690
+ * Client identifier
4691
+ */
4692
+ client_id: string;
4693
+ /**
4694
+ * Request URI from PAR response
4695
+ */
4696
+ request_uri: string;
4697
+ };
4698
+ url: '/api/issuers/{tenantId}/chained-as-vp/authorize';
4699
+ };
4700
+ type ChainedAsVpControllerAuthorizeErrors = {
4701
+ 400: ChainedAsErrorResponseDto;
4702
+ };
4703
+ type ChainedAsVpControllerAuthorizeError = ChainedAsVpControllerAuthorizeErrors[keyof ChainedAsVpControllerAuthorizeErrors];
4704
+ type ChainedAsVpControllerVpCallbackData = {
4705
+ body?: never;
4706
+ path: {
4707
+ /**
4708
+ * Tenant identifier
4709
+ */
4710
+ tenantId: string;
4711
+ };
4712
+ query: {
4713
+ cas: string;
4714
+ response_code?: string;
4715
+ error?: string;
4716
+ error_description?: string;
4717
+ };
4718
+ url: '/api/issuers/{tenantId}/chained-as-vp/vp-callback';
4719
+ };
4720
+ type ChainedAsVpControllerVpCallbackErrors = {
4721
+ 400: ChainedAsErrorResponseDto;
4722
+ };
4723
+ type ChainedAsVpControllerVpCallbackError = ChainedAsVpControllerVpCallbackErrors[keyof ChainedAsVpControllerVpCallbackErrors];
4724
+ type ChainedAsVpControllerTokenData = {
4725
+ body: ChainedAsTokenRequestDto;
4726
+ headers?: {
4727
+ /**
4728
+ * DPoP proof JWT
4729
+ */
4730
+ DPoP?: string;
4731
+ };
4732
+ path: {
4733
+ /**
4734
+ * Tenant identifier
4735
+ */
4736
+ tenantId: string;
4737
+ };
4738
+ query?: never;
4739
+ url: '/api/issuers/{tenantId}/chained-as-vp/token';
4740
+ };
4741
+ type ChainedAsVpControllerTokenErrors = {
4742
+ 400: ChainedAsErrorResponseDto;
4743
+ };
4744
+ type ChainedAsVpControllerTokenError = ChainedAsVpControllerTokenErrors[keyof ChainedAsVpControllerTokenErrors];
4745
+ type ChainedAsVpControllerTokenResponses = {
4746
+ 200: ChainedAsTokenResponseDto;
4747
+ };
4748
+ type ChainedAsVpControllerTokenResponse = ChainedAsVpControllerTokenResponses[keyof ChainedAsVpControllerTokenResponses];
4360
4749
  type KeyChainControllerGetProvidersData = {
4361
4750
  body?: never;
4362
4751
  path?: never;
@@ -4552,4 +4941,4 @@ type StorageControllerUploadResponses = {
4552
4941
  };
4553
4942
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
4554
4943
 
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 };
4944
+ export type { ChainedAsTokenConfig 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, ChainedAsErrorResponseDto as Z, ChainedAsParResponseDto as _, AllowListPolicy as a, CredentialConfigControllerStoreCredentialConfigurationResponse as a$, ChainedAsTokenRequestDto as a0, ChainedAsTokenResponseDto as a1, ChainedAsVpControllerAuthorizeData as a2, ChainedAsVpControllerAuthorizeError as a3, ChainedAsVpControllerAuthorizeErrors as a4, ChainedAsVpControllerParData as a5, ChainedAsVpControllerParError as a6, ChainedAsVpControllerParErrors as a7, ChainedAsVpControllerParResponse as a8, ChainedAsVpControllerParResponses as a9, ClientControllerRotateClientSecretResponses as aA, ClientControllerUpdateClientData as aB, ClientControllerUpdateClientResponse as aC, ClientControllerUpdateClientResponses as aD, ClientCredentialsDto as aE, ClientEntity as aF, ClientSecretResponseDto as aG, CompleteDeferredDto as aH, CreateAccessCertificateDto as aI, CreateAttributeProviderDto as aJ, CreateClientDto as aK, CreateRegistrarConfigDto as aL, CreateStatusListDto as aM, CreateTenantDto as aN, CreateUserDto as aO, CreateWebhookEndpointDto as aP, CredentialConfig as aQ, CredentialConfigControllerDeleteIssuanceConfigurationData as aR, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aS, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aT, CredentialConfigControllerGetConfigByIdData as aU, CredentialConfigControllerGetConfigByIdResponse as aV, CredentialConfigControllerGetConfigByIdResponses as aW, CredentialConfigControllerGetConfigsData as aX, CredentialConfigControllerGetConfigsResponse as aY, CredentialConfigControllerGetConfigsResponses as aZ, CredentialConfigControllerStoreCredentialConfigurationData as a_, ChainedAsVpControllerTokenData as aa, ChainedAsVpControllerTokenError as ab, ChainedAsVpControllerTokenErrors as ac, ChainedAsVpControllerTokenResponse as ad, ChainedAsVpControllerTokenResponses as ae, ChainedAsVpControllerVpCallbackData as af, ChainedAsVpControllerVpCallbackError as ag, ChainedAsVpControllerVpCallbackErrors as ah, ClaimFieldDefinitionDto as ai, ClaimsQuery as aj, ClientControllerCreateClientData as ak, ClientControllerCreateClientResponse as al, ClientControllerCreateClientResponses as am, ClientControllerDeleteClientData as an, ClientControllerDeleteClientResponses as ao, ClientControllerGetClientData as ap, ClientControllerGetClientResponse as aq, ClientControllerGetClientResponses as ar, ClientControllerGetClientSecretData as as, ClientControllerGetClientSecretResponse as at, ClientControllerGetClientSecretResponses as au, ClientControllerGetClientsData as av, ClientControllerGetClientsResponse as aw, ClientControllerGetClientsResponses as ax, ClientControllerRotateClientSecretData as ay, ClientControllerRotateClientSecretResponse as az, ApiKeyConfig as b, KeyChainControllerCreateData as b$, CredentialConfigControllerStoreCredentialConfigurationResponses as b0, CredentialConfigControllerUpdateCredentialConfigurationData as b1, CredentialConfigControllerUpdateCredentialConfigurationResponse as b2, CredentialConfigControllerUpdateCredentialConfigurationResponses as b3, CredentialConfigCreate as b4, CredentialConfigUpdate as b5, CredentialOfferControllerGetOfferData as b6, CredentialOfferControllerGetOfferResponse as b7, CredentialOfferControllerGetOfferResponses as b8, CredentialQuery as b9, FieldDisplayDto as bA, FileUploadDto as bB, FrontendConfigResponseDto as bC, GrafanaConfigDto as bD, IaeActionOpenid4VpPresentation as bE, IaeActionRedirectToWeb as bF, ImportTenantDto as bG, InteractiveAuthorizationCodeResponseDto as bH, InteractiveAuthorizationErrorResponseDto as bI, InteractiveAuthorizationRequestDto as bJ, InternalTrustListEntity as bK, IssuanceConfig as bL, IssuanceConfigControllerGetIssuanceConfigurationsData as bM, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bN, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bO, IssuanceConfigControllerStoreIssuanceConfigurationData as bP, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bQ, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bR, IssuanceConfigWritable as bS, IssuanceDto as bT, IssuanceDtoWritable as bU, IssuerMetadataCredentialConfig as bV, IssuerProvidedAttestation as bW, IssuerRegistrationCertificateCache as bX, IssuerRegistrationCertificateConfig as bY, JwksResponseDto as bZ, KeyAttestationsRequired as b_, CredentialSetQuery as ba, Dcql as bb, DeferredControllerCompleteDeferredData as bc, DeferredControllerCompleteDeferredErrors as bd, DeferredControllerCompleteDeferredResponse as be, DeferredControllerCompleteDeferredResponses as bf, DeferredControllerFailDeferredData as bg, DeferredControllerFailDeferredErrors as bh, DeferredControllerFailDeferredResponse as bi, DeferredControllerFailDeferredResponses as bj, DeferredCredentialRequestDto as bk, DeferredOperationResponse as bl, DeprecateSchemaMetadataDto as bm, Display as bn, DisplayImage as bo, DisplayInfo as bp, DisplayLogo as bq, EcJwk as br, EcPublic as bs, EmbeddedDisclosurePolicy as bt, ExportEcJwk as bu, ExportRotationPolicyDto as bv, ExternalTrustListEntity as bw, FailDeferredDto as bx, FederationConfig as by, FederationTrustAnchorConfig as bz, AppControllerGetFrontendConfigData as c, PresentationManagementControllerListSchemaMetadataCatalogData as c$, KeyChainControllerCreateResponses as c0, KeyChainControllerDeleteData as c1, KeyChainControllerDeleteErrors as c2, KeyChainControllerDeleteResponses as c3, KeyChainControllerExportData as c4, KeyChainControllerExportErrors as c5, KeyChainControllerExportResponse as c6, KeyChainControllerExportResponses as c7, KeyChainControllerGetAllData as c8, KeyChainControllerGetAllResponse as c9, KmsProvidersResponseDto as cA, ManagedAuthorizationServerConfig as cB, ManagedUserDto as cC, MetadataSchemaDto as cD, NoneTrustPolicy as cE, NotificationRequestDto as cF, Object$1 as cG, ObjectWritable as cH, OfferRequestDto as cI, OfferResponse as cJ, PaginatedSessionResponseDto as cK, ParResponseDto as cL, PolicyCredential as cM, PresentationAttachment as cN, PresentationConfig as cO, PresentationConfigCreateDto as cP, PresentationConfigUpdateDto as cQ, PresentationConfigWritable as cR, PresentationDuringIssuanceConfig as cS, PresentationManagementControllerConfigurationData as cT, PresentationManagementControllerConfigurationResponse as cU, PresentationManagementControllerConfigurationResponses as cV, PresentationManagementControllerDeleteConfigurationData as cW, PresentationManagementControllerDeleteConfigurationResponses as cX, PresentationManagementControllerGetConfigurationData as cY, PresentationManagementControllerGetConfigurationResponse as cZ, PresentationManagementControllerGetConfigurationResponses as c_, KeyChainControllerGetAllResponses as ca, KeyChainControllerGetByIdData as cb, KeyChainControllerGetByIdErrors as cc, KeyChainControllerGetByIdResponse as cd, KeyChainControllerGetByIdResponses as ce, KeyChainControllerGetProvidersData as cf, KeyChainControllerGetProvidersHealthData as cg, KeyChainControllerGetProvidersHealthResponses as ch, KeyChainControllerGetProvidersResponse as ci, KeyChainControllerGetProvidersResponses as cj, KeyChainControllerImportData as ck, KeyChainControllerImportResponses as cl, KeyChainControllerRotateData as cm, KeyChainControllerRotateErrors as cn, KeyChainControllerRotateResponses as co, KeyChainControllerUpdateData as cp, KeyChainControllerUpdateErrors as cq, KeyChainControllerUpdateResponses as cr, KeyChainCreateDto as cs, KeyChainEntity as ct, KeyChainExportDto as cu, KeyChainImportDto as cv, KeyChainResponseDto as cw, KeyChainUpdateDto as cx, KmsProviderCapabilitiesDto as cy, KmsProviderInfoDto as cz, AppControllerGetFrontendConfigResponse as d, SchemaMetadataControllerFindOneResponses as d$, PresentationManagementControllerListSchemaMetadataCatalogResponses as d0, PresentationManagementControllerReissueRegistrationCertificateData as d1, PresentationManagementControllerReissueRegistrationCertificateErrors as d2, PresentationManagementControllerReissueRegistrationCertificateResponses as d3, PresentationManagementControllerResolveIssuerMetadataData as d4, PresentationManagementControllerResolveIssuerMetadataErrors as d5, PresentationManagementControllerResolveIssuerMetadataResponses as d6, PresentationManagementControllerResolveSchemaMetadataData as d7, PresentationManagementControllerResolveSchemaMetadataErrors as d8, PresentationManagementControllerResolveSchemaMetadataResponses as d9, RegistrarControllerUpdateConfigErrors as dA, RegistrarControllerUpdateConfigResponse as dB, RegistrarControllerUpdateConfigResponses as dC, RegistrationCertificateBody as dD, RegistrationCertificateDefaults as dE, RegistrationCertificatePurpose as dF, RegistrationCertificateRequest as dG, ResolveIssuerMetadataDto as dH, ResolveSchemaMetadataDto as dI, RoleDto as dJ, RootOfTrustPolicy as dK, RotationPolicyCreateDto as dL, RotationPolicyImportDto as dM, RotationPolicyResponseDto as dN, RotationPolicyUpdateDto as dO, SchemaMetaConfig as dP, SchemaMetadataControllerDeprecateVersionData as dQ, SchemaMetadataControllerDeprecateVersionResponse as dR, SchemaMetadataControllerDeprecateVersionResponses as dS, SchemaMetadataControllerExportData as dT, SchemaMetadataControllerExportResponse as dU, SchemaMetadataControllerExportResponses as dV, SchemaMetadataControllerFindAllData as dW, SchemaMetadataControllerFindAllResponse as dX, SchemaMetadataControllerFindAllResponses as dY, SchemaMetadataControllerFindOneData as dZ, SchemaMetadataControllerFindOneResponse as d_, PresentationManagementControllerStorePresentationConfigData as da, PresentationManagementControllerStorePresentationConfigResponse as db, PresentationManagementControllerStorePresentationConfigResponses as dc, PresentationManagementControllerUpdateConfigurationData as dd, PresentationManagementControllerUpdateConfigurationResponse as de, PresentationManagementControllerUpdateConfigurationResponses as df, PresentationRequest as dg, PublicKeyInfoDto as dh, RegistrarConfigResponseDto as di, RegistrarControllerCreateAccessCertificateData as dj, RegistrarControllerCreateAccessCertificateErrors as dk, RegistrarControllerCreateAccessCertificateResponse as dl, RegistrarControllerCreateAccessCertificateResponses as dm, RegistrarControllerCreateConfigData as dn, RegistrarControllerCreateConfigErrors as dp, RegistrarControllerCreateConfigResponse as dq, RegistrarControllerCreateConfigResponses as dr, RegistrarControllerDeleteConfigData as ds, RegistrarControllerDeleteConfigResponse as dt, RegistrarControllerDeleteConfigResponses as du, RegistrarControllerGetConfigData as dv, RegistrarControllerGetConfigErrors as dw, RegistrarControllerGetConfigResponse as dx, RegistrarControllerGetConfigResponses as dy, RegistrarControllerUpdateConfigData as dz, AppControllerGetFrontendConfigResponses as e, StatusListConfigControllerGetConfigResponses as e$, SchemaMetadataControllerGetJwtData as e0, SchemaMetadataControllerGetJwtResponse as e1, SchemaMetadataControllerGetJwtResponses as e2, SchemaMetadataControllerGetLatestData as e3, SchemaMetadataControllerGetLatestResponse as e4, SchemaMetadataControllerGetLatestResponses as e5, SchemaMetadataControllerGetMineData as e6, SchemaMetadataControllerGetMineResponse as e7, SchemaMetadataControllerGetMineResponses as e8, SchemaMetadataControllerGetSchemaData as e9, SessionConfigControllerResetConfigResponses as eA, SessionConfigControllerUpdateConfigData as eB, SessionConfigControllerUpdateConfigResponse as eC, SessionConfigControllerUpdateConfigResponses as eD, SessionControllerDeleteSessionData as eE, SessionControllerDeleteSessionResponses as eF, SessionControllerGetAllSessionsData as eG, SessionControllerGetAllSessionsResponse as eH, SessionControllerGetAllSessionsResponses as eI, SessionControllerGetSessionData as eJ, SessionControllerGetSessionLogsData as eK, SessionControllerGetSessionLogsResponse as eL, SessionControllerGetSessionLogsResponses as eM, SessionControllerGetSessionResponse as eN, SessionControllerGetSessionResponses as eO, SessionControllerRevokeAllData as eP, SessionControllerRevokeAllResponses as eQ, SessionEventsControllerSubscribeToSessionEventsData as eR, SessionEventsControllerSubscribeToSessionEventsResponses as eS, SessionLogEntryResponseDto as eT, SessionStorageConfig as eU, SignSchemaMetaConfigDto as eV, SignVersionSchemaMetaConfigDto as eW, StatusListAggregationDto as eX, StatusListConfig as eY, StatusListConfigControllerGetConfigData as eZ, StatusListConfigControllerGetConfigResponse as e_, SchemaMetadataControllerGetSchemaResponse as ea, SchemaMetadataControllerGetSchemaResponses as eb, SchemaMetadataControllerGetVersionsData as ec, SchemaMetadataControllerGetVersionsResponse as ed, SchemaMetadataControllerGetVersionsResponses as ee, SchemaMetadataControllerGetVocabulariesData as ef, SchemaMetadataControllerGetVocabulariesResponse as eg, SchemaMetadataControllerGetVocabulariesResponses as eh, SchemaMetadataControllerRemoveData as ei, SchemaMetadataControllerRemoveResponses as ej, SchemaMetadataControllerSignSchemaMetaConfigData as ek, SchemaMetadataControllerSignSchemaMetaConfigErrors as el, SchemaMetadataControllerSignSchemaMetaConfigResponses as em, SchemaMetadataControllerSignVersionSchemaMetaConfigData as en, SchemaMetadataControllerSignVersionSchemaMetaConfigErrors as eo, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as ep, SchemaMetadataControllerUpdateData as eq, SchemaMetadataControllerUpdateResponse as er, SchemaMetadataControllerUpdateResponses as es, SchemaMetadataResponseDto as et, SchemaMetadataVocabulariesDto as eu, SchemaUriEntry as ev, SessionConfigControllerGetConfigData as ew, SessionConfigControllerGetConfigResponse as ex, SessionConfigControllerGetConfigResponses as ey, SessionConfigControllerResetConfigData as ez, AppControllerGetVersionData as f, TrustListControllerGetTrustListVersionResponses as f$, StatusListConfigControllerResetConfigData as f0, StatusListConfigControllerResetConfigResponse as f1, StatusListConfigControllerResetConfigResponses as f2, StatusListConfigControllerUpdateConfigData as f3, StatusListConfigControllerUpdateConfigResponse as f4, StatusListConfigControllerUpdateConfigResponses as f5, StatusListImportDto as f6, StatusListManagementControllerCreateListData as f7, StatusListManagementControllerCreateListResponse as f8, StatusListManagementControllerCreateListResponses as f9, TenantControllerInitTenantResponse as fA, TenantControllerInitTenantResponses as fB, TenantControllerUpdateTenantData as fC, TenantControllerUpdateTenantResponse as fD, TenantControllerUpdateTenantResponses as fE, TenantEntity as fF, TokenResponse as fG, TransactionData as fH, TrustAuthorityDto as fI, TrustAuthorityEntry as fJ, TrustList as fK, TrustListControllerCreateTrustListData as fL, TrustListControllerCreateTrustListResponse as fM, TrustListControllerCreateTrustListResponses as fN, TrustListControllerDeleteTrustListData as fO, TrustListControllerDeleteTrustListResponses as fP, TrustListControllerExportTrustListData as fQ, TrustListControllerExportTrustListResponse as fR, TrustListControllerExportTrustListResponses as fS, TrustListControllerGetAllTrustListsData as fT, TrustListControllerGetAllTrustListsResponse as fU, TrustListControllerGetAllTrustListsResponses as fV, TrustListControllerGetTrustListData as fW, TrustListControllerGetTrustListResponse as fX, TrustListControllerGetTrustListResponses as fY, TrustListControllerGetTrustListVersionData as fZ, TrustListControllerGetTrustListVersionResponse as f_, StatusListManagementControllerDeleteListData as fa, StatusListManagementControllerDeleteListResponse as fb, StatusListManagementControllerDeleteListResponses as fc, StatusListManagementControllerGetListData as fd, StatusListManagementControllerGetListResponse as fe, StatusListManagementControllerGetListResponses as ff, StatusListManagementControllerGetListsData as fg, StatusListManagementControllerGetListsResponse as fh, StatusListManagementControllerGetListsResponses as fi, StatusListManagementControllerUpdateListData as fj, StatusListManagementControllerUpdateListResponse as fk, StatusListManagementControllerUpdateListResponses as fl, StatusListResponseDto as fm, StatusUpdateDto as fn, StorageControllerUploadData as fo, StorageControllerUploadResponse as fp, StorageControllerUploadResponses as fq, TenantControllerDeleteTenantData as fr, TenantControllerDeleteTenantResponses as fs, TenantControllerGetTenantData as ft, TenantControllerGetTenantResponse as fu, TenantControllerGetTenantResponses as fv, TenantControllerGetTenantsData as fw, TenantControllerGetTenantsResponse as fx, TenantControllerGetTenantsResponses as fy, TenantControllerInitTenantData as fz, AppControllerGetVersionResponses as g, TrustListControllerGetTrustListVersionsData as g0, TrustListControllerGetTrustListVersionsResponse as g1, TrustListControllerGetTrustListVersionsResponses as g2, TrustListControllerUpdateTrustListData as g3, TrustListControllerUpdateTrustListResponse as g4, TrustListControllerUpdateTrustListResponses as g5, TrustListCreateDto as g6, TrustListEntityInfo as g7, TrustListVersion as g8, TrustedAuthorityQuery as g9, VerifierOfferControllerGetOfferData as gA, VerifierOfferControllerGetOfferResponse as gB, VerifierOfferControllerGetOfferResponses as gC, VocabularyEntryDto as gD, WebHookAuthConfigHeader as gE, WebHookAuthConfigNone as gF, WebhookConfig as gG, WebhookEndpointControllerCreateData as gH, WebhookEndpointControllerCreateResponses as gI, WebhookEndpointControllerDeleteData as gJ, WebhookEndpointControllerDeleteErrors as gK, WebhookEndpointControllerDeleteResponses as gL, WebhookEndpointControllerGetAllData as gM, WebhookEndpointControllerGetAllResponse as gN, WebhookEndpointControllerGetAllResponses as gO, WebhookEndpointControllerGetByIdData as gP, WebhookEndpointControllerGetByIdErrors as gQ, WebhookEndpointControllerGetByIdResponses as gR, WebhookEndpointControllerUpdateData as gS, WebhookEndpointControllerUpdateErrors as gT, WebhookEndpointControllerUpdateResponses as gU, WebhookEndpointEntity as gV, UpdateAttributeProviderDto as ga, UpdateClientDto as gb, UpdateRegistrarConfigDto as gc, UpdateSchemaMetadataDto as gd, UpdateSessionConfigDto as ge, UpdateStatusListConfigDto as gf, UpdateStatusListDto as gg, UpdateTenantDto as gh, UpdateUserDto as gi, UpdateWebhookEndpointDto as gj, UpstreamOidcConfig as gk, UserControllerCreateUserData as gl, UserControllerCreateUserResponse as gm, UserControllerCreateUserResponses as gn, UserControllerDeleteUserData as go, UserControllerDeleteUserResponses as gp, UserControllerGetUserData as gq, UserControllerGetUserResponse as gr, UserControllerGetUserResponses as gs, UserControllerGetUsersData as gt, UserControllerGetUsersResponse as gu, UserControllerGetUsersResponses as gv, UserControllerUpdateUserData as gw, UserControllerUpdateUserResponse as gx, UserControllerUpdateUserResponses as gy, Vct as gz, 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 };