@eudiplo/sdk-core 6.2.0 → 7.0.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.gen.d.mts +1 -1
- package/dist/api/client.gen.d.ts +1 -1
- package/dist/api/index.d.mts +2 -2
- package/dist/api/index.d.ts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/{types.gen-01j05Y1J.d.mts → types.gen-DrLP5Bfl.d.mts} +487 -302
- package/dist/{types.gen-01j05Y1J.d.ts → types.gen-DrLP5Bfl.d.ts} +487 -302
- package/package.json +2 -2
|
@@ -592,6 +592,13 @@ type Session = {
|
|
|
592
592
|
* Signed presentation auth request.
|
|
593
593
|
*/
|
|
594
594
|
requestObject?: string;
|
|
595
|
+
/**
|
|
596
|
+
* Per-authorization-request private encryption key used to decrypt
|
|
597
|
+
* wallet responses. Encrypted at rest.
|
|
598
|
+
*/
|
|
599
|
+
responseEncryptionPrivateJwk?: {
|
|
600
|
+
[key: string]: unknown;
|
|
601
|
+
};
|
|
595
602
|
/**
|
|
596
603
|
* Verified credentials from the presentation process.
|
|
597
604
|
* Encrypted at rest - contains personal information.
|
|
@@ -600,7 +607,7 @@ type Session = {
|
|
|
600
607
|
[key: string]: unknown;
|
|
601
608
|
}>;
|
|
602
609
|
/**
|
|
603
|
-
*
|
|
610
|
+
* Nonce from the Verifiable Presentation request.
|
|
604
611
|
*/
|
|
605
612
|
vp_nonce?: string;
|
|
606
613
|
/**
|
|
@@ -636,6 +643,10 @@ type Session = {
|
|
|
636
643
|
* Can be overridden per-request from the presentation configuration.
|
|
637
644
|
*/
|
|
638
645
|
transaction_data?: Array<TransactionData>;
|
|
646
|
+
/**
|
|
647
|
+
* Per-session clock skew tolerance for presentation credential JWT time validation.
|
|
648
|
+
*/
|
|
649
|
+
skewSeconds?: number;
|
|
639
650
|
externalIssuer?: string;
|
|
640
651
|
/**
|
|
641
652
|
* The subject (sub) from the external authorization server token.
|
|
@@ -974,6 +985,19 @@ type BuiltInAuthorizationServerConfig = {
|
|
|
974
985
|
*/
|
|
975
986
|
requireDPoP?: boolean;
|
|
976
987
|
};
|
|
988
|
+
type WalletProviderTrustListRefDto = {
|
|
989
|
+
url: string;
|
|
990
|
+
/**
|
|
991
|
+
* JWK used to verify the trust-list JWT signature.
|
|
992
|
+
*/
|
|
993
|
+
verifierKey?: {
|
|
994
|
+
[key: string]: unknown;
|
|
995
|
+
};
|
|
996
|
+
/**
|
|
997
|
+
* Base64 DER-encoded X.509 certificate used to verify the trust-list JWT signature.
|
|
998
|
+
*/
|
|
999
|
+
verifierX509Der?: string;
|
|
1000
|
+
};
|
|
977
1001
|
type FederationTrustAnchorConfig = {
|
|
978
1002
|
/**
|
|
979
1003
|
* Entity identifier (sub) of the federation trust anchor.
|
|
@@ -1060,6 +1084,11 @@ type DisplayInfo = {
|
|
|
1060
1084
|
logo?: DisplayLogo;
|
|
1061
1085
|
};
|
|
1062
1086
|
type IssuanceConfig = {
|
|
1087
|
+
/**
|
|
1088
|
+
* Trust lists containing trusted wallet providers.
|
|
1089
|
+
* Each entry MUST include either `verifierKey` or `verifierX509Der`.
|
|
1090
|
+
*/
|
|
1091
|
+
walletProviderTrustLists?: Array<WalletProviderTrustListRefDto>;
|
|
1063
1092
|
/**
|
|
1064
1093
|
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
1065
1094
|
*/
|
|
@@ -1113,12 +1142,6 @@ type IssuanceConfig = {
|
|
|
1113
1142
|
* Default value is false.
|
|
1114
1143
|
*/
|
|
1115
1144
|
walletAttestationRequired?: boolean;
|
|
1116
|
-
/**
|
|
1117
|
-
* URLs of trust lists containing trusted wallet providers.
|
|
1118
|
-
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
1119
|
-
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
1120
|
-
*/
|
|
1121
|
-
walletProviderTrustLists?: Array<string>;
|
|
1122
1145
|
display: Array<DisplayInfo>;
|
|
1123
1146
|
/**
|
|
1124
1147
|
* The timestamp when the VP request was created.
|
|
@@ -1130,6 +1153,11 @@ type IssuanceConfig = {
|
|
|
1130
1153
|
updatedAt: string;
|
|
1131
1154
|
};
|
|
1132
1155
|
type UpdateIssuanceDto = {
|
|
1156
|
+
/**
|
|
1157
|
+
* Trust lists containing trusted wallet providers.
|
|
1158
|
+
* Each entry MUST include either `verifierKey` or `verifierX509Der`.
|
|
1159
|
+
*/
|
|
1160
|
+
walletProviderTrustLists?: Array<WalletProviderTrustListRefDto>;
|
|
1133
1161
|
/**
|
|
1134
1162
|
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
1135
1163
|
*/
|
|
@@ -1179,12 +1207,6 @@ type UpdateIssuanceDto = {
|
|
|
1179
1207
|
* Default value is false.
|
|
1180
1208
|
*/
|
|
1181
1209
|
walletAttestationRequired?: boolean;
|
|
1182
|
-
/**
|
|
1183
|
-
* URLs of trust lists containing trusted wallet providers.
|
|
1184
|
-
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
1185
|
-
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
1186
|
-
*/
|
|
1187
|
-
walletProviderTrustLists?: Array<string>;
|
|
1188
1210
|
display?: Array<DisplayInfo>;
|
|
1189
1211
|
};
|
|
1190
1212
|
type ClaimsQuery = {
|
|
@@ -1192,31 +1214,15 @@ type ClaimsQuery = {
|
|
|
1192
1214
|
path: Array<string>;
|
|
1193
1215
|
values?: Array<string>;
|
|
1194
1216
|
};
|
|
1195
|
-
type TrustedAuthorityQuery = {
|
|
1196
|
-
type: 'etsi_tl' | 'openid_federation';
|
|
1197
|
-
values: Array<string>;
|
|
1198
|
-
};
|
|
1199
|
-
type CredentialQuery = {
|
|
1200
|
-
/**
|
|
1201
|
-
* Ordered alternative claim combinations for this credential query.
|
|
1202
|
-
*/
|
|
1203
|
-
claim_sets?: Array<Array<string>>;
|
|
1204
|
-
id: string;
|
|
1205
|
-
format: string;
|
|
1206
|
-
multiple?: boolean;
|
|
1207
|
-
claims?: Array<ClaimsQuery>;
|
|
1208
|
-
meta: {
|
|
1209
|
-
[key: string]: unknown;
|
|
1210
|
-
};
|
|
1211
|
-
trusted_authorities?: Array<TrustedAuthorityQuery>;
|
|
1212
|
-
};
|
|
1213
1217
|
type CredentialSetQuery = {
|
|
1214
1218
|
options: Array<Array<string>>;
|
|
1215
1219
|
required?: boolean;
|
|
1216
1220
|
};
|
|
1217
1221
|
type PolicyCredential = {
|
|
1218
1222
|
claims?: Array<ClaimsQuery>;
|
|
1219
|
-
credentials: Array<
|
|
1223
|
+
credentials: Array<{
|
|
1224
|
+
[key: string]: unknown;
|
|
1225
|
+
}>;
|
|
1220
1226
|
credential_sets?: Array<CredentialSetQuery>;
|
|
1221
1227
|
};
|
|
1222
1228
|
type AttestationBasedPolicy = {
|
|
@@ -1397,6 +1403,10 @@ type IssuerMetadataCredentialConfig = {
|
|
|
1397
1403
|
* for this specific credential configuration.
|
|
1398
1404
|
*/
|
|
1399
1405
|
keyAttestationsRequired?: KeyAttestationsRequired;
|
|
1406
|
+
/**
|
|
1407
|
+
* Supported proof types for this credential configuration. Defaults to ['attestation', 'jwt'].
|
|
1408
|
+
*/
|
|
1409
|
+
proofTypesSupported?: Array<'jwt' | 'attestation'>;
|
|
1400
1410
|
format: 'mso_mdoc' | 'dc+sd-jwt';
|
|
1401
1411
|
display: Array<Display>;
|
|
1402
1412
|
scope?: string;
|
|
@@ -1504,6 +1514,11 @@ type KeyChainEntity = {
|
|
|
1504
1514
|
* This field stores the provider-specific key reference for the active signing key.
|
|
1505
1515
|
*/
|
|
1506
1516
|
externalKeyId?: string;
|
|
1517
|
+
/**
|
|
1518
|
+
* External key identifier for cloud KMS providers for the root CA key.
|
|
1519
|
+
* Used when rotating internal-chain key chains backed by external KMS.
|
|
1520
|
+
*/
|
|
1521
|
+
rootExternalKeyId?: string;
|
|
1507
1522
|
rootJwk?: {
|
|
1508
1523
|
[key: string]: unknown;
|
|
1509
1524
|
};
|
|
@@ -2109,8 +2124,102 @@ type TrustListVersion = {
|
|
|
2109
2124
|
jwt: string;
|
|
2110
2125
|
createdAt: string;
|
|
2111
2126
|
};
|
|
2127
|
+
type TrustListRef = {
|
|
2128
|
+
/**
|
|
2129
|
+
* Managed local trust-list identifier. When provided, verifier material is resolved server-side from the trust list key chain.
|
|
2130
|
+
*/
|
|
2131
|
+
trustListId?: string;
|
|
2132
|
+
/**
|
|
2133
|
+
* Trust-list JWT URL. Required for external trust lists when trustListId is not set.
|
|
2134
|
+
*/
|
|
2135
|
+
url?: string;
|
|
2136
|
+
/**
|
|
2137
|
+
* JWK used to verify trust-list JWT signatures for external trusted authority values.
|
|
2138
|
+
*/
|
|
2139
|
+
verifierKey?: {
|
|
2140
|
+
[key: string]: unknown;
|
|
2141
|
+
};
|
|
2142
|
+
/**
|
|
2143
|
+
* Base64 DER-encoded X.509 certificate used to verify trust-list JWT signatures for external trusted authority values.
|
|
2144
|
+
*/
|
|
2145
|
+
verifierX509Der?: string;
|
|
2146
|
+
};
|
|
2147
|
+
type TrustedAuthorityQueryEtsiTl = {
|
|
2148
|
+
type: 'etsi_tl';
|
|
2149
|
+
values: Array<TrustListRef>;
|
|
2150
|
+
};
|
|
2151
|
+
type TrustedAuthorityQueryOpenIdFederation = {
|
|
2152
|
+
type: 'openid_federation';
|
|
2153
|
+
values: Array<string>;
|
|
2154
|
+
};
|
|
2155
|
+
type DcSdJwtCredentialQueryMeta = {
|
|
2156
|
+
/**
|
|
2157
|
+
* VCT identifiers accepted for dc+sd-jwt credentials.
|
|
2158
|
+
*/
|
|
2159
|
+
vct_values: Array<string>;
|
|
2160
|
+
};
|
|
2161
|
+
type MsoMdocCredentialQueryMeta = {
|
|
2162
|
+
/**
|
|
2163
|
+
* Document type identifier accepted for mso_mdoc credentials.
|
|
2164
|
+
*/
|
|
2165
|
+
doctype_value: string;
|
|
2166
|
+
};
|
|
2167
|
+
type MsoMdocClaimsQuery = {
|
|
2168
|
+
/**
|
|
2169
|
+
* Whether the holder should be allowed to retain the claim in an mso_mdoc response.
|
|
2170
|
+
*/
|
|
2171
|
+
intent_to_retain?: boolean;
|
|
2172
|
+
id?: string;
|
|
2173
|
+
path: Array<string>;
|
|
2174
|
+
values?: Array<string>;
|
|
2175
|
+
};
|
|
2176
|
+
type CredentialQueryDcSdJwt = {
|
|
2177
|
+
/**
|
|
2178
|
+
* Credential format discriminator.
|
|
2179
|
+
*/
|
|
2180
|
+
format: 'dc+sd-jwt';
|
|
2181
|
+
/**
|
|
2182
|
+
* Ordered alternative claim combinations for this credential query.
|
|
2183
|
+
*/
|
|
2184
|
+
claim_sets?: Array<Array<string>>;
|
|
2185
|
+
/**
|
|
2186
|
+
* Trusted authority constraints (discriminated by type) for this credential query.
|
|
2187
|
+
*/
|
|
2188
|
+
trusted_authorities?: Array<TrustedAuthorityQueryEtsiTl | TrustedAuthorityQueryOpenIdFederation>;
|
|
2189
|
+
/**
|
|
2190
|
+
* dc+sd-jwt schema metadata for the requested credential.
|
|
2191
|
+
*/
|
|
2192
|
+
meta: DcSdJwtCredentialQueryMeta;
|
|
2193
|
+
claims?: Array<ClaimsQuery>;
|
|
2194
|
+
id: string;
|
|
2195
|
+
multiple?: boolean;
|
|
2196
|
+
};
|
|
2197
|
+
type CredentialQueryMsoMdoc = {
|
|
2198
|
+
/**
|
|
2199
|
+
* Credential format discriminator.
|
|
2200
|
+
*/
|
|
2201
|
+
format: 'mso_mdoc';
|
|
2202
|
+
/**
|
|
2203
|
+
* Ordered alternative claim combinations for this credential query.
|
|
2204
|
+
*/
|
|
2205
|
+
claim_sets?: Array<Array<string>>;
|
|
2206
|
+
/**
|
|
2207
|
+
* Trusted authority constraints (discriminated by type) for this credential query.
|
|
2208
|
+
*/
|
|
2209
|
+
trusted_authorities?: Array<TrustedAuthorityQueryEtsiTl | TrustedAuthorityQueryOpenIdFederation>;
|
|
2210
|
+
/**
|
|
2211
|
+
* mso_mdoc document type metadata for the requested credential.
|
|
2212
|
+
*/
|
|
2213
|
+
meta: MsoMdocCredentialQueryMeta;
|
|
2214
|
+
claims?: Array<MsoMdocClaimsQuery>;
|
|
2215
|
+
id: string;
|
|
2216
|
+
multiple?: boolean;
|
|
2217
|
+
};
|
|
2112
2218
|
type Dcql = {
|
|
2113
|
-
|
|
2219
|
+
/**
|
|
2220
|
+
* Format-discriminated credential queries.
|
|
2221
|
+
*/
|
|
2222
|
+
credentials?: Array<CredentialQueryDcSdJwt | CredentialQueryMsoMdoc>;
|
|
2114
2223
|
credential_sets?: Array<CredentialSetQuery>;
|
|
2115
2224
|
};
|
|
2116
2225
|
type RegistrationCertificatePurpose = {
|
|
@@ -2154,6 +2263,14 @@ type PresentationAttachment = {
|
|
|
2154
2263
|
credential_ids?: Array<string>;
|
|
2155
2264
|
};
|
|
2156
2265
|
type PresentationConfig = {
|
|
2266
|
+
/**
|
|
2267
|
+
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
2268
|
+
*/
|
|
2269
|
+
skewSeconds?: number;
|
|
2270
|
+
/**
|
|
2271
|
+
* Status list verification mode for presentations: strict (default), best_effort, or disabled.
|
|
2272
|
+
*/
|
|
2273
|
+
statusCheckMode?: 'strict' | 'best_effort' | 'disabled';
|
|
2157
2274
|
/**
|
|
2158
2275
|
* Server-managed cache of the materialized registration certificate. Read-only; values supplied by clients are ignored.
|
|
2159
2276
|
*/
|
|
@@ -2176,10 +2293,6 @@ type PresentationConfig = {
|
|
|
2176
2293
|
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
2177
2294
|
*/
|
|
2178
2295
|
lifeTime?: number;
|
|
2179
|
-
/**
|
|
2180
|
-
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
2181
|
-
*/
|
|
2182
|
-
skewSeconds?: number;
|
|
2183
2296
|
/**
|
|
2184
2297
|
* The DCQL query to be used for the VP request.
|
|
2185
2298
|
*/
|
|
@@ -2194,13 +2307,6 @@ type PresentationConfig = {
|
|
|
2194
2307
|
* Optional: if set, notifications will be sent to this endpoint.
|
|
2195
2308
|
*/
|
|
2196
2309
|
webhookEndpointId?: string;
|
|
2197
|
-
webhookEndpoint?: WebhookEndpointEntity;
|
|
2198
|
-
/**
|
|
2199
|
-
* Optional webhook URL to receive the response.
|
|
2200
|
-
*
|
|
2201
|
-
* @deprecated
|
|
2202
|
-
*/
|
|
2203
|
-
webhook?: WebhookConfig;
|
|
2204
2310
|
/**
|
|
2205
2311
|
* The timestamp when the VP request was created.
|
|
2206
2312
|
*/
|
|
@@ -2228,6 +2334,18 @@ type PresentationConfig = {
|
|
|
2228
2334
|
* at the application level in the service layer.
|
|
2229
2335
|
*/
|
|
2230
2336
|
accessKeyChainId?: string;
|
|
2337
|
+
/**
|
|
2338
|
+
* Enable reader authentication for the ISO 18013-7 Annex C (DC API) flow.
|
|
2339
|
+
*
|
|
2340
|
+
* When `true`, the DeviceRequest embeds a detached `readerAuth` COSE_Sign1
|
|
2341
|
+
* signed with the tenant's Access key chain (selected by
|
|
2342
|
+
* {@link accessKeyChainId}), letting the wallet cryptographically
|
|
2343
|
+
* authenticate the verifier — the mDOC equivalent of the signed request
|
|
2344
|
+
* object used in the OID4VP flow. Defaults to disabled (null/false).
|
|
2345
|
+
*
|
|
2346
|
+
* Only affects `response_type: "iso-18013-7"` offers.
|
|
2347
|
+
*/
|
|
2348
|
+
readerAuth?: boolean;
|
|
2231
2349
|
};
|
|
2232
2350
|
type ResolveIssuerMetadataDto = {
|
|
2233
2351
|
/**
|
|
@@ -2248,6 +2366,14 @@ type ResolveSchemaMetadataJwtDto = {
|
|
|
2248
2366
|
signedJwt: string;
|
|
2249
2367
|
};
|
|
2250
2368
|
type PresentationConfigCreateDto = {
|
|
2369
|
+
/**
|
|
2370
|
+
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
2371
|
+
*/
|
|
2372
|
+
skewSeconds?: number;
|
|
2373
|
+
/**
|
|
2374
|
+
* Status list verification mode for presentations: strict (default), best_effort, or disabled.
|
|
2375
|
+
*/
|
|
2376
|
+
statusCheckMode?: 'strict' | 'best_effort' | 'disabled';
|
|
2251
2377
|
/**
|
|
2252
2378
|
* Unique identifier for the VP request.
|
|
2253
2379
|
*/
|
|
@@ -2260,10 +2386,6 @@ type PresentationConfigCreateDto = {
|
|
|
2260
2386
|
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
2261
2387
|
*/
|
|
2262
2388
|
lifeTime?: number;
|
|
2263
|
-
/**
|
|
2264
|
-
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
2265
|
-
*/
|
|
2266
|
-
skewSeconds?: number;
|
|
2267
2389
|
/**
|
|
2268
2390
|
* The DCQL query to be used for the VP request.
|
|
2269
2391
|
*/
|
|
@@ -2278,13 +2400,6 @@ type PresentationConfigCreateDto = {
|
|
|
2278
2400
|
* Optional: if set, notifications will be sent to this endpoint.
|
|
2279
2401
|
*/
|
|
2280
2402
|
webhookEndpointId?: string;
|
|
2281
|
-
webhookEndpoint?: WebhookEndpointEntity;
|
|
2282
|
-
/**
|
|
2283
|
-
* Optional webhook URL to receive the response.
|
|
2284
|
-
*
|
|
2285
|
-
* @deprecated
|
|
2286
|
-
*/
|
|
2287
|
-
webhook?: WebhookConfig;
|
|
2288
2403
|
/**
|
|
2289
2404
|
* Attestation that should be attached
|
|
2290
2405
|
*/
|
|
@@ -2304,8 +2419,28 @@ type PresentationConfigCreateDto = {
|
|
|
2304
2419
|
* at the application level in the service layer.
|
|
2305
2420
|
*/
|
|
2306
2421
|
accessKeyChainId?: string;
|
|
2422
|
+
/**
|
|
2423
|
+
* Enable reader authentication for the ISO 18013-7 Annex C (DC API) flow.
|
|
2424
|
+
*
|
|
2425
|
+
* When `true`, the DeviceRequest embeds a detached `readerAuth` COSE_Sign1
|
|
2426
|
+
* signed with the tenant's Access key chain (selected by
|
|
2427
|
+
* {@link accessKeyChainId}), letting the wallet cryptographically
|
|
2428
|
+
* authenticate the verifier — the mDOC equivalent of the signed request
|
|
2429
|
+
* object used in the OID4VP flow. Defaults to disabled (null/false).
|
|
2430
|
+
*
|
|
2431
|
+
* Only affects `response_type: "iso-18013-7"` offers.
|
|
2432
|
+
*/
|
|
2433
|
+
readerAuth?: boolean;
|
|
2307
2434
|
};
|
|
2308
2435
|
type PresentationConfigUpdateDto = {
|
|
2436
|
+
/**
|
|
2437
|
+
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
2438
|
+
*/
|
|
2439
|
+
skewSeconds?: number;
|
|
2440
|
+
/**
|
|
2441
|
+
* Status list verification mode for presentations: strict (default), best_effort, or disabled.
|
|
2442
|
+
*/
|
|
2443
|
+
statusCheckMode?: 'strict' | 'best_effort' | 'disabled';
|
|
2309
2444
|
/**
|
|
2310
2445
|
* Unique identifier for the VP request.
|
|
2311
2446
|
*/
|
|
@@ -2318,10 +2453,6 @@ type PresentationConfigUpdateDto = {
|
|
|
2318
2453
|
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
2319
2454
|
*/
|
|
2320
2455
|
lifeTime?: number;
|
|
2321
|
-
/**
|
|
2322
|
-
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
2323
|
-
*/
|
|
2324
|
-
skewSeconds?: number;
|
|
2325
2456
|
/**
|
|
2326
2457
|
* The DCQL query to be used for the VP request.
|
|
2327
2458
|
*/
|
|
@@ -2336,13 +2467,6 @@ type PresentationConfigUpdateDto = {
|
|
|
2336
2467
|
* Optional: if set, notifications will be sent to this endpoint.
|
|
2337
2468
|
*/
|
|
2338
2469
|
webhookEndpointId?: string;
|
|
2339
|
-
webhookEndpoint?: WebhookEndpointEntity;
|
|
2340
|
-
/**
|
|
2341
|
-
* Optional webhook URL to receive the response.
|
|
2342
|
-
*
|
|
2343
|
-
* @deprecated
|
|
2344
|
-
*/
|
|
2345
|
-
webhook?: WebhookConfig;
|
|
2346
2470
|
/**
|
|
2347
2471
|
* Attestation that should be attached
|
|
2348
2472
|
*/
|
|
@@ -2362,6 +2486,18 @@ type PresentationConfigUpdateDto = {
|
|
|
2362
2486
|
* at the application level in the service layer.
|
|
2363
2487
|
*/
|
|
2364
2488
|
accessKeyChainId?: string;
|
|
2489
|
+
/**
|
|
2490
|
+
* Enable reader authentication for the ISO 18013-7 Annex C (DC API) flow.
|
|
2491
|
+
*
|
|
2492
|
+
* When `true`, the DeviceRequest embeds a detached `readerAuth` COSE_Sign1
|
|
2493
|
+
* signed with the tenant's Access key chain (selected by
|
|
2494
|
+
* {@link accessKeyChainId}), letting the wallet cryptographically
|
|
2495
|
+
* authenticate the verifier — the mDOC equivalent of the signed request
|
|
2496
|
+
* object used in the OID4VP flow. Defaults to disabled (null/false).
|
|
2497
|
+
*
|
|
2498
|
+
* Only affects `response_type: "iso-18013-7"` offers.
|
|
2499
|
+
*/
|
|
2500
|
+
readerAuth?: boolean;
|
|
2365
2501
|
};
|
|
2366
2502
|
type RegistrationCertificateDefaults = {
|
|
2367
2503
|
/**
|
|
@@ -2792,225 +2928,262 @@ type KmsProvidersResponseDto = {
|
|
|
2792
2928
|
*/
|
|
2793
2929
|
default: string;
|
|
2794
2930
|
};
|
|
2795
|
-
type DbKmsConfigDto = {
|
|
2796
|
-
/**
|
|
2797
|
-
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2798
|
-
*/
|
|
2799
|
-
id: string;
|
|
2800
|
-
/**
|
|
2801
|
-
* Type of the KMS provider.
|
|
2802
|
-
*/
|
|
2803
|
-
type: 'db';
|
|
2804
|
-
/**
|
|
2805
|
-
* Human-readable description of this provider instance.
|
|
2806
|
-
*/
|
|
2807
|
-
description?: string;
|
|
2808
|
-
};
|
|
2809
|
-
type VaultKmsConfigDto = {
|
|
2810
|
-
/**
|
|
2811
|
-
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2812
|
-
*/
|
|
2813
|
-
id: string;
|
|
2814
|
-
/**
|
|
2815
|
-
* Type of the KMS provider.
|
|
2816
|
-
*/
|
|
2817
|
-
type: 'vault';
|
|
2818
|
-
/**
|
|
2819
|
-
* Human-readable description of this provider instance.
|
|
2820
|
-
*/
|
|
2821
|
-
description?: string;
|
|
2822
|
-
/**
|
|
2823
|
-
* URL of the HashiCorp Vault instance. Supports ${ENV_VAR} placeholders.
|
|
2824
|
-
*/
|
|
2825
|
-
vaultUrl: string;
|
|
2826
|
-
/**
|
|
2827
|
-
* Authentication token for HashiCorp Vault. Supports ${ENV_VAR} placeholders.
|
|
2828
|
-
*/
|
|
2829
|
-
vaultToken: string;
|
|
2830
|
-
};
|
|
2831
|
-
type AwsKmsConfigDto = {
|
|
2832
|
-
/**
|
|
2833
|
-
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2834
|
-
*/
|
|
2835
|
-
id: string;
|
|
2836
|
-
/**
|
|
2837
|
-
* Type of the KMS provider.
|
|
2838
|
-
*/
|
|
2839
|
-
type: 'aws-kms';
|
|
2840
|
-
/**
|
|
2841
|
-
* Human-readable description of this provider instance.
|
|
2842
|
-
*/
|
|
2843
|
-
description?: string;
|
|
2844
|
-
/**
|
|
2845
|
-
* AWS region for KMS. Supports ${ENV_VAR} placeholders.
|
|
2846
|
-
*/
|
|
2847
|
-
region: string;
|
|
2848
|
-
/**
|
|
2849
|
-
* AWS access key ID. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2850
|
-
*/
|
|
2851
|
-
accessKeyId?: string;
|
|
2852
|
-
/**
|
|
2853
|
-
* AWS secret access key. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2854
|
-
*/
|
|
2855
|
-
secretAccessKey?: string;
|
|
2856
|
-
};
|
|
2857
|
-
type Pkcs11KmsConfigDto = {
|
|
2858
|
-
/**
|
|
2859
|
-
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2860
|
-
*/
|
|
2861
|
-
id: string;
|
|
2862
|
-
/**
|
|
2863
|
-
* Type of the KMS provider.
|
|
2864
|
-
*/
|
|
2865
|
-
type: 'pkcs11';
|
|
2866
|
-
/**
|
|
2867
|
-
* Human-readable description of this provider instance.
|
|
2868
|
-
*/
|
|
2869
|
-
description?: string;
|
|
2870
|
-
/**
|
|
2871
|
-
* Absolute path to the PKCS#11 module library (.so/.dll/.dylib). Supports ${ENV_VAR} placeholders.
|
|
2872
|
-
*/
|
|
2873
|
-
library: string;
|
|
2874
|
-
/**
|
|
2875
|
-
* Slot selection. Either the numeric slot index (as a string for ENV interpolation, or a number) or the token label. Supports ${ENV_VAR} placeholders.
|
|
2876
|
-
*/
|
|
2877
|
-
slot: {
|
|
2878
|
-
[key: string]: unknown;
|
|
2879
|
-
};
|
|
2880
|
-
/**
|
|
2881
|
-
* User PIN used for C_Login. Supports ${ENV_VAR} placeholders.
|
|
2882
|
-
*/
|
|
2883
|
-
pin: string;
|
|
2884
|
-
/**
|
|
2885
|
-
* Open the PKCS#11 session in read-only mode. Defaults to false.
|
|
2886
|
-
*/
|
|
2887
|
-
readOnly?: boolean;
|
|
2888
|
-
};
|
|
2889
|
-
type HttpAuthBaseConfigDto = {
|
|
2890
|
-
/**
|
|
2891
|
-
* Authentication method for the remote KMS service.
|
|
2892
|
-
*/
|
|
2893
|
-
type: 'none' | 'bearer' | 'oauth2-client-credentials' | 'mtls';
|
|
2894
|
-
};
|
|
2895
|
-
type HttpKmsConfigDto = {
|
|
2896
|
-
/**
|
|
2897
|
-
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2898
|
-
*/
|
|
2899
|
-
id: string;
|
|
2900
|
-
/**
|
|
2901
|
-
* Type of the KMS provider.
|
|
2902
|
-
*/
|
|
2903
|
-
type: 'http';
|
|
2904
|
-
/**
|
|
2905
|
-
* Human-readable description of this provider instance.
|
|
2906
|
-
*/
|
|
2907
|
-
description?: string;
|
|
2908
|
-
/**
|
|
2909
|
-
* Base URL of the remote KMS microservice (no trailing slash). Supports ${ENV_VAR} placeholders.
|
|
2910
|
-
*/
|
|
2911
|
-
baseUrl: string;
|
|
2912
|
-
/**
|
|
2913
|
-
* Authentication method for the remote KMS service. Supports bearer token, OAuth 2.0 client credentials, and mutual TLS. Omit (or set type to "none") for unauthenticated services.
|
|
2914
|
-
*/
|
|
2915
|
-
auth?: HttpAuthBaseConfigDto;
|
|
2916
|
-
/**
|
|
2917
|
-
* Path prefix for key endpoints on the remote service. Defaults to /keys.
|
|
2918
|
-
*/
|
|
2919
|
-
keysPath?: string;
|
|
2920
|
-
/**
|
|
2921
|
-
* Path for the health check endpoint on the remote service. Defaults to /health.
|
|
2922
|
-
*/
|
|
2923
|
-
healthPath?: string;
|
|
2924
|
-
/**
|
|
2925
|
-
* Whether the remote service supports key import via POST {keysPath}/{kid}/import. Defaults to false.
|
|
2926
|
-
*/
|
|
2927
|
-
canImport?: boolean;
|
|
2928
|
-
};
|
|
2929
|
-
type CscAuthorizeAuthDataDto = {
|
|
2930
|
-
/**
|
|
2931
|
-
* Authentication factor identifier expected by the CSC provider (e.g., PIN, OTP).
|
|
2932
|
-
*/
|
|
2933
|
-
id: string;
|
|
2934
|
-
/**
|
|
2935
|
-
* Authentication factor value sent to CSC credentials/authorize.
|
|
2936
|
-
*/
|
|
2937
|
-
value: string;
|
|
2938
|
-
};
|
|
2939
|
-
type CscKmsConfigDto = {
|
|
2940
|
-
/**
|
|
2941
|
-
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2942
|
-
*/
|
|
2943
|
-
id: string;
|
|
2944
|
-
/**
|
|
2945
|
-
* Type of the KMS provider.
|
|
2946
|
-
*/
|
|
2947
|
-
type: 'csc';
|
|
2948
|
-
/**
|
|
2949
|
-
* Human-readable description of this provider instance.
|
|
2950
|
-
*/
|
|
2951
|
-
description?: string;
|
|
2952
|
-
/**
|
|
2953
|
-
* Base URL of the CSC service (without trailing slash). Supports ${ENV_VAR} placeholders.
|
|
2954
|
-
*/
|
|
2955
|
-
baseUrl: string;
|
|
2956
|
-
/**
|
|
2957
|
-
* OAuth2 token endpoint URL for client-credentials flow. Supports ${ENV_VAR} placeholders.
|
|
2958
|
-
*/
|
|
2959
|
-
tokenUrl: string;
|
|
2960
|
-
/**
|
|
2961
|
-
* OAuth2 client ID. Supports ${ENV_VAR} placeholders.
|
|
2962
|
-
*/
|
|
2963
|
-
clientId: string;
|
|
2964
|
-
/**
|
|
2965
|
-
* OAuth2 client secret. Supports ${ENV_VAR} placeholders.
|
|
2966
|
-
*/
|
|
2967
|
-
clientSecret: string;
|
|
2968
|
-
/**
|
|
2969
|
-
* OAuth2 scope to request during token acquisition.
|
|
2970
|
-
*/
|
|
2971
|
-
scope?: string;
|
|
2972
|
-
/**
|
|
2973
|
-
* Default CSC credential ID. If omitted, the adapter calls credentials/list and picks the first entry.
|
|
2974
|
-
*/
|
|
2975
|
-
credentialId?: string;
|
|
2976
|
-
/**
|
|
2977
|
-
* Optional CSC user ID used in credentials/list requests.
|
|
2978
|
-
*/
|
|
2979
|
-
userId?: string;
|
|
2980
|
-
/**
|
|
2981
|
-
* CSC API path prefix appended to baseUrl. Defaults to /csc/v2.
|
|
2982
|
-
*/
|
|
2983
|
-
apiPath?: string;
|
|
2984
|
-
/**
|
|
2985
|
-
* Hash algorithm OID for signatures/signHash and credentials/authorize. Defaults to SHA-256 OID.
|
|
2986
|
-
*/
|
|
2987
|
-
hashAlgorithmOid?: string;
|
|
2988
|
-
/**
|
|
2989
|
-
* Signature algorithm OID for signatures/signHash. Defaults to ecdsa-with-SHA256 OID.
|
|
2990
|
-
*/
|
|
2991
|
-
signAlgorithmOid?: string;
|
|
2992
|
-
/**
|
|
2993
|
-
* Static SAD token. If set, the adapter sends it directly in signatures/signHash requests.
|
|
2994
|
-
*/
|
|
2995
|
-
sad?: string;
|
|
2996
|
-
/**
|
|
2997
|
-
* When true and no static SAD is provided, the adapter calls credentials/authorize to obtain SAD before signatures/signHash.
|
|
2998
|
-
*/
|
|
2999
|
-
useAuthorizeEndpoint?: boolean;
|
|
3000
|
-
/**
|
|
3001
|
-
* Optional authData array passed to credentials/authorize (e.g., PIN/OTP factors).
|
|
3002
|
-
*/
|
|
3003
|
-
authorizeAuthData?: Array<CscAuthorizeAuthDataDto>;
|
|
3004
|
-
};
|
|
3005
2931
|
type KmsConfigDto = {
|
|
3006
2932
|
/**
|
|
3007
2933
|
* ID of the default KMS provider. Defaults to "db" if not set.
|
|
3008
2934
|
*/
|
|
3009
|
-
defaultProvider?: string;
|
|
2935
|
+
defaultProvider?: string | string;
|
|
3010
2936
|
/**
|
|
3011
2937
|
* List of KMS provider configurations. Each provider must have a unique id and a type.
|
|
3012
2938
|
*/
|
|
3013
|
-
providers: Array<
|
|
2939
|
+
providers: Array<{
|
|
2940
|
+
/**
|
|
2941
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2942
|
+
*/
|
|
2943
|
+
id: string | string;
|
|
2944
|
+
/**
|
|
2945
|
+
* Type of the KMS provider.
|
|
2946
|
+
*/
|
|
2947
|
+
type: 'db';
|
|
2948
|
+
/**
|
|
2949
|
+
* Human-readable description of this provider instance.
|
|
2950
|
+
*/
|
|
2951
|
+
description?: string | string;
|
|
2952
|
+
} | {
|
|
2953
|
+
/**
|
|
2954
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2955
|
+
*/
|
|
2956
|
+
id: string | string;
|
|
2957
|
+
/**
|
|
2958
|
+
* Type of the KMS provider.
|
|
2959
|
+
*/
|
|
2960
|
+
type: 'vault';
|
|
2961
|
+
/**
|
|
2962
|
+
* Human-readable description of this provider instance.
|
|
2963
|
+
*/
|
|
2964
|
+
description?: string | string;
|
|
2965
|
+
/**
|
|
2966
|
+
* URL of the HashiCorp Vault instance. Supports ${ENV_VAR} placeholders.
|
|
2967
|
+
*/
|
|
2968
|
+
vaultUrl: string | string;
|
|
2969
|
+
/**
|
|
2970
|
+
* Authentication token for HashiCorp Vault. Supports ${ENV_VAR} placeholders.
|
|
2971
|
+
*/
|
|
2972
|
+
vaultToken: string | string;
|
|
2973
|
+
} | {
|
|
2974
|
+
/**
|
|
2975
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2976
|
+
*/
|
|
2977
|
+
id: string | string;
|
|
2978
|
+
/**
|
|
2979
|
+
* Type of the KMS provider.
|
|
2980
|
+
*/
|
|
2981
|
+
type: 'aws-kms';
|
|
2982
|
+
/**
|
|
2983
|
+
* Human-readable description of this provider instance.
|
|
2984
|
+
*/
|
|
2985
|
+
description?: string | string;
|
|
2986
|
+
/**
|
|
2987
|
+
* AWS region for KMS. Supports ${ENV_VAR} placeholders.
|
|
2988
|
+
*/
|
|
2989
|
+
region: string | string;
|
|
2990
|
+
/**
|
|
2991
|
+
* AWS access key ID. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2992
|
+
*/
|
|
2993
|
+
accessKeyId?: string | string;
|
|
2994
|
+
/**
|
|
2995
|
+
* AWS secret access key. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2996
|
+
*/
|
|
2997
|
+
secretAccessKey?: string | string;
|
|
2998
|
+
} | {
|
|
2999
|
+
/**
|
|
3000
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
3001
|
+
*/
|
|
3002
|
+
id: string | string;
|
|
3003
|
+
/**
|
|
3004
|
+
* Type of the KMS provider.
|
|
3005
|
+
*/
|
|
3006
|
+
type: 'pkcs11';
|
|
3007
|
+
/**
|
|
3008
|
+
* Human-readable description of this provider instance.
|
|
3009
|
+
*/
|
|
3010
|
+
description?: string | string;
|
|
3011
|
+
/**
|
|
3012
|
+
* Absolute path to the PKCS#11 module library (.so/.dll/.dylib). Supports ${ENV_VAR} placeholders.
|
|
3013
|
+
*/
|
|
3014
|
+
library: string | string;
|
|
3015
|
+
/**
|
|
3016
|
+
* Slot selection. Either the numeric slot index (as a string for ENV interpolation, or a number) or the token label. Supports ${ENV_VAR} placeholders.
|
|
3017
|
+
*/
|
|
3018
|
+
slot: number | string;
|
|
3019
|
+
/**
|
|
3020
|
+
* User PIN used for C_Login. Supports ${ENV_VAR} placeholders.
|
|
3021
|
+
*/
|
|
3022
|
+
pin: string | string;
|
|
3023
|
+
/**
|
|
3024
|
+
* Open the PKCS#11 session in read-only mode. Defaults to false.
|
|
3025
|
+
*/
|
|
3026
|
+
readOnly?: boolean;
|
|
3027
|
+
} | {
|
|
3028
|
+
/**
|
|
3029
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
3030
|
+
*/
|
|
3031
|
+
id: string | string;
|
|
3032
|
+
/**
|
|
3033
|
+
* Type of the KMS provider.
|
|
3034
|
+
*/
|
|
3035
|
+
type: 'http';
|
|
3036
|
+
/**
|
|
3037
|
+
* Human-readable description of this provider instance.
|
|
3038
|
+
*/
|
|
3039
|
+
description?: string | string;
|
|
3040
|
+
/**
|
|
3041
|
+
* Base URL of the remote KMS microservice (no trailing slash). Supports ${ENV_VAR} placeholders.
|
|
3042
|
+
*/
|
|
3043
|
+
baseUrl: string | string;
|
|
3044
|
+
/**
|
|
3045
|
+
* Authentication method for the remote KMS service. Supports bearer token, OAuth 2.0 client credentials, and mutual TLS. Omit (or set type to "none") for unauthenticated services.
|
|
3046
|
+
*/
|
|
3047
|
+
auth?: {
|
|
3048
|
+
/**
|
|
3049
|
+
* No authentication — suitable for services on a trusted private network.
|
|
3050
|
+
*/
|
|
3051
|
+
type: 'none';
|
|
3052
|
+
} | {
|
|
3053
|
+
/**
|
|
3054
|
+
* Static Bearer token sent as Authorization: Bearer <token>.
|
|
3055
|
+
*/
|
|
3056
|
+
type: 'bearer';
|
|
3057
|
+
/**
|
|
3058
|
+
* Bearer token value. Supports ${ENV_VAR} placeholders.
|
|
3059
|
+
*/
|
|
3060
|
+
token: string | string;
|
|
3061
|
+
} | {
|
|
3062
|
+
/**
|
|
3063
|
+
* OAuth 2.0 Client Credentials — EUDIPLO fetches and caches short-lived tokens.
|
|
3064
|
+
*/
|
|
3065
|
+
type: 'oauth2-client-credentials';
|
|
3066
|
+
/**
|
|
3067
|
+
* Token endpoint URL (e.g. Keycloak, Entra ID). Supports ${ENV_VAR} placeholders.
|
|
3068
|
+
*/
|
|
3069
|
+
tokenUrl: string | string;
|
|
3070
|
+
/**
|
|
3071
|
+
* OAuth 2.0 client ID. Supports ${ENV_VAR} placeholders.
|
|
3072
|
+
*/
|
|
3073
|
+
clientId: string | string;
|
|
3074
|
+
/**
|
|
3075
|
+
* OAuth 2.0 client secret. Supports ${ENV_VAR} placeholders.
|
|
3076
|
+
*/
|
|
3077
|
+
clientSecret: string | string;
|
|
3078
|
+
/**
|
|
3079
|
+
* Space-separated list of OAuth 2.0 scopes to request. Optional.
|
|
3080
|
+
*/
|
|
3081
|
+
scope?: string | string;
|
|
3082
|
+
} | {
|
|
3083
|
+
/**
|
|
3084
|
+
* Mutual TLS — EUDIPLO presents a client certificate on every connection.
|
|
3085
|
+
*/
|
|
3086
|
+
type: 'mtls';
|
|
3087
|
+
/**
|
|
3088
|
+
* Absolute path to the PEM-encoded client certificate file. Supports ${ENV_VAR} placeholders.
|
|
3089
|
+
*/
|
|
3090
|
+
certFile: string | string;
|
|
3091
|
+
/**
|
|
3092
|
+
* Absolute path to the PEM-encoded private key file for the client certificate. Supports ${ENV_VAR} placeholders.
|
|
3093
|
+
*/
|
|
3094
|
+
keyFile: string | string;
|
|
3095
|
+
/**
|
|
3096
|
+
* Absolute path to the PEM-encoded CA bundle to trust for the remote server's certificate. Omit to use the system CA store.
|
|
3097
|
+
*/
|
|
3098
|
+
caFile?: string | string;
|
|
3099
|
+
};
|
|
3100
|
+
/**
|
|
3101
|
+
* Path prefix for key endpoints on the remote service. Defaults to /keys.
|
|
3102
|
+
*/
|
|
3103
|
+
keysPath?: string | string;
|
|
3104
|
+
/**
|
|
3105
|
+
* Path for the health check endpoint on the remote service. Defaults to /health.
|
|
3106
|
+
*/
|
|
3107
|
+
healthPath?: string | string;
|
|
3108
|
+
/**
|
|
3109
|
+
* Whether the remote service supports key import via POST {keysPath}/{kid}/import. Defaults to false.
|
|
3110
|
+
*/
|
|
3111
|
+
canImport?: boolean;
|
|
3112
|
+
} | {
|
|
3113
|
+
/**
|
|
3114
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
3115
|
+
*/
|
|
3116
|
+
id: string | string;
|
|
3117
|
+
/**
|
|
3118
|
+
* Type of the KMS provider.
|
|
3119
|
+
*/
|
|
3120
|
+
type: 'csc';
|
|
3121
|
+
/**
|
|
3122
|
+
* Human-readable description of this provider instance.
|
|
3123
|
+
*/
|
|
3124
|
+
description?: string | string;
|
|
3125
|
+
/**
|
|
3126
|
+
* Base URL of the CSC service (without trailing slash). Supports ${ENV_VAR} placeholders.
|
|
3127
|
+
*/
|
|
3128
|
+
baseUrl: string | string;
|
|
3129
|
+
/**
|
|
3130
|
+
* OAuth2 token endpoint URL for client-credentials flow. Supports ${ENV_VAR} placeholders.
|
|
3131
|
+
*/
|
|
3132
|
+
tokenUrl: string | string;
|
|
3133
|
+
/**
|
|
3134
|
+
* OAuth2 client ID. Supports ${ENV_VAR} placeholders.
|
|
3135
|
+
*/
|
|
3136
|
+
clientId: string | string;
|
|
3137
|
+
/**
|
|
3138
|
+
* OAuth2 client secret. Supports ${ENV_VAR} placeholders.
|
|
3139
|
+
*/
|
|
3140
|
+
clientSecret: string | string;
|
|
3141
|
+
/**
|
|
3142
|
+
* OAuth2 scope to request during token acquisition.
|
|
3143
|
+
*/
|
|
3144
|
+
scope?: string | string;
|
|
3145
|
+
/**
|
|
3146
|
+
* Default CSC credential ID. If omitted, the adapter calls credentials/list and picks the first entry.
|
|
3147
|
+
*/
|
|
3148
|
+
credentialId?: string | string;
|
|
3149
|
+
/**
|
|
3150
|
+
* Optional CSC user ID used in credentials/list requests.
|
|
3151
|
+
*/
|
|
3152
|
+
userId?: string | string;
|
|
3153
|
+
/**
|
|
3154
|
+
* CSC API path prefix appended to baseUrl. Defaults to /csc/v2.
|
|
3155
|
+
*/
|
|
3156
|
+
apiPath?: string | string;
|
|
3157
|
+
/**
|
|
3158
|
+
* Hash algorithm OID for signatures/signHash and credentials/authorize. Defaults to SHA-256 OID.
|
|
3159
|
+
*/
|
|
3160
|
+
hashAlgorithmOid?: string | string;
|
|
3161
|
+
/**
|
|
3162
|
+
* Signature algorithm OID for signatures/signHash. Defaults to ecdsa-with-SHA256 OID.
|
|
3163
|
+
*/
|
|
3164
|
+
signAlgorithmOid?: string | string;
|
|
3165
|
+
/**
|
|
3166
|
+
* Static SAD token. If set, the adapter sends it directly in signatures/signHash requests.
|
|
3167
|
+
*/
|
|
3168
|
+
sad?: string | string;
|
|
3169
|
+
/**
|
|
3170
|
+
* When true and no static SAD is provided, the adapter calls credentials/authorize to obtain SAD before signatures/signHash.
|
|
3171
|
+
*/
|
|
3172
|
+
useAuthorizeEndpoint?: boolean;
|
|
3173
|
+
/**
|
|
3174
|
+
* Optional authData array passed to credentials/authorize (e.g., PIN/OTP factors).
|
|
3175
|
+
*/
|
|
3176
|
+
authorizeAuthData?: Array<{
|
|
3177
|
+
/**
|
|
3178
|
+
* Authentication factor identifier expected by the CSC provider (e.g., PIN, OTP).
|
|
3179
|
+
*/
|
|
3180
|
+
id: string | string;
|
|
3181
|
+
/**
|
|
3182
|
+
* Authentication factor value sent to CSC credentials/authorize.
|
|
3183
|
+
*/
|
|
3184
|
+
value: string | string;
|
|
3185
|
+
}>;
|
|
3186
|
+
}>;
|
|
3014
3187
|
};
|
|
3015
3188
|
type KmsTenantConfigResponseDto = {
|
|
3016
3189
|
/**
|
|
@@ -3263,7 +3436,7 @@ type EcJwk = {
|
|
|
3263
3436
|
};
|
|
3264
3437
|
type RotationPolicyImportDto = {
|
|
3265
3438
|
/**
|
|
3266
|
-
* Whether rotation is enabled. When true, the imported key becomes a root CA.
|
|
3439
|
+
* Whether rotation is enabled. When true, the imported key becomes a root CA signer.
|
|
3267
3440
|
*/
|
|
3268
3441
|
enabled: boolean;
|
|
3269
3442
|
/**
|
|
@@ -3293,7 +3466,7 @@ type KeyChainImportDto = {
|
|
|
3293
3466
|
*/
|
|
3294
3467
|
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
3295
3468
|
/**
|
|
3296
|
-
* Certificate chain (leaf first). Each entry may be PEM or base64-encoded DER; values are normalized to PEM during import.
|
|
3469
|
+
* Certificate chain (leaf first). Each entry may be PEM or base64-encoded DER; values are normalized to PEM during import. When rotationPolicy.enabled=true, the last certificate in the chain is treated as the root CA certificate.
|
|
3297
3470
|
*/
|
|
3298
3471
|
crt?: Array<string>;
|
|
3299
3472
|
/**
|
|
@@ -3301,7 +3474,7 @@ type KeyChainImportDto = {
|
|
|
3301
3474
|
*/
|
|
3302
3475
|
kmsProvider?: string;
|
|
3303
3476
|
/**
|
|
3304
|
-
* Rotation policy. When enabled, the imported key becomes a root CA and a new leaf key is generated.
|
|
3477
|
+
* Rotation policy. When enabled, the imported key becomes a root CA signer and a new leaf key is generated. If crt is provided, the selected root CA certificate must have CA=true and its public key must match the imported private key.
|
|
3305
3478
|
*/
|
|
3306
3479
|
rotationPolicy?: RotationPolicyImportDto;
|
|
3307
3480
|
};
|
|
@@ -3372,6 +3545,11 @@ type FileUploadDto = {
|
|
|
3372
3545
|
file: Blob | File;
|
|
3373
3546
|
};
|
|
3374
3547
|
type IssuanceConfigWritable = {
|
|
3548
|
+
/**
|
|
3549
|
+
* Trust lists containing trusted wallet providers.
|
|
3550
|
+
* Each entry MUST include either `verifierKey` or `verifierX509Der`.
|
|
3551
|
+
*/
|
|
3552
|
+
walletProviderTrustLists?: Array<WalletProviderTrustListRefDto>;
|
|
3375
3553
|
/**
|
|
3376
3554
|
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
3377
3555
|
*/
|
|
@@ -3421,12 +3599,6 @@ type IssuanceConfigWritable = {
|
|
|
3421
3599
|
* Default value is false.
|
|
3422
3600
|
*/
|
|
3423
3601
|
walletAttestationRequired?: boolean;
|
|
3424
|
-
/**
|
|
3425
|
-
* URLs of trust lists containing trusted wallet providers.
|
|
3426
|
-
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
3427
|
-
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
3428
|
-
*/
|
|
3429
|
-
walletProviderTrustLists?: Array<string>;
|
|
3430
3602
|
display: Array<DisplayInfo>;
|
|
3431
3603
|
/**
|
|
3432
3604
|
* The timestamp when the VP request was created.
|
|
@@ -3438,6 +3610,11 @@ type IssuanceConfigWritable = {
|
|
|
3438
3610
|
updatedAt: string;
|
|
3439
3611
|
};
|
|
3440
3612
|
type UpdateIssuanceDtoWritable = {
|
|
3613
|
+
/**
|
|
3614
|
+
* Trust lists containing trusted wallet providers.
|
|
3615
|
+
* Each entry MUST include either `verifierKey` or `verifierX509Der`.
|
|
3616
|
+
*/
|
|
3617
|
+
walletProviderTrustLists?: Array<WalletProviderTrustListRefDto>;
|
|
3441
3618
|
/**
|
|
3442
3619
|
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
3443
3620
|
*/
|
|
@@ -3483,15 +3660,17 @@ type UpdateIssuanceDtoWritable = {
|
|
|
3483
3660
|
* Default value is false.
|
|
3484
3661
|
*/
|
|
3485
3662
|
walletAttestationRequired?: boolean;
|
|
3486
|
-
/**
|
|
3487
|
-
* URLs of trust lists containing trusted wallet providers.
|
|
3488
|
-
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
3489
|
-
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
3490
|
-
*/
|
|
3491
|
-
walletProviderTrustLists?: Array<string>;
|
|
3492
3663
|
display?: Array<DisplayInfo>;
|
|
3493
3664
|
};
|
|
3494
3665
|
type PresentationConfigWritable = {
|
|
3666
|
+
/**
|
|
3667
|
+
* Clock skew tolerance for credential JWT time validation, in seconds.
|
|
3668
|
+
*/
|
|
3669
|
+
skewSeconds?: number;
|
|
3670
|
+
/**
|
|
3671
|
+
* Status list verification mode for presentations: strict (default), best_effort, or disabled.
|
|
3672
|
+
*/
|
|
3673
|
+
statusCheckMode?: 'strict' | 'best_effort' | 'disabled';
|
|
3495
3674
|
/**
|
|
3496
3675
|
* Unique identifier for the VP request.
|
|
3497
3676
|
*/
|
|
@@ -3522,13 +3701,6 @@ type PresentationConfigWritable = {
|
|
|
3522
3701
|
* Optional: if set, notifications will be sent to this endpoint.
|
|
3523
3702
|
*/
|
|
3524
3703
|
webhookEndpointId?: string;
|
|
3525
|
-
webhookEndpoint?: WebhookEndpointEntity;
|
|
3526
|
-
/**
|
|
3527
|
-
* Optional webhook URL to receive the response.
|
|
3528
|
-
*
|
|
3529
|
-
* @deprecated
|
|
3530
|
-
*/
|
|
3531
|
-
webhook?: WebhookConfig;
|
|
3532
3704
|
/**
|
|
3533
3705
|
* The timestamp when the VP request was created.
|
|
3534
3706
|
*/
|
|
@@ -3556,6 +3728,18 @@ type PresentationConfigWritable = {
|
|
|
3556
3728
|
* at the application level in the service layer.
|
|
3557
3729
|
*/
|
|
3558
3730
|
accessKeyChainId?: string;
|
|
3731
|
+
/**
|
|
3732
|
+
* Enable reader authentication for the ISO 18013-7 Annex C (DC API) flow.
|
|
3733
|
+
*
|
|
3734
|
+
* When `true`, the DeviceRequest embeds a detached `readerAuth` COSE_Sign1
|
|
3735
|
+
* signed with the tenant's Access key chain (selected by
|
|
3736
|
+
* {@link accessKeyChainId}), letting the wallet cryptographically
|
|
3737
|
+
* authenticate the verifier — the mDOC equivalent of the signed request
|
|
3738
|
+
* object used in the OID4VP flow. Defaults to disabled (null/false).
|
|
3739
|
+
*
|
|
3740
|
+
* Only affects `response_type: "iso-18013-7"` offers.
|
|
3741
|
+
*/
|
|
3742
|
+
readerAuth?: boolean;
|
|
3559
3743
|
};
|
|
3560
3744
|
type ObjectWritable = {
|
|
3561
3745
|
[key: string]: unknown;
|
|
@@ -4111,8 +4295,9 @@ type IssuanceConfigControllerReissueRegistrationCertificateResponses = {
|
|
|
4111
4295
|
/**
|
|
4112
4296
|
* Updated issuance configuration
|
|
4113
4297
|
*/
|
|
4114
|
-
201:
|
|
4298
|
+
201: IssuanceConfig;
|
|
4115
4299
|
};
|
|
4300
|
+
type IssuanceConfigControllerReissueRegistrationCertificateResponse = IssuanceConfigControllerReissueRegistrationCertificateResponses[keyof IssuanceConfigControllerReissueRegistrationCertificateResponses];
|
|
4116
4301
|
type CredentialConfigControllerGetConfigsData = {
|
|
4117
4302
|
body?: never;
|
|
4118
4303
|
path?: never;
|
|
@@ -5337,4 +5522,4 @@ type StorageControllerUploadResponses = {
|
|
|
5337
5522
|
};
|
|
5338
5523
|
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
5339
5524
|
|
|
5340
|
-
export type { ChainedAsErrorResponseDto as $, AccessCertificateRefDto as A, AuthControllerGetOAuth2TokenData as B, ClientOptions as C, AuthControllerGetOAuth2TokenErrors as D, AuthControllerGetOAuth2TokenResponse as E, AuthControllerGetOAuth2TokenResponses as F, AuthenticationMethodAuth as G, AuthenticationMethodNone as H, AuthenticationMethodPresentation as I, AuthenticationUrlConfig as J, AuthorizationResponse as K, AuthorizeQueries as L, AwsKmsConfigDto as M, BuiltInAuthorizationServerConfig as N, CacheControllerClearAllCachesData as O, CacheControllerClearAllCachesResponse as P, CacheControllerClearAllCachesResponses as Q, CacheControllerClearStatusListCacheData as R, Session as S, CacheControllerClearStatusListCacheResponse as T, CacheControllerClearStatusListCacheResponses as U, CacheControllerClearTrustListCacheData as V, CacheControllerClearTrustListCacheResponse as W, CacheControllerClearTrustListCacheResponses as X, CacheControllerGetStatsData as Y, CacheControllerGetStatsResponses as Z, CertificateInfoDto as _, AllowListPolicy as a, CredentialConfigControllerGetConfigsResponse as a$, ChainedAsParResponseDto as a0, ChainedAsTokenConfig as a1, ChainedAsTokenRequestDto as a2, ChainedAsTokenResponseDto as a3, ChainedAsVpControllerAuthorizeData as a4, ChainedAsVpControllerAuthorizeError as a5, ChainedAsVpControllerAuthorizeErrors as a6, ChainedAsVpControllerParData as a7, ChainedAsVpControllerParError as a8, ChainedAsVpControllerParErrors as a9, ClientControllerGetClientsResponses as aA, ClientControllerRotateClientSecretData as aB, ClientControllerRotateClientSecretResponse as aC, ClientControllerRotateClientSecretResponses as aD, ClientControllerUpdateClientData as aE, ClientControllerUpdateClientResponse as aF, ClientControllerUpdateClientResponses as aG, ClientCredentialsDto as aH, ClientEntity 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, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aV, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aW, CredentialConfigControllerGetConfigByIdData as aX, CredentialConfigControllerGetConfigByIdResponse as aY, CredentialConfigControllerGetConfigByIdResponses as aZ, CredentialConfigControllerGetConfigsData as a_, ChainedAsVpControllerParResponse as aa, ChainedAsVpControllerParResponses as ab, ChainedAsVpControllerTokenData as ac, ChainedAsVpControllerTokenError as ad, ChainedAsVpControllerTokenErrors as ae, ChainedAsVpControllerTokenResponse as af, ChainedAsVpControllerTokenResponses as ag, ChainedAsVpControllerVpCallbackData as ah, ChainedAsVpControllerVpCallbackError as ai, ChainedAsVpControllerVpCallbackErrors as aj, ChainedAuthorizationServerConfig as ak, ClaimFieldDefinitionDto as al, ClaimsQuery as am, ClientControllerCreateClientData as an, ClientControllerCreateClientResponse as ao, ClientControllerCreateClientResponses as ap, ClientControllerDeleteClientData as aq, ClientControllerDeleteClientResponses as ar, ClientControllerGetClientData as as, ClientControllerGetClientResponse as at, ClientControllerGetClientResponses as au, ClientControllerGetClientSecretData as av, ClientControllerGetClientSecretResponse as aw, ClientControllerGetClientSecretResponses as ax, ClientControllerGetClientsData as ay, ClientControllerGetClientsResponse as az, ApiKeyConfig as b, IssuanceConfigControllerStoreIssuanceConfigurationData as b$, CredentialConfigControllerGetConfigsResponses as b0, CredentialConfigControllerStoreCredentialConfigurationData as b1, CredentialConfigControllerStoreCredentialConfigurationResponse as b2, CredentialConfigControllerStoreCredentialConfigurationResponses as b3, CredentialConfigControllerUpdateCredentialConfigurationData as b4, CredentialConfigControllerUpdateCredentialConfigurationResponse as b5, CredentialConfigControllerUpdateCredentialConfigurationResponses as b6, CredentialConfigCreate as b7, CredentialConfigUpdate as b8, CredentialOfferControllerGetOfferData as b9, ExportEcJwk as bA, ExportRotationPolicyDto as bB, ExternalAuthorizationServerConfig as bC, ExternalTrustListEntity as bD, FailDeferredDto as bE, FederationConfig as bF, FederationTrustAnchorConfig as bG, FieldDisplayDto as bH, FileUploadDto as bI, FrontendConfigResponseDto as bJ, GrafanaConfigDto as bK, HttpAuthBaseConfigDto as bL, HttpKmsConfigDto as bM, IaeActionOpenid4VpPresentation as bN, IaeActionRedirectToWeb as bO, ImportTenantDto as bP, InteractiveAuthorizationCodeResponseDto as bQ, InteractiveAuthorizationErrorResponseDto as bR, InteractiveAuthorizationRequestDto as bS, InternalTrustListEntity as bT, IssuanceConfig as bU, IssuanceConfigControllerGetIssuanceConfigurationsData as bV, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bW, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bX, IssuanceConfigControllerReissueRegistrationCertificateData as bY, IssuanceConfigControllerReissueRegistrationCertificateErrors as bZ, IssuanceConfigControllerReissueRegistrationCertificateResponses as b_, CredentialOfferControllerGetOfferResponse as ba, CredentialOfferControllerGetOfferResponses as bb, CredentialQuery as bc, CredentialSetQuery as bd, CscAuthorizeAuthDataDto as be, CscKmsConfigDto as bf, DbKmsConfigDto as bg, Dcql as bh, DeferredControllerCompleteDeferredData as bi, DeferredControllerCompleteDeferredErrors as bj, DeferredControllerCompleteDeferredResponse as bk, DeferredControllerCompleteDeferredResponses as bl, DeferredControllerFailDeferredData as bm, DeferredControllerFailDeferredErrors as bn, DeferredControllerFailDeferredResponse as bo, DeferredControllerFailDeferredResponses as bp, DeferredCredentialRequestDto as bq, DeferredOperationResponse as br, DeprecateSchemaMetadataDto as bs, Display as bt, DisplayImage as bu, DisplayInfo as bv, DisplayLogo as bw, EcJwk as bx, EcPublic as by, EmbeddedDisclosurePolicy as bz, AppControllerGetFrontendConfigData as c, ObjectWritable as c$, IssuanceConfigControllerStoreIssuanceConfigurationResponse as c0, IssuanceConfigControllerStoreIssuanceConfigurationResponses as c1, IssuanceConfigWritable as c2, IssuerMetadataCredentialConfig as c3, IssuerOfferEntryDto as c4, IssuerRegistrationCertificateCache as c5, IssuerRegistrationCertificateConfig as c6, JwksResponseDto as c7, KeyAttestationsRequired as c8, KeyChainControllerCreateData as c9, KeyChainControllerImportResponses as cA, KeyChainControllerRotateData as cB, KeyChainControllerRotateErrors as cC, KeyChainControllerRotateResponses as cD, KeyChainControllerUpdateData as cE, KeyChainControllerUpdateErrors as cF, KeyChainControllerUpdateResponses as cG, KeyChainControllerUpdateTenantKmsConfigData as cH, KeyChainControllerUpdateTenantKmsConfigResponse as cI, KeyChainControllerUpdateTenantKmsConfigResponses as cJ, KeyChainCreateDto as cK, KeyChainEntity as cL, KeyChainExportDto as cM, KeyChainImportDto as cN, KeyChainResponseDto as cO, KeyChainUpdateDto as cP, KmsConfigDto as cQ, KmsProviderCapabilitiesDto as cR, KmsProviderInfoDto as cS, KmsProvidersResponseDto as cT, KmsTenantConfigResponseDto as cU, ManagedAuthorizationServerConfig as cV, ManagedUserDto as cW, MetadataSchemaDto as cX, NoneTrustPolicy as cY, NotificationRequestDto as cZ, Object$1 as c_, KeyChainControllerCreateResponses as ca, KeyChainControllerDeleteData as cb, KeyChainControllerDeleteErrors as cc, KeyChainControllerDeleteResponses as cd, KeyChainControllerDeleteTenantKmsConfigData as ce, KeyChainControllerDeleteTenantKmsConfigResponses as cf, KeyChainControllerExportData as cg, KeyChainControllerExportErrors as ch, KeyChainControllerExportResponse as ci, KeyChainControllerExportResponses as cj, KeyChainControllerGetAllData as ck, KeyChainControllerGetAllResponse as cl, KeyChainControllerGetAllResponses as cm, KeyChainControllerGetByIdData as cn, KeyChainControllerGetByIdErrors as co, KeyChainControllerGetByIdResponse as cp, KeyChainControllerGetByIdResponses as cq, KeyChainControllerGetProvidersData as cr, KeyChainControllerGetProvidersHealthData as cs, KeyChainControllerGetProvidersHealthResponses as ct, KeyChainControllerGetProvidersResponse as cu, KeyChainControllerGetProvidersResponses as cv, KeyChainControllerGetTenantKmsConfigData as cw, KeyChainControllerGetTenantKmsConfigResponse as cx, KeyChainControllerGetTenantKmsConfigResponses as cy, KeyChainControllerImportData as cz, AppControllerGetFrontendConfigResponse as d, RegistrarControllerUpdateConfigResponses as d$, OfferRequestDto as d0, OfferResponse as d1, Oid4VpAuthorizationServerConfig as d2, PaginatedSessionResponseDto as d3, ParResponseDto as d4, Pkcs11KmsConfigDto as d5, PolicyCredential as d6, PresentationAttachment as d7, PresentationConfig as d8, PresentationConfigCreateDto as d9, PresentationManagementControllerStorePresentationConfigData as dA, PresentationManagementControllerStorePresentationConfigResponse as dB, PresentationManagementControllerStorePresentationConfigResponses as dC, PresentationManagementControllerUpdateConfigurationData as dD, PresentationManagementControllerUpdateConfigurationResponse as dE, PresentationManagementControllerUpdateConfigurationResponses as dF, PresentationRequest as dG, PublicKeyInfoDto as dH, RegistrarConfigResponseDto as dI, RegistrarControllerCreateAccessCertificateData as dJ, RegistrarControllerCreateAccessCertificateErrors as dK, RegistrarControllerCreateAccessCertificateResponse as dL, RegistrarControllerCreateAccessCertificateResponses as dM, RegistrarControllerCreateConfigData as dN, RegistrarControllerCreateConfigErrors as dO, RegistrarControllerCreateConfigResponse as dP, RegistrarControllerCreateConfigResponses as dQ, RegistrarControllerDeleteConfigData as dR, RegistrarControllerDeleteConfigResponse as dS, RegistrarControllerDeleteConfigResponses as dT, RegistrarControllerGetConfigData as dU, RegistrarControllerGetConfigErrors as dV, RegistrarControllerGetConfigResponse as dW, RegistrarControllerGetConfigResponses as dX, RegistrarControllerUpdateConfigData as dY, RegistrarControllerUpdateConfigErrors as dZ, RegistrarControllerUpdateConfigResponse as d_, PresentationConfigUpdateDto as da, PresentationConfigWritable as db, PresentationDuringIssuanceConfig as dc, PresentationManagementControllerConfigurationData as dd, PresentationManagementControllerConfigurationResponse as de, PresentationManagementControllerConfigurationResponses as df, PresentationManagementControllerDeleteConfigurationData as dg, PresentationManagementControllerDeleteConfigurationResponses as dh, PresentationManagementControllerGetConfigurationData as di, PresentationManagementControllerGetConfigurationResponse as dj, PresentationManagementControllerGetConfigurationResponses as dk, PresentationManagementControllerListSchemaMetadataCatalogData as dl, PresentationManagementControllerListSchemaMetadataCatalogResponses as dm, PresentationManagementControllerReissueRegistrationCertificateData as dn, PresentationManagementControllerReissueRegistrationCertificateErrors as dp, PresentationManagementControllerReissueRegistrationCertificateResponses as dq, PresentationManagementControllerResolveIssuerMetadataData as dr, PresentationManagementControllerResolveIssuerMetadataErrors as ds, PresentationManagementControllerResolveIssuerMetadataResponses as dt, PresentationManagementControllerResolveSchemaMetadataData as du, PresentationManagementControllerResolveSchemaMetadataErrors as dv, PresentationManagementControllerResolveSchemaMetadataJwtData as dw, PresentationManagementControllerResolveSchemaMetadataJwtErrors as dx, PresentationManagementControllerResolveSchemaMetadataJwtResponses as dy, PresentationManagementControllerResolveSchemaMetadataResponses as dz, AppControllerGetFrontendConfigResponses as e, SessionConfigControllerResetConfigResponses as e$, RegistrationCertificateBody as e0, RegistrationCertificateDefaults as e1, RegistrationCertificatePurpose as e2, RegistrationCertificateRequest as e3, ResolveIssuerMetadataDto as e4, ResolveSchemaMetadataDto as e5, ResolveSchemaMetadataJwtDto as e6, RoleDto as e7, RootOfTrustPolicy as e8, RotationPolicyCreateDto as e9, SchemaMetadataControllerGetVersionsResponse as eA, SchemaMetadataControllerGetVersionsResponses as eB, SchemaMetadataControllerGetVocabulariesData as eC, SchemaMetadataControllerGetVocabulariesResponse as eD, SchemaMetadataControllerGetVocabulariesResponses as eE, SchemaMetadataControllerPublishSchemaMetadataData as eF, SchemaMetadataControllerPublishSchemaMetadataErrors as eG, SchemaMetadataControllerPublishSchemaMetadataResponses as eH, SchemaMetadataControllerPublishSchemaMetadataVersionData as eI, SchemaMetadataControllerPublishSchemaMetadataVersionErrors as eJ, SchemaMetadataControllerPublishSchemaMetadataVersionResponses as eK, SchemaMetadataControllerRemoveData as eL, SchemaMetadataControllerRemoveResponses as eM, SchemaMetadataControllerSignSchemaMetaConfigData as eN, SchemaMetadataControllerSignSchemaMetaConfigResponses as eO, SchemaMetadataControllerSignVersionSchemaMetaConfigData as eP, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as eQ, SchemaMetadataControllerUpdateData as eR, SchemaMetadataControllerUpdateResponse as eS, SchemaMetadataControllerUpdateResponses as eT, SchemaMetadataResponseDto as eU, SchemaMetadataVocabulariesDto as eV, SchemaUriEntry as eW, SessionConfigControllerGetConfigData as eX, SessionConfigControllerGetConfigResponse as eY, SessionConfigControllerGetConfigResponses as eZ, SessionConfigControllerResetConfigData as e_, RotationPolicyImportDto as ea, RotationPolicyResponseDto as eb, RotationPolicyUpdateDto as ec, SchemaMetaConfig as ed, SchemaMetadataControllerDeprecateVersionData as ee, SchemaMetadataControllerDeprecateVersionResponse as ef, SchemaMetadataControllerDeprecateVersionResponses as eg, SchemaMetadataControllerFindAllData as eh, SchemaMetadataControllerFindAllResponse as ei, SchemaMetadataControllerFindAllResponses as ej, SchemaMetadataControllerFindOneData as ek, SchemaMetadataControllerFindOneResponse as el, SchemaMetadataControllerFindOneResponses as em, SchemaMetadataControllerGetJwtData as en, SchemaMetadataControllerGetJwtResponse as eo, SchemaMetadataControllerGetJwtResponses as ep, SchemaMetadataControllerGetLatestData as eq, SchemaMetadataControllerGetLatestResponse as er, SchemaMetadataControllerGetLatestResponses as es, SchemaMetadataControllerGetMineData as et, SchemaMetadataControllerGetMineResponse as eu, SchemaMetadataControllerGetMineResponses as ev, SchemaMetadataControllerGetSchemaData as ew, SchemaMetadataControllerGetSchemaResponse as ex, SchemaMetadataControllerGetSchemaResponses as ey, SchemaMetadataControllerGetVersionsData as ez, AppControllerGetVersionData as f, TenantControllerInitTenantResponse as f$, SessionConfigControllerUpdateConfigData as f0, SessionConfigControllerUpdateConfigResponse as f1, SessionConfigControllerUpdateConfigResponses as f2, SessionControllerDeleteSessionData as f3, SessionControllerDeleteSessionResponses as f4, SessionControllerGetAllSessionsData as f5, SessionControllerGetAllSessionsResponse as f6, SessionControllerGetAllSessionsResponses as f7, SessionControllerGetSessionData as f8, SessionControllerGetSessionLogsData as f9, StatusListManagementControllerCreateListResponses as fA, StatusListManagementControllerDeleteListData as fB, StatusListManagementControllerDeleteListResponse as fC, StatusListManagementControllerDeleteListResponses as fD, StatusListManagementControllerGetListData as fE, StatusListManagementControllerGetListResponse as fF, StatusListManagementControllerGetListResponses as fG, StatusListManagementControllerGetListsData as fH, StatusListManagementControllerGetListsResponse as fI, StatusListManagementControllerGetListsResponses as fJ, StatusListManagementControllerUpdateListData as fK, StatusListManagementControllerUpdateListResponse as fL, StatusListManagementControllerUpdateListResponses as fM, StatusListResponseDto as fN, StatusUpdateDto as fO, StorageControllerUploadData as fP, StorageControllerUploadResponse as fQ, StorageControllerUploadResponses as fR, TenantControllerDeleteTenantData as fS, TenantControllerDeleteTenantResponses as fT, TenantControllerGetTenantData as fU, TenantControllerGetTenantResponse as fV, TenantControllerGetTenantResponses as fW, TenantControllerGetTenantsData as fX, TenantControllerGetTenantsResponse as fY, TenantControllerGetTenantsResponses as fZ, TenantControllerInitTenantData as f_, SessionControllerGetSessionLogsResponse as fa, SessionControllerGetSessionLogsResponses as fb, SessionControllerGetSessionResponse as fc, SessionControllerGetSessionResponses as fd, SessionControllerRevokeAllData as fe, SessionControllerRevokeAllResponses as ff, SessionEventsControllerSubscribeToSessionEventsData as fg, SessionEventsControllerSubscribeToSessionEventsResponses as fh, SessionLogEntryResponseDto as fi, SessionStorageConfig as fj, SignSchemaMetaConfigDto as fk, SignVersionSchemaMetaConfigDto as fl, StatusListAggregationDto as fm, StatusListConfig as fn, StatusListConfigControllerGetConfigData as fo, StatusListConfigControllerGetConfigResponse as fp, StatusListConfigControllerGetConfigResponses as fq, StatusListConfigControllerResetConfigData as fr, StatusListConfigControllerResetConfigResponse as fs, StatusListConfigControllerResetConfigResponses as ft, StatusListConfigControllerUpdateConfigData as fu, StatusListConfigControllerUpdateConfigResponse as fv, StatusListConfigControllerUpdateConfigResponses as fw, StatusListImportDto as fx, StatusListManagementControllerCreateListData as fy, StatusListManagementControllerCreateListResponse as fz, AppControllerGetVersionResponses as g, UserControllerUpdateUserResponse as g$, TenantControllerInitTenantResponses as g0, TenantControllerUpdateTenantData as g1, TenantControllerUpdateTenantResponse as g2, TenantControllerUpdateTenantResponses as g3, TenantEntity as g4, TokenResponse as g5, TransactionData as g6, TrustAuthorityDto as g7, TrustAuthorityEntry as g8, TrustList as g9, TrustedAuthorityQuery as gA, UpdateAttributeProviderDto as gB, UpdateClientDto as gC, UpdateIssuanceDto as gD, UpdateIssuanceDtoWritable as gE, UpdateIssuerOfferDto as gF, UpdateRegistrarConfigDto as gG, UpdateSchemaMetadataDto as gH, UpdateSessionConfigDto as gI, UpdateStatusListConfigDto as gJ, UpdateStatusListDto as gK, UpdateTenantDto as gL, UpdateUserDto as gM, UpdateWebhookEndpointDto as gN, UpstreamOidcConfig as gO, UserControllerCreateUserData as gP, UserControllerCreateUserResponse as gQ, UserControllerCreateUserResponses as gR, UserControllerDeleteUserData as gS, UserControllerDeleteUserResponses as gT, UserControllerGetUserData as gU, UserControllerGetUserResponse as gV, UserControllerGetUserResponses as gW, UserControllerGetUsersData as gX, UserControllerGetUsersResponse as gY, UserControllerGetUsersResponses as gZ, UserControllerUpdateUserData as g_, TrustListControllerCreateTrustListData as ga, TrustListControllerCreateTrustListResponse as gb, TrustListControllerCreateTrustListResponses as gc, TrustListControllerDeleteTrustListData as gd, TrustListControllerDeleteTrustListResponses as ge, TrustListControllerExportTrustListData as gf, TrustListControllerExportTrustListResponse as gg, TrustListControllerExportTrustListResponses as gh, TrustListControllerGetAllTrustListsData as gi, TrustListControllerGetAllTrustListsResponse as gj, TrustListControllerGetAllTrustListsResponses as gk, TrustListControllerGetTrustListData as gl, TrustListControllerGetTrustListResponse as gm, TrustListControllerGetTrustListResponses as gn, TrustListControllerGetTrustListVersionData as go, TrustListControllerGetTrustListVersionResponse as gp, TrustListControllerGetTrustListVersionResponses as gq, TrustListControllerGetTrustListVersionsData as gr, TrustListControllerGetTrustListVersionsResponse as gs, TrustListControllerGetTrustListVersionsResponses as gt, TrustListControllerUpdateTrustListData as gu, TrustListControllerUpdateTrustListResponse as gv, TrustListControllerUpdateTrustListResponses as gw, TrustListCreateDto as gx, TrustListEntityInfo as gy, TrustListVersion as gz, AttestationBasedPolicy as h, UserControllerUpdateUserResponses as h0, VaultKmsConfigDto as h1, Vct as h2, VerifierOfferControllerGetOfferData as h3, VerifierOfferControllerGetOfferResponse as h4, VerifierOfferControllerGetOfferResponses as h5, VocabularyEntryDto as h6, WebHookAuthConfigHeader as h7, WebHookAuthConfigNone as h8, WebhookConfig as h9, WebhookEndpointControllerCreateData as ha, WebhookEndpointControllerCreateResponses as hb, WebhookEndpointControllerDeleteData as hc, WebhookEndpointControllerDeleteErrors as hd, WebhookEndpointControllerDeleteResponses as he, WebhookEndpointControllerGetAllData as hf, WebhookEndpointControllerGetAllResponse as hg, WebhookEndpointControllerGetAllResponses as hh, WebhookEndpointControllerGetByIdData as hi, WebhookEndpointControllerGetByIdErrors as hj, WebhookEndpointControllerGetByIdResponses as hk, WebhookEndpointControllerUpdateData as hl, WebhookEndpointControllerUpdateErrors as hm, WebhookEndpointControllerUpdateResponses as hn, WebhookEndpointEntity as ho, AttributeProviderControllerCreateData as i, AttributeProviderControllerCreateResponses as j, AttributeProviderControllerDeleteData as k, AttributeProviderControllerDeleteErrors as l, AttributeProviderControllerDeleteResponses as m, AttributeProviderControllerGetAllData as n, AttributeProviderControllerGetAllResponses as o, AttributeProviderControllerGetByIdData as p, AttributeProviderControllerGetByIdErrors as q, AttributeProviderControllerGetByIdResponses as r, AttributeProviderControllerUpdateData as s, AttributeProviderControllerUpdateErrors as t, AttributeProviderControllerUpdateResponses as u, AttributeProviderEntity as v, AuditLogControllerGetAuditLogsData as w, AuditLogControllerGetAuditLogsResponse as x, AuditLogControllerGetAuditLogsResponses as y, AuditLogResponseDto as z };
|
|
5525
|
+
export type { ChainedAsParResponseDto as $, AccessCertificateRefDto as A, AuthControllerGetOAuth2TokenData as B, ClientOptions as C, AuthControllerGetOAuth2TokenErrors as D, AuthControllerGetOAuth2TokenResponse as E, AuthControllerGetOAuth2TokenResponses as F, AuthenticationMethodAuth as G, AuthenticationMethodNone as H, AuthenticationMethodPresentation as I, AuthenticationUrlConfig as J, AuthorizationResponse as K, AuthorizeQueries as L, BuiltInAuthorizationServerConfig as M, CacheControllerClearAllCachesData as N, CacheControllerClearAllCachesResponse as O, CacheControllerClearAllCachesResponses as P, CacheControllerClearStatusListCacheData as Q, CacheControllerClearStatusListCacheResponse as R, Session as S, CacheControllerClearStatusListCacheResponses as T, CacheControllerClearTrustListCacheData as U, CacheControllerClearTrustListCacheResponse as V, CacheControllerClearTrustListCacheResponses as W, CacheControllerGetStatsData as X, CacheControllerGetStatsResponses as Y, CertificateInfoDto as Z, ChainedAsErrorResponseDto as _, AllowListPolicy as a, CredentialConfigControllerGetConfigsResponses as a$, ChainedAsTokenConfig as a0, ChainedAsTokenRequestDto as a1, ChainedAsTokenResponseDto as a2, ChainedAsVpControllerAuthorizeData as a3, ChainedAsVpControllerAuthorizeError as a4, ChainedAsVpControllerAuthorizeErrors as a5, ChainedAsVpControllerParData as a6, ChainedAsVpControllerParError as a7, ChainedAsVpControllerParErrors as a8, ChainedAsVpControllerParResponse as a9, ClientControllerRotateClientSecretData as aA, ClientControllerRotateClientSecretResponse as aB, ClientControllerRotateClientSecretResponses as aC, ClientControllerUpdateClientData as aD, ClientControllerUpdateClientResponse as aE, ClientControllerUpdateClientResponses as aF, ClientCredentialsDto as aG, ClientEntity as aH, ClientSecretResponseDto as aI, CompleteDeferredDto as aJ, CreateAccessCertificateDto as aK, CreateAttributeProviderDto as aL, CreateClientDto as aM, CreateRegistrarConfigDto as aN, CreateStatusListDto as aO, CreateTenantDto as aP, CreateUserDto as aQ, CreateWebhookEndpointDto as aR, CredentialConfig as aS, CredentialConfigControllerDeleteIssuanceConfigurationData as aT, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aU, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aV, CredentialConfigControllerGetConfigByIdData as aW, CredentialConfigControllerGetConfigByIdResponse as aX, CredentialConfigControllerGetConfigByIdResponses as aY, CredentialConfigControllerGetConfigsData as aZ, CredentialConfigControllerGetConfigsResponse as a_, ChainedAsVpControllerParResponses as aa, ChainedAsVpControllerTokenData as ab, ChainedAsVpControllerTokenError as ac, ChainedAsVpControllerTokenErrors as ad, ChainedAsVpControllerTokenResponse as ae, ChainedAsVpControllerTokenResponses as af, ChainedAsVpControllerVpCallbackData as ag, ChainedAsVpControllerVpCallbackError as ah, ChainedAsVpControllerVpCallbackErrors as ai, ChainedAuthorizationServerConfig as aj, ClaimFieldDefinitionDto as ak, ClaimsQuery as al, ClientControllerCreateClientData as am, ClientControllerCreateClientResponse as an, ClientControllerCreateClientResponses as ao, ClientControllerDeleteClientData as ap, ClientControllerDeleteClientResponses as aq, ClientControllerGetClientData as ar, ClientControllerGetClientResponse as as, ClientControllerGetClientResponses as at, ClientControllerGetClientSecretData as au, ClientControllerGetClientSecretResponse as av, ClientControllerGetClientSecretResponses as aw, ClientControllerGetClientsData as ax, ClientControllerGetClientsResponse as ay, ClientControllerGetClientsResponses as az, ApiKeyConfig as b, IssuanceConfigWritable as b$, CredentialConfigControllerStoreCredentialConfigurationData as b0, CredentialConfigControllerStoreCredentialConfigurationResponse as b1, CredentialConfigControllerStoreCredentialConfigurationResponses as b2, CredentialConfigControllerUpdateCredentialConfigurationData as b3, CredentialConfigControllerUpdateCredentialConfigurationResponse as b4, CredentialConfigControllerUpdateCredentialConfigurationResponses as b5, CredentialConfigCreate as b6, CredentialConfigUpdate as b7, CredentialOfferControllerGetOfferData as b8, CredentialOfferControllerGetOfferResponse as b9, ExternalAuthorizationServerConfig as bA, ExternalTrustListEntity as bB, FailDeferredDto as bC, FederationConfig as bD, FederationTrustAnchorConfig as bE, FieldDisplayDto as bF, FileUploadDto as bG, FrontendConfigResponseDto as bH, GrafanaConfigDto as bI, IaeActionOpenid4VpPresentation as bJ, IaeActionRedirectToWeb as bK, ImportTenantDto as bL, InteractiveAuthorizationCodeResponseDto as bM, InteractiveAuthorizationErrorResponseDto as bN, InteractiveAuthorizationRequestDto as bO, InternalTrustListEntity as bP, IssuanceConfig as bQ, IssuanceConfigControllerGetIssuanceConfigurationsData as bR, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bS, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bT, IssuanceConfigControllerReissueRegistrationCertificateData as bU, IssuanceConfigControllerReissueRegistrationCertificateErrors as bV, IssuanceConfigControllerReissueRegistrationCertificateResponse as bW, IssuanceConfigControllerReissueRegistrationCertificateResponses as bX, IssuanceConfigControllerStoreIssuanceConfigurationData as bY, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bZ, IssuanceConfigControllerStoreIssuanceConfigurationResponses as b_, CredentialOfferControllerGetOfferResponses as ba, CredentialQueryDcSdJwt as bb, CredentialQueryMsoMdoc as bc, CredentialSetQuery as bd, DcSdJwtCredentialQueryMeta as be, Dcql as bf, DeferredControllerCompleteDeferredData as bg, DeferredControllerCompleteDeferredErrors as bh, DeferredControllerCompleteDeferredResponse as bi, DeferredControllerCompleteDeferredResponses as bj, DeferredControllerFailDeferredData as bk, DeferredControllerFailDeferredErrors as bl, DeferredControllerFailDeferredResponse as bm, DeferredControllerFailDeferredResponses as bn, DeferredCredentialRequestDto as bo, DeferredOperationResponse as bp, DeprecateSchemaMetadataDto as bq, Display as br, DisplayImage as bs, DisplayInfo as bt, DisplayLogo as bu, EcJwk as bv, EcPublic as bw, EmbeddedDisclosurePolicy as bx, ExportEcJwk as by, ExportRotationPolicyDto as bz, AppControllerGetFrontendConfigData as c, OfferRequestDto as c$, IssuerMetadataCredentialConfig as c0, IssuerOfferEntryDto as c1, IssuerRegistrationCertificateCache as c2, IssuerRegistrationCertificateConfig as c3, JwksResponseDto as c4, KeyAttestationsRequired as c5, KeyChainControllerCreateData as c6, KeyChainControllerCreateResponses as c7, KeyChainControllerDeleteData as c8, KeyChainControllerDeleteErrors as c9, KeyChainControllerRotateResponses as cA, KeyChainControllerUpdateData as cB, KeyChainControllerUpdateErrors as cC, KeyChainControllerUpdateResponses as cD, KeyChainControllerUpdateTenantKmsConfigData as cE, KeyChainControllerUpdateTenantKmsConfigResponse as cF, KeyChainControllerUpdateTenantKmsConfigResponses as cG, KeyChainCreateDto as cH, KeyChainEntity as cI, KeyChainExportDto as cJ, KeyChainImportDto as cK, KeyChainResponseDto as cL, KeyChainUpdateDto as cM, KmsConfigDto as cN, KmsProviderCapabilitiesDto as cO, KmsProviderInfoDto as cP, KmsProvidersResponseDto as cQ, KmsTenantConfigResponseDto as cR, ManagedAuthorizationServerConfig as cS, ManagedUserDto as cT, MetadataSchemaDto as cU, MsoMdocClaimsQuery as cV, MsoMdocCredentialQueryMeta as cW, NoneTrustPolicy as cX, NotificationRequestDto as cY, Object$1 as cZ, ObjectWritable as c_, KeyChainControllerDeleteResponses as ca, KeyChainControllerDeleteTenantKmsConfigData as cb, KeyChainControllerDeleteTenantKmsConfigResponses as cc, KeyChainControllerExportData as cd, KeyChainControllerExportErrors as ce, KeyChainControllerExportResponse as cf, KeyChainControllerExportResponses as cg, KeyChainControllerGetAllData as ch, KeyChainControllerGetAllResponse as ci, KeyChainControllerGetAllResponses as cj, KeyChainControllerGetByIdData as ck, KeyChainControllerGetByIdErrors as cl, KeyChainControllerGetByIdResponse as cm, KeyChainControllerGetByIdResponses as cn, KeyChainControllerGetProvidersData as co, KeyChainControllerGetProvidersHealthData as cp, KeyChainControllerGetProvidersHealthResponses as cq, KeyChainControllerGetProvidersResponse as cr, KeyChainControllerGetProvidersResponses as cs, KeyChainControllerGetTenantKmsConfigData as ct, KeyChainControllerGetTenantKmsConfigResponse as cu, KeyChainControllerGetTenantKmsConfigResponses as cv, KeyChainControllerImportData as cw, KeyChainControllerImportResponses as cx, KeyChainControllerRotateData as cy, KeyChainControllerRotateErrors as cz, AppControllerGetFrontendConfigResponse as d, RegistrationCertificateDefaults as d$, OfferResponse as d0, Oid4VpAuthorizationServerConfig as d1, PaginatedSessionResponseDto as d2, ParResponseDto as d3, PolicyCredential as d4, PresentationAttachment as d5, PresentationConfig as d6, PresentationConfigCreateDto as d7, PresentationConfigUpdateDto as d8, PresentationConfigWritable as d9, PresentationManagementControllerStorePresentationConfigResponses as dA, PresentationManagementControllerUpdateConfigurationData as dB, PresentationManagementControllerUpdateConfigurationResponse as dC, PresentationManagementControllerUpdateConfigurationResponses as dD, PresentationRequest as dE, PublicKeyInfoDto as dF, RegistrarConfigResponseDto as dG, RegistrarControllerCreateAccessCertificateData as dH, RegistrarControllerCreateAccessCertificateErrors as dI, RegistrarControllerCreateAccessCertificateResponse as dJ, RegistrarControllerCreateAccessCertificateResponses as dK, RegistrarControllerCreateConfigData as dL, RegistrarControllerCreateConfigErrors as dM, RegistrarControllerCreateConfigResponse as dN, RegistrarControllerCreateConfigResponses as dO, RegistrarControllerDeleteConfigData as dP, RegistrarControllerDeleteConfigResponse as dQ, RegistrarControllerDeleteConfigResponses as dR, RegistrarControllerGetConfigData as dS, RegistrarControllerGetConfigErrors as dT, RegistrarControllerGetConfigResponse as dU, RegistrarControllerGetConfigResponses as dV, RegistrarControllerUpdateConfigData as dW, RegistrarControllerUpdateConfigErrors as dX, RegistrarControllerUpdateConfigResponse as dY, RegistrarControllerUpdateConfigResponses as dZ, RegistrationCertificateBody as d_, PresentationDuringIssuanceConfig as da, PresentationManagementControllerConfigurationData as db, PresentationManagementControllerConfigurationResponse as dc, PresentationManagementControllerConfigurationResponses as dd, PresentationManagementControllerDeleteConfigurationData as de, PresentationManagementControllerDeleteConfigurationResponses as df, PresentationManagementControllerGetConfigurationData as dg, PresentationManagementControllerGetConfigurationResponse as dh, PresentationManagementControllerGetConfigurationResponses as di, PresentationManagementControllerListSchemaMetadataCatalogData as dj, PresentationManagementControllerListSchemaMetadataCatalogResponses as dk, PresentationManagementControllerReissueRegistrationCertificateData as dl, PresentationManagementControllerReissueRegistrationCertificateErrors as dm, PresentationManagementControllerReissueRegistrationCertificateResponses as dn, PresentationManagementControllerResolveIssuerMetadataData as dp, PresentationManagementControllerResolveIssuerMetadataErrors as dq, PresentationManagementControllerResolveIssuerMetadataResponses as dr, PresentationManagementControllerResolveSchemaMetadataData as ds, PresentationManagementControllerResolveSchemaMetadataErrors as dt, PresentationManagementControllerResolveSchemaMetadataJwtData as du, PresentationManagementControllerResolveSchemaMetadataJwtErrors as dv, PresentationManagementControllerResolveSchemaMetadataJwtResponses as dw, PresentationManagementControllerResolveSchemaMetadataResponses as dx, PresentationManagementControllerStorePresentationConfigData as dy, PresentationManagementControllerStorePresentationConfigResponse as dz, AppControllerGetFrontendConfigResponses as e, SessionConfigControllerUpdateConfigResponse as e$, RegistrationCertificatePurpose as e0, RegistrationCertificateRequest as e1, ResolveIssuerMetadataDto as e2, ResolveSchemaMetadataDto as e3, ResolveSchemaMetadataJwtDto as e4, RoleDto as e5, RootOfTrustPolicy as e6, RotationPolicyCreateDto as e7, RotationPolicyImportDto as e8, RotationPolicyResponseDto as e9, SchemaMetadataControllerGetVocabulariesData as eA, SchemaMetadataControllerGetVocabulariesResponse as eB, SchemaMetadataControllerGetVocabulariesResponses as eC, SchemaMetadataControllerPublishSchemaMetadataData as eD, SchemaMetadataControllerPublishSchemaMetadataErrors as eE, SchemaMetadataControllerPublishSchemaMetadataResponses as eF, SchemaMetadataControllerPublishSchemaMetadataVersionData as eG, SchemaMetadataControllerPublishSchemaMetadataVersionErrors as eH, SchemaMetadataControllerPublishSchemaMetadataVersionResponses as eI, SchemaMetadataControllerRemoveData as eJ, SchemaMetadataControllerRemoveResponses as eK, SchemaMetadataControllerSignSchemaMetaConfigData as eL, SchemaMetadataControllerSignSchemaMetaConfigResponses as eM, SchemaMetadataControllerSignVersionSchemaMetaConfigData as eN, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as eO, SchemaMetadataControllerUpdateData as eP, SchemaMetadataControllerUpdateResponse as eQ, SchemaMetadataControllerUpdateResponses as eR, SchemaMetadataResponseDto as eS, SchemaMetadataVocabulariesDto as eT, SchemaUriEntry as eU, SessionConfigControllerGetConfigData as eV, SessionConfigControllerGetConfigResponse as eW, SessionConfigControllerGetConfigResponses as eX, SessionConfigControllerResetConfigData as eY, SessionConfigControllerResetConfigResponses as eZ, SessionConfigControllerUpdateConfigData as e_, RotationPolicyUpdateDto as ea, SchemaMetaConfig as eb, SchemaMetadataControllerDeprecateVersionData as ec, SchemaMetadataControllerDeprecateVersionResponse as ed, SchemaMetadataControllerDeprecateVersionResponses as ee, SchemaMetadataControllerFindAllData as ef, SchemaMetadataControllerFindAllResponse as eg, SchemaMetadataControllerFindAllResponses as eh, SchemaMetadataControllerFindOneData as ei, SchemaMetadataControllerFindOneResponse as ej, SchemaMetadataControllerFindOneResponses as ek, SchemaMetadataControllerGetJwtData as el, SchemaMetadataControllerGetJwtResponse as em, SchemaMetadataControllerGetJwtResponses as en, SchemaMetadataControllerGetLatestData as eo, SchemaMetadataControllerGetLatestResponse as ep, SchemaMetadataControllerGetLatestResponses as eq, SchemaMetadataControllerGetMineData as er, SchemaMetadataControllerGetMineResponse as es, SchemaMetadataControllerGetMineResponses as et, SchemaMetadataControllerGetSchemaData as eu, SchemaMetadataControllerGetSchemaResponse as ev, SchemaMetadataControllerGetSchemaResponses as ew, SchemaMetadataControllerGetVersionsData as ex, SchemaMetadataControllerGetVersionsResponse as ey, SchemaMetadataControllerGetVersionsResponses as ez, AppControllerGetVersionData as f, TenantControllerUpdateTenantData as f$, SessionConfigControllerUpdateConfigResponses as f0, SessionControllerDeleteSessionData as f1, SessionControllerDeleteSessionResponses as f2, SessionControllerGetAllSessionsData as f3, SessionControllerGetAllSessionsResponse as f4, SessionControllerGetAllSessionsResponses as f5, SessionControllerGetSessionData as f6, SessionControllerGetSessionLogsData as f7, SessionControllerGetSessionLogsResponse as f8, SessionControllerGetSessionLogsResponses as f9, StatusListManagementControllerDeleteListResponse as fA, StatusListManagementControllerDeleteListResponses as fB, StatusListManagementControllerGetListData as fC, StatusListManagementControllerGetListResponse as fD, StatusListManagementControllerGetListResponses as fE, StatusListManagementControllerGetListsData as fF, StatusListManagementControllerGetListsResponse as fG, StatusListManagementControllerGetListsResponses as fH, StatusListManagementControllerUpdateListData as fI, StatusListManagementControllerUpdateListResponse as fJ, StatusListManagementControllerUpdateListResponses as fK, StatusListResponseDto as fL, StatusUpdateDto as fM, StorageControllerUploadData as fN, StorageControllerUploadResponse as fO, StorageControllerUploadResponses as fP, TenantControllerDeleteTenantData as fQ, TenantControllerDeleteTenantResponses as fR, TenantControllerGetTenantData as fS, TenantControllerGetTenantResponse as fT, TenantControllerGetTenantResponses as fU, TenantControllerGetTenantsData as fV, TenantControllerGetTenantsResponse as fW, TenantControllerGetTenantsResponses as fX, TenantControllerInitTenantData as fY, TenantControllerInitTenantResponse as fZ, TenantControllerInitTenantResponses as f_, SessionControllerGetSessionResponse as fa, SessionControllerGetSessionResponses as fb, SessionControllerRevokeAllData as fc, SessionControllerRevokeAllResponses as fd, SessionEventsControllerSubscribeToSessionEventsData as fe, SessionEventsControllerSubscribeToSessionEventsResponses as ff, SessionLogEntryResponseDto as fg, SessionStorageConfig as fh, SignSchemaMetaConfigDto as fi, SignVersionSchemaMetaConfigDto as fj, StatusListAggregationDto as fk, StatusListConfig as fl, StatusListConfigControllerGetConfigData as fm, StatusListConfigControllerGetConfigResponse as fn, StatusListConfigControllerGetConfigResponses as fo, StatusListConfigControllerResetConfigData as fp, StatusListConfigControllerResetConfigResponse as fq, StatusListConfigControllerResetConfigResponses as fr, StatusListConfigControllerUpdateConfigData as fs, StatusListConfigControllerUpdateConfigResponse as ft, StatusListConfigControllerUpdateConfigResponses as fu, StatusListImportDto as fv, StatusListManagementControllerCreateListData as fw, StatusListManagementControllerCreateListResponse as fx, StatusListManagementControllerCreateListResponses as fy, StatusListManagementControllerDeleteListData as fz, AppControllerGetVersionResponses as g, UserControllerUpdateUserResponse as g$, TenantControllerUpdateTenantResponse as g0, TenantControllerUpdateTenantResponses as g1, TenantEntity as g2, TokenResponse as g3, TransactionData as g4, TrustAuthorityDto as g5, TrustAuthorityEntry as g6, TrustList as g7, TrustListControllerCreateTrustListData as g8, TrustListControllerCreateTrustListResponse as g9, TrustedAuthorityQueryOpenIdFederation as gA, UpdateAttributeProviderDto as gB, UpdateClientDto as gC, UpdateIssuanceDto as gD, UpdateIssuanceDtoWritable as gE, UpdateIssuerOfferDto as gF, UpdateRegistrarConfigDto as gG, UpdateSchemaMetadataDto as gH, UpdateSessionConfigDto as gI, UpdateStatusListConfigDto as gJ, UpdateStatusListDto as gK, UpdateTenantDto as gL, UpdateUserDto as gM, UpdateWebhookEndpointDto as gN, UpstreamOidcConfig as gO, UserControllerCreateUserData as gP, UserControllerCreateUserResponse as gQ, UserControllerCreateUserResponses as gR, UserControllerDeleteUserData as gS, UserControllerDeleteUserResponses as gT, UserControllerGetUserData as gU, UserControllerGetUserResponse as gV, UserControllerGetUserResponses as gW, UserControllerGetUsersData as gX, UserControllerGetUsersResponse as gY, UserControllerGetUsersResponses as gZ, UserControllerUpdateUserData as g_, TrustListControllerCreateTrustListResponses as ga, TrustListControllerDeleteTrustListData as gb, TrustListControllerDeleteTrustListResponses as gc, TrustListControllerExportTrustListData as gd, TrustListControllerExportTrustListResponse as ge, TrustListControllerExportTrustListResponses as gf, TrustListControllerGetAllTrustListsData as gg, TrustListControllerGetAllTrustListsResponse as gh, TrustListControllerGetAllTrustListsResponses as gi, TrustListControllerGetTrustListData as gj, TrustListControllerGetTrustListResponse as gk, TrustListControllerGetTrustListResponses as gl, TrustListControllerGetTrustListVersionData as gm, TrustListControllerGetTrustListVersionResponse as gn, TrustListControllerGetTrustListVersionResponses as go, TrustListControllerGetTrustListVersionsData as gp, TrustListControllerGetTrustListVersionsResponse as gq, TrustListControllerGetTrustListVersionsResponses as gr, TrustListControllerUpdateTrustListData as gs, TrustListControllerUpdateTrustListResponse as gt, TrustListControllerUpdateTrustListResponses as gu, TrustListCreateDto as gv, TrustListEntityInfo as gw, TrustListRef as gx, TrustListVersion as gy, TrustedAuthorityQueryEtsiTl as gz, AttestationBasedPolicy as h, UserControllerUpdateUserResponses as h0, Vct as h1, VerifierOfferControllerGetOfferData as h2, VerifierOfferControllerGetOfferResponse as h3, VerifierOfferControllerGetOfferResponses as h4, VocabularyEntryDto as h5, WalletProviderTrustListRefDto as h6, WebHookAuthConfigHeader as h7, WebHookAuthConfigNone as h8, WebhookConfig as h9, WebhookEndpointControllerCreateData as ha, WebhookEndpointControllerCreateResponses as hb, WebhookEndpointControllerDeleteData as hc, WebhookEndpointControllerDeleteErrors as hd, WebhookEndpointControllerDeleteResponses as he, WebhookEndpointControllerGetAllData as hf, WebhookEndpointControllerGetAllResponse as hg, WebhookEndpointControllerGetAllResponses as hh, WebhookEndpointControllerGetByIdData as hi, WebhookEndpointControllerGetByIdErrors as hj, WebhookEndpointControllerGetByIdResponses as hk, WebhookEndpointControllerUpdateData as hl, WebhookEndpointControllerUpdateErrors as hm, WebhookEndpointControllerUpdateResponses as hn, WebhookEndpointEntity as ho, AttributeProviderControllerCreateData as i, AttributeProviderControllerCreateResponses as j, AttributeProviderControllerDeleteData as k, AttributeProviderControllerDeleteErrors as l, AttributeProviderControllerDeleteResponses as m, AttributeProviderControllerGetAllData as n, AttributeProviderControllerGetAllResponses as o, AttributeProviderControllerGetByIdData as p, AttributeProviderControllerGetByIdErrors as q, AttributeProviderControllerGetByIdResponses as r, AttributeProviderControllerUpdateData as s, AttributeProviderControllerUpdateErrors as t, AttributeProviderControllerUpdateResponses as u, AttributeProviderEntity as v, AuditLogControllerGetAuditLogsData as w, AuditLogControllerGetAuditLogsResponse as x, AuditLogControllerGetAuditLogsResponses as y, AuditLogResponseDto as z };
|