@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/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" }],
|
|
@@ -1472,7 +1580,7 @@ var EudiploClient = class {
|
|
|
1472
1580
|
}
|
|
1473
1581
|
async _doAuthenticate() {
|
|
1474
1582
|
const fetchFn = this.config.fetch ?? globalThis.fetch;
|
|
1475
|
-
const res = await fetchFn(`${this.config.baseUrl}/oauth2/token`, {
|
|
1583
|
+
const res = await fetchFn(`${this.config.baseUrl}/api/oauth2/token`, {
|
|
1476
1584
|
method: "POST",
|
|
1477
1585
|
headers: { "Content-Type": "application/json" },
|
|
1478
1586
|
body: JSON.stringify({
|
|
@@ -2067,6 +2175,6 @@ async function submitDcApiWalletResponse(options) {
|
|
|
2067
2175
|
};
|
|
2068
2176
|
}
|
|
2069
2177
|
|
|
2070
|
-
export { EudiploClient, appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, callDcApi, client, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, createDcApiRequest, createDcApiRequestForBrowser, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, isDcApiAvailable, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, issue, issueAndWait, 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, submitDcApiWalletResponse, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, verify, verifyAndWait, verifyWithDcApi, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
2178
|
+
export { EudiploClient, appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, auditLogControllerGetAuditLogs, authControllerGetOAuth2Token, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, callDcApi, client, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, createDcApiRequest, createDcApiRequestForBrowser, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerSignSchemaMetaConfig, credentialConfigControllerSignVersionSchemaMetaConfig, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, isDcApiAvailable, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, issue, issueAndWait, 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, submitDcApiWalletResponse, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, verify, verifyAndWait, verifyWithDcApi, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
2071
2179
|
//# sourceMappingURL=index.mjs.map
|
|
2072
2180
|
//# sourceMappingURL=index.mjs.map
|