@eudiplo/sdk-core 1.16.0 → 1.18.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.
@@ -91,6 +91,14 @@ type TenantEntity = {
91
91
  clients: Array<ClientEntity>;
92
92
  };
93
93
  type ClientEntity = {
94
+ /**
95
+ * List of presentation config IDs this client can use. If empty/null, all configs are allowed.
96
+ */
97
+ allowedPresentationConfigs?: Array<string>;
98
+ /**
99
+ * List of issuance config IDs this client can use. If empty/null, all configs are allowed.
100
+ */
101
+ allowedIssuanceConfigs?: Array<string>;
94
102
  /**
95
103
  * The unique identifier for the client.
96
104
  */
@@ -162,6 +170,14 @@ type ClientSecretResponseDto = {
162
170
  secret: string;
163
171
  };
164
172
  type UpdateClientDto = {
173
+ /**
174
+ * List of presentation config IDs this client can use. If empty/null, all configs are allowed.
175
+ */
176
+ allowedPresentationConfigs?: Array<string>;
177
+ /**
178
+ * List of issuance config IDs this client can use. If empty/null, all configs are allowed.
179
+ */
180
+ allowedIssuanceConfigs?: Array<string>;
165
181
  /**
166
182
  * The description of the client.
167
183
  */
@@ -172,6 +188,14 @@ type UpdateClientDto = {
172
188
  roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
173
189
  };
174
190
  type CreateClientDto = {
191
+ /**
192
+ * List of presentation config IDs this client can use. If empty/null, all configs are allowed.
193
+ */
194
+ allowedPresentationConfigs?: Array<string>;
195
+ /**
196
+ * List of issuance config IDs this client can use. If empty/null, all configs are allowed.
197
+ */
198
+ allowedIssuanceConfigs?: Array<string>;
175
199
  /**
176
200
  * The unique identifier for the client.
177
201
  */
@@ -255,9 +279,9 @@ type CertEntity = {
255
279
  */
256
280
  tenant: TenantEntity;
257
281
  /**
258
- * Certificate in PEM format.
282
+ * Certificate chain in PEM format (leaf first, then intermediates/CA).
259
283
  */
260
- crt: string;
284
+ crt: Array<string>;
261
285
  usages: Array<CertUsageEntity>;
262
286
  /**
263
287
  * Description of the key.
@@ -316,9 +340,10 @@ type CertImportDto = {
316
340
  */
317
341
  certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
318
342
  /**
319
- * Certificate in PEM format, if not provided, a self-signed certificate will be generated.
343
+ * Certificate chain in PEM format (leaf first, then intermediates/CA).
344
+ * If not provided, a self-signed certificate will be generated.
320
345
  */
321
- crt?: string;
346
+ crt?: Array<string>;
322
347
  /**
323
348
  * Subject name (CN) for self-signed certificate generation.
324
349
  * If not provided, the tenant name will be used.
@@ -526,7 +551,7 @@ type OfferRequestDto = {
526
551
  /**
527
552
  * The type of response expected for the offer request.
528
553
  */
529
- response_type: "qrcode" | "uri" | "dc-api";
554
+ response_type: "uri" | "dc-api";
530
555
  /**
531
556
  * Credential claims configuration per credential. Keys must match credentialConfigurationIds.
532
557
  */
@@ -863,6 +888,42 @@ type Vct = {
863
888
  schema_uri?: string;
864
889
  "schema_uri#integrity"?: string;
865
890
  };
891
+ type IaeActionOpenid4VpPresentation = {
892
+ /**
893
+ * Action type discriminator
894
+ */
895
+ type: "openid4vp_presentation";
896
+ /**
897
+ * Optional label for this step (for display purposes)
898
+ */
899
+ label?: string;
900
+ /**
901
+ * ID of the presentation configuration to use for this step
902
+ */
903
+ presentationConfigId: string;
904
+ };
905
+ type IaeActionRedirectToWeb = {
906
+ /**
907
+ * Action type discriminator
908
+ */
909
+ type: "redirect_to_web";
910
+ /**
911
+ * Optional label for this step (for display purposes)
912
+ */
913
+ label?: string;
914
+ /**
915
+ * URL to redirect the user to for web-based interaction
916
+ */
917
+ url: string;
918
+ /**
919
+ * URL where the external service should redirect back after completion. If not provided, the service must call back to the IAE endpoint.
920
+ */
921
+ callbackUrl?: string;
922
+ /**
923
+ * Description of what the user should do on the web page (for wallet display)
924
+ */
925
+ description?: string;
926
+ };
866
927
  type EmbeddedDisclosurePolicy = {
867
928
  policy: string;
868
929
  };
@@ -879,7 +940,7 @@ type Display = {
879
940
  logo?: DisplayImage;
880
941
  };
881
942
  type IssuerMetadataCredentialConfig = {
882
- format: string;
943
+ format: "mso_mdoc" | "dc+sd-jwt";
883
944
  display: Array<Display>;
884
945
  scope?: string;
885
946
  /**
@@ -922,6 +983,10 @@ type CredentialConfig = {
922
983
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
923
984
  */
924
985
  vct?: string | Vct;
986
+ /**
987
+ * List of IAE actions to execute before credential issuance
988
+ */
989
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
925
990
  /**
926
991
  * Embedded disclosure policy (discriminated union by `policy`).
927
992
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -967,6 +1032,10 @@ type CredentialConfigCreate = {
967
1032
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
968
1033
  */
969
1034
  vct?: string | Vct;
1035
+ /**
1036
+ * List of IAE actions to execute before credential issuance
1037
+ */
1038
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
970
1039
  /**
971
1040
  * Embedded disclosure policy (discriminated union by `policy`).
972
1041
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1007,6 +1076,10 @@ type CredentialConfigUpdate = {
1007
1076
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
1008
1077
  */
1009
1078
  vct?: string | Vct;
1079
+ /**
1080
+ * List of IAE actions to execute before credential issuance
1081
+ */
1082
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1010
1083
  /**
1011
1084
  * Embedded disclosure policy (discriminated union by `policy`).
1012
1085
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1042,6 +1115,12 @@ type CredentialConfigUpdate = {
1042
1115
  lifeTime?: number;
1043
1116
  schema?: SchemaResponse;
1044
1117
  };
1118
+ type DeferredCredentialRequestDto = {
1119
+ /**
1120
+ * The transaction identifier previously returned by the Credential Endpoint
1121
+ */
1122
+ transaction_id: string;
1123
+ };
1045
1124
  type NotificationRequestDto = {
1046
1125
  notification_id: string;
1047
1126
  event: {
@@ -1058,10 +1137,107 @@ type ParResponseDto = {
1058
1137
  */
1059
1138
  expires_in: number;
1060
1139
  };
1140
+ type InteractiveAuthorizationRequestDto = {
1141
+ /**
1142
+ * Response type (for initial request)
1143
+ */
1144
+ response_type?: string;
1145
+ /**
1146
+ * Client identifier (for initial request)
1147
+ */
1148
+ client_id?: string;
1149
+ /**
1150
+ * Comma-separated list of supported interaction types (for initial request)
1151
+ */
1152
+ interaction_types_supported?: string;
1153
+ /**
1154
+ * Redirect URI (for initial request)
1155
+ */
1156
+ redirect_uri?: string;
1157
+ /**
1158
+ * OAuth scope
1159
+ */
1160
+ scope?: string;
1161
+ /**
1162
+ * PKCE code challenge
1163
+ */
1164
+ code_challenge?: string;
1165
+ /**
1166
+ * PKCE code challenge method
1167
+ */
1168
+ code_challenge_method?: string;
1169
+ /**
1170
+ * Authorization details
1171
+ */
1172
+ authorization_details?: {
1173
+ [key: string]: unknown;
1174
+ };
1175
+ /**
1176
+ * State parameter
1177
+ */
1178
+ state?: string;
1179
+ /**
1180
+ * Issuer state from credential offer
1181
+ */
1182
+ issuer_state?: string;
1183
+ /**
1184
+ * Auth session identifier (for follow-up request)
1185
+ */
1186
+ auth_session?: string;
1187
+ /**
1188
+ * OpenID4VP response (for follow-up request)
1189
+ */
1190
+ openid4vp_response?: string;
1191
+ /**
1192
+ * PKCE code verifier (for follow-up request)
1193
+ */
1194
+ code_verifier?: string;
1195
+ /**
1196
+ * JAR request JWT (by value)
1197
+ */
1198
+ request?: string;
1199
+ /**
1200
+ * JAR request URI (by reference)
1201
+ */
1202
+ request_uri?: string;
1203
+ };
1204
+ type InteractiveAuthorizationCodeResponseDto = {
1205
+ /**
1206
+ * Response status
1207
+ */
1208
+ status: string;
1209
+ /**
1210
+ * Authorization code
1211
+ */
1212
+ code: string;
1213
+ };
1214
+ type InteractiveAuthorizationErrorResponseDto = {
1215
+ /**
1216
+ * OAuth error code
1217
+ */
1218
+ error: string;
1219
+ /**
1220
+ * Human-readable error description
1221
+ */
1222
+ error_description?: string;
1223
+ };
1061
1224
  type OfferResponse = {
1062
1225
  uri: string;
1226
+ /**
1227
+ * URI for cross-device flows (no redirect after completion)
1228
+ */
1229
+ crossDeviceUri?: string;
1063
1230
  session: string;
1064
1231
  };
1232
+ type CompleteDeferredDto = {
1233
+ [key: string]: unknown;
1234
+ };
1235
+ type DeferredOperationResponse = {
1236
+ [key: string]: unknown;
1237
+ };
1238
+ type FailDeferredDto = {
1239
+ [key: string]: unknown;
1240
+ };
1065
1241
  type EcPublic = {
1066
1242
  /**
1067
1243
  * The key type, which is always 'EC' for Elliptic Curve keys.
@@ -1440,7 +1616,7 @@ type PresentationRequest = {
1440
1616
  /**
1441
1617
  * The type of response expected from the presentation request.
1442
1618
  */
1443
- response_type: "qrcode" | "uri" | "dc-api";
1619
+ response_type: "uri" | "dc-api";
1444
1620
  /**
1445
1621
  * Identifier of the presentation configuration
1446
1622
  */
@@ -1603,8 +1779,11 @@ type TenantControllerInitTenantData = {
1603
1779
  url: "/tenant";
1604
1780
  };
1605
1781
  type TenantControllerInitTenantResponses = {
1606
- 201: unknown;
1782
+ 201: {
1783
+ [key: string]: unknown;
1784
+ };
1607
1785
  };
1786
+ type TenantControllerInitTenantResponse = TenantControllerInitTenantResponses[keyof TenantControllerInitTenantResponses];
1608
1787
  type TenantControllerDeleteTenantData = {
1609
1788
  body?: never;
1610
1789
  path: {
@@ -1709,6 +1888,18 @@ type ClientControllerGetClientSecretResponses = {
1709
1888
  200: ClientSecretResponseDto;
1710
1889
  };
1711
1890
  type ClientControllerGetClientSecretResponse = ClientControllerGetClientSecretResponses[keyof ClientControllerGetClientSecretResponses];
1891
+ type ClientControllerRotateClientSecretData = {
1892
+ body?: never;
1893
+ path: {
1894
+ id: string;
1895
+ };
1896
+ query?: never;
1897
+ url: "/client/{id}/rotate-secret";
1898
+ };
1899
+ type ClientControllerRotateClientSecretResponses = {
1900
+ 201: ClientSecretResponseDto;
1901
+ };
1902
+ type ClientControllerRotateClientSecretResponse = ClientControllerRotateClientSecretResponses[keyof ClientControllerRotateClientSecretResponses];
1712
1903
  type KeyControllerGetKeysData = {
1713
1904
  body?: never;
1714
1905
  path?: never;
@@ -2150,6 +2341,20 @@ type Oid4VciControllerCredentialData = {
2150
2341
  url: "/{tenantId}/vci/credential";
2151
2342
  };
2152
2343
  type Oid4VciControllerCredentialResponses = {
2344
+ 200: {
2345
+ [key: string]: unknown;
2346
+ };
2347
+ };
2348
+ type Oid4VciControllerCredentialResponse = Oid4VciControllerCredentialResponses[keyof Oid4VciControllerCredentialResponses];
2349
+ type Oid4VciControllerDeferredCredentialData = {
2350
+ body: DeferredCredentialRequestDto;
2351
+ path: {
2352
+ tenantId: string;
2353
+ };
2354
+ query?: never;
2355
+ url: "/{tenantId}/vci/deferred_credential";
2356
+ };
2357
+ type Oid4VciControllerDeferredCredentialResponses = {
2153
2358
  200: unknown;
2154
2359
  };
2155
2360
  type Oid4VciControllerNotificationsData = {
@@ -2236,6 +2441,55 @@ type AuthorizeControllerAuthorizationChallengeEndpointData = {
2236
2441
  type AuthorizeControllerAuthorizationChallengeEndpointResponses = {
2237
2442
  201: unknown;
2238
2443
  };
2444
+ type InteractiveAuthorizationControllerInteractiveAuthorizationData = {
2445
+ /**
2446
+ * Interactive authorization request
2447
+ */
2448
+ body: InteractiveAuthorizationRequestDto;
2449
+ headers: {
2450
+ origin: string;
2451
+ };
2452
+ path: {
2453
+ tenantId: string;
2454
+ };
2455
+ query?: never;
2456
+ url: "/{tenantId}/authorize/interactive";
2457
+ };
2458
+ type InteractiveAuthorizationControllerInteractiveAuthorizationErrors = {
2459
+ /**
2460
+ * Error response
2461
+ */
2462
+ 400: InteractiveAuthorizationErrorResponseDto;
2463
+ };
2464
+ type InteractiveAuthorizationControllerInteractiveAuthorizationError = InteractiveAuthorizationControllerInteractiveAuthorizationErrors[keyof InteractiveAuthorizationControllerInteractiveAuthorizationErrors];
2465
+ type InteractiveAuthorizationControllerInteractiveAuthorizationResponses = {
2466
+ /**
2467
+ * Authorization code response (successful completion)
2468
+ */
2469
+ 200: InteractiveAuthorizationCodeResponseDto;
2470
+ };
2471
+ type InteractiveAuthorizationControllerInteractiveAuthorizationResponse = InteractiveAuthorizationControllerInteractiveAuthorizationResponses[keyof InteractiveAuthorizationControllerInteractiveAuthorizationResponses];
2472
+ type InteractiveAuthorizationControllerCompleteWebAuthData = {
2473
+ body?: never;
2474
+ path: {
2475
+ authSession: string;
2476
+ tenantId: string;
2477
+ };
2478
+ query?: never;
2479
+ url: "/{tenantId}/authorize/interactive/complete-web-auth/{authSession}";
2480
+ };
2481
+ type InteractiveAuthorizationControllerCompleteWebAuthErrors = {
2482
+ /**
2483
+ * Auth session not found
2484
+ */
2485
+ 404: unknown;
2486
+ };
2487
+ type InteractiveAuthorizationControllerCompleteWebAuthResponses = {
2488
+ /**
2489
+ * Web authorization marked as completed
2490
+ */
2491
+ 200: unknown;
2492
+ };
2239
2493
  type CredentialOfferControllerGetOfferData = {
2240
2494
  body: OfferRequestDto;
2241
2495
  path?: never;
@@ -2249,6 +2503,48 @@ type CredentialOfferControllerGetOfferResponses = {
2249
2503
  201: OfferResponse;
2250
2504
  };
2251
2505
  type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
2506
+ type DeferredControllerCompleteDeferredData = {
2507
+ body: CompleteDeferredDto;
2508
+ path: {
2509
+ transactionId: string;
2510
+ };
2511
+ query?: never;
2512
+ url: "/issuer/deferred/{transactionId}/complete";
2513
+ };
2514
+ type DeferredControllerCompleteDeferredErrors = {
2515
+ /**
2516
+ * Transaction not found
2517
+ */
2518
+ 404: unknown;
2519
+ };
2520
+ type DeferredControllerCompleteDeferredResponses = {
2521
+ /**
2522
+ * Transaction completed successfully
2523
+ */
2524
+ 200: DeferredOperationResponse;
2525
+ };
2526
+ type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
2527
+ type DeferredControllerFailDeferredData = {
2528
+ body?: FailDeferredDto;
2529
+ path: {
2530
+ transactionId: string;
2531
+ };
2532
+ query?: never;
2533
+ url: "/issuer/deferred/{transactionId}/fail";
2534
+ };
2535
+ type DeferredControllerFailDeferredErrors = {
2536
+ /**
2537
+ * Transaction not found
2538
+ */
2539
+ 404: unknown;
2540
+ };
2541
+ type DeferredControllerFailDeferredResponses = {
2542
+ /**
2543
+ * Transaction marked as failed
2544
+ */
2545
+ 200: DeferredOperationResponse;
2546
+ };
2547
+ type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
2252
2548
  type Oid4VciMetadataControllerVctData = {
2253
2549
  body?: never;
2254
2550
  path: {
@@ -2360,6 +2656,18 @@ type Oid4VpControllerGetPostRequestWithSessionResponses = {
2360
2656
  201: string;
2361
2657
  };
2362
2658
  type Oid4VpControllerGetPostRequestWithSessionResponse = Oid4VpControllerGetPostRequestWithSessionResponses[keyof Oid4VpControllerGetPostRequestWithSessionResponses];
2659
+ type Oid4VpControllerGetRequestNoRedirectWithSessionData = {
2660
+ body?: never;
2661
+ path: {
2662
+ session: string;
2663
+ };
2664
+ query?: never;
2665
+ url: "/{session}/oid4vp/request/no-redirect";
2666
+ };
2667
+ type Oid4VpControllerGetRequestNoRedirectWithSessionResponses = {
2668
+ 200: string;
2669
+ };
2670
+ type Oid4VpControllerGetRequestNoRedirectWithSessionResponse = Oid4VpControllerGetRequestNoRedirectWithSessionResponses[keyof Oid4VpControllerGetRequestNoRedirectWithSessionResponses];
2363
2671
  type Oid4VpControllerGetResponseData = {
2364
2672
  body: AuthorizationResponse;
2365
2673
  path: {
@@ -2539,6 +2847,57 @@ type PresentationManagementControllerUpdateConfigurationResponses = {
2539
2847
  };
2540
2848
  };
2541
2849
  type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
2850
+ type CacheControllerGetStatsData = {
2851
+ body?: never;
2852
+ path?: never;
2853
+ query?: never;
2854
+ url: "/cache/stats";
2855
+ };
2856
+ type CacheControllerGetStatsResponses = {
2857
+ /**
2858
+ * Cache statistics
2859
+ */
2860
+ 200: unknown;
2861
+ };
2862
+ type CacheControllerClearAllCachesData = {
2863
+ body?: never;
2864
+ path?: never;
2865
+ query?: never;
2866
+ url: "/cache";
2867
+ };
2868
+ type CacheControllerClearAllCachesResponses = {
2869
+ /**
2870
+ * All caches cleared successfully
2871
+ */
2872
+ 204: void;
2873
+ };
2874
+ type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
2875
+ type CacheControllerClearTrustListCacheData = {
2876
+ body?: never;
2877
+ path?: never;
2878
+ query?: never;
2879
+ url: "/cache/trust-list";
2880
+ };
2881
+ type CacheControllerClearTrustListCacheResponses = {
2882
+ /**
2883
+ * Trust list cache cleared successfully
2884
+ */
2885
+ 204: void;
2886
+ };
2887
+ type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
2888
+ type CacheControllerClearStatusListCacheData = {
2889
+ body?: never;
2890
+ path?: never;
2891
+ query?: never;
2892
+ url: "/cache/status-list";
2893
+ };
2894
+ type CacheControllerClearStatusListCacheResponses = {
2895
+ /**
2896
+ * Status list cache cleared successfully
2897
+ */
2898
+ 204: void;
2899
+ };
2900
+ type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
2542
2901
  type TrustListControllerGetAllTrustListsData = {
2543
2902
  body?: never;
2544
2903
  path?: never;
@@ -2684,4 +3043,4 @@ type StorageControllerDownloadResponses = {
2684
3043
  200: unknown;
2685
3044
  };
2686
3045
 
2687
- export type { ClientControllerCreateClientData as $, AllowListPolicy as A, AuthorizeControllerTokenResponses as B, AuthorizeQueries as C, CertControllerAddCertificateData as D, CertControllerAddCertificateResponse as E, CertControllerAddCertificateResponses as F, CertControllerDeleteCertificateData as G, CertControllerDeleteCertificateResponses as H, CertControllerExportConfigData as I, CertControllerExportConfigResponse as J, CertControllerExportConfigResponses as K, CertControllerGetCertificateData as L, CertControllerGetCertificateResponse as M, CertControllerGetCertificateResponses as N, CertControllerGetCertificatesData as O, CertControllerGetCertificatesResponse as P, CertControllerGetCertificatesResponses as Q, CertControllerUpdateCertificateData as R, Session as S, CertControllerUpdateCertificateResponses as T, CertEntity as U, CertImportDto as V, CertResponseDto as W, CertUpdateDto as X, CertUsageEntity as Y, Claim as Z, ClaimsQuery as _, ApiKeyConfig as a, IssuanceConfigControllerGetIssuanceConfigurationsResponse as a$, ClientControllerCreateClientResponse as a0, ClientControllerCreateClientResponses as a1, ClientControllerDeleteClientData as a2, ClientControllerDeleteClientResponses as a3, ClientControllerGetClientData as a4, ClientControllerGetClientResponse as a5, ClientControllerGetClientResponses as a6, ClientControllerGetClientSecretData as a7, ClientControllerGetClientSecretResponse as a8, ClientControllerGetClientSecretResponses as a9, CredentialConfigControllerStoreCredentialConfigurationResponses as aA, CredentialConfigControllerUpdateCredentialConfigurationData as aB, CredentialConfigControllerUpdateCredentialConfigurationResponse as aC, CredentialConfigControllerUpdateCredentialConfigurationResponses as aD, CredentialConfigCreate as aE, CredentialConfigUpdate as aF, CredentialOfferControllerGetOfferData as aG, CredentialOfferControllerGetOfferResponse as aH, CredentialOfferControllerGetOfferResponses as aI, CredentialQuery as aJ, CredentialSetQuery as aK, Dcql as aL, Display as aM, DisplayImage as aN, DisplayInfo as aO, DisplayLogo as aP, EcPublic as aQ, EmbeddedDisclosurePolicy as aR, FileUploadDto as aS, HealthControllerCheckData as aT, HealthControllerCheckError as aU, HealthControllerCheckErrors as aV, HealthControllerCheckResponse as aW, HealthControllerCheckResponses as aX, ImportTenantDto as aY, IssuanceConfig as aZ, IssuanceConfigControllerGetIssuanceConfigurationsData as a_, ClientControllerGetClientsData as aa, ClientControllerGetClientsResponse as ab, ClientControllerGetClientsResponses as ac, ClientControllerUpdateClientData as ad, ClientControllerUpdateClientResponse as ae, ClientControllerUpdateClientResponses as af, ClientCredentialsDto as ag, ClientEntity as ah, ClientOptions as ai, ClientSecretResponseDto as aj, CreateAccessCertificateDto as ak, CreateClientDto as al, CreateRegistrarConfigDto as am, CreateStatusListDto as an, CreateTenantDto as ao, CredentialConfig as ap, CredentialConfigControllerDeleteIssuanceConfigurationData as aq, CredentialConfigControllerDeleteIssuanceConfigurationResponses as ar, CredentialConfigControllerGetConfigByIdData as as, CredentialConfigControllerGetConfigByIdResponse as at, CredentialConfigControllerGetConfigByIdResponses as au, CredentialConfigControllerGetConfigsData as av, CredentialConfigControllerGetConfigsResponse as aw, CredentialConfigControllerGetConfigsResponses as ax, CredentialConfigControllerStoreCredentialConfigurationData as ay, CredentialConfigControllerStoreCredentialConfigurationResponse as az, AppControllerMainData as b, PresentationManagementControllerUpdateConfigurationResponse as b$, IssuanceConfigControllerGetIssuanceConfigurationsResponses as b0, IssuanceConfigControllerStoreIssuanceConfigurationData as b1, IssuanceConfigControllerStoreIssuanceConfigurationResponse as b2, IssuanceConfigControllerStoreIssuanceConfigurationResponses as b3, IssuanceDto as b4, IssuerMetadataCredentialConfig as b5, JwksResponseDto as b6, Key as b7, KeyControllerAddKeyData as b8, KeyControllerAddKeyResponses as b9, Oid4VpControllerGetPostRequestWithSessionResponse as bA, Oid4VpControllerGetPostRequestWithSessionResponses as bB, Oid4VpControllerGetRequestWithSessionData as bC, Oid4VpControllerGetRequestWithSessionResponse as bD, Oid4VpControllerGetRequestWithSessionResponses as bE, Oid4VpControllerGetResponseData as bF, Oid4VpControllerGetResponseResponse as bG, Oid4VpControllerGetResponseResponses as bH, ParResponseDto as bI, PolicyCredential as bJ, PresentationAttachment as bK, PresentationConfig as bL, PresentationConfigCreateDto as bM, PresentationConfigUpdateDto as bN, PresentationDuringIssuanceConfig as bO, PresentationManagementControllerConfigurationData as bP, PresentationManagementControllerConfigurationResponse as bQ, PresentationManagementControllerConfigurationResponses as bR, PresentationManagementControllerDeleteConfigurationData as bS, PresentationManagementControllerDeleteConfigurationResponses as bT, PresentationManagementControllerGetConfigurationData as bU, PresentationManagementControllerGetConfigurationResponse as bV, PresentationManagementControllerGetConfigurationResponses as bW, PresentationManagementControllerStorePresentationConfigData as bX, PresentationManagementControllerStorePresentationConfigResponse as bY, PresentationManagementControllerStorePresentationConfigResponses as bZ, PresentationManagementControllerUpdateConfigurationData as b_, KeyControllerDeleteKeyData as ba, KeyControllerDeleteKeyResponses as bb, KeyControllerGetKeyData as bc, KeyControllerGetKeyResponse as bd, KeyControllerGetKeyResponses as be, KeyControllerGetKeysData as bf, KeyControllerGetKeysResponse as bg, KeyControllerGetKeysResponses as bh, KeyControllerUpdateKeyData as bi, KeyControllerUpdateKeyResponses as bj, KeyEntity as bk, KeyImportDto as bl, NoneTrustPolicy as bm, NotificationRequestDto as bn, OfferRequestDto as bo, OfferResponse as bp, Oid4VciControllerCredentialData as bq, Oid4VciControllerCredentialResponses as br, Oid4VciControllerNonceData as bs, Oid4VciControllerNonceResponses as bt, Oid4VciControllerNotificationsData as bu, Oid4VciControllerNotificationsResponses as bv, Oid4VciMetadataControllerVctData as bw, Oid4VciMetadataControllerVctResponse as bx, Oid4VciMetadataControllerVctResponses as by, Oid4VpControllerGetPostRequestWithSessionData as bz, AppControllerMainResponses as c, StatusListControllerGetStatusListAggregationResponses as c$, PresentationManagementControllerUpdateConfigurationResponses as c0, PresentationRequest as c1, PrometheusControllerIndexData as c2, PrometheusControllerIndexResponses as c3, RegistrarConfigEntity as c4, RegistrarControllerCreateAccessCertificateData as c5, RegistrarControllerCreateAccessCertificateErrors as c6, RegistrarControllerCreateAccessCertificateResponse as c7, RegistrarControllerCreateAccessCertificateResponses as c8, RegistrarControllerCreateConfigData as c9, SessionControllerDeleteSessionData as cA, SessionControllerDeleteSessionResponses as cB, SessionControllerGetAllSessionsData as cC, SessionControllerGetAllSessionsResponse as cD, SessionControllerGetAllSessionsResponses as cE, SessionControllerGetSessionData as cF, SessionControllerGetSessionResponse as cG, SessionControllerGetSessionResponses as cH, SessionControllerRevokeAllData as cI, SessionControllerRevokeAllResponses as cJ, SessionStorageConfig as cK, StatusListAggregationDto as cL, StatusListConfig as cM, StatusListConfigControllerGetConfigData as cN, StatusListConfigControllerGetConfigResponse as cO, StatusListConfigControllerGetConfigResponses as cP, StatusListConfigControllerResetConfigData as cQ, StatusListConfigControllerResetConfigResponse as cR, StatusListConfigControllerResetConfigResponses as cS, StatusListConfigControllerUpdateConfigData as cT, StatusListConfigControllerUpdateConfigResponse as cU, StatusListConfigControllerUpdateConfigResponses as cV, StatusListControllerGetListData as cW, StatusListControllerGetListResponse as cX, StatusListControllerGetListResponses as cY, StatusListControllerGetStatusListAggregationData as cZ, StatusListControllerGetStatusListAggregationResponse as c_, RegistrarControllerCreateConfigErrors as ca, RegistrarControllerCreateConfigResponse as cb, RegistrarControllerCreateConfigResponses as cc, RegistrarControllerDeleteConfigData as cd, RegistrarControllerDeleteConfigResponse as ce, RegistrarControllerDeleteConfigResponses as cf, RegistrarControllerGetConfigData as cg, RegistrarControllerGetConfigErrors as ch, RegistrarControllerGetConfigResponse as ci, RegistrarControllerGetConfigResponses as cj, RegistrarControllerUpdateConfigData as ck, RegistrarControllerUpdateConfigErrors as cl, RegistrarControllerUpdateConfigResponse as cm, RegistrarControllerUpdateConfigResponses as cn, RegistrationCertificateRequest as co, RoleDto as cp, RootOfTrustPolicy as cq, SchemaResponse as cr, SessionConfigControllerGetConfigData as cs, SessionConfigControllerGetConfigResponse as ct, SessionConfigControllerGetConfigResponses as cu, SessionConfigControllerResetConfigData as cv, SessionConfigControllerResetConfigResponses as cw, SessionConfigControllerUpdateConfigData as cx, SessionConfigControllerUpdateConfigResponse as cy, SessionConfigControllerUpdateConfigResponses as cz, AttestationBasedPolicy as d, TrustListControllerUpdateTrustListResponses as d$, StatusListImportDto as d0, StatusListManagementControllerCreateListData as d1, StatusListManagementControllerCreateListResponse as d2, StatusListManagementControllerCreateListResponses as d3, StatusListManagementControllerDeleteListData as d4, StatusListManagementControllerDeleteListResponse as d5, StatusListManagementControllerDeleteListResponses as d6, StatusListManagementControllerGetListData as d7, StatusListManagementControllerGetListResponse as d8, StatusListManagementControllerGetListResponses as d9, TenantControllerUpdateTenantResponses as dA, TenantEntity as dB, TokenResponse as dC, TransactionData as dD, TrustList as dE, TrustListControllerCreateTrustListData as dF, TrustListControllerCreateTrustListResponse as dG, TrustListControllerCreateTrustListResponses as dH, TrustListControllerDeleteTrustListData as dI, TrustListControllerDeleteTrustListResponses as dJ, TrustListControllerExportTrustListData as dK, TrustListControllerExportTrustListResponse as dL, TrustListControllerExportTrustListResponses as dM, TrustListControllerGetAllTrustListsData as dN, TrustListControllerGetAllTrustListsResponse as dO, TrustListControllerGetAllTrustListsResponses as dP, TrustListControllerGetTrustListData as dQ, TrustListControllerGetTrustListResponse as dR, TrustListControllerGetTrustListResponses as dS, TrustListControllerGetTrustListVersionData as dT, TrustListControllerGetTrustListVersionResponse as dU, TrustListControllerGetTrustListVersionResponses as dV, TrustListControllerGetTrustListVersionsData as dW, TrustListControllerGetTrustListVersionsResponse as dX, TrustListControllerGetTrustListVersionsResponses as dY, TrustListControllerUpdateTrustListData as dZ, TrustListControllerUpdateTrustListResponse as d_, StatusListManagementControllerGetListsData as da, StatusListManagementControllerGetListsResponse as db, StatusListManagementControllerGetListsResponses as dc, StatusListManagementControllerUpdateListData as dd, StatusListManagementControllerUpdateListResponse as de, StatusListManagementControllerUpdateListResponses as df, StatusListResponseDto as dg, StatusUpdateDto as dh, StorageControllerDownloadData as di, StorageControllerDownloadResponses as dj, StorageControllerUploadData as dk, StorageControllerUploadResponse as dl, StorageControllerUploadResponses as dm, TenantControllerDeleteTenantData as dn, TenantControllerDeleteTenantResponses as dp, TenantControllerGetTenantData as dq, TenantControllerGetTenantResponse as dr, TenantControllerGetTenantResponses as ds, TenantControllerGetTenantsData as dt, TenantControllerGetTenantsResponse as du, TenantControllerGetTenantsResponses as dv, TenantControllerInitTenantData as dw, TenantControllerInitTenantResponses as dx, TenantControllerUpdateTenantData as dy, TenantControllerUpdateTenantResponse as dz, AuthControllerGetGlobalJwksData as e, TrustListCreateDto as e0, TrustListPublicControllerGetTrustListJwtData as e1, TrustListPublicControllerGetTrustListJwtResponse as e2, TrustListPublicControllerGetTrustListJwtResponses as e3, TrustListVersion as e4, TrustedAuthorityQuery as e5, UpdateClientDto as e6, UpdateKeyDto as e7, UpdateRegistrarConfigDto as e8, UpdateSessionConfigDto as e9, UpdateStatusListConfigDto as ea, UpdateStatusListDto as eb, UpdateTenantDto as ec, Vct as ed, VerifierOfferControllerGetOfferData as ee, VerifierOfferControllerGetOfferResponse as ef, VerifierOfferControllerGetOfferResponses as eg, WebHookAuthConfigHeader as eh, WebHookAuthConfigNone as ei, WebhookConfig as ej, WellKnownControllerAuthzMetadata0Data as ek, WellKnownControllerAuthzMetadata0Responses as el, WellKnownControllerAuthzMetadata1Data as em, WellKnownControllerAuthzMetadata1Responses as en, WellKnownControllerGetJwks0Data as eo, WellKnownControllerGetJwks0Response as ep, WellKnownControllerGetJwks0Responses as eq, WellKnownControllerGetJwks1Data as er, WellKnownControllerGetJwks1Response as es, WellKnownControllerGetJwks1Responses as et, WellKnownControllerIssuerMetadata0Data as eu, WellKnownControllerIssuerMetadata0Response as ev, WellKnownControllerIssuerMetadata0Responses as ew, WellKnownControllerIssuerMetadata1Data as ex, WellKnownControllerIssuerMetadata1Response as ey, WellKnownControllerIssuerMetadata1Responses as ez, AuthControllerGetGlobalJwksResponses as f, AuthControllerGetOAuth2TokenData as g, AuthControllerGetOAuth2TokenErrors as h, AuthControllerGetOAuth2TokenResponse as i, AuthControllerGetOAuth2TokenResponses as j, AuthControllerGetOidcDiscoveryData as k, AuthControllerGetOidcDiscoveryResponses as l, AuthenticationMethodAuth as m, AuthenticationMethodNone as n, AuthenticationMethodPresentation as o, AuthenticationUrlConfig as p, AuthorizationResponse as q, AuthorizeControllerAuthorizationChallengeEndpointData as r, AuthorizeControllerAuthorizationChallengeEndpointResponses as s, AuthorizeControllerAuthorizeData as t, AuthorizeControllerAuthorizeResponses as u, AuthorizeControllerParData as v, AuthorizeControllerParResponse as w, AuthorizeControllerParResponses as x, AuthorizeControllerTokenData as y, AuthorizeControllerTokenResponse as z };
3046
+ export type { CertControllerGetCertificatesResponse as $, AllowListPolicy as A, AuthorizeControllerTokenResponses 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, CertControllerAddCertificateData as O, CertControllerAddCertificateResponse as P, CertControllerAddCertificateResponses as Q, CertControllerDeleteCertificateData as R, Session as S, CertControllerDeleteCertificateResponses as T, CertControllerExportConfigData as U, CertControllerExportConfigResponse as V, CertControllerExportConfigResponses as W, CertControllerGetCertificateData as X, CertControllerGetCertificateResponse as Y, CertControllerGetCertificateResponses as Z, CertControllerGetCertificatesData as _, ApiKeyConfig as a, DeferredControllerCompleteDeferredData as a$, CertControllerGetCertificatesResponses as a0, CertControllerUpdateCertificateData as a1, CertControllerUpdateCertificateResponses as a2, CertEntity as a3, CertImportDto as a4, CertResponseDto as a5, CertUpdateDto as a6, CertUsageEntity as a7, Claim as a8, ClaimsQuery as a9, CreateClientDto as aA, CreateRegistrarConfigDto as aB, CreateStatusListDto as aC, CreateTenantDto as aD, CredentialConfig as aE, CredentialConfigControllerDeleteIssuanceConfigurationData as aF, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aG, CredentialConfigControllerGetConfigByIdData as aH, CredentialConfigControllerGetConfigByIdResponse as aI, CredentialConfigControllerGetConfigByIdResponses as aJ, CredentialConfigControllerGetConfigsData as aK, CredentialConfigControllerGetConfigsResponse as aL, CredentialConfigControllerGetConfigsResponses as aM, CredentialConfigControllerStoreCredentialConfigurationData as aN, CredentialConfigControllerStoreCredentialConfigurationResponse as aO, CredentialConfigControllerStoreCredentialConfigurationResponses as aP, CredentialConfigControllerUpdateCredentialConfigurationData as aQ, CredentialConfigControllerUpdateCredentialConfigurationResponse as aR, CredentialConfigControllerUpdateCredentialConfigurationResponses as aS, CredentialConfigCreate as aT, CredentialConfigUpdate as aU, CredentialOfferControllerGetOfferData as aV, CredentialOfferControllerGetOfferResponse as aW, CredentialOfferControllerGetOfferResponses as aX, CredentialQuery as aY, CredentialSetQuery as aZ, Dcql as a_, ClientControllerCreateClientData as aa, ClientControllerCreateClientResponse as ab, ClientControllerCreateClientResponses as ac, ClientControllerDeleteClientData as ad, ClientControllerDeleteClientResponses as ae, ClientControllerGetClientData as af, ClientControllerGetClientResponse as ag, ClientControllerGetClientResponses as ah, ClientControllerGetClientSecretData as ai, ClientControllerGetClientSecretResponse as aj, ClientControllerGetClientSecretResponses as ak, ClientControllerGetClientsData as al, ClientControllerGetClientsResponse as am, ClientControllerGetClientsResponses as an, ClientControllerRotateClientSecretData as ao, ClientControllerRotateClientSecretResponse as ap, ClientControllerRotateClientSecretResponses as aq, ClientControllerUpdateClientData as ar, ClientControllerUpdateClientResponse as as, ClientControllerUpdateClientResponses as at, ClientCredentialsDto as au, ClientEntity as av, ClientOptions as aw, ClientSecretResponseDto as ax, CompleteDeferredDto as ay, CreateAccessCertificateDto as az, AppControllerMainData as b, OfferRequestDto as b$, DeferredControllerCompleteDeferredErrors as b0, DeferredControllerCompleteDeferredResponse as b1, DeferredControllerCompleteDeferredResponses as b2, DeferredControllerFailDeferredData as b3, DeferredControllerFailDeferredErrors as b4, DeferredControllerFailDeferredResponse as b5, DeferredControllerFailDeferredResponses as b6, DeferredCredentialRequestDto as b7, DeferredOperationResponse as b8, Display as b9, IssuanceConfig as bA, IssuanceConfigControllerGetIssuanceConfigurationsData as bB, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bC, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bD, IssuanceConfigControllerStoreIssuanceConfigurationData as bE, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bF, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bG, IssuanceDto as bH, IssuerMetadataCredentialConfig as bI, JwksResponseDto as bJ, Key as bK, KeyControllerAddKeyData as bL, KeyControllerAddKeyResponses as bM, KeyControllerDeleteKeyData as bN, KeyControllerDeleteKeyResponses as bO, KeyControllerGetKeyData as bP, KeyControllerGetKeyResponse as bQ, KeyControllerGetKeyResponses as bR, KeyControllerGetKeysData as bS, KeyControllerGetKeysResponse as bT, KeyControllerGetKeysResponses as bU, KeyControllerUpdateKeyData as bV, KeyControllerUpdateKeyResponses as bW, KeyEntity as bX, KeyImportDto as bY, NoneTrustPolicy as bZ, NotificationRequestDto as b_, DisplayImage as ba, DisplayInfo as bb, DisplayLogo as bc, EcPublic as bd, EmbeddedDisclosurePolicy as be, FailDeferredDto as bf, FileUploadDto as bg, HealthControllerCheckData as bh, HealthControllerCheckError as bi, HealthControllerCheckErrors as bj, HealthControllerCheckResponse as bk, HealthControllerCheckResponses as bl, IaeActionOpenid4VpPresentation as bm, IaeActionRedirectToWeb as bn, ImportTenantDto as bo, InteractiveAuthorizationCodeResponseDto as bp, InteractiveAuthorizationControllerCompleteWebAuthData as bq, InteractiveAuthorizationControllerCompleteWebAuthErrors as br, InteractiveAuthorizationControllerCompleteWebAuthResponses as bs, InteractiveAuthorizationControllerInteractiveAuthorizationData as bt, InteractiveAuthorizationControllerInteractiveAuthorizationError as bu, InteractiveAuthorizationControllerInteractiveAuthorizationErrors as bv, InteractiveAuthorizationControllerInteractiveAuthorizationResponse as bw, InteractiveAuthorizationControllerInteractiveAuthorizationResponses as bx, InteractiveAuthorizationErrorResponseDto as by, InteractiveAuthorizationRequestDto as bz, AppControllerMainResponses as c, RegistrarControllerGetConfigResponse as c$, OfferResponse as c0, Oid4VciControllerCredentialData as c1, Oid4VciControllerCredentialResponse as c2, Oid4VciControllerCredentialResponses as c3, Oid4VciControllerDeferredCredentialData as c4, Oid4VciControllerDeferredCredentialResponses as c5, Oid4VciControllerNonceData as c6, Oid4VciControllerNonceResponses as c7, Oid4VciControllerNotificationsData as c8, Oid4VciControllerNotificationsResponses as c9, PresentationManagementControllerDeleteConfigurationResponses as cA, PresentationManagementControllerGetConfigurationData as cB, PresentationManagementControllerGetConfigurationResponse as cC, PresentationManagementControllerGetConfigurationResponses as cD, PresentationManagementControllerStorePresentationConfigData as cE, PresentationManagementControllerStorePresentationConfigResponse as cF, PresentationManagementControllerStorePresentationConfigResponses as cG, PresentationManagementControllerUpdateConfigurationData as cH, PresentationManagementControllerUpdateConfigurationResponse as cI, PresentationManagementControllerUpdateConfigurationResponses as cJ, PresentationRequest as cK, PrometheusControllerIndexData as cL, PrometheusControllerIndexResponses as cM, RegistrarConfigEntity as cN, RegistrarControllerCreateAccessCertificateData as cO, RegistrarControllerCreateAccessCertificateErrors as cP, RegistrarControllerCreateAccessCertificateResponse as cQ, RegistrarControllerCreateAccessCertificateResponses as cR, RegistrarControllerCreateConfigData as cS, RegistrarControllerCreateConfigErrors as cT, RegistrarControllerCreateConfigResponse as cU, RegistrarControllerCreateConfigResponses as cV, RegistrarControllerDeleteConfigData as cW, RegistrarControllerDeleteConfigResponse as cX, RegistrarControllerDeleteConfigResponses as cY, RegistrarControllerGetConfigData as cZ, RegistrarControllerGetConfigErrors as c_, Oid4VciMetadataControllerVctData as ca, Oid4VciMetadataControllerVctResponse as cb, Oid4VciMetadataControllerVctResponses as cc, Oid4VpControllerGetPostRequestWithSessionData as cd, Oid4VpControllerGetPostRequestWithSessionResponse as ce, Oid4VpControllerGetPostRequestWithSessionResponses as cf, Oid4VpControllerGetRequestNoRedirectWithSessionData as cg, Oid4VpControllerGetRequestNoRedirectWithSessionResponse as ch, Oid4VpControllerGetRequestNoRedirectWithSessionResponses as ci, Oid4VpControllerGetRequestWithSessionData as cj, Oid4VpControllerGetRequestWithSessionResponse as ck, Oid4VpControllerGetRequestWithSessionResponses as cl, Oid4VpControllerGetResponseData as cm, Oid4VpControllerGetResponseResponse as cn, Oid4VpControllerGetResponseResponses as co, ParResponseDto as cp, PolicyCredential as cq, PresentationAttachment as cr, PresentationConfig as cs, PresentationConfigCreateDto as ct, PresentationConfigUpdateDto as cu, PresentationDuringIssuanceConfig as cv, PresentationManagementControllerConfigurationData as cw, PresentationManagementControllerConfigurationResponse as cx, PresentationManagementControllerConfigurationResponses as cy, PresentationManagementControllerDeleteConfigurationData as cz, AttestationBasedPolicy as d, StatusUpdateDto as d$, RegistrarControllerGetConfigResponses as d0, RegistrarControllerUpdateConfigData as d1, RegistrarControllerUpdateConfigErrors as d2, RegistrarControllerUpdateConfigResponse as d3, RegistrarControllerUpdateConfigResponses as d4, RegistrationCertificateRequest as d5, RoleDto as d6, RootOfTrustPolicy as d7, SchemaResponse as d8, SessionConfigControllerGetConfigData as d9, StatusListConfigControllerResetConfigResponses as dA, StatusListConfigControllerUpdateConfigData as dB, StatusListConfigControllerUpdateConfigResponse as dC, StatusListConfigControllerUpdateConfigResponses as dD, StatusListControllerGetListData as dE, StatusListControllerGetListResponse as dF, StatusListControllerGetListResponses as dG, StatusListControllerGetStatusListAggregationData as dH, StatusListControllerGetStatusListAggregationResponse as dI, StatusListControllerGetStatusListAggregationResponses as dJ, StatusListImportDto as dK, StatusListManagementControllerCreateListData as dL, StatusListManagementControllerCreateListResponse as dM, StatusListManagementControllerCreateListResponses as dN, StatusListManagementControllerDeleteListData as dO, StatusListManagementControllerDeleteListResponse as dP, StatusListManagementControllerDeleteListResponses as dQ, StatusListManagementControllerGetListData as dR, StatusListManagementControllerGetListResponse as dS, StatusListManagementControllerGetListResponses as dT, StatusListManagementControllerGetListsData as dU, StatusListManagementControllerGetListsResponse as dV, StatusListManagementControllerGetListsResponses as dW, StatusListManagementControllerUpdateListData as dX, StatusListManagementControllerUpdateListResponse as dY, StatusListManagementControllerUpdateListResponses as dZ, StatusListResponseDto as d_, SessionConfigControllerGetConfigResponse as da, SessionConfigControllerGetConfigResponses as db, SessionConfigControllerResetConfigData as dc, SessionConfigControllerResetConfigResponses as dd, SessionConfigControllerUpdateConfigData as de, SessionConfigControllerUpdateConfigResponse as df, SessionConfigControllerUpdateConfigResponses as dg, SessionControllerDeleteSessionData as dh, SessionControllerDeleteSessionResponses as di, SessionControllerGetAllSessionsData as dj, SessionControllerGetAllSessionsResponse as dk, SessionControllerGetAllSessionsResponses as dl, SessionControllerGetSessionData as dm, SessionControllerGetSessionResponse as dn, SessionControllerGetSessionResponses as dp, SessionControllerRevokeAllData as dq, SessionControllerRevokeAllResponses as dr, SessionStorageConfig as ds, StatusListAggregationDto as dt, StatusListConfig as du, StatusListConfigControllerGetConfigData as dv, StatusListConfigControllerGetConfigResponse as dw, StatusListConfigControllerGetConfigResponses as dx, StatusListConfigControllerResetConfigData as dy, StatusListConfigControllerResetConfigResponse as dz, AuthControllerGetGlobalJwksData as e, WebHookAuthConfigHeader as e$, StorageControllerDownloadData as e0, StorageControllerDownloadResponses as e1, StorageControllerUploadData as e2, StorageControllerUploadResponse as e3, StorageControllerUploadResponses as e4, TenantControllerDeleteTenantData as e5, TenantControllerDeleteTenantResponses as e6, TenantControllerGetTenantData as e7, TenantControllerGetTenantResponse as e8, TenantControllerGetTenantResponses as e9, TrustListControllerGetTrustListResponses as eA, TrustListControllerGetTrustListVersionData as eB, TrustListControllerGetTrustListVersionResponse as eC, TrustListControllerGetTrustListVersionResponses as eD, TrustListControllerGetTrustListVersionsData as eE, TrustListControllerGetTrustListVersionsResponse as eF, TrustListControllerGetTrustListVersionsResponses as eG, TrustListControllerUpdateTrustListData as eH, TrustListControllerUpdateTrustListResponse as eI, TrustListControllerUpdateTrustListResponses as eJ, TrustListCreateDto as eK, TrustListPublicControllerGetTrustListJwtData as eL, TrustListPublicControllerGetTrustListJwtResponse as eM, TrustListPublicControllerGetTrustListJwtResponses as eN, TrustListVersion as eO, TrustedAuthorityQuery as eP, UpdateClientDto as eQ, UpdateKeyDto as eR, UpdateRegistrarConfigDto as eS, UpdateSessionConfigDto as eT, UpdateStatusListConfigDto as eU, UpdateStatusListDto as eV, UpdateTenantDto as eW, Vct as eX, VerifierOfferControllerGetOfferData as eY, VerifierOfferControllerGetOfferResponse as eZ, VerifierOfferControllerGetOfferResponses as e_, TenantControllerGetTenantsData as ea, TenantControllerGetTenantsResponse as eb, TenantControllerGetTenantsResponses as ec, TenantControllerInitTenantData as ed, TenantControllerInitTenantResponse as ee, TenantControllerInitTenantResponses as ef, TenantControllerUpdateTenantData as eg, TenantControllerUpdateTenantResponse as eh, TenantControllerUpdateTenantResponses as ei, TenantEntity as ej, TokenResponse as ek, TransactionData as el, TrustList as em, TrustListControllerCreateTrustListData as en, TrustListControllerCreateTrustListResponse as eo, TrustListControllerCreateTrustListResponses as ep, TrustListControllerDeleteTrustListData as eq, TrustListControllerDeleteTrustListResponses as er, TrustListControllerExportTrustListData as es, TrustListControllerExportTrustListResponse as et, TrustListControllerExportTrustListResponses as eu, TrustListControllerGetAllTrustListsData as ev, TrustListControllerGetAllTrustListsResponse as ew, TrustListControllerGetAllTrustListsResponses as ex, TrustListControllerGetTrustListData as ey, TrustListControllerGetTrustListResponse as ez, AuthControllerGetGlobalJwksResponses as f, WebHookAuthConfigNone as f0, WebhookConfig as f1, WellKnownControllerAuthzMetadata0Data as f2, WellKnownControllerAuthzMetadata0Responses as f3, WellKnownControllerAuthzMetadata1Data as f4, WellKnownControllerAuthzMetadata1Responses as f5, WellKnownControllerGetJwks0Data as f6, WellKnownControllerGetJwks0Response as f7, WellKnownControllerGetJwks0Responses as f8, WellKnownControllerGetJwks1Data as f9, WellKnownControllerGetJwks1Response as fa, WellKnownControllerGetJwks1Responses as fb, WellKnownControllerIssuerMetadata0Data as fc, WellKnownControllerIssuerMetadata0Response as fd, WellKnownControllerIssuerMetadata0Responses as fe, WellKnownControllerIssuerMetadata1Data as ff, WellKnownControllerIssuerMetadata1Response as fg, WellKnownControllerIssuerMetadata1Responses as fh, AuthControllerGetOAuth2TokenData as g, AuthControllerGetOAuth2TokenErrors as h, AuthControllerGetOAuth2TokenResponse as i, AuthControllerGetOAuth2TokenResponses as j, AuthControllerGetOidcDiscoveryData as k, AuthControllerGetOidcDiscoveryResponses as l, AuthenticationMethodAuth as m, AuthenticationMethodNone as n, AuthenticationMethodPresentation as o, AuthenticationUrlConfig as p, AuthorizationResponse as q, AuthorizeControllerAuthorizationChallengeEndpointData as r, AuthorizeControllerAuthorizationChallengeEndpointResponses as s, AuthorizeControllerAuthorizeData as t, AuthorizeControllerAuthorizeResponses as u, AuthorizeControllerParData as v, AuthorizeControllerParResponse as w, AuthorizeControllerParResponses as x, AuthorizeControllerTokenData as y, AuthorizeControllerTokenResponse as z };