@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.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({
|
|
@@ -1117,18 +1083,81 @@ var credentialConfigControllerUpdateCredentialConfiguration = (options) => (opti
|
|
|
1117
1083
|
...options.headers
|
|
1118
1084
|
}
|
|
1119
1085
|
});
|
|
1120
|
-
var
|
|
1086
|
+
var schemaMetadataControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1121
1087
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1122
|
-
url: "/api/
|
|
1088
|
+
url: "/api/schema-metadata/sign",
|
|
1123
1089
|
...options,
|
|
1124
1090
|
headers: {
|
|
1125
1091
|
"Content-Type": "application/json",
|
|
1126
1092
|
...options.headers
|
|
1127
1093
|
}
|
|
1128
1094
|
});
|
|
1129
|
-
var
|
|
1095
|
+
var schemaMetadataControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1130
1096
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1131
|
-
url: "/api/
|
|
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({
|
|
1125
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1126
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1127
|
+
...options,
|
|
1128
|
+
headers: {
|
|
1129
|
+
"Content-Type": "application/json",
|
|
1130
|
+
...options.headers
|
|
1131
|
+
}
|
|
1132
|
+
});
|
|
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({
|
|
1144
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
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",
|
|
1132
1161
|
...options,
|
|
1133
1162
|
headers: {
|
|
1134
1163
|
"Content-Type": "application/json",
|
|
@@ -1249,6 +1278,26 @@ var trustListControllerGetTrustListVersion = (options) => (options.client ?? cli
|
|
|
1249
1278
|
url: "/api/trust-list/{id}/versions/{versionId}",
|
|
1250
1279
|
...options
|
|
1251
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
|
+
});
|
|
1252
1301
|
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1253
1302
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1254
1303
|
url: "/api/verifier/config",
|
|
@@ -1310,26 +1359,6 @@ var presentationManagementControllerReissueRegistrationCertificate = (options) =
|
|
|
1310
1359
|
url: "/api/verifier/config/{id}/registration-cert/reissue",
|
|
1311
1360
|
...options
|
|
1312
1361
|
});
|
|
1313
|
-
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1314
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1315
|
-
url: "/api/cache/stats",
|
|
1316
|
-
...options
|
|
1317
|
-
});
|
|
1318
|
-
var cacheControllerClearAllCaches = (options) => (options?.client ?? client).delete({
|
|
1319
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1320
|
-
url: "/api/cache",
|
|
1321
|
-
...options
|
|
1322
|
-
});
|
|
1323
|
-
var cacheControllerClearTrustListCache = (options) => (options?.client ?? client).delete({
|
|
1324
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1325
|
-
url: "/api/cache/trust-list",
|
|
1326
|
-
...options
|
|
1327
|
-
});
|
|
1328
|
-
var cacheControllerClearStatusListCache = (options) => (options?.client ?? client).delete({
|
|
1329
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1330
|
-
url: "/api/cache/status-list",
|
|
1331
|
-
...options
|
|
1332
|
-
});
|
|
1333
1362
|
var registrarControllerDeleteConfig = (options) => (options?.client ?? client).delete({
|
|
1334
1363
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1335
1364
|
url: "/api/registrar/config",
|
|
@@ -1367,69 +1396,6 @@ var registrarControllerCreateAccessCertificate = (options) => (options.client ??
|
|
|
1367
1396
|
...options.headers
|
|
1368
1397
|
}
|
|
1369
1398
|
});
|
|
1370
|
-
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1371
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1372
|
-
url: "/api/schema-metadata/vocabularies",
|
|
1373
|
-
...options
|
|
1374
|
-
});
|
|
1375
|
-
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1376
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1377
|
-
url: "/api/schema-metadata",
|
|
1378
|
-
...options
|
|
1379
|
-
});
|
|
1380
|
-
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1381
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1382
|
-
url: "/api/schema-metadata/{id}",
|
|
1383
|
-
...options
|
|
1384
|
-
});
|
|
1385
|
-
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1386
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1387
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1388
|
-
...options
|
|
1389
|
-
});
|
|
1390
|
-
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1391
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1392
|
-
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1393
|
-
...options,
|
|
1394
|
-
headers: {
|
|
1395
|
-
"Content-Type": "application/json",
|
|
1396
|
-
...options.headers
|
|
1397
|
-
}
|
|
1398
|
-
});
|
|
1399
|
-
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1400
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1401
|
-
url: "/api/schema-metadata/{id}/latest",
|
|
1402
|
-
...options
|
|
1403
|
-
});
|
|
1404
|
-
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1405
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1406
|
-
url: "/api/schema-metadata/{id}/versions",
|
|
1407
|
-
...options
|
|
1408
|
-
});
|
|
1409
|
-
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1410
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
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",
|
|
1427
|
-
...options,
|
|
1428
|
-
headers: {
|
|
1429
|
-
"Content-Type": "application/json",
|
|
1430
|
-
...options.headers
|
|
1431
|
-
}
|
|
1432
|
-
});
|
|
1433
1399
|
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1434
1400
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1435
1401
|
url: "/api/issuer/offer",
|
|
@@ -1462,6 +1428,11 @@ var keyChainControllerGetProviders = (options) => (options?.client ?? client).ge
|
|
|
1462
1428
|
url: "/api/key-chain/providers",
|
|
1463
1429
|
...options
|
|
1464
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
|
+
});
|
|
1465
1436
|
var keyChainControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1466
1437
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1467
1438
|
url: "/api/key-chain",
|
|
@@ -1534,6 +1505,6 @@ var storageControllerUpload = (options) => (options.client ?? client).post({
|
|
|
1534
1505
|
}
|
|
1535
1506
|
});
|
|
1536
1507
|
|
|
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,
|
|
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 };
|
|
1538
1509
|
//# sourceMappingURL=index.mjs.map
|
|
1539
1510
|
//# sourceMappingURL=index.mjs.map
|