@eudiplo/sdk-core 1.18.0 → 2.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/README.md +54 -15
- package/dist/api/client.gen.d.mts +1 -1
- package/dist/api/client.gen.d.ts +1 -1
- package/dist/api/index.d.mts +89 -52
- package/dist/api/index.d.ts +89 -52
- package/dist/api/index.js +82 -62
- package/dist/api/index.mjs +76 -61
- package/dist/index.d.mts +81 -4
- package/dist/index.d.ts +81 -4
- package/dist/index.js +187 -62
- package/dist/index.mjs +181 -61
- package/dist/{types.gen-M31b0SZB.d.mts → types.gen-CxMpZyVO.d.mts} +678 -336
- package/dist/{types.gen-M31b0SZB.d.ts → types.gen-CxMpZyVO.d.ts} +678 -336
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ type RoleDto = {
|
|
|
5
5
|
/**
|
|
6
6
|
* OAuth2 roles
|
|
7
7
|
*/
|
|
8
|
-
role: "presentation:manage" | "presentation:
|
|
8
|
+
role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage";
|
|
9
9
|
};
|
|
10
10
|
type ClientCredentialsDto = {
|
|
11
11
|
grant_type?: string;
|
|
@@ -118,7 +118,7 @@ type ClientEntity = {
|
|
|
118
118
|
/**
|
|
119
119
|
* The roles assigned to the client.
|
|
120
120
|
*/
|
|
121
|
-
roles: Array<"presentation:manage" | "presentation:
|
|
121
|
+
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
122
122
|
/**
|
|
123
123
|
* The tenant that the client belongs to.
|
|
124
124
|
*/
|
|
@@ -133,7 +133,7 @@ type CreateTenantDto = {
|
|
|
133
133
|
* Session storage configuration. Controls TTL and cleanup behavior.
|
|
134
134
|
*/
|
|
135
135
|
sessionConfig?: SessionStorageConfig;
|
|
136
|
-
roles?: Array<"presentation:manage" | "presentation:
|
|
136
|
+
roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
137
137
|
/**
|
|
138
138
|
* The unique identifier for the tenant.
|
|
139
139
|
*/
|
|
@@ -164,7 +164,7 @@ type UpdateTenantDto = {
|
|
|
164
164
|
* The description of the tenant.
|
|
165
165
|
*/
|
|
166
166
|
description?: string;
|
|
167
|
-
roles?: Array<"presentation:manage" | "presentation:
|
|
167
|
+
roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
168
168
|
};
|
|
169
169
|
type ClientSecretResponseDto = {
|
|
170
170
|
secret: string;
|
|
@@ -185,7 +185,7 @@ type UpdateClientDto = {
|
|
|
185
185
|
/**
|
|
186
186
|
* The roles assigned to the client.
|
|
187
187
|
*/
|
|
188
|
-
roles: Array<"presentation:manage" | "presentation:
|
|
188
|
+
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
189
189
|
};
|
|
190
190
|
type CreateClientDto = {
|
|
191
191
|
/**
|
|
@@ -211,7 +211,7 @@ type CreateClientDto = {
|
|
|
211
211
|
/**
|
|
212
212
|
* The roles assigned to the client.
|
|
213
213
|
*/
|
|
214
|
-
roles: Array<"presentation:manage" | "presentation:
|
|
214
|
+
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
215
215
|
};
|
|
216
216
|
type CertUsageEntity = {
|
|
217
217
|
tenantId: string;
|
|
@@ -238,6 +238,7 @@ type KeyEntity = {
|
|
|
238
238
|
tenant: TenantEntity;
|
|
239
239
|
/**
|
|
240
240
|
* The key material.
|
|
241
|
+
* Encrypted at rest using AES-256-GCM.
|
|
241
242
|
*/
|
|
242
243
|
key: {
|
|
243
244
|
[key: string]: unknown;
|
|
@@ -576,6 +577,10 @@ type OfferRequestDto = {
|
|
|
576
577
|
* Transaction code for pre-authorized code flow.
|
|
577
578
|
*/
|
|
578
579
|
tx_code?: string;
|
|
580
|
+
/**
|
|
581
|
+
* Description for the transaction code (e.g., "Please enter the PIN sent to your email").
|
|
582
|
+
*/
|
|
583
|
+
tx_code_description?: string;
|
|
579
584
|
/**
|
|
580
585
|
* List of credential configuration ids to be included in the offer.
|
|
581
586
|
*/
|
|
@@ -633,10 +638,12 @@ type Session = {
|
|
|
633
638
|
request_uri?: string;
|
|
634
639
|
/**
|
|
635
640
|
* Authorization queries associated with the session.
|
|
641
|
+
* Encrypted at rest.
|
|
636
642
|
*/
|
|
637
643
|
auth_queries?: AuthorizeQueries;
|
|
638
644
|
/**
|
|
639
645
|
* Credential offer object containing details about the credential offer or presentation request.
|
|
646
|
+
* Encrypted at rest.
|
|
640
647
|
*/
|
|
641
648
|
offer?: {
|
|
642
649
|
[key: string]: unknown;
|
|
@@ -647,6 +654,7 @@ type Session = {
|
|
|
647
654
|
offerUrl?: string;
|
|
648
655
|
/**
|
|
649
656
|
* Credential payload containing the offer request details.
|
|
657
|
+
* Encrypted at rest - may contain sensitive claim data.
|
|
650
658
|
*/
|
|
651
659
|
credentialPayload?: OfferRequestDto;
|
|
652
660
|
/**
|
|
@@ -670,6 +678,7 @@ type Session = {
|
|
|
670
678
|
requestObject?: string;
|
|
671
679
|
/**
|
|
672
680
|
* Verified credentials from the presentation process.
|
|
681
|
+
* Encrypted at rest - contains personal information.
|
|
673
682
|
*/
|
|
674
683
|
credentials?: Array<{
|
|
675
684
|
[key: string]: unknown;
|
|
@@ -699,6 +708,12 @@ type Session = {
|
|
|
699
708
|
* Can be overridden per-request from the presentation configuration.
|
|
700
709
|
*/
|
|
701
710
|
transaction_data?: Array<TransactionData>;
|
|
711
|
+
externalIssuer?: string;
|
|
712
|
+
/**
|
|
713
|
+
* The subject (sub) from the external authorization server token.
|
|
714
|
+
* Used to identify the user at the external AS.
|
|
715
|
+
*/
|
|
716
|
+
externalSubject?: string;
|
|
702
717
|
};
|
|
703
718
|
type StatusUpdateDto = {
|
|
704
719
|
/**
|
|
@@ -754,6 +769,52 @@ type AuthenticationMethodPresentation = {
|
|
|
754
769
|
method: "presentationDuringIssuance";
|
|
755
770
|
config: PresentationDuringIssuanceConfig;
|
|
756
771
|
};
|
|
772
|
+
type UpstreamOidcConfig = {
|
|
773
|
+
/**
|
|
774
|
+
* The OIDC issuer URL of the upstream provider
|
|
775
|
+
*/
|
|
776
|
+
issuer: string;
|
|
777
|
+
/**
|
|
778
|
+
* The client ID registered with the upstream provider
|
|
779
|
+
*/
|
|
780
|
+
clientId: string;
|
|
781
|
+
/**
|
|
782
|
+
* The client secret for confidential clients
|
|
783
|
+
*/
|
|
784
|
+
clientSecret?: string;
|
|
785
|
+
/**
|
|
786
|
+
* Scopes to request from the upstream provider
|
|
787
|
+
*/
|
|
788
|
+
scopes?: Array<string>;
|
|
789
|
+
};
|
|
790
|
+
type ChainedAsTokenConfig = {
|
|
791
|
+
/**
|
|
792
|
+
* Access token lifetime in seconds
|
|
793
|
+
*/
|
|
794
|
+
lifetimeSeconds?: number;
|
|
795
|
+
/**
|
|
796
|
+
* Key ID for token signing
|
|
797
|
+
*/
|
|
798
|
+
signingKeyId?: string;
|
|
799
|
+
};
|
|
800
|
+
type ChainedAsConfig = {
|
|
801
|
+
/**
|
|
802
|
+
* Enable chained AS mode
|
|
803
|
+
*/
|
|
804
|
+
enabled: boolean;
|
|
805
|
+
/**
|
|
806
|
+
* Upstream OIDC provider configuration
|
|
807
|
+
*/
|
|
808
|
+
upstream?: UpstreamOidcConfig;
|
|
809
|
+
/**
|
|
810
|
+
* Token configuration
|
|
811
|
+
*/
|
|
812
|
+
token?: ChainedAsTokenConfig;
|
|
813
|
+
/**
|
|
814
|
+
* Require DPoP binding for tokens
|
|
815
|
+
*/
|
|
816
|
+
requireDPoP?: boolean;
|
|
817
|
+
};
|
|
757
818
|
type DisplayLogo = {
|
|
758
819
|
uri: string;
|
|
759
820
|
alt_text?: string;
|
|
@@ -764,6 +825,12 @@ type DisplayInfo = {
|
|
|
764
825
|
logo?: DisplayLogo;
|
|
765
826
|
};
|
|
766
827
|
type IssuanceConfig = {
|
|
828
|
+
/**
|
|
829
|
+
* Configuration for Chained Authorization Server mode.
|
|
830
|
+
* When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
|
|
831
|
+
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
832
|
+
*/
|
|
833
|
+
chainedAs?: ChainedAsConfig;
|
|
767
834
|
/**
|
|
768
835
|
* The tenant that owns this object.
|
|
769
836
|
*/
|
|
@@ -804,6 +871,12 @@ type IssuanceConfig = {
|
|
|
804
871
|
updatedAt: string;
|
|
805
872
|
};
|
|
806
873
|
type IssuanceDto = {
|
|
874
|
+
/**
|
|
875
|
+
* Configuration for Chained Authorization Server mode.
|
|
876
|
+
* When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
|
|
877
|
+
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
878
|
+
*/
|
|
879
|
+
chainedAs?: ChainedAsConfig;
|
|
807
880
|
/**
|
|
808
881
|
* Authentication server URL for the issuance process.
|
|
809
882
|
*/
|
|
@@ -1115,6 +1188,173 @@ type CredentialConfigUpdate = {
|
|
|
1115
1188
|
lifeTime?: number;
|
|
1116
1189
|
schema?: SchemaResponse;
|
|
1117
1190
|
};
|
|
1191
|
+
type Dcql = {
|
|
1192
|
+
credentials: Array<CredentialQuery>;
|
|
1193
|
+
credential_sets?: Array<CredentialSetQuery>;
|
|
1194
|
+
};
|
|
1195
|
+
type RegistrationCertificateRequest = {
|
|
1196
|
+
/**
|
|
1197
|
+
* The body of the registration certificate request containing the necessary details.
|
|
1198
|
+
*/
|
|
1199
|
+
jwt: string;
|
|
1200
|
+
};
|
|
1201
|
+
type PresentationAttachment = {
|
|
1202
|
+
format: string;
|
|
1203
|
+
data: {
|
|
1204
|
+
[key: string]: unknown;
|
|
1205
|
+
};
|
|
1206
|
+
credential_ids?: Array<string>;
|
|
1207
|
+
};
|
|
1208
|
+
type PresentationConfig = {
|
|
1209
|
+
/**
|
|
1210
|
+
* Unique identifier for the VP request.
|
|
1211
|
+
*/
|
|
1212
|
+
id: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* The tenant that owns this object.
|
|
1215
|
+
*/
|
|
1216
|
+
tenant: TenantEntity;
|
|
1217
|
+
/**
|
|
1218
|
+
* Description of the presentation configuration.
|
|
1219
|
+
*/
|
|
1220
|
+
description?: string;
|
|
1221
|
+
/**
|
|
1222
|
+
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
1223
|
+
*/
|
|
1224
|
+
lifeTime?: number;
|
|
1225
|
+
/**
|
|
1226
|
+
* The DCQL query to be used for the VP request.
|
|
1227
|
+
*/
|
|
1228
|
+
dcql_query: Dcql;
|
|
1229
|
+
transaction_data?: Array<TransactionData>;
|
|
1230
|
+
/**
|
|
1231
|
+
* The registration certificate request containing the necessary details.
|
|
1232
|
+
*/
|
|
1233
|
+
registrationCert?: RegistrationCertificateRequest;
|
|
1234
|
+
/**
|
|
1235
|
+
* Optional webhook URL to receive the response.
|
|
1236
|
+
*/
|
|
1237
|
+
webhook?: WebhookConfig;
|
|
1238
|
+
/**
|
|
1239
|
+
* The timestamp when the VP request was created.
|
|
1240
|
+
*/
|
|
1241
|
+
createdAt: string;
|
|
1242
|
+
/**
|
|
1243
|
+
* The timestamp when the VP request was last updated.
|
|
1244
|
+
*/
|
|
1245
|
+
updatedAt: string;
|
|
1246
|
+
/**
|
|
1247
|
+
* Attestation that should be attached
|
|
1248
|
+
*/
|
|
1249
|
+
attached?: Array<PresentationAttachment>;
|
|
1250
|
+
/**
|
|
1251
|
+
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1252
|
+
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
1253
|
+
*/
|
|
1254
|
+
redirectUri?: string;
|
|
1255
|
+
/**
|
|
1256
|
+
* Optional ID of the access certificate to use for signing the presentation request.
|
|
1257
|
+
* If not provided, the default access certificate for the tenant will be used.
|
|
1258
|
+
*
|
|
1259
|
+
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
1260
|
+
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
1261
|
+
* that reference only part of a composite primary key. The relationship is handled
|
|
1262
|
+
* at the application level in the service layer.
|
|
1263
|
+
*/
|
|
1264
|
+
accessCertId?: string;
|
|
1265
|
+
};
|
|
1266
|
+
type PresentationConfigCreateDto = {
|
|
1267
|
+
/**
|
|
1268
|
+
* Unique identifier for the VP request.
|
|
1269
|
+
*/
|
|
1270
|
+
id: string;
|
|
1271
|
+
/**
|
|
1272
|
+
* Description of the presentation configuration.
|
|
1273
|
+
*/
|
|
1274
|
+
description?: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
1277
|
+
*/
|
|
1278
|
+
lifeTime?: number;
|
|
1279
|
+
/**
|
|
1280
|
+
* The DCQL query to be used for the VP request.
|
|
1281
|
+
*/
|
|
1282
|
+
dcql_query: Dcql;
|
|
1283
|
+
transaction_data?: Array<TransactionData>;
|
|
1284
|
+
/**
|
|
1285
|
+
* The registration certificate request containing the necessary details.
|
|
1286
|
+
*/
|
|
1287
|
+
registrationCert?: RegistrationCertificateRequest;
|
|
1288
|
+
/**
|
|
1289
|
+
* Optional webhook URL to receive the response.
|
|
1290
|
+
*/
|
|
1291
|
+
webhook?: WebhookConfig;
|
|
1292
|
+
/**
|
|
1293
|
+
* Attestation that should be attached
|
|
1294
|
+
*/
|
|
1295
|
+
attached?: Array<PresentationAttachment>;
|
|
1296
|
+
/**
|
|
1297
|
+
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1298
|
+
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
1299
|
+
*/
|
|
1300
|
+
redirectUri?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* Optional ID of the access certificate to use for signing the presentation request.
|
|
1303
|
+
* If not provided, the default access certificate for the tenant will be used.
|
|
1304
|
+
*
|
|
1305
|
+
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
1306
|
+
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
1307
|
+
* that reference only part of a composite primary key. The relationship is handled
|
|
1308
|
+
* at the application level in the service layer.
|
|
1309
|
+
*/
|
|
1310
|
+
accessCertId?: string;
|
|
1311
|
+
};
|
|
1312
|
+
type PresentationConfigUpdateDto = {
|
|
1313
|
+
/**
|
|
1314
|
+
* Unique identifier for the VP request.
|
|
1315
|
+
*/
|
|
1316
|
+
id?: string;
|
|
1317
|
+
/**
|
|
1318
|
+
* Description of the presentation configuration.
|
|
1319
|
+
*/
|
|
1320
|
+
description?: string;
|
|
1321
|
+
/**
|
|
1322
|
+
* Lifetime how long the presentation request is valid after creation, in seconds.
|
|
1323
|
+
*/
|
|
1324
|
+
lifeTime?: number;
|
|
1325
|
+
/**
|
|
1326
|
+
* The DCQL query to be used for the VP request.
|
|
1327
|
+
*/
|
|
1328
|
+
dcql_query?: Dcql;
|
|
1329
|
+
transaction_data?: Array<TransactionData>;
|
|
1330
|
+
/**
|
|
1331
|
+
* The registration certificate request containing the necessary details.
|
|
1332
|
+
*/
|
|
1333
|
+
registrationCert?: RegistrationCertificateRequest;
|
|
1334
|
+
/**
|
|
1335
|
+
* Optional webhook URL to receive the response.
|
|
1336
|
+
*/
|
|
1337
|
+
webhook?: WebhookConfig;
|
|
1338
|
+
/**
|
|
1339
|
+
* Attestation that should be attached
|
|
1340
|
+
*/
|
|
1341
|
+
attached?: Array<PresentationAttachment>;
|
|
1342
|
+
/**
|
|
1343
|
+
* Redirect URI to which the user-agent should be redirected after the presentation is completed.
|
|
1344
|
+
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
1345
|
+
*/
|
|
1346
|
+
redirectUri?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* Optional ID of the access certificate to use for signing the presentation request.
|
|
1349
|
+
* If not provided, the default access certificate for the tenant will be used.
|
|
1350
|
+
*
|
|
1351
|
+
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
1352
|
+
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
1353
|
+
* that reference only part of a composite primary key. The relationship is handled
|
|
1354
|
+
* at the application level in the service layer.
|
|
1355
|
+
*/
|
|
1356
|
+
accessCertId?: string;
|
|
1357
|
+
};
|
|
1118
1358
|
type DeferredCredentialRequestDto = {
|
|
1119
1359
|
/**
|
|
1120
1360
|
* The transaction identifier previously returned by the Credential Endpoint
|
|
@@ -1221,315 +1461,262 @@ type InteractiveAuthorizationErrorResponseDto = {
|
|
|
1221
1461
|
*/
|
|
1222
1462
|
error_description?: string;
|
|
1223
1463
|
};
|
|
1224
|
-
type
|
|
1225
|
-
uri: string;
|
|
1464
|
+
type ChainedAsParRequestDto = {
|
|
1226
1465
|
/**
|
|
1227
|
-
*
|
|
1466
|
+
* OAuth response type (must be 'code')
|
|
1228
1467
|
*/
|
|
1229
|
-
|
|
1230
|
-
session: string;
|
|
1231
|
-
};
|
|
1232
|
-
type CompleteDeferredDto = {
|
|
1233
|
-
[key: string]: unknown;
|
|
1234
|
-
};
|
|
1235
|
-
type DeferredOperationResponse = {
|
|
1236
|
-
[key: string]: unknown;
|
|
1237
|
-
};
|
|
1238
|
-
type FailDeferredDto = {
|
|
1239
|
-
[key: string]: unknown;
|
|
1240
|
-
};
|
|
1241
|
-
type EcPublic = {
|
|
1468
|
+
response_type: string;
|
|
1242
1469
|
/**
|
|
1243
|
-
*
|
|
1470
|
+
* Client identifier (wallet identifier)
|
|
1244
1471
|
*/
|
|
1245
|
-
|
|
1472
|
+
client_id: string;
|
|
1246
1473
|
/**
|
|
1247
|
-
*
|
|
1474
|
+
* URI to redirect the wallet after authorization
|
|
1248
1475
|
*/
|
|
1249
|
-
|
|
1476
|
+
redirect_uri: string;
|
|
1250
1477
|
/**
|
|
1251
|
-
*
|
|
1478
|
+
* PKCE code challenge
|
|
1252
1479
|
*/
|
|
1253
|
-
|
|
1480
|
+
code_challenge?: string;
|
|
1254
1481
|
/**
|
|
1255
|
-
*
|
|
1482
|
+
* PKCE code challenge method (e.g., S256)
|
|
1256
1483
|
*/
|
|
1257
|
-
|
|
1258
|
-
};
|
|
1259
|
-
type JwksResponseDto = {
|
|
1484
|
+
code_challenge_method?: string;
|
|
1260
1485
|
/**
|
|
1261
|
-
*
|
|
1486
|
+
* State parameter (returned in redirect)
|
|
1262
1487
|
*/
|
|
1263
|
-
|
|
1264
|
-
};
|
|
1265
|
-
type AuthorizationResponse = {
|
|
1488
|
+
state?: string;
|
|
1266
1489
|
/**
|
|
1267
|
-
*
|
|
1490
|
+
* Scope requested
|
|
1268
1491
|
*/
|
|
1269
|
-
|
|
1492
|
+
scope?: string;
|
|
1270
1493
|
/**
|
|
1271
|
-
*
|
|
1494
|
+
* Issuer state from credential offer
|
|
1272
1495
|
*/
|
|
1273
|
-
|
|
1274
|
-
};
|
|
1275
|
-
type RegistrarConfigEntity = {
|
|
1496
|
+
issuer_state?: string;
|
|
1276
1497
|
/**
|
|
1277
|
-
*
|
|
1498
|
+
* Authorization details (JSON array)
|
|
1278
1499
|
*/
|
|
1279
|
-
|
|
1500
|
+
authorization_details?: Array<{
|
|
1501
|
+
[key: string]: unknown;
|
|
1502
|
+
}>;
|
|
1503
|
+
};
|
|
1504
|
+
type ChainedAsParResponseDto = {
|
|
1280
1505
|
/**
|
|
1281
|
-
* The
|
|
1506
|
+
* The request URI to use at the authorization endpoint
|
|
1282
1507
|
*/
|
|
1283
|
-
|
|
1508
|
+
request_uri: string;
|
|
1284
1509
|
/**
|
|
1285
|
-
* The
|
|
1510
|
+
* The lifetime of the request URI in seconds
|
|
1286
1511
|
*/
|
|
1287
|
-
|
|
1512
|
+
expires_in: number;
|
|
1513
|
+
};
|
|
1514
|
+
type ChainedAsErrorResponseDto = {
|
|
1288
1515
|
/**
|
|
1289
|
-
*
|
|
1290
|
-
*/
|
|
1291
|
-
clientSecret?: string;
|
|
1292
|
-
/**
|
|
1293
|
-
* The username for OIDC login
|
|
1294
|
-
*/
|
|
1295
|
-
username: string;
|
|
1296
|
-
/**
|
|
1297
|
-
* The password for OIDC login (stored in plaintext)
|
|
1298
|
-
*/
|
|
1299
|
-
password: string;
|
|
1300
|
-
/**
|
|
1301
|
-
* The tenant ID this configuration belongs to.
|
|
1516
|
+
* Error code
|
|
1302
1517
|
*/
|
|
1303
|
-
|
|
1518
|
+
error: string;
|
|
1304
1519
|
/**
|
|
1305
|
-
*
|
|
1520
|
+
* Human-readable error description
|
|
1306
1521
|
*/
|
|
1307
|
-
|
|
1522
|
+
error_description?: string;
|
|
1308
1523
|
};
|
|
1309
|
-
type
|
|
1524
|
+
type ChainedAsTokenRequestDto = {
|
|
1310
1525
|
/**
|
|
1311
|
-
*
|
|
1526
|
+
* Grant type (must be 'authorization_code')
|
|
1312
1527
|
*/
|
|
1313
|
-
|
|
1528
|
+
grant_type: string;
|
|
1314
1529
|
/**
|
|
1315
|
-
*
|
|
1530
|
+
* Authorization code received in the callback
|
|
1316
1531
|
*/
|
|
1317
|
-
|
|
1532
|
+
code: string;
|
|
1318
1533
|
/**
|
|
1319
|
-
*
|
|
1534
|
+
* Client identifier
|
|
1320
1535
|
*/
|
|
1321
|
-
|
|
1536
|
+
client_id?: string;
|
|
1322
1537
|
/**
|
|
1323
|
-
*
|
|
1538
|
+
* Redirect URI (must match the one used in PAR)
|
|
1324
1539
|
*/
|
|
1325
|
-
|
|
1540
|
+
redirect_uri?: string;
|
|
1326
1541
|
/**
|
|
1327
|
-
*
|
|
1542
|
+
* PKCE code verifier
|
|
1328
1543
|
*/
|
|
1329
|
-
|
|
1544
|
+
code_verifier?: string;
|
|
1545
|
+
};
|
|
1546
|
+
type ChainedAsTokenResponseDto = {
|
|
1330
1547
|
/**
|
|
1331
|
-
* The
|
|
1548
|
+
* The access token
|
|
1332
1549
|
*/
|
|
1333
|
-
|
|
1334
|
-
};
|
|
1335
|
-
type UpdateRegistrarConfigDto = {
|
|
1550
|
+
access_token: string;
|
|
1336
1551
|
/**
|
|
1337
|
-
*
|
|
1552
|
+
* Token type (Bearer or DPoP)
|
|
1338
1553
|
*/
|
|
1339
|
-
|
|
1554
|
+
token_type: string;
|
|
1340
1555
|
/**
|
|
1341
|
-
*
|
|
1556
|
+
* Token lifetime in seconds
|
|
1342
1557
|
*/
|
|
1343
|
-
|
|
1558
|
+
expires_in: number;
|
|
1344
1559
|
/**
|
|
1345
|
-
*
|
|
1560
|
+
* Scope granted
|
|
1346
1561
|
*/
|
|
1347
|
-
|
|
1562
|
+
scope?: string;
|
|
1348
1563
|
/**
|
|
1349
|
-
*
|
|
1564
|
+
* Authorized credential configurations
|
|
1350
1565
|
*/
|
|
1351
|
-
|
|
1566
|
+
authorization_details?: Array<{
|
|
1567
|
+
[key: string]: unknown;
|
|
1568
|
+
}>;
|
|
1352
1569
|
/**
|
|
1353
|
-
*
|
|
1570
|
+
* C_NONCE for credential request
|
|
1354
1571
|
*/
|
|
1355
|
-
|
|
1572
|
+
c_nonce?: string;
|
|
1356
1573
|
/**
|
|
1357
|
-
*
|
|
1574
|
+
* C_NONCE lifetime in seconds
|
|
1358
1575
|
*/
|
|
1359
|
-
|
|
1576
|
+
c_nonce_expires_in?: number;
|
|
1360
1577
|
};
|
|
1361
|
-
type
|
|
1578
|
+
type OfferResponse = {
|
|
1579
|
+
uri: string;
|
|
1362
1580
|
/**
|
|
1363
|
-
*
|
|
1581
|
+
* URI for cross-device flows (no redirect after completion)
|
|
1364
1582
|
*/
|
|
1365
|
-
|
|
1583
|
+
crossDeviceUri?: string;
|
|
1584
|
+
session: string;
|
|
1366
1585
|
};
|
|
1367
|
-
type
|
|
1368
|
-
|
|
1369
|
-
credential_sets?: Array<CredentialSetQuery>;
|
|
1586
|
+
type CompleteDeferredDto = {
|
|
1587
|
+
[key: string]: unknown;
|
|
1370
1588
|
};
|
|
1371
|
-
type
|
|
1372
|
-
|
|
1373
|
-
* The body of the registration certificate request containing the necessary details.
|
|
1374
|
-
*/
|
|
1375
|
-
jwt: string;
|
|
1589
|
+
type DeferredOperationResponse = {
|
|
1590
|
+
[key: string]: unknown;
|
|
1376
1591
|
};
|
|
1377
|
-
type
|
|
1378
|
-
|
|
1379
|
-
data: {
|
|
1380
|
-
[key: string]: unknown;
|
|
1381
|
-
};
|
|
1382
|
-
credential_ids?: Array<string>;
|
|
1592
|
+
type FailDeferredDto = {
|
|
1593
|
+
[key: string]: unknown;
|
|
1383
1594
|
};
|
|
1384
|
-
type
|
|
1595
|
+
type EcPublic = {
|
|
1385
1596
|
/**
|
|
1386
|
-
*
|
|
1597
|
+
* The key type, which is always 'EC' for Elliptic Curve keys.
|
|
1387
1598
|
*/
|
|
1388
|
-
|
|
1599
|
+
kty: string;
|
|
1389
1600
|
/**
|
|
1390
|
-
* The
|
|
1601
|
+
* The algorithm intended for use with the key, such as 'ES256'.
|
|
1391
1602
|
*/
|
|
1392
|
-
|
|
1603
|
+
crv: string;
|
|
1393
1604
|
/**
|
|
1394
|
-
*
|
|
1605
|
+
* The x coordinate of the EC public key.
|
|
1395
1606
|
*/
|
|
1396
|
-
|
|
1607
|
+
x: string;
|
|
1397
1608
|
/**
|
|
1398
|
-
*
|
|
1609
|
+
* The y coordinate of the EC public key.
|
|
1399
1610
|
*/
|
|
1400
|
-
|
|
1611
|
+
y: string;
|
|
1612
|
+
};
|
|
1613
|
+
type JwksResponseDto = {
|
|
1401
1614
|
/**
|
|
1402
|
-
*
|
|
1615
|
+
* An array of EC public keys in JWK format.
|
|
1403
1616
|
*/
|
|
1404
|
-
|
|
1405
|
-
|
|
1617
|
+
keys: Array<EcPublic>;
|
|
1618
|
+
};
|
|
1619
|
+
type AuthorizationResponse = {
|
|
1406
1620
|
/**
|
|
1407
|
-
* The
|
|
1621
|
+
* The response string containing the authorization details.
|
|
1408
1622
|
*/
|
|
1409
|
-
|
|
1623
|
+
response: string;
|
|
1410
1624
|
/**
|
|
1411
|
-
*
|
|
1625
|
+
* When set to true, the authorization response will be sent to the client.
|
|
1412
1626
|
*/
|
|
1413
|
-
|
|
1627
|
+
sendResponse?: boolean;
|
|
1628
|
+
};
|
|
1629
|
+
type RegistrarConfigEntity = {
|
|
1414
1630
|
/**
|
|
1415
|
-
* The
|
|
1631
|
+
* The base URL of the registrar API
|
|
1416
1632
|
*/
|
|
1417
|
-
|
|
1633
|
+
registrarUrl: string;
|
|
1418
1634
|
/**
|
|
1419
|
-
* The
|
|
1635
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1420
1636
|
*/
|
|
1421
|
-
|
|
1637
|
+
oidcUrl: string;
|
|
1422
1638
|
/**
|
|
1423
|
-
*
|
|
1639
|
+
* The OIDC client ID for the registrar
|
|
1424
1640
|
*/
|
|
1425
|
-
|
|
1641
|
+
clientId: string;
|
|
1426
1642
|
/**
|
|
1427
|
-
*
|
|
1428
|
-
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
1643
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1429
1644
|
*/
|
|
1430
|
-
|
|
1645
|
+
clientSecret?: string;
|
|
1431
1646
|
/**
|
|
1432
|
-
*
|
|
1433
|
-
* If not provided, the default access certificate for the tenant will be used.
|
|
1434
|
-
*
|
|
1435
|
-
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
1436
|
-
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
1437
|
-
* that reference only part of a composite primary key. The relationship is handled
|
|
1438
|
-
* at the application level in the service layer.
|
|
1647
|
+
* The username for OIDC login
|
|
1439
1648
|
*/
|
|
1440
|
-
|
|
1441
|
-
};
|
|
1442
|
-
type PresentationConfigCreateDto = {
|
|
1649
|
+
username: string;
|
|
1443
1650
|
/**
|
|
1444
|
-
*
|
|
1651
|
+
* The password for OIDC login (stored in plaintext)
|
|
1445
1652
|
*/
|
|
1446
|
-
|
|
1653
|
+
password: string;
|
|
1447
1654
|
/**
|
|
1448
|
-
*
|
|
1655
|
+
* The tenant ID this configuration belongs to.
|
|
1449
1656
|
*/
|
|
1450
|
-
|
|
1657
|
+
tenantId: string;
|
|
1451
1658
|
/**
|
|
1452
|
-
*
|
|
1659
|
+
* The tenant that owns this configuration.
|
|
1453
1660
|
*/
|
|
1454
|
-
|
|
1661
|
+
tenant: TenantEntity;
|
|
1662
|
+
};
|
|
1663
|
+
type CreateRegistrarConfigDto = {
|
|
1455
1664
|
/**
|
|
1456
|
-
* The
|
|
1665
|
+
* The base URL of the registrar API
|
|
1457
1666
|
*/
|
|
1458
|
-
|
|
1459
|
-
transaction_data?: Array<TransactionData>;
|
|
1667
|
+
registrarUrl: string;
|
|
1460
1668
|
/**
|
|
1461
|
-
* The
|
|
1669
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1462
1670
|
*/
|
|
1463
|
-
|
|
1671
|
+
oidcUrl: string;
|
|
1464
1672
|
/**
|
|
1465
|
-
*
|
|
1673
|
+
* The OIDC client ID for the registrar
|
|
1466
1674
|
*/
|
|
1467
|
-
|
|
1675
|
+
clientId: string;
|
|
1468
1676
|
/**
|
|
1469
|
-
*
|
|
1677
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1470
1678
|
*/
|
|
1471
|
-
|
|
1679
|
+
clientSecret?: string;
|
|
1472
1680
|
/**
|
|
1473
|
-
*
|
|
1474
|
-
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
1681
|
+
* The username for OIDC login
|
|
1475
1682
|
*/
|
|
1476
|
-
|
|
1683
|
+
username: string;
|
|
1477
1684
|
/**
|
|
1478
|
-
*
|
|
1479
|
-
* If not provided, the default access certificate for the tenant will be used.
|
|
1480
|
-
*
|
|
1481
|
-
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
1482
|
-
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
1483
|
-
* that reference only part of a composite primary key. The relationship is handled
|
|
1484
|
-
* at the application level in the service layer.
|
|
1685
|
+
* The password for OIDC login (stored in plaintext)
|
|
1485
1686
|
*/
|
|
1486
|
-
|
|
1687
|
+
password: string;
|
|
1487
1688
|
};
|
|
1488
|
-
type
|
|
1489
|
-
/**
|
|
1490
|
-
* Unique identifier for the VP request.
|
|
1491
|
-
*/
|
|
1492
|
-
id?: string;
|
|
1493
|
-
/**
|
|
1494
|
-
* Description of the presentation configuration.
|
|
1495
|
-
*/
|
|
1496
|
-
description?: string;
|
|
1689
|
+
type UpdateRegistrarConfigDto = {
|
|
1497
1690
|
/**
|
|
1498
|
-
*
|
|
1691
|
+
* The base URL of the registrar API
|
|
1499
1692
|
*/
|
|
1500
|
-
|
|
1693
|
+
registrarUrl?: string;
|
|
1501
1694
|
/**
|
|
1502
|
-
* The
|
|
1695
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1503
1696
|
*/
|
|
1504
|
-
|
|
1505
|
-
transaction_data?: Array<TransactionData>;
|
|
1697
|
+
oidcUrl?: string;
|
|
1506
1698
|
/**
|
|
1507
|
-
* The
|
|
1699
|
+
* The OIDC client ID for the registrar
|
|
1508
1700
|
*/
|
|
1509
|
-
|
|
1701
|
+
clientId?: string;
|
|
1510
1702
|
/**
|
|
1511
|
-
*
|
|
1703
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1512
1704
|
*/
|
|
1513
|
-
|
|
1705
|
+
clientSecret?: string;
|
|
1514
1706
|
/**
|
|
1515
|
-
*
|
|
1707
|
+
* The username for OIDC login
|
|
1516
1708
|
*/
|
|
1517
|
-
|
|
1709
|
+
username?: string;
|
|
1518
1710
|
/**
|
|
1519
|
-
*
|
|
1520
|
-
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
1711
|
+
* The password for OIDC login (stored in plaintext)
|
|
1521
1712
|
*/
|
|
1522
|
-
|
|
1713
|
+
password?: string;
|
|
1714
|
+
};
|
|
1715
|
+
type CreateAccessCertificateDto = {
|
|
1523
1716
|
/**
|
|
1524
|
-
*
|
|
1525
|
-
* If not provided, the default access certificate for the tenant will be used.
|
|
1526
|
-
*
|
|
1527
|
-
* Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
|
|
1528
|
-
* a composite primary key (id + tenantId), and SQLite cannot create foreign keys
|
|
1529
|
-
* that reference only part of a composite primary key. The relationship is handled
|
|
1530
|
-
* at the application level in the service layer.
|
|
1717
|
+
* The ID of the key to create an access certificate for
|
|
1531
1718
|
*/
|
|
1532
|
-
|
|
1719
|
+
keyId: string;
|
|
1533
1720
|
};
|
|
1534
1721
|
type TrustListCreateDto = {
|
|
1535
1722
|
id?: string;
|
|
@@ -1709,15 +1896,6 @@ type HealthControllerCheckResponses = {
|
|
|
1709
1896
|
};
|
|
1710
1897
|
};
|
|
1711
1898
|
type HealthControllerCheckResponse = HealthControllerCheckResponses[keyof HealthControllerCheckResponses];
|
|
1712
|
-
type PrometheusControllerIndexData = {
|
|
1713
|
-
body?: never;
|
|
1714
|
-
path?: never;
|
|
1715
|
-
query?: never;
|
|
1716
|
-
url: "/metrics";
|
|
1717
|
-
};
|
|
1718
|
-
type PrometheusControllerIndexResponses = {
|
|
1719
|
-
200: unknown;
|
|
1720
|
-
};
|
|
1721
1899
|
type AuthControllerGetOAuth2TokenData = {
|
|
1722
1900
|
body: ClientCredentialsDto;
|
|
1723
1901
|
path?: never;
|
|
@@ -2251,12 +2429,31 @@ type SessionConfigControllerUpdateConfigResponses = {
|
|
|
2251
2429
|
200: SessionStorageConfig;
|
|
2252
2430
|
};
|
|
2253
2431
|
type SessionConfigControllerUpdateConfigResponse = SessionConfigControllerUpdateConfigResponses[keyof SessionConfigControllerUpdateConfigResponses];
|
|
2254
|
-
type
|
|
2432
|
+
type SessionEventsControllerSubscribeToSessionEventsData = {
|
|
2255
2433
|
body?: never;
|
|
2256
|
-
path
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2434
|
+
path: {
|
|
2435
|
+
/**
|
|
2436
|
+
* Session ID to subscribe to
|
|
2437
|
+
*/
|
|
2438
|
+
id: string;
|
|
2439
|
+
};
|
|
2440
|
+
query: {
|
|
2441
|
+
/**
|
|
2442
|
+
* JWT access token for authentication
|
|
2443
|
+
*/
|
|
2444
|
+
token: string;
|
|
2445
|
+
};
|
|
2446
|
+
url: "/session/{id}/events";
|
|
2447
|
+
};
|
|
2448
|
+
type SessionEventsControllerSubscribeToSessionEventsResponses = {
|
|
2449
|
+
200: unknown;
|
|
2450
|
+
};
|
|
2451
|
+
type IssuanceConfigControllerGetIssuanceConfigurationsData = {
|
|
2452
|
+
body?: never;
|
|
2453
|
+
path?: never;
|
|
2454
|
+
query?: never;
|
|
2455
|
+
url: "/issuer/config";
|
|
2456
|
+
};
|
|
2260
2457
|
type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
|
|
2261
2458
|
200: IssuanceConfig;
|
|
2262
2459
|
};
|
|
@@ -2332,6 +2529,116 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
|
2332
2529
|
};
|
|
2333
2530
|
};
|
|
2334
2531
|
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
2532
|
+
type PresentationManagementControllerConfigurationData = {
|
|
2533
|
+
body?: never;
|
|
2534
|
+
path?: never;
|
|
2535
|
+
query?: never;
|
|
2536
|
+
url: "/verifier/config";
|
|
2537
|
+
};
|
|
2538
|
+
type PresentationManagementControllerConfigurationResponses = {
|
|
2539
|
+
200: Array<PresentationConfig>;
|
|
2540
|
+
};
|
|
2541
|
+
type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
|
|
2542
|
+
type PresentationManagementControllerStorePresentationConfigData = {
|
|
2543
|
+
body: PresentationConfigCreateDto;
|
|
2544
|
+
path?: never;
|
|
2545
|
+
query?: never;
|
|
2546
|
+
url: "/verifier/config";
|
|
2547
|
+
};
|
|
2548
|
+
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
2549
|
+
201: {
|
|
2550
|
+
[key: string]: unknown;
|
|
2551
|
+
};
|
|
2552
|
+
};
|
|
2553
|
+
type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
|
|
2554
|
+
type PresentationManagementControllerDeleteConfigurationData = {
|
|
2555
|
+
body?: never;
|
|
2556
|
+
path: {
|
|
2557
|
+
id: string;
|
|
2558
|
+
};
|
|
2559
|
+
query?: never;
|
|
2560
|
+
url: "/verifier/config/{id}";
|
|
2561
|
+
};
|
|
2562
|
+
type PresentationManagementControllerDeleteConfigurationResponses = {
|
|
2563
|
+
200: unknown;
|
|
2564
|
+
};
|
|
2565
|
+
type PresentationManagementControllerGetConfigurationData = {
|
|
2566
|
+
body?: never;
|
|
2567
|
+
path: {
|
|
2568
|
+
id: string;
|
|
2569
|
+
};
|
|
2570
|
+
query?: never;
|
|
2571
|
+
url: "/verifier/config/{id}";
|
|
2572
|
+
};
|
|
2573
|
+
type PresentationManagementControllerGetConfigurationResponses = {
|
|
2574
|
+
200: PresentationConfig;
|
|
2575
|
+
};
|
|
2576
|
+
type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
|
|
2577
|
+
type PresentationManagementControllerUpdateConfigurationData = {
|
|
2578
|
+
body: PresentationConfigUpdateDto;
|
|
2579
|
+
path: {
|
|
2580
|
+
id: string;
|
|
2581
|
+
};
|
|
2582
|
+
query?: never;
|
|
2583
|
+
url: "/verifier/config/{id}";
|
|
2584
|
+
};
|
|
2585
|
+
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
2586
|
+
200: {
|
|
2587
|
+
[key: string]: unknown;
|
|
2588
|
+
};
|
|
2589
|
+
};
|
|
2590
|
+
type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
|
|
2591
|
+
type CacheControllerGetStatsData = {
|
|
2592
|
+
body?: never;
|
|
2593
|
+
path?: never;
|
|
2594
|
+
query?: never;
|
|
2595
|
+
url: "/cache/stats";
|
|
2596
|
+
};
|
|
2597
|
+
type CacheControllerGetStatsResponses = {
|
|
2598
|
+
/**
|
|
2599
|
+
* Cache statistics
|
|
2600
|
+
*/
|
|
2601
|
+
200: unknown;
|
|
2602
|
+
};
|
|
2603
|
+
type CacheControllerClearAllCachesData = {
|
|
2604
|
+
body?: never;
|
|
2605
|
+
path?: never;
|
|
2606
|
+
query?: never;
|
|
2607
|
+
url: "/cache";
|
|
2608
|
+
};
|
|
2609
|
+
type CacheControllerClearAllCachesResponses = {
|
|
2610
|
+
/**
|
|
2611
|
+
* All caches cleared successfully
|
|
2612
|
+
*/
|
|
2613
|
+
204: void;
|
|
2614
|
+
};
|
|
2615
|
+
type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
|
|
2616
|
+
type CacheControllerClearTrustListCacheData = {
|
|
2617
|
+
body?: never;
|
|
2618
|
+
path?: never;
|
|
2619
|
+
query?: never;
|
|
2620
|
+
url: "/cache/trust-list";
|
|
2621
|
+
};
|
|
2622
|
+
type CacheControllerClearTrustListCacheResponses = {
|
|
2623
|
+
/**
|
|
2624
|
+
* Trust list cache cleared successfully
|
|
2625
|
+
*/
|
|
2626
|
+
204: void;
|
|
2627
|
+
};
|
|
2628
|
+
type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
|
|
2629
|
+
type CacheControllerClearStatusListCacheData = {
|
|
2630
|
+
body?: never;
|
|
2631
|
+
path?: never;
|
|
2632
|
+
query?: never;
|
|
2633
|
+
url: "/cache/status-list";
|
|
2634
|
+
};
|
|
2635
|
+
type CacheControllerClearStatusListCacheResponses = {
|
|
2636
|
+
/**
|
|
2637
|
+
* Status list cache cleared successfully
|
|
2638
|
+
*/
|
|
2639
|
+
204: void;
|
|
2640
|
+
};
|
|
2641
|
+
type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
|
|
2335
2642
|
type Oid4VciControllerCredentialData = {
|
|
2336
2643
|
body?: never;
|
|
2337
2644
|
path: {
|
|
@@ -2430,17 +2737,6 @@ type AuthorizeControllerTokenResponses = {
|
|
|
2430
2737
|
};
|
|
2431
2738
|
};
|
|
2432
2739
|
type AuthorizeControllerTokenResponse = AuthorizeControllerTokenResponses[keyof AuthorizeControllerTokenResponses];
|
|
2433
|
-
type AuthorizeControllerAuthorizationChallengeEndpointData = {
|
|
2434
|
-
body: AuthorizeQueries;
|
|
2435
|
-
path: {
|
|
2436
|
-
tenantId: string;
|
|
2437
|
-
};
|
|
2438
|
-
query?: never;
|
|
2439
|
-
url: "/{tenantId}/authorize/challenge";
|
|
2440
|
-
};
|
|
2441
|
-
type AuthorizeControllerAuthorizationChallengeEndpointResponses = {
|
|
2442
|
-
201: unknown;
|
|
2443
|
-
};
|
|
2444
2740
|
type InteractiveAuthorizationControllerInteractiveAuthorizationData = {
|
|
2445
2741
|
/**
|
|
2446
2742
|
* Interactive authorization request
|
|
@@ -2490,6 +2786,162 @@ type InteractiveAuthorizationControllerCompleteWebAuthResponses = {
|
|
|
2490
2786
|
*/
|
|
2491
2787
|
200: unknown;
|
|
2492
2788
|
};
|
|
2789
|
+
type ChainedAsControllerParData = {
|
|
2790
|
+
body: ChainedAsParRequestDto;
|
|
2791
|
+
headers?: {
|
|
2792
|
+
/**
|
|
2793
|
+
* DPoP proof JWT
|
|
2794
|
+
*/
|
|
2795
|
+
DPoP?: string;
|
|
2796
|
+
};
|
|
2797
|
+
path: {
|
|
2798
|
+
/**
|
|
2799
|
+
* Tenant identifier
|
|
2800
|
+
*/
|
|
2801
|
+
tenant: string;
|
|
2802
|
+
};
|
|
2803
|
+
query?: never;
|
|
2804
|
+
url: "/{tenant}/chained-as/par";
|
|
2805
|
+
};
|
|
2806
|
+
type ChainedAsControllerParErrors = {
|
|
2807
|
+
/**
|
|
2808
|
+
* Invalid request
|
|
2809
|
+
*/
|
|
2810
|
+
400: ChainedAsErrorResponseDto;
|
|
2811
|
+
};
|
|
2812
|
+
type ChainedAsControllerParError = ChainedAsControllerParErrors[keyof ChainedAsControllerParErrors];
|
|
2813
|
+
type ChainedAsControllerParResponses = {
|
|
2814
|
+
/**
|
|
2815
|
+
* PAR request accepted
|
|
2816
|
+
*/
|
|
2817
|
+
201: ChainedAsParResponseDto;
|
|
2818
|
+
};
|
|
2819
|
+
type ChainedAsControllerParResponse = ChainedAsControllerParResponses[keyof ChainedAsControllerParResponses];
|
|
2820
|
+
type ChainedAsControllerAuthorizeData = {
|
|
2821
|
+
body?: never;
|
|
2822
|
+
path: {
|
|
2823
|
+
/**
|
|
2824
|
+
* Tenant identifier
|
|
2825
|
+
*/
|
|
2826
|
+
tenant: string;
|
|
2827
|
+
};
|
|
2828
|
+
query: {
|
|
2829
|
+
/**
|
|
2830
|
+
* Client identifier
|
|
2831
|
+
*/
|
|
2832
|
+
client_id: string;
|
|
2833
|
+
/**
|
|
2834
|
+
* Request URI from PAR response
|
|
2835
|
+
*/
|
|
2836
|
+
request_uri: string;
|
|
2837
|
+
};
|
|
2838
|
+
url: "/{tenant}/chained-as/authorize";
|
|
2839
|
+
};
|
|
2840
|
+
type ChainedAsControllerAuthorizeErrors = {
|
|
2841
|
+
/**
|
|
2842
|
+
* Invalid request
|
|
2843
|
+
*/
|
|
2844
|
+
400: ChainedAsErrorResponseDto;
|
|
2845
|
+
};
|
|
2846
|
+
type ChainedAsControllerAuthorizeError = ChainedAsControllerAuthorizeErrors[keyof ChainedAsControllerAuthorizeErrors];
|
|
2847
|
+
type ChainedAsControllerAuthorizeResponses = {
|
|
2848
|
+
200: unknown;
|
|
2849
|
+
};
|
|
2850
|
+
type ChainedAsControllerCallbackData = {
|
|
2851
|
+
body?: never;
|
|
2852
|
+
path: {
|
|
2853
|
+
/**
|
|
2854
|
+
* Tenant identifier
|
|
2855
|
+
*/
|
|
2856
|
+
tenant: string;
|
|
2857
|
+
};
|
|
2858
|
+
query: {
|
|
2859
|
+
code: string;
|
|
2860
|
+
state: string;
|
|
2861
|
+
error: string;
|
|
2862
|
+
error_description: string;
|
|
2863
|
+
};
|
|
2864
|
+
url: "/{tenant}/chained-as/callback";
|
|
2865
|
+
};
|
|
2866
|
+
type ChainedAsControllerCallbackErrors = {
|
|
2867
|
+
/**
|
|
2868
|
+
* Invalid callback
|
|
2869
|
+
*/
|
|
2870
|
+
400: ChainedAsErrorResponseDto;
|
|
2871
|
+
};
|
|
2872
|
+
type ChainedAsControllerCallbackError = ChainedAsControllerCallbackErrors[keyof ChainedAsControllerCallbackErrors];
|
|
2873
|
+
type ChainedAsControllerCallbackResponses = {
|
|
2874
|
+
200: unknown;
|
|
2875
|
+
};
|
|
2876
|
+
type ChainedAsControllerTokenData = {
|
|
2877
|
+
body: ChainedAsTokenRequestDto;
|
|
2878
|
+
headers?: {
|
|
2879
|
+
/**
|
|
2880
|
+
* DPoP proof JWT
|
|
2881
|
+
*/
|
|
2882
|
+
DPoP?: string;
|
|
2883
|
+
};
|
|
2884
|
+
path: {
|
|
2885
|
+
/**
|
|
2886
|
+
* Tenant identifier
|
|
2887
|
+
*/
|
|
2888
|
+
tenant: string;
|
|
2889
|
+
};
|
|
2890
|
+
query?: never;
|
|
2891
|
+
url: "/{tenant}/chained-as/token";
|
|
2892
|
+
};
|
|
2893
|
+
type ChainedAsControllerTokenErrors = {
|
|
2894
|
+
/**
|
|
2895
|
+
* Invalid request
|
|
2896
|
+
*/
|
|
2897
|
+
400: ChainedAsErrorResponseDto;
|
|
2898
|
+
/**
|
|
2899
|
+
* Invalid authorization code
|
|
2900
|
+
*/
|
|
2901
|
+
401: ChainedAsErrorResponseDto;
|
|
2902
|
+
};
|
|
2903
|
+
type ChainedAsControllerTokenError = ChainedAsControllerTokenErrors[keyof ChainedAsControllerTokenErrors];
|
|
2904
|
+
type ChainedAsControllerTokenResponses = {
|
|
2905
|
+
/**
|
|
2906
|
+
* Token issued successfully
|
|
2907
|
+
*/
|
|
2908
|
+
200: ChainedAsTokenResponseDto;
|
|
2909
|
+
};
|
|
2910
|
+
type ChainedAsControllerTokenResponse = ChainedAsControllerTokenResponses[keyof ChainedAsControllerTokenResponses];
|
|
2911
|
+
type ChainedAsControllerJwksData = {
|
|
2912
|
+
body?: never;
|
|
2913
|
+
path: {
|
|
2914
|
+
/**
|
|
2915
|
+
* Tenant identifier
|
|
2916
|
+
*/
|
|
2917
|
+
tenant: string;
|
|
2918
|
+
};
|
|
2919
|
+
query?: never;
|
|
2920
|
+
url: "/{tenant}/chained-as/.well-known/jwks.json";
|
|
2921
|
+
};
|
|
2922
|
+
type ChainedAsControllerJwksResponses = {
|
|
2923
|
+
/**
|
|
2924
|
+
* JWKS document
|
|
2925
|
+
*/
|
|
2926
|
+
200: unknown;
|
|
2927
|
+
};
|
|
2928
|
+
type ChainedAsControllerGetMetadataData = {
|
|
2929
|
+
body?: never;
|
|
2930
|
+
path: {
|
|
2931
|
+
/**
|
|
2932
|
+
* Tenant identifier
|
|
2933
|
+
*/
|
|
2934
|
+
tenant: string;
|
|
2935
|
+
};
|
|
2936
|
+
query?: never;
|
|
2937
|
+
url: "/{tenant}/chained-as/.well-known/oauth-authorization-server";
|
|
2938
|
+
};
|
|
2939
|
+
type ChainedAsControllerGetMetadataResponses = {
|
|
2940
|
+
/**
|
|
2941
|
+
* OAuth AS metadata
|
|
2942
|
+
*/
|
|
2943
|
+
200: unknown;
|
|
2944
|
+
};
|
|
2493
2945
|
type CredentialOfferControllerGetOfferData = {
|
|
2494
2946
|
body: OfferRequestDto;
|
|
2495
2947
|
path?: never;
|
|
@@ -2788,116 +3240,6 @@ type RegistrarControllerCreateAccessCertificateResponses = {
|
|
|
2788
3240
|
};
|
|
2789
3241
|
};
|
|
2790
3242
|
type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
|
|
2791
|
-
type PresentationManagementControllerConfigurationData = {
|
|
2792
|
-
body?: never;
|
|
2793
|
-
path?: never;
|
|
2794
|
-
query?: never;
|
|
2795
|
-
url: "/verifier/config";
|
|
2796
|
-
};
|
|
2797
|
-
type PresentationManagementControllerConfigurationResponses = {
|
|
2798
|
-
200: Array<PresentationConfig>;
|
|
2799
|
-
};
|
|
2800
|
-
type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
|
|
2801
|
-
type PresentationManagementControllerStorePresentationConfigData = {
|
|
2802
|
-
body: PresentationConfigCreateDto;
|
|
2803
|
-
path?: never;
|
|
2804
|
-
query?: never;
|
|
2805
|
-
url: "/verifier/config";
|
|
2806
|
-
};
|
|
2807
|
-
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
2808
|
-
201: {
|
|
2809
|
-
[key: string]: unknown;
|
|
2810
|
-
};
|
|
2811
|
-
};
|
|
2812
|
-
type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
|
|
2813
|
-
type PresentationManagementControllerDeleteConfigurationData = {
|
|
2814
|
-
body?: never;
|
|
2815
|
-
path: {
|
|
2816
|
-
id: string;
|
|
2817
|
-
};
|
|
2818
|
-
query?: never;
|
|
2819
|
-
url: "/verifier/config/{id}";
|
|
2820
|
-
};
|
|
2821
|
-
type PresentationManagementControllerDeleteConfigurationResponses = {
|
|
2822
|
-
200: unknown;
|
|
2823
|
-
};
|
|
2824
|
-
type PresentationManagementControllerGetConfigurationData = {
|
|
2825
|
-
body?: never;
|
|
2826
|
-
path: {
|
|
2827
|
-
id: string;
|
|
2828
|
-
};
|
|
2829
|
-
query?: never;
|
|
2830
|
-
url: "/verifier/config/{id}";
|
|
2831
|
-
};
|
|
2832
|
-
type PresentationManagementControllerGetConfigurationResponses = {
|
|
2833
|
-
200: PresentationConfig;
|
|
2834
|
-
};
|
|
2835
|
-
type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
|
|
2836
|
-
type PresentationManagementControllerUpdateConfigurationData = {
|
|
2837
|
-
body: PresentationConfigUpdateDto;
|
|
2838
|
-
path: {
|
|
2839
|
-
id: string;
|
|
2840
|
-
};
|
|
2841
|
-
query?: never;
|
|
2842
|
-
url: "/verifier/config/{id}";
|
|
2843
|
-
};
|
|
2844
|
-
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
2845
|
-
200: {
|
|
2846
|
-
[key: string]: unknown;
|
|
2847
|
-
};
|
|
2848
|
-
};
|
|
2849
|
-
type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
|
|
2850
|
-
type CacheControllerGetStatsData = {
|
|
2851
|
-
body?: never;
|
|
2852
|
-
path?: never;
|
|
2853
|
-
query?: never;
|
|
2854
|
-
url: "/cache/stats";
|
|
2855
|
-
};
|
|
2856
|
-
type CacheControllerGetStatsResponses = {
|
|
2857
|
-
/**
|
|
2858
|
-
* Cache statistics
|
|
2859
|
-
*/
|
|
2860
|
-
200: unknown;
|
|
2861
|
-
};
|
|
2862
|
-
type CacheControllerClearAllCachesData = {
|
|
2863
|
-
body?: never;
|
|
2864
|
-
path?: never;
|
|
2865
|
-
query?: never;
|
|
2866
|
-
url: "/cache";
|
|
2867
|
-
};
|
|
2868
|
-
type CacheControllerClearAllCachesResponses = {
|
|
2869
|
-
/**
|
|
2870
|
-
* All caches cleared successfully
|
|
2871
|
-
*/
|
|
2872
|
-
204: void;
|
|
2873
|
-
};
|
|
2874
|
-
type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
|
|
2875
|
-
type CacheControllerClearTrustListCacheData = {
|
|
2876
|
-
body?: never;
|
|
2877
|
-
path?: never;
|
|
2878
|
-
query?: never;
|
|
2879
|
-
url: "/cache/trust-list";
|
|
2880
|
-
};
|
|
2881
|
-
type CacheControllerClearTrustListCacheResponses = {
|
|
2882
|
-
/**
|
|
2883
|
-
* Trust list cache cleared successfully
|
|
2884
|
-
*/
|
|
2885
|
-
204: void;
|
|
2886
|
-
};
|
|
2887
|
-
type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
|
|
2888
|
-
type CacheControllerClearStatusListCacheData = {
|
|
2889
|
-
body?: never;
|
|
2890
|
-
path?: never;
|
|
2891
|
-
query?: never;
|
|
2892
|
-
url: "/cache/status-list";
|
|
2893
|
-
};
|
|
2894
|
-
type CacheControllerClearStatusListCacheResponses = {
|
|
2895
|
-
/**
|
|
2896
|
-
* Status list cache cleared successfully
|
|
2897
|
-
*/
|
|
2898
|
-
204: void;
|
|
2899
|
-
};
|
|
2900
|
-
type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
|
|
2901
3243
|
type TrustListControllerGetAllTrustListsData = {
|
|
2902
3244
|
body?: never;
|
|
2903
3245
|
path?: never;
|
|
@@ -3043,4 +3385,4 @@ type StorageControllerDownloadResponses = {
|
|
|
3043
3385
|
200: unknown;
|
|
3044
3386
|
};
|
|
3045
3387
|
|
|
3046
|
-
export type { CertControllerGetCertificatesResponse as $, AllowListPolicy as A, AuthorizeControllerTokenResponses as B, AuthorizeQueries as C, CacheControllerClearAllCachesData as D, CacheControllerClearAllCachesResponse as E, CacheControllerClearAllCachesResponses as F, CacheControllerClearStatusListCacheData as G, CacheControllerClearStatusListCacheResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertControllerAddCertificateData as O, CertControllerAddCertificateResponse as P, CertControllerAddCertificateResponses as Q, CertControllerDeleteCertificateData as R, Session as S, CertControllerDeleteCertificateResponses as T, CertControllerExportConfigData as U, CertControllerExportConfigResponse as V, CertControllerExportConfigResponses as W, CertControllerGetCertificateData as X, CertControllerGetCertificateResponse as Y, CertControllerGetCertificateResponses as Z, CertControllerGetCertificatesData as _, ApiKeyConfig as a, DeferredControllerCompleteDeferredData as a$, CertControllerGetCertificatesResponses as a0, CertControllerUpdateCertificateData as a1, CertControllerUpdateCertificateResponses as a2, CertEntity as a3, CertImportDto as a4, CertResponseDto as a5, CertUpdateDto as a6, CertUsageEntity as a7, Claim as a8, ClaimsQuery as a9, CreateClientDto as aA, CreateRegistrarConfigDto as aB, CreateStatusListDto as aC, CreateTenantDto as aD, CredentialConfig as aE, CredentialConfigControllerDeleteIssuanceConfigurationData as aF, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aG, CredentialConfigControllerGetConfigByIdData as aH, CredentialConfigControllerGetConfigByIdResponse as aI, CredentialConfigControllerGetConfigByIdResponses as aJ, CredentialConfigControllerGetConfigsData as aK, CredentialConfigControllerGetConfigsResponse as aL, CredentialConfigControllerGetConfigsResponses as aM, CredentialConfigControllerStoreCredentialConfigurationData as aN, CredentialConfigControllerStoreCredentialConfigurationResponse as aO, CredentialConfigControllerStoreCredentialConfigurationResponses as aP, CredentialConfigControllerUpdateCredentialConfigurationData as aQ, CredentialConfigControllerUpdateCredentialConfigurationResponse as aR, CredentialConfigControllerUpdateCredentialConfigurationResponses as aS, CredentialConfigCreate as aT, CredentialConfigUpdate as aU, CredentialOfferControllerGetOfferData as aV, CredentialOfferControllerGetOfferResponse as aW, CredentialOfferControllerGetOfferResponses as aX, CredentialQuery as aY, CredentialSetQuery as aZ, Dcql as a_, ClientControllerCreateClientData as aa, ClientControllerCreateClientResponse as ab, ClientControllerCreateClientResponses as ac, ClientControllerDeleteClientData as ad, ClientControllerDeleteClientResponses as ae, ClientControllerGetClientData as af, ClientControllerGetClientResponse as ag, ClientControllerGetClientResponses as ah, ClientControllerGetClientSecretData as ai, ClientControllerGetClientSecretResponse as aj, ClientControllerGetClientSecretResponses as ak, ClientControllerGetClientsData as al, ClientControllerGetClientsResponse as am, ClientControllerGetClientsResponses as an, ClientControllerRotateClientSecretData as ao, ClientControllerRotateClientSecretResponse as ap, ClientControllerRotateClientSecretResponses as aq, ClientControllerUpdateClientData as ar, ClientControllerUpdateClientResponse as as, ClientControllerUpdateClientResponses as at, ClientCredentialsDto as au, ClientEntity as av, ClientOptions as aw, ClientSecretResponseDto as ax, CompleteDeferredDto as ay, CreateAccessCertificateDto as az, AppControllerMainData as b, OfferRequestDto as b$, DeferredControllerCompleteDeferredErrors as b0, DeferredControllerCompleteDeferredResponse as b1, DeferredControllerCompleteDeferredResponses as b2, DeferredControllerFailDeferredData as b3, DeferredControllerFailDeferredErrors as b4, DeferredControllerFailDeferredResponse as b5, DeferredControllerFailDeferredResponses as b6, DeferredCredentialRequestDto as b7, DeferredOperationResponse as b8, Display as b9, IssuanceConfig as bA, IssuanceConfigControllerGetIssuanceConfigurationsData as bB, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bC, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bD, IssuanceConfigControllerStoreIssuanceConfigurationData as bE, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bF, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bG, IssuanceDto as bH, IssuerMetadataCredentialConfig as bI, JwksResponseDto as bJ, Key as bK, KeyControllerAddKeyData as bL, KeyControllerAddKeyResponses as bM, KeyControllerDeleteKeyData as bN, KeyControllerDeleteKeyResponses as bO, KeyControllerGetKeyData as bP, KeyControllerGetKeyResponse as bQ, KeyControllerGetKeyResponses as bR, KeyControllerGetKeysData as bS, KeyControllerGetKeysResponse as bT, KeyControllerGetKeysResponses as bU, KeyControllerUpdateKeyData as bV, KeyControllerUpdateKeyResponses as bW, KeyEntity as bX, KeyImportDto as bY, NoneTrustPolicy as bZ, NotificationRequestDto as b_, DisplayImage as ba, DisplayInfo as bb, DisplayLogo as bc, EcPublic as bd, EmbeddedDisclosurePolicy as be, FailDeferredDto as bf, FileUploadDto as bg, HealthControllerCheckData as bh, HealthControllerCheckError as bi, HealthControllerCheckErrors as bj, HealthControllerCheckResponse as bk, HealthControllerCheckResponses as bl, IaeActionOpenid4VpPresentation as bm, IaeActionRedirectToWeb as bn, ImportTenantDto as bo, InteractiveAuthorizationCodeResponseDto as bp, InteractiveAuthorizationControllerCompleteWebAuthData as bq, InteractiveAuthorizationControllerCompleteWebAuthErrors as br, InteractiveAuthorizationControllerCompleteWebAuthResponses as bs, InteractiveAuthorizationControllerInteractiveAuthorizationData as bt, InteractiveAuthorizationControllerInteractiveAuthorizationError as bu, InteractiveAuthorizationControllerInteractiveAuthorizationErrors as bv, InteractiveAuthorizationControllerInteractiveAuthorizationResponse as bw, InteractiveAuthorizationControllerInteractiveAuthorizationResponses as bx, InteractiveAuthorizationErrorResponseDto as by, InteractiveAuthorizationRequestDto as bz, AppControllerMainResponses as c, RegistrarControllerGetConfigResponse as c$, OfferResponse as c0, Oid4VciControllerCredentialData as c1, Oid4VciControllerCredentialResponse as c2, Oid4VciControllerCredentialResponses as c3, Oid4VciControllerDeferredCredentialData as c4, Oid4VciControllerDeferredCredentialResponses as c5, Oid4VciControllerNonceData as c6, Oid4VciControllerNonceResponses as c7, Oid4VciControllerNotificationsData as c8, Oid4VciControllerNotificationsResponses as c9, PresentationManagementControllerDeleteConfigurationResponses as cA, PresentationManagementControllerGetConfigurationData as cB, PresentationManagementControllerGetConfigurationResponse as cC, PresentationManagementControllerGetConfigurationResponses as cD, PresentationManagementControllerStorePresentationConfigData as cE, PresentationManagementControllerStorePresentationConfigResponse as cF, PresentationManagementControllerStorePresentationConfigResponses as cG, PresentationManagementControllerUpdateConfigurationData as cH, PresentationManagementControllerUpdateConfigurationResponse as cI, PresentationManagementControllerUpdateConfigurationResponses as cJ, PresentationRequest as cK, PrometheusControllerIndexData as cL, PrometheusControllerIndexResponses as cM, RegistrarConfigEntity as cN, RegistrarControllerCreateAccessCertificateData as cO, RegistrarControllerCreateAccessCertificateErrors as cP, RegistrarControllerCreateAccessCertificateResponse as cQ, RegistrarControllerCreateAccessCertificateResponses as cR, RegistrarControllerCreateConfigData as cS, RegistrarControllerCreateConfigErrors as cT, RegistrarControllerCreateConfigResponse as cU, RegistrarControllerCreateConfigResponses as cV, RegistrarControllerDeleteConfigData as cW, RegistrarControllerDeleteConfigResponse as cX, RegistrarControllerDeleteConfigResponses as cY, RegistrarControllerGetConfigData as cZ, RegistrarControllerGetConfigErrors as c_, Oid4VciMetadataControllerVctData as ca, Oid4VciMetadataControllerVctResponse as cb, Oid4VciMetadataControllerVctResponses as cc, Oid4VpControllerGetPostRequestWithSessionData as cd, Oid4VpControllerGetPostRequestWithSessionResponse as ce, Oid4VpControllerGetPostRequestWithSessionResponses as cf, Oid4VpControllerGetRequestNoRedirectWithSessionData as cg, Oid4VpControllerGetRequestNoRedirectWithSessionResponse as ch, Oid4VpControllerGetRequestNoRedirectWithSessionResponses as ci, Oid4VpControllerGetRequestWithSessionData as cj, Oid4VpControllerGetRequestWithSessionResponse as ck, Oid4VpControllerGetRequestWithSessionResponses as cl, Oid4VpControllerGetResponseData as cm, Oid4VpControllerGetResponseResponse as cn, Oid4VpControllerGetResponseResponses as co, ParResponseDto as cp, PolicyCredential as cq, PresentationAttachment as cr, PresentationConfig as cs, PresentationConfigCreateDto as ct, PresentationConfigUpdateDto as cu, PresentationDuringIssuanceConfig as cv, PresentationManagementControllerConfigurationData as cw, PresentationManagementControllerConfigurationResponse as cx, PresentationManagementControllerConfigurationResponses as cy, PresentationManagementControllerDeleteConfigurationData as cz, AttestationBasedPolicy as d, StatusUpdateDto as d$, RegistrarControllerGetConfigResponses as d0, RegistrarControllerUpdateConfigData as d1, RegistrarControllerUpdateConfigErrors as d2, RegistrarControllerUpdateConfigResponse as d3, RegistrarControllerUpdateConfigResponses as d4, RegistrationCertificateRequest as d5, RoleDto as d6, RootOfTrustPolicy as d7, SchemaResponse as d8, SessionConfigControllerGetConfigData as d9, StatusListConfigControllerResetConfigResponses as dA, StatusListConfigControllerUpdateConfigData as dB, StatusListConfigControllerUpdateConfigResponse as dC, StatusListConfigControllerUpdateConfigResponses as dD, StatusListControllerGetListData as dE, StatusListControllerGetListResponse as dF, StatusListControllerGetListResponses as dG, StatusListControllerGetStatusListAggregationData as dH, StatusListControllerGetStatusListAggregationResponse as dI, StatusListControllerGetStatusListAggregationResponses as dJ, StatusListImportDto as dK, StatusListManagementControllerCreateListData as dL, StatusListManagementControllerCreateListResponse as dM, StatusListManagementControllerCreateListResponses as dN, StatusListManagementControllerDeleteListData as dO, StatusListManagementControllerDeleteListResponse as dP, StatusListManagementControllerDeleteListResponses as dQ, StatusListManagementControllerGetListData as dR, StatusListManagementControllerGetListResponse as dS, StatusListManagementControllerGetListResponses as dT, StatusListManagementControllerGetListsData as dU, StatusListManagementControllerGetListsResponse as dV, StatusListManagementControllerGetListsResponses as dW, StatusListManagementControllerUpdateListData as dX, StatusListManagementControllerUpdateListResponse as dY, StatusListManagementControllerUpdateListResponses as dZ, StatusListResponseDto as d_, SessionConfigControllerGetConfigResponse as da, SessionConfigControllerGetConfigResponses as db, SessionConfigControllerResetConfigData as dc, SessionConfigControllerResetConfigResponses as dd, SessionConfigControllerUpdateConfigData as de, SessionConfigControllerUpdateConfigResponse as df, SessionConfigControllerUpdateConfigResponses as dg, SessionControllerDeleteSessionData as dh, SessionControllerDeleteSessionResponses as di, SessionControllerGetAllSessionsData as dj, SessionControllerGetAllSessionsResponse as dk, SessionControllerGetAllSessionsResponses as dl, SessionControllerGetSessionData as dm, SessionControllerGetSessionResponse as dn, SessionControllerGetSessionResponses as dp, SessionControllerRevokeAllData as dq, SessionControllerRevokeAllResponses as dr, SessionStorageConfig as ds, StatusListAggregationDto as dt, StatusListConfig as du, StatusListConfigControllerGetConfigData as dv, StatusListConfigControllerGetConfigResponse as dw, StatusListConfigControllerGetConfigResponses as dx, StatusListConfigControllerResetConfigData as dy, StatusListConfigControllerResetConfigResponse as dz, AuthControllerGetGlobalJwksData as e, WebHookAuthConfigHeader as e$, StorageControllerDownloadData as e0, StorageControllerDownloadResponses as e1, StorageControllerUploadData as e2, StorageControllerUploadResponse as e3, StorageControllerUploadResponses as e4, TenantControllerDeleteTenantData as e5, TenantControllerDeleteTenantResponses as e6, TenantControllerGetTenantData as e7, TenantControllerGetTenantResponse as e8, TenantControllerGetTenantResponses as e9, TrustListControllerGetTrustListResponses as eA, TrustListControllerGetTrustListVersionData as eB, TrustListControllerGetTrustListVersionResponse as eC, TrustListControllerGetTrustListVersionResponses as eD, TrustListControllerGetTrustListVersionsData as eE, TrustListControllerGetTrustListVersionsResponse as eF, TrustListControllerGetTrustListVersionsResponses as eG, TrustListControllerUpdateTrustListData as eH, TrustListControllerUpdateTrustListResponse as eI, TrustListControllerUpdateTrustListResponses as eJ, TrustListCreateDto as eK, TrustListPublicControllerGetTrustListJwtData as eL, TrustListPublicControllerGetTrustListJwtResponse as eM, TrustListPublicControllerGetTrustListJwtResponses as eN, TrustListVersion as eO, TrustedAuthorityQuery as eP, UpdateClientDto as eQ, UpdateKeyDto as eR, UpdateRegistrarConfigDto as eS, UpdateSessionConfigDto as eT, UpdateStatusListConfigDto as eU, UpdateStatusListDto as eV, UpdateTenantDto as eW, Vct as eX, VerifierOfferControllerGetOfferData as eY, VerifierOfferControllerGetOfferResponse as eZ, VerifierOfferControllerGetOfferResponses as e_, TenantControllerGetTenantsData as ea, TenantControllerGetTenantsResponse as eb, TenantControllerGetTenantsResponses as ec, TenantControllerInitTenantData as ed, TenantControllerInitTenantResponse as ee, TenantControllerInitTenantResponses as ef, TenantControllerUpdateTenantData as eg, TenantControllerUpdateTenantResponse as eh, TenantControllerUpdateTenantResponses as ei, TenantEntity as ej, TokenResponse as ek, TransactionData as el, TrustList as em, TrustListControllerCreateTrustListData as en, TrustListControllerCreateTrustListResponse as eo, TrustListControllerCreateTrustListResponses as ep, TrustListControllerDeleteTrustListData as eq, TrustListControllerDeleteTrustListResponses as er, TrustListControllerExportTrustListData as es, TrustListControllerExportTrustListResponse as et, TrustListControllerExportTrustListResponses as eu, TrustListControllerGetAllTrustListsData as ev, TrustListControllerGetAllTrustListsResponse as ew, TrustListControllerGetAllTrustListsResponses as ex, TrustListControllerGetTrustListData as ey, TrustListControllerGetTrustListResponse as ez, AuthControllerGetGlobalJwksResponses as f, WebHookAuthConfigNone as f0, WebhookConfig as f1, WellKnownControllerAuthzMetadata0Data as f2, WellKnownControllerAuthzMetadata0Responses as f3, WellKnownControllerAuthzMetadata1Data as f4, WellKnownControllerAuthzMetadata1Responses as f5, WellKnownControllerGetJwks0Data as f6, WellKnownControllerGetJwks0Response as f7, WellKnownControllerGetJwks0Responses as f8, WellKnownControllerGetJwks1Data as f9, WellKnownControllerGetJwks1Response as fa, WellKnownControllerGetJwks1Responses as fb, WellKnownControllerIssuerMetadata0Data as fc, WellKnownControllerIssuerMetadata0Response as fd, WellKnownControllerIssuerMetadata0Responses as fe, WellKnownControllerIssuerMetadata1Data as ff, WellKnownControllerIssuerMetadata1Response as fg, WellKnownControllerIssuerMetadata1Responses as fh, AuthControllerGetOAuth2TokenData as g, AuthControllerGetOAuth2TokenErrors as h, AuthControllerGetOAuth2TokenResponse as i, AuthControllerGetOAuth2TokenResponses as j, AuthControllerGetOidcDiscoveryData as k, AuthControllerGetOidcDiscoveryResponses as l, AuthenticationMethodAuth as m, AuthenticationMethodNone as n, AuthenticationMethodPresentation as o, AuthenticationUrlConfig as p, AuthorizationResponse as q, AuthorizeControllerAuthorizationChallengeEndpointData as r, AuthorizeControllerAuthorizationChallengeEndpointResponses as s, AuthorizeControllerAuthorizeData as t, AuthorizeControllerAuthorizeResponses as u, AuthorizeControllerParData as v, AuthorizeControllerParResponse as w, AuthorizeControllerParResponses as x, AuthorizeControllerTokenData as y, AuthorizeControllerTokenResponse as z };
|
|
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 };
|