@eudiplo/sdk-core 4.4.0 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -170
- package/dist/api/client/client.gen.d.mts +1 -1
- package/dist/api/client/client.gen.d.ts +1 -1
- package/dist/api/client/client.gen.js +12 -44
- package/dist/api/client/client.gen.mjs +12 -44
- package/dist/api/client/index.d.mts +4 -4
- package/dist/api/client/index.d.ts +4 -4
- package/dist/api/client/index.js +18 -54
- package/dist/api/client/index.mjs +18 -54
- package/dist/api/client/types.gen.d.mts +1 -1
- package/dist/api/client/types.gen.d.ts +1 -1
- package/dist/api/client.gen.d.mts +2 -2
- package/dist/api/client.gen.d.ts +2 -2
- package/dist/api/client.gen.js +13 -47
- package/dist/api/client.gen.mjs +13 -47
- package/dist/api/index.d.mts +79 -75
- package/dist/api/index.d.ts +79 -75
- package/dist/api/index.js +108 -136
- package/dist/api/index.mjs +106 -135
- package/dist/index.d.mts +56 -295
- package/dist/index.d.ts +56 -295
- package/dist/index.js +389 -308
- package/dist/index.mjs +381 -298
- package/dist/{types.gen-DKrNRB-E.d.mts → types.gen-Cc6DtXw9.d.mts} +23 -23
- package/dist/{types.gen-DKrNRB-E.d.ts → types.gen-Cc6DtXw9.d.ts} +23 -23
- package/dist/{types.gen-DpwDhqbe.d.mts → types.gen-z3We9JHj.d.mts} +898 -787
- package/dist/{types.gen-DpwDhqbe.d.ts → types.gen-z3We9JHj.d.ts} +898 -787
- package/package.json +5 -3
package/dist/api/index.js
CHANGED
|
@@ -27,10 +27,7 @@ var formDataBodySerializer = {
|
|
|
27
27
|
}
|
|
28
28
|
};
|
|
29
29
|
var jsonBodySerializer = {
|
|
30
|
-
bodySerializer: (body) => JSON.stringify(
|
|
31
|
-
body,
|
|
32
|
-
(_key, value) => typeof value === "bigint" ? value.toString() : value
|
|
33
|
-
)
|
|
30
|
+
bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value)
|
|
34
31
|
};
|
|
35
32
|
|
|
36
33
|
// src/api/core/serverSentEvents.gen.ts
|
|
@@ -74,10 +71,7 @@ function createSseClient({
|
|
|
74
71
|
}
|
|
75
72
|
const _fetch = options.fetch ?? globalThis.fetch;
|
|
76
73
|
const response = await _fetch(request);
|
|
77
|
-
if (!response.ok)
|
|
78
|
-
throw new Error(
|
|
79
|
-
`SSE failed: ${response.status} ${response.statusText}`
|
|
80
|
-
);
|
|
74
|
+
if (!response.ok) throw new Error(`SSE failed: ${response.status} ${response.statusText}`);
|
|
81
75
|
if (!response.body) throw new Error("No body in SSE response");
|
|
82
76
|
const reader = response.body.pipeThrough(new TextDecoderStream()).getReader();
|
|
83
77
|
let buffer = "";
|
|
@@ -108,10 +102,7 @@ function createSseClient({
|
|
|
108
102
|
} else if (line.startsWith("id:")) {
|
|
109
103
|
lastEventId = line.replace(/^id:\s*/, "");
|
|
110
104
|
} else if (line.startsWith("retry:")) {
|
|
111
|
-
const parsed = Number.parseInt(
|
|
112
|
-
line.replace(/^retry:\s*/, ""),
|
|
113
|
-
10
|
|
114
|
-
);
|
|
105
|
+
const parsed = Number.parseInt(line.replace(/^retry:\s*/, ""), 10);
|
|
115
106
|
if (!Number.isNaN(parsed)) {
|
|
116
107
|
retryDelay = parsed;
|
|
117
108
|
}
|
|
@@ -157,10 +148,7 @@ function createSseClient({
|
|
|
157
148
|
if (sseMaxRetryAttempts !== void 0 && attempt >= sseMaxRetryAttempts) {
|
|
158
149
|
break;
|
|
159
150
|
}
|
|
160
|
-
const backoff = Math.min(
|
|
161
|
-
retryDelay * 2 ** (attempt - 1),
|
|
162
|
-
sseMaxRetryDelay ?? 3e4
|
|
163
|
-
);
|
|
151
|
+
const backoff = Math.min(retryDelay * 2 ** (attempt - 1), sseMaxRetryDelay ?? 3e4);
|
|
164
152
|
await sleep(backoff);
|
|
165
153
|
}
|
|
166
154
|
}
|
|
@@ -268,11 +256,7 @@ var serializeObjectParam = ({
|
|
|
268
256
|
if (style !== "deepObject" && !explode) {
|
|
269
257
|
let values = [];
|
|
270
258
|
Object.entries(value).forEach(([key, v]) => {
|
|
271
|
-
values = [
|
|
272
|
-
...values,
|
|
273
|
-
key,
|
|
274
|
-
allowReserved ? v : encodeURIComponent(v)
|
|
275
|
-
];
|
|
259
|
+
values = [...values, key, allowReserved ? v : encodeURIComponent(v)];
|
|
276
260
|
});
|
|
277
261
|
const joinedValues2 = values.join(",");
|
|
278
262
|
switch (style) {
|
|
@@ -323,10 +307,7 @@ var defaultPathSerializer = ({ path, url: _url }) => {
|
|
|
323
307
|
continue;
|
|
324
308
|
}
|
|
325
309
|
if (Array.isArray(value)) {
|
|
326
|
-
url = url.replace(
|
|
327
|
-
match,
|
|
328
|
-
serializeArrayParam({ explode, name, style, value })
|
|
329
|
-
);
|
|
310
|
+
url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
|
|
330
311
|
continue;
|
|
331
312
|
}
|
|
332
313
|
if (typeof value === "object") {
|
|
@@ -474,9 +455,7 @@ var getParseAs = (contentType) => {
|
|
|
474
455
|
if (cleanContent === "multipart/form-data") {
|
|
475
456
|
return "formData";
|
|
476
457
|
}
|
|
477
|
-
if (["application/", "audio/", "image/", "video/"].some(
|
|
478
|
-
(type) => cleanContent.startsWith(type)
|
|
479
|
-
)) {
|
|
458
|
+
if (["application/", "audio/", "image/", "video/"].some((type) => cleanContent.startsWith(type))) {
|
|
480
459
|
return "blob";
|
|
481
460
|
}
|
|
482
461
|
if (cleanContent.startsWith("text/")) {
|
|
@@ -493,11 +472,8 @@ var checkForExistence = (options, name) => {
|
|
|
493
472
|
}
|
|
494
473
|
return false;
|
|
495
474
|
};
|
|
496
|
-
|
|
497
|
-
security
|
|
498
|
-
...options
|
|
499
|
-
}) => {
|
|
500
|
-
for (const auth of security) {
|
|
475
|
+
async function setAuthParams(options) {
|
|
476
|
+
for (const auth of options.security ?? []) {
|
|
501
477
|
if (checkForExistence(options, auth.name)) {
|
|
502
478
|
continue;
|
|
503
479
|
}
|
|
@@ -522,7 +498,7 @@ var setAuthParams = async ({
|
|
|
522
498
|
break;
|
|
523
499
|
}
|
|
524
500
|
}
|
|
525
|
-
}
|
|
501
|
+
}
|
|
526
502
|
var buildUrl = (options) => getUrl({
|
|
527
503
|
baseUrl: options.baseUrl,
|
|
528
504
|
path: options.path,
|
|
@@ -648,10 +624,7 @@ var createClient = (config = {}) => {
|
|
|
648
624
|
serializedBody: void 0
|
|
649
625
|
};
|
|
650
626
|
if (opts.security) {
|
|
651
|
-
await setAuthParams(
|
|
652
|
-
...opts,
|
|
653
|
-
security: opts.security
|
|
654
|
-
});
|
|
627
|
+
await setAuthParams(opts);
|
|
655
628
|
}
|
|
656
629
|
if (opts.requestValidator) {
|
|
657
630
|
await opts.requestValidator(opts);
|
|
@@ -764,12 +737,7 @@ var createClient = (config = {}) => {
|
|
|
764
737
|
let finalError = error;
|
|
765
738
|
for (const fn of interceptors.error.fns) {
|
|
766
739
|
if (fn) {
|
|
767
|
-
finalError = await fn(
|
|
768
|
-
finalError,
|
|
769
|
-
response,
|
|
770
|
-
request2,
|
|
771
|
-
options
|
|
772
|
-
);
|
|
740
|
+
finalError = await fn(finalError, response, request2, options);
|
|
773
741
|
}
|
|
774
742
|
}
|
|
775
743
|
finalError = finalError || {};
|
|
@@ -834,9 +802,7 @@ var createClient = (config = {}) => {
|
|
|
834
802
|
};
|
|
835
803
|
|
|
836
804
|
// src/api/client.gen.ts
|
|
837
|
-
var client = createClient(
|
|
838
|
-
createConfig({ throwOnError: true })
|
|
839
|
-
);
|
|
805
|
+
var client = createClient(createConfig({ throwOnError: true }));
|
|
840
806
|
|
|
841
807
|
// src/api/sdk.gen.ts
|
|
842
808
|
var appControllerGetVersion = (options) => (options?.client ?? client).get({
|
|
@@ -1119,18 +1085,81 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1119
1085
|
...options.headers
|
|
1120
1086
|
}
|
|
1121
1087
|
});
|
|
1122
|
-
var
|
|
1088
|
+
var schemaMetadataControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1123
1089
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1124
|
-
url: "/api/
|
|
1090
|
+
url: "/api/schema-metadata/sign",
|
|
1125
1091
|
...options,
|
|
1126
1092
|
headers: {
|
|
1127
1093
|
"Content-Type": "application/json",
|
|
1128
1094
|
...options.headers
|
|
1129
1095
|
}
|
|
1130
1096
|
});
|
|
1131
|
-
var
|
|
1097
|
+
var schemaMetadataControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1132
1098
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1133
|
-
url: "/api/
|
|
1099
|
+
url: "/api/schema-metadata/sign-version",
|
|
1100
|
+
...options,
|
|
1101
|
+
headers: {
|
|
1102
|
+
"Content-Type": "application/json",
|
|
1103
|
+
...options.headers
|
|
1104
|
+
}
|
|
1105
|
+
});
|
|
1106
|
+
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1107
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1108
|
+
url: "/api/schema-metadata/vocabularies",
|
|
1109
|
+
...options
|
|
1110
|
+
});
|
|
1111
|
+
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1112
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1113
|
+
url: "/api/schema-metadata",
|
|
1114
|
+
...options
|
|
1115
|
+
});
|
|
1116
|
+
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1117
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1118
|
+
url: "/api/schema-metadata/{id}",
|
|
1119
|
+
...options
|
|
1120
|
+
});
|
|
1121
|
+
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1122
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1123
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1124
|
+
...options
|
|
1125
|
+
});
|
|
1126
|
+
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1127
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1128
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1129
|
+
...options,
|
|
1130
|
+
headers: {
|
|
1131
|
+
"Content-Type": "application/json",
|
|
1132
|
+
...options.headers
|
|
1133
|
+
}
|
|
1134
|
+
});
|
|
1135
|
+
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1136
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1137
|
+
url: "/api/schema-metadata/{id}/latest",
|
|
1138
|
+
...options
|
|
1139
|
+
});
|
|
1140
|
+
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1141
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1142
|
+
url: "/api/schema-metadata/{id}/versions",
|
|
1143
|
+
...options
|
|
1144
|
+
});
|
|
1145
|
+
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1146
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1147
|
+
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1148
|
+
...options
|
|
1149
|
+
});
|
|
1150
|
+
var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
|
|
1151
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1152
|
+
url: "/api/schema-metadata/{id}/versions/{version}/export",
|
|
1153
|
+
...options
|
|
1154
|
+
});
|
|
1155
|
+
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1156
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1157
|
+
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1158
|
+
...options
|
|
1159
|
+
});
|
|
1160
|
+
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1161
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1162
|
+
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1134
1163
|
...options,
|
|
1135
1164
|
headers: {
|
|
1136
1165
|
"Content-Type": "application/json",
|
|
@@ -1251,6 +1280,26 @@ var trustListControllerGetTrustListVersion = (options) => (options.client ?? cli
|
|
|
1251
1280
|
url: "/api/trust-list/{id}/versions/{versionId}",
|
|
1252
1281
|
...options
|
|
1253
1282
|
});
|
|
1283
|
+
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1284
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1285
|
+
url: "/api/cache/stats",
|
|
1286
|
+
...options
|
|
1287
|
+
});
|
|
1288
|
+
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1289
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1290
|
+
url: "/api/cache",
|
|
1291
|
+
...options
|
|
1292
|
+
});
|
|
1293
|
+
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1294
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1295
|
+
url: "/api/cache/trust-list",
|
|
1296
|
+
...options
|
|
1297
|
+
});
|
|
1298
|
+
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1299
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1300
|
+
url: "/api/cache/status-list",
|
|
1301
|
+
...options
|
|
1302
|
+
});
|
|
1254
1303
|
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1255
1304
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1256
1305
|
url: "/api/verifier/config",
|
|
@@ -1312,26 +1361,6 @@ var presentationManagementControllerReissueRegistrationCertificate = (options) =
|
|
|
1312
1361
|
url: "/api/verifier/config/{id}/registration-cert/reissue",
|
|
1313
1362
|
...options
|
|
1314
1363
|
});
|
|
1315
|
-
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1316
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1317
|
-
url: "/api/cache/stats",
|
|
1318
|
-
...options
|
|
1319
|
-
});
|
|
1320
|
-
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1321
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1322
|
-
url: "/api/cache",
|
|
1323
|
-
...options
|
|
1324
|
-
});
|
|
1325
|
-
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1326
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1327
|
-
url: "/api/cache/trust-list",
|
|
1328
|
-
...options
|
|
1329
|
-
});
|
|
1330
|
-
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1331
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1332
|
-
url: "/api/cache/status-list",
|
|
1333
|
-
...options
|
|
1334
|
-
});
|
|
1335
1364
|
var registrarControllerDeleteConfig = (options) => (options?.client ?? client).delete({
|
|
1336
1365
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1337
1366
|
url: "/api/registrar/config",
|
|
@@ -1369,69 +1398,6 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
|
|
|
1369
1398
|
...options.headers
|
|
1370
1399
|
}
|
|
1371
1400
|
});
|
|
1372
|
-
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1373
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1374
|
-
url: "/api/schema-metadata/vocabularies",
|
|
1375
|
-
...options
|
|
1376
|
-
});
|
|
1377
|
-
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1378
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1379
|
-
url: "/api/schema-metadata",
|
|
1380
|
-
...options
|
|
1381
|
-
});
|
|
1382
|
-
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1383
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1384
|
-
url: "/api/schema-metadata/{id}",
|
|
1385
|
-
...options
|
|
1386
|
-
});
|
|
1387
|
-
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1388
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1389
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1390
|
-
...options
|
|
1391
|
-
});
|
|
1392
|
-
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1393
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1394
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1395
|
-
...options,
|
|
1396
|
-
headers: {
|
|
1397
|
-
"Content-Type": "application/json",
|
|
1398
|
-
...options.headers
|
|
1399
|
-
}
|
|
1400
|
-
});
|
|
1401
|
-
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1402
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1403
|
-
url: "/api/schema-metadata/{id}/latest",
|
|
1404
|
-
...options
|
|
1405
|
-
});
|
|
1406
|
-
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1407
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1408
|
-
url: "/api/schema-metadata/{id}/versions",
|
|
1409
|
-
...options
|
|
1410
|
-
});
|
|
1411
|
-
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1412
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
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",
|
|
1429
|
-
...options,
|
|
1430
|
-
headers: {
|
|
1431
|
-
"Content-Type": "application/json",
|
|
1432
|
-
...options.headers
|
|
1433
|
-
}
|
|
1434
|
-
});
|
|
1435
1401
|
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1436
1402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1437
1403
|
url: "/api/issuer/offer",
|
|
@@ -1464,6 +1430,11 @@ var keyChainControllerGetProviders = (options) => (options?.client ?? client).ge
|
|
|
1464
1430
|
url: "/api/key-chain/providers",
|
|
1465
1431
|
...options
|
|
1466
1432
|
});
|
|
1433
|
+
var keyChainControllerGetProvidersHealth = (options) => (options?.client ?? client).get({
|
|
1434
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1435
|
+
url: "/api/key-chain/providers/health",
|
|
1436
|
+
...options
|
|
1437
|
+
});
|
|
1467
1438
|
var keyChainControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1468
1439
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1469
1440
|
url: "/api/key-chain",
|
|
@@ -1559,8 +1530,6 @@ exports.clientControllerUpdateClient = clientControllerUpdateClient;
|
|
|
1559
1530
|
exports.credentialConfigControllerDeleteIssuanceConfiguration = credentialConfigControllerDeleteIssuanceConfiguration;
|
|
1560
1531
|
exports.credentialConfigControllerGetConfigById = credentialConfigControllerGetConfigById;
|
|
1561
1532
|
exports.credentialConfigControllerGetConfigs = credentialConfigControllerGetConfigs;
|
|
1562
|
-
exports.credentialConfigControllerSignSchemaMetaConfig = credentialConfigControllerSignSchemaMetaConfig;
|
|
1563
|
-
exports.credentialConfigControllerSignVersionSchemaMetaConfig = credentialConfigControllerSignVersionSchemaMetaConfig;
|
|
1564
1533
|
exports.credentialConfigControllerStoreCredentialConfiguration = credentialConfigControllerStoreCredentialConfiguration;
|
|
1565
1534
|
exports.credentialConfigControllerUpdateCredentialConfiguration = credentialConfigControllerUpdateCredentialConfiguration;
|
|
1566
1535
|
exports.credentialOfferControllerGetOffer = credentialOfferControllerGetOffer;
|
|
@@ -1574,6 +1543,7 @@ exports.keyChainControllerExport = keyChainControllerExport;
|
|
|
1574
1543
|
exports.keyChainControllerGetAll = keyChainControllerGetAll;
|
|
1575
1544
|
exports.keyChainControllerGetById = keyChainControllerGetById;
|
|
1576
1545
|
exports.keyChainControllerGetProviders = keyChainControllerGetProviders;
|
|
1546
|
+
exports.keyChainControllerGetProvidersHealth = keyChainControllerGetProvidersHealth;
|
|
1577
1547
|
exports.keyChainControllerImport = keyChainControllerImport;
|
|
1578
1548
|
exports.keyChainControllerRotate = keyChainControllerRotate;
|
|
1579
1549
|
exports.keyChainControllerUpdate = keyChainControllerUpdate;
|
|
@@ -1601,6 +1571,8 @@ exports.schemaMetadataControllerGetSchema = schemaMetadataControllerGetSchema;
|
|
|
1601
1571
|
exports.schemaMetadataControllerGetVersions = schemaMetadataControllerGetVersions;
|
|
1602
1572
|
exports.schemaMetadataControllerGetVocabularies = schemaMetadataControllerGetVocabularies;
|
|
1603
1573
|
exports.schemaMetadataControllerRemove = schemaMetadataControllerRemove;
|
|
1574
|
+
exports.schemaMetadataControllerSignSchemaMetaConfig = schemaMetadataControllerSignSchemaMetaConfig;
|
|
1575
|
+
exports.schemaMetadataControllerSignVersionSchemaMetaConfig = schemaMetadataControllerSignVersionSchemaMetaConfig;
|
|
1604
1576
|
exports.schemaMetadataControllerUpdate = schemaMetadataControllerUpdate;
|
|
1605
1577
|
exports.sessionConfigControllerGetConfig = sessionConfigControllerGetConfig;
|
|
1606
1578
|
exports.sessionConfigControllerResetConfig = sessionConfigControllerResetConfig;
|