@eudiplo/sdk-core 4.3.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 +88 -75
- package/dist/api/index.d.ts +88 -75
- package/dist/api/index.js +123 -136
- package/dist/api/index.mjs +119 -135
- package/dist/index.d.mts +56 -295
- package/dist/index.d.ts +56 -295
- package/dist/index.js +405 -309
- package/dist/index.mjs +395 -299
- 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-DWk5kPkH.d.mts → types.gen-z3We9JHj.d.mts} +940 -778
- package/dist/{types.gen-DWk5kPkH.d.ts → types.gen-z3We9JHj.d.ts} +940 -778
- package/package.json +8 -6
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({
|
|
@@ -849,6 +815,14 @@ var appControllerGetFrontendConfig = (options) => (options?.client ?? client).ge
|
|
|
849
815
|
url: "/api/frontend-config",
|
|
850
816
|
...options
|
|
851
817
|
});
|
|
818
|
+
var authControllerGetOAuth2Token = (options) => (options.client ?? client).post({
|
|
819
|
+
url: "/api/oauth2/token",
|
|
820
|
+
...options,
|
|
821
|
+
headers: {
|
|
822
|
+
"Content-Type": "application/json",
|
|
823
|
+
...options.headers
|
|
824
|
+
}
|
|
825
|
+
});
|
|
852
826
|
var tenantControllerGetTenants = (options) => (options?.client ?? client).get({
|
|
853
827
|
security: [{ scheme: "bearer", type: "http" }],
|
|
854
828
|
url: "/api/tenant",
|
|
@@ -882,6 +856,11 @@ var tenantControllerUpdateTenant = (options) => (options.client ?? client).patch
|
|
|
882
856
|
...options.headers
|
|
883
857
|
}
|
|
884
858
|
});
|
|
859
|
+
var auditLogControllerGetAuditLogs = (options) => (options?.client ?? client).get({
|
|
860
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
861
|
+
url: "/api/admin/audit-logs",
|
|
862
|
+
...options
|
|
863
|
+
});
|
|
885
864
|
var clientControllerGetClients = (options) => (options?.client ?? client).get({
|
|
886
865
|
security: [{ scheme: "bearer", type: "http" }],
|
|
887
866
|
url: "/api/client",
|
|
@@ -1106,18 +1085,81 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1106
1085
|
...options.headers
|
|
1107
1086
|
}
|
|
1108
1087
|
});
|
|
1109
|
-
var
|
|
1088
|
+
var schemaMetadataControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1089
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1090
|
+
url: "/api/schema-metadata/sign",
|
|
1091
|
+
...options,
|
|
1092
|
+
headers: {
|
|
1093
|
+
"Content-Type": "application/json",
|
|
1094
|
+
...options.headers
|
|
1095
|
+
}
|
|
1096
|
+
});
|
|
1097
|
+
var schemaMetadataControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1098
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
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({
|
|
1110
1127
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1111
|
-
url: "/api/
|
|
1128
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1112
1129
|
...options,
|
|
1113
1130
|
headers: {
|
|
1114
1131
|
"Content-Type": "application/json",
|
|
1115
1132
|
...options.headers
|
|
1116
1133
|
}
|
|
1117
1134
|
});
|
|
1118
|
-
var
|
|
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({
|
|
1119
1146
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1120
|
-
url: "/api/
|
|
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",
|
|
1121
1163
|
...options,
|
|
1122
1164
|
headers: {
|
|
1123
1165
|
"Content-Type": "application/json",
|
|
@@ -1238,6 +1280,26 @@ var trustListControllerGetTrustListVersion = (options) => (options.client ?? cli
|
|
|
1238
1280
|
url: "/api/trust-list/{id}/versions/{versionId}",
|
|
1239
1281
|
...options
|
|
1240
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
|
+
});
|
|
1241
1303
|
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1242
1304
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1243
1305
|
url: "/api/verifier/config",
|
|
@@ -1299,26 +1361,6 @@ var presentationManagementControllerReissueRegistrationCertificate = (options) =
|
|
|
1299
1361
|
url: "/api/verifier/config/{id}/registration-cert/reissue",
|
|
1300
1362
|
...options
|
|
1301
1363
|
});
|
|
1302
|
-
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1303
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1304
|
-
url: "/api/cache/stats",
|
|
1305
|
-
...options
|
|
1306
|
-
});
|
|
1307
|
-
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1308
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1309
|
-
url: "/api/cache",
|
|
1310
|
-
...options
|
|
1311
|
-
});
|
|
1312
|
-
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1313
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1314
|
-
url: "/api/cache/trust-list",
|
|
1315
|
-
...options
|
|
1316
|
-
});
|
|
1317
|
-
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1318
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1319
|
-
url: "/api/cache/status-list",
|
|
1320
|
-
...options
|
|
1321
|
-
});
|
|
1322
1364
|
var registrarControllerDeleteConfig = (options) => (options?.client ?? client).delete({
|
|
1323
1365
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1324
1366
|
url: "/api/registrar/config",
|
|
@@ -1356,69 +1398,6 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
|
|
|
1356
1398
|
...options.headers
|
|
1357
1399
|
}
|
|
1358
1400
|
});
|
|
1359
|
-
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1360
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1361
|
-
url: "/api/schema-metadata/vocabularies",
|
|
1362
|
-
...options
|
|
1363
|
-
});
|
|
1364
|
-
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1365
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1366
|
-
url: "/api/schema-metadata",
|
|
1367
|
-
...options
|
|
1368
|
-
});
|
|
1369
|
-
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1370
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1371
|
-
url: "/api/schema-metadata/{id}",
|
|
1372
|
-
...options
|
|
1373
|
-
});
|
|
1374
|
-
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1375
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1376
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1377
|
-
...options
|
|
1378
|
-
});
|
|
1379
|
-
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1380
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1381
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1382
|
-
...options,
|
|
1383
|
-
headers: {
|
|
1384
|
-
"Content-Type": "application/json",
|
|
1385
|
-
...options.headers
|
|
1386
|
-
}
|
|
1387
|
-
});
|
|
1388
|
-
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1389
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1390
|
-
url: "/api/schema-metadata/{id}/latest",
|
|
1391
|
-
...options
|
|
1392
|
-
});
|
|
1393
|
-
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1394
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1395
|
-
url: "/api/schema-metadata/{id}/versions",
|
|
1396
|
-
...options
|
|
1397
|
-
});
|
|
1398
|
-
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1399
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1400
|
-
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1401
|
-
...options
|
|
1402
|
-
});
|
|
1403
|
-
var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
|
|
1404
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1405
|
-
url: "/api/schema-metadata/{id}/versions/{version}/export",
|
|
1406
|
-
...options
|
|
1407
|
-
});
|
|
1408
|
-
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1409
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1410
|
-
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1411
|
-
...options
|
|
1412
|
-
});
|
|
1413
|
-
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1414
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1415
|
-
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1416
|
-
...options,
|
|
1417
|
-
headers: {
|
|
1418
|
-
"Content-Type": "application/json",
|
|
1419
|
-
...options.headers
|
|
1420
|
-
}
|
|
1421
|
-
});
|
|
1422
1401
|
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1423
1402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1424
1403
|
url: "/api/issuer/offer",
|
|
@@ -1451,6 +1430,11 @@ var keyChainControllerGetProviders = (options) => (options?.client ?? client).ge
|
|
|
1451
1430
|
url: "/api/key-chain/providers",
|
|
1452
1431
|
...options
|
|
1453
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
|
+
});
|
|
1454
1438
|
var keyChainControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1455
1439
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1456
1440
|
url: "/api/key-chain",
|
|
@@ -1530,6 +1514,8 @@ exports.attributeProviderControllerDelete = attributeProviderControllerDelete;
|
|
|
1530
1514
|
exports.attributeProviderControllerGetAll = attributeProviderControllerGetAll;
|
|
1531
1515
|
exports.attributeProviderControllerGetById = attributeProviderControllerGetById;
|
|
1532
1516
|
exports.attributeProviderControllerUpdate = attributeProviderControllerUpdate;
|
|
1517
|
+
exports.auditLogControllerGetAuditLogs = auditLogControllerGetAuditLogs;
|
|
1518
|
+
exports.authControllerGetOAuth2Token = authControllerGetOAuth2Token;
|
|
1533
1519
|
exports.cacheControllerClearAllCaches = cacheControllerClearAllCaches;
|
|
1534
1520
|
exports.cacheControllerClearStatusListCache = cacheControllerClearStatusListCache;
|
|
1535
1521
|
exports.cacheControllerClearTrustListCache = cacheControllerClearTrustListCache;
|
|
@@ -1544,8 +1530,6 @@ exports.clientControllerUpdateClient = clientControllerUpdateClient;
|
|
|
1544
1530
|
exports.credentialConfigControllerDeleteIssuanceConfiguration = credentialConfigControllerDeleteIssuanceConfiguration;
|
|
1545
1531
|
exports.credentialConfigControllerGetConfigById = credentialConfigControllerGetConfigById;
|
|
1546
1532
|
exports.credentialConfigControllerGetConfigs = credentialConfigControllerGetConfigs;
|
|
1547
|
-
exports.credentialConfigControllerSignSchemaMetaConfig = credentialConfigControllerSignSchemaMetaConfig;
|
|
1548
|
-
exports.credentialConfigControllerSignVersionSchemaMetaConfig = credentialConfigControllerSignVersionSchemaMetaConfig;
|
|
1549
1533
|
exports.credentialConfigControllerStoreCredentialConfiguration = credentialConfigControllerStoreCredentialConfiguration;
|
|
1550
1534
|
exports.credentialConfigControllerUpdateCredentialConfiguration = credentialConfigControllerUpdateCredentialConfiguration;
|
|
1551
1535
|
exports.credentialOfferControllerGetOffer = credentialOfferControllerGetOffer;
|
|
@@ -1559,6 +1543,7 @@ exports.keyChainControllerExport = keyChainControllerExport;
|
|
|
1559
1543
|
exports.keyChainControllerGetAll = keyChainControllerGetAll;
|
|
1560
1544
|
exports.keyChainControllerGetById = keyChainControllerGetById;
|
|
1561
1545
|
exports.keyChainControllerGetProviders = keyChainControllerGetProviders;
|
|
1546
|
+
exports.keyChainControllerGetProvidersHealth = keyChainControllerGetProvidersHealth;
|
|
1562
1547
|
exports.keyChainControllerImport = keyChainControllerImport;
|
|
1563
1548
|
exports.keyChainControllerRotate = keyChainControllerRotate;
|
|
1564
1549
|
exports.keyChainControllerUpdate = keyChainControllerUpdate;
|
|
@@ -1586,6 +1571,8 @@ exports.schemaMetadataControllerGetSchema = schemaMetadataControllerGetSchema;
|
|
|
1586
1571
|
exports.schemaMetadataControllerGetVersions = schemaMetadataControllerGetVersions;
|
|
1587
1572
|
exports.schemaMetadataControllerGetVocabularies = schemaMetadataControllerGetVocabularies;
|
|
1588
1573
|
exports.schemaMetadataControllerRemove = schemaMetadataControllerRemove;
|
|
1574
|
+
exports.schemaMetadataControllerSignSchemaMetaConfig = schemaMetadataControllerSignSchemaMetaConfig;
|
|
1575
|
+
exports.schemaMetadataControllerSignVersionSchemaMetaConfig = schemaMetadataControllerSignVersionSchemaMetaConfig;
|
|
1589
1576
|
exports.schemaMetadataControllerUpdate = schemaMetadataControllerUpdate;
|
|
1590
1577
|
exports.sessionConfigControllerGetConfig = sessionConfigControllerGetConfig;
|
|
1591
1578
|
exports.sessionConfigControllerResetConfig = sessionConfigControllerResetConfig;
|