@eudiplo/sdk-core 3.0.0 → 3.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/index.d.mts +1 -1
- package/dist/api/client/index.d.ts +1 -1
- 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 +2 -2
- package/dist/api/client.gen.d.ts +2 -2
- package/dist/api/index.d.mts +38 -24
- package/dist/api/index.d.ts +38 -24
- package/dist/api/index.js +54 -33
- package/dist/api/index.mjs +52 -34
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +54 -33
- package/dist/index.mjs +52 -34
- package/dist/{types.gen-CxMpZyVO.d.mts → types.gen-B8BIFvOm.d.mts} +252 -102
- package/dist/{types.gen-CxMpZyVO.d.ts → types.gen-B8BIFvOm.d.ts} +252 -102
- package/dist/{types.gen-DDunhhsd.d.mts → types.gen-Bdvb9JJk.d.mts} +1 -1
- package/dist/{types.gen-DDunhhsd.d.ts → types.gen-Bdvb9JJk.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -213,12 +213,6 @@ type CreateClientDto = {
|
|
|
213
213
|
*/
|
|
214
214
|
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
215
215
|
};
|
|
216
|
-
type CertUsageEntity = {
|
|
217
|
-
tenantId: string;
|
|
218
|
-
certId: string;
|
|
219
|
-
usage: "access" | "signing" | "trustList" | "statusList";
|
|
220
|
-
cert: CertEntity;
|
|
221
|
-
};
|
|
222
216
|
type KeyEntity = {
|
|
223
217
|
/**
|
|
224
218
|
* Unique identifier for the key.
|
|
@@ -249,6 +243,11 @@ type KeyEntity = {
|
|
|
249
243
|
usage: {
|
|
250
244
|
[key: string]: unknown;
|
|
251
245
|
};
|
|
246
|
+
/**
|
|
247
|
+
* The KMS provider used for this key.
|
|
248
|
+
* References a configured KMS provider name.
|
|
249
|
+
*/
|
|
250
|
+
kmsProvider: string;
|
|
252
251
|
/**
|
|
253
252
|
* Certificates associated with this key.
|
|
254
253
|
*/
|
|
@@ -298,37 +297,11 @@ type CertEntity = {
|
|
|
298
297
|
*/
|
|
299
298
|
updatedAt: string;
|
|
300
299
|
};
|
|
301
|
-
type
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
d: string;
|
|
307
|
-
alg: string;
|
|
308
|
-
};
|
|
309
|
-
type KeyImportDto = {
|
|
310
|
-
/**
|
|
311
|
-
* The private key in JWK format.
|
|
312
|
-
*/
|
|
313
|
-
key: Key;
|
|
314
|
-
/**
|
|
315
|
-
* Unique identifier for the key.
|
|
316
|
-
*/
|
|
317
|
-
id: string;
|
|
318
|
-
/**
|
|
319
|
-
* Description of the key.
|
|
320
|
-
*/
|
|
321
|
-
description?: string;
|
|
322
|
-
};
|
|
323
|
-
type UpdateKeyDto = {
|
|
324
|
-
/**
|
|
325
|
-
* Unique identifier for the key.
|
|
326
|
-
*/
|
|
327
|
-
id: string;
|
|
328
|
-
/**
|
|
329
|
-
* Description of the key.
|
|
330
|
-
*/
|
|
331
|
-
description?: string;
|
|
300
|
+
type CertUsageEntity = {
|
|
301
|
+
tenantId: string;
|
|
302
|
+
certId: string;
|
|
303
|
+
usage: "access" | "signing" | "trustList" | "statusList";
|
|
304
|
+
cert: CertEntity;
|
|
332
305
|
};
|
|
333
306
|
type CertImportDto = {
|
|
334
307
|
/**
|
|
@@ -905,14 +878,9 @@ type IssuanceDto = {
|
|
|
905
878
|
display: Array<DisplayInfo>;
|
|
906
879
|
};
|
|
907
880
|
type ClaimsQuery = {
|
|
908
|
-
id
|
|
909
|
-
path: Array<string>;
|
|
910
|
-
values?: Array<{
|
|
911
|
-
[key: string]: unknown;
|
|
912
|
-
}>;
|
|
913
|
-
};
|
|
914
|
-
type Claim = {
|
|
881
|
+
id?: string;
|
|
915
882
|
path: Array<string>;
|
|
883
|
+
values?: Array<string>;
|
|
916
884
|
};
|
|
917
885
|
type TrustedAuthorityQuery = {
|
|
918
886
|
type: "aki" | "etsi_tl";
|
|
@@ -922,7 +890,7 @@ type CredentialQuery = {
|
|
|
922
890
|
id: string;
|
|
923
891
|
format: string;
|
|
924
892
|
multiple?: boolean;
|
|
925
|
-
claims?: Array<
|
|
893
|
+
claims?: Array<ClaimsQuery>;
|
|
926
894
|
meta: {
|
|
927
895
|
[key: string]: unknown;
|
|
928
896
|
};
|
|
@@ -1584,13 +1552,32 @@ type OfferResponse = {
|
|
|
1584
1552
|
session: string;
|
|
1585
1553
|
};
|
|
1586
1554
|
type CompleteDeferredDto = {
|
|
1587
|
-
|
|
1555
|
+
/**
|
|
1556
|
+
* Claims to include in the credential. The structure should match the credential configuration's expected claims.
|
|
1557
|
+
*/
|
|
1558
|
+
claims: {
|
|
1559
|
+
[key: string]: unknown;
|
|
1560
|
+
};
|
|
1588
1561
|
};
|
|
1589
1562
|
type DeferredOperationResponse = {
|
|
1590
|
-
|
|
1563
|
+
/**
|
|
1564
|
+
* The transaction ID
|
|
1565
|
+
*/
|
|
1566
|
+
transactionId: string;
|
|
1567
|
+
/**
|
|
1568
|
+
* The new status of the transaction
|
|
1569
|
+
*/
|
|
1570
|
+
status: "pending" | "ready" | "retrieved" | "expired" | "failed";
|
|
1571
|
+
/**
|
|
1572
|
+
* Optional message
|
|
1573
|
+
*/
|
|
1574
|
+
message?: string;
|
|
1591
1575
|
};
|
|
1592
1576
|
type FailDeferredDto = {
|
|
1593
|
-
|
|
1577
|
+
/**
|
|
1578
|
+
* Optional error message explaining why the issuance failed
|
|
1579
|
+
*/
|
|
1580
|
+
error?: string;
|
|
1594
1581
|
};
|
|
1595
1582
|
type EcPublic = {
|
|
1596
1583
|
/**
|
|
@@ -1799,6 +1786,113 @@ type TrustListVersion = {
|
|
|
1799
1786
|
jwt: string;
|
|
1800
1787
|
createdAt: string;
|
|
1801
1788
|
};
|
|
1789
|
+
type DbKmsConfigDto = {
|
|
1790
|
+
[key: string]: unknown;
|
|
1791
|
+
};
|
|
1792
|
+
type VaultKmsConfigDto = {
|
|
1793
|
+
/**
|
|
1794
|
+
* URL of the HashiCorp Vault instance. Supports ${ENV_VAR} placeholders.
|
|
1795
|
+
*/
|
|
1796
|
+
vaultUrl: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* Authentication token for HashiCorp Vault. Supports ${ENV_VAR} placeholders.
|
|
1799
|
+
*/
|
|
1800
|
+
vaultToken: string;
|
|
1801
|
+
};
|
|
1802
|
+
type KmsConfigDto = {
|
|
1803
|
+
/**
|
|
1804
|
+
* Name of the default KMS provider. Defaults to "db" if not set.
|
|
1805
|
+
*/
|
|
1806
|
+
defaultProvider?: string;
|
|
1807
|
+
providers: {
|
|
1808
|
+
db?: DbKmsConfigDto;
|
|
1809
|
+
vault?: VaultKmsConfigDto;
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
type KmsProviderCapabilitiesDto = {
|
|
1813
|
+
/**
|
|
1814
|
+
* Whether the provider supports importing existing keys.
|
|
1815
|
+
*/
|
|
1816
|
+
canImport: boolean;
|
|
1817
|
+
/**
|
|
1818
|
+
* Whether the provider supports generating new keys.
|
|
1819
|
+
*/
|
|
1820
|
+
canCreate: boolean;
|
|
1821
|
+
/**
|
|
1822
|
+
* Whether the provider supports deleting keys.
|
|
1823
|
+
*/
|
|
1824
|
+
canDelete: boolean;
|
|
1825
|
+
};
|
|
1826
|
+
type KmsProviderInfoDto = {
|
|
1827
|
+
/**
|
|
1828
|
+
* Unique provider name (matches the key in kms.json).
|
|
1829
|
+
*/
|
|
1830
|
+
name: string;
|
|
1831
|
+
/**
|
|
1832
|
+
* Capabilities of this provider.
|
|
1833
|
+
*/
|
|
1834
|
+
capabilities: KmsProviderCapabilitiesDto;
|
|
1835
|
+
};
|
|
1836
|
+
type KmsProvidersResponseDto = {
|
|
1837
|
+
/**
|
|
1838
|
+
* Detailed info for each registered KMS provider.
|
|
1839
|
+
*/
|
|
1840
|
+
providers: Array<KmsProviderInfoDto>;
|
|
1841
|
+
/**
|
|
1842
|
+
* The default KMS provider name.
|
|
1843
|
+
*/
|
|
1844
|
+
default: string;
|
|
1845
|
+
};
|
|
1846
|
+
type KeyGenerateDto = {
|
|
1847
|
+
/**
|
|
1848
|
+
* KMS provider to use (defaults to the configured default provider).
|
|
1849
|
+
*/
|
|
1850
|
+
kmsProvider?: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* Optional human-readable description for the key.
|
|
1853
|
+
*/
|
|
1854
|
+
description?: string;
|
|
1855
|
+
};
|
|
1856
|
+
type Key = {
|
|
1857
|
+
kty: string;
|
|
1858
|
+
x: string;
|
|
1859
|
+
y: string;
|
|
1860
|
+
crv: string;
|
|
1861
|
+
d: string;
|
|
1862
|
+
alg: string;
|
|
1863
|
+
};
|
|
1864
|
+
type KeyImportDto = {
|
|
1865
|
+
/**
|
|
1866
|
+
* KMS provider name to use for this key. Defaults to the configured default.
|
|
1867
|
+
*/
|
|
1868
|
+
kmsProvider?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* The private key in JWK format.
|
|
1871
|
+
*/
|
|
1872
|
+
key: Key;
|
|
1873
|
+
/**
|
|
1874
|
+
* Unique identifier for the key.
|
|
1875
|
+
*/
|
|
1876
|
+
id: string;
|
|
1877
|
+
/**
|
|
1878
|
+
* Description of the key.
|
|
1879
|
+
*/
|
|
1880
|
+
description?: string;
|
|
1881
|
+
};
|
|
1882
|
+
type UpdateKeyDto = {
|
|
1883
|
+
/**
|
|
1884
|
+
* KMS provider name to use for this key. Defaults to the configured default.
|
|
1885
|
+
*/
|
|
1886
|
+
kmsProvider?: string;
|
|
1887
|
+
/**
|
|
1888
|
+
* Unique identifier for the key.
|
|
1889
|
+
*/
|
|
1890
|
+
id: string;
|
|
1891
|
+
/**
|
|
1892
|
+
* Description of the key.
|
|
1893
|
+
*/
|
|
1894
|
+
description?: string;
|
|
1895
|
+
};
|
|
1802
1896
|
type PresentationRequest = {
|
|
1803
1897
|
/**
|
|
1804
1898
|
* The type of response expected from the presentation request.
|
|
@@ -2078,59 +2172,6 @@ type ClientControllerRotateClientSecretResponses = {
|
|
|
2078
2172
|
201: ClientSecretResponseDto;
|
|
2079
2173
|
};
|
|
2080
2174
|
type ClientControllerRotateClientSecretResponse = ClientControllerRotateClientSecretResponses[keyof ClientControllerRotateClientSecretResponses];
|
|
2081
|
-
type KeyControllerGetKeysData = {
|
|
2082
|
-
body?: never;
|
|
2083
|
-
path?: never;
|
|
2084
|
-
query?: never;
|
|
2085
|
-
url: "/key";
|
|
2086
|
-
};
|
|
2087
|
-
type KeyControllerGetKeysResponses = {
|
|
2088
|
-
200: Array<KeyEntity>;
|
|
2089
|
-
};
|
|
2090
|
-
type KeyControllerGetKeysResponse = KeyControllerGetKeysResponses[keyof KeyControllerGetKeysResponses];
|
|
2091
|
-
type KeyControllerAddKeyData = {
|
|
2092
|
-
body: KeyImportDto;
|
|
2093
|
-
path?: never;
|
|
2094
|
-
query?: never;
|
|
2095
|
-
url: "/key";
|
|
2096
|
-
};
|
|
2097
|
-
type KeyControllerAddKeyResponses = {
|
|
2098
|
-
201: unknown;
|
|
2099
|
-
};
|
|
2100
|
-
type KeyControllerDeleteKeyData = {
|
|
2101
|
-
body?: never;
|
|
2102
|
-
path: {
|
|
2103
|
-
id: string;
|
|
2104
|
-
};
|
|
2105
|
-
query?: never;
|
|
2106
|
-
url: "/key/{id}";
|
|
2107
|
-
};
|
|
2108
|
-
type KeyControllerDeleteKeyResponses = {
|
|
2109
|
-
200: unknown;
|
|
2110
|
-
};
|
|
2111
|
-
type KeyControllerGetKeyData = {
|
|
2112
|
-
body?: never;
|
|
2113
|
-
path: {
|
|
2114
|
-
id: string;
|
|
2115
|
-
};
|
|
2116
|
-
query?: never;
|
|
2117
|
-
url: "/key/{id}";
|
|
2118
|
-
};
|
|
2119
|
-
type KeyControllerGetKeyResponses = {
|
|
2120
|
-
200: KeyEntity;
|
|
2121
|
-
};
|
|
2122
|
-
type KeyControllerGetKeyResponse = KeyControllerGetKeyResponses[keyof KeyControllerGetKeyResponses];
|
|
2123
|
-
type KeyControllerUpdateKeyData = {
|
|
2124
|
-
body: UpdateKeyDto;
|
|
2125
|
-
path: {
|
|
2126
|
-
id: string;
|
|
2127
|
-
};
|
|
2128
|
-
query?: never;
|
|
2129
|
-
url: "/key/{id}";
|
|
2130
|
-
};
|
|
2131
|
-
type KeyControllerUpdateKeyResponses = {
|
|
2132
|
-
200: unknown;
|
|
2133
|
-
};
|
|
2134
2175
|
type CertControllerGetCertificatesData = {
|
|
2135
2176
|
body?: never;
|
|
2136
2177
|
path?: never;
|
|
@@ -2793,6 +2834,14 @@ type ChainedAsControllerParData = {
|
|
|
2793
2834
|
* DPoP proof JWT
|
|
2794
2835
|
*/
|
|
2795
2836
|
DPoP?: string;
|
|
2837
|
+
/**
|
|
2838
|
+
* Wallet attestation JWT
|
|
2839
|
+
*/
|
|
2840
|
+
"OAuth-Client-Attestation"?: string;
|
|
2841
|
+
/**
|
|
2842
|
+
* Wallet attestation proof-of-possession JWT
|
|
2843
|
+
*/
|
|
2844
|
+
"OAuth-Client-Attestation-PoP"?: string;
|
|
2796
2845
|
};
|
|
2797
2846
|
path: {
|
|
2798
2847
|
/**
|
|
@@ -3060,6 +3109,20 @@ type WellKnownControllerAuthzMetadata1Data = {
|
|
|
3060
3109
|
type WellKnownControllerAuthzMetadata1Responses = {
|
|
3061
3110
|
200: unknown;
|
|
3062
3111
|
};
|
|
3112
|
+
type WellKnownControllerChainedAsMetadataData = {
|
|
3113
|
+
body?: never;
|
|
3114
|
+
path: {
|
|
3115
|
+
tenantId: string;
|
|
3116
|
+
};
|
|
3117
|
+
query?: never;
|
|
3118
|
+
url: "/.well-known/oauth-authorization-server/{tenantId}/chained-as";
|
|
3119
|
+
};
|
|
3120
|
+
type WellKnownControllerChainedAsMetadataResponses = {
|
|
3121
|
+
200: {
|
|
3122
|
+
[key: string]: unknown;
|
|
3123
|
+
};
|
|
3124
|
+
};
|
|
3125
|
+
type WellKnownControllerChainedAsMetadataResponse = WellKnownControllerChainedAsMetadataResponses[keyof WellKnownControllerChainedAsMetadataResponses];
|
|
3063
3126
|
type WellKnownControllerGetJwks0Data = {
|
|
3064
3127
|
body?: never;
|
|
3065
3128
|
path: {
|
|
@@ -3345,6 +3408,93 @@ type TrustListPublicControllerGetTrustListJwtResponses = {
|
|
|
3345
3408
|
200: string;
|
|
3346
3409
|
};
|
|
3347
3410
|
type TrustListPublicControllerGetTrustListJwtResponse = TrustListPublicControllerGetTrustListJwtResponses[keyof TrustListPublicControllerGetTrustListJwtResponses];
|
|
3411
|
+
type KeyControllerGetProvidersData = {
|
|
3412
|
+
body?: never;
|
|
3413
|
+
path?: never;
|
|
3414
|
+
query?: never;
|
|
3415
|
+
url: "/key/providers";
|
|
3416
|
+
};
|
|
3417
|
+
type KeyControllerGetProvidersResponses = {
|
|
3418
|
+
/**
|
|
3419
|
+
* List of available KMS providers
|
|
3420
|
+
*/
|
|
3421
|
+
200: KmsProvidersResponseDto;
|
|
3422
|
+
};
|
|
3423
|
+
type KeyControllerGetProvidersResponse = KeyControllerGetProvidersResponses[keyof KeyControllerGetProvidersResponses];
|
|
3424
|
+
type KeyControllerGetKeysData = {
|
|
3425
|
+
body?: never;
|
|
3426
|
+
path?: never;
|
|
3427
|
+
query?: never;
|
|
3428
|
+
url: "/key";
|
|
3429
|
+
};
|
|
3430
|
+
type KeyControllerGetKeysResponses = {
|
|
3431
|
+
200: Array<KeyEntity>;
|
|
3432
|
+
};
|
|
3433
|
+
type KeyControllerGetKeysResponse = KeyControllerGetKeysResponses[keyof KeyControllerGetKeysResponses];
|
|
3434
|
+
type KeyControllerAddKeyData = {
|
|
3435
|
+
body: KeyImportDto;
|
|
3436
|
+
path?: never;
|
|
3437
|
+
query?: never;
|
|
3438
|
+
url: "/key";
|
|
3439
|
+
};
|
|
3440
|
+
type KeyControllerAddKeyResponses = {
|
|
3441
|
+
/**
|
|
3442
|
+
* Key imported successfully
|
|
3443
|
+
*/
|
|
3444
|
+
201: unknown;
|
|
3445
|
+
};
|
|
3446
|
+
type KeyControllerDeleteKeyData = {
|
|
3447
|
+
body?: never;
|
|
3448
|
+
path: {
|
|
3449
|
+
id: string;
|
|
3450
|
+
};
|
|
3451
|
+
query?: never;
|
|
3452
|
+
url: "/key/{id}";
|
|
3453
|
+
};
|
|
3454
|
+
type KeyControllerDeleteKeyResponses = {
|
|
3455
|
+
/**
|
|
3456
|
+
* Key deleted successfully
|
|
3457
|
+
*/
|
|
3458
|
+
200: unknown;
|
|
3459
|
+
};
|
|
3460
|
+
type KeyControllerGetKeyData = {
|
|
3461
|
+
body?: never;
|
|
3462
|
+
path: {
|
|
3463
|
+
id: string;
|
|
3464
|
+
};
|
|
3465
|
+
query?: never;
|
|
3466
|
+
url: "/key/{id}";
|
|
3467
|
+
};
|
|
3468
|
+
type KeyControllerGetKeyResponses = {
|
|
3469
|
+
200: KeyEntity;
|
|
3470
|
+
};
|
|
3471
|
+
type KeyControllerGetKeyResponse = KeyControllerGetKeyResponses[keyof KeyControllerGetKeyResponses];
|
|
3472
|
+
type KeyControllerUpdateKeyData = {
|
|
3473
|
+
body: UpdateKeyDto;
|
|
3474
|
+
path: {
|
|
3475
|
+
id: string;
|
|
3476
|
+
};
|
|
3477
|
+
query?: never;
|
|
3478
|
+
url: "/key/{id}";
|
|
3479
|
+
};
|
|
3480
|
+
type KeyControllerUpdateKeyResponses = {
|
|
3481
|
+
/**
|
|
3482
|
+
* Key updated successfully
|
|
3483
|
+
*/
|
|
3484
|
+
200: unknown;
|
|
3485
|
+
};
|
|
3486
|
+
type KeyControllerGenerateKeyData = {
|
|
3487
|
+
body: KeyGenerateDto;
|
|
3488
|
+
path?: never;
|
|
3489
|
+
query?: never;
|
|
3490
|
+
url: "/key/generate";
|
|
3491
|
+
};
|
|
3492
|
+
type KeyControllerGenerateKeyResponses = {
|
|
3493
|
+
/**
|
|
3494
|
+
* Key generated successfully
|
|
3495
|
+
*/
|
|
3496
|
+
201: unknown;
|
|
3497
|
+
};
|
|
3348
3498
|
type VerifierOfferControllerGetOfferData = {
|
|
3349
3499
|
body: PresentationRequest;
|
|
3350
3500
|
path?: never;
|
|
@@ -3385,4 +3535,4 @@ type StorageControllerDownloadResponses = {
|
|
|
3385
3535
|
200: unknown;
|
|
3386
3536
|
};
|
|
3387
3537
|
|
|
3388
|
-
export type { CertControllerGetCertificatesResponse as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, HealthControllerCheckResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertControllerAddCertificateData as O, CertControllerAddCertificateResponse as P, CertControllerAddCertificateResponses as Q, CertControllerDeleteCertificateData as R, Session as S, CertControllerDeleteCertificateResponses as T, CertControllerExportConfigData as U, CertControllerExportConfigResponse as V, CertControllerExportConfigResponses as W, CertControllerGetCertificateData as X, CertControllerGetCertificateResponse as Y, CertControllerGetCertificateResponses as Z, CertControllerGetCertificatesData as _, HealthControllerCheckError as a, CompleteDeferredDto as a$, CertControllerGetCertificatesResponses as a0, CertControllerUpdateCertificateData as a1, CertControllerUpdateCertificateResponses as a2, CertEntity as a3, CertImportDto as a4, CertResponseDto as a5, CertUpdateDto as a6, CertUsageEntity as a7, ChainedAsConfig as a8, ChainedAsControllerAuthorizeData as a9, ChainedAsTokenResponseDto as aA, Claim as aB, ClaimsQuery as aC, ClientControllerCreateClientData as aD, ClientControllerCreateClientResponse as aE, ClientControllerCreateClientResponses as aF, ClientControllerDeleteClientData as aG, ClientControllerDeleteClientResponses as aH, ClientControllerGetClientData as aI, ClientControllerGetClientResponse as aJ, ClientControllerGetClientResponses as aK, ClientControllerGetClientSecretData as aL, ClientControllerGetClientSecretResponse as aM, ClientControllerGetClientSecretResponses as aN, ClientControllerGetClientsData as aO, ClientControllerGetClientsResponse as aP, ClientControllerGetClientsResponses as aQ, ClientControllerRotateClientSecretData as aR, ClientControllerRotateClientSecretResponse as aS, ClientControllerRotateClientSecretResponses as aT, ClientControllerUpdateClientData as aU, ClientControllerUpdateClientResponse as aV, ClientControllerUpdateClientResponses as aW, ClientCredentialsDto as aX, ClientEntity as aY, ClientOptions as aZ, ClientSecretResponseDto as a_, ChainedAsControllerAuthorizeError as aa, ChainedAsControllerAuthorizeErrors as ab, ChainedAsControllerAuthorizeResponses as ac, ChainedAsControllerCallbackData as ad, ChainedAsControllerCallbackError as ae, ChainedAsControllerCallbackErrors as af, ChainedAsControllerCallbackResponses as ag, ChainedAsControllerGetMetadataData as ah, ChainedAsControllerGetMetadataResponses as ai, ChainedAsControllerJwksData as aj, ChainedAsControllerJwksResponses as ak, ChainedAsControllerParData as al, ChainedAsControllerParError as am, ChainedAsControllerParErrors as an, ChainedAsControllerParResponse as ao, ChainedAsControllerParResponses as ap, ChainedAsControllerTokenData as aq, ChainedAsControllerTokenError as ar, ChainedAsControllerTokenErrors as as, ChainedAsControllerTokenResponse as at, ChainedAsControllerTokenResponses as au, ChainedAsErrorResponseDto as av, ChainedAsParRequestDto as aw, ChainedAsParResponseDto as ax, ChainedAsTokenConfig as ay, ChainedAsTokenRequestDto as az, ApiKeyConfig as b, IssuanceConfig as b$, CreateAccessCertificateDto as b0, CreateClientDto as b1, CreateRegistrarConfigDto as b2, CreateStatusListDto as b3, CreateTenantDto as b4, CredentialConfig as b5, CredentialConfigControllerDeleteIssuanceConfigurationData as b6, CredentialConfigControllerDeleteIssuanceConfigurationResponses as b7, CredentialConfigControllerGetConfigByIdData as b8, CredentialConfigControllerGetConfigByIdResponse as b9, DeferredCredentialRequestDto as bA, DeferredOperationResponse as bB, Display as bC, DisplayImage as bD, DisplayInfo as bE, DisplayLogo as bF, EcPublic as bG, EmbeddedDisclosurePolicy as bH, FailDeferredDto as bI, FileUploadDto as bJ, HealthControllerCheckData as bK, HealthControllerCheckErrors as bL, HealthControllerCheckResponses as bM, IaeActionOpenid4VpPresentation as bN, IaeActionRedirectToWeb as bO, ImportTenantDto as bP, InteractiveAuthorizationCodeResponseDto as bQ, InteractiveAuthorizationControllerCompleteWebAuthData as bR, InteractiveAuthorizationControllerCompleteWebAuthErrors as bS, InteractiveAuthorizationControllerCompleteWebAuthResponses as bT, InteractiveAuthorizationControllerInteractiveAuthorizationData as bU, InteractiveAuthorizationControllerInteractiveAuthorizationError as bV, InteractiveAuthorizationControllerInteractiveAuthorizationErrors as bW, InteractiveAuthorizationControllerInteractiveAuthorizationResponse as bX, InteractiveAuthorizationControllerInteractiveAuthorizationResponses as bY, InteractiveAuthorizationErrorResponseDto as bZ, InteractiveAuthorizationRequestDto as b_, CredentialConfigControllerGetConfigByIdResponses as ba, CredentialConfigControllerGetConfigsData as bb, CredentialConfigControllerGetConfigsResponse as bc, CredentialConfigControllerGetConfigsResponses as bd, CredentialConfigControllerStoreCredentialConfigurationData as be, CredentialConfigControllerStoreCredentialConfigurationResponse as bf, CredentialConfigControllerStoreCredentialConfigurationResponses as bg, CredentialConfigControllerUpdateCredentialConfigurationData as bh, CredentialConfigControllerUpdateCredentialConfigurationResponse as bi, CredentialConfigControllerUpdateCredentialConfigurationResponses as bj, CredentialConfigCreate as bk, CredentialConfigUpdate as bl, CredentialOfferControllerGetOfferData as bm, CredentialOfferControllerGetOfferResponse as bn, CredentialOfferControllerGetOfferResponses as bo, CredentialQuery as bp, CredentialSetQuery as bq, Dcql as br, DeferredControllerCompleteDeferredData as bs, DeferredControllerCompleteDeferredErrors as bt, DeferredControllerCompleteDeferredResponse as bu, DeferredControllerCompleteDeferredResponses as bv, DeferredControllerFailDeferredData as bw, DeferredControllerFailDeferredErrors as bx, DeferredControllerFailDeferredResponse as by, DeferredControllerFailDeferredResponses as bz, AppControllerMainData as c, PresentationManagementControllerDeleteConfigurationResponses as c$, IssuanceConfigControllerGetIssuanceConfigurationsData as c0, IssuanceConfigControllerGetIssuanceConfigurationsResponse as c1, IssuanceConfigControllerGetIssuanceConfigurationsResponses as c2, IssuanceConfigControllerStoreIssuanceConfigurationData as c3, IssuanceConfigControllerStoreIssuanceConfigurationResponse as c4, IssuanceConfigControllerStoreIssuanceConfigurationResponses as c5, IssuanceDto as c6, IssuerMetadataCredentialConfig as c7, JwksResponseDto as c8, Key as c9, Oid4VciControllerNotificationsResponses as cA, Oid4VciMetadataControllerVctData as cB, Oid4VciMetadataControllerVctResponse as cC, Oid4VciMetadataControllerVctResponses as cD, Oid4VpControllerGetPostRequestWithSessionData as cE, Oid4VpControllerGetPostRequestWithSessionResponse as cF, Oid4VpControllerGetPostRequestWithSessionResponses as cG, Oid4VpControllerGetRequestNoRedirectWithSessionData as cH, Oid4VpControllerGetRequestNoRedirectWithSessionResponse as cI, Oid4VpControllerGetRequestNoRedirectWithSessionResponses as cJ, Oid4VpControllerGetRequestWithSessionData as cK, Oid4VpControllerGetRequestWithSessionResponse as cL, Oid4VpControllerGetRequestWithSessionResponses as cM, Oid4VpControllerGetResponseData as cN, Oid4VpControllerGetResponseResponse as cO, Oid4VpControllerGetResponseResponses as cP, ParResponseDto as cQ, PolicyCredential as cR, PresentationAttachment as cS, PresentationConfig as cT, PresentationConfigCreateDto as cU, PresentationConfigUpdateDto as cV, PresentationDuringIssuanceConfig as cW, PresentationManagementControllerConfigurationData as cX, PresentationManagementControllerConfigurationResponse as cY, PresentationManagementControllerConfigurationResponses as cZ, PresentationManagementControllerDeleteConfigurationData as c_, KeyControllerAddKeyData as ca, KeyControllerAddKeyResponses as cb, KeyControllerDeleteKeyData as cc, KeyControllerDeleteKeyResponses as cd, KeyControllerGetKeyData as ce, KeyControllerGetKeyResponse as cf, KeyControllerGetKeyResponses as cg, KeyControllerGetKeysData as ch, KeyControllerGetKeysResponse as ci, KeyControllerGetKeysResponses as cj, KeyControllerUpdateKeyData as ck, KeyControllerUpdateKeyResponses as cl, KeyEntity as cm, KeyImportDto as cn, NoneTrustPolicy as co, NotificationRequestDto as cp, OfferRequestDto as cq, OfferResponse as cr, Oid4VciControllerCredentialData as cs, Oid4VciControllerCredentialResponse as ct, Oid4VciControllerCredentialResponses as cu, Oid4VciControllerDeferredCredentialData as cv, Oid4VciControllerDeferredCredentialResponses as cw, Oid4VciControllerNonceData as cx, Oid4VciControllerNonceResponses as cy, Oid4VciControllerNotificationsData as cz, AppControllerMainResponses as d, StatusListConfigControllerResetConfigResponses as d$, PresentationManagementControllerGetConfigurationData as d0, PresentationManagementControllerGetConfigurationResponse as d1, PresentationManagementControllerGetConfigurationResponses as d2, PresentationManagementControllerStorePresentationConfigData as d3, PresentationManagementControllerStorePresentationConfigResponse as d4, PresentationManagementControllerStorePresentationConfigResponses as d5, PresentationManagementControllerUpdateConfigurationData as d6, PresentationManagementControllerUpdateConfigurationResponse as d7, PresentationManagementControllerUpdateConfigurationResponses as d8, PresentationRequest as d9, SessionConfigControllerGetConfigResponse as dA, SessionConfigControllerGetConfigResponses as dB, SessionConfigControllerResetConfigData as dC, SessionConfigControllerResetConfigResponses as dD, SessionConfigControllerUpdateConfigData as dE, SessionConfigControllerUpdateConfigResponse as dF, SessionConfigControllerUpdateConfigResponses as dG, SessionControllerDeleteSessionData as dH, SessionControllerDeleteSessionResponses as dI, SessionControllerGetAllSessionsData as dJ, SessionControllerGetAllSessionsResponse as dK, SessionControllerGetAllSessionsResponses as dL, SessionControllerGetSessionData as dM, SessionControllerGetSessionResponse as dN, SessionControllerGetSessionResponses as dO, SessionControllerRevokeAllData as dP, SessionControllerRevokeAllResponses as dQ, SessionEventsControllerSubscribeToSessionEventsData as dR, SessionEventsControllerSubscribeToSessionEventsResponses as dS, SessionStorageConfig as dT, StatusListAggregationDto as dU, StatusListConfig as dV, StatusListConfigControllerGetConfigData as dW, StatusListConfigControllerGetConfigResponse as dX, StatusListConfigControllerGetConfigResponses as dY, StatusListConfigControllerResetConfigData as dZ, StatusListConfigControllerResetConfigResponse as d_, RegistrarConfigEntity as da, RegistrarControllerCreateAccessCertificateData as db, RegistrarControllerCreateAccessCertificateErrors as dc, RegistrarControllerCreateAccessCertificateResponse as dd, RegistrarControllerCreateAccessCertificateResponses as de, RegistrarControllerCreateConfigData as df, RegistrarControllerCreateConfigErrors as dg, RegistrarControllerCreateConfigResponse as dh, RegistrarControllerCreateConfigResponses as di, RegistrarControllerDeleteConfigData as dj, RegistrarControllerDeleteConfigResponse as dk, RegistrarControllerDeleteConfigResponses as dl, RegistrarControllerGetConfigData as dm, RegistrarControllerGetConfigErrors as dn, RegistrarControllerGetConfigResponse as dp, RegistrarControllerGetConfigResponses as dq, RegistrarControllerUpdateConfigData as dr, RegistrarControllerUpdateConfigErrors as ds, RegistrarControllerUpdateConfigResponse as dt, RegistrarControllerUpdateConfigResponses as du, RegistrationCertificateRequest as dv, RoleDto as dw, RootOfTrustPolicy as dx, SchemaResponse as dy, SessionConfigControllerGetConfigData as dz, AttestationBasedPolicy as e, TrustListControllerGetTrustListResponses as e$, StatusListConfigControllerUpdateConfigData as e0, StatusListConfigControllerUpdateConfigResponse as e1, StatusListConfigControllerUpdateConfigResponses as e2, StatusListControllerGetListData as e3, StatusListControllerGetListResponse as e4, StatusListControllerGetListResponses as e5, StatusListControllerGetStatusListAggregationData as e6, StatusListControllerGetStatusListAggregationResponse as e7, StatusListControllerGetStatusListAggregationResponses as e8, StatusListImportDto as e9, TenantControllerGetTenantResponses as eA, TenantControllerGetTenantsData as eB, TenantControllerGetTenantsResponse as eC, TenantControllerGetTenantsResponses as eD, TenantControllerInitTenantData as eE, TenantControllerInitTenantResponse as eF, TenantControllerInitTenantResponses as eG, TenantControllerUpdateTenantData as eH, TenantControllerUpdateTenantResponse as eI, TenantControllerUpdateTenantResponses as eJ, TenantEntity as eK, TokenResponse as eL, TransactionData as eM, TrustList as eN, TrustListControllerCreateTrustListData as eO, TrustListControllerCreateTrustListResponse as eP, TrustListControllerCreateTrustListResponses as eQ, TrustListControllerDeleteTrustListData as eR, TrustListControllerDeleteTrustListResponses as eS, TrustListControllerExportTrustListData as eT, TrustListControllerExportTrustListResponse as eU, TrustListControllerExportTrustListResponses as eV, TrustListControllerGetAllTrustListsData as eW, TrustListControllerGetAllTrustListsResponse as eX, TrustListControllerGetAllTrustListsResponses as eY, TrustListControllerGetTrustListData as eZ, TrustListControllerGetTrustListResponse as e_, StatusListManagementControllerCreateListData as ea, StatusListManagementControllerCreateListResponse as eb, StatusListManagementControllerCreateListResponses as ec, StatusListManagementControllerDeleteListData as ed, StatusListManagementControllerDeleteListResponse as ee, StatusListManagementControllerDeleteListResponses as ef, StatusListManagementControllerGetListData as eg, StatusListManagementControllerGetListResponse as eh, StatusListManagementControllerGetListResponses as ei, StatusListManagementControllerGetListsData as ej, StatusListManagementControllerGetListsResponse as ek, StatusListManagementControllerGetListsResponses as el, StatusListManagementControllerUpdateListData as em, StatusListManagementControllerUpdateListResponse as en, StatusListManagementControllerUpdateListResponses as eo, StatusListResponseDto as ep, StatusUpdateDto as eq, StorageControllerDownloadData as er, StorageControllerDownloadResponses as es, StorageControllerUploadData as et, StorageControllerUploadResponse as eu, StorageControllerUploadResponses as ev, TenantControllerDeleteTenantData as ew, TenantControllerDeleteTenantResponses as ex, TenantControllerGetTenantData as ey, TenantControllerGetTenantResponse as ez, AuthControllerGetGlobalJwksData as f, TrustListControllerGetTrustListVersionData as f0, TrustListControllerGetTrustListVersionResponse as f1, TrustListControllerGetTrustListVersionResponses as f2, TrustListControllerGetTrustListVersionsData as f3, TrustListControllerGetTrustListVersionsResponse as f4, TrustListControllerGetTrustListVersionsResponses as f5, TrustListControllerUpdateTrustListData as f6, TrustListControllerUpdateTrustListResponse as f7, TrustListControllerUpdateTrustListResponses as f8, TrustListCreateDto as f9, WellKnownControllerGetJwks0Responses as fA, WellKnownControllerGetJwks1Data as fB, WellKnownControllerGetJwks1Response as fC, WellKnownControllerGetJwks1Responses as fD, WellKnownControllerIssuerMetadata0Data as fE, WellKnownControllerIssuerMetadata0Response as fF, WellKnownControllerIssuerMetadata0Responses as fG, WellKnownControllerIssuerMetadata1Data as fH, WellKnownControllerIssuerMetadata1Response as fI, WellKnownControllerIssuerMetadata1Responses as fJ, TrustListPublicControllerGetTrustListJwtData as fa, TrustListPublicControllerGetTrustListJwtResponse as fb, TrustListPublicControllerGetTrustListJwtResponses as fc, TrustListVersion as fd, TrustedAuthorityQuery as fe, UpdateClientDto as ff, UpdateKeyDto as fg, UpdateRegistrarConfigDto as fh, UpdateSessionConfigDto as fi, UpdateStatusListConfigDto as fj, UpdateStatusListDto as fk, UpdateTenantDto as fl, UpstreamOidcConfig as fm, Vct as fn, VerifierOfferControllerGetOfferData as fo, VerifierOfferControllerGetOfferResponse as fp, VerifierOfferControllerGetOfferResponses as fq, WebHookAuthConfigHeader as fr, WebHookAuthConfigNone as fs, WebhookConfig as ft, WellKnownControllerAuthzMetadata0Data as fu, WellKnownControllerAuthzMetadata0Responses as fv, WellKnownControllerAuthzMetadata1Data as fw, WellKnownControllerAuthzMetadata1Responses as fx, WellKnownControllerGetJwks0Data as fy, WellKnownControllerGetJwks0Response as fz, AuthControllerGetGlobalJwksResponses as g, AuthControllerGetOAuth2TokenData as h, AuthControllerGetOAuth2TokenErrors as i, AuthControllerGetOAuth2TokenResponse as j, AuthControllerGetOAuth2TokenResponses as k, AuthControllerGetOidcDiscoveryData as l, AuthControllerGetOidcDiscoveryResponses as m, AuthenticationMethodAuth as n, AuthenticationMethodNone as o, AuthenticationMethodPresentation as p, AuthenticationUrlConfig as q, AuthorizationResponse as r, AuthorizeControllerAuthorizeData as s, AuthorizeControllerAuthorizeResponses as t, AuthorizeControllerParData as u, AuthorizeControllerParResponse as v, AuthorizeControllerParResponses as w, AuthorizeControllerTokenData as x, AuthorizeControllerTokenResponse as y, AuthorizeControllerTokenResponses as z };
|
|
3538
|
+
export type { CertControllerGetCertificatesResponse as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, HealthControllerCheckResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertControllerAddCertificateData as O, CertControllerAddCertificateResponse as P, CertControllerAddCertificateResponses as Q, CertControllerDeleteCertificateData as R, Session as S, CertControllerDeleteCertificateResponses as T, CertControllerExportConfigData as U, CertControllerExportConfigResponse as V, CertControllerExportConfigResponses as W, CertControllerGetCertificateData as X, CertControllerGetCertificateResponse as Y, CertControllerGetCertificateResponses as Z, CertControllerGetCertificatesData as _, HealthControllerCheckError as a, CreateAccessCertificateDto as a$, CertControllerGetCertificatesResponses as a0, CertControllerUpdateCertificateData as a1, CertControllerUpdateCertificateResponses as a2, CertEntity as a3, CertImportDto as a4, CertResponseDto as a5, CertUpdateDto as a6, CertUsageEntity as a7, ChainedAsConfig as a8, ChainedAsControllerAuthorizeData as a9, ChainedAsTokenResponseDto as aA, ClaimsQuery as aB, ClientControllerCreateClientData as aC, ClientControllerCreateClientResponse as aD, ClientControllerCreateClientResponses as aE, ClientControllerDeleteClientData as aF, ClientControllerDeleteClientResponses as aG, ClientControllerGetClientData as aH, ClientControllerGetClientResponse as aI, ClientControllerGetClientResponses as aJ, ClientControllerGetClientSecretData as aK, ClientControllerGetClientSecretResponse as aL, ClientControllerGetClientSecretResponses as aM, ClientControllerGetClientsData as aN, ClientControllerGetClientsResponse as aO, ClientControllerGetClientsResponses as aP, ClientControllerRotateClientSecretData as aQ, ClientControllerRotateClientSecretResponse as aR, ClientControllerRotateClientSecretResponses as aS, ClientControllerUpdateClientData as aT, ClientControllerUpdateClientResponse as aU, ClientControllerUpdateClientResponses as aV, ClientCredentialsDto as aW, ClientEntity as aX, ClientOptions as aY, ClientSecretResponseDto as aZ, CompleteDeferredDto as a_, ChainedAsControllerAuthorizeError as aa, ChainedAsControllerAuthorizeErrors as ab, ChainedAsControllerAuthorizeResponses as ac, ChainedAsControllerCallbackData as ad, ChainedAsControllerCallbackError as ae, ChainedAsControllerCallbackErrors as af, ChainedAsControllerCallbackResponses as ag, ChainedAsControllerGetMetadataData as ah, ChainedAsControllerGetMetadataResponses as ai, ChainedAsControllerJwksData as aj, ChainedAsControllerJwksResponses as ak, ChainedAsControllerParData as al, ChainedAsControllerParError as am, ChainedAsControllerParErrors as an, ChainedAsControllerParResponse as ao, ChainedAsControllerParResponses as ap, ChainedAsControllerTokenData as aq, ChainedAsControllerTokenError as ar, ChainedAsControllerTokenErrors as as, ChainedAsControllerTokenResponse as at, ChainedAsControllerTokenResponses as au, ChainedAsErrorResponseDto as av, ChainedAsParRequestDto as aw, ChainedAsParResponseDto as ax, ChainedAsTokenConfig as ay, ChainedAsTokenRequestDto as az, ApiKeyConfig as b, IssuanceConfig as b$, CreateClientDto as b0, CreateRegistrarConfigDto as b1, CreateStatusListDto as b2, CreateTenantDto as b3, CredentialConfig as b4, CredentialConfigControllerDeleteIssuanceConfigurationData as b5, CredentialConfigControllerDeleteIssuanceConfigurationResponses as b6, CredentialConfigControllerGetConfigByIdData as b7, CredentialConfigControllerGetConfigByIdResponse as b8, CredentialConfigControllerGetConfigByIdResponses as b9, DeferredCredentialRequestDto as bA, DeferredOperationResponse as bB, Display as bC, DisplayImage as bD, DisplayInfo as bE, DisplayLogo as bF, EcPublic as bG, EmbeddedDisclosurePolicy as bH, FailDeferredDto as bI, FileUploadDto as bJ, HealthControllerCheckData as bK, HealthControllerCheckErrors as bL, HealthControllerCheckResponses as bM, IaeActionOpenid4VpPresentation as bN, IaeActionRedirectToWeb as bO, ImportTenantDto as bP, InteractiveAuthorizationCodeResponseDto as bQ, InteractiveAuthorizationControllerCompleteWebAuthData as bR, InteractiveAuthorizationControllerCompleteWebAuthErrors as bS, InteractiveAuthorizationControllerCompleteWebAuthResponses as bT, InteractiveAuthorizationControllerInteractiveAuthorizationData as bU, InteractiveAuthorizationControllerInteractiveAuthorizationError as bV, InteractiveAuthorizationControllerInteractiveAuthorizationErrors as bW, InteractiveAuthorizationControllerInteractiveAuthorizationResponse as bX, InteractiveAuthorizationControllerInteractiveAuthorizationResponses as bY, InteractiveAuthorizationErrorResponseDto as bZ, InteractiveAuthorizationRequestDto as b_, CredentialConfigControllerGetConfigsData as ba, CredentialConfigControllerGetConfigsResponse as bb, CredentialConfigControllerGetConfigsResponses as bc, CredentialConfigControllerStoreCredentialConfigurationData as bd, CredentialConfigControllerStoreCredentialConfigurationResponse as be, CredentialConfigControllerStoreCredentialConfigurationResponses as bf, CredentialConfigControllerUpdateCredentialConfigurationData as bg, CredentialConfigControllerUpdateCredentialConfigurationResponse as bh, CredentialConfigControllerUpdateCredentialConfigurationResponses as bi, CredentialConfigCreate as bj, CredentialConfigUpdate as bk, CredentialOfferControllerGetOfferData as bl, CredentialOfferControllerGetOfferResponse as bm, CredentialOfferControllerGetOfferResponses as bn, CredentialQuery as bo, CredentialSetQuery as bp, DbKmsConfigDto as bq, Dcql as br, DeferredControllerCompleteDeferredData as bs, DeferredControllerCompleteDeferredErrors as bt, DeferredControllerCompleteDeferredResponse as bu, DeferredControllerCompleteDeferredResponses as bv, DeferredControllerFailDeferredData as bw, DeferredControllerFailDeferredErrors as bx, DeferredControllerFailDeferredResponse as by, DeferredControllerFailDeferredResponses as bz, AppControllerMainData as c, PolicyCredential as c$, IssuanceConfigControllerGetIssuanceConfigurationsData as c0, IssuanceConfigControllerGetIssuanceConfigurationsResponse as c1, IssuanceConfigControllerGetIssuanceConfigurationsResponses as c2, IssuanceConfigControllerStoreIssuanceConfigurationData as c3, IssuanceConfigControllerStoreIssuanceConfigurationResponse as c4, IssuanceConfigControllerStoreIssuanceConfigurationResponses as c5, IssuanceDto as c6, IssuerMetadataCredentialConfig as c7, JwksResponseDto as c8, Key as c9, OfferRequestDto as cA, OfferResponse as cB, Oid4VciControllerCredentialData as cC, Oid4VciControllerCredentialResponse as cD, Oid4VciControllerCredentialResponses as cE, Oid4VciControllerDeferredCredentialData as cF, Oid4VciControllerDeferredCredentialResponses as cG, Oid4VciControllerNonceData as cH, Oid4VciControllerNonceResponses as cI, Oid4VciControllerNotificationsData as cJ, Oid4VciControllerNotificationsResponses as cK, Oid4VciMetadataControllerVctData as cL, Oid4VciMetadataControllerVctResponse as cM, Oid4VciMetadataControllerVctResponses as cN, Oid4VpControllerGetPostRequestWithSessionData as cO, Oid4VpControllerGetPostRequestWithSessionResponse as cP, Oid4VpControllerGetPostRequestWithSessionResponses as cQ, Oid4VpControllerGetRequestNoRedirectWithSessionData as cR, Oid4VpControllerGetRequestNoRedirectWithSessionResponse as cS, Oid4VpControllerGetRequestNoRedirectWithSessionResponses as cT, Oid4VpControllerGetRequestWithSessionData as cU, Oid4VpControllerGetRequestWithSessionResponse as cV, Oid4VpControllerGetRequestWithSessionResponses as cW, Oid4VpControllerGetResponseData as cX, Oid4VpControllerGetResponseResponse as cY, Oid4VpControllerGetResponseResponses as cZ, ParResponseDto as c_, KeyControllerAddKeyData as ca, KeyControllerAddKeyResponses as cb, KeyControllerDeleteKeyData as cc, KeyControllerDeleteKeyResponses as cd, KeyControllerGenerateKeyData as ce, KeyControllerGenerateKeyResponses as cf, KeyControllerGetKeyData as cg, KeyControllerGetKeyResponse as ch, KeyControllerGetKeyResponses as ci, KeyControllerGetKeysData as cj, KeyControllerGetKeysResponse as ck, KeyControllerGetKeysResponses as cl, KeyControllerGetProvidersData as cm, KeyControllerGetProvidersResponse as cn, KeyControllerGetProvidersResponses as co, KeyControllerUpdateKeyData as cp, KeyControllerUpdateKeyResponses as cq, KeyEntity as cr, KeyGenerateDto as cs, KeyImportDto as ct, KmsConfigDto as cu, KmsProviderCapabilitiesDto as cv, KmsProviderInfoDto as cw, KmsProvidersResponseDto as cx, NoneTrustPolicy as cy, NotificationRequestDto as cz, AppControllerMainResponses as d, SessionEventsControllerSubscribeToSessionEventsData as d$, PresentationAttachment as d0, PresentationConfig as d1, PresentationConfigCreateDto as d2, PresentationConfigUpdateDto as d3, PresentationDuringIssuanceConfig as d4, PresentationManagementControllerConfigurationData as d5, PresentationManagementControllerConfigurationResponse as d6, PresentationManagementControllerConfigurationResponses as d7, PresentationManagementControllerDeleteConfigurationData as d8, PresentationManagementControllerDeleteConfigurationResponses as d9, RegistrarControllerGetConfigResponses as dA, RegistrarControllerUpdateConfigData as dB, RegistrarControllerUpdateConfigErrors as dC, RegistrarControllerUpdateConfigResponse as dD, RegistrarControllerUpdateConfigResponses as dE, RegistrationCertificateRequest as dF, RoleDto as dG, RootOfTrustPolicy as dH, SchemaResponse as dI, SessionConfigControllerGetConfigData as dJ, SessionConfigControllerGetConfigResponse as dK, SessionConfigControllerGetConfigResponses as dL, SessionConfigControllerResetConfigData as dM, SessionConfigControllerResetConfigResponses as dN, SessionConfigControllerUpdateConfigData as dO, SessionConfigControllerUpdateConfigResponse as dP, SessionConfigControllerUpdateConfigResponses as dQ, SessionControllerDeleteSessionData as dR, SessionControllerDeleteSessionResponses as dS, SessionControllerGetAllSessionsData as dT, SessionControllerGetAllSessionsResponse as dU, SessionControllerGetAllSessionsResponses as dV, SessionControllerGetSessionData as dW, SessionControllerGetSessionResponse as dX, SessionControllerGetSessionResponses as dY, SessionControllerRevokeAllData as dZ, SessionControllerRevokeAllResponses as d_, PresentationManagementControllerGetConfigurationData as da, PresentationManagementControllerGetConfigurationResponse as db, PresentationManagementControllerGetConfigurationResponses as dc, PresentationManagementControllerStorePresentationConfigData as dd, PresentationManagementControllerStorePresentationConfigResponse as de, PresentationManagementControllerStorePresentationConfigResponses as df, PresentationManagementControllerUpdateConfigurationData as dg, PresentationManagementControllerUpdateConfigurationResponse as dh, PresentationManagementControllerUpdateConfigurationResponses as di, PresentationRequest as dj, RegistrarConfigEntity as dk, RegistrarControllerCreateAccessCertificateData as dl, RegistrarControllerCreateAccessCertificateErrors as dm, RegistrarControllerCreateAccessCertificateResponse as dn, RegistrarControllerCreateAccessCertificateResponses as dp, RegistrarControllerCreateConfigData as dq, RegistrarControllerCreateConfigErrors as dr, RegistrarControllerCreateConfigResponse as ds, RegistrarControllerCreateConfigResponses as dt, RegistrarControllerDeleteConfigData as du, RegistrarControllerDeleteConfigResponse as dv, RegistrarControllerDeleteConfigResponses as dw, RegistrarControllerGetConfigData as dx, RegistrarControllerGetConfigErrors as dy, RegistrarControllerGetConfigResponse as dz, AttestationBasedPolicy as e, TrustListControllerDeleteTrustListData as e$, SessionEventsControllerSubscribeToSessionEventsResponses as e0, SessionStorageConfig as e1, StatusListAggregationDto as e2, StatusListConfig as e3, StatusListConfigControllerGetConfigData as e4, StatusListConfigControllerGetConfigResponse as e5, StatusListConfigControllerGetConfigResponses as e6, StatusListConfigControllerResetConfigData as e7, StatusListConfigControllerResetConfigResponse as e8, StatusListConfigControllerResetConfigResponses as e9, StatusUpdateDto as eA, StorageControllerDownloadData as eB, StorageControllerDownloadResponses as eC, StorageControllerUploadData as eD, StorageControllerUploadResponse as eE, StorageControllerUploadResponses as eF, TenantControllerDeleteTenantData as eG, TenantControllerDeleteTenantResponses as eH, TenantControllerGetTenantData as eI, TenantControllerGetTenantResponse as eJ, TenantControllerGetTenantResponses as eK, TenantControllerGetTenantsData as eL, TenantControllerGetTenantsResponse as eM, TenantControllerGetTenantsResponses as eN, TenantControllerInitTenantData as eO, TenantControllerInitTenantResponse as eP, TenantControllerInitTenantResponses as eQ, TenantControllerUpdateTenantData as eR, TenantControllerUpdateTenantResponse as eS, TenantControllerUpdateTenantResponses as eT, TenantEntity as eU, TokenResponse as eV, TransactionData as eW, TrustList as eX, TrustListControllerCreateTrustListData as eY, TrustListControllerCreateTrustListResponse as eZ, TrustListControllerCreateTrustListResponses as e_, StatusListConfigControllerUpdateConfigData as ea, StatusListConfigControllerUpdateConfigResponse as eb, StatusListConfigControllerUpdateConfigResponses as ec, StatusListControllerGetListData as ed, StatusListControllerGetListResponse as ee, StatusListControllerGetListResponses as ef, StatusListControllerGetStatusListAggregationData as eg, StatusListControllerGetStatusListAggregationResponse as eh, StatusListControllerGetStatusListAggregationResponses as ei, StatusListImportDto as ej, StatusListManagementControllerCreateListData as ek, StatusListManagementControllerCreateListResponse as el, StatusListManagementControllerCreateListResponses as em, StatusListManagementControllerDeleteListData as en, StatusListManagementControllerDeleteListResponse as eo, StatusListManagementControllerDeleteListResponses as ep, StatusListManagementControllerGetListData as eq, StatusListManagementControllerGetListResponse as er, StatusListManagementControllerGetListResponses as es, StatusListManagementControllerGetListsData as et, StatusListManagementControllerGetListsResponse as eu, StatusListManagementControllerGetListsResponses as ev, StatusListManagementControllerUpdateListData as ew, StatusListManagementControllerUpdateListResponse as ex, StatusListManagementControllerUpdateListResponses as ey, StatusListResponseDto as ez, AuthControllerGetGlobalJwksData as f, TrustListControllerDeleteTrustListResponses as f0, TrustListControllerExportTrustListData as f1, TrustListControllerExportTrustListResponse as f2, TrustListControllerExportTrustListResponses as f3, TrustListControllerGetAllTrustListsData as f4, TrustListControllerGetAllTrustListsResponse as f5, TrustListControllerGetAllTrustListsResponses as f6, TrustListControllerGetTrustListData as f7, TrustListControllerGetTrustListResponse as f8, TrustListControllerGetTrustListResponses as f9, VerifierOfferControllerGetOfferResponse as fA, VerifierOfferControllerGetOfferResponses as fB, WebHookAuthConfigHeader as fC, WebHookAuthConfigNone as fD, WebhookConfig as fE, WellKnownControllerAuthzMetadata0Data as fF, WellKnownControllerAuthzMetadata0Responses as fG, WellKnownControllerAuthzMetadata1Data as fH, WellKnownControllerAuthzMetadata1Responses as fI, WellKnownControllerChainedAsMetadataData as fJ, WellKnownControllerChainedAsMetadataResponse as fK, WellKnownControllerChainedAsMetadataResponses as fL, WellKnownControllerGetJwks0Data as fM, WellKnownControllerGetJwks0Response as fN, WellKnownControllerGetJwks0Responses as fO, WellKnownControllerGetJwks1Data as fP, WellKnownControllerGetJwks1Response as fQ, WellKnownControllerGetJwks1Responses as fR, WellKnownControllerIssuerMetadata0Data as fS, WellKnownControllerIssuerMetadata0Response as fT, WellKnownControllerIssuerMetadata0Responses as fU, WellKnownControllerIssuerMetadata1Data as fV, WellKnownControllerIssuerMetadata1Response as fW, WellKnownControllerIssuerMetadata1Responses as fX, TrustListControllerGetTrustListVersionData as fa, TrustListControllerGetTrustListVersionResponse as fb, TrustListControllerGetTrustListVersionResponses as fc, TrustListControllerGetTrustListVersionsData as fd, TrustListControllerGetTrustListVersionsResponse as fe, TrustListControllerGetTrustListVersionsResponses as ff, TrustListControllerUpdateTrustListData as fg, TrustListControllerUpdateTrustListResponse as fh, TrustListControllerUpdateTrustListResponses as fi, TrustListCreateDto as fj, TrustListPublicControllerGetTrustListJwtData as fk, TrustListPublicControllerGetTrustListJwtResponse as fl, TrustListPublicControllerGetTrustListJwtResponses as fm, TrustListVersion as fn, TrustedAuthorityQuery as fo, UpdateClientDto as fp, UpdateKeyDto as fq, UpdateRegistrarConfigDto as fr, UpdateSessionConfigDto as fs, UpdateStatusListConfigDto as ft, UpdateStatusListDto as fu, UpdateTenantDto as fv, UpstreamOidcConfig as fw, VaultKmsConfigDto as fx, Vct as fy, VerifierOfferControllerGetOfferData as fz, AuthControllerGetGlobalJwksResponses as g, AuthControllerGetOAuth2TokenData as h, AuthControllerGetOAuth2TokenErrors as i, AuthControllerGetOAuth2TokenResponse as j, AuthControllerGetOAuth2TokenResponses as k, AuthControllerGetOidcDiscoveryData as l, AuthControllerGetOidcDiscoveryResponses as m, AuthenticationMethodAuth as n, AuthenticationMethodNone as o, AuthenticationMethodPresentation as p, AuthenticationUrlConfig as q, AuthorizationResponse as r, AuthorizeControllerAuthorizeData as s, AuthorizeControllerAuthorizeResponses as t, AuthorizeControllerParData as u, AuthorizeControllerParResponse as v, AuthorizeControllerParResponses as w, AuthorizeControllerTokenData as x, AuthorizeControllerTokenResponse as y, AuthorizeControllerTokenResponses as z };
|
|
@@ -257,7 +257,7 @@ interface Config<T extends ClientOptions = ClientOptions> extends Omit<RequestIn
|
|
|
257
257
|
interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle = "fields", ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
|
|
258
258
|
responseStyle: TResponseStyle;
|
|
259
259
|
throwOnError: ThrowOnError;
|
|
260
|
-
}>, Pick<ServerSentEventsOptions<TData>, "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay"> {
|
|
260
|
+
}>, Pick<ServerSentEventsOptions<TData>, "onRequest" | "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay"> {
|
|
261
261
|
/**
|
|
262
262
|
* Any body that you want to add to your request.
|
|
263
263
|
*
|
|
@@ -257,7 +257,7 @@ interface Config<T extends ClientOptions = ClientOptions> extends Omit<RequestIn
|
|
|
257
257
|
interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle = "fields", ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
|
|
258
258
|
responseStyle: TResponseStyle;
|
|
259
259
|
throwOnError: ThrowOnError;
|
|
260
|
-
}>, Pick<ServerSentEventsOptions<TData>, "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay"> {
|
|
260
|
+
}>, Pick<ServerSentEventsOptions<TData>, "onRequest" | "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay"> {
|
|
261
261
|
/**
|
|
262
262
|
* Any body that you want to add to your request.
|
|
263
263
|
*
|