@eudiplo/sdk-core 4.1.0 → 4.3.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.
@@ -665,132 +665,121 @@ var createClient = (config = {}) => {
665
665
  return { opts: resolvedOpts, url };
666
666
  };
667
667
  const request = async (options) => {
668
- const { opts, url } = await beforeRequest(options);
669
- const requestInit = {
670
- redirect: "follow",
671
- ...opts,
672
- body: getValidRequestBody(opts)
673
- };
674
- let request2 = new Request(url, requestInit);
675
- for (const fn of interceptors.request.fns) {
676
- if (fn) {
677
- request2 = await fn(request2, opts);
678
- }
679
- }
680
- const _fetch = opts.fetch;
668
+ const throwOnError = options.throwOnError ?? _config.throwOnError;
669
+ const responseStyle = options.responseStyle ?? _config.responseStyle;
670
+ let request2;
681
671
  let response;
682
672
  try {
683
- response = await _fetch(request2);
684
- } catch (error2) {
685
- let finalError2 = error2;
686
- for (const fn of interceptors.error.fns) {
673
+ const { opts, url } = await beforeRequest(options);
674
+ const requestInit = {
675
+ redirect: "follow",
676
+ ...opts,
677
+ body: getValidRequestBody(opts)
678
+ };
679
+ request2 = new Request(url, requestInit);
680
+ for (const fn of interceptors.request.fns) {
687
681
  if (fn) {
688
- finalError2 = await fn(
689
- error2,
690
- void 0,
691
- request2,
692
- opts
693
- );
682
+ request2 = await fn(request2, opts);
694
683
  }
695
684
  }
696
- finalError2 = finalError2 || {};
697
- if (opts.throwOnError) {
698
- throw finalError2;
685
+ const _fetch = opts.fetch;
686
+ response = await _fetch(request2);
687
+ for (const fn of interceptors.response.fns) {
688
+ if (fn) {
689
+ response = await fn(response, request2, opts);
690
+ }
699
691
  }
700
- return opts.responseStyle === "data" ? void 0 : {
701
- error: finalError2,
692
+ const result = {
702
693
  request: request2,
703
- response: void 0
694
+ response
704
695
  };
705
- }
706
- for (const fn of interceptors.response.fns) {
707
- if (fn) {
708
- response = await fn(response, request2, opts);
709
- }
710
- }
711
- const result = {
712
- request: request2,
713
- response
714
- };
715
- if (response.ok) {
716
- const parseAs = (opts.parseAs === "auto" ? getParseAs(response.headers.get("Content-Type")) : opts.parseAs) ?? "json";
717
- if (response.status === 204 || response.headers.get("Content-Length") === "0") {
718
- let emptyData;
696
+ if (response.ok) {
697
+ const parseAs = (opts.parseAs === "auto" ? getParseAs(response.headers.get("Content-Type")) : opts.parseAs) ?? "json";
698
+ if (response.status === 204 || response.headers.get("Content-Length") === "0") {
699
+ let emptyData;
700
+ switch (parseAs) {
701
+ case "arrayBuffer":
702
+ case "blob":
703
+ case "text":
704
+ emptyData = await response[parseAs]();
705
+ break;
706
+ case "formData":
707
+ emptyData = new FormData();
708
+ break;
709
+ case "stream":
710
+ emptyData = response.body;
711
+ break;
712
+ case "json":
713
+ default:
714
+ emptyData = {};
715
+ break;
716
+ }
717
+ return opts.responseStyle === "data" ? emptyData : {
718
+ data: emptyData,
719
+ ...result
720
+ };
721
+ }
722
+ let data;
719
723
  switch (parseAs) {
720
724
  case "arrayBuffer":
721
725
  case "blob":
726
+ case "formData":
722
727
  case "text":
723
- emptyData = await response[parseAs]();
728
+ data = await response[parseAs]();
724
729
  break;
725
- case "formData":
726
- emptyData = new FormData();
730
+ case "json": {
731
+ const text = await response.text();
732
+ data = text ? JSON.parse(text) : {};
727
733
  break;
734
+ }
728
735
  case "stream":
729
- emptyData = response.body;
730
- break;
731
- case "json":
732
- default:
733
- emptyData = {};
734
- break;
736
+ return opts.responseStyle === "data" ? response.body : {
737
+ data: response.body,
738
+ ...result
739
+ };
735
740
  }
736
- return opts.responseStyle === "data" ? emptyData : {
737
- data: emptyData,
741
+ if (parseAs === "json") {
742
+ if (opts.responseValidator) {
743
+ await opts.responseValidator(data);
744
+ }
745
+ if (opts.responseTransformer) {
746
+ data = await opts.responseTransformer(data);
747
+ }
748
+ }
749
+ return opts.responseStyle === "data" ? data : {
750
+ data,
738
751
  ...result
739
752
  };
740
753
  }
741
- let data;
742
- switch (parseAs) {
743
- case "arrayBuffer":
744
- case "blob":
745
- case "formData":
746
- case "text":
747
- data = await response[parseAs]();
748
- break;
749
- case "json": {
750
- const text = await response.text();
751
- data = text ? JSON.parse(text) : {};
752
- break;
753
- }
754
- case "stream":
755
- return opts.responseStyle === "data" ? response.body : {
756
- data: response.body,
757
- ...result
758
- };
754
+ const textError = await response.text();
755
+ let jsonError;
756
+ try {
757
+ jsonError = JSON.parse(textError);
758
+ } catch {
759
759
  }
760
- if (parseAs === "json") {
761
- if (opts.responseValidator) {
762
- await opts.responseValidator(data);
763
- }
764
- if (opts.responseTransformer) {
765
- data = await opts.responseTransformer(data);
760
+ throw jsonError ?? textError;
761
+ } catch (error) {
762
+ let finalError = error;
763
+ for (const fn of interceptors.error.fns) {
764
+ if (fn) {
765
+ finalError = await fn(
766
+ finalError,
767
+ response,
768
+ request2,
769
+ options
770
+ );
766
771
  }
767
772
  }
768
- return opts.responseStyle === "data" ? data : {
769
- data,
770
- ...result
771
- };
772
- }
773
- const textError = await response.text();
774
- let jsonError;
775
- try {
776
- jsonError = JSON.parse(textError);
777
- } catch {
778
- }
779
- const error = jsonError ?? textError;
780
- let finalError = error;
781
- for (const fn of interceptors.error.fns) {
782
- if (fn) {
783
- finalError = await fn(error, response, request2, opts);
773
+ finalError = finalError || {};
774
+ if (throwOnError) {
775
+ throw finalError;
784
776
  }
777
+ return responseStyle === "data" ? void 0 : {
778
+ error: finalError,
779
+ request: request2,
780
+ response
781
+ };
785
782
  }
786
- finalError = finalError || {};
787
- if (opts.throwOnError) {
788
- throw finalError;
789
- }
790
- return opts.responseStyle === "data" ? void 0 : {
791
- error: finalError,
792
- ...result
793
- };
794
783
  };
795
784
  const makeMethodFn = (method) => (options) => request({ ...options, method });
796
785
  const makeSseFn = (method) => async (options) => {
@@ -798,7 +787,6 @@ var createClient = (config = {}) => {
798
787
  return createSseClient({
799
788
  ...opts,
800
789
  body: opts.body,
801
- headers: opts.headers,
802
790
  method,
803
791
  onRequest: async (url2, init) => {
804
792
  let request2 = new Request(url2, init);
@@ -1036,6 +1024,39 @@ var sessionConfigControllerUpdateConfig = (options) => (options.client ?? client
1036
1024
  }
1037
1025
  });
1038
1026
  var sessionEventsControllerSubscribeToSessionEvents = (options) => (options.client ?? client).get({ url: "/api/session/{id}/events", ...options });
1027
+ var userControllerGetUsers = (options) => (options?.client ?? client).get({
1028
+ security: [{ scheme: "bearer", type: "http" }],
1029
+ url: "/api/user",
1030
+ ...options
1031
+ });
1032
+ var userControllerCreateUser = (options) => (options.client ?? client).post({
1033
+ security: [{ scheme: "bearer", type: "http" }],
1034
+ url: "/api/user",
1035
+ ...options,
1036
+ headers: {
1037
+ "Content-Type": "application/json",
1038
+ ...options.headers
1039
+ }
1040
+ });
1041
+ var userControllerDeleteUser = (options) => (options.client ?? client).delete({
1042
+ security: [{ scheme: "bearer", type: "http" }],
1043
+ url: "/api/user/{id}",
1044
+ ...options
1045
+ });
1046
+ var userControllerGetUser = (options) => (options.client ?? client).get({
1047
+ security: [{ scheme: "bearer", type: "http" }],
1048
+ url: "/api/user/{id}",
1049
+ ...options
1050
+ });
1051
+ var userControllerUpdateUser = (options) => (options.client ?? client).patch({
1052
+ security: [{ scheme: "bearer", type: "http" }],
1053
+ url: "/api/user/{id}",
1054
+ ...options,
1055
+ headers: {
1056
+ "Content-Type": "application/json",
1057
+ ...options.headers
1058
+ }
1059
+ });
1039
1060
  var issuanceConfigControllerGetIssuanceConfigurations = (options) => (options?.client ?? client).get({
1040
1061
  security: [{ scheme: "bearer", type: "http" }],
1041
1062
  url: "/api/issuer/config",
@@ -1083,6 +1104,24 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
1083
1104
  ...options.headers
1084
1105
  }
1085
1106
  });
1107
+ var credentialConfigControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
1108
+ security: [{ scheme: "bearer", type: "http" }],
1109
+ url: "/api/issuer/credentials/schema-metadata/sign",
1110
+ ...options,
1111
+ headers: {
1112
+ "Content-Type": "application/json",
1113
+ ...options.headers
1114
+ }
1115
+ });
1116
+ var credentialConfigControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
1117
+ security: [{ scheme: "bearer", type: "http" }],
1118
+ url: "/api/issuer/credentials/schema-metadata/sign-version",
1119
+ ...options,
1120
+ headers: {
1121
+ "Content-Type": "application/json",
1122
+ ...options.headers
1123
+ }
1124
+ });
1086
1125
  var attributeProviderControllerGetAll = (options) => (options?.client ?? client).get({
1087
1126
  security: [{ scheme: "bearer", type: "http" }],
1088
1127
  url: "/api/issuer/attribute-providers",
@@ -1149,6 +1188,54 @@ var webhookEndpointControllerUpdate = (options) => (options.client ?? client).pa
1149
1188
  ...options.headers
1150
1189
  }
1151
1190
  });
1191
+ var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
1192
+ security: [{ scheme: "bearer", type: "http" }],
1193
+ url: "/api/trust-list",
1194
+ ...options
1195
+ });
1196
+ var trustListControllerCreateTrustList = (options) => (options.client ?? client).post({
1197
+ security: [{ scheme: "bearer", type: "http" }],
1198
+ url: "/api/trust-list",
1199
+ ...options,
1200
+ headers: {
1201
+ "Content-Type": "application/json",
1202
+ ...options.headers
1203
+ }
1204
+ });
1205
+ var trustListControllerDeleteTrustList = (options) => (options.client ?? client).delete({
1206
+ security: [{ scheme: "bearer", type: "http" }],
1207
+ url: "/api/trust-list/{id}",
1208
+ ...options
1209
+ });
1210
+ var trustListControllerGetTrustList = (options) => (options.client ?? client).get({
1211
+ security: [{ scheme: "bearer", type: "http" }],
1212
+ url: "/api/trust-list/{id}",
1213
+ ...options
1214
+ });
1215
+ var trustListControllerUpdateTrustList = (options) => (options.client ?? client).put({
1216
+ security: [{ scheme: "bearer", type: "http" }],
1217
+ url: "/api/trust-list/{id}",
1218
+ ...options,
1219
+ headers: {
1220
+ "Content-Type": "application/json",
1221
+ ...options.headers
1222
+ }
1223
+ });
1224
+ var trustListControllerExportTrustList = (options) => (options.client ?? client).get({
1225
+ security: [{ scheme: "bearer", type: "http" }],
1226
+ url: "/api/trust-list/{id}/export",
1227
+ ...options
1228
+ });
1229
+ var trustListControllerGetTrustListVersions = (options) => (options.client ?? client).get({
1230
+ security: [{ scheme: "bearer", type: "http" }],
1231
+ url: "/api/trust-list/{id}/versions",
1232
+ ...options
1233
+ });
1234
+ var trustListControllerGetTrustListVersion = (options) => (options.client ?? client).get({
1235
+ security: [{ scheme: "bearer", type: "http" }],
1236
+ url: "/api/trust-list/{id}/versions/{versionId}",
1237
+ ...options
1238
+ });
1152
1239
  var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
1153
1240
  security: [{ scheme: "bearer", type: "http" }],
1154
1241
  url: "/api/verifier/config",
@@ -1172,6 +1259,20 @@ var presentationManagementControllerResolveIssuerMetadata = (options) => (option
1172
1259
  ...options.headers
1173
1260
  }
1174
1261
  });
1262
+ var presentationManagementControllerResolveSchemaMetadata = (options) => (options.client ?? client).post({
1263
+ security: [{ scheme: "bearer", type: "http" }],
1264
+ url: "/api/verifier/config/schema-metadata/resolve",
1265
+ ...options,
1266
+ headers: {
1267
+ "Content-Type": "application/json",
1268
+ ...options.headers
1269
+ }
1270
+ });
1271
+ var presentationManagementControllerListSchemaMetadataCatalog = (options) => (options?.client ?? client).get({
1272
+ security: [{ scheme: "bearer", type: "http" }],
1273
+ url: "/api/verifier/config/schema-metadata/catalog",
1274
+ ...options
1275
+ });
1175
1276
  var presentationManagementControllerDeleteConfiguration = (options) => (options.client ?? client).delete({
1176
1277
  security: [{ scheme: "bearer", type: "http" }],
1177
1278
  url: "/api/verifier/config/{id}",
@@ -1253,80 +1354,95 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
1253
1354
  ...options.headers
1254
1355
  }
1255
1356
  });
1256
- var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
1357
+ var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
1257
1358
  security: [{ scheme: "bearer", type: "http" }],
1258
- url: "/api/issuer/offer",
1259
- ...options,
1260
- headers: {
1261
- "Content-Type": "application/json",
1262
- ...options.headers
1263
- }
1359
+ url: "/api/schema-metadata/vocabularies",
1360
+ ...options
1264
1361
  });
