@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.mjs
CHANGED
|
@@ -25,10 +25,7 @@ var formDataBodySerializer = {
|
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
var jsonBodySerializer = {
|
|
28
|
-
bodySerializer: (body) => JSON.stringify(
|
|
29
|
-
body,
|
|
30
|
-
(_key, value) => typeof value === "bigint" ? value.toString() : value
|
|
31
|
-
)
|
|
28
|
+
bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value)
|
|
32
29
|
};
|
|
33
30
|
|
|
34
31
|
// src/api/core/serverSentEvents.gen.ts
|
|
@@ -72,10 +69,7 @@ function createSseClient({
|
|
|
72
69
|
}
|
|
73
70
|
const _fetch = options.fetch ?? globalThis.fetch;
|
|
74
71
|
const response = await _fetch(request);
|
|
75
|
-
if (!response.ok)
|
|
76
|
-
throw new Error(
|
|
77
|
-
`SSE failed: ${response.status} ${response.statusText}`
|
|
78
|
-
);
|
|
72
|
+
if (!response.ok) throw new Error(`SSE failed: ${response.status} ${response.statusText}`);
|
|
79
73
|
if (!response.body) throw new Error("No body in SSE response");
|
|
80
74
|
const reader = response.body.pipeThrough(new TextDecoderStream()).getReader();
|
|
81
75
|
let buffer = "";
|
|
@@ -106,10 +100,7 @@ function createSseClient({
|
|
|
106
100
|
} else if (line.startsWith("id:")) {
|
|
107
101
|
lastEventId = line.replace(/^id:\s*/, "");
|
|
108
102
|
} else if (line.startsWith("retry:")) {
|
|
109
|
-
const parsed = Number.parseInt(
|
|
110
|
-
line.replace(/^retry:\s*/, ""),
|
|
111
|
-
10
|
|
112
|
-
);
|
|
103
|
+
const parsed = Number.parseInt(line.replace(/^retry:\s*/, ""), 10);
|
|
113
104
|
if (!Number.isNaN(parsed)) {
|
|
114
105
|
retryDelay = parsed;
|
|
115
106
|
}
|
|
@@ -155,10 +146,7 @@ function createSseClient({
|
|
|
155
146
|
if (sseMaxRetryAttempts !== void 0 && attempt >= sseMaxRetryAttempts) {
|
|
156
147
|
break;
|
|
157
148
|
}
|
|
158
|
-
const backoff = Math.min(
|
|
159
|
-
retryDelay * 2 ** (attempt - 1),
|
|
160
|
-
sseMaxRetryDelay ?? 3e4
|
|
161
|
-
);
|
|
149
|
+
const backoff = Math.min(retryDelay * 2 ** (attempt - 1), sseMaxRetryDelay ?? 3e4);
|
|
162
150
|
await sleep(backoff);
|
|
163
151
|
}
|
|
164
152
|
}
|
|
@@ -266,11 +254,7 @@ var serializeObjectParam = ({
|
|
|
266
254
|
if (style !== "deepObject" && !explode) {
|
|
267
255
|
let values = [];
|
|
268
256
|
Object.entries(value).forEach(([key, v]) => {
|
|
269
|
-
values = [
|
|
270
|
-
...values,
|
|
271
|
-
key,
|
|
272
|
-
allowReserved ? v : encodeURIComponent(v)
|
|
273
|
-
];
|
|
257
|
+
values = [...values, key, allowReserved ? v : encodeURIComponent(v)];
|
|
274
258
|
});
|
|
275
259
|
const joinedValues2 = values.join(",");
|
|
276
260
|
switch (style) {
|
|
@@ -321,10 +305,7 @@ var defaultPathSerializer = ({ path, url: _url }) => {
|
|
|
321
305
|
continue;
|
|
322
306
|
}
|
|
323
307
|
if (Array.isArray(value)) {
|
|
324
|
-
url = url.replace(
|
|
325
|
-
match,
|
|
326
|
-
serializeArrayParam({ explode, name, style, value })
|
|
327
|
-
);
|
|
308
|
+
url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
|
|
328
309
|
continue;
|
|
329
310
|
}
|
|
330
311
|
if (typeof value === "object") {
|
|
@@ -472,9 +453,7 @@ var getParseAs = (contentType) => {
|
|
|
472
453
|
if (cleanContent === "multipart/form-data") {
|
|
473
454
|
return "formData";
|
|
474
455
|
}
|
|
475
|
-
if (["application/", "audio/", "image/", "video/"].some(
|
|
476
|
-
(type) => cleanContent.startsWith(type)
|
|
477
|
-
)) {
|
|
456
|
+
if (["application/", "audio/", "image/", "video/"].some((type) => cleanContent.startsWith(type))) {
|
|
478
457
|
return "blob";
|
|
479
458
|
}
|
|
480
459
|
if (cleanContent.startsWith("text/")) {
|
|
@@ -491,11 +470,8 @@ var checkForExistence = (options, name) => {
|
|
|
491
470
|
}
|
|
492
471
|
return false;
|
|
493
472
|
};
|
|
494
|
-
|
|
495
|
-
security
|
|
496
|
-
...options
|
|
497
|
-
}) => {
|
|
498
|
-
for (const auth of security) {
|
|
473
|
+
async function setAuthParams(options) {
|
|
474
|
+
for (const auth of options.security ?? []) {
|
|
499
475
|
if (checkForExistence(options, auth.name)) {
|
|
500
476
|
continue;
|
|
501
477
|
}
|
|
@@ -520,7 +496,7 @@ var setAuthParams = async ({
|
|
|
520
496
|
break;
|
|
521
497
|
}
|
|
522
498
|
}
|
|
523
|
-
}
|
|
499
|
+
}
|
|
524
500
|
var buildUrl = (options) => getUrl({
|
|
525
501
|
baseUrl: options.baseUrl,
|
|
526
502
|
path: options.path,
|
|
@@ -646,10 +622,7 @@ var createClient = (config = {}) => {
|
|
|
646
622
|
serializedBody: void 0
|
|
647
623
|
};
|
|
648
624
|
if (opts.security) {
|
|
649
|
-
await setAuthParams(
|
|
650
|
-
...opts,
|
|
651
|
-
security: opts.security
|
|
652
|
-
});
|
|
625
|
+
await setAuthParams(opts);
|
|
653
626
|
}
|
|
654
627
|
if (opts.requestValidator) {
|
|
655
628
|
await opts.requestValidator(opts);
|
|
@@ -762,12 +735,7 @@ var createClient = (config = {}) => {
|
|
|
762
735
|
let finalError = error;
|
|
763
736
|
for (const fn of interceptors.error.fns) {
|
|
764
737
|
if (fn) {
|
|
765
|
-
finalError = await fn(
|
|
766
|
-
finalError,
|
|
767
|
-
response,
|
|
768
|
-
request2,
|
|
769
|
-
options
|
|
770
|
-
);
|
|
738
|
+
finalError = await fn(finalError, response, request2, options);
|
|
771
739
|
}
|
|
772
740
|
}
|
|
773
741
|
finalError = finalError || {};
|
|
@@ -832,9 +800,7 @@ var createClient = (config = {}) => {
|
|
|
832
800
|
};
|
|
833
801
|
|
|
834
802
|
// src/api/client.gen.ts
|
|
835
|
-
var client = createClient(
|
|
836
|
-
createConfig({ throwOnError: true })
|
|
837
|
-
);
|
|
803
|
+
var client = createClient(createConfig({ throwOnError: true }));
|
|
838
804
|
|
|
839
805
|
// src/api/sdk.gen.ts
|
|
840
806
|
var appControllerGetVersion = (options) => (options?.client ?? client).get({
|
|
@@ -847,6 +813,14 @@ var appControllerGetFrontendConfig = (options) => (options?.client ?? client).ge
|
|
|
847
813
|
url: "/api/frontend-config",
|
|
848
814
|
...options
|
|
849
815
|
});
|
|
816
|
+
var authControllerGetOAuth2Token = (options) => (options.client ?? client).post({
|
|
817
|
+
url: "/api/oauth2/token",
|
|
818
|
+
...options,
|
|
819
|
+
headers: {
|
|
820
|
+
"Content-Type": "application/json",
|
|
821
|
+
...options.headers
|
|
822
|
+
}
|
|
823
|
+
});
|
|
850
824
|
var tenantControllerGetTenants = (options) => (options?.client ?? client).get({
|
|
851
825
|
security: [{ scheme: "bearer", type: "http" }],
|
|
852
826
|
url: "/api/tenant",
|
|
@@ -880,6 +854,11 @@ var tenantControllerUpdateTenant = (options) => (options.client ?? client).patch
|
|
|
880
854
|
...options.headers
|
|
881
855
|
}
|
|
882
856
|
});
|
|
857
|
+
var auditLogControllerGetAuditLogs = (options) => (options?.client ?? client).get({
|
|
858
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
859
|
+
url: "/api/admin/audit-logs",
|
|
860
|
+
...options
|
|
861
|
+
});
|
|
883
862
|
var clientControllerGetClients = (options) => (options?.client ?? client).get({
|
|
884
863
|
security: [{ scheme: "bearer", type: "http" }],
|
|
885
864
|
url: "/api/client",
|
|
@@ -1104,18 +1083,81 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1104
1083
|
...options.headers
|
|
1105
1084
|
}
|
|
1106
1085
|
});
|
|
1107
|
-
var
|
|
1086
|
+
var schemaMetadataControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1087
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1088
|
+
url: "/api/schema-metadata/sign",
|
|
1089
|
+
...options,
|
|
1090
|
+
headers: {
|
|
1091
|
+
"Content-Type": "application/json",
|
|
1092
|
+
...options.headers
|
|
1093
|
+
}
|
|
1094
|
+
});
|
|
1095
|
+
var schemaMetadataControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1096
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1097
|
+
url: "/api/schema-metadata/sign-version",
|
|
1098
|
+
...options,
|
|
1099
|
+
headers: {
|
|
1100
|
+
"Content-Type": "application/json",
|
|
1101
|
+
...options.headers
|
|
1102
|
+
}
|
|
1103
|
+
});
|
|
1104
|
+
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1105
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1106
|
+
url: "/api/schema-metadata/vocabularies",
|
|
1107
|
+
...options
|
|
1108
|
+
});
|
|
1109
|
+
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1110
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1111
|
+
url: "/api/schema-metadata",
|
|
1112
|
+
...options
|
|
1113
|
+
});
|
|
1114
|
+
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1115
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1116
|
+
url: "/api/schema-metadata/{id}",
|
|
1117
|
+
...options
|
|
1118
|
+
});
|
|
1119
|
+
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1120
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1121
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1122
|
+
...options
|
|
1123
|
+
});
|
|
1124
|
+
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1108
1125
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1109
|
-
url: "/api/
|
|
1126
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1110
1127
|
...options,
|
|
1111
1128
|
headers: {
|
|
1112
1129
|
"Content-Type": "application/json",
|
|
1113
1130
|
...options.headers
|
|
1114
1131
|
}
|
|
1115
1132
|
});
|
|
1116
|
-
var
|
|
1133
|
+
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1134
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1135
|
+
url: "/api/schema-metadata/{id}/latest",
|
|
1136
|
+
...options
|
|
1137
|
+
});
|
|
1138
|
+
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1139
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1140
|
+
url: "/api/schema-metadata/{id}/versions",
|
|
1141
|
+
...options
|
|
1142
|
+
});
|
|
1143
|
+
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1117
1144
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1118
|
-
url: "/api/
|
|
1145
|
+
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1146
|
+
...options
|
|
1147
|
+
});
|
|
1148
|
+
var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
|
|
1149
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1150
|
+
url: "/api/schema-metadata/{id}/versions/{version}/export",
|
|
1151
|
+
...options
|
|
1152
|
+
});
|
|
1153
|
+
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1154
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1155
|
+
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1156
|
+
...options
|
|
1157
|
+
});
|
|
1158
|
+
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1159
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1160
|
+
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1119
1161
|
...options,
|
|
1120
1162
|
headers: {
|
|
1121
1163
|
"Content-Type": "application/json",
|
|
@@ -1236,6 +1278,26 @@ var trustListControllerGetTrustListVersion = (options) => (options.client ?? cli
|
|
|
1236
1278
|
url: "/api/trust-list/{id}/versions/{versionId}",
|
|
1237
1279
|
...options
|
|
1238
1280
|
});
|
|
1281
|
+
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1282
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1283
|
+
url: "/api/cache/stats",
|
|
1284
|
+
...options
|
|
1285
|
+
});
|
|
1286
|
+
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1287
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1288
|
+
url: "/api/cache",
|
|
1289
|
+
...options
|
|
1290
|
+
});
|
|
1291
|
+
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1292
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1293
|
+
url: "/api/cache/trust-list",
|
|
1294
|
+
...options
|
|
1295
|
+
});
|
|
1296
|
+
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1297
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1298
|
+
url: "/api/cache/status-list",
|
|
1299
|
+
...options
|
|
1300
|
+
});
|
|
1239
1301
|
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1240
1302
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1241
1303
|
url: "/api/verifier/config",
|
|
@@ -1297,26 +1359,6 @@ var presentationManagementControllerReissueRegistrationCertificate = (options) =
|
|
|
1297
1359
|
url: "/api/verifier/config/{id}/registration-cert/reissue",
|
|
1298
1360
|
...options
|
|
1299
1361
|
});
|
|
1300
|
-
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1301
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1302
|
-
url: "/api/cache/stats",
|
|
1303
|
-
...options
|
|
1304
|
-
});
|
|
1305
|
-
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1306
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1307
|
-
url: "/api/cache",
|
|
1308
|
-
...options
|
|
1309
|
-
});
|
|
1310
|
-
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1311
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1312
|
-
url: "/api/cache/trust-list",
|
|
1313
|
-
...options
|
|
1314
|
-
});
|
|
1315
|
-
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1316
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1317
|
-
url: "/api/cache/status-list",
|
|
1318
|
-
...options
|
|
1319
|
-
});
|
|
1320
1362
|
var registrarControllerDeleteConfig = (options) => (options?.client ?? client).delete({
|
|
1321
1363
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1322
1364
|
url: "/api/registrar/config",
|
|
@@ -1354,69 +1396,6 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
|
|
|
1354
1396
|
...options.headers
|
|
1355
1397
|
}
|
|
1356
1398
|
});
|
|
1357
|
-
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1358
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1359
|
-
url: "/api/schema-metadata/vocabularies",
|
|
1360
|
-
...options
|
|
1361
|
-
});
|
|
1362
|
-
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1363
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1364
|
-
url: "/api/schema-metadata",
|
|
1365
|
-
...options
|
|
1366
|
-
});
|
|
1367
|
-
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1368
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1369
|
-
url: "/api/schema-metadata/{id}",
|
|
1370
|
-
...options
|
|
1371
|
-
});
|
|
1372
|
-
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1373
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1374
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1375
|
-
...options
|
|
1376
|
-
});
|
|
1377
|
-
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1378
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1379
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1380
|
-
...options,
|
|
1381
|
-
headers: {
|
|
1382
|
-
"Content-Type": "application/json",
|
|
1383
|
-
...options.headers
|
|
1384
|
-
}
|
|
1385
|
-
});
|
|
1386
|
-
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1387
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1388
|
-
url: "/api/schema-metadata/{id}/latest",
|
|
1389
|
-
...options
|
|
1390
|
-
});
|
|
1391
|
-
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1392
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1393
|
-
url: "/api/schema-metadata/{id}/versions",
|
|
1394
|
-
...options
|
|
1395
|
-
});
|
|
1396
|
-
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1397
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1398
|
-
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1399
|
-
...options
|
|
1400
|
-
});
|
|
1401
|
-
var schemaMetadataControllerExport = (options) => (options.client ?? client).get({
|
|
1402
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1403
|
-
url: "/api/schema-metadata/{id}/versions/{version}/export",
|
|
1404
|
-
...options
|
|
1405
|
-
});
|
|
1406
|
-
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1407
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1408
|
-
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1409
|
-
...options
|
|
1410
|
-
});
|
|
1411
|
-
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1412
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1413
|
-
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1414
|
-
...options,
|
|
1415
|
-
headers: {
|
|
1416
|
-
"Content-Type": "application/json",
|
|
1417
|
-
...options.headers
|
|
1418
|
-
}
|
|
1419
|
-
});
|
|
1420
1399
|
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1421
1400
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1422
1401
|
url: "/api/issuer/offer",
|
|
@@ -1449,6 +1428,11 @@ var keyChainControllerGetProviders = (options) => (options?.client ?? client).ge
|
|
|
1449
1428
|
url: "/api/key-chain/providers",
|
|
1450
1429
|
...options
|
|
1451
1430
|
});
|
|
1431
|
+
var keyChainControllerGetProvidersHealth = (options) => (options?.client ?? client).get({
|
|
1432
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1433
|
+
url: "/api/key-chain/providers/health",
|
|
1434
|
+
...options
|
|
1435
|
+
});
|
|
1452
1436
|
var keyChainControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1453
1437
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1454
1438
|
url: "/api/key-chain",
|
|
@@ -1521,6 +1505,6 @@ var storageControllerUpload = (options) => (options.client ?? client).post({
|
|
|
1521
1505
|
}
|
|
1522
1506
|
});
|
|
1523
1507
|
|
|
1524
|
-
export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs,
|
|
1508
|
+
export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, auditLogControllerGetAuditLogs, authControllerGetOAuth2Token, 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, keyChainControllerGetProvidersHealth, 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, schemaMetadataControllerSignSchemaMetaConfig, schemaMetadataControllerSignVersionSchemaMetaConfig, 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 };
|
|
1525
1509
|
//# sourceMappingURL=index.mjs.map
|
|
1526
1510
|
//# sourceMappingURL=index.mjs.map
|