@eudiplo/sdk-core 4.0.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/client/client.gen.d.mts +1 -1
- package/dist/api/client/client.gen.d.ts +1 -1
- package/dist/api/client/client.gen.js +100 -110
- package/dist/api/client/client.gen.mjs +100 -110
- package/dist/api/client/index.d.mts +1 -1
- package/dist/api/client/index.d.ts +1 -1
- package/dist/api/client/index.js +100 -110
- package/dist/api/client/index.mjs +100 -110
- 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 +3 -3
- package/dist/api/client.gen.d.ts +3 -3
- package/dist/api/client.gen.js +100 -110
- package/dist/api/client.gen.mjs +100 -110
- package/dist/api/index.d.mts +58 -22
- package/dist/api/index.d.ts +58 -22
- package/dist/api/index.js +182 -132
- package/dist/api/index.mjs +175 -133
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +182 -132
- package/dist/index.mjs +175 -133
- package/dist/{types.gen-sNmRQvUI.d.mts → types.gen-5zlqZUfP.d.mts} +632 -235
- package/dist/{types.gen-sNmRQvUI.d.ts → types.gen-5zlqZUfP.d.ts} +632 -235
- package/dist/{types.gen-D8LjzWc0.d.mts → types.gen-DKrNRB-E.d.mts} +17 -10
- package/dist/{types.gen-D8LjzWc0.d.ts → types.gen-DKrNRB-E.d.ts} +17 -10
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -32,7 +32,7 @@ var jsonBodySerializer = {
|
|
|
32
32
|
};
|
|
33
33
|
|
|
34
34
|
// src/api/core/serverSentEvents.gen.ts
|
|
35
|
-
|
|
35
|
+
function createSseClient({
|
|
36
36
|
onRequest,
|
|
37
37
|
onSseError,
|
|
38
38
|
onSseEvent,
|
|
@@ -44,7 +44,7 @@ var createSseClient = ({
|
|
|
44
44
|
sseSleepFn,
|
|
45
45
|
url,
|
|
46
46
|
...options
|
|
47
|
-
})
|
|
47
|
+
}) {
|
|
48
48
|
let lastEventId;
|
|
49
49
|
const sleep = sseSleepFn ?? ((ms) => new Promise((resolve) => setTimeout(resolve, ms)));
|
|
50
50
|
const createStream = async function* () {
|
|
@@ -91,7 +91,7 @@ var createSseClient = ({
|
|
|
91
91
|
const { done, value } = await reader.read();
|
|
92
92
|
if (done) break;
|
|
93
93
|
buffer += value;
|
|
94
|
-
buffer = buffer.replace(/\r\n
|
|
94
|
+
buffer = buffer.replace(/\r\n?/g, "\n");
|
|
95
95
|
const chunks = buffer.split("\n\n");
|
|
96
96
|
buffer = chunks.pop() ?? "";
|
|
97
97
|
for (const chunk of chunks) {
|
|
@@ -165,7 +165,7 @@ var createSseClient = ({
|
|
|
165
165
|
};
|
|
166
166
|
const stream = createStream();
|
|
167
167
|
return { stream };
|
|
168
|
-
}
|
|
168
|
+
}
|
|
169
169
|
|
|
170
170
|
// src/api/core/pathSerializer.gen.ts
|
|
171
171
|
var separatorArrayExplode = (style) => {
|
|
@@ -660,136 +660,126 @@ var createClient = (config = {}) => {
|
|
|
660
660
|
if (opts.body === void 0 || opts.serializedBody === "") {
|
|
661
661
|
opts.headers.delete("Content-Type");
|
|
662
662
|
}
|
|
663
|
-
const
|
|
664
|
-
|
|
663
|
+
const resolvedOpts = opts;
|
|
664
|
+
const url = buildUrl(resolvedOpts);
|
|
665
|
+
return { opts: resolvedOpts, url };
|
|
665
666
|
};
|
|
666
667
|
const request = async (options) => {
|
|
667
|
-
const
|
|
668
|
-
const
|
|
669
|
-
|
|
670
|
-
...opts,
|
|
671
|
-
body: getValidRequestBody(opts)
|
|
672
|
-
};
|
|
673
|
-
let request2 = new Request(url, requestInit);
|
|
674
|
-
for (const fn of interceptors.request.fns) {
|
|
675
|
-
if (fn) {
|
|
676
|
-
request2 = await fn(request2, opts);
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
const _fetch = opts.fetch;
|
|
668
|
+
const throwOnError = options.throwOnError ?? _config.throwOnError;
|
|
669
|
+
const responseStyle = options.responseStyle ?? _config.responseStyle;
|
|
670
|
+
let request2;
|
|
680
671
|
let response;
|
|
681
672
|
try {
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
673
|
+
const { opts, url } = await beforeRequest(options);
|
|
674
|
+
const requestInit = {
|
|
675
|
+
redirect: "follow",
|
|
676
|
+
...opts,
|
|
677
|
+
body: getValidRequestBody(opts)
|
|
678
|
+
};
|
|
679
|
+
request2 = new Request(url, requestInit);
|
|
680
|
+
for (const fn of interceptors.request.fns) {
|
|
686
681
|
if (fn) {
|
|
687
|
-
|
|
688
|
-
error2,
|
|
689
|
-
void 0,
|
|
690
|
-
request2,
|
|
691
|
-
opts
|
|
692
|
-
);
|
|
682
|
+
request2 = await fn(request2, opts);
|
|
693
683
|
}
|
|
694
684
|
}
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
685
|
+
const _fetch = opts.fetch;
|
|
686
|
+
response = await _fetch(request2);
|
|
687
|
+
for (const fn of interceptors.response.fns) {
|
|
688
|
+
if (fn) {
|
|
689
|
+
response = await fn(response, request2, opts);
|
|
690
|
+
}
|
|
698
691
|
}
|
|
699
|
-
|
|
700
|
-
error: finalError2,
|
|
692
|
+
const result = {
|
|
701
693
|
request: request2,
|
|
702
|
-
response
|
|
694
|
+
response
|
|
703
695
|
};
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
696
|
+
if (response.ok) {
|
|
697
|
+
const parseAs = (opts.parseAs === "auto" ? getParseAs(response.headers.get("Content-Type")) : opts.parseAs) ?? "json";
|
|
698
|
+
if (response.status === 204 || response.headers.get("Content-Length") === "0") {
|
|
699
|
+
let emptyData;
|
|
700
|
+
switch (parseAs) {
|
|
701
|
+
case "arrayBuffer":
|
|
702
|
+
case "blob":
|
|
703
|
+
case "text":
|
|
704
|
+
emptyData = await response[parseAs]();
|
|
705
|
+
break;
|
|
706
|
+
case "formData":
|
|
707
|
+
emptyData = new FormData();
|
|
708
|
+
break;
|
|
709
|
+
case "stream":
|
|
710
|
+
emptyData = response.body;
|
|
711
|
+
break;
|
|
712
|
+
case "json":
|
|
713
|
+
default:
|
|
714
|
+
emptyData = {};
|
|
715
|
+
break;
|
|
716
|
+
}
|
|
717
|
+
return opts.responseStyle === "data" ? emptyData : {
|
|
718
|
+
data: emptyData,
|
|
719
|
+
...result
|
|
720
|
+
};
|
|
721
|
+
}
|
|
722
|
+
let data;
|
|
718
723
|
switch (parseAs) {
|
|
719
724
|
case "arrayBuffer":
|
|
720
725
|
case "blob":
|
|
726
|
+
case "formData":
|
|
721
727
|
case "text":
|
|
722
|
-
|
|
728
|
+
data = await response[parseAs]();
|
|
723
729
|
break;
|
|
724
|
-
case "
|
|
725
|
-
|
|
730
|
+
case "json": {
|
|
731
|
+
const text = await response.text();
|
|
732
|
+
data = text ? JSON.parse(text) : {};
|
|
726
733
|
break;
|
|
734
|
+
}
|
|
727
735
|
case "stream":
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
736
|
+
return opts.responseStyle === "data" ? response.body : {
|
|
737
|
+
data: response.body,
|
|
738
|
+
...result
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
if (parseAs === "json") {
|
|
742
|
+
if (opts.responseValidator) {
|
|
743
|
+
await opts.responseValidator(data);
|
|
744
|
+
}
|
|
745
|
+
if (opts.responseTransformer) {
|
|
746
|
+
data = await opts.responseTransformer(data);
|
|
747
|
+
}
|
|
734
748
|
}
|
|
735
|
-
return opts.responseStyle === "data" ?
|
|
736
|
-
data
|
|
749
|
+
return opts.responseStyle === "data" ? data : {
|
|
750
|
+
data,
|
|
737
751
|
...result
|
|
738
752
|
};
|
|
739
753
|
}
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
case "text":
|
|
746
|
-
data = await response[parseAs]();
|
|
747
|
-
break;
|
|
748
|
-
case "json": {
|
|
749
|
-
const text = await response.text();
|
|
750
|
-
data = text ? JSON.parse(text) : {};
|
|
751
|
-
break;
|
|
752
|
-
}
|
|
753
|
-
case "stream":
|
|
754
|
-
return opts.responseStyle === "data" ? response.body : {
|
|
755
|
-
data: response.body,
|
|
756
|
-
...result
|
|
757
|
-
};
|
|
754
|
+
const textError = await response.text();
|
|
755
|
+
let jsonError;
|
|
756
|
+
try {
|
|
757
|
+
jsonError = JSON.parse(textError);
|
|
758
|
+
} catch {
|
|
758
759
|
}
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
if (
|
|
764
|
-
|
|
760
|
+
throw jsonError ?? textError;
|
|
761
|
+
} catch (error) {
|
|
762
|
+
let finalError = error;
|
|
763
|
+
for (const fn of interceptors.error.fns) {
|
|
764
|
+
if (fn) {
|
|
765
|
+
finalError = await fn(
|
|
766
|
+
finalError,
|
|
767
|
+
response,
|
|
768
|
+
request2,
|
|
769
|
+
options
|
|
770
|
+
);
|
|
765
771
|
}
|
|
766
772
|
}
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
};
|
|
771
|
-
}
|
|
772
|
-
const textError = await response.text();
|
|
773
|
-
let jsonError;
|
|
774
|
-
try {
|
|
775
|
-
jsonError = JSON.parse(textError);
|
|
776
|
-
} catch {
|
|
777
|
-
}
|
|
778
|
-
const error = jsonError ?? textError;
|
|
779
|
-
let finalError = error;
|
|
780
|
-
for (const fn of interceptors.error.fns) {
|
|
781
|
-
if (fn) {
|
|
782
|
-
finalError = await fn(error, response, request2, opts);
|
|
773
|
+
finalError = finalError || {};
|
|
774
|
+
if (throwOnError) {
|
|
775
|
+
throw finalError;
|
|
783
776
|
}
|
|
777
|
+
return responseStyle === "data" ? void 0 : {
|
|
778
|
+
error: finalError,
|
|
779
|
+
request: request2,
|
|
780
|
+
response
|
|
781
|
+
};
|
|
784
782
|
}
|
|
785
|
-
finalError = finalError || {};
|
|
786
|
-
if (opts.throwOnError) {
|
|
787
|
-
throw finalError;
|
|
788
|
-
}
|
|
789
|
-
return opts.responseStyle === "data" ? void 0 : {
|
|
790
|
-
error: finalError,
|
|
791
|
-
...result
|
|
792
|
-
};
|
|
793
783
|
};
|
|
794
784
|
const makeMethodFn = (method) => (options) => request({ ...options, method });
|
|
795
785
|
const makeSseFn = (method) => async (options) => {
|
|
@@ -797,7 +787,6 @@ var createClient = (config = {}) => {
|
|
|
797
787
|
return createSseClient({
|
|
798
788
|
...opts,
|
|
799
789
|
body: opts.body,
|
|
800
|
-
headers: opts.headers,
|
|
801
790
|
method,
|
|
802
791
|
onRequest: async (url2, init) => {
|
|
803
792
|
let request2 = new Request(url2, init);
|
|
@@ -812,8 +801,9 @@ var createClient = (config = {}) => {
|
|
|
812
801
|
url
|
|
813
802
|
});
|
|
814
803
|
};
|
|
804
|
+
const _buildUrl = (options) => buildUrl({ ..._config, ...options });
|
|
815
805
|
return {
|
|
816
|
-
buildUrl,
|
|
806
|
+
buildUrl: _buildUrl,
|
|
817
807
|
connect: makeMethodFn("CONNECT"),
|
|
818
808
|
delete: makeMethodFn("DELETE"),
|
|
819
809
|
get: makeMethodFn("GET"),
|
|
@@ -852,6 +842,11 @@ var appControllerGetVersion = (options) => (options?.client ?? client).get({
|
|
|
852
842
|
url: "/api/version",
|
|
853
843
|
...options
|
|
854
844
|
});
|
|
845
|
+
var appControllerGetFrontendConfig = (options) => (options?.client ?? client).get({
|
|
846
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
847
|
+
url: "/api/frontend-config",
|
|
848
|
+
...options
|
|
849
|
+
});
|
|
855
850
|
var tenantControllerGetTenants = (options) => (options?.client ?? client).get({
|
|
856
851
|
security: [{ scheme: "bearer", type: "http" }],
|
|
857
852
|
url: "/api/tenant",
|
|
@@ -1029,6 +1024,39 @@ var sessionConfigControllerUpdateConfig = (options) => (options.client ?? client
|
|
|
1029
1024
|
}
|
|
1030
1025
|
});
|
|
1031
1026
|
var sessionEventsControllerSubscribeToSessionEvents = (options) => (options.client ?? client).get({ url: "/api/session/{id}/events", ...options });
|
|
1027
|
+
var userControllerGetUsers = (options) => (options?.client ?? client).get({
|
|
1028
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1029
|
+
url: "/api/user",
|
|
1030
|
+
...options
|
|
1031
|
+
});
|
|
1032
|
+
var userControllerCreateUser = (options) => (options.client ?? client).post({
|
|
1033
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1034
|
+
url: "/api/user",
|
|
1035
|
+
...options,
|
|
1036
|
+
headers: {
|
|
1037
|
+
"Content-Type": "application/json",
|
|
1038
|
+
...options.headers
|
|
1039
|
+
}
|
|
1040
|
+
});
|
|
1041
|
+
var userControllerDeleteUser = (options) => (options.client ?? client).delete({
|
|
1042
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1043
|
+
url: "/api/user/{id}",
|
|
1044
|
+
...options
|
|
1045
|
+
});
|
|
1046
|
+
var userControllerGetUser = (options) => (options.client ?? client).get({
|
|
1047
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1048
|
+
url: "/api/user/{id}",
|
|
1049
|
+
...options
|
|
1050
|
+
});
|
|
1051
|
+
var userControllerUpdateUser = (options) => (options.client ?? client).patch({
|
|
1052
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1053
|
+
url: "/api/user/{id}",
|
|
1054
|
+
...options,
|
|
1055
|
+
headers: {
|
|
1056
|
+
"Content-Type": "application/json",
|
|
1057
|
+
...options.headers
|
|
1058
|
+
}
|
|
1059
|
+
});
|
|
1032
1060
|
var issuanceConfigControllerGetIssuanceConfigurations = (options) => (options?.client ?? client).get({
|
|
1033
1061
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1034
1062
|
url: "/api/issuer/config",
|
|
@@ -1156,6 +1184,15 @@ var presentationManagementControllerStorePresentationConfig = (options) => (opti
|
|
|
1156
1184
|
...options.headers
|
|
1157
1185
|
}
|
|
1158
1186
|
});
|
|
1187
|
+
var presentationManagementControllerResolveIssuerMetadata = (options) => (options.client ?? client).post({
|
|
1188
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1189
|
+
url: "/api/verifier/config/issuer-metadata/resolve",
|
|
1190
|
+
...options,
|
|
1191
|
+
headers: {
|
|
1192
|
+
"Content-Type": "application/json",
|
|
1193
|
+
...options.headers
|
|
1194
|
+
}
|
|
1195
|
+
});
|
|
1159
1196
|
var presentationManagementControllerDeleteConfiguration = (options) => (options.client ?? client).delete({
|
|
1160
1197
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1161
1198
|
url: "/api/verifier/config/{id}",
|
|
@@ -1175,6 +1212,11 @@ var presentationManagementControllerUpdateConfiguration = (options) => (options.
|
|
|
1175
1212
|
...options.headers
|
|
1176
1213
|
}
|
|
1177
1214
|
});
|
|
1215
|
+
var presentationManagementControllerReissueRegistrationCertificate = (options) => (options.client ?? client).post({
|
|
1216
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1217
|
+
url: "/api/verifier/config/{id}/registration-cert/reissue",
|
|
1218
|
+
...options
|
|
1219
|
+
});
|
|
1178
1220
|
var cacheControllerGetStats = (options) => (options?.client ?? client).get({
|
|
1179
1221
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1180
1222
|
url: "/api/cache/stats",
|
|
@@ -1195,64 +1237,64 @@ var cacheControllerClearStatusListCache = (options) => (options?.client ?? clien
|
|
|
1195
1237
|
url: "/api/cache/status-list",
|
|
1196
1238
|
...options
|
|
1197
1239
|
});
|
|
1198
|
-
var
|
|
1240
|
+
var registrarControllerDeleteConfig = (options) => (options?.client ?? client).delete({
|
|
1199
1241
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1200
|
-
url: "/api/
|
|
1242
|
+
url: "/api/registrar/config",
|
|
1243
|
+
...options
|
|
1244
|
+
});
|
|
1245
|
+
var registrarControllerGetConfig = (options) => (options?.client ?? client).get({
|
|
1246
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1247
|
+
url: "/api/registrar/config",
|
|
1248
|
+
...options
|
|
1249
|
+
});
|
|
1250
|
+
var registrarControllerUpdateConfig = (options) => (options.client ?? client).patch({
|
|
1251
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1252
|
+
url: "/api/registrar/config",
|
|
1201
1253
|
...options,
|
|
1202
1254
|
headers: {
|
|
1203
1255
|
"Content-Type": "application/json",
|
|
1204
1256
|
...options.headers
|
|
1205
1257
|
}
|
|
1206
1258
|
});
|
|
1207
|
-
var
|
|
1259
|
+
var registrarControllerCreateConfig = (options) => (options.client ?? client).post({
|
|
1208
1260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1209
|
-
url: "/api/
|
|
1261
|
+
url: "/api/registrar/config",
|
|
1210
1262
|
...options,
|
|
1211
1263
|
headers: {
|
|
1212
1264
|
"Content-Type": "application/json",
|
|
1213
1265
|
...options.headers
|
|
1214
1266
|
}
|
|
1215
1267
|
});
|
|
1216
|
-
var
|
|
1268
|
+
var registrarControllerCreateAccessCertificate = (options) => (options.client ?? client).post({
|
|
1217
1269
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1218
|
-
url: "/api/
|
|
1270
|
+
url: "/api/registrar/access-certificate",
|
|
1219
1271
|
...options,
|
|
1220
1272
|
headers: {
|
|
1221
1273
|
"Content-Type": "application/json",
|
|
1222
1274
|
...options.headers
|
|
1223
1275
|
}
|
|
1224
1276
|
});
|
|
1225
|
-
var
|
|
1226
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1227
|
-
url: "/api/registrar/config",
|
|
1228
|
-
...options
|
|
1229
|
-
});
|
|
1230
|
-
var registrarControllerGetConfig = (options) => (options?.client ?? client).get({
|
|
1231
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1232
|
-
url: "/api/registrar/config",
|
|
1233
|
-
...options
|
|
1234
|
-
});
|
|
1235
|
-
var registrarControllerUpdateConfig = (options) => (options.client ?? client).patch({
|
|
1277
|
+
var credentialOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1236
1278
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1237
|
-
url: "/api/
|
|
1279
|
+
url: "/api/issuer/offer",
|
|
1238
1280
|
...options,
|
|
1239
1281
|
headers: {
|
|
1240
1282
|
"Content-Type": "application/json",
|
|
1241
1283
|
...options.headers
|
|
1242
1284
|
}
|
|
1243
1285
|
});
|
|
1244
|
-
var
|
|
1286
|
+
var deferredControllerCompleteDeferred = (options) => (options.client ?? client).post({
|
|
1245
1287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1246
|
-
url: "/api/
|
|
1288
|
+
url: "/api/issuer/deferred/{transactionId}/complete",
|
|
1247
1289
|
...options,
|
|
1248
1290
|
headers: {
|
|
1249
1291
|
"Content-Type": "application/json",
|
|
1250
1292
|
...options.headers
|
|
1251
1293
|
}
|
|
1252
1294
|
});
|
|
1253
|
-
var
|
|
1295
|
+
var deferredControllerFailDeferred = (options) => (options.client ?? client).post({
|
|
1254
1296
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1255
|
-
url: "/api/
|
|
1297
|
+
url: "/api/issuer/deferred/{transactionId}/fail",
|
|
1256
1298
|
...options,
|
|
1257
1299
|
headers: {
|
|
1258
1300
|
"Content-Type": "application/json",
|
|
@@ -2025,6 +2067,6 @@ async function submitDcApiWalletResponse(options) {
|
|
|
2025
2067
|
};
|
|
2026
2068
|
}
|
|
2027
2069
|
|
|
2028
|
-
export { EudiploClient, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, callDcApi, client, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, createDcApiRequest, createDcApiRequestForBrowser, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, isDcApiAvailable, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, issue, issueAndWait, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerGetSessionLogs, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerUpload, submitDcApiWalletResponse, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, verifierOfferControllerGetOffer, verify, verifyAndWait, verifyWithDcApi, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
2070
|
+
export { EudiploClient, appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, callDcApi, client, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, createDcApiRequest, createDcApiRequestForBrowser, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, isDcApiAvailable, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, issue, issueAndWait, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerGetSessionLogs, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerUpload, submitDcApiWalletResponse, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, verify, verifyAndWait, verifyWithDcApi, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
2029
2071
|
//# sourceMappingURL=index.mjs.map
|
|
2030
2072
|
//# sourceMappingURL=index.mjs.map
|