1265
- var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
1362
+ var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
1266
1363
  security: [{ scheme: "bearer", type: "http" }],
1267
- url: "/api/issuer/deferred/{transactionId}/complete",
1268
- ...options,
1269
- headers: {
1270
- "Content-Type": "application/json",
1271
- ...options.headers
1272
- }
1364
+ url: "/api/schema-metadata",
1365
+ ...options
1273
1366
  });
1274
- var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
1367
+ var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
1275
1368
  security: [{ scheme: "bearer", type: "http" }],
1276
- url: "/api/issuer/deferred/{transactionId}/fail",
1277
- ...options,
1278
- headers: {
1279
- "Content-Type": "application/json",
1280
- ...options.headers
1281
- }
1369
+ url: "/api/schema-metadata/{id}",
1370
+ ...options
1282
1371
  });
1283
- var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
1372
+ var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
1284
1373
  security: [{ scheme: "bearer", type: "http" }],
1285
- url: "/api/trust-list",
1374
+ url: "/api/schema-metadata/{id}/versions/{version}",
1286
1375
  ...options
1287
1376
  });
1288
- var trustListControllerCreateTrustList = (options) => (options.client ?? client).post({
1377
+ var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
1289
1378
  security: [{ scheme: "bearer", type: "http" }],
1290
- url: "/api/trust-list",
1379
+ url: "/api/schema-metadata/{id}/versions/{version}",
1291
1380
  ...options,
1292
1381
  headers: {
1293
1382
  "Content-Type": "application/json",
1294
1383
  ...options.headers
1295
1384
  }
1296
1385
  });
