@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/api/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",
|
|
@@ -1384,6 +1426,6 @@ var storageControllerUpload = (options) => (options.client ?? client).post({
|
|
|
1384
1426
|
}
|
|
1385
1427
|
});
|
|
1386
1428
|
|
|
1387
|
-
export { appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, 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, 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, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
1429
|
+
export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, 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, 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, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate };
|
|
1388
1430
|
//# sourceMappingURL=index.mjs.map
|
|
1389
1431
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { S as Session } from './types.gen-
|
|
2
|
-
export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerGetVersionData, c as AppControllerGetVersionResponses, d as AttestationBasedPolicy, e as AttributeProviderControllerCreateData, f as AttributeProviderControllerCreateResponses, g as AttributeProviderControllerDeleteData, h as AttributeProviderControllerDeleteErrors, i as AttributeProviderControllerDeleteResponses, j as AttributeProviderControllerGetAllData, k as AttributeProviderControllerGetAllResponses, l as AttributeProviderControllerGetByIdData, m as AttributeProviderControllerGetByIdErrors, n as AttributeProviderControllerGetByIdResponses, o as AttributeProviderControllerUpdateData, p as AttributeProviderControllerUpdateErrors, q as AttributeProviderControllerUpdateResponses, r as AttributeProviderEntity, s as AuthenticationMethodAuth, t as AuthenticationMethodNone, u as AuthenticationMethodPresentation, v as AuthenticationUrlConfig, w as AuthorizationResponse, x as AuthorizeQueries, C as CacheControllerClearAllCachesData, y as CacheControllerClearAllCachesResponse, z as CacheControllerClearAllCachesResponses, B as CacheControllerClearStatusListCacheData, D as CacheControllerClearStatusListCacheResponse, E as CacheControllerClearStatusListCacheResponses, F as CacheControllerClearTrustListCacheData, G as CacheControllerClearTrustListCacheResponse, H as CacheControllerClearTrustListCacheResponses, I as CacheControllerGetStatsData, J as CacheControllerGetStatsResponses, K as CertificateInfoDto, L as ChainedAsConfig, M as ChainedAsErrorResponseDto, N as ChainedAsParRequestDto, O as ChainedAsParResponseDto, P as ChainedAsTokenConfig, Q as ChainedAsTokenRequestDto, R as ChainedAsTokenResponseDto, T as ClaimsQuery, U as ClientControllerCreateClientData, V as ClientControllerCreateClientResponse, W as ClientControllerCreateClientResponses, X as ClientControllerDeleteClientData, Y as ClientControllerDeleteClientResponses, Z as ClientControllerGetClientData, _ as ClientControllerGetClientResponse, $ as ClientControllerGetClientResponses, a0 as ClientControllerGetClientSecretData, a1 as ClientControllerGetClientSecretResponse, a2 as ClientControllerGetClientSecretResponses, a3 as ClientControllerGetClientsData, a4 as ClientControllerGetClientsResponse, a5 as ClientControllerGetClientsResponses, a6 as ClientControllerRotateClientSecretData, a7 as ClientControllerRotateClientSecretResponse, a8 as ClientControllerRotateClientSecretResponses, a9 as ClientControllerUpdateClientData, aa as ClientControllerUpdateClientResponse, ab as ClientControllerUpdateClientResponses, ac as ClientCredentialsDto, ad as ClientEntity, ae as ClientOptions, af as ClientSecretResponseDto, ag as CompleteDeferredDto, ah as CreateAccessCertificateDto, ai as CreateAttributeProviderDto, aj as CreateClientDto, ak as CreateRegistrarConfigDto, al as CreateStatusListDto, am as CreateTenantDto, an as CreateWebhookEndpointDto, ao as CredentialConfig, ap as CredentialConfigControllerDeleteIssuanceConfigurationData, aq as CredentialConfigControllerDeleteIssuanceConfigurationResponses, ar as CredentialConfigControllerGetConfigByIdData, as as CredentialConfigControllerGetConfigByIdResponse, at as CredentialConfigControllerGetConfigByIdResponses, au as CredentialConfigControllerGetConfigsData, av as CredentialConfigControllerGetConfigsResponse, aw as CredentialConfigControllerGetConfigsResponses, ax as CredentialConfigControllerStoreCredentialConfigurationData, ay as CredentialConfigControllerStoreCredentialConfigurationResponse, az as CredentialConfigControllerStoreCredentialConfigurationResponses, aA as CredentialConfigControllerUpdateCredentialConfigurationData, aB as CredentialConfigControllerUpdateCredentialConfigurationResponse, aC as CredentialConfigControllerUpdateCredentialConfigurationResponses, aD as CredentialConfigCreate, aE as CredentialConfigUpdate, aF as CredentialOfferControllerGetOfferData, aG as CredentialOfferControllerGetOfferResponse, aH as CredentialOfferControllerGetOfferResponses, aI as CredentialQuery, aJ as CredentialSetQuery, aK as Dcql, aL as DeferredControllerCompleteDeferredData, aM as DeferredControllerCompleteDeferredErrors, aN as DeferredControllerCompleteDeferredResponse, aO as DeferredControllerCompleteDeferredResponses, aP as DeferredControllerFailDeferredData, aQ as DeferredControllerFailDeferredErrors, aR as DeferredControllerFailDeferredResponse, aS as DeferredControllerFailDeferredResponses, aT as DeferredCredentialRequestDto, aU as DeferredOperationResponse, aV as Display, aW as DisplayImage, aX as DisplayInfo, aY as DisplayLogo, aZ as EcJwk, a_ as EcPublic, a$ as EmbeddedDisclosurePolicy, b0 as ExportEcJwk, b1 as ExportRotationPolicyDto, b2 as ExternalTrustListEntity, b3 as FailDeferredDto, b4 as FileUploadDto, b5 as IaeActionOpenid4VpPresentation, b6 as IaeActionRedirectToWeb, b7 as ImportTenantDto, b8 as InteractiveAuthorizationCodeResponseDto, b9 as InteractiveAuthorizationErrorResponseDto, ba as InteractiveAuthorizationRequestDto, bb as InternalTrustListEntity, bc as IssuanceConfig, bd as IssuanceConfigControllerGetIssuanceConfigurationsData, be as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bf as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bg as IssuanceConfigControllerStoreIssuanceConfigurationData, bh as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bi as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bj as IssuanceDto, bk as IssuerMetadataCredentialConfig, bl as JwksResponseDto, bm as KeyChainControllerCreateData, bn as KeyChainControllerCreateResponses, bo as KeyChainControllerDeleteData, bp as KeyChainControllerDeleteErrors, bq as KeyChainControllerDeleteResponses, br as KeyChainControllerExportData, bs as KeyChainControllerExportErrors, bt as KeyChainControllerExportResponse, bu as KeyChainControllerExportResponses, bv as KeyChainControllerGetAllData, bw as KeyChainControllerGetAllResponse, bx as KeyChainControllerGetAllResponses, by as KeyChainControllerGetByIdData, bz as KeyChainControllerGetByIdErrors, bA as KeyChainControllerGetByIdResponse, bB as KeyChainControllerGetByIdResponses, bC as KeyChainControllerGetProvidersData, bD as KeyChainControllerGetProvidersResponse, bE as KeyChainControllerGetProvidersResponses, bF as KeyChainControllerImportData, bG as KeyChainControllerImportResponses, bH as KeyChainControllerRotateData, bI as KeyChainControllerRotateErrors, bJ as KeyChainControllerRotateResponses, bK as KeyChainControllerUpdateData, bL as KeyChainControllerUpdateErrors, bM as KeyChainControllerUpdateResponses, bN as KeyChainCreateDto, bO as KeyChainEntity, bP as KeyChainExportDto, bQ as KeyChainImportDto, bR as KeyChainResponseDto, bS as KeyChainUpdateDto, bT as KmsProviderCapabilitiesDto, bU as KmsProviderInfoDto, bV as KmsProvidersResponseDto, bW as NoneTrustPolicy, bX as NotificationRequestDto, bY as OfferRequestDto, bZ as OfferResponse, b_ as ParResponseDto, b$ as PolicyCredential, c0 as PresentationAttachment, c1 as PresentationConfig, c2 as PresentationConfigCreateDto, c3 as PresentationConfigUpdateDto, c4 as PresentationDuringIssuanceConfig, c5 as PresentationManagementControllerConfigurationData, c6 as PresentationManagementControllerConfigurationResponse, c7 as PresentationManagementControllerConfigurationResponses, c8 as PresentationManagementControllerDeleteConfigurationData, c9 as PresentationManagementControllerDeleteConfigurationResponses, ca as PresentationManagementControllerGetConfigurationData, cb as PresentationManagementControllerGetConfigurationResponse, cc as PresentationManagementControllerGetConfigurationResponses, cd as PresentationManagementControllerStorePresentationConfigData, ce as PresentationManagementControllerStorePresentationConfigResponse, cf as PresentationManagementControllerStorePresentationConfigResponses, cg as PresentationManagementControllerUpdateConfigurationData, ch as PresentationManagementControllerUpdateConfigurationResponse, ci as PresentationManagementControllerUpdateConfigurationResponses, cj as PresentationRequest, ck as PublicKeyInfoDto, cl as RegistrarConfigEntity, cm as RegistrarControllerCreateAccessCertificateData, cn as RegistrarControllerCreateAccessCertificateErrors, co as RegistrarControllerCreateAccessCertificateResponse, cp as RegistrarControllerCreateAccessCertificateResponses, cq as RegistrarControllerCreateConfigData, cr as RegistrarControllerCreateConfigErrors, cs as RegistrarControllerCreateConfigResponse, ct as RegistrarControllerCreateConfigResponses, cu as RegistrarControllerDeleteConfigData, cv as RegistrarControllerDeleteConfigResponse, cw as RegistrarControllerDeleteConfigResponses, cx as RegistrarControllerGetConfigData, cy as RegistrarControllerGetConfigErrors, cz as RegistrarControllerGetConfigResponse, cA as RegistrarControllerGetConfigResponses, cB as RegistrarControllerUpdateConfigData, cC as RegistrarControllerUpdateConfigErrors, cD as RegistrarControllerUpdateConfigResponse, cE as RegistrarControllerUpdateConfigResponses, cF as RegistrationCertificateRequest, cG as RoleDto, cH as RootOfTrustPolicy, cI as RotationPolicyCreateDto, cJ as RotationPolicyImportDto, cK as RotationPolicyResponseDto, cL as RotationPolicyUpdateDto, cM as SchemaResponse, cN as SessionConfigControllerGetConfigData, cO as SessionConfigControllerGetConfigResponse, cP as SessionConfigControllerGetConfigResponses, cQ as SessionConfigControllerResetConfigData, cR as SessionConfigControllerResetConfigResponses, cS as SessionConfigControllerUpdateConfigData, cT as SessionConfigControllerUpdateConfigResponse, cU as SessionConfigControllerUpdateConfigResponses, cV as SessionControllerDeleteSessionData, cW as SessionControllerDeleteSessionResponses, cX as SessionControllerGetAllSessionsData, cY as SessionControllerGetAllSessionsResponse, cZ as SessionControllerGetAllSessionsResponses, c_ as SessionControllerGetSessionData, c$ as SessionControllerGetSessionLogsData, d0 as SessionControllerGetSessionLogsResponse, d1 as SessionControllerGetSessionLogsResponses, d2 as SessionControllerGetSessionResponse, d3 as SessionControllerGetSessionResponses, d4 as SessionControllerRevokeAllData, d5 as SessionControllerRevokeAllResponses, d6 as SessionEventsControllerSubscribeToSessionEventsData, d7 as SessionEventsControllerSubscribeToSessionEventsResponses, d8 as SessionLogEntryResponseDto, d9 as SessionStorageConfig, da as StatusListAggregationDto, db as StatusListConfig, dc as StatusListConfigControllerGetConfigData, dd as StatusListConfigControllerGetConfigResponse, de as StatusListConfigControllerGetConfigResponses, df as StatusListConfigControllerResetConfigData, dg as StatusListConfigControllerResetConfigResponse, dh as StatusListConfigControllerResetConfigResponses, di as StatusListConfigControllerUpdateConfigData, dj as StatusListConfigControllerUpdateConfigResponse, dk as StatusListConfigControllerUpdateConfigResponses, dl as StatusListImportDto, dm as StatusListManagementControllerCreateListData, dn as StatusListManagementControllerCreateListResponse, dp as StatusListManagementControllerCreateListResponses, dq as StatusListManagementControllerDeleteListData, dr as StatusListManagementControllerDeleteListResponse, ds as StatusListManagementControllerDeleteListResponses, dt as StatusListManagementControllerGetListData, du as StatusListManagementControllerGetListResponse, dv as StatusListManagementControllerGetListResponses, dw as StatusListManagementControllerGetListsData, dx as StatusListManagementControllerGetListsResponse, dy as StatusListManagementControllerGetListsResponses, dz as StatusListManagementControllerUpdateListData, dA as StatusListManagementControllerUpdateListResponse, dB as StatusListManagementControllerUpdateListResponses, dC as StatusListResponseDto, dD as StatusUpdateDto, dE as StorageControllerUploadData, dF as StorageControllerUploadResponse, dG as StorageControllerUploadResponses, dH as TenantControllerDeleteTenantData, dI as TenantControllerDeleteTenantResponses, dJ as TenantControllerGetTenantData, dK as TenantControllerGetTenantResponse, dL as TenantControllerGetTenantResponses, dM as TenantControllerGetTenantsData, dN as TenantControllerGetTenantsResponse, dO as TenantControllerGetTenantsResponses, dP as TenantControllerInitTenantData, dQ as TenantControllerInitTenantResponse, dR as TenantControllerInitTenantResponses, dS as TenantControllerUpdateTenantData, dT as TenantControllerUpdateTenantResponse, dU as TenantControllerUpdateTenantResponses, dV as TenantEntity, dW as TokenResponse, dX as TransactionData, dY as TrustList, dZ as TrustListControllerCreateTrustListData, d_ as TrustListControllerCreateTrustListResponse, d$ as TrustListControllerCreateTrustListResponses, e0 as TrustListControllerDeleteTrustListData, e1 as TrustListControllerDeleteTrustListResponses, e2 as TrustListControllerExportTrustListData, e3 as TrustListControllerExportTrustListResponse, e4 as TrustListControllerExportTrustListResponses, e5 as TrustListControllerGetAllTrustListsData, e6 as TrustListControllerGetAllTrustListsResponse, e7 as TrustListControllerGetAllTrustListsResponses, e8 as TrustListControllerGetTrustListData, e9 as TrustListControllerGetTrustListResponse, ea as TrustListControllerGetTrustListResponses, eb as TrustListControllerGetTrustListVersionData, ec as TrustListControllerGetTrustListVersionResponse, ed as TrustListControllerGetTrustListVersionResponses, ee as TrustListControllerGetTrustListVersionsData, ef as TrustListControllerGetTrustListVersionsResponse, eg as TrustListControllerGetTrustListVersionsResponses, eh as TrustListControllerUpdateTrustListData, ei as TrustListControllerUpdateTrustListResponse, ej as TrustListControllerUpdateTrustListResponses, ek as TrustListCreateDto, el as TrustListEntityInfo, em as TrustListVersion, en as TrustedAuthorityQuery, eo as UpdateAttributeProviderDto, ep as UpdateClientDto, eq as UpdateRegistrarConfigDto, er as UpdateSessionConfigDto, es as UpdateStatusListConfigDto, et as UpdateStatusListDto, eu as UpdateTenantDto, ev as UpdateWebhookEndpointDto, ew as UpstreamOidcConfig, ex as Vct, ey as VerifierOfferControllerGetOfferData, ez as VerifierOfferControllerGetOfferResponse, eA as VerifierOfferControllerGetOfferResponses, eB as WebHookAuthConfigHeader, eC as WebHookAuthConfigNone, eD as WebhookConfig, eE as WebhookEndpointControllerCreateData, eF as WebhookEndpointControllerCreateResponses, eG as WebhookEndpointControllerDeleteData, eH as WebhookEndpointControllerDeleteErrors, eI as WebhookEndpointControllerDeleteResponses, eJ as WebhookEndpointControllerGetAllData, eK as WebhookEndpointControllerGetAllResponses, eL as WebhookEndpointControllerGetByIdData, eM as WebhookEndpointControllerGetByIdErrors, eN as WebhookEndpointControllerGetByIdResponses, eO as WebhookEndpointControllerUpdateData, eP as WebhookEndpointControllerUpdateErrors, eQ as WebhookEndpointControllerUpdateResponses, eR as WebhookEndpointEntity } from './types.gen-sNmRQvUI.mjs';
|
|
1
|
+
import { S as Session } from './types.gen-5zlqZUfP.mjs';
|
|
2
|
+
export { A as AllowListPolicy, a as ApiKeyConfig, b as AppControllerGetFrontendConfigData, c as AppControllerGetFrontendConfigResponse, d as AppControllerGetFrontendConfigResponses, e as AppControllerGetVersionData, f as AppControllerGetVersionResponses, g as AttestationBasedPolicy, h as AttributeProviderControllerCreateData, i as AttributeProviderControllerCreateResponses, j as AttributeProviderControllerDeleteData, k as AttributeProviderControllerDeleteErrors, l as AttributeProviderControllerDeleteResponses, m as AttributeProviderControllerGetAllData, n as AttributeProviderControllerGetAllResponses, o as AttributeProviderControllerGetByIdData, p as AttributeProviderControllerGetByIdErrors, q as AttributeProviderControllerGetByIdResponses, r as AttributeProviderControllerUpdateData, s as AttributeProviderControllerUpdateErrors, t as AttributeProviderControllerUpdateResponses, u as AttributeProviderEntity, v as AuthenticationMethodAuth, w as AuthenticationMethodNone, x as AuthenticationMethodPresentation, y as AuthenticationUrlConfig, z as AuthorizationResponse, B as AuthorizeQueries, C as CacheControllerClearAllCachesData, D as CacheControllerClearAllCachesResponse, E as CacheControllerClearAllCachesResponses, F as CacheControllerClearStatusListCacheData, G as CacheControllerClearStatusListCacheResponse, H as CacheControllerClearStatusListCacheResponses, I as CacheControllerClearTrustListCacheData, J as CacheControllerClearTrustListCacheResponse, K as CacheControllerClearTrustListCacheResponses, L as CacheControllerGetStatsData, M as CacheControllerGetStatsResponses, N as CertificateInfoDto, O as ChainedAsConfig, P as ChainedAsErrorResponseDto, Q as ChainedAsParResponseDto, R as ChainedAsTokenConfig, T as ChainedAsTokenRequestDto, U as ChainedAsTokenResponseDto, V as ClaimDisplayInfo, W as ClaimMetadata, X as ClaimsQuery, Y as ClientControllerCreateClientData, Z as ClientControllerCreateClientResponse, _ as ClientControllerCreateClientResponses, $ as ClientControllerDeleteClientData, a0 as ClientControllerDeleteClientResponses, a1 as ClientControllerGetClientData, a2 as ClientControllerGetClientResponse, a3 as ClientControllerGetClientResponses, a4 as ClientControllerGetClientSecretData, a5 as ClientControllerGetClientSecretResponse, a6 as ClientControllerGetClientSecretResponses, a7 as ClientControllerGetClientsData, a8 as ClientControllerGetClientsResponse, a9 as ClientControllerGetClientsResponses, aa as ClientControllerRotateClientSecretData, ab as ClientControllerRotateClientSecretResponse, ac as ClientControllerRotateClientSecretResponses, ad as ClientControllerUpdateClientData, ae as ClientControllerUpdateClientResponse, af as ClientControllerUpdateClientResponses, ag as ClientCredentialsDto, ah as ClientEntity, ai as ClientOptions, aj as ClientSecretResponseDto, ak as CompleteDeferredDto, al as CreateAccessCertificateDto, am as CreateAttributeProviderDto, an as CreateClientDto, ao as CreateRegistrarConfigDto, ap as CreateStatusListDto, aq as CreateTenantDto, ar as CreateUserDto, as as CreateWebhookEndpointDto, at as CredentialConfig, au as CredentialConfigControllerDeleteIssuanceConfigurationData, av as CredentialConfigControllerDeleteIssuanceConfigurationResponses, aw as CredentialConfigControllerGetConfigByIdData, ax as CredentialConfigControllerGetConfigByIdResponse, ay as CredentialConfigControllerGetConfigByIdResponses, az as CredentialConfigControllerGetConfigsData, aA as CredentialConfigControllerGetConfigsResponse, aB as CredentialConfigControllerGetConfigsResponses, aC as CredentialConfigControllerStoreCredentialConfigurationData, aD as CredentialConfigControllerStoreCredentialConfigurationResponse, aE as CredentialConfigControllerStoreCredentialConfigurationResponses, aF as CredentialConfigControllerUpdateCredentialConfigurationData, aG as CredentialConfigControllerUpdateCredentialConfigurationResponse, aH as CredentialConfigControllerUpdateCredentialConfigurationResponses, aI as CredentialConfigCreate, aJ as CredentialConfigUpdate, aK as CredentialOfferControllerGetOfferData, aL as CredentialOfferControllerGetOfferResponse, aM as CredentialOfferControllerGetOfferResponses, aN as CredentialQuery, aO as CredentialSetQuery, aP as Dcql, aQ as DeferredControllerCompleteDeferredData, aR as DeferredControllerCompleteDeferredErrors, aS as DeferredControllerCompleteDeferredResponse, aT as DeferredControllerCompleteDeferredResponses, aU as DeferredControllerFailDeferredData, aV as DeferredControllerFailDeferredErrors, aW as DeferredControllerFailDeferredResponse, aX as DeferredControllerFailDeferredResponses, aY as DeferredCredentialRequestDto, aZ as DeferredOperationResponse, a_ as Display, a$ as DisplayImage, b0 as DisplayInfo, b1 as DisplayLogo, b2 as EcJwk, b3 as EcPublic, b4 as EmbeddedDisclosurePolicy, b5 as ExportEcJwk, b6 as ExportRotationPolicyDto, b7 as ExternalTrustListEntity, b8 as FailDeferredDto, b9 as FileUploadDto, ba as FrontendConfigResponseDto, bb as GrafanaConfigDto, bc as IaeActionOpenid4VpPresentation, bd as IaeActionRedirectToWeb, be as ImportTenantDto, bf as InteractiveAuthorizationCodeResponseDto, bg as InteractiveAuthorizationErrorResponseDto, bh as InteractiveAuthorizationRequestDto, bi as InternalTrustListEntity, bj as IssuanceConfig, bk as IssuanceConfigControllerGetIssuanceConfigurationsData, bl as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bm as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bn as IssuanceConfigControllerStoreIssuanceConfigurationData, bo as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bp as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bq as IssuanceDto, br as IssuerMetadataCredentialConfig, bs as JwksResponseDto, bt as KeyAttestationsRequired, bu as KeyChainControllerCreateData, bv as KeyChainControllerCreateResponses, bw as KeyChainControllerDeleteData, bx as KeyChainControllerDeleteErrors, by as KeyChainControllerDeleteResponses, bz as KeyChainControllerExportData, bA as KeyChainControllerExportErrors, bB as KeyChainControllerExportResponse, bC as KeyChainControllerExportResponses, bD as KeyChainControllerGetAllData, bE as KeyChainControllerGetAllResponse, bF as KeyChainControllerGetAllResponses, bG as KeyChainControllerGetByIdData, bH as KeyChainControllerGetByIdErrors, bI as KeyChainControllerGetByIdResponse, bJ as KeyChainControllerGetByIdResponses, bK as KeyChainControllerGetProvidersData, bL as KeyChainControllerGetProvidersResponse, bM as KeyChainControllerGetProvidersResponses, bN as KeyChainControllerImportData, bO as KeyChainControllerImportResponses, bP as KeyChainControllerRotateData, bQ as KeyChainControllerRotateErrors, bR as KeyChainControllerRotateResponses, bS as KeyChainControllerUpdateData, bT as KeyChainControllerUpdateErrors, bU as KeyChainControllerUpdateResponses, bV as KeyChainCreateDto, bW as KeyChainEntity, bX as KeyChainExportDto, bY as KeyChainImportDto, bZ as KeyChainResponseDto, b_ as KeyChainUpdateDto, b$ as KmsProviderCapabilitiesDto, c0 as KmsProviderInfoDto, c1 as KmsProvidersResponseDto, c2 as ManagedUserDto, c3 as NoneTrustPolicy, c4 as NotificationRequestDto, c5 as Object, c6 as ObjectWritable, c7 as OfferRequestDto, c8 as OfferResponse, c9 as ParResponseDto, ca as PolicyCredential, cb as PresentationAttachment, cc as PresentationConfig, cd as PresentationConfigCreateDto, ce as PresentationConfigUpdateDto, cf as PresentationConfigWritable, cg as PresentationDuringIssuanceConfig, ch as PresentationManagementControllerConfigurationData, ci as PresentationManagementControllerConfigurationResponse, cj as PresentationManagementControllerConfigurationResponses, ck as PresentationManagementControllerDeleteConfigurationData, cl as PresentationManagementControllerDeleteConfigurationResponses, cm as PresentationManagementControllerGetConfigurationData, cn as PresentationManagementControllerGetConfigurationResponse, co as PresentationManagementControllerGetConfigurationResponses, cp as PresentationManagementControllerReissueRegistrationCertificateData, cq as PresentationManagementControllerReissueRegistrationCertificateErrors, cr as PresentationManagementControllerReissueRegistrationCertificateResponses, cs as PresentationManagementControllerResolveIssuerMetadataData, ct as PresentationManagementControllerResolveIssuerMetadataErrors, cu as PresentationManagementControllerResolveIssuerMetadataResponses, cv as PresentationManagementControllerStorePresentationConfigData, cw as PresentationManagementControllerStorePresentationConfigResponse, cx as PresentationManagementControllerStorePresentationConfigResponses, cy as PresentationManagementControllerUpdateConfigurationData, cz as PresentationManagementControllerUpdateConfigurationResponse, cA as PresentationManagementControllerUpdateConfigurationResponses, cB as PresentationRequest, cC as PublicKeyInfoDto, cD as RegistrarConfigResponseDto, cE as RegistrarControllerCreateAccessCertificateData, cF as RegistrarControllerCreateAccessCertificateErrors, cG as RegistrarControllerCreateAccessCertificateResponse, cH as RegistrarControllerCreateAccessCertificateResponses, cI as RegistrarControllerCreateConfigData, cJ as RegistrarControllerCreateConfigErrors, cK as RegistrarControllerCreateConfigResponse, cL as RegistrarControllerCreateConfigResponses, cM as RegistrarControllerDeleteConfigData, cN as RegistrarControllerDeleteConfigResponse, cO as RegistrarControllerDeleteConfigResponses, cP as RegistrarControllerGetConfigData, cQ as RegistrarControllerGetConfigErrors, cR as RegistrarControllerGetConfigResponse, cS as RegistrarControllerGetConfigResponses, cT as RegistrarControllerUpdateConfigData, cU as RegistrarControllerUpdateConfigErrors, cV as RegistrarControllerUpdateConfigResponse, cW as RegistrarControllerUpdateConfigResponses, cX as RegistrationCertificateBody, cY as RegistrationCertificateDefaults, cZ as RegistrationCertificatePurpose, c_ as RegistrationCertificateRequest, c$ as ResolveIssuerMetadataDto, d0 as RoleDto, d1 as RootOfTrustPolicy, d2 as RotationPolicyCreateDto, d3 as RotationPolicyImportDto, d4 as RotationPolicyResponseDto, d5 as RotationPolicyUpdateDto, d6 as SchemaResponse, d7 as SessionConfigControllerGetConfigData, d8 as SessionConfigControllerGetConfigResponse, d9 as SessionConfigControllerGetConfigResponses, da as SessionConfigControllerResetConfigData, db as SessionConfigControllerResetConfigResponses, dc as SessionConfigControllerUpdateConfigData, dd as SessionConfigControllerUpdateConfigResponse, de as SessionConfigControllerUpdateConfigResponses, df as SessionControllerDeleteSessionData, dg as SessionControllerDeleteSessionResponses, dh as SessionControllerGetAllSessionsData, di as SessionControllerGetAllSessionsResponse, dj as SessionControllerGetAllSessionsResponses, dk as SessionControllerGetSessionData, dl as SessionControllerGetSessionLogsData, dm as SessionControllerGetSessionLogsResponse, dn as SessionControllerGetSessionLogsResponses, dp as SessionControllerGetSessionResponse, dq as SessionControllerGetSessionResponses, dr as SessionControllerRevokeAllData, ds as SessionControllerRevokeAllResponses, dt as SessionEventsControllerSubscribeToSessionEventsData, du as SessionEventsControllerSubscribeToSessionEventsResponses, dv as SessionLogEntryResponseDto, dw as SessionStorageConfig, dx as StatusListAggregationDto, dy as StatusListConfig, dz as StatusListConfigControllerGetConfigData, dA as StatusListConfigControllerGetConfigResponse, dB as StatusListConfigControllerGetConfigResponses, dC as StatusListConfigControllerResetConfigData, dD as StatusListConfigControllerResetConfigResponse, dE as StatusListConfigControllerResetConfigResponses, dF as StatusListConfigControllerUpdateConfigData, dG as StatusListConfigControllerUpdateConfigResponse, dH as StatusListConfigControllerUpdateConfigResponses, dI as StatusListImportDto, dJ as StatusListManagementControllerCreateListData, dK as StatusListManagementControllerCreateListResponse, dL as StatusListManagementControllerCreateListResponses, dM as StatusListManagementControllerDeleteListData, dN as StatusListManagementControllerDeleteListResponse, dO as StatusListManagementControllerDeleteListResponses, dP as StatusListManagementControllerGetListData, dQ as StatusListManagementControllerGetListResponse, dR as StatusListManagementControllerGetListResponses, dS as StatusListManagementControllerGetListsData, dT as StatusListManagementControllerGetListsResponse, dU as StatusListManagementControllerGetListsResponses, dV as StatusListManagementControllerUpdateListData, dW as StatusListManagementControllerUpdateListResponse, dX as StatusListManagementControllerUpdateListResponses, dY as StatusListResponseDto, dZ as StatusUpdateDto, d_ as StorageControllerUploadData, d$ as StorageControllerUploadResponse, e0 as StorageControllerUploadResponses, e1 as TenantControllerDeleteTenantData, e2 as TenantControllerDeleteTenantResponses, e3 as TenantControllerGetTenantData, e4 as TenantControllerGetTenantResponse, e5 as TenantControllerGetTenantResponses, e6 as TenantControllerGetTenantsData, e7 as TenantControllerGetTenantsResponse, e8 as TenantControllerGetTenantsResponses, e9 as TenantControllerInitTenantData, ea as TenantControllerInitTenantResponse, eb as TenantControllerInitTenantResponses, ec as TenantControllerUpdateTenantData, ed as TenantControllerUpdateTenantResponse, ee as TenantControllerUpdateTenantResponses, ef as TenantEntity, eg as TokenResponse, eh as TransactionData, ei as TrustList, ej as TrustListControllerCreateTrustListData, ek as TrustListControllerCreateTrustListResponse, el as TrustListControllerCreateTrustListResponses, em as TrustListControllerDeleteTrustListData, en as TrustListControllerDeleteTrustListResponses, eo as TrustListControllerExportTrustListData, ep as TrustListControllerExportTrustListResponse, eq as TrustListControllerExportTrustListResponses, er as TrustListControllerGetAllTrustListsData, es as TrustListControllerGetAllTrustListsResponse, et as TrustListControllerGetAllTrustListsResponses, eu as TrustListControllerGetTrustListData, ev as TrustListControllerGetTrustListResponse, ew as TrustListControllerGetTrustListResponses, ex as TrustListControllerGetTrustListVersionData, ey as TrustListControllerGetTrustListVersionResponse, ez as TrustListControllerGetTrustListVersionResponses, eA as TrustListControllerGetTrustListVersionsData, eB as TrustListControllerGetTrustListVersionsResponse, eC as TrustListControllerGetTrustListVersionsResponses, eD as TrustListControllerUpdateTrustListData, eE as TrustListControllerUpdateTrustListResponse, eF as TrustListControllerUpdateTrustListResponses, eG as TrustListCreateDto, eH as TrustListEntityInfo, eI as TrustListVersion, eJ as TrustedAuthorityQuery, eK as UpdateAttributeProviderDto, eL as UpdateClientDto, eM as UpdateRegistrarConfigDto, eN as UpdateSessionConfigDto, eO as UpdateStatusListConfigDto, eP as UpdateStatusListDto, eQ as UpdateTenantDto, eR as UpdateUserDto, eS as UpdateWebhookEndpointDto, eT as UpstreamOidcConfig, eU as UserControllerCreateUserData, eV as UserControllerCreateUserResponse, eW as UserControllerCreateUserResponses, eX as UserControllerDeleteUserData, eY as UserControllerDeleteUserResponses, eZ as UserControllerGetUserData, e_ as UserControllerGetUserResponse, e$ as UserControllerGetUserResponses, f0 as UserControllerGetUsersData, f1 as UserControllerGetUsersResponse, f2 as UserControllerGetUsersResponses, f3 as UserControllerUpdateUserData, f4 as UserControllerUpdateUserResponse, f5 as UserControllerUpdateUserResponses, f6 as Vct, f7 as VerifierOfferControllerGetOfferData, f8 as VerifierOfferControllerGetOfferResponse, f9 as VerifierOfferControllerGetOfferResponses, fa as WebHookAuthConfigHeader, fb as WebHookAuthConfigNone, fc as WebhookConfig, fd as WebhookEndpointControllerCreateData, fe as WebhookEndpointControllerCreateResponses, ff as WebhookEndpointControllerDeleteData, fg as WebhookEndpointControllerDeleteErrors, fh as WebhookEndpointControllerDeleteResponses, fi as WebhookEndpointControllerGetAllData, fj as WebhookEndpointControllerGetAllResponse, fk as WebhookEndpointControllerGetAllResponses, fl as WebhookEndpointControllerGetByIdData, fm as WebhookEndpointControllerGetByIdErrors, fn as WebhookEndpointControllerGetByIdResponses, fo as WebhookEndpointControllerUpdateData, fp as WebhookEndpointControllerUpdateErrors, fq as WebhookEndpointControllerUpdateResponses, fr as WebhookEndpointEntity } from './types.gen-5zlqZUfP.mjs';
|
|
3
3
|
export { client } from './api/client.gen.mjs';
|
|
4
|
-
export { Options, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, 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, 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, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate } from './api/index.mjs';
|
|
5
|
-
import './types.gen-
|
|
4
|
+
export { Options, appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, 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, 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, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, userControllerCreateUser, userControllerDeleteUser, userControllerGetUser, userControllerGetUsers, userControllerUpdateUser, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate } from './api/index.mjs';
|
|
5
|
+
import './types.gen-DKrNRB-E.mjs';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Digital Credential response from the browser API
|