@eudiplo/sdk-core 4.0.0 → 4.2.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,11 +1,31 @@
1
1
  type ClientOptions = {
2
2
  baseUrl: string;
3
3
  };
4
+ type GrafanaConfigDto = {
5
+ /**
6
+ * Base URL of the Grafana instance
7
+ */
8
+ url?: string;
9
+ /**
10
+ * UID of the Tempo data source in Grafana
11
+ */
12
+ tempoUid: string;
13
+ /**
14
+ * UID of the Loki data source in Grafana
15
+ */
16
+ lokiUid: string;
17
+ };
18
+ type FrontendConfigResponseDto = {
19
+ /**
20
+ * Grafana observability configuration
21
+ */
22
+ grafana: GrafanaConfigDto;
23
+ };
4
24
  type RoleDto = {
5
25
  /**
6
26
  * OAuth2 roles
7
27
  */
8
- role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage";
28
+ role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage";
9
29
  };
10
30
  type ClientCredentialsDto = {
11
31
  grant_type?: string;
@@ -118,7 +138,7 @@ type ClientEntity = {
118
138
  /**
119
139
  * The roles assigned to the client.
120
140
  */
121
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
141
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
122
142
  /**
123
143
  * The tenant that the client belongs to.
124
144
  */
@@ -129,11 +149,6 @@ type CreateTenantDto = {
129
149
  * Status list configuration for this tenant. Only affects newly created status lists.
130
150
  */
131
151
  statusListConfig?: StatusListConfig;
132
- /**
133
- * Session storage configuration. Controls TTL and cleanup behavior.
134
- */
135
- sessionConfig?: SessionStorageConfig;
136
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
137
152
  /**
138
153
  * The unique identifier for the tenant.
139
154
  */
@@ -146,16 +161,17 @@ type CreateTenantDto = {
146
161
  * The description of the tenant.
147
162
  */
148
163
  description?: string;
164
+ /**
165
+ * Session storage configuration. Controls TTL and cleanup behavior.
166
+ */
167
+ sessionConfig?: SessionStorageConfig;
168
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
149
169
  };
150
170
  type UpdateTenantDto = {
151
171
  /**
152
172
  * Status list configuration for this tenant. Only affects newly created status lists.
153
173
  */
154
174
  statusListConfig?: StatusListConfig;
155
- /**
156
- * Session storage configuration. Controls TTL and cleanup behavior.
157
- */
158
- sessionConfig?: SessionStorageConfig;
159
175
  /**
160
176
  * The name of the tenant.
161
177
  */
@@ -164,7 +180,11 @@ type UpdateTenantDto = {
164
180
  * The description of the tenant.
165
181
  */
166
182
  description?: string;
167
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
183
+ /**
184
+ * Session storage configuration. Controls TTL and cleanup behavior.
185
+ */
186
+ sessionConfig?: SessionStorageConfig;
187
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
168
188
  };
169
189
  type ClientSecretResponseDto = {
170
190
  secret: string;
@@ -185,7 +205,7 @@ type UpdateClientDto = {
185
205
  /**
186
206
  * The roles assigned to the client.
187
207
  */
188
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
208
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
189
209
  };
190
210
  type CreateClientDto = {
191
211
  /**
@@ -211,7 +231,7 @@ type CreateClientDto = {
211
231
  /**
212
232
  * The roles assigned to the client.
213
233
  */
214
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
234
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
215
235
  };
216
236
  type StatusListImportDto = {
217
237
  /**
@@ -350,6 +370,14 @@ type AuthorizeQueries = {
350
370
  request_uri?: string;
351
371
  auth_session?: string;
352
372
  state?: string;
373
+ /**
374
+ * RFC 9396 authorization details. When passed via
375
+ * application/x-www-form-urlencoded (PAR) the value is a JSON string; when
376
+ * passed inside a signed request object it can already be an array.
377
+ */
378
+ authorization_details?: {
379
+ [key: string]: unknown;
380
+ };
353
381
  };
354
382
  type OfferRequestDto = {
355
383
  /**
@@ -436,6 +464,10 @@ type WebhookConfig = {
436
464
  * If not provided, no authentication will be used.
437
465
  */
438
466
  auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
467
+ /**
468
+ * List of credential IDs to include raw tokens for (e.g., ['sca_credential'])
469
+ */
470
+ includeRawTokensFor?: Array<string>;
439
471
  /**
440
472
  * The URL to which the webhook will send notifications.
441
473
  */
@@ -479,6 +511,15 @@ type Session = {
479
511
  */
480
512
  tenant: TenantEntity;
481
513
  authorization_code?: string;
514
+ /**
515
+ * Refresh token for the session - used to obtain a new access token.
516
+ */
517
+ refresh_token?: string;
518
+ /**
519
+ * Expiration timestamp for the refresh token.
520
+ * Used to validate refresh_token grant requests.
521
+ */
522
+ refresh_token_expires_at?: string;
482
523
  /**
483
524
  * Request URI from the authorization request.
484
525
  */
@@ -538,6 +579,18 @@ type Session = {
538
579
  * Client ID used in the OID4VP authorization request.
539
580
  */
540
581
  clientId?: string;
582
+ /**
583
+ * Cryptographic random nonce used in wallet-facing URLs (response_uri, request_uri, state).
584
+ * Per OID4VP spec Section 13.3, this separates the wallet-facing identifier (request-id)
585
+ * from the frontend-facing session ID (transaction-id) to prevent session fixation.
586
+ */
587
+ walletNonce?: string;
588
+ /**
589
+ * Cryptographic random code generated after successful VP Token processing.
590
+ * Per OID4VP spec Section 13.3, included in redirect_uri so only the legitimate
591
+ * frontend (which receives the redirect) can confirm the session completed.
592
+ */
593
+ responseCode?: string;
541
594
  /**
542
595
  * Response URI used in the OID4VP authorization request.
543
596
  */
@@ -561,6 +614,17 @@ type Session = {
561
614
  * Used to identify the user at the external AS.
562
615
  */
563
616
  externalSubject?: string;
617
+ /**
618
+ * Error reason if the session failed.
619
+ * Stores the error message when status is 'failed'.
620
+ */
621
+ errorReason?: string;
622
+ /**
623
+ * Number of failed tx_code (transaction code) validation attempts.
624
+ * Used to enforce brute-force protection in the pre-authorized code flow.
625
+ * Reset implicitly when the session is consumed successfully.
626
+ */
627
+ txCodeFailedAttempts: number;
564
628
  };
565
629
  type SessionLogEntryResponseDto = {
566
630
  /**
@@ -620,6 +684,39 @@ type UpdateSessionConfigDto = {
620
684
  */
621
685
  cleanupMode?: "full" | "anonymize";
622
686
  };
687
+ type ManagedUserDto = {
688
+ id: string;
689
+ username: string;
690
+ email?: string;
691
+ enabled: boolean;
692
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
693
+ tenantId?: string;
694
+ /**
695
+ * One-time temporary password returned only on user creation.
696
+ */
697
+ temporaryPassword?: string;
698
+ };
699
+ type CreateUserDto = {
700
+ username: string;
701
+ email?: string;
702
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
703
+ /**
704
+ * One-time temporary password returned only on user creation.
705
+ */
706
+ temporaryPassword?: string;
707
+ enabled?: boolean;
708
+ };
709
+ type UpdateUserDto = {
710
+ username?: string;
711
+ email?: string;
712
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
713
+ /**
714
+ * One-time temporary password returned only on user creation.
715
+ */
716
+ temporaryPassword?: string;
717
+ enabled?: boolean;
718
+ password?: string;
719
+ };
623
720
  type AuthenticationMethodNone = {
624
721
  method: "none";
625
722
  };
@@ -714,6 +811,26 @@ type IssuanceConfig = {
714
811
  * to an upstream OIDC provider while issuing its own tokens with issuer_state.
715
812
  */
716
813
  chainedAs?: ChainedAsConfig;
814
+ /**
815
+ * Whether refresh tokens should be issued for OID4VCI token responses.
816
+ */
817
+ refreshTokenEnabled?: boolean;
818
+ /**
819
+ * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
820
+ */
821
+ credentialResponseEncryption?: boolean;
822
+ /**
823
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
824
+ */
825
+ credentialRequestEncryption?: boolean;
826
+ /**
827
+ * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
828
+ */
829
+ refreshTokenExpiresInSeconds?: number;
830
+ /**
831
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
832
+ */
833
+ txCodeMaxAttempts?: number;
717
834
  /**
718
835
  * The tenant that owns this object.
719
836
  */
@@ -771,6 +888,26 @@ type IssuanceDto = {
771
888
  * to an upstream OIDC provider while issuing its own tokens with issuer_state.
772
889
  */
773
890
  chainedAs?: ChainedAsConfig;
891
+ /**
892
+ * Whether refresh tokens should be issued for OID4VCI token responses.
893
+ */
894
+ refreshTokenEnabled?: boolean;
895
+ /**
896
+ * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
897
+ */
898
+ credentialResponseEncryption?: boolean;
899
+ /**
900
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
901
+ */
902
+ credentialRequestEncryption?: boolean;
903
+ /**
904
+ * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
905
+ */
906
+ refreshTokenExpiresInSeconds?: number;
907
+ /**
908
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
909
+ */
910
+ txCodeMaxAttempts?: number;
774
911
  /**
775
912
  * Authentication server URL for the issuance process.
776
913
  */
@@ -893,9 +1030,31 @@ type IaeActionRedirectToWeb = {
893
1030
  */
894
1031
  description?: string;
895
1032
  };
1033
+ type WebhookEndpointEntity = {
1034
+ /**
1035
+ * Unique identifier for the webhook endpoint
1036
+ */
1037
+ id: string;
1038
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1039
+ tenantId: string;
1040
+ tenant: TenantEntity;
1041
+ name: string;
1042
+ description?: string;
1043
+ url: string;
1044
+ };
896
1045
  type EmbeddedDisclosurePolicy = {
897
1046
  policy: string;
898
1047
  };
1048
+ type KeyAttestationsRequired = {
1049
+ /**
1050
+ * List of required key storage types (e.g., iso_18045_high, iso_18045_moderate)
1051
+ */
1052
+ key_storage?: Array<string>;
1053
+ /**
1054
+ * List of required user authentication types (e.g., iso_18045_high, iso_18045_moderate)
1055
+ */
1056
+ user_authentication?: Array<string>;
1057
+ };
899
1058
  type DisplayImage = {
900
1059
  uri: string;
901
1060
  };
@@ -908,7 +1067,37 @@ type Display = {
908
1067
  background_image?: DisplayImage;
909
1068
  logo?: DisplayImage;
910
1069
  };
1070
+ type ClaimDisplayInfo = {
1071
+ /**
1072
+ * Human-readable name for the claim
1073
+ */
1074
+ name?: string;
1075
+ /**
1076
+ * Locale identifier (e.g., en-US, de-DE)
1077
+ */
1078
+ locale?: string;
1079
+ };
1080
+ type ClaimMetadata = {
1081
+ /**
1082
+ * Path to the claim. For SD-JWT: JSONPath-like array. For mDOC: [namespace, claim_name]
1083
+ */
1084
+ path: Array<string>;
1085
+ /**
1086
+ * Whether this claim must be disclosed
1087
+ */
1088
+ mandatory?: boolean;
1089
+ /**
1090
+ * Display information for the claim in different locales
1091
+ */
1092
+ display?: Array<ClaimDisplayInfo>;
1093
+ };
911
1094
  type IssuerMetadataCredentialConfig = {
1095
+ /**
1096
+ * Key attestation requirements for JWT proofs for this credential.
1097
+ * When set, this is published in proof_types_supported.jwt.key_attestations_required
1098
+ * for this specific credential configuration.
1099
+ */
1100
+ keyAttestationsRequired?: KeyAttestationsRequired;
912
1101
  format: "mso_mdoc" | "dc+sd-jwt";
913
1102
  display: Array<Display>;
914
1103
  scope?: string;
@@ -936,6 +1125,19 @@ type IssuerMetadataCredentialConfig = {
936
1125
  claimsByNamespace?: {
937
1126
  [key: string]: unknown;
938
1127
  };
1128
+ /**
1129
+ * Claims metadata for wallet rendering.
1130
+ * Follows the OID4VCI credential_metadata.claims specification.
1131
+ * Each claim includes a path (JSONPath-like array), optional mandatory flag,
1132
+ * and display information with multi-language support.
1133
+ *
1134
+ * Example:
1135
+ * [
1136
+ * { "path": ["given_name"], "mandatory": false, "display": [{ "name": "Given Name", "locale": "en-US" }] },
1137
+ * { "path": ["address", "street_address"], "display": [{ "name": "Street Address", "locale": "en-US" }] }
1138
+ * ]
1139
+ */
1140
+ claimsMetadata?: Array<ClaimMetadata>;
939
1141
  };
940
1142
  type AttributeProviderEntity = {
941
1143
  auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
@@ -946,15 +1148,6 @@ type AttributeProviderEntity = {
946
1148
  description?: string;
947
1149
  url: string;
948
1150
  };
949
- type WebhookEndpointEntity = {
950
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
951
- id: string;
952
- tenantId: string;
953
- tenant: TenantEntity;
954
- name: string;
955
- description?: string;
956
- url: string;
957
- };
958
1151
  type KeyChainEntity = {
959
1152
  /**
960
1153
  * Unique identifier for the key chain.
@@ -1202,15 +1395,21 @@ type UpdateAttributeProviderDto = {
1202
1395
  url?: string;
1203
1396
  };
1204
1397
  type CreateWebhookEndpointDto = {
1205
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1398
+ /**
1399
+ * Unique identifier for the webhook endpoint
1400
+ */
1206
1401
  id: string;
1402
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1207
1403
  name: string;
1208
1404
  description?: string;
1209
1405
  url: string;
1210
1406
  };
1211
1407
  type UpdateWebhookEndpointDto = {
1212
- auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1408
+ /**
1409
+ * Unique identifier for the webhook endpoint
1410
+ */
1213
1411
  id?: string;
1412
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1214
1413
  name?: string;
1215
1414
  description?: string;
1216
1415
  url?: string;
@@ -1219,11 +1418,38 @@ type Dcql = {
1219
1418
  credentials: Array<CredentialQuery>;
1220
1419
  credential_sets?: Array<CredentialSetQuery>;
1221
1420
  };
1421
+ type RegistrationCertificatePurpose = {
1422
+ lang: string;
1423
+ content: string;
1424
+ };
1425
+ type RegistrationCertificateBody = {
1426
+ privacy_policy?: string;
1427
+ support_uri?: string;
1428
+ intermediary?: string;
1429
+ purpose?: Array<RegistrationCertificatePurpose>;
1430
+ credentials?: Array<{
1431
+ [key: string]: unknown;
1432
+ }>;
1433
+ provided_attestations?: Array<{
1434
+ [key: string]: unknown;
1435
+ }>;
1436
+ };
1222
1437
  type RegistrationCertificateRequest = {
1223
1438
  /**
1224
- * The body of the registration certificate request containing the necessary details.
1439
+ * Optional registrar-side certificate identifier.
1440
+ * If provided and still valid, EUDIPLO reuses it instead of creating a new certificate.
1225
1441
  */
1226
- jwt: string;
1442
+ id?: string;
1443
+ /**
1444
+ * Registration certificate creation payload.
1445
+ * This is merged with tenant-level registrar defaults when a certificate is created.
1446
+ */
1447
+ body?: RegistrationCertificateBody;
1448
+ /**
1449
+ * Optional pre-existing registration certificate JWT.
1450
+ * If provided, EUDIPLO forwards it as-is and does not create a new one.
1451
+ */
1452
+ jwt?: string;
1227
1453
  };
1228
1454
  type PresentationAttachment = {
1229
1455
  format: string;
@@ -1233,6 +1459,12 @@ type PresentationAttachment = {
1233
1459
  credential_ids?: Array<string>;
1234
1460
  };
1235
1461
  type PresentationConfig = {
1462
+ /**
1463
+ * Server-managed cache of the materialized registration certificate. Read-only; values supplied by clients are ignored.
1464
+ */
1465
+ readonly registrationCertCache?: {
1466
+ [key: string]: unknown;
1467
+ };
1236
1468
  /**
1237
1469
  * Unique identifier for the VP request.
1238
1470
  */
@@ -1290,6 +1522,12 @@ type PresentationConfig = {
1290
1522
  */
1291
1523
  accessKeyChainId?: string;
1292
1524
  };
1525
+ type ResolveIssuerMetadataDto = {
1526
+ /**
1527
+ * Issuer URL or full OpenID4VCI metadata URL to resolve server-side.
1528
+ */
1529
+ issuerUrl: string;
1530
+ };
1293
1531
  type PresentationConfigCreateDto = {
1294
1532
  /**
1295
1533
  * Unique identifier for the VP request.
@@ -1382,6 +1620,112 @@ type PresentationConfigUpdateDto = {
1382
1620
  */
1383
1621
  accessKeyChainId?: string;
1384
1622
  };
1623
+ type RegistrationCertificateDefaults = {
1624
+ /**
1625
+ * Default privacy policy URL for registration certificate creation.
1626
+ */
1627
+ privacy_policy?: string;
1628
+ /**
1629
+ * Default support contact URI for registration certificate creation.
1630
+ */
1631
+ support_uri?: string;
1632
+ };
1633
+ type RegistrarConfigResponseDto = {
1634
+ /**
1635
+ * The base URL of the registrar API
1636
+ */
1637
+ registrarUrl: string;
1638
+ /**
1639
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1640
+ */
1641
+ oidcUrl: string;
1642
+ /**
1643
+ * The OIDC client ID for the registrar
1644
+ */
1645
+ clientId: string;
1646
+ /**
1647
+ * The OIDC client secret (optional, for confidential clients)
1648
+ */
1649
+ clientSecret?: string;
1650
+ /**
1651
+ * The username for OIDC login
1652
+ */
1653
+ username: string;
1654
+ /**
1655
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1656
+ */
1657
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1658
+ /**
1659
+ * Indicates whether a password is configured (actual password is never returned)
1660
+ */
1661
+ hasPassword: boolean;
1662
+ };
1663
+ type CreateRegistrarConfigDto = {
1664
+ /**
1665
+ * The base URL of the registrar API
1666
+ */
1667
+ registrarUrl: string;
1668
+ /**
1669
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1670
+ */
1671
+ oidcUrl: string;
1672
+ /**
1673
+ * The OIDC client ID for the registrar
1674
+ */
1675
+ clientId: string;
1676
+ /**
1677
+ * The OIDC client secret (optional, for confidential clients)
1678
+ */
1679
+ clientSecret?: string;
1680
+ /**
1681
+ * The username for OIDC login
1682
+ */
1683
+ username: string;
1684
+ /**
1685
+ * The password for OIDC login (stored in plaintext)
1686
+ */
1687
+ password: string;
1688
+ /**
1689
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1690
+ */
1691
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1692
+ };
1693
+ type UpdateRegistrarConfigDto = {
1694
+ /**
1695
+ * The base URL of the registrar API
1696
+ */
1697
+ registrarUrl?: string;
1698
+ /**
1699
+ * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1700
+ */
1701
+ oidcUrl?: string;
1702
+ /**
1703
+ * The OIDC client ID for the registrar
1704
+ */
1705
+ clientId?: string;
1706
+ /**
1707
+ * The OIDC client secret (optional, for confidential clients)
1708
+ */
1709
+ clientSecret?: string;
1710
+ /**
1711
+ * The username for OIDC login
1712
+ */
1713
+ username?: string;
1714
+ /**
1715
+ * The password for OIDC login (stored in plaintext)
1716
+ */
1717
+ password?: string;
1718
+ /**
1719
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1720
+ */
1721
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1722
+ };
1723
+ type CreateAccessCertificateDto = {
1724
+ /**
1725
+ * The ID of the key to create an access certificate for
1726
+ */
1727
+ keyId: string;
1728
+ };
1385
1729
  type DeferredCredentialRequestDto = {
1386
1730
  /**
1387
1731
  * The transaction identifier previously returned by the Credential Endpoint
@@ -1394,6 +1738,9 @@ type NotificationRequestDto = {
1394
1738
  [key: string]: unknown;
1395
1739
  };
1396
1740
  };
1741
+ type Object$1 = {
1742
+ [key: string]: unknown;
1743
+ };
1397
1744
  type ParResponseDto = {
1398
1745
  /**
1399
1746
  * The request URI for the Pushed Authorization Request.
@@ -1488,46 +1835,6 @@ type InteractiveAuthorizationErrorResponseDto = {
1488
1835
  */
1489
1836
  error_description?: string;
1490
1837
  };
1491
- type ChainedAsParRequestDto = {
1492
- /**
1493
- * OAuth response type (must be 'code')
1494
- */
1495
- response_type: string;
1496
- /**
1497
- * Client identifier (wallet identifier)
1498
- */
1499
- client_id: string;
1500
- /**
1501
- * URI to redirect the wallet after authorization
1502
- */
1503
- redirect_uri: string;
1504
- /**
1505
- * PKCE code challenge
1506
- */
1507
- code_challenge?: string;
1508
- /**
1509
- * PKCE code challenge method (e.g., S256)
1510
- */
1511
- code_challenge_method?: string;
1512
- /**
1513
- * State parameter (returned in redirect)
1514
- */
1515
- state?: string;
1516
- /**
1517
- * Scope requested
1518
- */
1519
- scope?: string;
1520
- /**
1521
- * Issuer state from credential offer
1522
- */
1523
- issuer_state?: string;
1524
- /**
1525
- * Authorization details (JSON array)
1526
- */
1527
- authorization_details?: Array<{
1528
- [key: string]: unknown;
1529
- }>;
1530
- };
1531
1838
  type ChainedAsParResponseDto = {
1532
1839
  /**
1533
1840
  * The request URI to use at the authorization endpoint
@@ -1550,13 +1857,17 @@ type ChainedAsErrorResponseDto = {
1550
1857
  };
1551
1858
  type ChainedAsTokenRequestDto = {
1552
1859
  /**
1553
- * Grant type (must be 'authorization_code')
1860
+ * Grant type ('authorization_code' or 'refresh_token')
1554
1861
  */
1555
1862
  grant_type: string;
1556
1863
  /**
1557
- * Authorization code received in the callback
1864
+ * Authorization code received in the callback (authorization_code grant)
1558
1865
  */
1559
- code: string;
1866
+ code?: string;
1867
+ /**
1868
+ * Refresh token (refresh_token grant)
1869
+ */
1870
+ refresh_token?: string;
1560
1871
  /**
1561
1872
  * Client identifier
1562
1873
  */
@@ -1601,6 +1912,10 @@ type ChainedAsTokenResponseDto = {
1601
1912
  * C_NONCE lifetime in seconds
1602
1913
  */
1603
1914
  c_nonce_expires_in?: number;
1915
+ /**
1916
+ * Refresh token (issued when refresh tokens are enabled)
1917
+ */
1918
+ refresh_token?: string;
1604
1919
  };
1605
1920
  type OfferResponse = {
1606
1921
  uri: string;
@@ -1664,105 +1979,27 @@ type JwksResponseDto = {
1664
1979
  };
1665
1980
  type AuthorizationResponse = {
1666
1981
  /**
1667
- * The response string containing the authorization details.
1982
+ * The response string containing the authorization details (JWE-encrypted VP token).
1983
+ * Required for success responses, absent for error responses.
1668
1984
  */
1669
- response: string;
1985
+ response?: string;
1670
1986
  /**
1671
1987
  * When set to true, the authorization response will be sent to the client.
1672
1988
  */
1673
1989
  sendResponse?: boolean;
1674
- };
1675
- type RegistrarConfigEntity = {
1676
- /**
1677
- * The base URL of the registrar API
1678
- */
1679
- registrarUrl: string;
1680
- /**
1681
- * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1682
- */
1683
- oidcUrl: string;
1684
- /**
1685
- * The OIDC client ID for the registrar
1686
- */
1687
- clientId: string;
1688
- /**
1689
- * The OIDC client secret (optional, for confidential clients)
1690
- */
1691
- clientSecret?: string;
1692
- /**
1693
- * The username for OIDC login
1694
- */
1695
- username: string;
1696
- /**
1697
- * The password for OIDC login (stored in plaintext)
1698
- */
1699
- password: string;
1700
- /**
1701
- * The tenant ID this configuration belongs to.
1702
- */
1703
- tenantId: string;
1704
- /**
1705
- * The tenant that owns this configuration.
1706
- */
1707
- tenant: TenantEntity;
1708
- };
1709
- type CreateRegistrarConfigDto = {
1710
- /**
1711
- * The base URL of the registrar API
1712
- */
1713
- registrarUrl: string;
1714
- /**
1715
- * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1716
- */
1717
- oidcUrl: string;
1718
- /**
1719
- * The OIDC client ID for the registrar
1720
- */
1721
- clientId: string;
1722
- /**
1723
- * The OIDC client secret (optional, for confidential clients)
1724
- */
1725
- clientSecret?: string;
1726
- /**
1727
- * The username for OIDC login
1728
- */
1729
- username: string;
1730
- /**
1731
- * The password for OIDC login (stored in plaintext)
1732
- */
1733
- password: string;
1734
- };
1735
- type UpdateRegistrarConfigDto = {
1736
- /**
1737
- * The base URL of the registrar API
1738
- */
1739
- registrarUrl?: string;
1740
- /**
1741
- * The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
1742
- */
1743
- oidcUrl?: string;
1744
- /**
1745
- * The OIDC client ID for the registrar
1746
- */
1747
- clientId?: string;
1748
- /**
1749
- * The OIDC client secret (optional, for confidential clients)
1750
- */
1751
- clientSecret?: string;
1990
+ error?: string;
1752
1991
  /**
1753
- * The username for OIDC login
1992
+ * Human-readable description of the error.
1754
1993
  */
1755
- username?: string;
1994
+ error_description?: string;
1756
1995
  /**
1757
- * The password for OIDC login (stored in plaintext)
1996
+ * URI with additional information about the error.
1758
1997
  */
1759
- password?: string;
1760
- };
1761
- type CreateAccessCertificateDto = {
1998
+ error_uri?: string;
1762
1999
  /**
1763
- * The ID of the key to create an access certificate for
2000
+ * State value from the authorization request (for correlation).
1764
2001
  */
1765
- keyId: string;
2002
+ state?: string;
1766
2003
  };
1767
2004
  type TrustListEntityInfo = {
1768
2005
  name: string;
@@ -1787,20 +2024,20 @@ type ExternalTrustListEntity = {
1787
2024
  info: TrustListEntityInfo;
1788
2025
  };
1789
2026
  type TrustListCreateDto = {
1790
- entities: Array<({
1791
- type: "internal";
1792
- } & InternalTrustListEntity) | ({
1793
- type: "external";
1794
- } & ExternalTrustListEntity)>;
1795
- id?: string;
1796
2027
  description?: string;
1797
- keyChainId?: string;
1798
2028
  /**
1799
2029
  * The full trust list JSON (generated LoTE structure)
1800
2030
  */
1801
2031
  data?: {
1802
2032
  [key: string]: unknown;
1803
2033
  };
2034
+ entities: Array<({
2035
+ type: "internal";
2036
+ } & InternalTrustListEntity) | ({
2037
+ type: "external";
2038
+ } & ExternalTrustListEntity)>;
2039
+ id?: string;
2040
+ keyChainId?: string;
1804
2041
  };
1805
2042
  type TrustList = {
1806
2043
  /**
@@ -2250,6 +2487,67 @@ type PresentationRequest = {
2250
2487
  type FileUploadDto = {
2251
2488
  file: Blob | File;
2252
2489
  };
2490
+ type PresentationConfigWritable = {
2491
+ /**
2492
+ * Unique identifier for the VP request.
2493
+ */
2494
+ id: string;
2495
+ /**
2496
+ * The tenant that owns this object.
2497
+ */
2498
+ tenant: TenantEntity;
2499
+ /**
2500
+ * Description of the presentation configuration.
2501
+ */
2502
+ description?: string;
2503
+ /**
2504
+ * Lifetime how long the presentation request is valid after creation, in seconds.
2505
+ */
2506
+ lifeTime?: number;
2507
+ /**
2508
+ * The DCQL query to be used for the VP request.
2509
+ */
2510
+ dcql_query: Dcql;
2511
+ transaction_data?: Array<TransactionData>;
2512
+ /**
2513
+ * The registration certificate request containing the necessary details.
2514
+ */
2515
+ registrationCert?: RegistrationCertificateRequest;
2516
+ /**
2517
+ * Optional webhook URL to receive the response.
2518
+ */
2519
+ webhook?: WebhookConfig;
2520
+ /**
2521
+ * The timestamp when the VP request was created.
2522
+ */
2523
+ createdAt: string;
2524
+ /**
2525
+ * The timestamp when the VP request was last updated.
2526
+ */
2527
+ updatedAt: string;
2528
+ /**
2529
+ * Attestation that should be attached
2530
+ */
2531
+ attached?: Array<PresentationAttachment>;
2532
+ /**
2533
+ * Redirect URI to which the user-agent should be redirected after the presentation is completed.
2534
+ * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
2535
+ */
2536
+ redirectUri?: string;
2537
+ /**
2538
+ * Optional ID of the access certificate to use for signing the presentation request.
2539
+ * If not provided, the default access certificate for the tenant will be used.
2540
+ *
2541
+ * Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
2542
+ * a composite primary key (id + tenantId), and SQLite cannot create foreign keys
2543
+ * that reference only part of a composite primary key. The relationship is handled
2544
+ * at the application level in the service layer.
2545
+ */
2546
+ accessKeyChainId?: string;
2547
+ };
2548
+ type ObjectWritable = {
2549
+ [key: string]: unknown;
2550
+ };
2253
2551
  type AppControllerGetVersionData = {
2254
2552
  body?: never;
2255
2553
  path?: never;
@@ -2262,6 +2560,19 @@ type AppControllerGetVersionResponses = {
2262
2560
  */
2263
2561
  200: unknown;
2264
2562
  };
2563
+ type AppControllerGetFrontendConfigData = {
2564
+ body?: never;
2565
+ path?: never;
2566
+ query?: never;
2567
+ url: "/api/frontend-config";
2568
+ };
2569
+ type AppControllerGetFrontendConfigResponses = {
2570
+ /**
2571
+ * Frontend configuration
2572
+ */
2573
+ 200: FrontendConfigResponseDto;
2574
+ };
2575
+ type AppControllerGetFrontendConfigResponse = AppControllerGetFrontendConfigResponses[keyof AppControllerGetFrontendConfigResponses];
2265
2576
  type TenantControllerGetTenantsData = {
2266
2577
  body?: never;
2267
2578
  path?: never;
@@ -2636,6 +2947,61 @@ type SessionEventsControllerSubscribeToSessionEventsData = {
2636
2947
  type SessionEventsControllerSubscribeToSessionEventsResponses = {
2637
2948
  200: unknown;
2638
2949
  };
2950
+ type UserControllerGetUsersData = {
2951
+ body?: never;
2952
+ path?: never;
2953
+ query?: never;
2954
+ url: "/api/user";
2955
+ };
2956
+ type UserControllerGetUsersResponses = {
2957
+ 200: Array<ManagedUserDto>;
2958
+ };
2959
+ type UserControllerGetUsersResponse = UserControllerGetUsersResponses[keyof UserControllerGetUsersResponses];
2960
+ type UserControllerCreateUserData = {
2961
+ body: CreateUserDto;
2962
+ path?: never;
2963
+ query?: never;
2964
+ url: "/api/user";
2965
+ };
2966
+ type UserControllerCreateUserResponses = {
2967
+ 201: ManagedUserDto;
2968
+ };
2969
+ type UserControllerCreateUserResponse = UserControllerCreateUserResponses[keyof UserControllerCreateUserResponses];
2970
+ type UserControllerDeleteUserData = {
2971
+ body?: never;
2972
+ path: {
2973
+ id: string;
2974
+ };
2975
+ query?: never;
2976
+ url: "/api/user/{id}";
2977
+ };
2978
+ type UserControllerDeleteUserResponses = {
2979
+ 200: unknown;
2980
+ };
2981
+ type UserControllerGetUserData = {
2982
+ body?: never;
2983
+ path: {
2984
+ id: string;
2985
+ };
2986
+ query?: never;
2987
+ url: "/api/user/{id}";
2988
+ };
2989
+ type UserControllerGetUserResponses = {
2990
+ 200: ManagedUserDto;
2991
+ };
2992
+ type UserControllerGetUserResponse = UserControllerGetUserResponses[keyof UserControllerGetUserResponses];
2993
+ type UserControllerUpdateUserData = {
2994
+ body: UpdateUserDto;
2995
+ path: {
2996
+ id: string;
2997
+ };
2998
+ query?: never;
2999
+ url: "/api/user/{id}";
3000
+ };
3001
+ type UserControllerUpdateUserResponses = {
3002
+ 200: ManagedUserDto;
3003
+ };
3004
+ type UserControllerUpdateUserResponse = UserControllerUpdateUserResponses[keyof UserControllerUpdateUserResponses];
2639
3005
  type IssuanceConfigControllerGetIssuanceConfigurationsData = {
2640
3006
  body?: never;
2641
3007
  path?: never;
@@ -2811,8 +3177,9 @@ type WebhookEndpointControllerGetAllResponses = {
2811
3177
  /**
2812
3178
  * List of webhook endpoints
2813
3179
  */
2814
- 200: unknown;
3180
+ 200: Array<WebhookEndpointEntity>;
2815
3181
  };
3182
+ type WebhookEndpointControllerGetAllResponse = WebhookEndpointControllerGetAllResponses[keyof WebhookEndpointControllerGetAllResponses];
2816
3183
  type WebhookEndpointControllerCreateData = {
2817
3184
  body: CreateWebhookEndpointDto;
2818
3185
  path?: never;
@@ -2902,11 +3269,27 @@ type PresentationManagementControllerStorePresentationConfigData = {
2902
3269
  url: "/api/verifier/config";
2903
3270
  };
2904
3271
  type PresentationManagementControllerStorePresentationConfigResponses = {
2905
- 201: {
2906
- [key: string]: unknown;
2907
- };
3272
+ 201: PresentationConfig;
2908
3273
  };
2909
3274
  type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
3275
+ type PresentationManagementControllerResolveIssuerMetadataData = {
3276
+ body: ResolveIssuerMetadataDto;
3277
+ path?: never;
3278
+ query?: never;
3279
+ url: "/api/verifier/config/issuer-metadata/resolve";
3280
+ };
3281
+ type PresentationManagementControllerResolveIssuerMetadataErrors = {
3282
+ /**
3283
+ * Invalid issuer URL or metadata could not be resolved
3284
+ */
3285
+ 400: unknown;
3286
+ };
3287
+ type PresentationManagementControllerResolveIssuerMetadataResponses = {
3288
+ /**
3289
+ * Resolved credential issuer metadata
3290
+ */
3291
+ 200: unknown;
3292
+ };
2910
3293
  type PresentationManagementControllerDeleteConfigurationData = {
2911
3294
  body?: never;
2912
3295
  path: {
@@ -2939,11 +3322,29 @@ type PresentationManagementControllerUpdateConfigurationData = {
2939
3322
  url: "/api/verifier/config/{id}";
2940
3323
  };
2941
3324
  type PresentationManagementControllerUpdateConfigurationResponses = {
2942
- 200: {
2943
- [key: string]: unknown;
2944
- };
3325
+ 200: PresentationConfig;
2945
3326
  };
2946
3327
  type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
3328
+ type PresentationManagementControllerReissueRegistrationCertificateData = {
3329
+ body?: never;
3330
+ path: {
3331
+ id: string;
3332
+ };
3333
+ query?: never;
3334
+ url: "/api/verifier/config/{id}/registration-cert/reissue";
3335
+ };
3336
+ type PresentationManagementControllerReissueRegistrationCertificateErrors = {
3337
+ /**
3338
+ * Config has no registrationCert spec or registrar is not enabled
3339
+ */
3340
+ 400: unknown;
3341
+ };
3342
+ type PresentationManagementControllerReissueRegistrationCertificateResponses = {
3343
+ /**
3344
+ * Updated presentation configuration
3345
+ */
3346
+ 200: unknown;
3347
+ };
2947
3348
  type CacheControllerGetStatsData = {
2948
3349
  body?: never;
2949
3350
  path?: never;
@@ -2995,61 +3396,6 @@ type CacheControllerClearStatusListCacheResponses = {
2995
3396
  204: void;
2996
3397
  };
2997
3398
  type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
2998
- type CredentialOfferControllerGetOfferData = {
2999
- body: OfferRequestDto;
3000
- path?: never;
3001
- query?: never;
3002
- url: "/api/issuer/offer";
3003
- };
3004
- type CredentialOfferControllerGetOfferResponses = {
3005
- /**
3006
- * JSON response
3007
- */
3008
- 201: OfferResponse;
3009
- };
3010
- type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
3011
- type DeferredControllerCompleteDeferredData = {
3012
- body: CompleteDeferredDto;
3013
- path: {
3014
- transactionId: string;
3015
- };
3016
- query?: never;
3017
- url: "/api/issuer/deferred/{transactionId}/complete";
3018
- };
3019
- type DeferredControllerCompleteDeferredErrors = {
3020
- /**
3021
- * Transaction not found
3022
- */
3023
- 404: unknown;
3024
- };
3025
- type DeferredControllerCompleteDeferredResponses = {
3026
- /**
3027
- * Transaction completed successfully
3028
- */
3029
- 200: DeferredOperationResponse;
3030
- };
3031
- type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
3032
- type DeferredControllerFailDeferredData = {
3033
- body?: FailDeferredDto;
3034
- path: {
3035
- transactionId: string;
3036
- };
3037
- query?: never;
3038
- url: "/api/issuer/deferred/{transactionId}/fail";
3039
- };
3040
- type DeferredControllerFailDeferredErrors = {
3041
- /**
3042
- * Transaction not found
3043
- */
3044
- 404: unknown;
3045
- };
3046
- type DeferredControllerFailDeferredResponses = {
3047
- /**
3048
- * Transaction marked as failed
3049
- */
3050
- 200: DeferredOperationResponse;
3051
- };
3052
- type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
3053
3399
  type RegistrarControllerDeleteConfigData = {
3054
3400
  body?: never;
3055
3401
  path?: never;
@@ -3079,7 +3425,7 @@ type RegistrarControllerGetConfigResponses = {
3079
3425
  /**
3080
3426
  * The registrar configuration
3081
3427
  */
3082
- 200: RegistrarConfigEntity;
3428
+ 200: RegistrarConfigResponseDto;
3083
3429
  };
3084
3430
  type RegistrarControllerGetConfigResponse = RegistrarControllerGetConfigResponses[keyof RegistrarControllerGetConfigResponses];
3085
3431
  type RegistrarControllerUpdateConfigData = {
@@ -3102,7 +3448,7 @@ type RegistrarControllerUpdateConfigResponses = {
3102
3448
  /**
3103
3449
  * Configuration updated successfully
3104
3450
  */
3105
- 200: RegistrarConfigEntity;
3451
+ 200: RegistrarConfigResponseDto;
3106
3452
  };
3107
3453
  type RegistrarControllerUpdateConfigResponse = RegistrarControllerUpdateConfigResponses[keyof RegistrarControllerUpdateConfigResponses];
3108
3454
  type RegistrarControllerCreateConfigData = {
@@ -3121,7 +3467,7 @@ type RegistrarControllerCreateConfigResponses = {
3121
3467
  /**
3122
3468
  * Configuration created successfully
3123
3469
  */
3124
- 201: RegistrarConfigEntity;
3470
+ 201: RegistrarConfigResponseDto;
3125
3471
  };
3126
3472
  type RegistrarControllerCreateConfigResponse = RegistrarControllerCreateConfigResponses[keyof RegistrarControllerCreateConfigResponses];
3127
3473
  type RegistrarControllerCreateAccessCertificateData = {
@@ -3156,6 +3502,61 @@ type RegistrarControllerCreateAccessCertificateResponses = {
3156
3502
  };
3157
3503
  };
3158
3504
  type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
3505
+ type CredentialOfferControllerGetOfferData = {
3506
+ body: OfferRequestDto;
3507
+ path?: never;
3508
+ query?: never;
3509
+ url: "/api/issuer/offer";
3510
+ };
3511
+ type CredentialOfferControllerGetOfferResponses = {
3512
+ /**
3513
+ * JSON response
3514
+ */
3515
+ 201: OfferResponse;
3516
+ };
3517
+ type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
3518
+ type DeferredControllerCompleteDeferredData = {
3519
+ body: CompleteDeferredDto;
3520
+ path: {
3521
+ transactionId: string;
3522
+ };
3523
+ query?: never;
3524
+ url: "/api/issuer/deferred/{transactionId}/complete";
3525
+ };
3526
+ type DeferredControllerCompleteDeferredErrors = {
3527
+ /**
3528
+ * Transaction not found
3529
+ */
3530
+ 404: unknown;
3531
+ };
3532
+ type DeferredControllerCompleteDeferredResponses = {
3533
+ /**
3534
+ * Transaction completed successfully
3535
+ */
3536
+ 200: DeferredOperationResponse;
3537
+ };
3538
+ type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
3539
+ type DeferredControllerFailDeferredData = {
3540
+ body?: FailDeferredDto;
3541
+ path: {
3542
+ transactionId: string;
3543
+ };
3544
+ query?: never;
3545
+ url: "/api/issuer/deferred/{transactionId}/fail";
3546
+ };
3547
+ type DeferredControllerFailDeferredErrors = {
3548
+ /**
3549
+ * Transaction not found
3550
+ */
3551
+ 404: unknown;
3552
+ };
3553
+ type DeferredControllerFailDeferredResponses = {
3554
+ /**
3555
+ * Transaction marked as failed
3556
+ */
3557
+ 200: DeferredOperationResponse;
3558
+ };
3559
+ type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
3159
3560
  type TrustListControllerGetAllTrustListsData = {
3160
3561
  body?: never;
3161
3562
  path?: never;
@@ -3399,7 +3800,6 @@ type KeyChainControllerRotateResponses = {
3399
3800
  * Key chain rotated successfully
3400
3801
  */
3401
3802
  200: unknown;
3402
- 201: unknown;
3403
3803
  };
3404
3804
  type VerifierOfferControllerGetOfferData = {
3405
3805
  body: PresentationRequest;
@@ -3415,9 +3815,6 @@ type VerifierOfferControllerGetOfferResponses = {
3415
3815
  };
3416
3816
  type VerifierOfferControllerGetOfferResponse = VerifierOfferControllerGetOfferResponses[keyof VerifierOfferControllerGetOfferResponses];
3417
3817
  type StorageControllerUploadData = {
3418
- /**
3419
- * List of cats
3420
- */
3421
3818
  body: FileUploadDto;
3422
3819
  path?: never;
3423
3820
  query?: never;
@@ -3430,4 +3827,4 @@ type StorageControllerUploadResponses = {
3430
3827
  };
3431
3828
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
3432
3829
 
3433
- export type { ClientControllerGetClientResponses as $, AllowListPolicy as A, CacheControllerClearStatusListCacheData as B, CacheControllerClearAllCachesData as C, CacheControllerClearStatusListCacheResponse as D, CacheControllerClearStatusListCacheResponses as E, CacheControllerClearTrustListCacheData as F, CacheControllerClearTrustListCacheResponse as G, CacheControllerClearTrustListCacheResponses as H, CacheControllerGetStatsData as I, CacheControllerGetStatsResponses as J, CertificateInfoDto as K, ChainedAsConfig as L, ChainedAsErrorResponseDto as M, ChainedAsParRequestDto as N, ChainedAsParResponseDto as O, ChainedAsTokenConfig as P, ChainedAsTokenRequestDto as Q, ChainedAsTokenResponseDto as R, Session as S, ClaimsQuery as T, ClientControllerCreateClientData as U, ClientControllerCreateClientResponse as V, ClientControllerCreateClientResponses as W, ClientControllerDeleteClientData as X, ClientControllerDeleteClientResponses as Y, ClientControllerGetClientData as Z, ClientControllerGetClientResponse as _, ApiKeyConfig as a, EmbeddedDisclosurePolicy as a$, ClientControllerGetClientSecretData as a0, ClientControllerGetClientSecretResponse as a1, ClientControllerGetClientSecretResponses as a2, ClientControllerGetClientsData as a3, ClientControllerGetClientsResponse as a4, ClientControllerGetClientsResponses as a5, ClientControllerRotateClientSecretData as a6, ClientControllerRotateClientSecretResponse as a7, ClientControllerRotateClientSecretResponses as a8, ClientControllerUpdateClientData as a9, CredentialConfigControllerUpdateCredentialConfigurationData as aA, CredentialConfigControllerUpdateCredentialConfigurationResponse as aB, CredentialConfigControllerUpdateCredentialConfigurationResponses as aC, CredentialConfigCreate as aD, CredentialConfigUpdate as aE, CredentialOfferControllerGetOfferData as aF, CredentialOfferControllerGetOfferResponse as aG, CredentialOfferControllerGetOfferResponses as aH, CredentialQuery as aI, CredentialSetQuery as aJ, Dcql as aK, DeferredControllerCompleteDeferredData as aL, DeferredControllerCompleteDeferredErrors as aM, DeferredControllerCompleteDeferredResponse as aN, DeferredControllerCompleteDeferredResponses as aO, DeferredControllerFailDeferredData as aP, DeferredControllerFailDeferredErrors as aQ, DeferredControllerFailDeferredResponse as aR, DeferredControllerFailDeferredResponses as aS, DeferredCredentialRequestDto as aT, DeferredOperationResponse as aU, Display as aV, DisplayImage as aW, DisplayInfo as aX, DisplayLogo as aY, EcJwk as aZ, EcPublic as a_, ClientControllerUpdateClientResponse as aa, ClientControllerUpdateClientResponses as ab, ClientCredentialsDto as ac, ClientEntity as ad, ClientOptions as ae, ClientSecretResponseDto as af, CompleteDeferredDto as ag, CreateAccessCertificateDto as ah, CreateAttributeProviderDto as ai, CreateClientDto as aj, CreateRegistrarConfigDto as ak, CreateStatusListDto as al, CreateTenantDto as am, CreateWebhookEndpointDto as an, CredentialConfig as ao, CredentialConfigControllerDeleteIssuanceConfigurationData as ap, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aq, CredentialConfigControllerGetConfigByIdData as ar, CredentialConfigControllerGetConfigByIdResponse as as, CredentialConfigControllerGetConfigByIdResponses as at, CredentialConfigControllerGetConfigsData as au, CredentialConfigControllerGetConfigsResponse as av, CredentialConfigControllerGetConfigsResponses as aw, CredentialConfigControllerStoreCredentialConfigurationData as ax, CredentialConfigControllerStoreCredentialConfigurationResponse as ay, CredentialConfigControllerStoreCredentialConfigurationResponses as az, AppControllerGetVersionData as b, PolicyCredential as b$, ExportEcJwk as b0, ExportRotationPolicyDto as b1, ExternalTrustListEntity as b2, FailDeferredDto as b3, FileUploadDto as b4, IaeActionOpenid4VpPresentation as b5, IaeActionRedirectToWeb as b6, ImportTenantDto as b7, InteractiveAuthorizationCodeResponseDto as b8, InteractiveAuthorizationErrorResponseDto as b9, KeyChainControllerGetByIdResponse as bA, KeyChainControllerGetByIdResponses as bB, KeyChainControllerGetProvidersData as bC, KeyChainControllerGetProvidersResponse as bD, KeyChainControllerGetProvidersResponses as bE, KeyChainControllerImportData as bF, KeyChainControllerImportResponses as bG, KeyChainControllerRotateData as bH, KeyChainControllerRotateErrors as bI, KeyChainControllerRotateResponses as bJ, KeyChainControllerUpdateData as bK, KeyChainControllerUpdateErrors as bL, KeyChainControllerUpdateResponses as bM, KeyChainCreateDto as bN, KeyChainEntity as bO, KeyChainExportDto as bP, KeyChainImportDto as bQ, KeyChainResponseDto as bR, KeyChainUpdateDto as bS, KmsProviderCapabilitiesDto as bT, KmsProviderInfoDto as bU, KmsProvidersResponseDto as bV, NoneTrustPolicy as bW, NotificationRequestDto as bX, OfferRequestDto as bY, OfferResponse as bZ, ParResponseDto as b_, InteractiveAuthorizationRequestDto as ba, InternalTrustListEntity as bb, IssuanceConfig as bc, IssuanceConfigControllerGetIssuanceConfigurationsData as bd, IssuanceConfigControllerGetIssuanceConfigurationsResponse as be, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bf, IssuanceConfigControllerStoreIssuanceConfigurationData as bg, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bh, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bi, IssuanceDto as bj, IssuerMetadataCredentialConfig as bk, JwksResponseDto as bl, KeyChainControllerCreateData as bm, KeyChainControllerCreateResponses as bn, KeyChainControllerDeleteData as bo, KeyChainControllerDeleteErrors as bp, KeyChainControllerDeleteResponses as bq, KeyChainControllerExportData as br, KeyChainControllerExportErrors as bs, KeyChainControllerExportResponse as bt, KeyChainControllerExportResponses as bu, KeyChainControllerGetAllData as bv, KeyChainControllerGetAllResponse as bw, KeyChainControllerGetAllResponses as bx, KeyChainControllerGetByIdData as by, KeyChainControllerGetByIdErrors as bz, AppControllerGetVersionResponses as c, SessionControllerGetSessionLogsData as c$, PresentationAttachment as c0, PresentationConfig as c1, PresentationConfigCreateDto as c2, PresentationConfigUpdateDto as c3, PresentationDuringIssuanceConfig as c4, PresentationManagementControllerConfigurationData as c5, PresentationManagementControllerConfigurationResponse as c6, PresentationManagementControllerConfigurationResponses as c7, PresentationManagementControllerDeleteConfigurationData as c8, PresentationManagementControllerDeleteConfigurationResponses as c9, RegistrarControllerGetConfigResponses as cA, RegistrarControllerUpdateConfigData as cB, RegistrarControllerUpdateConfigErrors as cC, RegistrarControllerUpdateConfigResponse as cD, RegistrarControllerUpdateConfigResponses as cE, RegistrationCertificateRequest as cF, RoleDto as cG, RootOfTrustPolicy as cH, RotationPolicyCreateDto as cI, RotationPolicyImportDto as cJ, RotationPolicyResponseDto as cK, RotationPolicyUpdateDto as cL, SchemaResponse as cM, SessionConfigControllerGetConfigData as cN, SessionConfigControllerGetConfigResponse as cO, SessionConfigControllerGetConfigResponses as cP, SessionConfigControllerResetConfigData as cQ, SessionConfigControllerResetConfigResponses as cR, SessionConfigControllerUpdateConfigData as cS, SessionConfigControllerUpdateConfigResponse as cT, SessionConfigControllerUpdateConfigResponses as cU, SessionControllerDeleteSessionData as cV, SessionControllerDeleteSessionResponses as cW, SessionControllerGetAllSessionsData as cX, SessionControllerGetAllSessionsResponse as cY, SessionControllerGetAllSessionsResponses as cZ, SessionControllerGetSessionData as c_, PresentationManagementControllerGetConfigurationData as ca, PresentationManagementControllerGetConfigurationResponse as cb, PresentationManagementControllerGetConfigurationResponses as cc, PresentationManagementControllerStorePresentationConfigData as cd, PresentationManagementControllerStorePresentationConfigResponse as ce, PresentationManagementControllerStorePresentationConfigResponses as cf, PresentationManagementControllerUpdateConfigurationData as cg, PresentationManagementControllerUpdateConfigurationResponse as ch, PresentationManagementControllerUpdateConfigurationResponses as ci, PresentationRequest as cj, PublicKeyInfoDto as ck, RegistrarConfigEntity as cl, RegistrarControllerCreateAccessCertificateData as cm, RegistrarControllerCreateAccessCertificateErrors as cn, RegistrarControllerCreateAccessCertificateResponse as co, RegistrarControllerCreateAccessCertificateResponses as cp, RegistrarControllerCreateConfigData as cq, RegistrarControllerCreateConfigErrors as cr, RegistrarControllerCreateConfigResponse as cs, RegistrarControllerCreateConfigResponses as ct, RegistrarControllerDeleteConfigData as cu, RegistrarControllerDeleteConfigResponse as cv, RegistrarControllerDeleteConfigResponses as cw, RegistrarControllerGetConfigData as cx, RegistrarControllerGetConfigErrors as cy, RegistrarControllerGetConfigResponse as cz, AttestationBasedPolicy as d, TrustListControllerCreateTrustListResponses as d$, SessionControllerGetSessionLogsResponse as d0, SessionControllerGetSessionLogsResponses as d1, SessionControllerGetSessionResponse as d2, SessionControllerGetSessionResponses as d3, SessionControllerRevokeAllData as d4, SessionControllerRevokeAllResponses as d5, SessionEventsControllerSubscribeToSessionEventsData as d6, SessionEventsControllerSubscribeToSessionEventsResponses as d7, SessionLogEntryResponseDto as d8, SessionStorageConfig as d9, StatusListManagementControllerUpdateListResponse as dA, StatusListManagementControllerUpdateListResponses as dB, StatusListResponseDto as dC, StatusUpdateDto as dD, StorageControllerUploadData as dE, StorageControllerUploadResponse as dF, StorageControllerUploadResponses as dG, TenantControllerDeleteTenantData as dH, TenantControllerDeleteTenantResponses as dI, TenantControllerGetTenantData as dJ, TenantControllerGetTenantResponse as dK, TenantControllerGetTenantResponses as dL, TenantControllerGetTenantsData as dM, TenantControllerGetTenantsResponse as dN, TenantControllerGetTenantsResponses as dO, TenantControllerInitTenantData as dP, TenantControllerInitTenantResponse as dQ, TenantControllerInitTenantResponses as dR, TenantControllerUpdateTenantData as dS, TenantControllerUpdateTenantResponse as dT, TenantControllerUpdateTenantResponses as dU, TenantEntity as dV, TokenResponse as dW, TransactionData as dX, TrustList as dY, TrustListControllerCreateTrustListData as dZ, TrustListControllerCreateTrustListResponse as d_, StatusListAggregationDto as da, StatusListConfig as db, StatusListConfigControllerGetConfigData as dc, StatusListConfigControllerGetConfigResponse as dd, StatusListConfigControllerGetConfigResponses as de, StatusListConfigControllerResetConfigData as df, StatusListConfigControllerResetConfigResponse as dg, StatusListConfigControllerResetConfigResponses as dh, StatusListConfigControllerUpdateConfigData as di, StatusListConfigControllerUpdateConfigResponse as dj, StatusListConfigControllerUpdateConfigResponses as dk, StatusListImportDto as dl, StatusListManagementControllerCreateListData as dm, StatusListManagementControllerCreateListResponse as dn, StatusListManagementControllerCreateListResponses as dp, StatusListManagementControllerDeleteListData as dq, StatusListManagementControllerDeleteListResponse as dr, StatusListManagementControllerDeleteListResponses as ds, StatusListManagementControllerGetListData as dt, StatusListManagementControllerGetListResponse as du, StatusListManagementControllerGetListResponses as dv, StatusListManagementControllerGetListsData as dw, StatusListManagementControllerGetListsResponse as dx, StatusListManagementControllerGetListsResponses as dy, StatusListManagementControllerUpdateListData as dz, AttributeProviderControllerCreateData as e, TrustListControllerDeleteTrustListData as e0, TrustListControllerDeleteTrustListResponses as e1, TrustListControllerExportTrustListData as e2, TrustListControllerExportTrustListResponse as e3, TrustListControllerExportTrustListResponses as e4, TrustListControllerGetAllTrustListsData as e5, TrustListControllerGetAllTrustListsResponse as e6, TrustListControllerGetAllTrustListsResponses as e7, TrustListControllerGetTrustListData as e8, TrustListControllerGetTrustListResponse as e9, VerifierOfferControllerGetOfferResponses as eA, WebHookAuthConfigHeader as eB, WebHookAuthConfigNone as eC, WebhookConfig as eD, WebhookEndpointControllerCreateData as eE, WebhookEndpointControllerCreateResponses as eF, WebhookEndpointControllerDeleteData as eG, WebhookEndpointControllerDeleteErrors as eH, WebhookEndpointControllerDeleteResponses as eI, WebhookEndpointControllerGetAllData as eJ, WebhookEndpointControllerGetAllResponses as eK, WebhookEndpointControllerGetByIdData as eL, WebhookEndpointControllerGetByIdErrors as eM, WebhookEndpointControllerGetByIdResponses as eN, WebhookEndpointControllerUpdateData as eO, WebhookEndpointControllerUpdateErrors as eP, WebhookEndpointControllerUpdateResponses as eQ, WebhookEndpointEntity as eR, TrustListControllerGetTrustListResponses as ea, TrustListControllerGetTrustListVersionData as eb, TrustListControllerGetTrustListVersionResponse as ec, TrustListControllerGetTrustListVersionResponses as ed, TrustListControllerGetTrustListVersionsData as ee, TrustListControllerGetTrustListVersionsResponse as ef, TrustListControllerGetTrustListVersionsResponses as eg, TrustListControllerUpdateTrustListData as eh, TrustListControllerUpdateTrustListResponse as ei, TrustListControllerUpdateTrustListResponses as ej, TrustListCreateDto as ek, TrustListEntityInfo as el, TrustListVersion as em, TrustedAuthorityQuery as en, UpdateAttributeProviderDto as eo, UpdateClientDto as ep, UpdateRegistrarConfigDto as eq, UpdateSessionConfigDto as er, UpdateStatusListConfigDto as es, UpdateStatusListDto as et, UpdateTenantDto as eu, UpdateWebhookEndpointDto as ev, UpstreamOidcConfig as ew, Vct as ex, VerifierOfferControllerGetOfferData as ey, VerifierOfferControllerGetOfferResponse as ez, AttributeProviderControllerCreateResponses as f, AttributeProviderControllerDeleteData as g, AttributeProviderControllerDeleteErrors as h, AttributeProviderControllerDeleteResponses as i, AttributeProviderControllerGetAllData as j, AttributeProviderControllerGetAllResponses as k, AttributeProviderControllerGetByIdData as l, AttributeProviderControllerGetByIdErrors as m, AttributeProviderControllerGetByIdResponses as n, AttributeProviderControllerUpdateData as o, AttributeProviderControllerUpdateErrors as p, AttributeProviderControllerUpdateResponses as q, AttributeProviderEntity as r, AuthenticationMethodAuth as s, AuthenticationMethodNone as t, AuthenticationMethodPresentation as u, AuthenticationUrlConfig as v, AuthorizationResponse as w, AuthorizeQueries as x, CacheControllerClearAllCachesResponse as y, CacheControllerClearAllCachesResponses as z };
3830
+ export type { ClientControllerDeleteClientData as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, CacheControllerClearStatusListCacheResponses as H, CacheControllerClearTrustListCacheData as I, CacheControllerClearTrustListCacheResponse as J, CacheControllerClearTrustListCacheResponses as K, CacheControllerGetStatsData as L, CacheControllerGetStatsResponses as M, CertificateInfoDto as N, ChainedAsConfig as O, ChainedAsErrorResponseDto as P, ChainedAsParResponseDto as Q, ChainedAsTokenConfig as R, Session as S, ChainedAsTokenRequestDto as T, ChainedAsTokenResponseDto as U, ClaimDisplayInfo as V, ClaimMetadata as W, ClaimsQuery as X, ClientControllerCreateClientData as Y, ClientControllerCreateClientResponse as Z, ClientControllerCreateClientResponses as _, ApiKeyConfig as a, DisplayImage as a$, ClientControllerDeleteClientResponses as a0, ClientControllerGetClientData as a1, ClientControllerGetClientResponse as a2, ClientControllerGetClientResponses as a3, ClientControllerGetClientSecretData as a4, ClientControllerGetClientSecretResponse as a5, ClientControllerGetClientSecretResponses as a6, ClientControllerGetClientsData as a7, ClientControllerGetClientsResponse as a8, ClientControllerGetClientsResponses as a9, CredentialConfigControllerGetConfigsResponse as aA, CredentialConfigControllerGetConfigsResponses as aB, CredentialConfigControllerStoreCredentialConfigurationData as aC, CredentialConfigControllerStoreCredentialConfigurationResponse as aD, CredentialConfigControllerStoreCredentialConfigurationResponses as aE, CredentialConfigControllerUpdateCredentialConfigurationData as aF, CredentialConfigControllerUpdateCredentialConfigurationResponse as aG, CredentialConfigControllerUpdateCredentialConfigurationResponses as aH, CredentialConfigCreate as aI, CredentialConfigUpdate as aJ, CredentialOfferControllerGetOfferData as aK, CredentialOfferControllerGetOfferResponse as aL, CredentialOfferControllerGetOfferResponses as aM, CredentialQuery as aN, CredentialSetQuery as aO, Dcql as aP, DeferredControllerCompleteDeferredData as aQ, DeferredControllerCompleteDeferredErrors as aR, DeferredControllerCompleteDeferredResponse as aS, DeferredControllerCompleteDeferredResponses as aT, DeferredControllerFailDeferredData as aU, DeferredControllerFailDeferredErrors as aV, DeferredControllerFailDeferredResponse as aW, DeferredControllerFailDeferredResponses as aX, DeferredCredentialRequestDto as aY, DeferredOperationResponse as aZ, Display as a_, ClientControllerRotateClientSecretData as aa, ClientControllerRotateClientSecretResponse as ab, ClientControllerRotateClientSecretResponses as ac, ClientControllerUpdateClientData as ad, ClientControllerUpdateClientResponse as ae, ClientControllerUpdateClientResponses as af, ClientCredentialsDto as ag, ClientEntity as ah, ClientOptions as ai, ClientSecretResponseDto as aj, CompleteDeferredDto as ak, CreateAccessCertificateDto as al, CreateAttributeProviderDto as am, CreateClientDto as an, CreateRegistrarConfigDto as ao, CreateStatusListDto as ap, CreateTenantDto as aq, CreateUserDto as ar, CreateWebhookEndpointDto as as, CredentialConfig as at, CredentialConfigControllerDeleteIssuanceConfigurationData as au, CredentialConfigControllerDeleteIssuanceConfigurationResponses as av, CredentialConfigControllerGetConfigByIdData as aw, CredentialConfigControllerGetConfigByIdResponse as ax, CredentialConfigControllerGetConfigByIdResponses as ay, CredentialConfigControllerGetConfigsData as az, AppControllerGetFrontendConfigData as b, KmsProviderCapabilitiesDto as b$, DisplayInfo as b0, DisplayLogo as b1, EcJwk as b2, EcPublic as b3, EmbeddedDisclosurePolicy as b4, ExportEcJwk as b5, ExportRotationPolicyDto as b6, ExternalTrustListEntity as b7, FailDeferredDto as b8, FileUploadDto as b9, KeyChainControllerExportErrors as bA, KeyChainControllerExportResponse as bB, KeyChainControllerExportResponses as bC, KeyChainControllerGetAllData as bD, KeyChainControllerGetAllResponse as bE, KeyChainControllerGetAllResponses as bF, KeyChainControllerGetByIdData as bG, KeyChainControllerGetByIdErrors as bH, KeyChainControllerGetByIdResponse as bI, KeyChainControllerGetByIdResponses as bJ, KeyChainControllerGetProvidersData as bK, KeyChainControllerGetProvidersResponse as bL, KeyChainControllerGetProvidersResponses as bM, KeyChainControllerImportData as bN, KeyChainControllerImportResponses as bO, KeyChainControllerRotateData as bP, KeyChainControllerRotateErrors as bQ, KeyChainControllerRotateResponses as bR, KeyChainControllerUpdateData as bS, KeyChainControllerUpdateErrors as bT, KeyChainControllerUpdateResponses as bU, KeyChainCreateDto as bV, KeyChainEntity as bW, KeyChainExportDto as bX, KeyChainImportDto as bY, KeyChainResponseDto as bZ, KeyChainUpdateDto as b_, FrontendConfigResponseDto as ba, GrafanaConfigDto as bb, IaeActionOpenid4VpPresentation as bc, IaeActionRedirectToWeb as bd, ImportTenantDto as be, InteractiveAuthorizationCodeResponseDto as bf, InteractiveAuthorizationErrorResponseDto as bg, InteractiveAuthorizationRequestDto as bh, InternalTrustListEntity as bi, IssuanceConfig as bj, IssuanceConfigControllerGetIssuanceConfigurationsData as bk, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bl, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bm, IssuanceConfigControllerStoreIssuanceConfigurationData as bn, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bo, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bp, IssuanceDto as bq, IssuerMetadataCredentialConfig as br, JwksResponseDto as bs, KeyAttestationsRequired as bt, KeyChainControllerCreateData as bu, KeyChainControllerCreateResponses as bv, KeyChainControllerDeleteData as bw, KeyChainControllerDeleteErrors as bx, KeyChainControllerDeleteResponses as by, KeyChainControllerExportData as bz, AppControllerGetFrontendConfigResponse as c, ResolveIssuerMetadataDto as c$, KmsProviderInfoDto as c0, KmsProvidersResponseDto as c1, ManagedUserDto as c2, NoneTrustPolicy as c3, NotificationRequestDto as c4, Object$1 as c5, ObjectWritable as c6, OfferRequestDto as c7, OfferResponse as c8, ParResponseDto as c9, PresentationManagementControllerUpdateConfigurationResponses as cA, PresentationRequest as cB, PublicKeyInfoDto as cC, RegistrarConfigResponseDto as cD, RegistrarControllerCreateAccessCertificateData as cE, RegistrarControllerCreateAccessCertificateErrors as cF, RegistrarControllerCreateAccessCertificateResponse as cG, RegistrarControllerCreateAccessCertificateResponses as cH, RegistrarControllerCreateConfigData as cI, RegistrarControllerCreateConfigErrors as cJ, RegistrarControllerCreateConfigResponse as cK, RegistrarControllerCreateConfigResponses as cL, RegistrarControllerDeleteConfigData as cM, RegistrarControllerDeleteConfigResponse as cN, RegistrarControllerDeleteConfigResponses as cO, RegistrarControllerGetConfigData as cP, RegistrarControllerGetConfigErrors as cQ, RegistrarControllerGetConfigResponse as cR, RegistrarControllerGetConfigResponses as cS, RegistrarControllerUpdateConfigData as cT, RegistrarControllerUpdateConfigErrors as cU, RegistrarControllerUpdateConfigResponse as cV, RegistrarControllerUpdateConfigResponses as cW, RegistrationCertificateBody as cX, RegistrationCertificateDefaults as cY, RegistrationCertificatePurpose as cZ, RegistrationCertificateRequest as c_, PolicyCredential as ca, PresentationAttachment as cb, PresentationConfig as cc, PresentationConfigCreateDto as cd, PresentationConfigUpdateDto as ce, PresentationConfigWritable as cf, PresentationDuringIssuanceConfig as cg, PresentationManagementControllerConfigurationData as ch, PresentationManagementControllerConfigurationResponse as ci, PresentationManagementControllerConfigurationResponses as cj, PresentationManagementControllerDeleteConfigurationData as ck, PresentationManagementControllerDeleteConfigurationResponses as cl, PresentationManagementControllerGetConfigurationData as cm, PresentationManagementControllerGetConfigurationResponse as cn, PresentationManagementControllerGetConfigurationResponses as co, PresentationManagementControllerReissueRegistrationCertificateData as cp, PresentationManagementControllerReissueRegistrationCertificateErrors as cq, PresentationManagementControllerReissueRegistrationCertificateResponses as cr, PresentationManagementControllerResolveIssuerMetadataData as cs, PresentationManagementControllerResolveIssuerMetadataErrors as ct, PresentationManagementControllerResolveIssuerMetadataResponses as cu, PresentationManagementControllerStorePresentationConfigData as cv, PresentationManagementControllerStorePresentationConfigResponse as cw, PresentationManagementControllerStorePresentationConfigResponses as cx, PresentationManagementControllerUpdateConfigurationData as cy, PresentationManagementControllerUpdateConfigurationResponse as cz, AppControllerGetFrontendConfigResponses as d, StorageControllerUploadResponse as d$, RoleDto as d0, RootOfTrustPolicy as d1, RotationPolicyCreateDto as d2, RotationPolicyImportDto as d3, RotationPolicyResponseDto as d4, RotationPolicyUpdateDto as d5, SchemaResponse as d6, SessionConfigControllerGetConfigData as d7, SessionConfigControllerGetConfigResponse as d8, SessionConfigControllerGetConfigResponses as d9, StatusListConfigControllerGetConfigResponse as dA, StatusListConfigControllerGetConfigResponses as dB, StatusListConfigControllerResetConfigData as dC, StatusListConfigControllerResetConfigResponse as dD, StatusListConfigControllerResetConfigResponses as dE, StatusListConfigControllerUpdateConfigData as dF, StatusListConfigControllerUpdateConfigResponse as dG, StatusListConfigControllerUpdateConfigResponses as dH, StatusListImportDto as dI, StatusListManagementControllerCreateListData as dJ, StatusListManagementControllerCreateListResponse as dK, StatusListManagementControllerCreateListResponses as dL, StatusListManagementControllerDeleteListData as dM, StatusListManagementControllerDeleteListResponse as dN, StatusListManagementControllerDeleteListResponses as dO, StatusListManagementControllerGetListData as dP, StatusListManagementControllerGetListResponse as dQ, StatusListManagementControllerGetListResponses as dR, StatusListManagementControllerGetListsData as dS, StatusListManagementControllerGetListsResponse as dT, StatusListManagementControllerGetListsResponses as dU, StatusListManagementControllerUpdateListData as dV, StatusListManagementControllerUpdateListResponse as dW, StatusListManagementControllerUpdateListResponses as dX, StatusListResponseDto as dY, StatusUpdateDto as dZ, StorageControllerUploadData as d_, SessionConfigControllerResetConfigData as da, SessionConfigControllerResetConfigResponses as db, SessionConfigControllerUpdateConfigData as dc, SessionConfigControllerUpdateConfigResponse as dd, SessionConfigControllerUpdateConfigResponses as de, SessionControllerDeleteSessionData as df, SessionControllerDeleteSessionResponses as dg, SessionControllerGetAllSessionsData as dh, SessionControllerGetAllSessionsResponse as di, SessionControllerGetAllSessionsResponses as dj, SessionControllerGetSessionData as dk, SessionControllerGetSessionLogsData as dl, SessionControllerGetSessionLogsResponse as dm, SessionControllerGetSessionLogsResponses as dn, SessionControllerGetSessionResponse as dp, SessionControllerGetSessionResponses as dq, SessionControllerRevokeAllData as dr, SessionControllerRevokeAllResponses as ds, SessionEventsControllerSubscribeToSessionEventsData as dt, SessionEventsControllerSubscribeToSessionEventsResponses as du, SessionLogEntryResponseDto as dv, SessionStorageConfig as dw, StatusListAggregationDto as dx, StatusListConfig as dy, StatusListConfigControllerGetConfigData as dz, AppControllerGetVersionData as e, UserControllerGetUserResponses as e$, StorageControllerUploadResponses as e0, TenantControllerDeleteTenantData as e1, TenantControllerDeleteTenantResponses as e2, TenantControllerGetTenantData as e3, TenantControllerGetTenantResponse as e4, TenantControllerGetTenantResponses as e5, TenantControllerGetTenantsData as e6, TenantControllerGetTenantsResponse as e7, TenantControllerGetTenantsResponses as e8, TenantControllerInitTenantData as e9, TrustListControllerGetTrustListVersionsData as eA, TrustListControllerGetTrustListVersionsResponse as eB, TrustListControllerGetTrustListVersionsResponses as eC, TrustListControllerUpdateTrustListData as eD, TrustListControllerUpdateTrustListResponse as eE, TrustListControllerUpdateTrustListResponses as eF, TrustListCreateDto as eG, TrustListEntityInfo as eH, TrustListVersion as eI, TrustedAuthorityQuery as eJ, UpdateAttributeProviderDto as eK, UpdateClientDto as eL, UpdateRegistrarConfigDto as eM, UpdateSessionConfigDto as eN, UpdateStatusListConfigDto as eO, UpdateStatusListDto as eP, UpdateTenantDto as eQ, UpdateUserDto as eR, UpdateWebhookEndpointDto as eS, UpstreamOidcConfig as eT, UserControllerCreateUserData as eU, UserControllerCreateUserResponse as eV, UserControllerCreateUserResponses as eW, UserControllerDeleteUserData as eX, UserControllerDeleteUserResponses as eY, UserControllerGetUserData as eZ, UserControllerGetUserResponse as e_, TenantControllerInitTenantResponse as ea, TenantControllerInitTenantResponses as eb, TenantControllerUpdateTenantData as ec, TenantControllerUpdateTenantResponse as ed, TenantControllerUpdateTenantResponses as ee, TenantEntity as ef, TokenResponse as eg, TransactionData as eh, TrustList as ei, TrustListControllerCreateTrustListData as ej, TrustListControllerCreateTrustListResponse as ek, TrustListControllerCreateTrustListResponses as el, TrustListControllerDeleteTrustListData as em, TrustListControllerDeleteTrustListResponses as en, TrustListControllerExportTrustListData as eo, TrustListControllerExportTrustListResponse as ep, TrustListControllerExportTrustListResponses as eq, TrustListControllerGetAllTrustListsData as er, TrustListControllerGetAllTrustListsResponse as es, TrustListControllerGetAllTrustListsResponses as et, TrustListControllerGetTrustListData as eu, TrustListControllerGetTrustListResponse as ev, TrustListControllerGetTrustListResponses as ew, TrustListControllerGetTrustListVersionData as ex, TrustListControllerGetTrustListVersionResponse as ey, TrustListControllerGetTrustListVersionResponses as ez, AppControllerGetVersionResponses as f, UserControllerGetUsersData as f0, UserControllerGetUsersResponse as f1, UserControllerGetUsersResponses as f2, UserControllerUpdateUserData as f3, UserControllerUpdateUserResponse as f4, UserControllerUpdateUserResponses as f5, Vct as f6, VerifierOfferControllerGetOfferData as f7, VerifierOfferControllerGetOfferResponse as f8, VerifierOfferControllerGetOfferResponses as f9, WebHookAuthConfigHeader as fa, WebHookAuthConfigNone as fb, WebhookConfig as fc, WebhookEndpointControllerCreateData as fd, WebhookEndpointControllerCreateResponses as fe, WebhookEndpointControllerDeleteData as ff, WebhookEndpointControllerDeleteErrors as fg, WebhookEndpointControllerDeleteResponses as fh, WebhookEndpointControllerGetAllData as fi, WebhookEndpointControllerGetAllResponse as fj, WebhookEndpointControllerGetAllResponses as fk, WebhookEndpointControllerGetByIdData as fl, WebhookEndpointControllerGetByIdErrors as fm, WebhookEndpointControllerGetByIdResponses as fn, WebhookEndpointControllerUpdateData as fo, WebhookEndpointControllerUpdateErrors as fp, WebhookEndpointControllerUpdateResponses as fq, WebhookEndpointEntity as fr, AttestationBasedPolicy as g, AttributeProviderControllerCreateData as h, AttributeProviderControllerCreateResponses as i, AttributeProviderControllerDeleteData as j, AttributeProviderControllerDeleteErrors as k, AttributeProviderControllerDeleteResponses as l, AttributeProviderControllerGetAllData as m, AttributeProviderControllerGetAllResponses as n, AttributeProviderControllerGetByIdData as o, AttributeProviderControllerGetByIdErrors as p, AttributeProviderControllerGetByIdResponses as q, AttributeProviderControllerUpdateData as r, AttributeProviderControllerUpdateErrors as s, AttributeProviderControllerUpdateResponses as t, AttributeProviderEntity as u, AuthenticationMethodAuth as v, AuthenticationMethodNone as w, AuthenticationMethodPresentation as x, AuthenticationUrlConfig as y, AuthorizationResponse as z };