1297
- var trustListControllerDeleteTrustList = (options) => (options.client ?? client).delete({
1386
+ var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
1298
1387
  security: [{ scheme: "bearer", type: "http" }],
1299
- url: "/api/trust-list/{id}",
1388
+ url: "/api/schema-metadata/{id}/latest",
1300
1389
  ...options
1301
1390
  });
1302
- var trustListControllerGetTrustList = (options) => (options.client ?? client).get({
1391
+ var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
1303
1392
  security: [{ scheme: "bearer", type: "http" }],
1304
- url: "/api/trust-list/{id}",
1393
+ url: "/api/schema-metadata/{id}/versions",
1305
1394
  ...options
1306
1395
  });
1307
- var trustListControllerUpdateTrustList = (options) => (options.client ?? client).put({
1396
+ var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
1308
1397
  security: [{ scheme: "bearer", type: "http" }],
1309
- url: "/api/trust-list/{id}",
1398
+ url: "/api/schema-metadata/{id}/versions/{version}/jwt",
1399
+ ...options
1400
+ });
1401
+ var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
1402
+ security: [{ scheme: "bearer", type: "http" }],
1403
+ url: "/api/schema-metadata/{id}/versions/{version}/export",
1404
+ ...options
1405
+ });
1406
+ var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
1407
+ security: [{ scheme: "bearer", type: "http" }],
1408
+ url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
1409
+ ...options
1410
+ });
1411
+ var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
1412
+ security: [{ scheme: "bearer", type: "http" }],
1413
+ url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
1310
1414
  ...options,
1311
1415
  headers: {
1312
1416
  "Content-Type": "application/json",
1313
1417
  ...options.headers
1314
1418
  }
1315
1419
  });
1316
- var trustListControllerExportTrustList = (options) => (options.client ?? client).get({
1420
+ var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
1317
1421
  security: [{ scheme: "bearer", type: "http" }],
1318
- url: "/api/trust-list/{id}/export",
1319
- ...options
1422
+ url: "/api/issuer/offer",
1423
+ ...options,
1424
+ headers: {
1425
+ "Content-Type": "application/json",
1426
+ ...options.headers
1427
+ }
1320
1428
  });
1321
- var trustListControllerGetTrustListVersions = (options) => (options.client ?? client).get({
1429
+ var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
1322
1430
  security: [{ scheme: "bearer", type: "http" }],
1323
- url: "/api/trust-list/{id}/versions",
1324
- ...options
1431
+ url: "/api/issuer/deferred/{transactionId}/complete",
1432
+ ...options,
1433
+ headers: {
1434
+ "Content-Type": "application/json",
1435
+ ...options.headers
1436
+ }
1325
1437
  });
1326
- var trustListControllerGetTrustListVersion = (options) => (options.client ?? client).get({
1438
+ var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
1327
1439
  security: [{ scheme: "bearer", type: "http" }],
1328
- url: "/api/trust-list/{id}/versions/{versionId}",
1329
- ...options
1440
+ url: "/api/issuer/deferred/{transactionId}/fail",
1441
+ ...options,
1442
+ headers: {
1443
+ "Content-Type": "application/json",
1444
+ ...options.headers
1445
+ }
1330
1446
  });
