@eudiplo/sdk-core 4.2.0 → 4.4.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 +105 -43
- package/dist/api/index.d.ts +105 -43
- package/dist/api/index.js +165 -40
- package/dist/api/index.mjs +149 -41
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +166 -41
- package/dist/index.mjs +150 -42
- package/dist/{types.gen-5zlqZUfP.d.mts → types.gen-DpwDhqbe.d.mts} +871 -257
- package/dist/{types.gen-5zlqZUfP.d.ts → types.gen-DpwDhqbe.d.ts} +871 -257
- package/package.json +4 -4
package/dist/api/index.js
CHANGED
|
@@ -849,6 +849,14 @@ var appControllerGetFrontendConfig = (options) => (options?.client ?? client).ge
|
|
|
849
849
|
url: "/api/frontend-config",
|
|
850
850
|
...options
|
|
851
851
|
});
|
|
852
|
+
var authControllerGetOAuth2Token = (options) => (options.client ?? client).post({
|
|
853
|
+
url: "/api/oauth2/token",
|
|
854
|
+
...options,
|
|
855
|
+
headers: {
|
|
856
|
+
"Content-Type": "application/json",
|
|
857
|
+
...options.headers
|
|
858
|
+
}
|
|
859
|
+
});
|
|
852
860
|
var tenantControllerGetTenants = (options) => (options?.client ?? client).get({
|
|
853
861
|
security: [{ scheme: "bearer", type: "http" }],
|
|
854
862
|
url: "/api/tenant",
|
|
@@ -882,6 +890,11 @@ var tenantControllerUpdateTenant = (options) => (options.client ?? client).patch
|
|
|
882
890
|
...options.headers
|
|
883
891
|
}
|
|
884
892
|
});
|
|
893
|
+
var auditLogControllerGetAuditLogs = (options) => (options?.client ?? client).get({
|
|
894
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
895
|
+
url: "/api/admin/audit-logs",
|
|
896
|
+
...options
|
|
897
|
+
});
|
|
885
898
|
var clientControllerGetClients = (options) => (options?.client ?? client).get({
|
|
886
899
|
security: [{ scheme: "bearer", type: "http" }],
|
|
887
900
|
url: "/api/client",
|
|
@@ -1106,6 +1119,24 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1106
1119
|
...options.headers
|
|
1107
1120
|
}
|
|
1108
1121
|
});
|
|
1122
|
+
var credentialConfigControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1123
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1124
|
+
url: "/api/issuer/credentials/schema-metadata/sign",
|
|
1125
|
+
...options,
|
|
1126
|
+
headers: {
|
|
1127
|
+
"Content-Type": "application/json",
|
|
1128
|
+
...options.headers
|
|
1129
|
+
}
|
|
1130
|
+
});
|
|
1131
|
+
var credentialConfigControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1132
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1133
|
+
url: "/api/issuer/credentials/schema-metadata/sign-version",
|
|
1134
|
+
...options,
|
|
1135
|
+
headers: {
|
|
1136
|
+
"Content-Type": "application/json",
|
|
1137
|
+
...options.headers
|
|
1138
|
+
}
|
|
1139
|
+
});
|
|
1109
1140
|
var attributeProviderControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1110
1141
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1111
1142
|
url: "/api/issuer/attribute-providers",
|
|
@@ -1172,6 +1203,54 @@ var webhookEndpointControllerUpdate = (options) => (options.client ?? client).pa
|
|
|
1172
1203
|
...options.headers
|
|
1173
1204
|
}
|
|
1174
1205
|
});
|
|
1206
|
+
var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
|
|
1207
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1208
|
+
url: "/api/trust-list",
|
|
1209
|
+
...options
|
|
1210
|
+
});
|
|
1211
|
+
var trustListControllerCreateTrustList = (options) => (options.client ?? client).post({
|
|
1212
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1213
|
+
url: "/api/trust-list",
|
|
1214
|
+
...options,
|
|
1215
|
+
headers: {
|
|
1216
|
+
"Content-Type": "application/json",
|
|
1217
|
+
...options.headers
|
|
1218
|
+
}
|
|
1219
|
+
});
|
|
1220
|
+
var trustListControllerDeleteTrustList = (options) => (options.client ?? client).delete({
|
|
1221
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1222
|
+
url: "/api/trust-list/{id}",
|
|
1223
|
+
...options
|
|
1224
|
+
});
|
|
1225
|
+
var trustListControllerGetTrustList = (options) => (options.client ?? client).get({
|
|
1226
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1227
|
+
url: "/api/trust-list/{id}",
|
|
1228
|
+
...options
|
|
1229
|
+
});
|
|
1230
|
+
var trustListControllerUpdateTrustList = (options) => (options.client ?? client).put({
|
|
1231
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1232
|
+
url: "/api/trust-list/{id}",
|
|
1233
|
+
...options,
|
|
1234
|
+
headers: {
|
|
1235
|
+
"Content-Type": "application/json",
|
|
1236
|
+
...options.headers
|
|
1237
|
+
}
|
|
1238
|
+
});
|
|
1239
|
+
var trustListControllerExportTrustList = (options) => (options.client ?? client).get({
|
|
1240
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1241
|
+
url: "/api/trust-list/{id}/export",
|
|
1242
|
+
...options
|
|
1243
|
+
});
|
|
1244
|
+
var trustListControllerGetTrustListVersions = (options) => (options.client ?? client).get({
|
|
1245
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1246
|
+
url: "/api/trust-list/{id}/versions",
|
|
1247
|
+
...options
|
|
1248
|
+
});
|
|
1249
|
+
var trustListControllerGetTrustListVersion = (options) => (options.client ?? client).get({
|
|
1250
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1251
|
+
url: "/api/trust-list/{id}/versions/{versionId}",
|
|
1252
|
+
...options
|
|
1253
|
+
});
|
|
1175
1254
|
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1176
1255
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1177
1256
|
url: "/api/verifier/config",
|
|
@@ -1195,6 +1274,20 @@ var presentationManagementControllerResolveIssuerMetadata = (options) => (option
|
|
|
1195
1274
|
...options.headers
|
|
1196
1275
|
}
|
|
1197
1276
|
});
|
|
1277
|
+
var presentationManagementControllerResolveSchemaMetadata = (options) => (options.client ?? client).post({
|
|
1278
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1279
|
+
url: "/api/verifier/config/schema-metadata/resolve",
|
|
1280
|
+
...options,
|
|
1281
|
+
headers: {
|
|
1282
|
+
"Content-Type": "application/json",
|
|
1283
|
+
...options.headers
|
|
1284
|
+
}
|
|
1285
|
+
});
|
|
1286
|
+
var presentationManagementControllerListSchemaMetadataCatalog = (options) => (options?.client ?? client).get({
|
|
1287
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1288
|
+
url: "/api/verifier/config/schema-metadata/catalog",
|
|
1289
|
+
...options
|
|
1290
|
+
});
|
|
1198
1291
|
var presentationManagementControllerDeleteConfiguration = (options) => (options.client ?? client).delete({
|
|
1199
1292
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1200
1293
|
url: "/api/verifier/config/{id}",
|
|
@@ -1276,80 +1369,95 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
|
|
|
1276
1369
|
...options.headers
|
|
1277
1370
|
}
|
|
1278
1371
|
});
|
|
1279
|
-
var
|
|
1372
|
+
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1280
1373
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1281
|
-
url: "/api/
|
|
1282
|
-
...options
|
|
1283
|
-
headers: {
|
|
1284
|
-
"Content-Type": "application/json",
|
|
1285
|
-
...options.headers
|
|
1286
|
-
}
|
|
1374
|
+
url: "/api/schema-metadata/vocabularies",
|
|
1375
|
+
...options
|
|
1287
1376
|
});
|
|
1288
|
-
var
|
|
1377
|
+
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1289
1378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1290
|
-
url: "/api/
|
|
1291
|
-
...options
|
|
1292
|
-
headers: {
|
|
1293
|
-
"Content-Type": "application/json",
|
|
1294
|
-
...options.headers
|
|
1295
|
-
}
|
|
1379
|
+
url: "/api/schema-metadata",
|
|
1380
|
+
...options
|
|
1296
1381
|
});
|
|
1297
|
-
var
|
|
1382
|
+
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1298
1383
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1299
|
-
url: "/api/
|
|
1300
|
-
...options
|
|
1301
|
-
headers: {
|
|
1302
|
-
"Content-Type": "application/json",
|
|
1303
|
-
...options.headers
|
|
1304
|
-
}
|
|
1384
|
+
url: "/api/schema-metadata/{id}",
|
|
1385
|
+
...options
|
|
1305
1386
|
});
|
|
1306
|
-
var
|
|
1387
|
+
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1307
1388
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1308
|
-
url: "/api/
|
|
1389
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1309
1390
|
...options
|
|
1310
1391
|
});
|
|
1311
|
-
var
|
|
1392
|
+
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1312
1393
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1313
|
-
url: "/api/
|
|
1394
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1314
1395
|
...options,
|
|
1315
1396
|
headers: {
|
|
1316
1397
|
"Content-Type": "application/json",
|
|
1317
1398
|
...options.headers
|
|
1318
1399
|
}
|
|
1319
1400
|
});
|
|
1320
|
-
var
|
|
1401
|
+
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1321
1402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1322
|
-
url: "/api/
|
|
1403
|
+
url: "/api/schema-metadata/{id}/latest",
|
|
1323
1404
|
...options
|
|
1324
1405
|
});
|
|
1325
|
-
var
|
|
1406
|
+
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1326
1407
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1327
|
-
url: "/api/
|
|
1408
|
+
url: "/api/schema-metadata/{id}/versions",
|
|
1328
1409
|
...options
|
|
1329
1410
|
});
|
|
1330
|
-
var
|
|
1411
|
+
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1331
1412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1332
|
-
url: "/api/
|
|
1413
|
+
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1414
|
+
...options
|
|
1415
|
+
});
|
|
1416
|
+
var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
|
|
1417
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1418
|
+
url: "/api/schema-metadata/{id}/versions/{version}/export",
|
|
1419
|
+
...options
|
|
1420
|
+
});
|
|
1421
|
+
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1422
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1423
|
+
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1424
|
+
...options
|
|
1425
|
+
});
|
|
1426
|
+
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1427
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1428
|
+
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1333
1429
|
...options,
|
|
1334
1430
|
headers: {
|
|
1335
1431
|
"Content-Type": "application/json",
|
|
1336
1432
|
...options.headers
|
|
1337
1433
|
}
|
|
1338
1434
|
});
|
|
1339
|
-
var
|
|
1435
|
+
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1340
1436
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1341
|
-
url: "/api/
|
|
1342
|
-
...options
|
|
1437
|
+
url: "/api/issuer/offer",
|
|
1438
|
+
...options,
|
|
1439
|
+
headers: {
|
|
1440
|
+
"Content-Type": "application/json",
|
|
1441
|
+
...options.headers
|
|
1442
|
+
}
|
|
1343
1443
|
});
|
|
1344
|
-
var
|
|
1444
|
+
var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
|
|
1345
1445
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1346
|
-
url: "/api/
|
|
1347
|
-
...options
|
|
1446
|
+
url: "/api/issuer/deferred/{transactionId}/complete",
|
|
1447
|
+
...options,
|
|
1448
|
+
headers: {
|
|
1449
|
+
"Content-Type": "application/json",
|
|
1450
|
+
...options.headers
|
|
1451
|
+
}
|
|
1348
1452
|
});
|
|
1349
|
-
var
|
|
1453
|
+
var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
|
|
1350
1454
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1351
|
-
url: "/api/
|
|
1352
|
-
...options
|
|
1455
|
+
url: "/api/issuer/deferred/{transactionId}/fail",
|
|
1456
|
+
...options,
|
|
1457
|
+
headers: {
|
|
1458
|
+
"Content-Type": "application/json",
|
|
1459
|
+
...options.headers
|
|
1460
|
+
}
|
|
1353
1461
|
});
|
|
1354
1462
|
var keyChainControllerGetProviders = (options) => (options?.client ?? client).get({
|
|
1355
1463
|
security: [{ scheme: "bearer", type: "http" }],
|
|
@@ -1435,6 +1543,8 @@ exports.attributeProviderControllerDelete = attributeProviderControllerDelete;
|
|
|
1435
1543
|
exports.attributeProviderControllerGetAll = attributeProviderControllerGetAll;
|
|
1436
1544
|
exports.attributeProviderControllerGetById = attributeProviderControllerGetById;
|
|
1437
1545
|
exports.attributeProviderControllerUpdate = attributeProviderControllerUpdate;
|
|
1546
|
+
exports.auditLogControllerGetAuditLogs = auditLogControllerGetAuditLogs;
|
|
1547
|
+
exports.authControllerGetOAuth2Token = authControllerGetOAuth2Token;
|
|
1438
1548
|
exports.cacheControllerClearAllCaches = cacheControllerClearAllCaches;
|
|
1439
1549
|
exports.cacheControllerClearStatusListCache = cacheControllerClearStatusListCache;
|
|
1440
1550
|
exports.cacheControllerClearTrustListCache = cacheControllerClearTrustListCache;
|
|
@@ -1449,6 +1559,8 @@ exports.clientControllerUpdateClient = clientControllerUpdateClient;
|
|
|
1449
1559
|
exports.credentialConfigControllerDeleteIssuanceConfiguration = credentialConfigControllerDeleteIssuanceConfiguration;
|
|
1450
1560
|
exports.credentialConfigControllerGetConfigById = credentialConfigControllerGetConfigById;
|
|
1451
1561
|
exports.credentialConfigControllerGetConfigs = credentialConfigControllerGetConfigs;
|
|
1562
|
+
exports.credentialConfigControllerSignSchemaMetaConfig = credentialConfigControllerSignSchemaMetaConfig;
|
|
1563
|
+
exports.credentialConfigControllerSignVersionSchemaMetaConfig = credentialConfigControllerSignVersionSchemaMetaConfig;
|
|
1452
1564
|
exports.credentialConfigControllerStoreCredentialConfiguration = credentialConfigControllerStoreCredentialConfiguration;
|
|
1453
1565
|
exports.credentialConfigControllerUpdateCredentialConfiguration = credentialConfigControllerUpdateCredentialConfiguration;
|
|
1454
1566
|
exports.credentialOfferControllerGetOffer = credentialOfferControllerGetOffer;
|
|
@@ -1468,8 +1580,10 @@ exports.keyChainControllerUpdate = keyChainControllerUpdate;
|
|
|
1468
1580
|
exports.presentationManagementControllerConfiguration = presentationManagementControllerConfiguration;
|
|
1469
1581
|
exports.presentationManagementControllerDeleteConfiguration = presentationManagementControllerDeleteConfiguration;
|
|
1470
1582
|
exports.presentationManagementControllerGetConfiguration = presentationManagementControllerGetConfiguration;
|
|
1583
|
+
exports.presentationManagementControllerListSchemaMetadataCatalog = presentationManagementControllerListSchemaMetadataCatalog;
|
|
1471
1584
|
exports.presentationManagementControllerReissueRegistrationCertificate = presentationManagementControllerReissueRegistrationCertificate;
|
|
1472
1585
|
exports.presentationManagementControllerResolveIssuerMetadata = presentationManagementControllerResolveIssuerMetadata;
|
|
1586
|
+
exports.presentationManagementControllerResolveSchemaMetadata = presentationManagementControllerResolveSchemaMetadata;
|
|
1473
1587
|
exports.presentationManagementControllerStorePresentationConfig = presentationManagementControllerStorePresentationConfig;
|
|
1474
1588
|
exports.presentationManagementControllerUpdateConfiguration = presentationManagementControllerUpdateConfiguration;
|
|
1475
1589
|
exports.registrarControllerCreateAccessCertificate = registrarControllerCreateAccessCertificate;
|
|
@@ -1477,6 +1591,17 @@ exports.registrarControllerCreateConfig = registrarControllerCreateConfig;
|
|
|
1477
1591
|
exports.registrarControllerDeleteConfig = registrarControllerDeleteConfig;
|
|
1478
1592
|
exports.registrarControllerGetConfig = registrarControllerGetConfig;
|
|
1479
1593
|
exports.registrarControllerUpdateConfig = registrarControllerUpdateConfig;
|
|
1594
|
+
exports.schemaMetadataControllerDeprecateVersion = schemaMetadataControllerDeprecateVersion;
|
|
1595
|
+
exports.schemaMetadataControllerExport = schemaMetadataControllerExport;
|
|
1596
|
+
exports.schemaMetadataControllerFindAll = schemaMetadataControllerFindAll;
|
|
1597
|
+
exports.schemaMetadataControllerFindOne = schemaMetadataControllerFindOne;
|
|
1598
|
+
exports.schemaMetadataControllerGetJwt = schemaMetadataControllerGetJwt;
|
|
1599
|
+
exports.schemaMetadataControllerGetLatest = schemaMetadataControllerGetLatest;
|
|
1600
|
+
exports.schemaMetadataControllerGetSchema = schemaMetadataControllerGetSchema;
|
|
1601
|
+
exports.schemaMetadataControllerGetVersions = schemaMetadataControllerGetVersions;
|
|
1602
|
+
exports.schemaMetadataControllerGetVocabularies = schemaMetadataControllerGetVocabularies;
|
|
1603
|
+
exports.schemaMetadataControllerRemove = schemaMetadataControllerRemove;
|
|
1604
|
+
exports.schemaMetadataControllerUpdate = schemaMetadataControllerUpdate;
|
|
1480
1605
|
exports.sessionConfigControllerGetConfig = sessionConfigControllerGetConfig;
|
|
1481
1606
|
exports.sessionConfigControllerResetConfig = sessionConfigControllerResetConfig;
|
|
1482
1607
|
exports.sessionConfigControllerUpdateConfig = sessionConfigControllerUpdateConfig;
|
package/dist/api/index.mjs
CHANGED
|
@@ -847,6 +847,14 @@ var appControllerGetFrontendConfig = (options) => (options?.client ?? client).ge
|
|
|
847
847
|
url: "/api/frontend-config",
|
|
848
848
|
...options
|
|
849
849
|
});
|
|
850
|
+
var authControllerGetOAuth2Token = (options) => (options.client ?? client).post({
|
|
851
|
+
url: "/api/oauth2/token",
|
|
852
|
+
...options,
|
|
853
|
+
headers: {
|
|
854
|
+
"Content-Type": "application/json",
|
|
855
|
+
...options.headers
|
|
856
|
+
}
|
|
857
|
+
});
|
|
850
858
|
var tenantControllerGetTenants = (options) => (options?.client ?? client).get({
|
|
851
859
|
security: [{ scheme: "bearer", type: "http" }],
|
|
852
860
|
url: "/api/tenant",
|
|
@@ -880,6 +888,11 @@ var tenantControllerUpdateTenant = (options) => (options.client ?? client).patch
|
|
|
880
888
|
...options.headers
|
|
881
889
|
}
|
|
882
890
|
});
|
|
891
|
+
var auditLogControllerGetAuditLogs = (options) => (options?.client ?? client).get({
|
|
892
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
893
|
+
url: "/api/admin/audit-logs",
|
|
894
|
+
...options
|
|
895
|
+
});
|
|
883
896
|
var clientControllerGetClients = (options) => (options?.client ?? client).get({
|
|
884
897
|
security: [{ scheme: "bearer", type: "http" }],
|
|
885
898
|
url: "/api/client",
|
|
@@ -1104,6 +1117,24 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1104
1117
|
...options.headers
|
|
1105
1118
|
}
|
|
1106
1119
|
});
|
|
1120
|
+
var credentialConfigControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1121
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1122
|
+
url: "/api/issuer/credentials/schema-metadata/sign",
|
|
1123
|
+
...options,
|
|
1124
|
+
headers: {
|
|
1125
|
+
"Content-Type": "application/json",
|
|
1126
|
+
...options.headers
|
|
1127
|
+
}
|
|
1128
|
+
});
|
|
1129
|
+
var credentialConfigControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1130
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1131
|
+
url: "/api/issuer/credentials/schema-metadata/sign-version",
|
|
1132
|
+
...options,
|
|
1133
|
+
headers: {
|
|
1134
|
+
"Content-Type": "application/json",
|
|
1135
|
+
...options.headers
|
|
1136
|
+
}
|
|
1137
|
+
});
|
|
1107
1138
|
var attributeProviderControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1108
1139
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1109
1140
|
url: "/api/issuer/attribute-providers",
|
|
@@ -1170,6 +1201,54 @@ var webhookEndpointControllerUpdate = (options) => (options.client ?? client).pa
|
|
|
1170
1201
|
...options.headers
|
|
1171
1202
|
}
|
|
1172
1203
|
});
|
|
1204
|
+
var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
|
|
1205
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1206
|
+
url: "/api/trust-list",
|
|
1207
|
+
...options
|
|
1208
|
+
});
|
|
1209
|
+
var trustListControllerCreateTrustList = (options) => (options.client ?? client).post({
|
|
1210
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1211
|
+
url: "/api/trust-list",
|
|
1212
|
+
...options,
|
|
1213
|
+
headers: {
|
|
1214
|
+
"Content-Type": "application/json",
|
|
1215
|
+
...options.headers
|
|
1216
|
+
}
|
|
1217
|
+
});
|
|
1218
|
+
var trustListControllerDeleteTrustList = (options) => (options.client ?? client).delete({
|
|
1219
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1220
|
+
url: "/api/trust-list/{id}",
|
|
1221
|
+
...options
|
|
1222
|
+
});
|
|
1223
|
+
var trustListControllerGetTrustList = (options) => (options.client ?? client).get({
|
|
1224
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1225
|
+
url: "/api/trust-list/{id}",
|
|
1226
|
+
...options
|
|
1227
|
+
});
|
|
1228
|
+
var trustListControllerUpdateTrustList = (options) => (options.client ?? client).put({
|
|
1229
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1230
|
+
url: "/api/trust-list/{id}",
|
|
1231
|
+
...options,
|
|
1232
|
+
headers: {
|
|
1233
|
+
"Content-Type": "application/json",
|
|
1234
|
+
...options.headers
|
|
1235
|
+
}
|
|
1236
|
+
});
|
|
1237
|
+
var trustListControllerExportTrustList = (options) => (options.client ?? client).get({
|
|
1238
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1239
|
+
url: "/api/trust-list/{id}/export",
|
|
1240
|
+
...options
|
|
1241
|
+
});
|
|
1242
|
+
var trustListControllerGetTrustListVersions = (options) => (options.client ?? client).get({
|
|
1243
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1244
|
+
url: "/api/trust-list/{id}/versions",
|
|
1245
|
+
...options
|
|
1246
|
+
});
|
|
1247
|
+
var trustListControllerGetTrustListVersion = (options) => (options.client ?? client).get({
|
|
1248
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1249
|
+
url: "/api/trust-list/{id}/versions/{versionId}",
|
|
1250
|
+
...options
|
|
1251
|
+
});
|
|
1173
1252
|
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1174
1253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1175
1254
|
url: "/api/verifier/config",
|
|
@@ -1193,6 +1272,20 @@ var presentationManagementControllerResolveIssuerMetadata = (options) => (option
|
|
|
1193
1272
|
...options.headers
|
|
1194
1273
|
}
|
|
1195
1274
|
});
|
|
1275
|
+
var presentationManagementControllerResolveSchemaMetadata = (options) => (options.client ?? client).post({
|
|
1276
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1277
|
+
url: "/api/verifier/config/schema-metadata/resolve",
|
|
1278
|
+
...options,
|
|
1279
|
+
headers: {
|
|
1280
|
+
"Content-Type": "application/json",
|
|
1281
|
+
...options.headers
|
|
1282
|
+
}
|
|
1283
|
+
});
|
|
1284
|
+
var presentationManagementControllerListSchemaMetadataCatalog = (options) => (options?.client ?? client).get({
|
|
1285
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1286
|
+
url: "/api/verifier/config/schema-metadata/catalog",
|
|
1287
|
+
...options
|
|
1288
|
+
});
|
|
1196
1289
|
var presentationManagementControllerDeleteConfiguration = (options) => (options.client ?? client).delete({
|
|
1197
1290
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1198
1291
|
url: "/api/verifier/config/{id}",
|
|
@@ -1274,80 +1367,95 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
|
|
|
1274
1367
|
...options.headers
|
|
1275
1368
|
}
|
|
1276
1369
|
});
|
|
1277
|
-
var
|
|
1370
|
+
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1278
1371
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1279
|
-
url: "/api/
|
|
1280
|
-
...options
|
|
1281
|
-
headers: {
|
|
1282
|
-
"Content-Type": "application/json",
|
|
1283
|
-
...options.headers
|
|
1284
|
-
}
|
|
1372
|
+
url: "/api/schema-metadata/vocabularies",
|
|
1373
|
+
...options
|
|
1285
1374
|
});
|
|
1286
|
-
var
|
|
1375
|
+
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1287
1376
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1288
|
-
url: "/api/
|
|
1289
|
-
...options
|
|
1290
|
-
headers: {
|
|
1291
|
-
"Content-Type": "application/json",
|
|
1292
|
-
...options.headers
|
|
1293
|
-
}
|
|
1377
|
+
url: "/api/schema-metadata",
|
|
1378
|
+
...options
|
|
1294
1379
|
});
|
|
1295
|
-
var
|
|
1380
|
+
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1296
1381
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1297
|
-
url: "/api/
|
|
1298
|
-
...options
|
|
1299
|
-
headers: {
|
|
1300
|
-
"Content-Type": "application/json",
|
|
1301
|
-
...options.headers
|
|
1302
|
-
}
|
|
1382
|
+
url: "/api/schema-metadata/{id}",
|
|
1383
|
+
...options
|
|
1303
1384
|
});
|
|
1304
|
-
var
|
|
1385
|
+
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1305
1386
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1306
|
-
url: "/api/
|
|
1387
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1307
1388
|
...options
|
|
1308
1389
|
});
|
|
1309
|
-
var
|
|
1390
|
+
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1310
1391
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1311
|
-
url: "/api/
|
|
1392
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1312
1393
|
...options,
|
|
1313
1394
|
headers: {
|
|
1314
1395
|
"Content-Type": "application/json",
|
|
1315
1396
|
...options.headers
|
|
1316
1397
|
}
|
|
1317
1398
|
});
|
|
1318
|
-
var
|
|
1399
|
+
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1319
1400
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1320
|
-
url: "/api/
|
|
1401
|
+
url: "/api/schema-metadata/{id}/latest",
|
|
1321
1402
|
...options
|
|
1322
1403
|
});
|
|
1323
|
-
var
|
|
1404
|
+
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1324
1405
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1325
|
-
url: "/api/
|
|
1406
|
+
url: "/api/schema-metadata/{id}/versions",
|
|
1326
1407
|
...options
|
|
1327
1408
|
});
|
|
1328
|
-
var
|
|
1409
|
+
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1329
1410
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1330
|
-
url: "/api/
|
|
1411
|
+
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1412
|
+
...options
|
|
1413
|
+
});
|
|
1414
|
+
var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
|
|
1415
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1416
|
+
url: "/api/schema-metadata/{id}/versions/{version}/export",
|
|
1417
|
+
...options
|
|
1418
|
+
});
|
|
1419
|
+
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1420
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1421
|
+
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1422
|
+
...options
|
|
1423
|
+
});
|
|
1424
|
+
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1425
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1426
|
+
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1331
1427
|
...options,
|
|
1332
1428
|
headers: {
|
|
1333
1429
|
"Content-Type": "application/json",
|
|
1334
1430
|
...options.headers
|
|
1335
1431
|
}
|
|
1336
1432
|
});
|
|
1337
|
-
var
|
|
1433
|
+
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1338
1434
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1339
|
-
url: "/api/
|
|
1340
|
-
...options
|
|
1435
|
+
url: "/api/issuer/offer",
|
|
1436
|
+
...options,
|
|
1437
|
+
headers: {
|
|
1438
|
+
"Content-Type": "application/json",
|
|
1439
|
+
...options.headers
|
|
1440
|
+
}
|
|
1341
1441
|
});
|
|
1342
|
-
var
|
|
1442
|
+
var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
|
|
1343
1443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1344
|
-
url: "/api/
|
|
1345
|
-
...options
|
|
1444
|
+
url: "/api/issuer/deferred/{transactionId}/complete",
|
|
1445
|
+
...options,
|
|
1446
|
+
headers: {
|
|
1447
|
+
"Content-Type": "application/json",
|
|
1448
|
+
...options.headers
|
|
1449
|
+
}
|
|
1346
1450
|
});
|
|
1347
|
-
var
|
|
1451
|
+
var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
|
|
1348
1452
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1349
|
-
url: "/api/
|
|
1350
|
-
...options
|
|
1453
|
+
url: "/api/issuer/deferred/{transactionId}/fail",
|
|
1454
|
+
...options,
|
|
1455
|
+
headers: {
|
|
1456
|
+
"Content-Type": "application/json",
|
|
1457
|
+
...options.headers
|
|
1458
|
+
}
|
|
1351
1459
|
});
|
|
1352
1460
|
var keyChainControllerGetProviders = (options) => (options?.client ?? client).get({
|
|
1353
1461
|
security: [{ scheme: "bearer", type: "http" }],
|
|
@@ -1426,6 +1534,6 @@ var storageControllerUpload = (options) => (options.client ?? client).post({
|
|
|
1426
1534
|
}
|
|
1427
1535
|
});
|
|
1428
1536
|
|
|
1429
|
-
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, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
1537
|
+
export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, auditLogControllerGetAuditLogs, authControllerGetOAuth2Token, 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 };
|
|
1430
1538
|
//# sourceMappingURL=index.mjs.map
|
|
1431
1539
|
//# sourceMappingURL=index.mjs.map
|