@eudiplo/sdk-core 1.15.2 → 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.
@@ -1,5 +1,3 @@
1
- import { a as Client, b as ClientOptions$1, C as Config } from './types.gen-CIiveH8G.mjs';
2
-
3
1
  type ClientOptions = {
4
2
  baseUrl: string;
5
3
  };
@@ -7,7 +5,7 @@ type RoleDto = {
7
5
  /**
8
6
  * OAuth2 roles
9
7
  */
10
- role: "presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage";
8
+ role: "presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage";
11
9
  };
12
10
  type ClientCredentialsDto = {
13
11
  grant_type?: string;
@@ -93,6 +91,14 @@ type TenantEntity = {
93
91
  clients: Array<ClientEntity>;
94
92
  };
95
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>;
96
102
  /**
97
103
  * The unique identifier for the client.
98
104
  */
@@ -112,7 +118,7 @@ type ClientEntity = {
112
118
  /**
113
119
  * The roles assigned to the client.
114
120
  */
115
- roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
121
+ roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
116
122
  /**
117
123
  * The tenant that the client belongs to.
118
124
  */
@@ -127,7 +133,7 @@ type CreateTenantDto = {
127
133
  * Session storage configuration. Controls TTL and cleanup behavior.
128
134
  */
129
135
  sessionConfig?: SessionStorageConfig;
130
- roles?: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
136
+ roles?: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
131
137
  /**
132
138
  * The unique identifier for the tenant.
133
139
  */
@@ -158,12 +164,20 @@ type UpdateTenantDto = {
158
164
  * The description of the tenant.
159
165
  */
160
166
  description?: string;
161
- roles?: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
167
+ roles?: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
162
168
  };
163
169
  type ClientSecretResponseDto = {
164
170
  secret: string;
165
171
  };
166
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>;
167
181
  /**
168
182
  * The description of the client.
169
183
  */
@@ -171,9 +185,17 @@ type UpdateClientDto = {
171
185
  /**
172
186
  * The roles assigned to the client.
173
187
  */
174
- roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
188
+ roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
175
189
  };
176
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>;
177
199
  /**
178
200
  * The unique identifier for the client.
179
201
  */
@@ -189,7 +211,7 @@ type CreateClientDto = {
189
211
  /**
190
212
  * The roles assigned to the client.
191
213
  */
192
- roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
214
+ roles: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
193
215
  };
194
216
  type CertUsageEntity = {
195
217
  tenantId: string;
@@ -257,9 +279,9 @@ type CertEntity = {
257
279
  */
258
280
  tenant: TenantEntity;
259
281
  /**
260
- * Certificate in PEM format.
282
+ * Certificate chain in PEM format (leaf first, then intermediates/CA).
261
283
  */
262
- crt: string;
284
+ crt: Array<string>;
263
285
  usages: Array<CertUsageEntity>;
264
286
  /**
265
287
  * Description of the key.
@@ -318,9 +340,10 @@ type CertImportDto = {
318
340
  */
319
341
  certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
320
342
  /**
321
- * 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.
322
345
  */
323
- crt?: string;
346
+ crt?: Array<string>;
324
347
  /**
325
348
  * Subject name (CN) for self-signed certificate generation.
326
349
  * If not provided, the tenant name will be used.
@@ -528,7 +551,7 @@ type OfferRequestDto = {
528
551
  /**
529
552
  * The type of response expected for the offer request.
530
553
  */
531
- response_type: "qrcode" | "uri" | "dc-api";
554
+ response_type: "uri" | "dc-api";
532
555
  /**
533
556
  * Credential claims configuration per credential. Keys must match credentialConfigurationIds.
534
557
  */
@@ -557,11 +580,19 @@ type OfferRequestDto = {
557
580
  * List of credential configuration ids to be included in the offer.
558
581
  */
559
582
  credentialConfigurationIds: Array<string>;
583
+ /**
584
+ * Optional authorization server to be used for this issuance flow.
585
+ */
586
+ authorization_server?: string;
560
587
  /**
561
588
  * Webhook to notify about the status of the issuance process.
562
589
  */
563
590
  notifyWebhook?: WebhookConfig;
564
591
  };
592
+ type TransactionData = {
593
+ type: string;
594
+ credential_ids: Array<string>;
595
+ };
565
596
  type Session = {
566
597
  /**
567
598
  * Status of the session.
@@ -663,6 +694,11 @@ type Session = {
663
694
  * Where to send the claims webhook response.
664
695
  */
665
696
  parsedWebhook?: WebhookConfig;
697
+ /**
698
+ * Transaction data to include in the OID4VP authorization request.
699
+ * Can be overridden per-request from the presentation configuration.
700
+ */
701
+ transaction_data?: Array<TransactionData>;
666
702
  };
667
703
  type StatusUpdateDto = {
668
704
  /**
@@ -745,6 +781,18 @@ type IssuanceConfig = {
745
781
  * Indicates whether DPoP is required for the issuance process. Default value is true.
746
782
  */
747
783
  dPopRequired?: boolean;
784
+ /**
785
+ * Indicates whether wallet attestation is required for the token endpoint.
786
+ * When enabled, wallets must provide OAuth-Client-Attestation headers.
787
+ * Default value is false.
788
+ */
789
+ walletAttestationRequired?: boolean;
790
+ /**
791
+ * URLs of trust lists containing trusted wallet providers.
792
+ * The wallet attestation's X.509 certificate will be validated against these trust lists.
793
+ * If empty and walletAttestationRequired is true, all wallet providers are rejected.
794
+ */
795
+ walletProviderTrustLists?: Array<string>;
748
796
  display: Array<DisplayInfo>;
749
797
  /**
750
798
  * The timestamp when the VP request was created.
@@ -769,6 +817,18 @@ type IssuanceDto = {
769
817
  * Indicates whether DPoP is required for the issuance process. Default value is true.
770
818
  */
771
819
  dPopRequired?: boolean;
820
+ /**
821
+ * Indicates whether wallet attestation is required for the token endpoint.
822
+ * When enabled, wallets must provide OAuth-Client-Attestation headers.
823
+ * Default value is false.
824
+ */
825
+ walletAttestationRequired?: boolean;
826
+ /**
827
+ * URLs of trust lists containing trusted wallet providers.
828
+ * The wallet attestation's X.509 certificate will be validated against these trust lists.
829
+ * If empty and walletAttestationRequired is true, all wallet providers are rejected.
830
+ */
831
+ walletProviderTrustLists?: Array<string>;
772
832
  display: Array<DisplayInfo>;
773
833
  };
774
834
  type ClaimsQuery = {
@@ -828,6 +888,42 @@ type Vct = {
828
888
  schema_uri?: string;
829
889
  "schema_uri#integrity"?: string;
830
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
+ };
831
927
  type EmbeddedDisclosurePolicy = {
832
928
  policy: string;
833
929
  };
@@ -844,7 +940,7 @@ type Display = {
844
940
  logo?: DisplayImage;
845
941
  };
846
942
  type IssuerMetadataCredentialConfig = {
847
- format: string;
943
+ format: "mso_mdoc" | "dc+sd-jwt";
848
944
  display: Array<Display>;
849
945
  scope?: string;
850
946
  /**
@@ -887,6 +983,10 @@ type CredentialConfig = {
887
983
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
888
984
  */
889
985
  vct?: string | Vct;
986
+ /**
987
+ * List of IAE actions to execute before credential issuance
988
+ */
989
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
890
990
  /**
891
991
  * Embedded disclosure policy (discriminated union by `policy`).
892
992
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -915,8 +1015,14 @@ type CredentialConfig = {
915
1015
  [key: string]: unknown;
916
1016
  };
917
1017
  keyBinding?: boolean;
1018
+ /**
1019
+ * Reference to the certificate used for signing.
1020
+ * Note: No DB-level FK constraint because CertEntity has a composite PK
1021
+ * (id + tenantId) and SET NULL behavior cannot work when tenantId is
1022
+ * part of this entity's own PK.
1023
+ */
918
1024
  certId?: string;
919
- cert: CertEntity;
1025
+ cert?: CertEntity;
920
1026
  statusManagement?: boolean;
921
1027
  lifeTime?: number;
922
1028
  schema?: SchemaResponse;
@@ -926,6 +1032,10 @@ type CredentialConfigCreate = {
926
1032
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
927
1033
  */
928
1034
  vct?: string | Vct;
1035
+ /**
1036
+ * List of IAE actions to execute before credential issuance
1037
+ */
1038
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
929
1039
  /**
930
1040
  * Embedded disclosure policy (discriminated union by `policy`).
931
1041
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -950,6 +1060,12 @@ type CredentialConfigCreate = {
950
1060
  [key: string]: unknown;
951
1061
  };
952
1062
  keyBinding?: boolean;
1063
+ /**
1064
+ * Reference to the certificate used for signing.
1065
+ * Note: No DB-level FK constraint because CertEntity has a composite PK
1066
+ * (id + tenantId) and SET NULL behavior cannot work when tenantId is
1067
+ * part of this entity's own PK.
1068
+ */
953
1069
  certId?: string;
954
1070
  statusManagement?: boolean;
955
1071
  lifeTime?: number;
@@ -960,6 +1076,10 @@ type CredentialConfigUpdate = {
960
1076
  * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
961
1077
  */
962
1078
  vct?: string | Vct;
1079
+ /**
1080
+ * List of IAE actions to execute before credential issuance
1081
+ */
1082
+ iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
963
1083
  /**
964
1084
  * Embedded disclosure policy (discriminated union by `policy`).
965
1085
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -984,11 +1104,23 @@ type CredentialConfigUpdate = {
984
1104
  [key: string]: unknown;
985
1105
  };
986
1106
  keyBinding?: boolean;
1107
+ /**
1108
+ * Reference to the certificate used for signing.
1109
+ * Note: No DB-level FK constraint because CertEntity has a composite PK
1110
+ * (id + tenantId) and SET NULL behavior cannot work when tenantId is
1111
+ * part of this entity's own PK.
1112
+ */
987
1113
  certId?: string;
988
1114
  statusManagement?: boolean;
989
1115
  lifeTime?: number;
990
1116
  schema?: SchemaResponse;
991
1117
  };
1118
+ type DeferredCredentialRequestDto = {
1119
+ /**
1120
+ * The transaction identifier previously returned by the Credential Endpoint
1121
+ */
1122
+ transaction_id: string;
1123
+ };
992
1124
  type NotificationRequestDto = {
993
1125
  notification_id: string;
994
1126
  event: {
@@ -1005,10 +1137,107 @@ type ParResponseDto = {
1005
1137
  */
1006
1138
  expires_in: number;
1007
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
+ };
1008
1224
  type OfferResponse = {
1009
1225
  uri: string;
1226
+ /**
1227
+ * URI for cross-device flows (no redirect after completion)
1228
+ */
1229
+ crossDeviceUri?: string;
1010
1230
  session: string;
1011
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
+ };
1012
1241
  type EcPublic = {
1013
1242
  /**
1014
1243
  * The key type, which is always 'EC' for Elliptic Curve keys.
@@ -1043,6 +1272,98 @@ type AuthorizationResponse = {
1043
1272
  */
1044
1273
  sendResponse?: boolean;
1045
1274
  };
1275
+ type RegistrarConfigEntity = {
1276
+ /**
1277
+ * The base URL of the registrar API
1278
+ */
1279
+ registrarUrl: string;
1280
+ /**
1281
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1282
+ */
1283
+ oidcUrl: string;
1284
+ /**
1285
+ * The OIDC client ID for the registrar
1286
+ */
1287
+ clientId: string;
1288
+ /**
1289
+ * The OIDC client secret (optional, for confidential clients)
1290
+ */
1291
+ clientSecret?: string;
1292
+ /**
1293
+ * The username for OIDC login
1294
+ */
1295
+ username: string;
1296
+ /**
1297
+ * The password for OIDC login (stored in plaintext)
1298
+ */
1299
+ password: string;
1300
+ /**
1301
+ * The tenant ID this configuration belongs to.
1302
+ */
1303
+ tenantId: string;
1304
+ /**
1305
+ * The tenant that owns this configuration.
1306
+ */
1307
+ tenant: TenantEntity;
1308
+ };
1309
+ type CreateRegistrarConfigDto = {
1310
+ /**
1311
+ * The base URL of the registrar API
1312
+ */
1313
+ registrarUrl: string;
1314
+ /**
1315
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1316
+ */
1317
+ oidcUrl: string;
1318
+ /**
1319
+ * The OIDC client ID for the registrar
1320
+ */
1321
+ clientId: string;
1322
+ /**
1323
+ * The OIDC client secret (optional, for confidential clients)
1324
+ */
1325
+ clientSecret?: string;
1326
+ /**
1327
+ * The username for OIDC login
1328
+ */
1329
+ username: string;
1330
+ /**
1331
+ * The password for OIDC login (stored in plaintext)
1332
+ */
1333
+ password: string;
1334
+ };
1335
+ type UpdateRegistrarConfigDto = {
1336
+ /**
1337
+ * The base URL of the registrar API
1338
+ */
1339
+ registrarUrl?: string;
1340
+ /**
1341
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1342
+ */
1343
+ oidcUrl?: string;
1344
+ /**
1345
+ * The OIDC client ID for the registrar
1346
+ */
1347
+ clientId?: string;
1348
+ /**
1349
+ * The OIDC client secret (optional, for confidential clients)
1350
+ */
1351
+ clientSecret?: string;
1352
+ /**
1353
+ * The username for OIDC login
1354
+ */
1355
+ username?: string;
1356
+ /**
1357
+ * The password for OIDC login (stored in plaintext)
1358
+ */
1359
+ password?: string;
1360
+ };
1361
+ type CreateAccessCertificateDto = {
1362
+ /**
1363
+ * The ID of the key to create an access certificate for
1364
+ */
1365
+ keyId: string;
1366
+ };
1046
1367
  type Dcql = {
1047
1368
  credentials: Array<CredentialQuery>;
1048
1369
  credential_sets?: Array<CredentialSetQuery>;
@@ -1081,6 +1402,7 @@ type PresentationConfig = {
1081
1402
  * The DCQL query to be used for the VP request.
1082
1403
  */
1083
1404
  dcql_query: Dcql;
1405
+ transaction_data?: Array<TransactionData>;
1084
1406
  /**
1085
1407
  * The registration certificate request containing the necessary details.
1086
1408
  */
@@ -1134,6 +1456,7 @@ type PresentationConfigCreateDto = {
1134
1456
  * The DCQL query to be used for the VP request.
1135
1457
  */
1136
1458
  dcql_query: Dcql;
1459
+ transaction_data?: Array<TransactionData>;
1137
1460
  /**
1138
1461
  * The registration certificate request containing the necessary details.
1139
1462
  */
@@ -1179,6 +1502,7 @@ type PresentationConfigUpdateDto = {
1179
1502
  * The DCQL query to be used for the VP request.
1180
1503
  */
1181
1504
  dcql_query?: Dcql;
1505
+ transaction_data?: Array<TransactionData>;
1182
1506
  /**
1183
1507
  * The registration certificate request containing the necessary details.
1184
1508
  */
@@ -1208,14 +1532,11 @@ type PresentationConfigUpdateDto = {
1208
1532
  accessCertId?: string;
1209
1533
  };
1210
1534
  type TrustListCreateDto = {
1535
+ id?: string;
1211
1536
  certId?: string;
1212
1537
  entities: Array<{
1213
1538
  [key: string]: unknown;
1214
1539
  }>;
1215
- /**
1216
- * Unique identifier for the trust list
1217
- */
1218
- id: string;
1219
1540
  description?: string;
1220
1541
  /**
1221
1542
  * The full trust list JSON (generated LoTE structure)
@@ -1295,7 +1616,7 @@ type PresentationRequest = {
1295
1616
  /**
1296
1617
  * The type of response expected from the presentation request.
1297
1618
  */
1298
- response_type: "qrcode" | "uri" | "dc-api";
1619
+ response_type: "uri" | "dc-api";
1299
1620
  /**
1300
1621
  * Identifier of the presentation configuration
1301
1622
  */
@@ -1310,6 +1631,11 @@ type PresentationRequest = {
1310
1631
  * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
1311
1632
  */
1312
1633
  redirectUri?: string;
1634
+ /**
1635
+ * Optional transaction data to include in the OID4VP request.
1636
+ * If provided, this will override the transaction_data from the presentation configuration.
1637
+ */
1638
+ transaction_data?: Array<TransactionData>;
1313
1639
  };
1314
1640
  type FileUploadDto = {
1315
1641
  file: Blob | File;
@@ -1453,8 +1779,11 @@ type TenantControllerInitTenantData = {
1453
1779
  url: "/tenant";
1454
1780
  };
1455
1781
  type TenantControllerInitTenantResponses = {
1456
- 201: unknown;
1782
+ 201: {
1783
+ [key: string]: unknown;
1784
+ };
1457
1785
  };
1786
+ type TenantControllerInitTenantResponse = TenantControllerInitTenantResponses[keyof TenantControllerInitTenantResponses];
1458
1787
  type TenantControllerDeleteTenantData = {
1459
1788
  body?: never;
1460
1789
  path: {
@@ -1559,6 +1888,18 @@ type ClientControllerGetClientSecretResponses = {
1559
1888
  200: ClientSecretResponseDto;
1560
1889
  };
1561
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];
1562
1903
  type KeyControllerGetKeysData = {
1563
1904
  body?: never;
1564
1905
  path?: never;
@@ -2000,6 +2341,20 @@ type Oid4VciControllerCredentialData = {
2000
2341
  url: "/{tenantId}/vci/credential";
2001
2342
  };
2002
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 = {
2003
2358
  200: unknown;
2004
2359
  };
2005
2360
  type Oid4VciControllerNotificationsData = {
@@ -2086,6 +2441,55 @@ type AuthorizeControllerAuthorizationChallengeEndpointData = {
2086
2441
  type AuthorizeControllerAuthorizationChallengeEndpointResponses = {
2087
2442
  201: unknown;
2088
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
+ };
2089
2493
  type CredentialOfferControllerGetOfferData = {
2090
2494
  body: OfferRequestDto;
2091
2495
  path?: never;
@@ -2099,6 +2503,48 @@ type CredentialOfferControllerGetOfferResponses = {
2099
2503
  201: OfferResponse;
2100
2504
  };
2101
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];
2102
2548
  type Oid4VciMetadataControllerVctData = {
2103
2549
  body?: never;
2104
2550
  path: {
@@ -2210,6 +2656,18 @@ type Oid4VpControllerGetPostRequestWithSessionResponses = {
2210
2656
  201: string;
2211
2657
  };
2212
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];
2213
2671
  type Oid4VpControllerGetResponseData = {
2214
2672
  body: AuthorizationResponse;
2215
2673
  path: {
@@ -2224,6 +2682,112 @@ type Oid4VpControllerGetResponseResponses = {
2224
2682
  };
2225
2683
  };
2226
2684
  type Oid4VpControllerGetResponseResponse = Oid4VpControllerGetResponseResponses[keyof Oid4VpControllerGetResponseResponses];
2685
+ type RegistrarControllerDeleteConfigData = {
2686
+ body?: never;
2687
+ path?: never;
2688
+ query?: never;
2689
+ url: "/registrar/config";
2690
+ };
2691
+ type RegistrarControllerDeleteConfigResponses = {
2692
+ /**
2693
+ * Configuration deleted successfully
2694
+ */
2695
+ 204: void;
2696
+ };
2697
+ type RegistrarControllerDeleteConfigResponse = RegistrarControllerDeleteConfigResponses[keyof RegistrarControllerDeleteConfigResponses];
2698
+ type RegistrarControllerGetConfigData = {
2699
+ body?: never;
2700
+ path?: never;
2701
+ query?: never;
2702
+ url: "/registrar/config";
2703
+ };
2704
+ type RegistrarControllerGetConfigErrors = {
2705
+ /**
2706
+ * No registrar configuration found
2707
+ */
2708
+ 404: unknown;
2709
+ };
2710
+ type RegistrarControllerGetConfigResponses = {
2711
+ /**
2712
+ * The registrar configuration
2713
+ */
2714
+ 200: RegistrarConfigEntity;
2715
+ };
2716
+ type RegistrarControllerGetConfigResponse = RegistrarControllerGetConfigResponses[keyof RegistrarControllerGetConfigResponses];
2717
+ type RegistrarControllerUpdateConfigData = {
2718
+ body: UpdateRegistrarConfigDto;
2719
+ path?: never;
2720
+ query?: never;
2721
+ url: "/registrar/config";
2722
+ };
2723
+ type RegistrarControllerUpdateConfigErrors = {
2724
+ /**
2725
+ * Invalid credentials
2726
+ */
2727
+ 400: unknown;
2728
+ /**
2729
+ * No registrar configuration found
2730
+ */
2731
+ 404: unknown;
2732
+ };
2733
+ type RegistrarControllerUpdateConfigResponses = {
2734
+ /**
2735
+ * Configuration updated successfully
2736
+ */
2737
+ 200: RegistrarConfigEntity;
2738
+ };
2739
+ type RegistrarControllerUpdateConfigResponse = RegistrarControllerUpdateConfigResponses[keyof RegistrarControllerUpdateConfigResponses];
2740
+ type RegistrarControllerCreateConfigData = {
2741
+ body: CreateRegistrarConfigDto;
2742
+ path?: never;
2743
+ query?: never;
2744
+ url: "/registrar/config";
2745
+ };
2746
+ type RegistrarControllerCreateConfigErrors = {
2747
+ /**
2748
+ * Invalid credentials
2749
+ */
2750
+ 400: unknown;
2751
+ };
2752
+ type RegistrarControllerCreateConfigResponses = {
2753
+ /**
2754
+ * Configuration created successfully
2755
+ */
2756
+ 201: RegistrarConfigEntity;
2757
+ };
2758
+ type RegistrarControllerCreateConfigResponse = RegistrarControllerCreateConfigResponses[keyof RegistrarControllerCreateConfigResponses];
2759
+ type RegistrarControllerCreateAccessCertificateData = {
2760
+ body: CreateAccessCertificateDto;
2761
+ path?: never;
2762
+ query?: never;
2763
+ url: "/registrar/access-certificate";
2764
+ };
2765
+ type RegistrarControllerCreateAccessCertificateErrors = {
2766
+ /**
2767
+ * No relying party found at registrar or failed to create certificate
2768
+ */
2769
+ 400: unknown;
2770
+ /**
2771
+ * No registrar configuration found or key not found
2772
+ */
2773
+ 404: unknown;
2774
+ };
2775
+ type RegistrarControllerCreateAccessCertificateResponses = {
2776
+ /**
2777
+ * Access certificate created successfully
2778
+ */
2779
+ 201: {
2780
+ /**
2781
+ * The certificate ID at the registrar
2782
+ */
2783
+ id?: string;
2784
+ /**
2785
+ * The certificate in PEM format
2786
+ */
2787
+ crt?: string;
2788
+ };
2789
+ };
2790
+ type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
2227
2791
  type PresentationManagementControllerConfigurationData = {
2228
2792
  body?: never;
2229
2793
  path?: never;
@@ -2283,6 +2847,57 @@ type PresentationManagementControllerUpdateConfigurationResponses = {
2283
2847
  };
2284
2848
  };
2285
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];
2286
2901
  type TrustListControllerGetAllTrustListsData = {
2287
2902
  body?: never;
2288
2903
  path?: never;
@@ -2428,15 +3043,4 @@ type StorageControllerDownloadResponses = {
2428
3043
  200: unknown;
2429
3044
  };
2430
3045
 
2431
- /**
2432
- * The `createClientConfig()` function will be called on client initialization
2433
- * and the returned object will become the client's initial configuration.
2434
- *
2435
- * You may want to initialize your client this way instead of calling
2436
- * `setConfig()`. This is useful for example if you're using Next.js
2437
- * to ensure your client always has the correct values.
2438
- */
2439
- type CreateClientConfig<T extends ClientOptions$1 = ClientOptions> = (override?: Config<ClientOptions$1 & T>) => Config<Required<ClientOptions$1> & T>;
2440
- declare const client: Client;
2441
-
2442
- export { type ClientControllerCreateClientData as $, type AllowListPolicy as A, type AuthorizeControllerTokenResponses as B, type AuthorizeQueries as C, type CertControllerAddCertificateData as D, type CertControllerAddCertificateResponse as E, type CertControllerAddCertificateResponses as F, type CertControllerDeleteCertificateData as G, type CertControllerDeleteCertificateResponses as H, type CertControllerExportConfigData as I, type CertControllerExportConfigResponse as J, type CertControllerExportConfigResponses as K, type CertControllerGetCertificateData as L, type CertControllerGetCertificateResponse as M, type CertControllerGetCertificateResponses as N, type CertControllerGetCertificatesData as O, type CertControllerGetCertificatesResponse as P, type CertControllerGetCertificatesResponses as Q, type CertControllerUpdateCertificateData as R, type Session as S, type CertControllerUpdateCertificateResponses as T, type CertEntity as U, type CertImportDto as V, type CertResponseDto as W, type CertUpdateDto as X, type CertUsageEntity as Y, type Claim as Z, type ClaimsQuery as _, type ApiKeyConfig as a, type IssuanceConfigControllerStoreIssuanceConfigurationData as a$, type ClientControllerCreateClientResponse as a0, type ClientControllerCreateClientResponses as a1, type ClientControllerDeleteClientData as a2, type ClientControllerDeleteClientResponses as a3, type ClientControllerGetClientData as a4, type ClientControllerGetClientResponse as a5, type ClientControllerGetClientResponses as a6, type ClientControllerGetClientSecretData as a7, type ClientControllerGetClientSecretResponse as a8, type ClientControllerGetClientSecretResponses as a9, type CredentialConfigControllerUpdateCredentialConfigurationResponse as aA, type CredentialConfigControllerUpdateCredentialConfigurationResponses as aB, type CredentialConfigCreate as aC, type CredentialConfigUpdate as aD, type CredentialOfferControllerGetOfferData as aE, type CredentialOfferControllerGetOfferResponse as aF, type CredentialOfferControllerGetOfferResponses as aG, type CredentialQuery as aH, type CredentialSetQuery as aI, type Dcql as aJ, type Display as aK, type DisplayImage as aL, type DisplayInfo as aM, type DisplayLogo as aN, type EcPublic as aO, type EmbeddedDisclosurePolicy as aP, type FileUploadDto as aQ, type HealthControllerCheckData as aR, type HealthControllerCheckError as aS, type HealthControllerCheckErrors as aT, type HealthControllerCheckResponse as aU, type HealthControllerCheckResponses as aV, type ImportTenantDto as aW, type IssuanceConfig as aX, type IssuanceConfigControllerGetIssuanceConfigurationsData as aY, type IssuanceConfigControllerGetIssuanceConfigurationsResponse as aZ, type IssuanceConfigControllerGetIssuanceConfigurationsResponses as a_, type ClientControllerGetClientsData as aa, type ClientControllerGetClientsResponse as ab, type ClientControllerGetClientsResponses as ac, type ClientControllerUpdateClientData as ad, type ClientControllerUpdateClientResponse as ae, type ClientControllerUpdateClientResponses as af, type ClientCredentialsDto as ag, type ClientEntity as ah, type ClientOptions as ai, type ClientSecretResponseDto as aj, type CreateClientDto as ak, type CreateStatusListDto as al, type CreateTenantDto as am, type CredentialConfig as an, type CredentialConfigControllerDeleteIssuanceConfigurationData as ao, type CredentialConfigControllerDeleteIssuanceConfigurationResponses as ap, type CredentialConfigControllerGetConfigByIdData as aq, type CredentialConfigControllerGetConfigByIdResponse as ar, type CredentialConfigControllerGetConfigByIdResponses as as, type CredentialConfigControllerGetConfigsData as at, type CredentialConfigControllerGetConfigsResponse as au, type CredentialConfigControllerGetConfigsResponses as av, type CredentialConfigControllerStoreCredentialConfigurationData as aw, type CredentialConfigControllerStoreCredentialConfigurationResponse as ax, type CredentialConfigControllerStoreCredentialConfigurationResponses as ay, type CredentialConfigControllerUpdateCredentialConfigurationData as az, type AppControllerMainData as b, type PresentationRequest as b$, type IssuanceConfigControllerStoreIssuanceConfigurationResponse as b0, type IssuanceConfigControllerStoreIssuanceConfigurationResponses as b1, type IssuanceDto as b2, type IssuerMetadataCredentialConfig as b3, type JwksResponseDto as b4, type Key as b5, type KeyControllerAddKeyData as b6, type KeyControllerAddKeyResponses as b7, type KeyControllerDeleteKeyData as b8, type KeyControllerDeleteKeyResponses as b9, type Oid4VpControllerGetRequestWithSessionData as bA, type Oid4VpControllerGetRequestWithSessionResponse as bB, type Oid4VpControllerGetRequestWithSessionResponses as bC, type Oid4VpControllerGetResponseData as bD, type Oid4VpControllerGetResponseResponse as bE, type Oid4VpControllerGetResponseResponses as bF, type ParResponseDto as bG, type PolicyCredential as bH, type PresentationAttachment as bI, type PresentationConfig as bJ, type PresentationConfigCreateDto as bK, type PresentationConfigUpdateDto as bL, type PresentationDuringIssuanceConfig as bM, type PresentationManagementControllerConfigurationData as bN, type PresentationManagementControllerConfigurationResponse as bO, type PresentationManagementControllerConfigurationResponses as bP, type PresentationManagementControllerDeleteConfigurationData as bQ, type PresentationManagementControllerDeleteConfigurationResponses as bR, type PresentationManagementControllerGetConfigurationData as bS, type PresentationManagementControllerGetConfigurationResponse as bT, type PresentationManagementControllerGetConfigurationResponses as bU, type PresentationManagementControllerStorePresentationConfigData as bV, type PresentationManagementControllerStorePresentationConfigResponse as bW, type PresentationManagementControllerStorePresentationConfigResponses as bX, type PresentationManagementControllerUpdateConfigurationData as bY, type PresentationManagementControllerUpdateConfigurationResponse as bZ, type PresentationManagementControllerUpdateConfigurationResponses as b_, type KeyControllerGetKeyData as ba, type KeyControllerGetKeyResponse as bb, type KeyControllerGetKeyResponses as bc, type KeyControllerGetKeysData as bd, type KeyControllerGetKeysResponse as be, type KeyControllerGetKeysResponses as bf, type KeyControllerUpdateKeyData as bg, type KeyControllerUpdateKeyResponses as bh, type KeyEntity as bi, type KeyImportDto as bj, type NoneTrustPolicy as bk, type NotificationRequestDto as bl, type OfferRequestDto as bm, type OfferResponse as bn, type Oid4VciControllerCredentialData as bo, type Oid4VciControllerCredentialResponses as bp, type Oid4VciControllerNonceData as bq, type Oid4VciControllerNonceResponses as br, type Oid4VciControllerNotificationsData as bs, type Oid4VciControllerNotificationsResponses as bt, type Oid4VciMetadataControllerVctData as bu, type Oid4VciMetadataControllerVctResponse as bv, type Oid4VciMetadataControllerVctResponses as bw, type Oid4VpControllerGetPostRequestWithSessionData as bx, type Oid4VpControllerGetPostRequestWithSessionResponse as by, type Oid4VpControllerGetPostRequestWithSessionResponses as bz, type AppControllerMainResponses as c, type StorageControllerUploadResponse as c$, type PrometheusControllerIndexData as c0, type PrometheusControllerIndexResponses as c1, type RegistrationCertificateRequest as c2, type RoleDto as c3, type RootOfTrustPolicy as c4, type SchemaResponse as c5, type SessionConfigControllerGetConfigData as c6, type SessionConfigControllerGetConfigResponse as c7, type SessionConfigControllerGetConfigResponses as c8, type SessionConfigControllerResetConfigData as c9, type StatusListControllerGetListData as cA, type StatusListControllerGetListResponse as cB, type StatusListControllerGetListResponses as cC, type StatusListControllerGetStatusListAggregationData as cD, type StatusListControllerGetStatusListAggregationResponse as cE, type StatusListControllerGetStatusListAggregationResponses as cF, type StatusListImportDto as cG, type StatusListManagementControllerCreateListData as cH, type StatusListManagementControllerCreateListResponse as cI, type StatusListManagementControllerCreateListResponses as cJ, type StatusListManagementControllerDeleteListData as cK, type StatusListManagementControllerDeleteListResponse as cL, type StatusListManagementControllerDeleteListResponses as cM, type StatusListManagementControllerGetListData as cN, type StatusListManagementControllerGetListResponse as cO, type StatusListManagementControllerGetListResponses as cP, type StatusListManagementControllerGetListsData as cQ, type StatusListManagementControllerGetListsResponse as cR, type StatusListManagementControllerGetListsResponses as cS, type StatusListManagementControllerUpdateListData as cT, type StatusListManagementControllerUpdateListResponse as cU, type StatusListManagementControllerUpdateListResponses as cV, type StatusListResponseDto as cW, type StatusUpdateDto as cX, type StorageControllerDownloadData as cY, type StorageControllerDownloadResponses as cZ, type StorageControllerUploadData as c_, type SessionConfigControllerResetConfigResponses as ca, type SessionConfigControllerUpdateConfigData as cb, type SessionConfigControllerUpdateConfigResponse as cc, type SessionConfigControllerUpdateConfigResponses as cd, type SessionControllerDeleteSessionData as ce, type SessionControllerDeleteSessionResponses as cf, type SessionControllerGetAllSessionsData as cg, type SessionControllerGetAllSessionsResponse as ch, type SessionControllerGetAllSessionsResponses as ci, type SessionControllerGetSessionData as cj, type SessionControllerGetSessionResponse as ck, type SessionControllerGetSessionResponses as cl, type SessionControllerRevokeAllData as cm, type SessionControllerRevokeAllResponses as cn, type SessionStorageConfig as co, type StatusListAggregationDto as cp, type StatusListConfig as cq, type StatusListConfigControllerGetConfigData as cr, type StatusListConfigControllerGetConfigResponse as cs, type StatusListConfigControllerGetConfigResponses as ct, type StatusListConfigControllerResetConfigData as cu, type StatusListConfigControllerResetConfigResponse as cv, type StatusListConfigControllerResetConfigResponses as cw, type StatusListConfigControllerUpdateConfigData as cx, type StatusListConfigControllerUpdateConfigResponse as cy, type StatusListConfigControllerUpdateConfigResponses as cz, type AttestationBasedPolicy as d, type WellKnownControllerAuthzMetadata1Responses as d$, type StorageControllerUploadResponses as d0, type TenantControllerDeleteTenantData as d1, type TenantControllerDeleteTenantResponses as d2, type TenantControllerGetTenantData as d3, type TenantControllerGetTenantResponse as d4, type TenantControllerGetTenantResponses as d5, type TenantControllerGetTenantsData as d6, type TenantControllerGetTenantsResponse as d7, type TenantControllerGetTenantsResponses as d8, type TenantControllerInitTenantData as d9, type TrustListControllerGetTrustListVersionsResponse as dA, type TrustListControllerGetTrustListVersionsResponses as dB, type TrustListControllerUpdateTrustListData as dC, type TrustListControllerUpdateTrustListResponse as dD, type TrustListControllerUpdateTrustListResponses as dE, type TrustListCreateDto as dF, type TrustListPublicControllerGetTrustListJwtData as dG, type TrustListPublicControllerGetTrustListJwtResponse as dH, type TrustListPublicControllerGetTrustListJwtResponses as dI, type TrustListVersion as dJ, type TrustedAuthorityQuery as dK, type UpdateClientDto as dL, type UpdateKeyDto as dM, type UpdateSessionConfigDto as dN, type UpdateStatusListConfigDto as dO, type UpdateStatusListDto as dP, type UpdateTenantDto as dQ, type Vct as dR, type VerifierOfferControllerGetOfferData as dS, type VerifierOfferControllerGetOfferResponse as dT, type VerifierOfferControllerGetOfferResponses as dU, type WebHookAuthConfigHeader as dV, type WebHookAuthConfigNone as dW, type WebhookConfig as dX, type WellKnownControllerAuthzMetadata0Data as dY, type WellKnownControllerAuthzMetadata0Responses as dZ, type WellKnownControllerAuthzMetadata1Data as d_, type TenantControllerInitTenantResponses as da, type TenantControllerUpdateTenantData as db, type TenantControllerUpdateTenantResponse as dc, type TenantControllerUpdateTenantResponses as dd, type TenantEntity as de, type TokenResponse as df, type TrustList as dg, type TrustListControllerCreateTrustListData as dh, type TrustListControllerCreateTrustListResponse as di, type TrustListControllerCreateTrustListResponses as dj, type TrustListControllerDeleteTrustListData as dk, type TrustListControllerDeleteTrustListResponses as dl, type TrustListControllerExportTrustListData as dm, type TrustListControllerExportTrustListResponse as dn, type TrustListControllerExportTrustListResponses as dp, type TrustListControllerGetAllTrustListsData as dq, type TrustListControllerGetAllTrustListsResponse as dr, type TrustListControllerGetAllTrustListsResponses as ds, type TrustListControllerGetTrustListData as dt, type TrustListControllerGetTrustListResponse as du, type TrustListControllerGetTrustListResponses as dv, type TrustListControllerGetTrustListVersionData as dw, type TrustListControllerGetTrustListVersionResponse as dx, type TrustListControllerGetTrustListVersionResponses as dy, type TrustListControllerGetTrustListVersionsData as dz, type AuthControllerGetGlobalJwksData as e, type WellKnownControllerGetJwks0Data as e0, type WellKnownControllerGetJwks0Response as e1, type WellKnownControllerGetJwks0Responses as e2, type WellKnownControllerGetJwks1Data as e3, type WellKnownControllerGetJwks1Response as e4, type WellKnownControllerGetJwks1Responses as e5, type WellKnownControllerIssuerMetadata0Data as e6, type WellKnownControllerIssuerMetadata0Response as e7, type WellKnownControllerIssuerMetadata0Responses as e8, type WellKnownControllerIssuerMetadata1Data as e9, type WellKnownControllerIssuerMetadata1Response as ea, type WellKnownControllerIssuerMetadata1Responses as eb, client as ec, type CreateClientConfig as ed, type AuthControllerGetGlobalJwksResponses as f, type AuthControllerGetOAuth2TokenData as g, type AuthControllerGetOAuth2TokenErrors as h, type AuthControllerGetOAuth2TokenResponse as i, type AuthControllerGetOAuth2TokenResponses as j, type AuthControllerGetOidcDiscoveryData as k, type AuthControllerGetOidcDiscoveryResponses as l, type AuthenticationMethodAuth as m, type AuthenticationMethodNone as n, type AuthenticationMethodPresentation as o, type AuthenticationUrlConfig as p, type AuthorizationResponse as q, type AuthorizeControllerAuthorizationChallengeEndpointData as r, type AuthorizeControllerAuthorizationChallengeEndpointResponses as s, type AuthorizeControllerAuthorizeData as t, type AuthorizeControllerAuthorizeResponses as u, type AuthorizeControllerParData as v, type AuthorizeControllerParResponse as w, type AuthorizeControllerParResponses as x, type AuthorizeControllerTokenData as y, type AuthorizeControllerTokenResponse as z };
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 };