1331
1447
  var keyChainControllerGetProviders = (options) => (options?.client ?? client).get({
1332
1448
  security: [{ scheme: "bearer", type: "http" }],
@@ -1405,6 +1521,6 @@ var storageControllerUpload = (options) => (options.client ?? client).post({
1405
1521
  }
1406
1522
  });
1407
1523
 
1408
- export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerGetSessionLogs, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
1524
+ export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerSignSchemaMetaConfig, credentialConfigControllerSignVersionSchemaMetaConfig, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerListSchemaMetadataCatalog, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerResolveSchemaMetadata, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, schemaMetadataControllerDeprecateVersion, schemaMetadataControllerExport, schemaMetadataControllerFindAll, schemaMetadataControllerFindOne, schemaMetadataControllerGetJwt, schemaMetadataControllerGetLatest, schemaMetadataControllerGetSchema, schemaMetadataControllerGetVersions, schemaMetadataControllerGetVocabularies, schemaMetadataControllerRemove, schemaMetadataControllerUpdate, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerGetSessionLogs, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
1409
1525
  //# sourceMappingURL=index.mjs.map
1410
1526
  //# sourceMappingURL=index.mjs.map
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
- import { S as Session } from './types.gen-CVLCgolx.mjs';
2
- export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerGetFrontendConfigData, c as AppControllerGetFrontendConfigResponse, d as AppControllerGetFrontendConfigResponses, e as AppControllerGetVersionData, f as AppControllerGetVersionResponses, g as AttestationBasedPolicy, h as AttributeProviderControllerCreateData, i as AttributeProviderControllerCreateResponses, j as AttributeProviderControllerDeleteData, k as AttributeProviderControllerDeleteErrors, l as AttributeProviderControllerDeleteResponses, m as AttributeProviderControllerGetAllData, n as AttributeProviderControllerGetAllResponses, o as AttributeProviderControllerGetByIdData, p as AttributeProviderControllerGetByIdErrors, q as AttributeProviderControllerGetByIdResponses, r as AttributeProviderControllerUpdateData, s as AttributeProviderControllerUpdateErrors, t as AttributeProviderControllerUpdateResponses, u as AttributeProviderEntity, v as AuthenticationMethodAuth, w as AuthenticationMethodNone, x as AuthenticationMethodPresentation, y as AuthenticationUrlConfig, z as AuthorizationResponse, B as AuthorizeQueries, C as CacheControllerClearAllCachesData, D as CacheControllerClearAllCachesResponse, E as CacheControllerClearAllCachesResponses, F as CacheControllerClearStatusListCacheData, G as CacheControllerClearStatusListCacheResponse, H as CacheControllerClearStatusListCacheResponses, I as CacheControllerClearTrustListCacheData, J as CacheControllerClearTrustListCacheResponse, K as CacheControllerClearTrustListCacheResponses, L as CacheControllerGetStatsData, M as CacheControllerGetStatsResponses, N as CertificateInfoDto, O as ChainedAsConfig, P as ChainedAsErrorResponseDto, Q as ChainedAsParResponseDto, R as ChainedAsTokenConfig, T as ChainedAsTokenRequestDto, U as ChainedAsTokenResponseDto, V as ClaimDisplayInfo, W as ClaimMetadata, X as ClaimsQuery, Y as ClientControllerCreateClientData, Z as ClientControllerCreateClientResponse, _ as ClientControllerCreateClientResponses, $ as ClientControllerDeleteClientData, a0 as ClientControllerDeleteClientResponses, a1 as ClientControllerGetClientData, a2 as ClientControllerGetClientResponse, a3 as ClientControllerGetClientResponses, a4 as ClientControllerGetClientSecretData, a5 as ClientControllerGetClientSecretResponse, a6 as ClientControllerGetClientSecretResponses, a7 as ClientControllerGetClientsData, a8 as ClientControllerGetClientsResponse, a9 as ClientControllerGetClientsResponses, aa as ClientControllerRotateClientSecretData, ab as ClientControllerRotateClientSecretResponse, ac as ClientControllerRotateClientSecretResponses, ad as ClientControllerUpdateClientData, ae as ClientControllerUpdateClientResponse, af as ClientControllerUpdateClientResponses, ag as ClientCredentialsDto, ah as ClientEntity, ai as ClientOptions, aj as ClientSecretResponseDto, ak as CompleteDeferredDto, al as CreateAccessCertificateDto, am as CreateAttributeProviderDto, an as CreateClientDto, ao as CreateRegistrarConfigDto, ap as CreateStatusListDto, aq as CreateTenantDto, ar as CreateWebhookEndpointDto, as as CredentialConfig, at as CredentialConfigControllerDeleteIssuanceConfigurationData, au as CredentialConfigControllerDeleteIssuanceConfigurationResponses, av as CredentialConfigControllerGetConfigByIdData, aw as CredentialConfigControllerGetConfigByIdResponse, ax as CredentialConfigControllerGetConfigByIdResponses, ay as CredentialConfigControllerGetConfigsData, az as CredentialConfigControllerGetConfigsResponse, aA as CredentialConfigControllerGetConfigsResponses, aB as CredentialConfigControllerStoreCredentialConfigurationData, aC as CredentialConfigControllerStoreCredentialConfigurationResponse, aD as CredentialConfigControllerStoreCredentialConfigurationResponses, aE as CredentialConfigControllerUpdateCredentialConfigurationData, aF as CredentialConfigControllerUpdateCredentialConfigurationResponse, aG as CredentialConfigControllerUpdateCredentialConfigurationResponses, aH as CredentialConfigCreate, aI as CredentialConfigUpdate, aJ as CredentialOfferControllerGetOfferData, aK as CredentialOfferControllerGetOfferResponse, aL as CredentialOfferControllerGetOfferResponses, aM as CredentialQuery, aN as CredentialSetQuery, aO as Dcql, aP as DeferredControllerCompleteDeferredData, aQ as DeferredControllerCompleteDeferredErrors, aR as DeferredControllerCompleteDeferredResponse, aS as DeferredControllerCompleteDeferredResponses, aT as DeferredControllerFailDeferredData, aU as DeferredControllerFailDeferredErrors, aV as DeferredControllerFailDeferredResponse, aW as DeferredControllerFailDeferredResponses, aX as DeferredCredentialRequestDto, aY as DeferredOperationResponse, aZ as Display, a_ as DisplayImage, a$ as DisplayInfo, b0 as DisplayLogo, b1 as EcJwk, b2 as EcPublic, b3 as EmbeddedDisclosurePolicy, b4 as ExportEcJwk, b5 as ExportRotationPolicyDto, b6 as ExternalTrustListEntity, b7 as FailDeferredDto, b8 as FileUploadDto, b9 as FrontendConfigResponseDto, ba as GrafanaConfigDto, bb as IaeActionOpenid4VpPresentation, bc as IaeActionRedirectToWeb, bd as ImportTenantDto, be as InteractiveAuthorizationCodeResponseDto, bf as InteractiveAuthorizationErrorResponseDto, bg as InteractiveAuthorizationRequestDto, bh as InternalTrustListEntity, bi as IssuanceConfig, bj as IssuanceConfigControllerGetIssuanceConfigurationsData, bk as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bl as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bm as IssuanceConfigControllerStoreIssuanceConfigurationData, bn as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bo as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bp as IssuanceDto, bq as IssuerMetadataCredentialConfig, br as JwksResponseDto, bs as KeyAttestationsRequired, bt as KeyChainControllerCreateData, bu as KeyChainControllerCreateResponses, bv as KeyChainControllerDeleteData, bw as KeyChainControllerDeleteErrors, bx as KeyChainControllerDeleteResponses, by as KeyChainControllerExportData, bz as KeyChainControllerExportErrors, bA as KeyChainControllerExportResponse, bB as KeyChainControllerExportResponses, bC as KeyChainControllerGetAllData, bD as KeyChainControllerGetAllResponse, bE as KeyChainControllerGetAllResponses, bF as KeyChainControllerGetByIdData, bG as KeyChainControllerGetByIdErrors, bH as KeyChainControllerGetByIdResponse, bI as KeyChainControllerGetByIdResponses, bJ as KeyChainControllerGetProvidersData, bK as KeyChainControllerGetProvidersResponse, bL as KeyChainControllerGetProvidersResponses, bM as KeyChainControllerImportData, bN as KeyChainControllerImportResponses, bO as KeyChainControllerRotateData, bP as KeyChainControllerRotateErrors, bQ as KeyChainControllerRotateResponses, bR as KeyChainControllerUpdateData, bS as KeyChainControllerUpdateErrors, bT as KeyChainControllerUpdateResponses, bU as KeyChainCreateDto, bV as KeyChainEntity, bW as KeyChainExportDto, bX as KeyChainImportDto, bY as KeyChainResponseDto, bZ as KeyChainUpdateDto, b_ as KmsProviderCapabilitiesDto, b$ as KmsProviderInfoDto, c0 as KmsProvidersResponseDto, c1 as NoneTrustPolicy, c2 as NotificationRequestDto, c3 as Object, c4 as ObjectWritable, c5 as OfferRequestDto, c6 as OfferResponse, c7 as ParResponseDto, c8 as PolicyCredential, c9 as PresentationAttachment, ca as PresentationConfig, cb as PresentationConfigCreateDto, cc as PresentationConfigUpdateDto, cd as PresentationConfigWritable, ce as PresentationDuringIssuanceConfig, cf as PresentationManagementControllerConfigurationData, cg as PresentationManagementControllerConfigurationResponse, ch as PresentationManagementControllerConfigurationResponses, ci as PresentationManagementControllerDeleteConfigurationData, cj as PresentationManagementControllerDeleteConfigurationResponses, ck as PresentationManagementControllerGetConfigurationData, cl as PresentationManagementControllerGetConfigurationResponse, cm as PresentationManagementControllerGetConfigurationResponses, cn as PresentationManagementControllerReissueRegistrationCertificateData, co as PresentationManagementControllerReissueRegistrationCertificateErrors, cp as PresentationManagementControllerReissueRegistrationCertificateResponses, cq as PresentationManagementControllerResolveIssuerMetadataData, cr as PresentationManagementControllerResolveIssuerMetadataErrors, cs as PresentationManagementControllerResolveIssuerMetadataResponses, ct as PresentationManagementControllerStorePresentationConfigData, cu as PresentationManagementControllerStorePresentationConfigResponse, cv as PresentationManagementControllerStorePresentationConfigResponses, cw as PresentationManagementControllerUpdateConfigurationData, cx as PresentationManagementControllerUpdateConfigurationResponse, cy as PresentationManagementControllerUpdateConfigurationResponses, cz as PresentationRequest, cA as PublicKeyInfoDto, cB as RegistrarConfigResponseDto, cC as RegistrarControllerCreateAccessCertificateData, cD as RegistrarControllerCreateAccessCertificateErrors, cE as RegistrarControllerCreateAccessCertificateResponse, cF as RegistrarControllerCreateAccessCertificateResponses, cG as RegistrarControllerCreateConfigData, cH as RegistrarControllerCreateConfigErrors, cI as RegistrarControllerCreateConfigResponse, cJ as RegistrarControllerCreateConfigResponses, cK as RegistrarControllerDeleteConfigData, cL as RegistrarControllerDeleteConfigResponse, cM as RegistrarControllerDeleteConfigResponses, cN as RegistrarControllerGetConfigData, cO as RegistrarControllerGetConfigErrors, cP as RegistrarControllerGetConfigResponse, cQ as RegistrarControllerGetConfigResponses, cR as RegistrarControllerUpdateConfigData, cS as RegistrarControllerUpdateConfigErrors, cT as RegistrarControllerUpdateConfigResponse, cU as RegistrarControllerUpdateConfigResponses, cV as RegistrationCertificateBody, cW as RegistrationCertificatePurpose, cX as RegistrationCertificateRequest, cY as ResolveIssuerMetadataDto, cZ as RoleDto, c_ as RootOfTrustPolicy, c$ as RotationPolicyCreateDto, d0 as RotationPolicyImportDto, d1 as RotationPolicyResponseDto, d2 as RotationPolicyUpdateDto, d3 as SchemaResponse, d4 as SessionConfigControllerGetConfigData, d5 as SessionConfigControllerGetConfigResponse, d6 as SessionConfigControllerGetConfigResponses, d7 as SessionConfigControllerResetConfigData, d8 as SessionConfigControllerResetConfigResponses, d9 as SessionConfigControllerUpdateConfigData, da as SessionConfigControllerUpdateConfigResponse, db as SessionConfigControllerUpdateConfigResponses, dc as SessionControllerDeleteSessionData, dd as SessionControllerDeleteSessionResponses, de as SessionControllerGetAllSessionsData, df as SessionControllerGetAllSessionsResponse, dg as SessionControllerGetAllSessionsResponses, dh as SessionControllerGetSessionData, di as SessionControllerGetSessionLogsData, dj as SessionControllerGetSessionLogsResponse, dk as SessionControllerGetSessionLogsResponses, dl as SessionControllerGetSessionResponse, dm as SessionControllerGetSessionResponses, dn as SessionControllerRevokeAllData, dp as SessionControllerRevokeAllResponses, dq as SessionEventsControllerSubscribeToSessionEventsData, dr as SessionEventsControllerSubscribeToSessionEventsResponses, ds as SessionLogEntryResponseDto, dt as SessionStorageConfig, du as StatusListAggregationDto, dv as StatusListConfig, dw as StatusListConfigControllerGetConfigData, dx as StatusListConfigControllerGetConfigResponse, dy as StatusListConfigControllerGetConfigResponses, dz as StatusListConfigControllerResetConfigData, dA as StatusListConfigControllerResetConfigResponse, dB as StatusListConfigControllerResetConfigResponses, dC as StatusListConfigControllerUpdateConfigData, dD as StatusListConfigControllerUpdateConfigResponse, dE as StatusListConfigControllerUpdateConfigResponses, dF as StatusListImportDto, dG as StatusListManagementControllerCreateListData, dH as StatusListManagementControllerCreateListResponse, dI as StatusListManagementControllerCreateListResponses, dJ as StatusListManagementControllerDeleteListData, dK as StatusListManagementControllerDeleteListResponse, dL as StatusListManagementControllerDeleteListResponses, dM as StatusListManagementControllerGetListData, dN as StatusListManagementControllerGetListResponse, dO as StatusListManagementControllerGetListResponses, dP as StatusListManagementControllerGetListsData, dQ as StatusListManagementControllerGetListsResponse, dR as StatusListManagementControllerGetListsResponses, dS as StatusListManagementControllerUpdateListData, dT as StatusListManagementControllerUpdateListResponse, dU as StatusListManagementControllerUpdateListResponses, dV as StatusListResponseDto, dW as StatusUpdateDto, dX as StorageControllerUploadData, dY as StorageControllerUploadResponse, dZ as StorageControllerUploadResponses, d_ as TenantControllerDeleteTenantData, d$ as TenantControllerDeleteTenantResponses, e0 as TenantControllerGetTenantData, e1 as TenantControllerGetTenantResponse, e2 as TenantControllerGetTenantResponses, e3 as TenantControllerGetTenantsData, e4 as TenantControllerGetTenantsResponse, e5 as TenantControllerGetTenantsResponses, e6 as TenantControllerInitTenantData, e7 as TenantControllerInitTenantResponse, e8 as TenantControllerInitTenantResponses, e9 as TenantControllerUpdateTenantData, ea as TenantControllerUpdateTenantResponse, eb as TenantControllerUpdateTenantResponses, ec as TenantEntity, ed as TokenResponse, ee as TransactionData, ef as TrustList, eg as TrustListControllerCreateTrustListData, eh as TrustListControllerCreateTrustListResponse, ei as TrustListControllerCreateTrustListResponses, ej as TrustListControllerDeleteTrustListData, ek as TrustListControllerDeleteTrustListResponses, el as TrustListControllerExportTrustListData, em as TrustListControllerExportTrustListResponse, en as TrustListControllerExportTrustListResponses, eo as TrustListControllerGetAllTrustListsData, ep as TrustListControllerGetAllTrustListsResponse, eq as TrustListControllerGetAllTrustListsResponses, er as TrustListControllerGetTrustListData, es as TrustListControllerGetTrustListResponse, et as TrustListControllerGetTrustListResponses, eu as TrustListControllerGetTrustListVersionData, ev as TrustListControllerGetTrustListVersionResponse, ew as TrustListControllerGetTrustListVersionResponses, ex as TrustListControllerGetTrustListVersionsData, ey as TrustListControllerGetTrustListVersionsResponse, ez as TrustListControllerGetTrustListVersionsResponses, eA as TrustListControllerUpdateTrustListData, eB as TrustListControllerUpdateTrustListResponse, eC as TrustListControllerUpdateTrustListResponses, eD as TrustListCreateDto, eE as TrustListEntityInfo, eF as TrustListVersion, eG as TrustedAuthorityQuery, eH as UpdateAttributeProviderDto, eI as UpdateClientDto, eJ as UpdateRegistrarConfigDto, eK as UpdateSessionConfigDto, eL as UpdateStatusListConfigDto, eM as UpdateStatusListDto, eN as UpdateTenantDto, eO as UpdateWebhookEndpointDto, eP as UpstreamOidcConfig, eQ as Vct, eR as VerifierOfferControllerGetOfferData, eS as VerifierOfferControllerGetOfferResponse, eT as VerifierOfferControllerGetOfferResponses, eU as WebHookAuthConfigHeader, eV as WebHookAuthConfigNone, eW as WebhookConfig, eX as WebhookEndpointControllerCreateData, eY as WebhookEndpointControllerCreateResponses, eZ as WebhookEndpointControllerDeleteData, e_ as WebhookEndpointControllerDeleteErrors, e$ as WebhookEndpointControllerDeleteResponses, f0 as WebhookEndpointControllerGetAllData, f1 as WebhookEndpointControllerGetAllResponses, f2 as WebhookEndpointControllerGetByIdData, f3 as WebhookEndpointControllerGetByIdErrors, f4 as WebhookEndpointControllerGetByIdResponses, f5 as WebhookEndpointControllerUpdateData, f6 as WebhookEndpointControllerUpdateErrors, f7 as WebhookEndpointControllerUpdateResponses, f8 as WebhookEndpointEntity } from './types.gen-CVLCgolx.mjs';
1
+ import { S as Session } from './types.gen-DWk5kPkH.mjs';
2
+ export { A as AccessCertificateRefDto, a as AllowListPolicy, b as ApiKeyConfig, c as AppControllerGetFrontendConfigData, d as AppControllerGetFrontendConfigResponse, e as AppControllerGetFrontendConfigResponses, f as AppControllerGetVersionData, g as AppControllerGetVersionResponses, h as AttestationBasedPolicy, i as AttributeProviderControllerCreateData, j as AttributeProviderControllerCreateResponses, k as AttributeProviderControllerDeleteData, l as AttributeProviderControllerDeleteErrors, m as AttributeProviderControllerDeleteResponses, n as AttributeProviderControllerGetAllData, o as AttributeProviderControllerGetAllResponses, p as AttributeProviderControllerGetByIdData, q as AttributeProviderControllerGetByIdErrors, r as AttributeProviderControllerGetByIdResponses, s as AttributeProviderControllerUpdateData, t as AttributeProviderControllerUpdateErrors, u as AttributeProviderControllerUpdateResponses, v as AttributeProviderEntity, w as AuthenticationMethodAuth, x as AuthenticationMethodNone, y as AuthenticationMethodPresentation, z as AuthenticationUrlConfig, B as AuthorizationResponse, 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 CertificateInfoDto, P as ChainedAsConfig, Q as ChainedAsErrorResponseDto, R as ChainedAsParResponseDto, T as ChainedAsTokenConfig, U as ChainedAsTokenRequestDto, V as ChainedAsTokenResponseDto, W as ClaimDisplayInfo, X as ClaimMetadata, Y as ClaimsQuery, Z as ClientControllerCreateClientData, _ as ClientControllerCreateClientResponse, $ as ClientControllerCreateClientResponses, a0 as ClientControllerDeleteClientData, a1 as ClientControllerDeleteClientResponses, a2 as ClientControllerGetClientData, a3 as ClientControllerGetClientResponse, a4 as ClientControllerGetClientResponses, a5 as ClientControllerGetClientSecretData, a6 as ClientControllerGetClientSecretResponse, a7 as ClientControllerGetClientSecretResponses, a8 as ClientControllerGetClientsData, a9 as ClientControllerGetClientsResponse, aa as ClientControllerGetClientsResponses, ab as ClientControllerRotateClientSecretData, ac as ClientControllerRotateClientSecretResponse, ad as ClientControllerRotateClientSecretResponses, ae as ClientControllerUpdateClientData, af as ClientControllerUpdateClientResponse, ag as ClientControllerUpdateClientResponses, ah as ClientCredentialsDto, ai as ClientEntity, aj as ClientOptions, ak as ClientSecretResponseDto, al as CompleteDeferredDto, am as CreateAccessCertificateDto, an as CreateAttributeProviderDto, ao as CreateClientDto, ap as CreateRegistrarConfigDto, aq as CreateStatusListDto, ar as CreateTenantDto, as as CreateUserDto, at as CreateWebhookEndpointDto, au as CredentialConfig, av as CredentialConfigControllerDeleteIssuanceConfigurationData, aw as CredentialConfigControllerDeleteIssuanceConfigurationResponse, ax as CredentialConfigControllerDeleteIssuanceConfigurationResponses, ay as CredentialConfigControllerGetConfigByIdData, az as CredentialConfigControllerGetConfigByIdResponse, aA as CredentialConfigControllerGetConfigByIdResponses, aB as CredentialConfigControllerGetConfigsData, aC as CredentialConfigControllerGetConfigsResponse, aD as CredentialConfigControllerGetConfigsResponses, aE as CredentialConfigControllerSignSchemaMetaConfigData, aF as CredentialConfigControllerSignSchemaMetaConfigErrors, aG as CredentialConfigControllerSignSchemaMetaConfigResponses, aH as CredentialConfigControllerSignVersionSchemaMetaConfigData, aI as CredentialConfigControllerSignVersionSchemaMetaConfigErrors, aJ as CredentialConfigControllerSignVersionSchemaMetaConfigResponses, aK as CredentialConfigControllerStoreCredentialConfigurationData, aL as CredentialConfigControllerStoreCredentialConfigurationResponse, aM as CredentialConfigControllerStoreCredentialConfigurationResponses, aN as CredentialConfigControllerUpdateCredentialConfigurationData, aO as CredentialConfigControllerUpdateCredentialConfigurationResponse, aP as CredentialConfigControllerUpdateCredentialConfigurationResponses, aQ as CredentialConfigCreate, aR as CredentialConfigUpdate, aS as CredentialOfferControllerGetOfferData, aT as CredentialOfferControllerGetOfferResponse, aU as CredentialOfferControllerGetOfferResponses, aV as CredentialQuery, aW as CredentialSetQuery, aX as Dcql, aY as DeferredControllerCompleteDeferredData, aZ as DeferredControllerCompleteDeferredErrors, a_ as DeferredControllerCompleteDeferredResponse, a$ as DeferredControllerCompleteDeferredResponses, b0 as DeferredControllerFailDeferredData, b1 as DeferredControllerFailDeferredErrors, b2 as DeferredControllerFailDeferredResponse, b3 as DeferredControllerFailDeferredResponses, b4 as DeferredCredentialRequestDto, b5 as DeferredOperationResponse, b6 as DeprecateSchemaMetadataDto, b7 as Display, b8 as DisplayImage, b9 as DisplayInfo, ba as DisplayLogo, bb as EcJwk, bc as EcPublic, bd as EmbeddedDisclosurePolicy, be as ExportEcJwk, bf as ExportRotationPolicyDto, bg as ExternalTrustListEntity, bh as FailDeferredDto, bi as FileUploadDto, bj as FrontendConfigResponseDto, bk as GrafanaConfigDto, bl as IaeActionOpenid4VpPresentation, bm as IaeActionRedirectToWeb, bn as ImportTenantDto, bo as InteractiveAuthorizationCodeResponseDto, bp as InteractiveAuthorizationErrorResponseDto, bq as InteractiveAuthorizationRequestDto, br as InternalTrustListEntity, bs as IssuanceConfig, bt as IssuanceConfigControllerGetIssuanceConfigurationsData, bu as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bv as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bw as IssuanceConfigControllerStoreIssuanceConfigurationData, bx as IssuanceConfigControllerStoreIssuanceConfigurationResponse, by as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bz as IssuanceDto, bA as IssuerMetadataCredentialConfig, bB as JwksResponseDto, bC as KeyAttestationsRequired, bD as KeyChainControllerCreateData, bE as KeyChainControllerCreateResponses, bF as KeyChainControllerDeleteData, bG as KeyChainControllerDeleteErrors, bH as KeyChainControllerDeleteResponses, bI as KeyChainControllerExportData, bJ as KeyChainControllerExportErrors, bK as KeyChainControllerExportResponse, bL as KeyChainControllerExportResponses, bM as KeyChainControllerGetAllData, bN as KeyChainControllerGetAllResponse, bO as KeyChainControllerGetAllResponses, bP as KeyChainControllerGetByIdData, bQ as KeyChainControllerGetByIdErrors, bR as KeyChainControllerGetByIdResponse, bS as KeyChainControllerGetByIdResponses, bT as KeyChainControllerGetProvidersData, bU as KeyChainControllerGetProvidersResponse, bV as KeyChainControllerGetProvidersResponses, bW as KeyChainControllerImportData, bX as KeyChainControllerImportResponses, bY as KeyChainControllerRotateData, bZ as KeyChainControllerRotateErrors, b_ as KeyChainControllerRotateResponses, b$ as KeyChainControllerUpdateData, c0 as KeyChainControllerUpdateErrors, c1 as KeyChainControllerUpdateResponses, c2 as KeyChainCreateDto, c3 as KeyChainEntity, c4 as KeyChainExportDto, c5 as KeyChainImportDto, c6 as KeyChainResponseDto, c7 as KeyChainUpdateDto, c8 as KmsProviderCapabilitiesDto, c9 as KmsProviderInfoDto, ca as KmsProvidersResponseDto, cb as ManagedUserDto, cc as MetadataSchemaDto, cd as NoneTrustPolicy, ce as NotificationRequestDto, cf as Object, cg as ObjectWritable, ch as OfferRequestDto, ci as OfferResponse, cj as ParResponseDto, ck as PolicyCredential, cl as PresentationAttachment, cm as PresentationConfig, cn as PresentationConfigCreateDto, co as PresentationConfigUpdateDto, cp as PresentationConfigWritable, cq as PresentationDuringIssuanceConfig, cr as PresentationManagementControllerConfigurationData, cs as PresentationManagementControllerConfigurationResponse, ct as PresentationManagementControllerConfigurationResponses, cu as PresentationManagementControllerDeleteConfigurationData, cv as PresentationManagementControllerDeleteConfigurationResponses, cw as PresentationManagementControllerGetConfigurationData, cx as PresentationManagementControllerGetConfigurationResponse, cy as PresentationManagementControllerGetConfigurationResponses, cz as PresentationManagementControllerListSchemaMetadataCatalogData, cA as PresentationManagementControllerListSchemaMetadataCatalogResponses, cB as PresentationManagementControllerReissueRegistrationCertificateData, cC as PresentationManagementControllerReissueRegistrationCertificateErrors, cD as PresentationManagementControllerReissueRegistrationCertificateResponses, cE as PresentationManagementControllerResolveIssuerMetadataData, cF as PresentationManagementControllerResolveIssuerMetadataErrors, cG as PresentationManagementControllerResolveIssuerMetadataResponses, cH as PresentationManagementControllerResolveSchemaMetadataData, cI as PresentationManagementControllerResolveSchemaMetadataErrors, cJ as PresentationManagementControllerResolveSchemaMetadataResponses, cK as PresentationManagementControllerStorePresentationConfigData, cL as PresentationManagementControllerStorePresentationConfigResponse, cM as PresentationManagementControllerStorePresentationConfigResponses, cN as PresentationManagementControllerUpdateConfigurationData, cO as PresentationManagementControllerUpdateConfigurationResponse, cP as PresentationManagementControllerUpdateConfigurationResponses, cQ as PresentationRequest, cR as PublicKeyInfoDto, cS as RegistrarConfigResponseDto, cT as RegistrarControllerCreateAccessCertificateData, cU as RegistrarControllerCreateAccessCertificateErrors, cV as RegistrarControllerCreateAccessCertificateResponse, cW as RegistrarControllerCreateAccessCertificateResponses, cX as RegistrarControllerCreateConfigData, cY as RegistrarControllerCreateConfigErrors, cZ as RegistrarControllerCreateConfigResponse, c_ as RegistrarControllerCreateConfigResponses, c$ as RegistrarControllerDeleteConfigData, d0 as RegistrarControllerDeleteConfigResponse, d1 as RegistrarControllerDeleteConfigResponses, d2 as RegistrarControllerGetConfigData, d3 as RegistrarControllerGetConfigErrors, d4 as RegistrarControllerGetConfigResponse, d5 as RegistrarControllerGetConfigResponses, d6 as RegistrarControllerUpdateConfigData, d7 as RegistrarControllerUpdateConfigErrors, d8 as RegistrarControllerUpdateConfigResponse, d9 as RegistrarControllerUpdateConfigResponses, da as RegistrationCertificateBody, db as RegistrationCertificateDefaults, dc as RegistrationCertificatePurpose, dd as RegistrationCertificateRequest, de as ResolveIssuerMetadataDto, df as ResolveSchemaMetadataDto, dg as RoleDto, dh as RootOfTrustPolicy, di as RotationPolicyCreateDto, dj as RotationPolicyImportDto, dk as RotationPolicyResponseDto, dl as RotationPolicyUpdateDto, dm as SchemaMetaConfig, dn as SchemaMetadataControllerDeprecateVersionData, dp as SchemaMetadataControllerDeprecateVersionResponse, dq as SchemaMetadataControllerDeprecateVersionResponses, dr as SchemaMetadataControllerExportData, ds as SchemaMetadataControllerExportResponse, dt as SchemaMetadataControllerExportResponses, du as SchemaMetadataControllerFindAllData, dv as SchemaMetadataControllerFindAllResponse, dw as SchemaMetadataControllerFindAllResponses, dx as SchemaMetadataControllerFindOneData, dy as SchemaMetadataControllerFindOneResponse, dz as SchemaMetadataControllerFindOneResponses, dA as SchemaMetadataControllerGetJwtData, dB as SchemaMetadataControllerGetJwtResponse, dC as SchemaMetadataControllerGetJwtResponses, dD as SchemaMetadataControllerGetLatestData, dE as SchemaMetadataControllerGetLatestResponse, dF as SchemaMetadataControllerGetLatestResponses, dG as SchemaMetadataControllerGetSchemaData, dH as SchemaMetadataControllerGetSchemaResponse, dI as SchemaMetadataControllerGetSchemaResponses, dJ as SchemaMetadataControllerGetVersionsData, dK as SchemaMetadataControllerGetVersionsResponse, dL as SchemaMetadataControllerGetVersionsResponses, dM as SchemaMetadataControllerGetVocabulariesData, dN as SchemaMetadataControllerGetVocabulariesResponse, dO as SchemaMetadataControllerGetVocabulariesResponses, dP as SchemaMetadataControllerRemoveData, dQ as SchemaMetadataControllerRemoveResponses, dR as SchemaMetadataControllerUpdateData, dS as SchemaMetadataControllerUpdateResponse, dT as SchemaMetadataControllerUpdateResponses, dU as SchemaMetadataResponseDto, dV as SchemaMetadataVocabulariesDto, dW as SchemaResponse, dX as SchemaUriEntry, dY as SessionConfigControllerGetConfigData, dZ as SessionConfigControllerGetConfigResponse, d_ as SessionConfigControllerGetConfigResponses, d$ as SessionConfigControllerResetConfigData, e0 as SessionConfigControllerResetConfigResponses, e1 as SessionConfigControllerUpdateConfigData, e2 as SessionConfigControllerUpdateConfigResponse, e3 as SessionConfigControllerUpdateConfigResponses, e4 as SessionControllerDeleteSessionData, e5 as SessionControllerDeleteSessionResponses, e6 as SessionControllerGetAllSessionsData, e7 as SessionControllerGetAllSessionsResponse, e8 as SessionControllerGetAllSessionsResponses, e9 as SessionControllerGetSessionData, ea as SessionControllerGetSessionLogsData, eb as SessionControllerGetSessionLogsResponse, ec as SessionControllerGetSessionLogsResponses, ed as SessionControllerGetSessionResponse, ee as SessionControllerGetSessionResponses, ef as SessionControllerRevokeAllData, eg as SessionControllerRevokeAllResponses, eh as SessionEventsControllerSubscribeToSessionEventsData, ei as SessionEventsControllerSubscribeToSessionEventsResponses, ej as SessionLogEntryResponseDto, ek as SessionStorageConfig, el as SignSchemaMetaConfigDto, em as SignVersionSchemaMetaConfigDto, en as StatusListAggregationDto, eo as StatusListConfig, ep as StatusListConfigControllerGetConfigData, eq as StatusListConfigControllerGetConfigResponse, er as StatusListConfigControllerGetConfigResponses, es as StatusListConfigControllerResetConfigData, et as StatusListConfigControllerResetConfigResponse, eu as StatusListConfigControllerResetConfigResponses, ev as StatusListConfigControllerUpdateConfigData, ew as StatusListConfigControllerUpdateConfigResponse, ex as StatusListConfigControllerUpdateConfigResponses, ey as StatusListImportDto, ez as StatusListManagementControllerCreateListData, eA as StatusListManagementControllerCreateListResponse, eB as StatusListManagementControllerCreateListResponses, eC as StatusListManagementControllerDeleteListData, eD as StatusListManagementControllerDeleteListResponse, eE as StatusListManagementControllerDeleteListResponses, eF as StatusListManagementControllerGetListData, eG as StatusListManagementControllerGetListResponse, eH as StatusListManagementControllerGetListResponses, eI as StatusListManagementControllerGetListsData, eJ as StatusListManagementControllerGetListsResponse, eK as StatusListManagementControllerGetListsResponses, eL as StatusListManagementControllerUpdateListData, eM as StatusListManagementControllerUpdateListResponse, eN as StatusListManagementControllerUpdateListResponses, eO as StatusListResponseDto, eP as StatusUpdateDto, eQ as StorageControllerUploadData, eR as StorageControllerUploadResponse, eS as StorageControllerUploadResponses, eT as TenantControllerDeleteTenantData, eU as TenantControllerDeleteTenantResponses, eV as TenantControllerGetTenantData, eW as TenantControllerGetTenantResponse, eX as TenantControllerGetTenantResponses, eY as TenantControllerGetTenantsData, eZ as TenantControllerGetTenantsResponse, e_ as TenantControllerGetTenantsResponses, e$ as TenantControllerInitTenantData, f0 as TenantControllerInitTenantResponse, f1 as TenantControllerInitTenantResponses, f2 as TenantControllerUpdateTenantData, f3 as TenantControllerUpdateTenantResponse, f4 as TenantControllerUpdateTenantResponses, f5 as TenantEntity, f6 as TokenResponse, f7 as TransactionData, f8 as TrustAuthorityDto, f9 as TrustAuthorityEntry, fa as TrustList, fb as TrustListControllerCreateTrustListData, fc as TrustListControllerCreateTrustListResponse, fd as TrustListControllerCreateTrustListResponses, fe as TrustListControllerDeleteTrustListData, ff as TrustListControllerDeleteTrustListResponses, fg as TrustListControllerExportTrustListData, fh as TrustListControllerExportTrustListResponse, fi as TrustListControllerExportTrustListResponses, fj as TrustListControllerGetAllTrustListsData, fk as TrustListControllerGetAllTrustListsResponse, fl as TrustListControllerGetAllTrustListsResponses, fm as TrustListControllerGetTrustListData, fn as TrustListControllerGetTrustListResponse, fo as TrustListControllerGetTrustListResponses, fp as TrustListControllerGetTrustListVersionData, fq as TrustListControllerGetTrustListVersionResponse, fr as TrustListControllerGetTrustListVersionResponses, fs as TrustListControllerGetTrustListVersionsData, ft as TrustListControllerGetTrustListVersionsResponse, fu as TrustListControllerGetTrustListVersionsResponses, fv as TrustListControllerUpdateTrustListData, fw as TrustListControllerUpdateTrustListResponse, fx as TrustListControllerUpdateTrustListResponses, fy as TrustListCreateDto, fz as TrustListEntityInfo, fA as TrustListVersion, fB as TrustedAuthorityQuery, fC as UpdateAttributeProviderDto, fD as UpdateClientDto, fE as UpdateRegistrarConfigDto, fF as UpdateSchemaMetadataDto, fG as UpdateSessionConfigDto, fH as UpdateStatusListConfigDto, fI as UpdateStatusListDto, fJ as UpdateTenantDto, fK as UpdateUserDto, fL as UpdateWebhookEndpointDto, fM as UpstreamOidcConfig, fN as UserControllerCreateUserData, fO as UserControllerCreateUserResponse, fP as UserControllerCreateUserResponses, fQ as UserControllerDeleteUserData, fR as UserControllerDeleteUserResponses, fS as UserControllerGetUserData, fT as UserControllerGetUserResponse, fU as UserControllerGetUserResponses, fV as UserControllerGetUsersData, fW as UserControllerGetUsersResponse, fX as UserControllerGetUsersResponses, fY as UserControllerUpdateUserData, fZ as UserControllerUpdateUserResponse, f_ as UserControllerUpdateUserResponses, f$ as Vct, g0 as VerifierOfferControllerGetOfferData, g1 as VerifierOfferControllerGetOfferResponse, g2 as VerifierOfferControllerGetOfferResponses, g3 as VocabularyEntryDto, g4 as WebHookAuthConfigHeader, g5 as WebHookAuthConfigNone, g6 as WebhookConfig, g7 as WebhookEndpointControllerCreateData, g8 as WebhookEndpointControllerCreateResponses, g9 as WebhookEndpointControllerDeleteData, ga as WebhookEndpointControllerDeleteErrors, gb as WebhookEndpointControllerDeleteResponses, gc as WebhookEndpointControllerGetAllData, gd as WebhookEndpointControllerGetAllResponse, ge as WebhookEndpointControllerGetAllResponses, gf as WebhookEndpointControllerGetByIdData, gg as WebhookEndpointControllerGetByIdErrors, gh as WebhookEndpointControllerGetByIdResponses, gi as WebhookEndpointControllerUpdateData, gj as WebhookEndpointControllerUpdateErrors, gk as WebhookEndpointControllerUpdateResponses, gl as WebhookEndpointEntity } from './types.gen-DWk5kPkH.mjs';
3
3
  export { client } from './api/client.gen.mjs';
4
- export { Options, appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerGetSessionLogs, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate } from './api/index.mjs';
5
- import './types.gen-CVkHMB8b.mjs';
4
+ export { Options, appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerSignSchemaMetaConfig, credentialConfigControllerSignVersionSchemaMetaConfig, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerListSchemaMetadataCatalog, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerResolveSchemaMetadata, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, schemaMetadataControllerDeprecateVersion, schemaMetadataControllerExport, schemaMetadataControllerFindAll, schemaMetadataControllerFindOne, schemaMetadataControllerGetJwt, schemaMetadataControllerGetLatest, schemaMetadataControllerGetSchema, schemaMetadataControllerGetVersions, schemaMetadataControllerGetVocabularies, schemaMetadataControllerRemove, schemaMetadataControllerUpdate, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerGetSessionLogs, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate } from './api/index.mjs';
5
+ import './types.gen-DKrNRB-E.mjs';
6
6
 
7
7
  /**
8
8
  * Digital Credential response from the browser API