@eudiplo/sdk-core 4.0.0 → 4.1.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.
- package/dist/api/client/client.gen.d.mts +1 -1
- package/dist/api/client/client.gen.d.ts +1 -1
- package/dist/api/client/client.gen.js +9 -7
- package/dist/api/client/client.gen.mjs +9 -7
- package/dist/api/client/index.d.mts +1 -1
- package/dist/api/client/index.d.ts +1 -1
- package/dist/api/client/index.js +9 -7
- package/dist/api/client/index.mjs +9 -7
- package/dist/api/client/types.gen.d.mts +1 -1
- package/dist/api/client/types.gen.d.ts +1 -1
- package/dist/api/client.gen.d.mts +3 -3
- package/dist/api/client.gen.d.ts +3 -3
- package/dist/api/client.gen.js +9 -7
- package/dist/api/client.gen.mjs +9 -7
- package/dist/api/index.d.mts +37 -21
- package/dist/api/index.d.ts +37 -21
- package/dist/api/index.js +53 -29
- package/dist/api/index.mjs +51 -30
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +53 -29
- package/dist/index.mjs +51 -30
- package/dist/{types.gen-sNmRQvUI.d.mts → types.gen-CVLCgolx.d.mts} +491 -218
- package/dist/{types.gen-sNmRQvUI.d.ts → types.gen-CVLCgolx.d.ts} +491 -218
- package/dist/{types.gen-D8LjzWc0.d.mts → types.gen-CVkHMB8b.d.mts} +8 -7
- package/dist/{types.gen-D8LjzWc0.d.ts → types.gen-CVkHMB8b.d.ts} +8 -7
- package/package.json +2 -2
|
@@ -1,6 +1,26 @@
|
|
|
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
|
|
@@ -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" | "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,6 +180,10 @@ type UpdateTenantDto = {
|
|
|
164
180
|
* The description of the tenant.
|
|
165
181
|
*/
|
|
166
182
|
description?: string;
|
|
183
|
+
/**
|
|
184
|
+
* Session storage configuration. Controls TTL and cleanup behavior.
|
|
185
|
+
*/
|
|
186
|
+
sessionConfig?: SessionStorageConfig;
|
|
167
187
|
roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
168
188
|
};
|
|
169
189
|
type ClientSecretResponseDto = {
|
|
@@ -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,11 @@ 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;
|
|
564
622
|
};
|
|
565
623
|
type SessionLogEntryResponseDto = {
|
|
566
624
|
/**
|
|
@@ -714,6 +772,18 @@ type IssuanceConfig = {
|
|
|
714
772
|
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
715
773
|
*/
|
|
716
774
|
chainedAs?: ChainedAsConfig;
|
|
775
|
+
/**
|
|
776
|
+
* Whether refresh tokens should be issued for OID4VCI token responses.
|
|
777
|
+
*/
|
|
778
|
+
refreshTokenEnabled?: boolean;
|
|
779
|
+
/**
|
|
780
|
+
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
781
|
+
*/
|
|
782
|
+
credentialResponseEncryption?: boolean;
|
|
783
|
+
/**
|
|
784
|
+
* Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
|
|
785
|
+
*/
|
|
786
|
+
refreshTokenExpiresInSeconds?: number;
|
|
717
787
|
/**
|
|
718
788
|
* The tenant that owns this object.
|
|
719
789
|
*/
|
|
@@ -771,6 +841,18 @@ type IssuanceDto = {
|
|
|
771
841
|
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
772
842
|
*/
|
|
773
843
|
chainedAs?: ChainedAsConfig;
|
|
844
|
+
/**
|
|
845
|
+
* Whether refresh tokens should be issued for OID4VCI token responses.
|
|
846
|
+
*/
|
|
847
|
+
refreshTokenEnabled?: boolean;
|
|
848
|
+
/**
|
|
849
|
+
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
850
|
+
*/
|
|
851
|
+
credentialResponseEncryption?: boolean;
|
|
852
|
+
/**
|
|
853
|
+
* Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
|
|
854
|
+
*/
|
|
855
|
+
refreshTokenExpiresInSeconds?: number;
|
|
774
856
|
/**
|
|
775
857
|
* Authentication server URL for the issuance process.
|
|
776
858
|
*/
|
|
@@ -896,6 +978,16 @@ type IaeActionRedirectToWeb = {
|
|
|
896
978
|
type EmbeddedDisclosurePolicy = {
|
|
897
979
|
policy: string;
|
|
898
980
|
};
|
|
981
|
+
type KeyAttestationsRequired = {
|
|
982
|
+
/**
|
|
983
|
+
* List of required key storage types (e.g., iso_18045_high, iso_18045_moderate)
|
|
984
|
+
*/
|
|
985
|
+
key_storage?: Array<string>;
|
|
986
|
+
/**
|
|
987
|
+
* List of required user authentication types (e.g., iso_18045_high, iso_18045_moderate)
|
|
988
|
+
*/
|
|
989
|
+
user_authentication?: Array<string>;
|
|
990
|
+
};
|
|
899
991
|
type DisplayImage = {
|
|
900
992
|
uri: string;
|
|
901
993
|
};
|
|
@@ -908,7 +1000,37 @@ type Display = {
|
|
|
908
1000
|
background_image?: DisplayImage;
|
|
909
1001
|
logo?: DisplayImage;
|
|
910
1002
|
};
|
|
1003
|
+
type ClaimDisplayInfo = {
|
|
1004
|
+
/**
|
|
1005
|
+
* Human-readable name for the claim
|
|
1006
|
+
*/
|
|
1007
|
+
name?: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* Locale identifier (e.g., en-US, de-DE)
|
|
1010
|
+
*/
|
|
1011
|
+
locale?: string;
|
|
1012
|
+
};
|
|
1013
|
+
type ClaimMetadata = {
|
|
1014
|
+
/**
|
|
1015
|
+
* Path to the claim. For SD-JWT: JSONPath-like array. For mDOC: [namespace, claim_name]
|
|
1016
|
+
*/
|
|
1017
|
+
path: Array<string>;
|
|
1018
|
+
/**
|
|
1019
|
+
* Whether this claim must be disclosed
|
|
1020
|
+
*/
|
|
1021
|
+
mandatory?: boolean;
|
|
1022
|
+
/**
|
|
1023
|
+
* Display information for the claim in different locales
|
|
1024
|
+
*/
|
|
1025
|
+
display?: Array<ClaimDisplayInfo>;
|
|
1026
|
+
};
|
|
911
1027
|
type IssuerMetadataCredentialConfig = {
|
|
1028
|
+
/**
|
|
1029
|
+
* Key attestation requirements for JWT proofs for this credential.
|
|
1030
|
+
* When set, this is published in proof_types_supported.jwt.key_attestations_required
|
|
1031
|
+
* for this specific credential configuration.
|
|
1032
|
+
*/
|
|
1033
|
+
keyAttestationsRequired?: KeyAttestationsRequired;
|
|
912
1034
|
format: "mso_mdoc" | "dc+sd-jwt";
|
|
913
1035
|
display: Array<Display>;
|
|
914
1036
|
scope?: string;
|
|
@@ -936,6 +1058,19 @@ type IssuerMetadataCredentialConfig = {
|
|
|
936
1058
|
claimsByNamespace?: {
|
|
937
1059
|
[key: string]: unknown;
|
|
938
1060
|
};
|
|
1061
|
+
/**
|
|
1062
|
+
* Claims metadata for wallet rendering.
|
|
1063
|
+
* Follows the OID4VCI credential_metadata.claims specification.
|
|
1064
|
+
* Each claim includes a path (JSONPath-like array), optional mandatory flag,
|
|
1065
|
+
* and display information with multi-language support.
|
|
1066
|
+
*
|
|
1067
|
+
* Example:
|
|
1068
|
+
* [
|
|
1069
|
+
* { "path": ["given_name"], "mandatory": false, "display": [{ "name": "Given Name", "locale": "en-US" }] },
|
|
1070
|
+
* { "path": ["address", "street_address"], "display": [{ "name": "Street Address", "locale": "en-US" }] }
|
|
1071
|
+
* ]
|
|
1072
|
+
*/
|
|
1073
|
+
claimsMetadata?: Array<ClaimMetadata>;
|
|
939
1074
|
};
|
|
940
1075
|
type AttributeProviderEntity = {
|
|
941
1076
|
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
@@ -1219,11 +1354,38 @@ type Dcql = {
|
|
|
1219
1354
|
credentials: Array<CredentialQuery>;
|
|
1220
1355
|
credential_sets?: Array<CredentialSetQuery>;
|
|
1221
1356
|
};
|
|
1357
|
+
type RegistrationCertificatePurpose = {
|
|
1358
|
+
lang: string;
|
|
1359
|
+
value: string;
|
|
1360
|
+
};
|
|
1361
|
+
type RegistrationCertificateBody = {
|
|
1362
|
+
privacy_policy: string;
|
|
1363
|
+
support_uri: string;
|
|
1364
|
+
intermediary?: string;
|
|
1365
|
+
purpose?: Array<RegistrationCertificatePurpose>;
|
|
1366
|
+
credentials?: Array<{
|
|
1367
|
+
[key: string]: unknown;
|
|
1368
|
+
}>;
|
|
1369
|
+
provided_attestations?: Array<{
|
|
1370
|
+
[key: string]: unknown;
|
|
1371
|
+
}>;
|
|
1372
|
+
};
|
|
1222
1373
|
type RegistrationCertificateRequest = {
|
|
1223
1374
|
/**
|
|
1224
|
-
*
|
|
1375
|
+
* Optional registrar-side certificate identifier.
|
|
1376
|
+
* If provided and still valid, EUDIPLO reuses it instead of creating a new certificate.
|
|
1225
1377
|
*/
|
|
1226
|
-
|
|
1378
|
+
id?: string;
|
|
1379
|
+
/**
|
|
1380
|
+
* Registration certificate creation payload.
|
|
1381
|
+
* This is merged with tenant-level registrar defaults when a certificate is created.
|
|
1382
|
+
*/
|
|
1383
|
+
body?: RegistrationCertificateBody;
|
|
1384
|
+
/**
|
|
1385
|
+
* Optional pre-existing registration certificate JWT.
|
|
1386
|
+
* If provided, EUDIPLO forwards it as-is and does not create a new one.
|
|
1387
|
+
*/
|
|
1388
|
+
jwt?: string;
|
|
1227
1389
|
};
|
|
1228
1390
|
type PresentationAttachment = {
|
|
1229
1391
|
format: string;
|
|
@@ -1233,6 +1395,12 @@ type PresentationAttachment = {
|
|
|
1233
1395
|
credential_ids?: Array<string>;
|
|
1234
1396
|
};
|
|
1235
1397
|
type PresentationConfig = {
|
|
1398
|
+
/**
|
|
1399
|
+
* Server-managed cache of the materialized registration certificate. Read-only; values supplied by clients are ignored.
|
|
1400
|
+
*/
|
|
1401
|
+
readonly registrationCertCache?: {
|
|
1402
|
+
[key: string]: unknown;
|
|
1403
|
+
};
|
|
1236
1404
|
/**
|
|
1237
1405
|
* Unique identifier for the VP request.
|
|
1238
1406
|
*/
|
|
@@ -1290,6 +1458,12 @@ type PresentationConfig = {
|
|
|
1290
1458
|
*/
|
|
1291
1459
|
accessKeyChainId?: string;
|
|
1292
1460
|
};
|
|
1461
|
+
type ResolveIssuerMetadataDto = {
|
|
1462
|
+
/**
|
|
1463
|
+
* Issuer URL or full OpenID4VCI metadata URL to resolve server-side.
|
|
1464
|
+
*/
|
|
1465
|
+
issuerUrl: string;
|
|
1466
|
+
};
|
|
1293
1467
|
type PresentationConfigCreateDto = {
|
|
1294
1468
|
/**
|
|
1295
1469
|
* Unique identifier for the VP request.
|
|
@@ -1382,6 +1556,108 @@ type PresentationConfigUpdateDto = {
|
|
|
1382
1556
|
*/
|
|
1383
1557
|
accessKeyChainId?: string;
|
|
1384
1558
|
};
|
|
1559
|
+
type RegistrarConfigResponseDto = {
|
|
1560
|
+
/**
|
|
1561
|
+
* The base URL of the registrar API
|
|
1562
|
+
*/
|
|
1563
|
+
registrarUrl: string;
|
|
1564
|
+
/**
|
|
1565
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1566
|
+
*/
|
|
1567
|
+
oidcUrl: string;
|
|
1568
|
+
/**
|
|
1569
|
+
* The OIDC client ID for the registrar
|
|
1570
|
+
*/
|
|
1571
|
+
clientId: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1574
|
+
*/
|
|
1575
|
+
clientSecret?: string;
|
|
1576
|
+
/**
|
|
1577
|
+
* The username for OIDC login
|
|
1578
|
+
*/
|
|
1579
|
+
username: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
|
|
1582
|
+
*/
|
|
1583
|
+
registrationCertificateDefaults?: {
|
|
1584
|
+
[key: string]: unknown;
|
|
1585
|
+
};
|
|
1586
|
+
/**
|
|
1587
|
+
* Indicates whether a password is configured (actual password is never returned)
|
|
1588
|
+
*/
|
|
1589
|
+
hasPassword: boolean;
|
|
1590
|
+
};
|
|
1591
|
+
type CreateRegistrarConfigDto = {
|
|
1592
|
+
/**
|
|
1593
|
+
* The base URL of the registrar API
|
|
1594
|
+
*/
|
|
1595
|
+
registrarUrl: string;
|
|
1596
|
+
/**
|
|
1597
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1598
|
+
*/
|
|
1599
|
+
oidcUrl: string;
|
|
1600
|
+
/**
|
|
1601
|
+
* The OIDC client ID for the registrar
|
|
1602
|
+
*/
|
|
1603
|
+
clientId: string;
|
|
1604
|
+
/**
|
|
1605
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1606
|
+
*/
|
|
1607
|
+
clientSecret?: string;
|
|
1608
|
+
/**
|
|
1609
|
+
* The username for OIDC login
|
|
1610
|
+
*/
|
|
1611
|
+
username: string;
|
|
1612
|
+
/**
|
|
1613
|
+
* The password for OIDC login (stored in plaintext)
|
|
1614
|
+
*/
|
|
1615
|
+
password: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
|
|
1618
|
+
*/
|
|
1619
|
+
registrationCertificateDefaults?: {
|
|
1620
|
+
[key: string]: unknown;
|
|
1621
|
+
};
|
|
1622
|
+
};
|
|
1623
|
+
type UpdateRegistrarConfigDto = {
|
|
1624
|
+
/**
|
|
1625
|
+
* The base URL of the registrar API
|
|
1626
|
+
*/
|
|
1627
|
+
registrarUrl?: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1630
|
+
*/
|
|
1631
|
+
oidcUrl?: string;
|
|
1632
|
+
/**
|
|
1633
|
+
* The OIDC client ID for the registrar
|
|
1634
|
+
*/
|
|
1635
|
+
clientId?: string;
|
|
1636
|
+
/**
|
|
1637
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1638
|
+
*/
|
|
1639
|
+
clientSecret?: string;
|
|
1640
|
+
/**
|
|
1641
|
+
* The username for OIDC login
|
|
1642
|
+
*/
|
|
1643
|
+
username?: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* The password for OIDC login (stored in plaintext)
|
|
1646
|
+
*/
|
|
1647
|
+
password?: string;
|
|
1648
|
+
/**
|
|
1649
|
+
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
|
|
1650
|
+
*/
|
|
1651
|
+
registrationCertificateDefaults?: {
|
|
1652
|
+
[key: string]: unknown;
|
|
1653
|
+
};
|
|
1654
|
+
};
|
|
1655
|
+
type CreateAccessCertificateDto = {
|
|
1656
|
+
/**
|
|
1657
|
+
* The ID of the key to create an access certificate for
|
|
1658
|
+
*/
|
|
1659
|
+
keyId: string;
|
|
1660
|
+
};
|
|
1385
1661
|
type DeferredCredentialRequestDto = {
|
|
1386
1662
|
/**
|
|
1387
1663
|
* The transaction identifier previously returned by the Credential Endpoint
|
|
@@ -1394,6 +1670,9 @@ type NotificationRequestDto = {
|
|
|
1394
1670
|
[key: string]: unknown;
|
|
1395
1671
|
};
|
|
1396
1672
|
};
|
|
1673
|
+
type Object$1 = {
|
|
1674
|
+
[key: string]: unknown;
|
|
1675
|
+
};
|
|
1397
1676
|
type ParResponseDto = {
|
|
1398
1677
|
/**
|
|
1399
1678
|
* The request URI for the Pushed Authorization Request.
|
|
@@ -1488,46 +1767,6 @@ type InteractiveAuthorizationErrorResponseDto = {
|
|
|
1488
1767
|
*/
|
|
1489
1768
|
error_description?: string;
|
|
1490
1769
|
};
|
|
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
1770
|
type ChainedAsParResponseDto = {
|
|
1532
1771
|
/**
|
|
1533
1772
|
* The request URI to use at the authorization endpoint
|
|
@@ -1550,13 +1789,17 @@ type ChainedAsErrorResponseDto = {
|
|
|
1550
1789
|
};
|
|
1551
1790
|
type ChainedAsTokenRequestDto = {
|
|
1552
1791
|
/**
|
|
1553
|
-
* Grant type (
|
|
1792
|
+
* Grant type ('authorization_code' or 'refresh_token')
|
|
1554
1793
|
*/
|
|
1555
1794
|
grant_type: string;
|
|
1556
1795
|
/**
|
|
1557
|
-
* Authorization code received in the callback
|
|
1796
|
+
* Authorization code received in the callback (authorization_code grant)
|
|
1558
1797
|
*/
|
|
1559
|
-
code
|
|
1798
|
+
code?: string;
|
|
1799
|
+
/**
|
|
1800
|
+
* Refresh token (refresh_token grant)
|
|
1801
|
+
*/
|
|
1802
|
+
refresh_token?: string;
|
|
1560
1803
|
/**
|
|
1561
1804
|
* Client identifier
|
|
1562
1805
|
*/
|
|
@@ -1601,6 +1844,10 @@ type ChainedAsTokenResponseDto = {
|
|
|
1601
1844
|
* C_NONCE lifetime in seconds
|
|
1602
1845
|
*/
|
|
1603
1846
|
c_nonce_expires_in?: number;
|
|
1847
|
+
/**
|
|
1848
|
+
* Refresh token (issued when refresh tokens are enabled)
|
|
1849
|
+
*/
|
|
1850
|
+
refresh_token?: string;
|
|
1604
1851
|
};
|
|
1605
1852
|
type OfferResponse = {
|
|
1606
1853
|
uri: string;
|
|
@@ -1664,105 +1911,27 @@ type JwksResponseDto = {
|
|
|
1664
1911
|
};
|
|
1665
1912
|
type AuthorizationResponse = {
|
|
1666
1913
|
/**
|
|
1667
|
-
* The response string containing the authorization details.
|
|
1914
|
+
* The response string containing the authorization details (JWE-encrypted VP token).
|
|
1915
|
+
* Required for success responses, absent for error responses.
|
|
1668
1916
|
*/
|
|
1669
|
-
response
|
|
1917
|
+
response?: string;
|
|
1670
1918
|
/**
|
|
1671
1919
|
* When set to true, the authorization response will be sent to the client.
|
|
1672
1920
|
*/
|
|
1673
1921
|
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;
|
|
1922
|
+
error?: string;
|
|
1684
1923
|
/**
|
|
1685
|
-
*
|
|
1924
|
+
* Human-readable description of the error.
|
|
1686
1925
|
*/
|
|
1687
|
-
|
|
1926
|
+
error_description?: string;
|
|
1688
1927
|
/**
|
|
1689
|
-
*
|
|
1928
|
+
* URI with additional information about the error.
|
|
1690
1929
|
*/
|
|
1691
|
-
|
|
1930
|
+
error_uri?: string;
|
|
1692
1931
|
/**
|
|
1693
|
-
*
|
|
1932
|
+
* State value from the authorization request (for correlation).
|
|
1694
1933
|
*/
|
|
1695
|
-
|
|
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;
|
|
1752
|
-
/**
|
|
1753
|
-
* The username for OIDC login
|
|
1754
|
-
*/
|
|
1755
|
-
username?: string;
|
|
1756
|
-
/**
|
|
1757
|
-
* The password for OIDC login (stored in plaintext)
|
|
1758
|
-
*/
|
|
1759
|
-
password?: string;
|
|
1760
|
-
};
|
|
1761
|
-
type CreateAccessCertificateDto = {
|
|
1762
|
-
/**
|
|
1763
|
-
* The ID of the key to create an access certificate for
|
|
1764
|
-
*/
|
|
1765
|
-
keyId: string;
|
|
1934
|
+
state?: string;
|
|
1766
1935
|
};
|
|
1767
1936
|
type TrustListEntityInfo = {
|
|
1768
1937
|
name: string;
|
|
@@ -1787,20 +1956,20 @@ type ExternalTrustListEntity = {
|
|
|
1787
1956
|
info: TrustListEntityInfo;
|
|
1788
1957
|
};
|
|
1789
1958
|
type TrustListCreateDto = {
|
|
1790
|
-
entities: Array<({
|
|
1791
|
-
type: "internal";
|
|
1792
|
-
} & InternalTrustListEntity) | ({
|
|
1793
|
-
type: "external";
|
|
1794
|
-
} & ExternalTrustListEntity)>;
|
|
1795
|
-
id?: string;
|
|
1796
1959
|
description?: string;
|
|
1797
|
-
keyChainId?: string;
|
|
1798
1960
|
/**
|
|
1799
1961
|
* The full trust list JSON (generated LoTE structure)
|
|
1800
1962
|
*/
|
|
1801
1963
|
data?: {
|
|
1802
1964
|
[key: string]: unknown;
|
|
1803
1965
|
};
|
|
1966
|
+
entities: Array<({
|
|
1967
|
+
type: "internal";
|
|
1968
|
+
} & InternalTrustListEntity) | ({
|
|
1969
|
+
type: "external";
|
|
1970
|
+
} & ExternalTrustListEntity)>;
|
|
1971
|
+
id?: string;
|
|
1972
|
+
keyChainId?: string;
|
|
1804
1973
|
};
|
|
1805
1974
|
type TrustList = {
|
|
1806
1975
|
/**
|
|
@@ -2250,6 +2419,67 @@ type PresentationRequest = {
|
|
|
2250
2419
|
type FileUploadDto = {
|
|
2251
2420
|
file: Blob | File;
|
|
2252
2421
|
};
|
|
2422
|
+
type PresentationConfigWritable = {
|
|
2423
|
+
/**
|
|
2424
|
+
* Unique identifier for the VP request.
|
|
2425
|
+
*/
|
|
2426
|
+
id: string;
|
|
2427
|
+
/**
|
|
2428
|
+
* The tenant that owns this object.
|
|
2429
|
+
*/
|
|
2430
|
+
tenant: TenantEntity;
|
|
2431
|
+
/**
|
|
2432
|
+
* Description of the presentation configuration.
|
|
2433
|
+
*/
|
|
2434
|
+
description?: string;
|
|
2435
|
+
/**
|
|
2436
|
+
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
2437
|
+
*/
|
|
2438
|
+
lifeTime?: number;
|
|
2439
|
+
/**
|
|
2440
|
+
* The DCQL query to be used for the VP request.
|
|
2441
|
+
*/
|
|
2442
|
+
dcql_query: Dcql;
|
|
2443
|
+
transaction_data?: Array<TransactionData>;
|
|
2444
|
+
/**
|
|
2445
|
+
* The registration certificate request containing the necessary details.
|
|
2446
|
+
*/
|
|
2447
|
+
registrationCert?: RegistrationCertificateRequest;
|
|
2448
|
+
/**
|
|
2449
|
+
* Optional webhook URL to receive the response.
|
|
2450
|
+
*/
|
|
2451
|
+
webhook?: WebhookConfig;
|
|
2452
|
+
/**
|
|
2453
|
+
* The timestamp when the VP request was created.
|
|
2454
|
+
*/
|
|
2455
|
+
createdAt: string;
|
|
2456
|
+
/**
|
|
2457
|
+
* The timestamp when the VP request was last updated.
|
|
2458
|
+
*/
|
|
2459
|
+
updatedAt: string;
|
|
2460
|
+
/**
|
|
2461
|
+
* Attestation that should be attached
|
|
2462
|
+
*/
|
|
2463
|
+
attached?: Array<PresentationAttachment>;
|
|
2464
|
+
/**
|
|
2465
|
+
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
2466
|
+
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
2467
|
+
*/
|
|
2468
|
+
redirectUri?: string;
|
|
2469
|
+
/**
|
|
2470
|
+
* Optional ID of the access certificate to use for signing the presentation request.
|
|
2471
|
+
* If not provided, the default access certificate for the tenant will be used.
|
|
2472
|
+
*
|
|
2473
|
+
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
2474
|
+
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
2475
|
+
* that reference only part of a composite primary key. The relationship is handled
|
|
2476
|
+
* at the application level in the service layer.
|
|
2477
|
+
*/
|
|
2478
|
+
accessKeyChainId?: string;
|
|
2479
|
+
};
|
|
2480
|
+
type ObjectWritable = {
|
|
2481
|
+
[key: string]: unknown;
|
|
2482
|
+
};
|
|
2253
2483
|
type AppControllerGetVersionData = {
|
|
2254
2484
|
body?: never;
|
|
2255
2485
|
path?: never;
|
|
@@ -2262,6 +2492,19 @@ type AppControllerGetVersionResponses = {
|
|
|
2262
2492
|
*/
|
|
2263
2493
|
200: unknown;
|
|
2264
2494
|
};
|
|
2495
|
+
type AppControllerGetFrontendConfigData = {
|
|
2496
|
+
body?: never;
|
|
2497
|
+
path?: never;
|
|
2498
|
+
query?: never;
|
|
2499
|
+
url: "/api/frontend-config";
|
|
2500
|
+
};
|
|
2501
|
+
type AppControllerGetFrontendConfigResponses = {
|
|
2502
|
+
/**
|
|
2503
|
+
* Frontend configuration
|
|
2504
|
+
*/
|
|
2505
|
+
200: FrontendConfigResponseDto;
|
|
2506
|
+
};
|
|
2507
|
+
type AppControllerGetFrontendConfigResponse = AppControllerGetFrontendConfigResponses[keyof AppControllerGetFrontendConfigResponses];
|
|
2265
2508
|
type TenantControllerGetTenantsData = {
|
|
2266
2509
|
body?: never;
|
|
2267
2510
|
path?: never;
|
|
@@ -2902,11 +3145,27 @@ type PresentationManagementControllerStorePresentationConfigData = {
|
|
|
2902
3145
|
url: "/api/verifier/config";
|
|
2903
3146
|
};
|
|
2904
3147
|
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
2905
|
-
201:
|
|
2906
|
-
[key: string]: unknown;
|
|
2907
|
-
};
|
|
3148
|
+
201: PresentationConfig;
|
|
2908
3149
|
};
|
|
2909
3150
|
type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
|
|
3151
|
+
type PresentationManagementControllerResolveIssuerMetadataData = {
|
|
3152
|
+
body: ResolveIssuerMetadataDto;
|
|
3153
|
+
path?: never;
|
|
3154
|
+
query?: never;
|
|
3155
|
+
url: "/api/verifier/config/issuer-metadata/resolve";
|
|
3156
|
+
};
|
|
3157
|
+
type PresentationManagementControllerResolveIssuerMetadataErrors = {
|
|
3158
|
+
/**
|
|
3159
|
+
* Invalid issuer URL or metadata could not be resolved
|
|
3160
|
+
*/
|
|
3161
|
+
400: unknown;
|
|
3162
|
+
};
|
|
3163
|
+
type PresentationManagementControllerResolveIssuerMetadataResponses = {
|
|
3164
|
+
/**
|
|
3165
|
+
* Resolved credential issuer metadata
|
|
3166
|
+
*/
|
|
3167
|
+
200: unknown;
|
|
3168
|
+
};
|
|
2910
3169
|
type PresentationManagementControllerDeleteConfigurationData = {
|
|
2911
3170
|
body?: never;
|
|
2912
3171
|
path: {
|
|
@@ -2939,11 +3198,29 @@ type PresentationManagementControllerUpdateConfigurationData = {
|
|
|
2939
3198
|
url: "/api/verifier/config/{id}";
|
|
2940
3199
|
};
|
|
2941
3200
|
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
2942
|
-
200:
|
|
2943
|
-
[key: string]: unknown;
|
|
2944
|
-
};
|
|
3201
|
+
200: PresentationConfig;
|
|
2945
3202
|
};
|
|
2946
3203
|
type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
|
|
3204
|
+
type PresentationManagementControllerReissueRegistrationCertificateData = {
|
|
3205
|
+
body?: never;
|
|
3206
|
+
path: {
|
|
3207
|
+
id: string;
|
|
3208
|
+
};
|
|
3209
|
+
query?: never;
|
|
3210
|
+
url: "/api/verifier/config/{id}/registration-cert/reissue";
|
|
3211
|
+
};
|
|
3212
|
+
type PresentationManagementControllerReissueRegistrationCertificateErrors = {
|
|
3213
|
+
/**
|
|
3214
|
+
* Config has no registrationCert spec or registrar is not enabled
|
|
3215
|
+
*/
|
|
3216
|
+
400: unknown;
|
|
3217
|
+
};
|
|
3218
|
+
type PresentationManagementControllerReissueRegistrationCertificateResponses = {
|
|
3219
|
+
/**
|
|
3220
|
+
* Updated presentation configuration
|
|
3221
|
+
*/
|
|
3222
|
+
200: unknown;
|
|
3223
|
+
};
|
|
2947
3224
|
type CacheControllerGetStatsData = {
|
|
2948
3225
|
body?: never;
|
|
2949
3226
|
path?: never;
|
|
@@ -2995,61 +3272,6 @@ type CacheControllerClearStatusListCacheResponses = {
|
|
|
2995
3272
|
204: void;
|
|
2996
3273
|
};
|
|
2997
3274
|
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
3275
|
type RegistrarControllerDeleteConfigData = {
|
|
3054
3276
|
body?: never;
|
|
3055
3277
|
path?: never;
|
|
@@ -3079,7 +3301,7 @@ type RegistrarControllerGetConfigResponses = {
|
|
|
3079
3301
|
/**
|
|
3080
3302
|
* The registrar configuration
|
|
3081
3303
|
*/
|
|
3082
|
-
200:
|
|
3304
|
+
200: RegistrarConfigResponseDto;
|
|
3083
3305
|
};
|
|
3084
3306
|
type RegistrarControllerGetConfigResponse = RegistrarControllerGetConfigResponses[keyof RegistrarControllerGetConfigResponses];
|
|
3085
3307
|
type RegistrarControllerUpdateConfigData = {
|
|
@@ -3102,7 +3324,7 @@ type RegistrarControllerUpdateConfigResponses = {
|
|
|
3102
3324
|
/**
|
|
3103
3325
|
* Configuration updated successfully
|
|
3104
3326
|
*/
|
|
3105
|
-
200:
|
|
3327
|
+
200: RegistrarConfigResponseDto;
|
|
3106
3328
|
};
|
|
3107
3329
|
type RegistrarControllerUpdateConfigResponse = RegistrarControllerUpdateConfigResponses[keyof RegistrarControllerUpdateConfigResponses];
|
|
3108
3330
|
type RegistrarControllerCreateConfigData = {
|
|
@@ -3121,7 +3343,7 @@ type RegistrarControllerCreateConfigResponses = {
|
|
|
3121
3343
|
/**
|
|
3122
3344
|
* Configuration created successfully
|
|
3123
3345
|
*/
|
|
3124
|
-
201:
|
|
3346
|
+
201: RegistrarConfigResponseDto;
|
|
3125
3347
|
};
|
|
3126
3348
|
type RegistrarControllerCreateConfigResponse = RegistrarControllerCreateConfigResponses[keyof RegistrarControllerCreateConfigResponses];
|
|
3127
3349
|
type RegistrarControllerCreateAccessCertificateData = {
|
|
@@ -3156,6 +3378,61 @@ type RegistrarControllerCreateAccessCertificateResponses = {
|
|
|
3156
3378
|
};
|
|
3157
3379
|
};
|
|
3158
3380
|
type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
|
|
3381
|
+
type CredentialOfferControllerGetOfferData = {
|
|
3382
|
+
body: OfferRequestDto;
|
|
3383
|
+
path?: never;
|
|
3384
|
+
query?: never;
|
|
3385
|
+
url: "/api/issuer/offer";
|
|
3386
|
+
};
|
|
3387
|
+
type CredentialOfferControllerGetOfferResponses = {
|
|
3388
|
+
/**
|
|
3389
|
+
* JSON response
|
|
3390
|
+
*/
|
|
3391
|
+
201: OfferResponse;
|
|
3392
|
+
};
|
|
3393
|
+
type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
|
|
3394
|
+
type DeferredControllerCompleteDeferredData = {
|
|
3395
|
+
body: CompleteDeferredDto;
|
|
3396
|
+
path: {
|
|
3397
|
+
transactionId: string;
|
|
3398
|
+
};
|
|
3399
|
+
query?: never;
|
|
3400
|
+
url: "/api/issuer/deferred/{transactionId}/complete";
|
|
3401
|
+
};
|
|
3402
|
+
type DeferredControllerCompleteDeferredErrors = {
|
|
3403
|
+
/**
|
|
3404
|
+
* Transaction not found
|
|
3405
|
+
*/
|
|
3406
|
+
404: unknown;
|
|
3407
|
+
};
|
|
3408
|
+
type DeferredControllerCompleteDeferredResponses = {
|
|
3409
|
+
/**
|
|
3410
|
+
* Transaction completed successfully
|
|
3411
|
+
*/
|
|
3412
|
+
200: DeferredOperationResponse;
|
|
3413
|
+
};
|
|
3414
|
+
type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
|
|
3415
|
+
type DeferredControllerFailDeferredData = {
|
|
3416
|
+
body?: FailDeferredDto;
|
|
3417
|
+
path: {
|
|
3418
|
+
transactionId: string;
|
|
3419
|
+
};
|
|
3420
|
+
query?: never;
|
|
3421
|
+
url: "/api/issuer/deferred/{transactionId}/fail";
|
|
3422
|
+
};
|
|
3423
|
+
type DeferredControllerFailDeferredErrors = {
|
|
3424
|
+
/**
|
|
3425
|
+
* Transaction not found
|
|
3426
|
+
*/
|
|
3427
|
+
404: unknown;
|
|
3428
|
+
};
|
|
3429
|
+
type DeferredControllerFailDeferredResponses = {
|
|
3430
|
+
/**
|
|
3431
|
+
* Transaction marked as failed
|
|
3432
|
+
*/
|
|
3433
|
+
200: DeferredOperationResponse;
|
|
3434
|
+
};
|
|
3435
|
+
type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
|
|
3159
3436
|
type TrustListControllerGetAllTrustListsData = {
|
|
3160
3437
|
body?: never;
|
|
3161
3438
|
path?: never;
|
|
@@ -3399,7 +3676,6 @@ type KeyChainControllerRotateResponses = {
|
|
|
3399
3676
|
* Key chain rotated successfully
|
|
3400
3677
|
*/
|
|
3401
3678
|
200: unknown;
|
|
3402
|
-
201: unknown;
|
|
3403
3679
|
};
|
|
3404
3680
|
type VerifierOfferControllerGetOfferData = {
|
|
3405
3681
|
body: PresentationRequest;
|
|
@@ -3415,9 +3691,6 @@ type VerifierOfferControllerGetOfferResponses = {
|
|
|
3415
3691
|
};
|
|
3416
3692
|
type VerifierOfferControllerGetOfferResponse = VerifierOfferControllerGetOfferResponses[keyof VerifierOfferControllerGetOfferResponses];
|
|
3417
3693
|
type StorageControllerUploadData = {
|
|
3418
|
-
/**
|
|
3419
|
-
* List of cats
|
|
3420
|
-
*/
|
|
3421
3694
|
body: FileUploadDto;
|
|
3422
3695
|
path?: never;
|
|
3423
3696
|
query?: never;
|
|
@@ -3430,4 +3703,4 @@ type StorageControllerUploadResponses = {
|
|
|
3430
3703
|
};
|
|
3431
3704
|
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
3432
3705
|
|
|
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 };
|
|
3706
|
+
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, DisplayInfo 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, CredentialConfigControllerGetConfigsResponses as aA, CredentialConfigControllerStoreCredentialConfigurationData as aB, CredentialConfigControllerStoreCredentialConfigurationResponse as aC, CredentialConfigControllerStoreCredentialConfigurationResponses as aD, CredentialConfigControllerUpdateCredentialConfigurationData as aE, CredentialConfigControllerUpdateCredentialConfigurationResponse as aF, CredentialConfigControllerUpdateCredentialConfigurationResponses as aG, CredentialConfigCreate as aH, CredentialConfigUpdate as aI, CredentialOfferControllerGetOfferData as aJ, CredentialOfferControllerGetOfferResponse as aK, CredentialOfferControllerGetOfferResponses as aL, CredentialQuery as aM, CredentialSetQuery as aN, Dcql as aO, DeferredControllerCompleteDeferredData as aP, DeferredControllerCompleteDeferredErrors as aQ, DeferredControllerCompleteDeferredResponse as aR, DeferredControllerCompleteDeferredResponses as aS, DeferredControllerFailDeferredData as aT, DeferredControllerFailDeferredErrors as aU, DeferredControllerFailDeferredResponse as aV, DeferredControllerFailDeferredResponses as aW, DeferredCredentialRequestDto as aX, DeferredOperationResponse as aY, Display as aZ, DisplayImage 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, CreateWebhookEndpointDto as ar, CredentialConfig as as, CredentialConfigControllerDeleteIssuanceConfigurationData as at, CredentialConfigControllerDeleteIssuanceConfigurationResponses as au, CredentialConfigControllerGetConfigByIdData as av, CredentialConfigControllerGetConfigByIdResponse as aw, CredentialConfigControllerGetConfigByIdResponses as ax, CredentialConfigControllerGetConfigsData as ay, CredentialConfigControllerGetConfigsResponse as az, AppControllerGetFrontendConfigData as b, KmsProviderInfoDto as b$, DisplayLogo as b0, EcJwk as b1, EcPublic as b2, EmbeddedDisclosurePolicy as b3, ExportEcJwk as b4, ExportRotationPolicyDto as b5, ExternalTrustListEntity as b6, FailDeferredDto as b7, FileUploadDto as b8, FrontendConfigResponseDto as b9, KeyChainControllerExportResponse as bA, KeyChainControllerExportResponses as bB, KeyChainControllerGetAllData as bC, KeyChainControllerGetAllResponse as bD, KeyChainControllerGetAllResponses as bE, KeyChainControllerGetByIdData as bF, KeyChainControllerGetByIdErrors as bG, KeyChainControllerGetByIdResponse as bH, KeyChainControllerGetByIdResponses as bI, KeyChainControllerGetProvidersData as bJ, KeyChainControllerGetProvidersResponse as bK, KeyChainControllerGetProvidersResponses as bL, KeyChainControllerImportData as bM, KeyChainControllerImportResponses as bN, KeyChainControllerRotateData as bO, KeyChainControllerRotateErrors as bP, KeyChainControllerRotateResponses as bQ, KeyChainControllerUpdateData as bR, KeyChainControllerUpdateErrors as bS, KeyChainControllerUpdateResponses as bT, KeyChainCreateDto as bU, KeyChainEntity as bV, KeyChainExportDto as bW, KeyChainImportDto as bX, KeyChainResponseDto as bY, KeyChainUpdateDto as bZ, KmsProviderCapabilitiesDto as b_, GrafanaConfigDto as ba, IaeActionOpenid4VpPresentation as bb, IaeActionRedirectToWeb as bc, ImportTenantDto as bd, InteractiveAuthorizationCodeResponseDto as be, InteractiveAuthorizationErrorResponseDto as bf, InteractiveAuthorizationRequestDto as bg, InternalTrustListEntity as bh, IssuanceConfig as bi, IssuanceConfigControllerGetIssuanceConfigurationsData as bj, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bk, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bl, IssuanceConfigControllerStoreIssuanceConfigurationData as bm, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bn, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bo, IssuanceDto as bp, IssuerMetadataCredentialConfig as bq, JwksResponseDto as br, KeyAttestationsRequired as bs, KeyChainControllerCreateData as bt, KeyChainControllerCreateResponses as bu, KeyChainControllerDeleteData as bv, KeyChainControllerDeleteErrors as bw, KeyChainControllerDeleteResponses as bx, KeyChainControllerExportData as by, KeyChainControllerExportErrors as bz, AppControllerGetFrontendConfigResponse as c, RotationPolicyCreateDto as c$, KmsProvidersResponseDto as c0, NoneTrustPolicy as c1, NotificationRequestDto as c2, Object$1 as c3, ObjectWritable as c4, OfferRequestDto as c5, OfferResponse as c6, ParResponseDto as c7, PolicyCredential as c8, PresentationAttachment as c9, PublicKeyInfoDto as cA, RegistrarConfigResponseDto as cB, RegistrarControllerCreateAccessCertificateData as cC, RegistrarControllerCreateAccessCertificateErrors as cD, RegistrarControllerCreateAccessCertificateResponse as cE, RegistrarControllerCreateAccessCertificateResponses as cF, RegistrarControllerCreateConfigData as cG, RegistrarControllerCreateConfigErrors as cH, RegistrarControllerCreateConfigResponse as cI, RegistrarControllerCreateConfigResponses as cJ, RegistrarControllerDeleteConfigData as cK, RegistrarControllerDeleteConfigResponse as cL, RegistrarControllerDeleteConfigResponses as cM, RegistrarControllerGetConfigData as cN, RegistrarControllerGetConfigErrors as cO, RegistrarControllerGetConfigResponse as cP, RegistrarControllerGetConfigResponses as cQ, RegistrarControllerUpdateConfigData as cR, RegistrarControllerUpdateConfigErrors as cS, RegistrarControllerUpdateConfigResponse as cT, RegistrarControllerUpdateConfigResponses as cU, RegistrationCertificateBody as cV, RegistrationCertificatePurpose as cW, RegistrationCertificateRequest as cX, ResolveIssuerMetadataDto as cY, RoleDto as cZ, RootOfTrustPolicy as c_, PresentationConfig as ca, PresentationConfigCreateDto as cb, PresentationConfigUpdateDto as cc, PresentationConfigWritable as cd, PresentationDuringIssuanceConfig as ce, PresentationManagementControllerConfigurationData as cf, PresentationManagementControllerConfigurationResponse as cg, PresentationManagementControllerConfigurationResponses as ch, PresentationManagementControllerDeleteConfigurationData as ci, PresentationManagementControllerDeleteConfigurationResponses as cj, PresentationManagementControllerGetConfigurationData as ck, PresentationManagementControllerGetConfigurationResponse as cl, PresentationManagementControllerGetConfigurationResponses as cm, PresentationManagementControllerReissueRegistrationCertificateData as cn, PresentationManagementControllerReissueRegistrationCertificateErrors as co, PresentationManagementControllerReissueRegistrationCertificateResponses as cp, PresentationManagementControllerResolveIssuerMetadataData as cq, PresentationManagementControllerResolveIssuerMetadataErrors as cr, PresentationManagementControllerResolveIssuerMetadataResponses as cs, PresentationManagementControllerStorePresentationConfigData as ct, PresentationManagementControllerStorePresentationConfigResponse as cu, PresentationManagementControllerStorePresentationConfigResponses as cv, PresentationManagementControllerUpdateConfigurationData as cw, PresentationManagementControllerUpdateConfigurationResponse as cx, PresentationManagementControllerUpdateConfigurationResponses as cy, PresentationRequest as cz, AppControllerGetFrontendConfigResponses as d, TenantControllerDeleteTenantResponses as d$, RotationPolicyImportDto as d0, RotationPolicyResponseDto as d1, RotationPolicyUpdateDto as d2, SchemaResponse as d3, SessionConfigControllerGetConfigData as d4, SessionConfigControllerGetConfigResponse as d5, SessionConfigControllerGetConfigResponses as d6, SessionConfigControllerResetConfigData as d7, SessionConfigControllerResetConfigResponses as d8, SessionConfigControllerUpdateConfigData as d9, StatusListConfigControllerResetConfigResponse as dA, StatusListConfigControllerResetConfigResponses as dB, StatusListConfigControllerUpdateConfigData as dC, StatusListConfigControllerUpdateConfigResponse as dD, StatusListConfigControllerUpdateConfigResponses as dE, StatusListImportDto as dF, StatusListManagementControllerCreateListData as dG, StatusListManagementControllerCreateListResponse as dH, StatusListManagementControllerCreateListResponses as dI, StatusListManagementControllerDeleteListData as dJ, StatusListManagementControllerDeleteListResponse as dK, StatusListManagementControllerDeleteListResponses as dL, StatusListManagementControllerGetListData as dM, StatusListManagementControllerGetListResponse as dN, StatusListManagementControllerGetListResponses as dO, StatusListManagementControllerGetListsData as dP, StatusListManagementControllerGetListsResponse as dQ, StatusListManagementControllerGetListsResponses as dR, StatusListManagementControllerUpdateListData as dS, StatusListManagementControllerUpdateListResponse as dT, StatusListManagementControllerUpdateListResponses as dU, StatusListResponseDto as dV, StatusUpdateDto as dW, StorageControllerUploadData as dX, StorageControllerUploadResponse as dY, StorageControllerUploadResponses as dZ, TenantControllerDeleteTenantData as d_, SessionConfigControllerUpdateConfigResponse as da, SessionConfigControllerUpdateConfigResponses as db, SessionControllerDeleteSessionData as dc, SessionControllerDeleteSessionResponses as dd, SessionControllerGetAllSessionsData as de, SessionControllerGetAllSessionsResponse as df, SessionControllerGetAllSessionsResponses as dg, SessionControllerGetSessionData as dh, SessionControllerGetSessionLogsData as di, SessionControllerGetSessionLogsResponse as dj, SessionControllerGetSessionLogsResponses as dk, SessionControllerGetSessionResponse as dl, SessionControllerGetSessionResponses as dm, SessionControllerRevokeAllData as dn, SessionControllerRevokeAllResponses as dp, SessionEventsControllerSubscribeToSessionEventsData as dq, SessionEventsControllerSubscribeToSessionEventsResponses as dr, SessionLogEntryResponseDto as ds, SessionStorageConfig as dt, StatusListAggregationDto as du, StatusListConfig as dv, StatusListConfigControllerGetConfigData as dw, StatusListConfigControllerGetConfigResponse as dx, StatusListConfigControllerGetConfigResponses as dy, StatusListConfigControllerResetConfigData as dz, AppControllerGetVersionData as e, WebhookEndpointControllerDeleteResponses as e$, TenantControllerGetTenantData as e0, TenantControllerGetTenantResponse as e1, TenantControllerGetTenantResponses as e2, TenantControllerGetTenantsData as e3, TenantControllerGetTenantsResponse as e4, TenantControllerGetTenantsResponses as e5, TenantControllerInitTenantData as e6, TenantControllerInitTenantResponse as e7, TenantControllerInitTenantResponses as e8, TenantControllerUpdateTenantData as e9, TrustListControllerUpdateTrustListData as eA, TrustListControllerUpdateTrustListResponse as eB, TrustListControllerUpdateTrustListResponses as eC, TrustListCreateDto as eD, TrustListEntityInfo as eE, TrustListVersion as eF, TrustedAuthorityQuery as eG, UpdateAttributeProviderDto as eH, UpdateClientDto as eI, UpdateRegistrarConfigDto as eJ, UpdateSessionConfigDto as eK, UpdateStatusListConfigDto as eL, UpdateStatusListDto as eM, UpdateTenantDto as eN, UpdateWebhookEndpointDto as eO, UpstreamOidcConfig as eP, Vct as eQ, VerifierOfferControllerGetOfferData as eR, VerifierOfferControllerGetOfferResponse as eS, VerifierOfferControllerGetOfferResponses as eT, WebHookAuthConfigHeader as eU, WebHookAuthConfigNone as eV, WebhookConfig as eW, WebhookEndpointControllerCreateData as eX, WebhookEndpointControllerCreateResponses as eY, WebhookEndpointControllerDeleteData as eZ, WebhookEndpointControllerDeleteErrors as e_, TenantControllerUpdateTenantResponse as ea, TenantControllerUpdateTenantResponses as eb, TenantEntity as ec, TokenResponse as ed, TransactionData as ee, TrustList as ef, TrustListControllerCreateTrustListData as eg, TrustListControllerCreateTrustListResponse as eh, TrustListControllerCreateTrustListResponses as ei, TrustListControllerDeleteTrustListData as ej, TrustListControllerDeleteTrustListResponses as ek, TrustListControllerExportTrustListData as el, TrustListControllerExportTrustListResponse as em, TrustListControllerExportTrustListResponses as en, TrustListControllerGetAllTrustListsData as eo, TrustListControllerGetAllTrustListsResponse as ep, TrustListControllerGetAllTrustListsResponses as eq, TrustListControllerGetTrustListData as er, TrustListControllerGetTrustListResponse as es, TrustListControllerGetTrustListResponses as et, TrustListControllerGetTrustListVersionData as eu, TrustListControllerGetTrustListVersionResponse as ev, TrustListControllerGetTrustListVersionResponses as ew, TrustListControllerGetTrustListVersionsData as ex, TrustListControllerGetTrustListVersionsResponse as ey, TrustListControllerGetTrustListVersionsResponses as ez, AppControllerGetVersionResponses as f, WebhookEndpointControllerGetAllData as f0, WebhookEndpointControllerGetAllResponses as f1, WebhookEndpointControllerGetByIdData as f2, WebhookEndpointControllerGetByIdErrors as f3, WebhookEndpointControllerGetByIdResponses as f4, WebhookEndpointControllerUpdateData as f5, WebhookEndpointControllerUpdateErrors as f6, WebhookEndpointControllerUpdateResponses as f7, WebhookEndpointEntity as f8, 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 };
|