@eudiplo/sdk-core 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/client.gen.d.mts +1 -1
- package/dist/api/client.gen.d.ts +1 -1
- package/dist/api/index.d.mts +80 -5
- package/dist/api/index.d.ts +80 -5
- package/dist/api/index.js +75 -0
- package/dist/api/index.mjs +65 -1
- package/dist/index.d.mts +39 -14
- package/dist/index.d.ts +39 -14
- package/dist/index.js +92 -4
- package/dist/index.mjs +82 -5
- package/dist/{types.gen-KKg4o5Hj.d.mts → types.gen-M31b0SZB.d.mts} +368 -9
- package/dist/{types.gen-KKg4o5Hj.d.ts → types.gen-M31b0SZB.d.ts} +368 -9
- package/package.json +3 -3
package/dist/api/index.js
CHANGED
|
@@ -933,6 +933,11 @@ var clientControllerGetClientSecret = (options) => (options.client ?? client).ge
|
|
|
933
933
|
url: "/client/{id}/secret",
|
|
934
934
|
...options
|
|
935
935
|
});
|
|
936
|
+
var clientControllerRotateClientSecret = (options) => (options.client ?? client).post({
|
|
937
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
938
|
+
url: "/client/{id}/rotate-secret",
|
|
939
|
+
...options
|
|
940
|
+
});
|
|
936
941
|
var keyControllerGetKeys = (options) => (options?.client ?? client).get({
|
|
937
942
|
security: [{ scheme: "bearer", type: "http" }],
|
|
938
943
|
url: "/key",
|
|
@@ -1152,6 +1157,14 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1152
1157
|
}
|
|
1153
1158
|
});
|
|
1154
1159
|
var oid4VciControllerCredential = (options) => (options.client ?? client).post({ url: "/{tenantId}/vci/credential", ...options });
|
|
1160
|
+
var oid4VciControllerDeferredCredential = (options) => (options.client ?? client).post({
|
|
1161
|
+
url: "/{tenantId}/vci/deferred_credential",
|
|
1162
|
+
...options,
|
|
1163
|
+
headers: {
|
|
1164
|
+
"Content-Type": "application/json",
|
|
1165
|
+
...options.headers
|
|
1166
|
+
}
|
|
1167
|
+
});
|
|
1155
1168
|
var oid4VciControllerNotifications = (options) => (options.client ?? client).post({
|
|
1156
1169
|
url: "/{tenantId}/vci/notification",
|
|
1157
1170
|
...options,
|
|
@@ -1179,6 +1192,18 @@ var authorizeControllerAuthorizationChallengeEndpoint = (options) => (options.cl
|
|
|
1179
1192
|
...options.headers
|
|
1180
1193
|
}
|
|
1181
1194
|
});
|
|
1195
|
+
var interactiveAuthorizationControllerInteractiveAuthorization = (options) => (options.client ?? client).post({
|
|
1196
|
+
url: "/{tenantId}/authorize/interactive",
|
|
1197
|
+
...options,
|
|
1198
|
+
headers: {
|
|
1199
|
+
"Content-Type": "application/json",
|
|
1200
|
+
...options.headers
|
|
1201
|
+
}
|
|
1202
|
+
});
|
|
1203
|
+
var interactiveAuthorizationControllerCompleteWebAuth = (options) => (options.client ?? client).post({
|
|
1204
|
+
url: "/{tenantId}/authorize/interactive/complete-web-auth/{authSession}",
|
|
1205
|
+
...options
|
|
1206
|
+
});
|
|
1182
1207
|
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1183
1208
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1184
1209
|
url: "/issuer/offer",
|
|
@@ -1188,6 +1213,24 @@ var credentialOfferControllerGetOffer = (options) => (options.client ?? client).
|
|
|
1188
1213
|
...options.headers
|
|
1189
1214
|
}
|
|
1190
1215
|
});
|
|
1216
|
+
var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
|
|
1217
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1218
|
+
url: "/issuer/deferred/{transactionId}/complete",
|
|
1219
|
+
...options,
|
|
1220
|
+
headers: {
|
|
1221
|
+
"Content-Type": "application/json",
|
|
1222
|
+
...options.headers
|
|
1223
|
+
}
|
|
1224
|
+
});
|
|
1225
|
+
var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
|
|
1226
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1227
|
+
url: "/issuer/deferred/{transactionId}/fail",
|
|
1228
|
+
...options,
|
|
1229
|
+
headers: {
|
|
1230
|
+
"Content-Type": "application/json",
|
|
1231
|
+
...options.headers
|
|
1232
|
+
}
|
|
1233
|
+
});
|
|
1191
1234
|
var oid4VciMetadataControllerVct = (options) => (options.client ?? client).get({ url: "/{tenantId}/credentials-metadata/vct/{id}", ...options });
|
|
1192
1235
|
var wellKnownControllerIssuerMetadata0 = (options) => (options.client ?? client).get({ url: "/.well-known/openid-credential-issuer/{tenantId}", ...options });
|
|
1193
1236
|
var wellKnownControllerIssuerMetadata1 = (options) => (options.client ?? client).get({ url: "/{tenantId}/.well-known/openid-credential-issuer", ...options });
|
|
@@ -1197,6 +1240,7 @@ var wellKnownControllerGetJwks0 = (options) => (options.client ?? client).get({
|
|
|
1197
1240
|
var wellKnownControllerGetJwks1 = (options) => (options.client ?? client).get({ url: "/{tenantId}/.well-known/jwks.json", ...options });
|
|
1198
1241
|
var oid4VpControllerGetRequestWithSession = (options) => (options.client ?? client).get({ url: "/{session}/oid4vp/request", ...options });
|
|
1199
1242
|
var oid4VpControllerGetPostRequestWithSession = (options) => (options.client ?? client).post({ url: "/{session}/oid4vp/request", ...options });
|
|
1243
|
+
var oid4VpControllerGetRequestNoRedirectWithSession = (options) => (options.client ?? client).get({ url: "/{session}/oid4vp/request/no-redirect", ...options });
|
|
1200
1244
|
var oid4VpControllerGetResponse = (options) => (options.client ?? client).post({
|
|
1201
1245
|
url: "/{session}/oid4vp",
|
|
1202
1246
|
...options,
|
|
@@ -1275,6 +1319,26 @@ var presentationManagementControllerUpdateConfiguration = (options) => (options.
|
|
|
1275
1319
|
...options.headers
|
|
1276
1320
|
}
|
|
1277
1321
|
});
|
|
1322
|
+
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1323
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1324
|
+
url: "/cache/stats",
|
|
1325
|
+
...options
|
|
1326
|
+
});
|
|
1327
|
+
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1328
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1329
|
+
url: "/cache",
|
|
1330
|
+
...options
|
|
1331
|
+
});
|
|
1332
|
+
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1333
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1334
|
+
url: "/cache/trust-list",
|
|
1335
|
+
...options
|
|
1336
|
+
});
|
|
1337
|
+
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1338
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1339
|
+
url: "/cache/status-list",
|
|
1340
|
+
...options
|
|
1341
|
+
});
|
|
1278
1342
|
var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
|
|
1279
1343
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1280
1344
|
url: "/trust-list",
|
|
@@ -1353,6 +1417,10 @@ exports.authorizeControllerAuthorizationChallengeEndpoint = authorizeControllerA
|
|
|
1353
1417
|
exports.authorizeControllerAuthorize = authorizeControllerAuthorize;
|
|
1354
1418
|
exports.authorizeControllerPar = authorizeControllerPar;
|
|
1355
1419
|
exports.authorizeControllerToken = authorizeControllerToken;
|
|
1420
|
+
exports.cacheControllerClearAllCaches = cacheControllerClearAllCaches;
|
|
1421
|
+
exports.cacheControllerClearStatusListCache = cacheControllerClearStatusListCache;
|
|
1422
|
+
exports.cacheControllerClearTrustListCache = cacheControllerClearTrustListCache;
|
|
1423
|
+
exports.cacheControllerGetStats = cacheControllerGetStats;
|
|
1356
1424
|
exports.certControllerAddCertificate = certControllerAddCertificate;
|
|
1357
1425
|
exports.certControllerDeleteCertificate = certControllerDeleteCertificate;
|
|
1358
1426
|
exports.certControllerExportConfig = certControllerExportConfig;
|
|
@@ -1364,6 +1432,7 @@ exports.clientControllerDeleteClient = clientControllerDeleteClient;
|
|
|
1364
1432
|
exports.clientControllerGetClient = clientControllerGetClient;
|
|
1365
1433
|
exports.clientControllerGetClientSecret = clientControllerGetClientSecret;
|
|
1366
1434
|
exports.clientControllerGetClients = clientControllerGetClients;
|
|
1435
|
+
exports.clientControllerRotateClientSecret = clientControllerRotateClientSecret;
|
|
1367
1436
|
exports.clientControllerUpdateClient = clientControllerUpdateClient;
|
|
1368
1437
|
exports.credentialConfigControllerDeleteIssuanceConfiguration = credentialConfigControllerDeleteIssuanceConfiguration;
|
|
1369
1438
|
exports.credentialConfigControllerGetConfigById = credentialConfigControllerGetConfigById;
|
|
@@ -1371,7 +1440,11 @@ exports.credentialConfigControllerGetConfigs = credentialConfigControllerGetConf
|
|
|
1371
1440
|
exports.credentialConfigControllerStoreCredentialConfiguration = credentialConfigControllerStoreCredentialConfiguration;
|
|
1372
1441
|
exports.credentialConfigControllerUpdateCredentialConfiguration = credentialConfigControllerUpdateCredentialConfiguration;
|
|
1373
1442
|
exports.credentialOfferControllerGetOffer = credentialOfferControllerGetOffer;
|
|
1443
|
+
exports.deferredControllerCompleteDeferred = deferredControllerCompleteDeferred;
|
|
1444
|
+
exports.deferredControllerFailDeferred = deferredControllerFailDeferred;
|
|
1374
1445
|
exports.healthControllerCheck = healthControllerCheck;
|
|
1446
|
+
exports.interactiveAuthorizationControllerCompleteWebAuth = interactiveAuthorizationControllerCompleteWebAuth;
|
|
1447
|
+
exports.interactiveAuthorizationControllerInteractiveAuthorization = interactiveAuthorizationControllerInteractiveAuthorization;
|
|
1375
1448
|
exports.issuanceConfigControllerGetIssuanceConfigurations = issuanceConfigControllerGetIssuanceConfigurations;
|
|
1376
1449
|
exports.issuanceConfigControllerStoreIssuanceConfiguration = issuanceConfigControllerStoreIssuanceConfiguration;
|
|
1377
1450
|
exports.keyControllerAddKey = keyControllerAddKey;
|
|
@@ -1380,10 +1453,12 @@ exports.keyControllerGetKey = keyControllerGetKey;
|
|
|
1380
1453
|
exports.keyControllerGetKeys = keyControllerGetKeys;
|
|
1381
1454
|
exports.keyControllerUpdateKey = keyControllerUpdateKey;
|
|
1382
1455
|
exports.oid4VciControllerCredential = oid4VciControllerCredential;
|
|
1456
|
+
exports.oid4VciControllerDeferredCredential = oid4VciControllerDeferredCredential;
|
|
1383
1457
|
exports.oid4VciControllerNonce = oid4VciControllerNonce;
|
|
1384
1458
|
exports.oid4VciControllerNotifications = oid4VciControllerNotifications;
|
|
1385
1459
|
exports.oid4VciMetadataControllerVct = oid4VciMetadataControllerVct;
|
|
1386
1460
|
exports.oid4VpControllerGetPostRequestWithSession = oid4VpControllerGetPostRequestWithSession;
|
|
1461
|
+
exports.oid4VpControllerGetRequestNoRedirectWithSession = oid4VpControllerGetRequestNoRedirectWithSession;
|
|
1387
1462
|
exports.oid4VpControllerGetRequestWithSession = oid4VpControllerGetRequestWithSession;
|
|
1388
1463
|
exports.oid4VpControllerGetResponse = oid4VpControllerGetResponse;
|
|
1389
1464
|
exports.presentationManagementControllerConfiguration = presentationManagementControllerConfiguration;
|
package/dist/api/index.mjs
CHANGED
|
@@ -931,6 +931,11 @@ var clientControllerGetClientSecret = (options) => (options.client ?? client).ge
|
|
|
931
931
|
url: "/client/{id}/secret",
|
|
932
932
|
...options
|
|
933
933
|
});
|
|
934
|
+
var clientControllerRotateClientSecret = (options) => (options.client ?? client).post({
|
|
935
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
936
|
+
url: "/client/{id}/rotate-secret",
|
|
937
|
+
...options
|
|
938
|
+
});
|
|
934
939
|
var keyControllerGetKeys = (options) => (options?.client ?? client).get({
|
|
935
940
|
security: [{ scheme: "bearer", type: "http" }],
|
|
936
941
|
url: "/key",
|
|
@@ -1150,6 +1155,14 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1150
1155
|
}
|
|
1151
1156
|
});
|
|
1152
1157
|
var oid4VciControllerCredential = (options) => (options.client ?? client).post({ url: "/{tenantId}/vci/credential", ...options });
|
|
1158
|
+
var oid4VciControllerDeferredCredential = (options) => (options.client ?? client).post({
|
|
1159
|
+
url: "/{tenantId}/vci/deferred_credential",
|
|
1160
|
+
...options,
|
|
1161
|
+
headers: {
|
|
1162
|
+
"Content-Type": "application/json",
|
|
1163
|
+
...options.headers
|
|
1164
|
+
}
|
|
1165
|
+
});
|
|
1153
1166
|
var oid4VciControllerNotifications = (options) => (options.client ?? client).post({
|
|
1154
1167
|
url: "/{tenantId}/vci/notification",
|
|
1155
1168
|
...options,
|
|
@@ -1177,6 +1190,18 @@ var authorizeControllerAuthorizationChallengeEndpoint = (options) => (options.cl
|
|
|
1177
1190
|
...options.headers
|
|
1178
1191
|
}
|
|
1179
1192
|
});
|
|
1193
|
+
var interactiveAuthorizationControllerInteractiveAuthorization = (options) => (options.client ?? client).post({
|
|
1194
|
+
url: "/{tenantId}/authorize/interactive",
|
|
1195
|
+
...options,
|
|
1196
|
+
headers: {
|
|
1197
|
+
"Content-Type": "application/json",
|
|
1198
|
+
...options.headers
|
|
1199
|
+
}
|
|
1200
|
+
});
|
|
1201
|
+
var interactiveAuthorizationControllerCompleteWebAuth = (options) => (options.client ?? client).post({
|
|
1202
|
+
url: "/{tenantId}/authorize/interactive/complete-web-auth/{authSession}",
|
|
1203
|
+
...options
|
|
1204
|
+
});
|
|
1180
1205
|
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1181
1206
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1182
1207
|
url: "/issuer/offer",
|
|
@@ -1186,6 +1211,24 @@ var credentialOfferControllerGetOffer = (options) => (options.client ?? client).
|
|
|
1186
1211
|
...options.headers
|
|
1187
1212
|
}
|
|
1188
1213
|
});
|
|
1214
|
+
var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
|
|
1215
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1216
|
+
url: "/issuer/deferred/{transactionId}/complete",
|
|
1217
|
+
...options,
|
|
1218
|
+
headers: {
|
|
1219
|
+
"Content-Type": "application/json",
|
|
1220
|
+
...options.headers
|
|
1221
|
+
}
|
|
1222
|
+
});
|
|
1223
|
+
var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
|
|
1224
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1225
|
+
url: "/issuer/deferred/{transactionId}/fail",
|
|
1226
|
+
...options,
|
|
1227
|
+
headers: {
|
|
1228
|
+
"Content-Type": "application/json",
|
|
1229
|
+
...options.headers
|
|
1230
|
+
}
|
|
1231
|
+
});
|
|
1189
1232
|
var oid4VciMetadataControllerVct = (options) => (options.client ?? client).get({ url: "/{tenantId}/credentials-metadata/vct/{id}", ...options });
|
|
1190
1233
|
var wellKnownControllerIssuerMetadata0 = (options) => (options.client ?? client).get({ url: "/.well-known/openid-credential-issuer/{tenantId}", ...options });
|
|
1191
1234
|
var wellKnownControllerIssuerMetadata1 = (options) => (options.client ?? client).get({ url: "/{tenantId}/.well-known/openid-credential-issuer", ...options });
|
|
@@ -1195,6 +1238,7 @@ var wellKnownControllerGetJwks0 = (options) => (options.client ?? client).get({
|
|
|
1195
1238
|
var wellKnownControllerGetJwks1 = (options) => (options.client ?? client).get({ url: "/{tenantId}/.well-known/jwks.json", ...options });
|
|
1196
1239
|
var oid4VpControllerGetRequestWithSession = (options) => (options.client ?? client).get({ url: "/{session}/oid4vp/request", ...options });
|
|
1197
1240
|
var oid4VpControllerGetPostRequestWithSession = (options) => (options.client ?? client).post({ url: "/{session}/oid4vp/request", ...options });
|
|
1241
|
+
var oid4VpControllerGetRequestNoRedirectWithSession = (options) => (options.client ?? client).get({ url: "/{session}/oid4vp/request/no-redirect", ...options });
|
|
1198
1242
|
var oid4VpControllerGetResponse = (options) => (options.client ?? client).post({
|
|
1199
1243
|
url: "/{session}/oid4vp",
|
|
1200
1244
|
...options,
|
|
@@ -1273,6 +1317,26 @@ var presentationManagementControllerUpdateConfiguration = (options) => (options.
|
|
|
1273
1317
|
...options.headers
|
|
1274
1318
|
}
|
|
1275
1319
|
});
|
|
1320
|
+
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1321
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1322
|
+
url: "/cache/stats",
|
|
1323
|
+
...options
|
|
1324
|
+
});
|
|
1325
|
+
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1326
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1327
|
+
url: "/cache",
|
|
1328
|
+
...options
|
|
1329
|
+
});
|
|
1330
|
+
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1331
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1332
|
+
url: "/cache/trust-list",
|
|
1333
|
+
...options
|
|
1334
|
+
});
|
|
1335
|
+
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1336
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1337
|
+
url: "/cache/status-list",
|
|
1338
|
+
...options
|
|
1339
|
+
});
|
|
1276
1340
|
var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
|
|
1277
1341
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1278
1342
|
url: "/trust-list",
|
|
@@ -1343,6 +1407,6 @@ var storageControllerUpload = (options) => (options.client ?? client).post({
|
|
|
1343
1407
|
});
|
|
1344
1408
|
var storageControllerDownload = (options) => (options.client ?? client).get({ url: "/storage/{key}", ...options });
|
|
1345
1409
|
|
|
1346
|
-
export { appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, healthControllerCheck, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };
|
|
1410
|
+
export { appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, healthControllerCheck, interactiveAuthorizationControllerCompleteWebAuth, interactiveAuthorizationControllerInteractiveAuthorization, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerDeferredCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestNoRedirectWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };
|
|
1347
1411
|
//# sourceMappingURL=index.mjs.map
|
|
1348
1412
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { S as Session } from './types.gen-
|
|
2
|
-
export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerMainData, c as AppControllerMainResponses, d as AttestationBasedPolicy, e as AuthControllerGetGlobalJwksData, f as AuthControllerGetGlobalJwksResponses, g as AuthControllerGetOAuth2TokenData, h as AuthControllerGetOAuth2TokenErrors, i as AuthControllerGetOAuth2TokenResponse, j as AuthControllerGetOAuth2TokenResponses, k as AuthControllerGetOidcDiscoveryData, l as AuthControllerGetOidcDiscoveryResponses, m as AuthenticationMethodAuth, n as AuthenticationMethodNone, o as AuthenticationMethodPresentation, p as AuthenticationUrlConfig, q as AuthorizationResponse, r as AuthorizeControllerAuthorizationChallengeEndpointData, s as AuthorizeControllerAuthorizationChallengeEndpointResponses, t as AuthorizeControllerAuthorizeData, u as AuthorizeControllerAuthorizeResponses, v as AuthorizeControllerParData, w as AuthorizeControllerParResponse, x as AuthorizeControllerParResponses, y as AuthorizeControllerTokenData, z as AuthorizeControllerTokenResponse, B as AuthorizeControllerTokenResponses, C as AuthorizeQueries, D as CertControllerAddCertificateData, E as CertControllerAddCertificateResponse, F as CertControllerAddCertificateResponses, G as CertControllerDeleteCertificateData, H as CertControllerDeleteCertificateResponses, I as CertControllerExportConfigData, J as CertControllerExportConfigResponse, K as CertControllerExportConfigResponses, L as CertControllerGetCertificateData, M as CertControllerGetCertificateResponse, N as CertControllerGetCertificateResponses, O as CertControllerGetCertificatesData, P as CertControllerGetCertificatesResponse, Q as CertControllerGetCertificatesResponses, R as CertControllerUpdateCertificateData, T as CertControllerUpdateCertificateResponses, U as CertEntity, V as CertImportDto, W as CertResponseDto, X as CertUpdateDto, Y as CertUsageEntity, Z as Claim, _ as ClaimsQuery, $ as ClientControllerCreateClientData, a0 as ClientControllerCreateClientResponse, a1 as ClientControllerCreateClientResponses, a2 as ClientControllerDeleteClientData, a3 as ClientControllerDeleteClientResponses, a4 as ClientControllerGetClientData, a5 as ClientControllerGetClientResponse, a6 as ClientControllerGetClientResponses, a7 as ClientControllerGetClientSecretData, a8 as ClientControllerGetClientSecretResponse, a9 as ClientControllerGetClientSecretResponses, aa as ClientControllerGetClientsData, ab as ClientControllerGetClientsResponse, ac as ClientControllerGetClientsResponses, ad as ClientControllerUpdateClientData, ae as ClientControllerUpdateClientResponse, af as ClientControllerUpdateClientResponses, ag as ClientCredentialsDto, ah as ClientEntity, ai as ClientOptions, aj as ClientSecretResponseDto, ak as CreateAccessCertificateDto, al as CreateClientDto, am as CreateRegistrarConfigDto, an as CreateStatusListDto, ao as CreateTenantDto, ap as CredentialConfig, aq as CredentialConfigControllerDeleteIssuanceConfigurationData, ar as CredentialConfigControllerDeleteIssuanceConfigurationResponses, as as CredentialConfigControllerGetConfigByIdData, at as CredentialConfigControllerGetConfigByIdResponse, au as CredentialConfigControllerGetConfigByIdResponses, av as CredentialConfigControllerGetConfigsData, aw as CredentialConfigControllerGetConfigsResponse, ax as CredentialConfigControllerGetConfigsResponses, ay as CredentialConfigControllerStoreCredentialConfigurationData, az as CredentialConfigControllerStoreCredentialConfigurationResponse, aA as CredentialConfigControllerStoreCredentialConfigurationResponses, aB as CredentialConfigControllerUpdateCredentialConfigurationData, aC as CredentialConfigControllerUpdateCredentialConfigurationResponse, aD as CredentialConfigControllerUpdateCredentialConfigurationResponses, aE as CredentialConfigCreate, aF as CredentialConfigUpdate, aG as CredentialOfferControllerGetOfferData, aH as CredentialOfferControllerGetOfferResponse, aI as CredentialOfferControllerGetOfferResponses, aJ as CredentialQuery, aK as CredentialSetQuery, aL as Dcql, aM as Display, aN as DisplayImage, aO as DisplayInfo, aP as DisplayLogo, aQ as EcPublic, aR as EmbeddedDisclosurePolicy, aS as FileUploadDto, aT as HealthControllerCheckData, aU as HealthControllerCheckError, aV as HealthControllerCheckErrors, aW as HealthControllerCheckResponse, aX as HealthControllerCheckResponses, aY as ImportTenantDto, aZ as IssuanceConfig, a_ as IssuanceConfigControllerGetIssuanceConfigurationsData, a$ as IssuanceConfigControllerGetIssuanceConfigurationsResponse, b0 as IssuanceConfigControllerGetIssuanceConfigurationsResponses, b1 as IssuanceConfigControllerStoreIssuanceConfigurationData, b2 as IssuanceConfigControllerStoreIssuanceConfigurationResponse, b3 as IssuanceConfigControllerStoreIssuanceConfigurationResponses, b4 as IssuanceDto, b5 as IssuerMetadataCredentialConfig, b6 as JwksResponseDto, b7 as Key, b8 as KeyControllerAddKeyData, b9 as KeyControllerAddKeyResponses, ba as KeyControllerDeleteKeyData, bb as KeyControllerDeleteKeyResponses, bc as KeyControllerGetKeyData, bd as KeyControllerGetKeyResponse, be as KeyControllerGetKeyResponses, bf as KeyControllerGetKeysData, bg as KeyControllerGetKeysResponse, bh as KeyControllerGetKeysResponses, bi as KeyControllerUpdateKeyData, bj as KeyControllerUpdateKeyResponses, bk as KeyEntity, bl as KeyImportDto, bm as NoneTrustPolicy, bn as NotificationRequestDto, bo as OfferRequestDto, bp as OfferResponse, bq as Oid4VciControllerCredentialData, br as Oid4VciControllerCredentialResponses, bs as Oid4VciControllerNonceData, bt as Oid4VciControllerNonceResponses, bu as Oid4VciControllerNotificationsData, bv as Oid4VciControllerNotificationsResponses, bw as Oid4VciMetadataControllerVctData, bx as Oid4VciMetadataControllerVctResponse, by as Oid4VciMetadataControllerVctResponses, bz as Oid4VpControllerGetPostRequestWithSessionData, bA as Oid4VpControllerGetPostRequestWithSessionResponse, bB as Oid4VpControllerGetPostRequestWithSessionResponses, bC as Oid4VpControllerGetRequestWithSessionData, bD as Oid4VpControllerGetRequestWithSessionResponse, bE as Oid4VpControllerGetRequestWithSessionResponses, bF as Oid4VpControllerGetResponseData, bG as Oid4VpControllerGetResponseResponse, bH as Oid4VpControllerGetResponseResponses, bI as ParResponseDto, bJ as PolicyCredential, bK as PresentationAttachment, bL as PresentationConfig, bM as PresentationConfigCreateDto, bN as PresentationConfigUpdateDto, bO as PresentationDuringIssuanceConfig, bP as PresentationManagementControllerConfigurationData, bQ as PresentationManagementControllerConfigurationResponse, bR as PresentationManagementControllerConfigurationResponses, bS as PresentationManagementControllerDeleteConfigurationData, bT as PresentationManagementControllerDeleteConfigurationResponses, bU as PresentationManagementControllerGetConfigurationData, bV as PresentationManagementControllerGetConfigurationResponse, bW as PresentationManagementControllerGetConfigurationResponses, bX as PresentationManagementControllerStorePresentationConfigData, bY as PresentationManagementControllerStorePresentationConfigResponse, bZ as PresentationManagementControllerStorePresentationConfigResponses, b_ as PresentationManagementControllerUpdateConfigurationData, b$ as PresentationManagementControllerUpdateConfigurationResponse, c0 as PresentationManagementControllerUpdateConfigurationResponses, c1 as PresentationRequest, c2 as PrometheusControllerIndexData, c3 as PrometheusControllerIndexResponses, c4 as RegistrarConfigEntity, c5 as RegistrarControllerCreateAccessCertificateData, c6 as RegistrarControllerCreateAccessCertificateErrors, c7 as RegistrarControllerCreateAccessCertificateResponse, c8 as RegistrarControllerCreateAccessCertificateResponses, c9 as RegistrarControllerCreateConfigData, ca as RegistrarControllerCreateConfigErrors, cb as RegistrarControllerCreateConfigResponse, cc as RegistrarControllerCreateConfigResponses, cd as RegistrarControllerDeleteConfigData, ce as RegistrarControllerDeleteConfigResponse, cf as RegistrarControllerDeleteConfigResponses, cg as RegistrarControllerGetConfigData, ch as RegistrarControllerGetConfigErrors, ci as RegistrarControllerGetConfigResponse, cj as RegistrarControllerGetConfigResponses, ck as RegistrarControllerUpdateConfigData, cl as RegistrarControllerUpdateConfigErrors, cm as RegistrarControllerUpdateConfigResponse, cn as RegistrarControllerUpdateConfigResponses, co as RegistrationCertificateRequest, cp as RoleDto, cq as RootOfTrustPolicy, cr as SchemaResponse, cs as SessionConfigControllerGetConfigData, ct as SessionConfigControllerGetConfigResponse, cu as SessionConfigControllerGetConfigResponses, cv as SessionConfigControllerResetConfigData, cw as SessionConfigControllerResetConfigResponses, cx as SessionConfigControllerUpdateConfigData, cy as SessionConfigControllerUpdateConfigResponse, cz as SessionConfigControllerUpdateConfigResponses, cA as SessionControllerDeleteSessionData, cB as SessionControllerDeleteSessionResponses, cC as SessionControllerGetAllSessionsData, cD as SessionControllerGetAllSessionsResponse, cE as SessionControllerGetAllSessionsResponses, cF as SessionControllerGetSessionData, cG as SessionControllerGetSessionResponse, cH as SessionControllerGetSessionResponses, cI as SessionControllerRevokeAllData, cJ as SessionControllerRevokeAllResponses, cK as SessionStorageConfig, cL as StatusListAggregationDto, cM as StatusListConfig, cN as StatusListConfigControllerGetConfigData, cO as StatusListConfigControllerGetConfigResponse, cP as StatusListConfigControllerGetConfigResponses, cQ as StatusListConfigControllerResetConfigData, cR as StatusListConfigControllerResetConfigResponse, cS as StatusListConfigControllerResetConfigResponses, cT as StatusListConfigControllerUpdateConfigData, cU as StatusListConfigControllerUpdateConfigResponse, cV as StatusListConfigControllerUpdateConfigResponses, cW as StatusListControllerGetListData, cX as StatusListControllerGetListResponse, cY as StatusListControllerGetListResponses, cZ as StatusListControllerGetStatusListAggregationData, c_ as StatusListControllerGetStatusListAggregationResponse, c$ as StatusListControllerGetStatusListAggregationResponses, d0 as StatusListImportDto, d1 as StatusListManagementControllerCreateListData, d2 as StatusListManagementControllerCreateListResponse, d3 as StatusListManagementControllerCreateListResponses, d4 as StatusListManagementControllerDeleteListData, d5 as StatusListManagementControllerDeleteListResponse, d6 as StatusListManagementControllerDeleteListResponses, d7 as StatusListManagementControllerGetListData, d8 as StatusListManagementControllerGetListResponse, d9 as StatusListManagementControllerGetListResponses, da as StatusListManagementControllerGetListsData, db as StatusListManagementControllerGetListsResponse, dc as StatusListManagementControllerGetListsResponses, dd as StatusListManagementControllerUpdateListData, de as StatusListManagementControllerUpdateListResponse, df as StatusListManagementControllerUpdateListResponses, dg as StatusListResponseDto, dh as StatusUpdateDto, di as StorageControllerDownloadData, dj as StorageControllerDownloadResponses, dk as StorageControllerUploadData, dl as StorageControllerUploadResponse, dm as StorageControllerUploadResponses, dn as TenantControllerDeleteTenantData, dp as TenantControllerDeleteTenantResponses, dq as TenantControllerGetTenantData, dr as TenantControllerGetTenantResponse, ds as TenantControllerGetTenantResponses, dt as TenantControllerGetTenantsData, du as TenantControllerGetTenantsResponse, dv as TenantControllerGetTenantsResponses, dw as TenantControllerInitTenantData, dx as TenantControllerInitTenantResponses, dy as TenantControllerUpdateTenantData, dz as TenantControllerUpdateTenantResponse, dA as TenantControllerUpdateTenantResponses, dB as TenantEntity, dC as TokenResponse, dD as TransactionData, dE as TrustList, dF as TrustListControllerCreateTrustListData, dG as TrustListControllerCreateTrustListResponse, dH as TrustListControllerCreateTrustListResponses, dI as TrustListControllerDeleteTrustListData, dJ as TrustListControllerDeleteTrustListResponses, dK as TrustListControllerExportTrustListData, dL as TrustListControllerExportTrustListResponse, dM as TrustListControllerExportTrustListResponses, dN as TrustListControllerGetAllTrustListsData, dO as TrustListControllerGetAllTrustListsResponse, dP as TrustListControllerGetAllTrustListsResponses, dQ as TrustListControllerGetTrustListData, dR as TrustListControllerGetTrustListResponse, dS as TrustListControllerGetTrustListResponses, dT as TrustListControllerGetTrustListVersionData, dU as TrustListControllerGetTrustListVersionResponse, dV as TrustListControllerGetTrustListVersionResponses, dW as TrustListControllerGetTrustListVersionsData, dX as TrustListControllerGetTrustListVersionsResponse, dY as TrustListControllerGetTrustListVersionsResponses, dZ as TrustListControllerUpdateTrustListData, d_ as TrustListControllerUpdateTrustListResponse, d$ as TrustListControllerUpdateTrustListResponses, e0 as TrustListCreateDto, e1 as TrustListPublicControllerGetTrustListJwtData, e2 as TrustListPublicControllerGetTrustListJwtResponse, e3 as TrustListPublicControllerGetTrustListJwtResponses, e4 as TrustListVersion, e5 as TrustedAuthorityQuery, e6 as UpdateClientDto, e7 as UpdateKeyDto, e8 as UpdateRegistrarConfigDto, e9 as UpdateSessionConfigDto, ea as UpdateStatusListConfigDto, eb as UpdateStatusListDto, ec as UpdateTenantDto, ed as Vct, ee as VerifierOfferControllerGetOfferData, ef as VerifierOfferControllerGetOfferResponse, eg as VerifierOfferControllerGetOfferResponses, eh as WebHookAuthConfigHeader, ei as WebHookAuthConfigNone, ej as WebhookConfig, ek as WellKnownControllerAuthzMetadata0Data, el as WellKnownControllerAuthzMetadata0Responses, em as WellKnownControllerAuthzMetadata1Data, en as WellKnownControllerAuthzMetadata1Responses, eo as WellKnownControllerGetJwks0Data, ep as WellKnownControllerGetJwks0Response, eq as WellKnownControllerGetJwks0Responses, er as WellKnownControllerGetJwks1Data, es as WellKnownControllerGetJwks1Response, et as WellKnownControllerGetJwks1Responses, eu as WellKnownControllerIssuerMetadata0Data, ev as WellKnownControllerIssuerMetadata0Response, ew as WellKnownControllerIssuerMetadata0Responses, ex as WellKnownControllerIssuerMetadata1Data, ey as WellKnownControllerIssuerMetadata1Response, ez as WellKnownControllerIssuerMetadata1Responses } from './types.gen-KKg4o5Hj.mjs';
|
|
1
|
+
import { S as Session } from './types.gen-M31b0SZB.mjs';
|
|
2
|
+
export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerMainData, c as AppControllerMainResponses, d as AttestationBasedPolicy, e as AuthControllerGetGlobalJwksData, f as AuthControllerGetGlobalJwksResponses, g as AuthControllerGetOAuth2TokenData, h as AuthControllerGetOAuth2TokenErrors, i as AuthControllerGetOAuth2TokenResponse, j as AuthControllerGetOAuth2TokenResponses, k as AuthControllerGetOidcDiscoveryData, l as AuthControllerGetOidcDiscoveryResponses, m as AuthenticationMethodAuth, n as AuthenticationMethodNone, o as AuthenticationMethodPresentation, p as AuthenticationUrlConfig, q as AuthorizationResponse, r as AuthorizeControllerAuthorizationChallengeEndpointData, s as AuthorizeControllerAuthorizationChallengeEndpointResponses, t as AuthorizeControllerAuthorizeData, u as AuthorizeControllerAuthorizeResponses, v as AuthorizeControllerParData, w as AuthorizeControllerParResponse, x as AuthorizeControllerParResponses, y as AuthorizeControllerTokenData, z as AuthorizeControllerTokenResponse, B as AuthorizeControllerTokenResponses, C as AuthorizeQueries, D as CacheControllerClearAllCachesData, E as CacheControllerClearAllCachesResponse, F as CacheControllerClearAllCachesResponses, G as CacheControllerClearStatusListCacheData, H as CacheControllerClearStatusListCacheResponse, I as CacheControllerClearStatusListCacheResponses, J as CacheControllerClearTrustListCacheData, K as CacheControllerClearTrustListCacheResponse, L as CacheControllerClearTrustListCacheResponses, M as CacheControllerGetStatsData, N as CacheControllerGetStatsResponses, O as CertControllerAddCertificateData, P as CertControllerAddCertificateResponse, Q as CertControllerAddCertificateResponses, R as CertControllerDeleteCertificateData, T as CertControllerDeleteCertificateResponses, U as CertControllerExportConfigData, V as CertControllerExportConfigResponse, W as CertControllerExportConfigResponses, X as CertControllerGetCertificateData, Y as CertControllerGetCertificateResponse, Z as CertControllerGetCertificateResponses, _ as CertControllerGetCertificatesData, $ as CertControllerGetCertificatesResponse, a0 as CertControllerGetCertificatesResponses, a1 as CertControllerUpdateCertificateData, a2 as CertControllerUpdateCertificateResponses, a3 as CertEntity, a4 as CertImportDto, a5 as CertResponseDto, a6 as CertUpdateDto, a7 as CertUsageEntity, a8 as Claim, a9 as ClaimsQuery, aa as ClientControllerCreateClientData, ab as ClientControllerCreateClientResponse, ac as ClientControllerCreateClientResponses, ad as ClientControllerDeleteClientData, ae as ClientControllerDeleteClientResponses, af as ClientControllerGetClientData, ag as ClientControllerGetClientResponse, ah as ClientControllerGetClientResponses, ai as ClientControllerGetClientSecretData, aj as ClientControllerGetClientSecretResponse, ak as ClientControllerGetClientSecretResponses, al as ClientControllerGetClientsData, am as ClientControllerGetClientsResponse, an as ClientControllerGetClientsResponses, ao as ClientControllerRotateClientSecretData, ap as ClientControllerRotateClientSecretResponse, aq as ClientControllerRotateClientSecretResponses, ar as ClientControllerUpdateClientData, as as ClientControllerUpdateClientResponse, at as ClientControllerUpdateClientResponses, au as ClientCredentialsDto, av as ClientEntity, aw as ClientOptions, ax as ClientSecretResponseDto, ay as CompleteDeferredDto, az as CreateAccessCertificateDto, aA as CreateClientDto, aB as CreateRegistrarConfigDto, aC as CreateStatusListDto, aD as CreateTenantDto, aE as CredentialConfig, aF as CredentialConfigControllerDeleteIssuanceConfigurationData, aG as CredentialConfigControllerDeleteIssuanceConfigurationResponses, aH as CredentialConfigControllerGetConfigByIdData, aI as CredentialConfigControllerGetConfigByIdResponse, aJ as CredentialConfigControllerGetConfigByIdResponses, aK as CredentialConfigControllerGetConfigsData, aL as CredentialConfigControllerGetConfigsResponse, aM as CredentialConfigControllerGetConfigsResponses, aN as CredentialConfigControllerStoreCredentialConfigurationData, aO as CredentialConfigControllerStoreCredentialConfigurationResponse, aP as CredentialConfigControllerStoreCredentialConfigurationResponses, aQ as CredentialConfigControllerUpdateCredentialConfigurationData, aR as CredentialConfigControllerUpdateCredentialConfigurationResponse, aS as CredentialConfigControllerUpdateCredentialConfigurationResponses, aT as CredentialConfigCreate, aU as CredentialConfigUpdate, aV as CredentialOfferControllerGetOfferData, aW as CredentialOfferControllerGetOfferResponse, aX as CredentialOfferControllerGetOfferResponses, aY as CredentialQuery, aZ as CredentialSetQuery, a_ as Dcql, a$ as DeferredControllerCompleteDeferredData, b0 as DeferredControllerCompleteDeferredErrors, b1 as DeferredControllerCompleteDeferredResponse, b2 as DeferredControllerCompleteDeferredResponses, b3 as DeferredControllerFailDeferredData, b4 as DeferredControllerFailDeferredErrors, b5 as DeferredControllerFailDeferredResponse, b6 as DeferredControllerFailDeferredResponses, b7 as DeferredCredentialRequestDto, b8 as DeferredOperationResponse, b9 as Display, ba as DisplayImage, bb as DisplayInfo, bc as DisplayLogo, bd as EcPublic, be as EmbeddedDisclosurePolicy, bf as FailDeferredDto, bg as FileUploadDto, bh as HealthControllerCheckData, bi as HealthControllerCheckError, bj as HealthControllerCheckErrors, bk as HealthControllerCheckResponse, bl as HealthControllerCheckResponses, bm as IaeActionOpenid4VpPresentation, bn as IaeActionRedirectToWeb, bo as ImportTenantDto, bp as InteractiveAuthorizationCodeResponseDto, bq as InteractiveAuthorizationControllerCompleteWebAuthData, br as InteractiveAuthorizationControllerCompleteWebAuthErrors, bs as InteractiveAuthorizationControllerCompleteWebAuthResponses, bt as InteractiveAuthorizationControllerInteractiveAuthorizationData, bu as InteractiveAuthorizationControllerInteractiveAuthorizationError, bv as InteractiveAuthorizationControllerInteractiveAuthorizationErrors, bw as InteractiveAuthorizationControllerInteractiveAuthorizationResponse, bx as InteractiveAuthorizationControllerInteractiveAuthorizationResponses, by as InteractiveAuthorizationErrorResponseDto, bz as InteractiveAuthorizationRequestDto, bA as IssuanceConfig, bB as IssuanceConfigControllerGetIssuanceConfigurationsData, bC as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bD as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bE as IssuanceConfigControllerStoreIssuanceConfigurationData, bF as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bG as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bH as IssuanceDto, bI as IssuerMetadataCredentialConfig, bJ as JwksResponseDto, bK as Key, bL as KeyControllerAddKeyData, bM as KeyControllerAddKeyResponses, bN as KeyControllerDeleteKeyData, bO as KeyControllerDeleteKeyResponses, bP as KeyControllerGetKeyData, bQ as KeyControllerGetKeyResponse, bR as KeyControllerGetKeyResponses, bS as KeyControllerGetKeysData, bT as KeyControllerGetKeysResponse, bU as KeyControllerGetKeysResponses, bV as KeyControllerUpdateKeyData, bW as KeyControllerUpdateKeyResponses, bX as KeyEntity, bY as KeyImportDto, bZ as NoneTrustPolicy, b_ as NotificationRequestDto, b$ as OfferRequestDto, c0 as OfferResponse, c1 as Oid4VciControllerCredentialData, c2 as Oid4VciControllerCredentialResponse, c3 as Oid4VciControllerCredentialResponses, c4 as Oid4VciControllerDeferredCredentialData, c5 as Oid4VciControllerDeferredCredentialResponses, c6 as Oid4VciControllerNonceData, c7 as Oid4VciControllerNonceResponses, c8 as Oid4VciControllerNotificationsData, c9 as Oid4VciControllerNotificationsResponses, ca as Oid4VciMetadataControllerVctData, cb as Oid4VciMetadataControllerVctResponse, cc as Oid4VciMetadataControllerVctResponses, cd as Oid4VpControllerGetPostRequestWithSessionData, ce as Oid4VpControllerGetPostRequestWithSessionResponse, cf as Oid4VpControllerGetPostRequestWithSessionResponses, cg as Oid4VpControllerGetRequestNoRedirectWithSessionData, ch as Oid4VpControllerGetRequestNoRedirectWithSessionResponse, ci as Oid4VpControllerGetRequestNoRedirectWithSessionResponses, cj as Oid4VpControllerGetRequestWithSessionData, ck as Oid4VpControllerGetRequestWithSessionResponse, cl as Oid4VpControllerGetRequestWithSessionResponses, cm as Oid4VpControllerGetResponseData, cn as Oid4VpControllerGetResponseResponse, co as Oid4VpControllerGetResponseResponses, cp as ParResponseDto, cq as PolicyCredential, cr as PresentationAttachment, cs as PresentationConfig, ct as PresentationConfigCreateDto, cu as PresentationConfigUpdateDto, cv as PresentationDuringIssuanceConfig, cw as PresentationManagementControllerConfigurationData, cx as PresentationManagementControllerConfigurationResponse, cy as PresentationManagementControllerConfigurationResponses, cz as PresentationManagementControllerDeleteConfigurationData, cA as PresentationManagementControllerDeleteConfigurationResponses, cB as PresentationManagementControllerGetConfigurationData, cC as PresentationManagementControllerGetConfigurationResponse, cD as PresentationManagementControllerGetConfigurationResponses, cE as PresentationManagementControllerStorePresentationConfigData, cF as PresentationManagementControllerStorePresentationConfigResponse, cG as PresentationManagementControllerStorePresentationConfigResponses, cH as PresentationManagementControllerUpdateConfigurationData, cI as PresentationManagementControllerUpdateConfigurationResponse, cJ as PresentationManagementControllerUpdateConfigurationResponses, cK as PresentationRequest, cL as PrometheusControllerIndexData, cM as PrometheusControllerIndexResponses, cN as RegistrarConfigEntity, cO as RegistrarControllerCreateAccessCertificateData, cP as RegistrarControllerCreateAccessCertificateErrors, cQ as RegistrarControllerCreateAccessCertificateResponse, cR as RegistrarControllerCreateAccessCertificateResponses, cS as RegistrarControllerCreateConfigData, cT as RegistrarControllerCreateConfigErrors, cU as RegistrarControllerCreateConfigResponse, cV as RegistrarControllerCreateConfigResponses, cW as RegistrarControllerDeleteConfigData, cX as RegistrarControllerDeleteConfigResponse, cY as RegistrarControllerDeleteConfigResponses, cZ as RegistrarControllerGetConfigData, c_ as RegistrarControllerGetConfigErrors, c$ as RegistrarControllerGetConfigResponse, d0 as RegistrarControllerGetConfigResponses, d1 as RegistrarControllerUpdateConfigData, d2 as RegistrarControllerUpdateConfigErrors, d3 as RegistrarControllerUpdateConfigResponse, d4 as RegistrarControllerUpdateConfigResponses, d5 as RegistrationCertificateRequest, d6 as RoleDto, d7 as RootOfTrustPolicy, d8 as SchemaResponse, d9 as SessionConfigControllerGetConfigData, da as SessionConfigControllerGetConfigResponse, db as SessionConfigControllerGetConfigResponses, dc as SessionConfigControllerResetConfigData, dd as SessionConfigControllerResetConfigResponses, de as SessionConfigControllerUpdateConfigData, df as SessionConfigControllerUpdateConfigResponse, dg as SessionConfigControllerUpdateConfigResponses, dh as SessionControllerDeleteSessionData, di as SessionControllerDeleteSessionResponses, dj as SessionControllerGetAllSessionsData, dk as SessionControllerGetAllSessionsResponse, dl as SessionControllerGetAllSessionsResponses, dm as SessionControllerGetSessionData, dn as SessionControllerGetSessionResponse, dp as SessionControllerGetSessionResponses, dq as SessionControllerRevokeAllData, dr as SessionControllerRevokeAllResponses, ds as SessionStorageConfig, dt as StatusListAggregationDto, du as StatusListConfig, dv as StatusListConfigControllerGetConfigData, dw as StatusListConfigControllerGetConfigResponse, dx as StatusListConfigControllerGetConfigResponses, dy as StatusListConfigControllerResetConfigData, dz as StatusListConfigControllerResetConfigResponse, dA as StatusListConfigControllerResetConfigResponses, dB as StatusListConfigControllerUpdateConfigData, dC as StatusListConfigControllerUpdateConfigResponse, dD as StatusListConfigControllerUpdateConfigResponses, dE as StatusListControllerGetListData, dF as StatusListControllerGetListResponse, dG as StatusListControllerGetListResponses, dH as StatusListControllerGetStatusListAggregationData, dI as StatusListControllerGetStatusListAggregationResponse, dJ as StatusListControllerGetStatusListAggregationResponses, dK as StatusListImportDto, dL as StatusListManagementControllerCreateListData, dM as StatusListManagementControllerCreateListResponse, dN as StatusListManagementControllerCreateListResponses, dO as StatusListManagementControllerDeleteListData, dP as StatusListManagementControllerDeleteListResponse, dQ as StatusListManagementControllerDeleteListResponses, dR as StatusListManagementControllerGetListData, dS as StatusListManagementControllerGetListResponse, dT as StatusListManagementControllerGetListResponses, dU as StatusListManagementControllerGetListsData, dV as StatusListManagementControllerGetListsResponse, dW as StatusListManagementControllerGetListsResponses, dX as StatusListManagementControllerUpdateListData, dY as StatusListManagementControllerUpdateListResponse, dZ as StatusListManagementControllerUpdateListResponses, d_ as StatusListResponseDto, d$ as StatusUpdateDto, e0 as StorageControllerDownloadData, e1 as StorageControllerDownloadResponses, e2 as StorageControllerUploadData, e3 as StorageControllerUploadResponse, e4 as StorageControllerUploadResponses, e5 as TenantControllerDeleteTenantData, e6 as TenantControllerDeleteTenantResponses, e7 as TenantControllerGetTenantData, e8 as TenantControllerGetTenantResponse, e9 as TenantControllerGetTenantResponses, ea as TenantControllerGetTenantsData, eb as TenantControllerGetTenantsResponse, ec as TenantControllerGetTenantsResponses, ed as TenantControllerInitTenantData, ee as TenantControllerInitTenantResponse, ef as TenantControllerInitTenantResponses, eg as TenantControllerUpdateTenantData, eh as TenantControllerUpdateTenantResponse, ei as TenantControllerUpdateTenantResponses, ej as TenantEntity, ek as TokenResponse, el as TransactionData, em as TrustList, en as TrustListControllerCreateTrustListData, eo as TrustListControllerCreateTrustListResponse, ep as TrustListControllerCreateTrustListResponses, eq as TrustListControllerDeleteTrustListData, er as TrustListControllerDeleteTrustListResponses, es as TrustListControllerExportTrustListData, et as TrustListControllerExportTrustListResponse, eu as TrustListControllerExportTrustListResponses, ev as TrustListControllerGetAllTrustListsData, ew as TrustListControllerGetAllTrustListsResponse, ex as TrustListControllerGetAllTrustListsResponses, ey as TrustListControllerGetTrustListData, ez as TrustListControllerGetTrustListResponse, eA as TrustListControllerGetTrustListResponses, eB as TrustListControllerGetTrustListVersionData, eC as TrustListControllerGetTrustListVersionResponse, eD as TrustListControllerGetTrustListVersionResponses, eE as TrustListControllerGetTrustListVersionsData, eF as TrustListControllerGetTrustListVersionsResponse, eG as TrustListControllerGetTrustListVersionsResponses, eH as TrustListControllerUpdateTrustListData, eI as TrustListControllerUpdateTrustListResponse, eJ as TrustListControllerUpdateTrustListResponses, eK as TrustListCreateDto, eL as TrustListPublicControllerGetTrustListJwtData, eM as TrustListPublicControllerGetTrustListJwtResponse, eN as TrustListPublicControllerGetTrustListJwtResponses, eO as TrustListVersion, eP as TrustedAuthorityQuery, eQ as UpdateClientDto, eR as UpdateKeyDto, eS as UpdateRegistrarConfigDto, eT as UpdateSessionConfigDto, eU as UpdateStatusListConfigDto, eV as UpdateStatusListDto, eW as UpdateTenantDto, eX as Vct, eY as VerifierOfferControllerGetOfferData, eZ as VerifierOfferControllerGetOfferResponse, e_ as VerifierOfferControllerGetOfferResponses, e$ as WebHookAuthConfigHeader, f0 as WebHookAuthConfigNone, f1 as WebhookConfig, f2 as WellKnownControllerAuthzMetadata0Data, f3 as WellKnownControllerAuthzMetadata0Responses, f4 as WellKnownControllerAuthzMetadata1Data, f5 as WellKnownControllerAuthzMetadata1Responses, f6 as WellKnownControllerGetJwks0Data, f7 as WellKnownControllerGetJwks0Response, f8 as WellKnownControllerGetJwks0Responses, f9 as WellKnownControllerGetJwks1Data, fa as WellKnownControllerGetJwks1Response, fb as WellKnownControllerGetJwks1Responses, fc as WellKnownControllerIssuerMetadata0Data, fd as WellKnownControllerIssuerMetadata0Response, fe as WellKnownControllerIssuerMetadata0Responses, ff as WellKnownControllerIssuerMetadata1Data, fg as WellKnownControllerIssuerMetadata1Response, fh as WellKnownControllerIssuerMetadata1Responses } from './types.gen-M31b0SZB.mjs';
|
|
3
3
|
export { client } from './api/client.gen.mjs';
|
|
4
|
-
export { Options, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, healthControllerCheck, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 } from './api/index.mjs';
|
|
4
|
+
export { Options, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, healthControllerCheck, interactiveAuthorizationControllerCompleteWebAuth, interactiveAuthorizationControllerInteractiveAuthorization, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerDeferredCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestNoRedirectWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 } from './api/index.mjs';
|
|
5
5
|
import './types.gen-DDunhhsd.mjs';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -72,8 +72,8 @@ interface IssuanceOfferOptions {
|
|
|
72
72
|
credentialConfigurationIds: string[];
|
|
73
73
|
/** Claims to include in the credentials (keyed by config ID) */
|
|
74
74
|
claims?: Record<string, Record<string, unknown>>;
|
|
75
|
-
/** Response type: '
|
|
76
|
-
responseType?: '
|
|
75
|
+
/** Response type: 'uri' returns the offer URI, 'dc-api' for Digital Credentials API */
|
|
76
|
+
responseType?: 'uri' | 'dc-api';
|
|
77
77
|
/** Transaction code for pre-authorized flow */
|
|
78
78
|
txCode?: string;
|
|
79
79
|
/** Flow type (default: 'pre_authorized_code') */
|
|
@@ -85,8 +85,8 @@ interface IssuanceOfferOptions {
|
|
|
85
85
|
interface PresentationRequestOptions {
|
|
86
86
|
/** ID of the presentation configuration */
|
|
87
87
|
configId: string;
|
|
88
|
-
/** Response type: '
|
|
89
|
-
responseType?: '
|
|
88
|
+
/** Response type: 'uri' returns the request URI, 'dc-api' for Digital Credentials API */
|
|
89
|
+
responseType?: 'uri' | 'dc-api';
|
|
90
90
|
/** Optional redirect URI after presentation completes */
|
|
91
91
|
redirectUri?: string;
|
|
92
92
|
}
|
|
@@ -94,9 +94,22 @@ interface PresentationRequestOptions {
|
|
|
94
94
|
* Result of creating an offer or request
|
|
95
95
|
*/
|
|
96
96
|
interface OfferResult {
|
|
97
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* URI for same-device flow.
|
|
99
|
+
* Use when the wallet is on the same device as the browser.
|
|
100
|
+
* For presentation requests: After presentation, the wallet will redirect the user back to the verifier.
|
|
101
|
+
* For issuance offers: The wallet opens and receives the credential.
|
|
102
|
+
*/
|
|
98
103
|
uri: string;
|
|
99
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* URI for cross-device flow (e.g., QR code scanned by another device).
|
|
106
|
+
* Use when the wallet is on a different device than the browser.
|
|
107
|
+
* No redirect happens after presentation - poll the session for status updates.
|
|
108
|
+
*
|
|
109
|
+
* Only available for presentation requests. For issuance, use `uri` for both flows.
|
|
110
|
+
*/
|
|
111
|
+
crossDeviceUri?: string;
|
|
112
|
+
/** Session ID for polling status updates */
|
|
100
113
|
sessionId: string;
|
|
101
114
|
}
|
|
102
115
|
/**
|
|
@@ -123,7 +136,7 @@ interface OfferResult {
|
|
|
123
136
|
* ```
|
|
124
137
|
*/
|
|
125
138
|
declare class EudiploClient {
|
|
126
|
-
private config;
|
|
139
|
+
private readonly config;
|
|
127
140
|
private accessToken?;
|
|
128
141
|
private tokenExpiresAt?;
|
|
129
142
|
private refreshPromise?;
|
|
@@ -155,14 +168,26 @@ declare class EudiploClient {
|
|
|
155
168
|
/**
|
|
156
169
|
* Create a presentation request (for verification).
|
|
157
170
|
*
|
|
158
|
-
*
|
|
171
|
+
* Returns two URIs:
|
|
172
|
+
* - `uri`: For same-device flow (wallet on same device, redirect after completion)
|
|
173
|
+
* - `crossDeviceUri`: For cross-device flow (QR code, no redirect, poll for status)
|
|
174
|
+
*
|
|
175
|
+
* @example Same-device flow (wallet app on user's device)
|
|
159
176
|
* ```typescript
|
|
160
|
-
* // Age verification
|
|
161
177
|
* const { uri, sessionId } = await client.createPresentationRequest({
|
|
162
|
-
* configId: 'age-over-18'
|
|
178
|
+
* configId: 'age-over-18',
|
|
179
|
+
* redirectUri: 'https://example.com/callback'
|
|
163
180
|
* });
|
|
181
|
+
* // Redirect user to uri - wallet will redirect back after completion
|
|
182
|
+
* window.location.href = uri;
|
|
183
|
+
* ```
|
|
164
184
|
*
|
|
165
|
-
*
|
|
185
|
+
* @example Cross-device flow (QR code scanned by separate device)
|
|
186
|
+
* ```typescript
|
|
187
|
+
* const { crossDeviceUri, sessionId } = await client.createPresentationRequest({
|
|
188
|
+
* configId: 'age-over-18'
|
|
189
|
+
* });
|
|
190
|
+
* // Display crossDeviceUri as QR code, then poll for completion
|
|
166
191
|
* const session = await client.waitForSession(sessionId);
|
|
167
192
|
* ```
|
|
168
193
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { S as Session } from './types.gen-
|
|
2
|
-
export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerMainData, c as AppControllerMainResponses, d as AttestationBasedPolicy, e as AuthControllerGetGlobalJwksData, f as AuthControllerGetGlobalJwksResponses, g as AuthControllerGetOAuth2TokenData, h as AuthControllerGetOAuth2TokenErrors, i as AuthControllerGetOAuth2TokenResponse, j as AuthControllerGetOAuth2TokenResponses, k as AuthControllerGetOidcDiscoveryData, l as AuthControllerGetOidcDiscoveryResponses, m as AuthenticationMethodAuth, n as AuthenticationMethodNone, o as AuthenticationMethodPresentation, p as AuthenticationUrlConfig, q as AuthorizationResponse, r as AuthorizeControllerAuthorizationChallengeEndpointData, s as AuthorizeControllerAuthorizationChallengeEndpointResponses, t as AuthorizeControllerAuthorizeData, u as AuthorizeControllerAuthorizeResponses, v as AuthorizeControllerParData, w as AuthorizeControllerParResponse, x as AuthorizeControllerParResponses, y as AuthorizeControllerTokenData, z as AuthorizeControllerTokenResponse, B as AuthorizeControllerTokenResponses, C as AuthorizeQueries, D as CertControllerAddCertificateData, E as CertControllerAddCertificateResponse, F as CertControllerAddCertificateResponses, G as CertControllerDeleteCertificateData, H as CertControllerDeleteCertificateResponses, I as CertControllerExportConfigData, J as CertControllerExportConfigResponse, K as CertControllerExportConfigResponses, L as CertControllerGetCertificateData, M as CertControllerGetCertificateResponse, N as CertControllerGetCertificateResponses, O as CertControllerGetCertificatesData, P as CertControllerGetCertificatesResponse, Q as CertControllerGetCertificatesResponses, R as CertControllerUpdateCertificateData, T as CertControllerUpdateCertificateResponses, U as CertEntity, V as CertImportDto, W as CertResponseDto, X as CertUpdateDto, Y as CertUsageEntity, Z as Claim, _ as ClaimsQuery, $ as ClientControllerCreateClientData, a0 as ClientControllerCreateClientResponse, a1 as ClientControllerCreateClientResponses, a2 as ClientControllerDeleteClientData, a3 as ClientControllerDeleteClientResponses, a4 as ClientControllerGetClientData, a5 as ClientControllerGetClientResponse, a6 as ClientControllerGetClientResponses, a7 as ClientControllerGetClientSecretData, a8 as ClientControllerGetClientSecretResponse, a9 as ClientControllerGetClientSecretResponses, aa as ClientControllerGetClientsData, ab as ClientControllerGetClientsResponse, ac as ClientControllerGetClientsResponses, ad as ClientControllerUpdateClientData, ae as ClientControllerUpdateClientResponse, af as ClientControllerUpdateClientResponses, ag as ClientCredentialsDto, ah as ClientEntity, ai as ClientOptions, aj as ClientSecretResponseDto, ak as CreateAccessCertificateDto, al as CreateClientDto, am as CreateRegistrarConfigDto, an as CreateStatusListDto, ao as CreateTenantDto, ap as CredentialConfig, aq as CredentialConfigControllerDeleteIssuanceConfigurationData, ar as CredentialConfigControllerDeleteIssuanceConfigurationResponses, as as CredentialConfigControllerGetConfigByIdData, at as CredentialConfigControllerGetConfigByIdResponse, au as CredentialConfigControllerGetConfigByIdResponses, av as CredentialConfigControllerGetConfigsData, aw as CredentialConfigControllerGetConfigsResponse, ax as CredentialConfigControllerGetConfigsResponses, ay as CredentialConfigControllerStoreCredentialConfigurationData, az as CredentialConfigControllerStoreCredentialConfigurationResponse, aA as CredentialConfigControllerStoreCredentialConfigurationResponses, aB as CredentialConfigControllerUpdateCredentialConfigurationData, aC as CredentialConfigControllerUpdateCredentialConfigurationResponse, aD as CredentialConfigControllerUpdateCredentialConfigurationResponses, aE as CredentialConfigCreate, aF as CredentialConfigUpdate, aG as CredentialOfferControllerGetOfferData, aH as CredentialOfferControllerGetOfferResponse, aI as CredentialOfferControllerGetOfferResponses, aJ as CredentialQuery, aK as CredentialSetQuery, aL as Dcql, aM as Display, aN as DisplayImage, aO as DisplayInfo, aP as DisplayLogo, aQ as EcPublic, aR as EmbeddedDisclosurePolicy, aS as FileUploadDto, aT as HealthControllerCheckData, aU as HealthControllerCheckError, aV as HealthControllerCheckErrors, aW as HealthControllerCheckResponse, aX as HealthControllerCheckResponses, aY as ImportTenantDto, aZ as IssuanceConfig, a_ as IssuanceConfigControllerGetIssuanceConfigurationsData, a$ as IssuanceConfigControllerGetIssuanceConfigurationsResponse, b0 as IssuanceConfigControllerGetIssuanceConfigurationsResponses, b1 as IssuanceConfigControllerStoreIssuanceConfigurationData, b2 as IssuanceConfigControllerStoreIssuanceConfigurationResponse, b3 as IssuanceConfigControllerStoreIssuanceConfigurationResponses, b4 as IssuanceDto, b5 as IssuerMetadataCredentialConfig, b6 as JwksResponseDto, b7 as Key, b8 as KeyControllerAddKeyData, b9 as KeyControllerAddKeyResponses, ba as KeyControllerDeleteKeyData, bb as KeyControllerDeleteKeyResponses, bc as KeyControllerGetKeyData, bd as KeyControllerGetKeyResponse, be as KeyControllerGetKeyResponses, bf as KeyControllerGetKeysData, bg as KeyControllerGetKeysResponse, bh as KeyControllerGetKeysResponses, bi as KeyControllerUpdateKeyData, bj as KeyControllerUpdateKeyResponses, bk as KeyEntity, bl as KeyImportDto, bm as NoneTrustPolicy, bn as NotificationRequestDto, bo as OfferRequestDto, bp as OfferResponse, bq as Oid4VciControllerCredentialData, br as Oid4VciControllerCredentialResponses, bs as Oid4VciControllerNonceData, bt as Oid4VciControllerNonceResponses, bu as Oid4VciControllerNotificationsData, bv as Oid4VciControllerNotificationsResponses, bw as Oid4VciMetadataControllerVctData, bx as Oid4VciMetadataControllerVctResponse, by as Oid4VciMetadataControllerVctResponses, bz as Oid4VpControllerGetPostRequestWithSessionData, bA as Oid4VpControllerGetPostRequestWithSessionResponse, bB as Oid4VpControllerGetPostRequestWithSessionResponses, bC as Oid4VpControllerGetRequestWithSessionData, bD as Oid4VpControllerGetRequestWithSessionResponse, bE as Oid4VpControllerGetRequestWithSessionResponses, bF as Oid4VpControllerGetResponseData, bG as Oid4VpControllerGetResponseResponse, bH as Oid4VpControllerGetResponseResponses, bI as ParResponseDto, bJ as PolicyCredential, bK as PresentationAttachment, bL as PresentationConfig, bM as PresentationConfigCreateDto, bN as PresentationConfigUpdateDto, bO as PresentationDuringIssuanceConfig, bP as PresentationManagementControllerConfigurationData, bQ as PresentationManagementControllerConfigurationResponse, bR as PresentationManagementControllerConfigurationResponses, bS as PresentationManagementControllerDeleteConfigurationData, bT as PresentationManagementControllerDeleteConfigurationResponses, bU as PresentationManagementControllerGetConfigurationData, bV as PresentationManagementControllerGetConfigurationResponse, bW as PresentationManagementControllerGetConfigurationResponses, bX as PresentationManagementControllerStorePresentationConfigData, bY as PresentationManagementControllerStorePresentationConfigResponse, bZ as PresentationManagementControllerStorePresentationConfigResponses, b_ as PresentationManagementControllerUpdateConfigurationData, b$ as PresentationManagementControllerUpdateConfigurationResponse, c0 as PresentationManagementControllerUpdateConfigurationResponses, c1 as PresentationRequest, c2 as PrometheusControllerIndexData, c3 as PrometheusControllerIndexResponses, c4 as RegistrarConfigEntity, c5 as RegistrarControllerCreateAccessCertificateData, c6 as RegistrarControllerCreateAccessCertificateErrors, c7 as RegistrarControllerCreateAccessCertificateResponse, c8 as RegistrarControllerCreateAccessCertificateResponses, c9 as RegistrarControllerCreateConfigData, ca as RegistrarControllerCreateConfigErrors, cb as RegistrarControllerCreateConfigResponse, cc as RegistrarControllerCreateConfigResponses, cd as RegistrarControllerDeleteConfigData, ce as RegistrarControllerDeleteConfigResponse, cf as RegistrarControllerDeleteConfigResponses, cg as RegistrarControllerGetConfigData, ch as RegistrarControllerGetConfigErrors, ci as RegistrarControllerGetConfigResponse, cj as RegistrarControllerGetConfigResponses, ck as RegistrarControllerUpdateConfigData, cl as RegistrarControllerUpdateConfigErrors, cm as RegistrarControllerUpdateConfigResponse, cn as RegistrarControllerUpdateConfigResponses, co as RegistrationCertificateRequest, cp as RoleDto, cq as RootOfTrustPolicy, cr as SchemaResponse, cs as SessionConfigControllerGetConfigData, ct as SessionConfigControllerGetConfigResponse, cu as SessionConfigControllerGetConfigResponses, cv as SessionConfigControllerResetConfigData, cw as SessionConfigControllerResetConfigResponses, cx as SessionConfigControllerUpdateConfigData, cy as SessionConfigControllerUpdateConfigResponse, cz as SessionConfigControllerUpdateConfigResponses, cA as SessionControllerDeleteSessionData, cB as SessionControllerDeleteSessionResponses, cC as SessionControllerGetAllSessionsData, cD as SessionControllerGetAllSessionsResponse, cE as SessionControllerGetAllSessionsResponses, cF as SessionControllerGetSessionData, cG as SessionControllerGetSessionResponse, cH as SessionControllerGetSessionResponses, cI as SessionControllerRevokeAllData, cJ as SessionControllerRevokeAllResponses, cK as SessionStorageConfig, cL as StatusListAggregationDto, cM as StatusListConfig, cN as StatusListConfigControllerGetConfigData, cO as StatusListConfigControllerGetConfigResponse, cP as StatusListConfigControllerGetConfigResponses, cQ as StatusListConfigControllerResetConfigData, cR as StatusListConfigControllerResetConfigResponse, cS as StatusListConfigControllerResetConfigResponses, cT as StatusListConfigControllerUpdateConfigData, cU as StatusListConfigControllerUpdateConfigResponse, cV as StatusListConfigControllerUpdateConfigResponses, cW as StatusListControllerGetListData, cX as StatusListControllerGetListResponse, cY as StatusListControllerGetListResponses, cZ as StatusListControllerGetStatusListAggregationData, c_ as StatusListControllerGetStatusListAggregationResponse, c$ as StatusListControllerGetStatusListAggregationResponses, d0 as StatusListImportDto, d1 as StatusListManagementControllerCreateListData, d2 as StatusListManagementControllerCreateListResponse, d3 as StatusListManagementControllerCreateListResponses, d4 as StatusListManagementControllerDeleteListData, d5 as StatusListManagementControllerDeleteListResponse, d6 as StatusListManagementControllerDeleteListResponses, d7 as StatusListManagementControllerGetListData, d8 as StatusListManagementControllerGetListResponse, d9 as StatusListManagementControllerGetListResponses, da as StatusListManagementControllerGetListsData, db as StatusListManagementControllerGetListsResponse, dc as StatusListManagementControllerGetListsResponses, dd as StatusListManagementControllerUpdateListData, de as StatusListManagementControllerUpdateListResponse, df as StatusListManagementControllerUpdateListResponses, dg as StatusListResponseDto, dh as StatusUpdateDto, di as StorageControllerDownloadData, dj as StorageControllerDownloadResponses, dk as StorageControllerUploadData, dl as StorageControllerUploadResponse, dm as StorageControllerUploadResponses, dn as TenantControllerDeleteTenantData, dp as TenantControllerDeleteTenantResponses, dq as TenantControllerGetTenantData, dr as TenantControllerGetTenantResponse, ds as TenantControllerGetTenantResponses, dt as TenantControllerGetTenantsData, du as TenantControllerGetTenantsResponse, dv as TenantControllerGetTenantsResponses, dw as TenantControllerInitTenantData, dx as TenantControllerInitTenantResponses, dy as TenantControllerUpdateTenantData, dz as TenantControllerUpdateTenantResponse, dA as TenantControllerUpdateTenantResponses, dB as TenantEntity, dC as TokenResponse, dD as TransactionData, dE as TrustList, dF as TrustListControllerCreateTrustListData, dG as TrustListControllerCreateTrustListResponse, dH as TrustListControllerCreateTrustListResponses, dI as TrustListControllerDeleteTrustListData, dJ as TrustListControllerDeleteTrustListResponses, dK as TrustListControllerExportTrustListData, dL as TrustListControllerExportTrustListResponse, dM as TrustListControllerExportTrustListResponses, dN as TrustListControllerGetAllTrustListsData, dO as TrustListControllerGetAllTrustListsResponse, dP as TrustListControllerGetAllTrustListsResponses, dQ as TrustListControllerGetTrustListData, dR as TrustListControllerGetTrustListResponse, dS as TrustListControllerGetTrustListResponses, dT as TrustListControllerGetTrustListVersionData, dU as TrustListControllerGetTrustListVersionResponse, dV as TrustListControllerGetTrustListVersionResponses, dW as TrustListControllerGetTrustListVersionsData, dX as TrustListControllerGetTrustListVersionsResponse, dY as TrustListControllerGetTrustListVersionsResponses, dZ as TrustListControllerUpdateTrustListData, d_ as TrustListControllerUpdateTrustListResponse, d$ as TrustListControllerUpdateTrustListResponses, e0 as TrustListCreateDto, e1 as TrustListPublicControllerGetTrustListJwtData, e2 as TrustListPublicControllerGetTrustListJwtResponse, e3 as TrustListPublicControllerGetTrustListJwtResponses, e4 as TrustListVersion, e5 as TrustedAuthorityQuery, e6 as UpdateClientDto, e7 as UpdateKeyDto, e8 as UpdateRegistrarConfigDto, e9 as UpdateSessionConfigDto, ea as UpdateStatusListConfigDto, eb as UpdateStatusListDto, ec as UpdateTenantDto, ed as Vct, ee as VerifierOfferControllerGetOfferData, ef as VerifierOfferControllerGetOfferResponse, eg as VerifierOfferControllerGetOfferResponses, eh as WebHookAuthConfigHeader, ei as WebHookAuthConfigNone, ej as WebhookConfig, ek as WellKnownControllerAuthzMetadata0Data, el as WellKnownControllerAuthzMetadata0Responses, em as WellKnownControllerAuthzMetadata1Data, en as WellKnownControllerAuthzMetadata1Responses, eo as WellKnownControllerGetJwks0Data, ep as WellKnownControllerGetJwks0Response, eq as WellKnownControllerGetJwks0Responses, er as WellKnownControllerGetJwks1Data, es as WellKnownControllerGetJwks1Response, et as WellKnownControllerGetJwks1Responses, eu as WellKnownControllerIssuerMetadata0Data, ev as WellKnownControllerIssuerMetadata0Response, ew as WellKnownControllerIssuerMetadata0Responses, ex as WellKnownControllerIssuerMetadata1Data, ey as WellKnownControllerIssuerMetadata1Response, ez as WellKnownControllerIssuerMetadata1Responses } from './types.gen-KKg4o5Hj.js';
|
|
1
|
+
import { S as Session } from './types.gen-M31b0SZB.js';
|
|
2
|
+
export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerMainData, c as AppControllerMainResponses, d as AttestationBasedPolicy, e as AuthControllerGetGlobalJwksData, f as AuthControllerGetGlobalJwksResponses, g as AuthControllerGetOAuth2TokenData, h as AuthControllerGetOAuth2TokenErrors, i as AuthControllerGetOAuth2TokenResponse, j as AuthControllerGetOAuth2TokenResponses, k as AuthControllerGetOidcDiscoveryData, l as AuthControllerGetOidcDiscoveryResponses, m as AuthenticationMethodAuth, n as AuthenticationMethodNone, o as AuthenticationMethodPresentation, p as AuthenticationUrlConfig, q as AuthorizationResponse, r as AuthorizeControllerAuthorizationChallengeEndpointData, s as AuthorizeControllerAuthorizationChallengeEndpointResponses, t as AuthorizeControllerAuthorizeData, u as AuthorizeControllerAuthorizeResponses, v as AuthorizeControllerParData, w as AuthorizeControllerParResponse, x as AuthorizeControllerParResponses, y as AuthorizeControllerTokenData, z as AuthorizeControllerTokenResponse, B as AuthorizeControllerTokenResponses, C as AuthorizeQueries, D as CacheControllerClearAllCachesData, E as CacheControllerClearAllCachesResponse, F as CacheControllerClearAllCachesResponses, G as CacheControllerClearStatusListCacheData, H as CacheControllerClearStatusListCacheResponse, I as CacheControllerClearStatusListCacheResponses, J as CacheControllerClearTrustListCacheData, K as CacheControllerClearTrustListCacheResponse, L as CacheControllerClearTrustListCacheResponses, M as CacheControllerGetStatsData, N as CacheControllerGetStatsResponses, O as CertControllerAddCertificateData, P as CertControllerAddCertificateResponse, Q as CertControllerAddCertificateResponses, R as CertControllerDeleteCertificateData, T as CertControllerDeleteCertificateResponses, U as CertControllerExportConfigData, V as CertControllerExportConfigResponse, W as CertControllerExportConfigResponses, X as CertControllerGetCertificateData, Y as CertControllerGetCertificateResponse, Z as CertControllerGetCertificateResponses, _ as CertControllerGetCertificatesData, $ as CertControllerGetCertificatesResponse, a0 as CertControllerGetCertificatesResponses, a1 as CertControllerUpdateCertificateData, a2 as CertControllerUpdateCertificateResponses, a3 as CertEntity, a4 as CertImportDto, a5 as CertResponseDto, a6 as CertUpdateDto, a7 as CertUsageEntity, a8 as Claim, a9 as ClaimsQuery, aa as ClientControllerCreateClientData, ab as ClientControllerCreateClientResponse, ac as ClientControllerCreateClientResponses, ad as ClientControllerDeleteClientData, ae as ClientControllerDeleteClientResponses, af as ClientControllerGetClientData, ag as ClientControllerGetClientResponse, ah as ClientControllerGetClientResponses, ai as ClientControllerGetClientSecretData, aj as ClientControllerGetClientSecretResponse, ak as ClientControllerGetClientSecretResponses, al as ClientControllerGetClientsData, am as ClientControllerGetClientsResponse, an as ClientControllerGetClientsResponses, ao as ClientControllerRotateClientSecretData, ap as ClientControllerRotateClientSecretResponse, aq as ClientControllerRotateClientSecretResponses, ar as ClientControllerUpdateClientData, as as ClientControllerUpdateClientResponse, at as ClientControllerUpdateClientResponses, au as ClientCredentialsDto, av as ClientEntity, aw as ClientOptions, ax as ClientSecretResponseDto, ay as CompleteDeferredDto, az as CreateAccessCertificateDto, aA as CreateClientDto, aB as CreateRegistrarConfigDto, aC as CreateStatusListDto, aD as CreateTenantDto, aE as CredentialConfig, aF as CredentialConfigControllerDeleteIssuanceConfigurationData, aG as CredentialConfigControllerDeleteIssuanceConfigurationResponses, aH as CredentialConfigControllerGetConfigByIdData, aI as CredentialConfigControllerGetConfigByIdResponse, aJ as CredentialConfigControllerGetConfigByIdResponses, aK as CredentialConfigControllerGetConfigsData, aL as CredentialConfigControllerGetConfigsResponse, aM as CredentialConfigControllerGetConfigsResponses, aN as CredentialConfigControllerStoreCredentialConfigurationData, aO as CredentialConfigControllerStoreCredentialConfigurationResponse, aP as CredentialConfigControllerStoreCredentialConfigurationResponses, aQ as CredentialConfigControllerUpdateCredentialConfigurationData, aR as CredentialConfigControllerUpdateCredentialConfigurationResponse, aS as CredentialConfigControllerUpdateCredentialConfigurationResponses, aT as CredentialConfigCreate, aU as CredentialConfigUpdate, aV as CredentialOfferControllerGetOfferData, aW as CredentialOfferControllerGetOfferResponse, aX as CredentialOfferControllerGetOfferResponses, aY as CredentialQuery, aZ as CredentialSetQuery, a_ as Dcql, a$ as DeferredControllerCompleteDeferredData, b0 as DeferredControllerCompleteDeferredErrors, b1 as DeferredControllerCompleteDeferredResponse, b2 as DeferredControllerCompleteDeferredResponses, b3 as DeferredControllerFailDeferredData, b4 as DeferredControllerFailDeferredErrors, b5 as DeferredControllerFailDeferredResponse, b6 as DeferredControllerFailDeferredResponses, b7 as DeferredCredentialRequestDto, b8 as DeferredOperationResponse, b9 as Display, ba as DisplayImage, bb as DisplayInfo, bc as DisplayLogo, bd as EcPublic, be as EmbeddedDisclosurePolicy, bf as FailDeferredDto, bg as FileUploadDto, bh as HealthControllerCheckData, bi as HealthControllerCheckError, bj as HealthControllerCheckErrors, bk as HealthControllerCheckResponse, bl as HealthControllerCheckResponses, bm as IaeActionOpenid4VpPresentation, bn as IaeActionRedirectToWeb, bo as ImportTenantDto, bp as InteractiveAuthorizationCodeResponseDto, bq as InteractiveAuthorizationControllerCompleteWebAuthData, br as InteractiveAuthorizationControllerCompleteWebAuthErrors, bs as InteractiveAuthorizationControllerCompleteWebAuthResponses, bt as InteractiveAuthorizationControllerInteractiveAuthorizationData, bu as InteractiveAuthorizationControllerInteractiveAuthorizationError, bv as InteractiveAuthorizationControllerInteractiveAuthorizationErrors, bw as InteractiveAuthorizationControllerInteractiveAuthorizationResponse, bx as InteractiveAuthorizationControllerInteractiveAuthorizationResponses, by as InteractiveAuthorizationErrorResponseDto, bz as InteractiveAuthorizationRequestDto, bA as IssuanceConfig, bB as IssuanceConfigControllerGetIssuanceConfigurationsData, bC as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bD as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bE as IssuanceConfigControllerStoreIssuanceConfigurationData, bF as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bG as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bH as IssuanceDto, bI as IssuerMetadataCredentialConfig, bJ as JwksResponseDto, bK as Key, bL as KeyControllerAddKeyData, bM as KeyControllerAddKeyResponses, bN as KeyControllerDeleteKeyData, bO as KeyControllerDeleteKeyResponses, bP as KeyControllerGetKeyData, bQ as KeyControllerGetKeyResponse, bR as KeyControllerGetKeyResponses, bS as KeyControllerGetKeysData, bT as KeyControllerGetKeysResponse, bU as KeyControllerGetKeysResponses, bV as KeyControllerUpdateKeyData, bW as KeyControllerUpdateKeyResponses, bX as KeyEntity, bY as KeyImportDto, bZ as NoneTrustPolicy, b_ as NotificationRequestDto, b$ as OfferRequestDto, c0 as OfferResponse, c1 as Oid4VciControllerCredentialData, c2 as Oid4VciControllerCredentialResponse, c3 as Oid4VciControllerCredentialResponses, c4 as Oid4VciControllerDeferredCredentialData, c5 as Oid4VciControllerDeferredCredentialResponses, c6 as Oid4VciControllerNonceData, c7 as Oid4VciControllerNonceResponses, c8 as Oid4VciControllerNotificationsData, c9 as Oid4VciControllerNotificationsResponses, ca as Oid4VciMetadataControllerVctData, cb as Oid4VciMetadataControllerVctResponse, cc as Oid4VciMetadataControllerVctResponses, cd as Oid4VpControllerGetPostRequestWithSessionData, ce as Oid4VpControllerGetPostRequestWithSessionResponse, cf as Oid4VpControllerGetPostRequestWithSessionResponses, cg as Oid4VpControllerGetRequestNoRedirectWithSessionData, ch as Oid4VpControllerGetRequestNoRedirectWithSessionResponse, ci as Oid4VpControllerGetRequestNoRedirectWithSessionResponses, cj as Oid4VpControllerGetRequestWithSessionData, ck as Oid4VpControllerGetRequestWithSessionResponse, cl as Oid4VpControllerGetRequestWithSessionResponses, cm as Oid4VpControllerGetResponseData, cn as Oid4VpControllerGetResponseResponse, co as Oid4VpControllerGetResponseResponses, cp as ParResponseDto, cq as PolicyCredential, cr as PresentationAttachment, cs as PresentationConfig, ct as PresentationConfigCreateDto, cu as PresentationConfigUpdateDto, cv as PresentationDuringIssuanceConfig, cw as PresentationManagementControllerConfigurationData, cx as PresentationManagementControllerConfigurationResponse, cy as PresentationManagementControllerConfigurationResponses, cz as PresentationManagementControllerDeleteConfigurationData, cA as PresentationManagementControllerDeleteConfigurationResponses, cB as PresentationManagementControllerGetConfigurationData, cC as PresentationManagementControllerGetConfigurationResponse, cD as PresentationManagementControllerGetConfigurationResponses, cE as PresentationManagementControllerStorePresentationConfigData, cF as PresentationManagementControllerStorePresentationConfigResponse, cG as PresentationManagementControllerStorePresentationConfigResponses, cH as PresentationManagementControllerUpdateConfigurationData, cI as PresentationManagementControllerUpdateConfigurationResponse, cJ as PresentationManagementControllerUpdateConfigurationResponses, cK as PresentationRequest, cL as PrometheusControllerIndexData, cM as PrometheusControllerIndexResponses, cN as RegistrarConfigEntity, cO as RegistrarControllerCreateAccessCertificateData, cP as RegistrarControllerCreateAccessCertificateErrors, cQ as RegistrarControllerCreateAccessCertificateResponse, cR as RegistrarControllerCreateAccessCertificateResponses, cS as RegistrarControllerCreateConfigData, cT as RegistrarControllerCreateConfigErrors, cU as RegistrarControllerCreateConfigResponse, cV as RegistrarControllerCreateConfigResponses, cW as RegistrarControllerDeleteConfigData, cX as RegistrarControllerDeleteConfigResponse, cY as RegistrarControllerDeleteConfigResponses, cZ as RegistrarControllerGetConfigData, c_ as RegistrarControllerGetConfigErrors, c$ as RegistrarControllerGetConfigResponse, d0 as RegistrarControllerGetConfigResponses, d1 as RegistrarControllerUpdateConfigData, d2 as RegistrarControllerUpdateConfigErrors, d3 as RegistrarControllerUpdateConfigResponse, d4 as RegistrarControllerUpdateConfigResponses, d5 as RegistrationCertificateRequest, d6 as RoleDto, d7 as RootOfTrustPolicy, d8 as SchemaResponse, d9 as SessionConfigControllerGetConfigData, da as SessionConfigControllerGetConfigResponse, db as SessionConfigControllerGetConfigResponses, dc as SessionConfigControllerResetConfigData, dd as SessionConfigControllerResetConfigResponses, de as SessionConfigControllerUpdateConfigData, df as SessionConfigControllerUpdateConfigResponse, dg as SessionConfigControllerUpdateConfigResponses, dh as SessionControllerDeleteSessionData, di as SessionControllerDeleteSessionResponses, dj as SessionControllerGetAllSessionsData, dk as SessionControllerGetAllSessionsResponse, dl as SessionControllerGetAllSessionsResponses, dm as SessionControllerGetSessionData, dn as SessionControllerGetSessionResponse, dp as SessionControllerGetSessionResponses, dq as SessionControllerRevokeAllData, dr as SessionControllerRevokeAllResponses, ds as SessionStorageConfig, dt as StatusListAggregationDto, du as StatusListConfig, dv as StatusListConfigControllerGetConfigData, dw as StatusListConfigControllerGetConfigResponse, dx as StatusListConfigControllerGetConfigResponses, dy as StatusListConfigControllerResetConfigData, dz as StatusListConfigControllerResetConfigResponse, dA as StatusListConfigControllerResetConfigResponses, dB as StatusListConfigControllerUpdateConfigData, dC as StatusListConfigControllerUpdateConfigResponse, dD as StatusListConfigControllerUpdateConfigResponses, dE as StatusListControllerGetListData, dF as StatusListControllerGetListResponse, dG as StatusListControllerGetListResponses, dH as StatusListControllerGetStatusListAggregationData, dI as StatusListControllerGetStatusListAggregationResponse, dJ as StatusListControllerGetStatusListAggregationResponses, dK as StatusListImportDto, dL as StatusListManagementControllerCreateListData, dM as StatusListManagementControllerCreateListResponse, dN as StatusListManagementControllerCreateListResponses, dO as StatusListManagementControllerDeleteListData, dP as StatusListManagementControllerDeleteListResponse, dQ as StatusListManagementControllerDeleteListResponses, dR as StatusListManagementControllerGetListData, dS as StatusListManagementControllerGetListResponse, dT as StatusListManagementControllerGetListResponses, dU as StatusListManagementControllerGetListsData, dV as StatusListManagementControllerGetListsResponse, dW as StatusListManagementControllerGetListsResponses, dX as StatusListManagementControllerUpdateListData, dY as StatusListManagementControllerUpdateListResponse, dZ as StatusListManagementControllerUpdateListResponses, d_ as StatusListResponseDto, d$ as StatusUpdateDto, e0 as StorageControllerDownloadData, e1 as StorageControllerDownloadResponses, e2 as StorageControllerUploadData, e3 as StorageControllerUploadResponse, e4 as StorageControllerUploadResponses, e5 as TenantControllerDeleteTenantData, e6 as TenantControllerDeleteTenantResponses, e7 as TenantControllerGetTenantData, e8 as TenantControllerGetTenantResponse, e9 as TenantControllerGetTenantResponses, ea as TenantControllerGetTenantsData, eb as TenantControllerGetTenantsResponse, ec as TenantControllerGetTenantsResponses, ed as TenantControllerInitTenantData, ee as TenantControllerInitTenantResponse, ef as TenantControllerInitTenantResponses, eg as TenantControllerUpdateTenantData, eh as TenantControllerUpdateTenantResponse, ei as TenantControllerUpdateTenantResponses, ej as TenantEntity, ek as TokenResponse, el as TransactionData, em as TrustList, en as TrustListControllerCreateTrustListData, eo as TrustListControllerCreateTrustListResponse, ep as TrustListControllerCreateTrustListResponses, eq as TrustListControllerDeleteTrustListData, er as TrustListControllerDeleteTrustListResponses, es as TrustListControllerExportTrustListData, et as TrustListControllerExportTrustListResponse, eu as TrustListControllerExportTrustListResponses, ev as TrustListControllerGetAllTrustListsData, ew as TrustListControllerGetAllTrustListsResponse, ex as TrustListControllerGetAllTrustListsResponses, ey as TrustListControllerGetTrustListData, ez as TrustListControllerGetTrustListResponse, eA as TrustListControllerGetTrustListResponses, eB as TrustListControllerGetTrustListVersionData, eC as TrustListControllerGetTrustListVersionResponse, eD as TrustListControllerGetTrustListVersionResponses, eE as TrustListControllerGetTrustListVersionsData, eF as TrustListControllerGetTrustListVersionsResponse, eG as TrustListControllerGetTrustListVersionsResponses, eH as TrustListControllerUpdateTrustListData, eI as TrustListControllerUpdateTrustListResponse, eJ as TrustListControllerUpdateTrustListResponses, eK as TrustListCreateDto, eL as TrustListPublicControllerGetTrustListJwtData, eM as TrustListPublicControllerGetTrustListJwtResponse, eN as TrustListPublicControllerGetTrustListJwtResponses, eO as TrustListVersion, eP as TrustedAuthorityQuery, eQ as UpdateClientDto, eR as UpdateKeyDto, eS as UpdateRegistrarConfigDto, eT as UpdateSessionConfigDto, eU as UpdateStatusListConfigDto, eV as UpdateStatusListDto, eW as UpdateTenantDto, eX as Vct, eY as VerifierOfferControllerGetOfferData, eZ as VerifierOfferControllerGetOfferResponse, e_ as VerifierOfferControllerGetOfferResponses, e$ as WebHookAuthConfigHeader, f0 as WebHookAuthConfigNone, f1 as WebhookConfig, f2 as WellKnownControllerAuthzMetadata0Data, f3 as WellKnownControllerAuthzMetadata0Responses, f4 as WellKnownControllerAuthzMetadata1Data, f5 as WellKnownControllerAuthzMetadata1Responses, f6 as WellKnownControllerGetJwks0Data, f7 as WellKnownControllerGetJwks0Response, f8 as WellKnownControllerGetJwks0Responses, f9 as WellKnownControllerGetJwks1Data, fa as WellKnownControllerGetJwks1Response, fb as WellKnownControllerGetJwks1Responses, fc as WellKnownControllerIssuerMetadata0Data, fd as WellKnownControllerIssuerMetadata0Response, fe as WellKnownControllerIssuerMetadata0Responses, ff as WellKnownControllerIssuerMetadata1Data, fg as WellKnownControllerIssuerMetadata1Response, fh as WellKnownControllerIssuerMetadata1Responses } from './types.gen-M31b0SZB.js';
|
|
3
3
|
export { client } from './api/client.gen.js';
|
|
4
|
-
export { Options, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, healthControllerCheck, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 } from './api/index.js';
|
|
4
|
+
export { Options, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, healthControllerCheck, interactiveAuthorizationControllerCompleteWebAuth, interactiveAuthorizationControllerInteractiveAuthorization, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerDeferredCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestNoRedirectWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 } from './api/index.js';
|
|
5
5
|
import './types.gen-DDunhhsd.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -72,8 +72,8 @@ interface IssuanceOfferOptions {
|
|
|
72
72
|
credentialConfigurationIds: string[];
|
|
73
73
|
/** Claims to include in the credentials (keyed by config ID) */
|
|
74
74
|
claims?: Record<string, Record<string, unknown>>;
|
|
75
|
-
/** Response type: '
|
|
76
|
-
responseType?: '
|
|
75
|
+
/** Response type: 'uri' returns the offer URI, 'dc-api' for Digital Credentials API */
|
|
76
|
+
responseType?: 'uri' | 'dc-api';
|
|
77
77
|
/** Transaction code for pre-authorized flow */
|
|
78
78
|
txCode?: string;
|
|
79
79
|
/** Flow type (default: 'pre_authorized_code') */
|
|
@@ -85,8 +85,8 @@ interface IssuanceOfferOptions {
|
|
|
85
85
|
interface PresentationRequestOptions {
|
|
86
86
|
/** ID of the presentation configuration */
|
|
87
87
|
configId: string;
|
|
88
|
-
/** Response type: '
|
|
89
|
-
responseType?: '
|
|
88
|
+
/** Response type: 'uri' returns the request URI, 'dc-api' for Digital Credentials API */
|
|
89
|
+
responseType?: 'uri' | 'dc-api';
|
|
90
90
|
/** Optional redirect URI after presentation completes */
|
|
91
91
|
redirectUri?: string;
|
|
92
92
|
}
|
|
@@ -94,9 +94,22 @@ interface PresentationRequestOptions {
|
|
|
94
94
|
* Result of creating an offer or request
|
|
95
95
|
*/
|
|
96
96
|
interface OfferResult {
|
|
97
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* URI for same-device flow.
|
|
99
|
+
* Use when the wallet is on the same device as the browser.
|
|
100
|
+
* For presentation requests: After presentation, the wallet will redirect the user back to the verifier.
|
|
101
|
+
* For issuance offers: The wallet opens and receives the credential.
|
|
102
|
+
*/
|
|
98
103
|
uri: string;
|
|
99
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* URI for cross-device flow (e.g., QR code scanned by another device).
|
|
106
|
+
* Use when the wallet is on a different device than the browser.
|
|
107
|
+
* No redirect happens after presentation - poll the session for status updates.
|
|
108
|
+
*
|
|
109
|
+
* Only available for presentation requests. For issuance, use `uri` for both flows.
|
|
110
|
+
*/
|
|
111
|
+
crossDeviceUri?: string;
|
|
112
|
+
/** Session ID for polling status updates */
|
|
100
113
|
sessionId: string;
|
|
101
114
|
}
|
|
102
115
|
/**
|
|
@@ -123,7 +136,7 @@ interface OfferResult {
|
|
|
123
136
|
* ```
|
|
124
137
|
*/
|
|
125
138
|
declare class EudiploClient {
|
|
126
|
-
private config;
|
|
139
|
+
private readonly config;
|
|
127
140
|
private accessToken?;
|
|
128
141
|
private tokenExpiresAt?;
|
|
129
142
|
private refreshPromise?;
|
|
@@ -155,14 +168,26 @@ declare class EudiploClient {
|
|
|
155
168
|
/**
|
|
156
169
|
* Create a presentation request (for verification).
|
|
157
170
|
*
|
|
158
|
-
*
|
|
171
|
+
* Returns two URIs:
|
|
172
|
+
* - `uri`: For same-device flow (wallet on same device, redirect after completion)
|
|
173
|
+
* - `crossDeviceUri`: For cross-device flow (QR code, no redirect, poll for status)
|
|
174
|
+
*
|
|
175
|
+
* @example Same-device flow (wallet app on user's device)
|
|
159
176
|
* ```typescript
|
|
160
|
-
* // Age verification
|
|
161
177
|
* const { uri, sessionId } = await client.createPresentationRequest({
|
|
162
|
-
* configId: 'age-over-18'
|
|
178
|
+
* configId: 'age-over-18',
|
|
179
|
+
* redirectUri: 'https://example.com/callback'
|
|
163
180
|
* });
|
|
181
|
+
* // Redirect user to uri - wallet will redirect back after completion
|
|
182
|
+
* window.location.href = uri;
|
|
183
|
+
* ```
|
|
164
184
|
*
|
|
165
|
-
*
|
|
185
|
+
* @example Cross-device flow (QR code scanned by separate device)
|
|
186
|
+
* ```typescript
|
|
187
|
+
* const { crossDeviceUri, sessionId } = await client.createPresentationRequest({
|
|
188
|
+
* configId: 'age-over-18'
|
|
189
|
+
* });
|
|
190
|
+
* // Display crossDeviceUri as QR code, then poll for completion
|
|
166
191
|
* const session = await client.waitForSession(sessionId);
|
|
167
192
|
* ```
|
|
168
193
|
*/
|