@eudiplo/sdk-core 7.2.0 → 7.3.0-main.b8ff00a
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.gen.d.mts +1 -1
- package/dist/api/client.gen.d.ts +1 -1
- package/dist/api/index.d.mts +269 -222
- package/dist/api/index.d.ts +269 -222
- package/dist/api/index.js +315 -235
- package/dist/api/index.mjs +308 -236
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +315 -235
- package/dist/index.mjs +308 -236
- package/dist/{types.gen-wzN8QCuN.d.mts → types.gen-CL5BMLvZ.d.mts} +4568 -3073
- package/dist/{types.gen-wzN8QCuN.d.ts → types.gen-CL5BMLvZ.d.ts} +4568 -3073
- package/package.json +2 -2
package/dist/api/index.mjs
CHANGED
|
@@ -8,6 +8,13 @@ var serializeFormDataPair = (data, key, value) => {
|
|
|
8
8
|
data.append(key, JSON.stringify(value));
|
|
9
9
|
}
|
|
10
10
|
};
|
|
11
|
+
var serializeUrlSearchParamsPair = (data, key, value) => {
|
|
12
|
+
if (typeof value === "string") {
|
|
13
|
+
data.append(key, value);
|
|
14
|
+
} else {
|
|
15
|
+
data.append(key, JSON.stringify(value));
|
|
16
|
+
}
|
|
17
|
+
};
|
|
11
18
|
var formDataBodySerializer = {
|
|
12
19
|
bodySerializer: (body) => {
|
|
13
20
|
const data = new FormData();
|
|
@@ -27,6 +34,22 @@ var formDataBodySerializer = {
|
|
|
27
34
|
var jsonBodySerializer = {
|
|
28
35
|
bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value)
|
|
29
36
|
};
|
|
37
|
+
var urlSearchParamsBodySerializer = {
|
|
38
|
+
bodySerializer: (body) => {
|
|
39
|
+
const data = new URLSearchParams();
|
|
40
|
+
Object.entries(body).forEach(([key, value]) => {
|
|
41
|
+
if (value === void 0 || value === null) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
if (Array.isArray(value)) {
|
|
45
|
+
value.forEach((v) => serializeUrlSearchParamsPair(data, key, v));
|
|
46
|
+
} else {
|
|
47
|
+
serializeUrlSearchParamsPair(data, key, value);
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
return data.toString();
|
|
51
|
+
}
|
|
52
|
+
};
|
|
30
53
|
|
|
31
54
|
// src/api/core/serverSentEvents.gen.ts
|
|
32
55
|
function createSseClient({
|
|
@@ -814,10 +837,11 @@ var appControllerGetFrontendConfig = (options) => (options?.client ?? client).ge
|
|
|
814
837
|
...options
|
|
815
838
|
});
|
|
816
839
|
var authControllerGetOAuth2Token = (options) => (options.client ?? client).post({
|
|
840
|
+
...urlSearchParamsBodySerializer,
|
|
817
841
|
url: "/api/oauth2/token",
|
|
818
842
|
...options,
|
|
819
843
|
headers: {
|
|
820
|
-
"Content-Type": "application/
|
|
844
|
+
"Content-Type": "application/x-www-form-urlencoded",
|
|
821
845
|
...options.headers
|
|
822
846
|
}
|
|
823
847
|
});
|
|
@@ -902,357 +926,394 @@ var clientControllerRotateClientSecret = (options) => (options.client ?? client)
|
|
|
902
926
|
url: "/api/client/{id}/rotate-secret",
|
|
903
927
|
...options
|
|
904
928
|
});
|
|
905
|
-
var
|
|
929
|
+
var registrarControllerDeleteConfig = (options) => (options?.client ?? client).delete({
|
|
906
930
|
security: [{ scheme: "bearer", type: "http" }],
|
|
907
|
-
url: "/api/
|
|
931
|
+
url: "/api/registrar/config",
|
|
908
932
|
...options
|
|
909
933
|
});
|
|
910
|
-
var
|
|
934
|
+
var registrarControllerGetConfig = (options) => (options?.client ?? client).get({
|
|
911
935
|
security: [{ scheme: "bearer", type: "http" }],
|
|
912
|
-
url: "/api/
|
|
936
|
+
url: "/api/registrar/config",
|
|
913
937
|
...options
|
|
914
938
|
});
|
|
915
|
-
var
|
|
939
|
+
var registrarControllerUpdateConfig = (options) => (options.client ?? client).patch({
|
|
916
940
|
security: [{ scheme: "bearer", type: "http" }],
|
|
917
|
-
url: "/api/
|
|
941
|
+
url: "/api/registrar/config",
|
|
918
942
|
...options,
|
|
919
943
|
headers: {
|
|
920
944
|
"Content-Type": "application/json",
|
|
921
945
|
...options.headers
|
|
922
946
|
}
|
|
923
947
|
});
|
|
924
|
-
var
|
|
925
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
926
|
-
url: "/api/status-lists",
|
|
927
|
-
...options
|
|
928
|
-
});
|
|
929
|
-
var statusListManagementControllerCreateList = (options) => (options.client ?? client).post({
|
|
948
|
+
var registrarControllerCreateConfig = (options) => (options.client ?? client).post({
|
|
930
949
|
security: [{ scheme: "bearer", type: "http" }],
|
|
931
|
-
url: "/api/
|
|
950
|
+
url: "/api/registrar/config",
|
|
932
951
|
...options,
|
|
933
952
|
headers: {
|
|
934
953
|
"Content-Type": "application/json",
|
|
935
954
|
...options.headers
|
|
936
955
|
}
|
|
937
956
|
});
|
|
938
|
-
var
|
|
939
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
940
|
-
url: "/api/status-lists/{listId}",
|
|
941
|
-
...options
|
|
942
|
-
});
|
|
943
|
-
var statusListManagementControllerGetList = (options) => (options.client ?? client).get({
|
|
944
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
945
|
-
url: "/api/status-lists/{listId}",
|
|
946
|
-
...options
|
|
947
|
-
});
|
|
948
|
-
var statusListManagementControllerUpdateList = (options) => (options.client ?? client).patch({
|
|
957
|
+
var registrarControllerCreateAccessCertificate = (options) => (options.client ?? client).post({
|
|
949
958
|
security: [{ scheme: "bearer", type: "http" }],
|
|
950
|
-
url: "/api/
|
|
959
|
+
url: "/api/registrar/access-certificate",
|
|
951
960
|
...options,
|
|
952
961
|
headers: {
|
|
953
962
|
"Content-Type": "application/json",
|
|
954
963
|
...options.headers
|
|
955
964
|
}
|
|
956
965
|
});
|
|
957
|
-
var
|
|
966
|
+
var userControllerGetUsers = (options) => (options?.client ?? client).get({
|
|
958
967
|
security: [{ scheme: "bearer", type: "http" }],
|
|
959
|
-
url: "/api/
|
|
968
|
+
url: "/api/user",
|
|
960
969
|
...options
|
|
961
970
|
});
|
|
962
|
-
var
|
|
971
|
+
var userControllerCreateUser = (options) => (options.client ?? client).post({
|
|
963
972
|
security: [{ scheme: "bearer", type: "http" }],
|
|
964
|
-
url: "/api/
|
|
965
|
-
...options
|
|
973
|
+
url: "/api/user",
|
|
974
|
+
...options,
|
|
975
|
+
headers: {
|
|
976
|
+
"Content-Type": "application/json",
|
|
977
|
+
...options.headers
|
|
978
|
+
}
|
|
966
979
|
});
|
|
967
|
-
var
|
|
980
|
+
var userControllerDeleteUser = (options) => (options.client ?? client).delete({
|
|
968
981
|
security: [{ scheme: "bearer", type: "http" }],
|
|
969
|
-
url: "/api/
|
|
982
|
+
url: "/api/user/{id}",
|
|
970
983
|
...options
|
|
971
984
|
});
|
|
972
|
-
var
|
|
985
|
+
var userControllerGetUser = (options) => (options.client ?? client).get({
|
|
973
986
|
security: [{ scheme: "bearer", type: "http" }],
|
|
974
|
-
url: "/api/
|
|
987
|
+
url: "/api/user/{id}",
|
|
975
988
|
...options
|
|
976
989
|
});
|
|
977
|
-
var
|
|
990
|
+
var userControllerUpdateUser = (options) => (options.client ?? client).patch({
|
|
978
991
|
security: [{ scheme: "bearer", type: "http" }],
|
|
979
|
-
url: "/api/
|
|
992
|
+
url: "/api/user/{id}",
|
|
980
993
|
...options,
|
|
981
994
|
headers: {
|
|
982
995
|
"Content-Type": "application/json",
|
|
983
996
|
...options.headers
|
|
984
997
|
}
|
|
985
998
|
});
|
|
986
|
-
var
|
|
999
|
+
var keyChainControllerGetProviders = (options) => (options?.client ?? client).get({
|
|
987
1000
|
security: [{ scheme: "bearer", type: "http" }],
|
|
988
|
-
url: "/api/
|
|
1001
|
+
url: "/api/key-chain/providers",
|
|
989
1002
|
...options
|
|
990
1003
|
});
|
|
991
|
-
var
|
|
1004
|
+
var keyChainControllerGetProvidersHealth = (options) => (options?.client ?? client).get({
|
|
992
1005
|
security: [{ scheme: "bearer", type: "http" }],
|
|
993
|
-
url: "/api/
|
|
1006
|
+
url: "/api/key-chain/providers/health",
|
|
994
1007
|
...options
|
|
995
1008
|
});
|
|
996
|
-
var
|
|
1009
|
+
var keyChainControllerDeleteTenantKmsConfig = (options) => (options?.client ?? client).delete({
|
|
997
1010
|
security: [{ scheme: "bearer", type: "http" }],
|
|
998
|
-
url: "/api/
|
|
1011
|
+
url: "/api/key-chain/providers/config",
|
|
1012
|
+
...options
|
|
1013
|
+
});
|
|
1014
|
+
var keyChainControllerGetTenantKmsConfig = (options) => (options?.client ?? client).get({
|
|
1015
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1016
|
+
url: "/api/key-chain/providers/config",
|
|
1017
|
+
...options
|
|
1018
|
+
});
|
|
1019
|
+
var keyChainControllerUpdateTenantKmsConfig = (options) => (options.client ?? client).put({
|
|
1020
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1021
|
+
url: "/api/key-chain/providers/config",
|
|
999
1022
|
...options,
|
|
1000
1023
|
headers: {
|
|
1001
1024
|
"Content-Type": "application/json",
|
|
1002
1025
|
...options.headers
|
|
1003
1026
|
}
|
|
1004
1027
|
});
|
|
1005
|
-
var
|
|
1006
|
-
var userControllerGetUsers = (options) => (options?.client ?? client).get({
|
|
1028
|
+
var keyChainControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1007
1029
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1008
|
-
url: "/api/
|
|
1030
|
+
url: "/api/key-chain",
|
|
1009
1031
|
...options
|
|
1010
1032
|
});
|
|
1011
|
-
var
|
|
1033
|
+
var keyChainControllerCreate = (options) => (options.client ?? client).post({
|
|
1012
1034
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1013
|
-
url: "/api/
|
|
1035
|
+
url: "/api/key-chain",
|
|
1014
1036
|
...options,
|
|
1015
1037
|
headers: {
|
|
1016
1038
|
"Content-Type": "application/json",
|
|
1017
1039
|
...options.headers
|
|
1018
1040
|
}
|
|
1019
1041
|
});
|
|
1020
|
-
var
|
|
1042
|
+
var keyChainControllerDelete = (options) => (options.client ?? client).delete({
|
|
1021
1043
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1022
|
-
url: "/api/
|
|
1044
|
+
url: "/api/key-chain/{id}",
|
|
1023
1045
|
...options
|
|
1024
1046
|
});
|
|
1025
|
-
var
|
|
1047
|
+
var keyChainControllerGetById = (options) => (options.client ?? client).get({
|
|
1026
1048
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1027
|
-
url: "/api/
|
|
1049
|
+
url: "/api/key-chain/{id}",
|
|
1028
1050
|
...options
|
|
1029
1051
|
});
|
|
1030
|
-
var
|
|
1052
|
+
var keyChainControllerUpdate = (options) => (options.client ?? client).put({
|
|
1031
1053
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1032
|
-
url: "/api/
|
|
1054
|
+
url: "/api/key-chain/{id}",
|
|
1033
1055
|
...options,
|
|
1034
1056
|
headers: {
|
|
1035
1057
|
"Content-Type": "application/json",
|
|
1036
1058
|
...options.headers
|
|
1037
1059
|
}
|
|
1038
1060
|
});
|
|
1039
|
-
var
|
|
1061
|
+
var keyChainControllerExport = (options) => (options.client ?? client).get({
|
|
1040
1062
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1041
|
-
url: "/api/
|
|
1063
|
+
url: "/api/key-chain/{id}/export",
|
|
1042
1064
|
...options
|
|
1043
1065
|
});
|
|
1044
|
-
var
|
|
1066
|
+
var keyChainControllerImport = (options) => (options.client ?? client).post({
|
|
1045
1067
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1046
|
-
url: "/api/
|
|
1068
|
+
url: "/api/key-chain/import",
|
|
1047
1069
|
...options,
|
|
1048
1070
|
headers: {
|
|
1049
1071
|
"Content-Type": "application/json",
|
|
1050
1072
|
...options.headers
|
|
1051
1073
|
}
|
|
1052
1074
|
});
|
|
1053
|
-
var
|
|
1075
|
+
var keyChainControllerRotate = (options) => (options.client ?? client).post({
|
|
1054
1076
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1055
|
-
url: "/api/
|
|
1077
|
+
url: "/api/key-chain/{id}/rotate",
|
|
1056
1078
|
...options
|
|
1057
1079
|
});
|
|
1058
|
-
var
|
|
1080
|
+
var attributeProviderControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1059
1081
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1060
|
-
url: "/api/issuer/
|
|
1082
|
+
url: "/api/issuer/attribute-providers",
|
|
1061
1083
|
...options
|
|
1062
1084
|
});
|
|
1063
|
-
var
|
|
1085
|
+
var attributeProviderControllerCreate = (options) => (options.client ?? client).post({
|
|
1064
1086
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1065
|
-
url: "/api/issuer/
|
|
1087
|
+
url: "/api/issuer/attribute-providers",
|
|
1066
1088
|
...options,
|
|
1067
1089
|
headers: {
|
|
1068
1090
|
"Content-Type": "application/json",
|
|
1069
1091
|
...options.headers
|
|
1070
1092
|
}
|
|
1071
1093
|
});
|
|
1072
|
-
var
|
|
1094
|
+
var attributeProviderControllerDelete = (options) => (options.client ?? client).delete({
|
|
1073
1095
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1074
|
-
url: "/api/issuer/
|
|
1096
|
+
url: "/api/issuer/attribute-providers/{id}",
|
|
1075
1097
|
...options
|
|
1076
1098
|
});
|
|
1077
|
-
var
|
|
1099
|
+
var attributeProviderControllerGetById = (options) => (options.client ?? client).get({
|
|
1078
1100
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1079
|
-
url: "/api/issuer/
|
|
1101
|
+
url: "/api/issuer/attribute-providers/{id}",
|
|
1080
1102
|
...options
|
|
1081
1103
|
});
|
|
1082
|
-
var
|
|
1104
|
+
var attributeProviderControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1083
1105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1084
|
-
url: "/api/issuer/
|
|
1106
|
+
url: "/api/issuer/attribute-providers/{id}",
|
|
1085
1107
|
...options,
|
|
1086
1108
|
headers: {
|
|
1087
1109
|
"Content-Type": "application/json",
|
|
1088
1110
|
...options.headers
|
|
1089
1111
|
}
|
|
1090
1112
|
});
|
|
1091
|
-
var
|
|
1113
|
+
var sessionControllerGetAllSessions = (options) => (options?.client ?? client).get({
|
|
1092
1114
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1093
|
-
url: "/api/
|
|
1094
|
-
...options
|
|
1095
|
-
headers: {
|
|
1096
|
-
"Content-Type": "application/json",
|
|
1097
|
-
...options.headers
|
|
1098
|
-
}
|
|
1115
|
+
url: "/api/session",
|
|
1116
|
+
...options
|
|
1099
1117
|
});
|
|
1100
|
-
var
|
|
1118
|
+
var sessionControllerDeleteSession = (options) => (options.client ?? client).delete({
|
|
1101
1119
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1102
|
-
url: "/api/
|
|
1103
|
-
...options
|
|
1104
|
-
headers: {
|
|
1105
|
-
"Content-Type": "application/json",
|
|
1106
|
-
...options.headers
|
|
1107
|
-
}
|
|
1120
|
+
url: "/api/session/{id}",
|
|
1121
|
+
...options
|
|
1108
1122
|
});
|
|
1109
|
-
var
|
|
1123
|
+
var sessionControllerGetSession = (options) => (options.client ?? client).get({
|
|
1110
1124
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1111
|
-
url: "/api/
|
|
1112
|
-
...options
|
|
1113
|
-
headers: {
|
|
1114
|
-
"Content-Type": "application/json",
|
|
1115
|
-
...options.headers
|
|
1116
|
-
}
|
|
1125
|
+
url: "/api/session/{id}",
|
|
1126
|
+
...options
|
|
1117
1127
|
});
|
|
1118
|
-
var
|
|
1128
|
+
var sessionControllerGetSessionLogs = (options) => (options.client ?? client).get({
|
|
1119
1129
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1120
|
-
url: "/api/
|
|
1130
|
+
url: "/api/session/{id}/logs",
|
|
1131
|
+
...options
|
|
1132
|
+
});
|
|
1133
|
+
var sessionControllerRevokeAll = (options) => (options.client ?? client).post({
|
|
1134
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1135
|
+
url: "/api/session/revoke",
|
|
1121
1136
|
...options,
|
|
1122
1137
|
headers: {
|
|
1123
1138
|
"Content-Type": "application/json",
|
|
1124
1139
|
...options.headers
|
|
1125
1140
|
}
|
|
1126
1141
|
});
|
|
1127
|
-
var
|
|
1142
|
+
var sessionConfigControllerResetConfig = (options) => (options?.client ?? client).delete({
|
|
1128
1143
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1129
|
-
url: "/api/
|
|
1144
|
+
url: "/api/session-config",
|
|
1130
1145
|
...options
|
|
1131
1146
|
});
|
|
1132
|
-
var
|
|
1147
|
+
var sessionConfigControllerGetConfig = (options) => (options?.client ?? client).get({
|
|
1133
1148
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1134
|
-
url: "/api/
|
|
1149
|
+
url: "/api/session-config",
|
|
1135
1150
|
...options
|
|
1136
1151
|
});
|
|
1137
|
-
var
|
|
1152
|
+
var sessionConfigControllerUpdateConfig = (options) => (options.client ?? client).put({
|
|
1138
1153
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1139
|
-
url: "/api/
|
|
1140
|
-
...options
|
|
1154
|
+
url: "/api/session-config",
|
|
1155
|
+
...options,
|
|
1156
|
+
headers: {
|
|
1157
|
+
"Content-Type": "application/json",
|
|
1158
|
+
...options.headers
|
|
1159
|
+
}
|
|
1141
1160
|
});
|
|
1142
|
-
var
|
|
1161
|
+
var sessionEventsControllerSubscribeToSessionEvents = (options) => (options.client ?? client).sse.get({ url: "/api/session/{id}/events", ...options });
|
|
1162
|
+
var statusListConfigControllerResetConfig = (options) => (options?.client ?? client).delete({
|
|
1143
1163
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1144
|
-
url: "/api/
|
|
1164
|
+
url: "/api/status-list-config",
|
|
1145
1165
|
...options
|
|
1146
1166
|
});
|
|
1147
|
-
var
|
|
1167
|
+
var statusListConfigControllerGetConfig = (options) => (options?.client ?? client).get({
|
|
1148
1168
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1149
|
-
url: "/api/
|
|
1169
|
+
url: "/api/status-list-config",
|
|
1150
1170
|
...options
|
|
1151
1171
|
});
|
|
1152
|
-
var
|
|
1172
|
+
var statusListConfigControllerUpdateConfig = (options) => (options.client ?? client).put({
|
|
1153
1173
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1154
|
-
url: "/api/
|
|
1174
|
+
url: "/api/status-list-config",
|
|
1155
1175
|
...options,
|
|
1156
1176
|
headers: {
|
|
1157
1177
|
"Content-Type": "application/json",
|
|
1158
1178
|
...options.headers
|
|
1159
1179
|
}
|
|
1160
1180
|
});
|
|
1161
|
-
var
|
|
1181
|
+
var statusListManagementControllerGetLists = (options) => (options?.client ?? client).get({
|
|
1162
1182
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1163
|
-
url: "/api/
|
|
1183
|
+
url: "/api/status-lists",
|
|
1164
1184
|
...options
|
|
1165
1185
|
});
|
|
1166
|
-
var
|
|
1186
|
+
var statusListManagementControllerCreateList = (options) => (options.client ?? client).post({
|
|
1167
1187
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1168
|
-
url: "/api/
|
|
1169
|
-
...options
|
|
1188
|
+
url: "/api/status-lists",
|
|
1189
|
+
...options,
|
|
1190
|
+
headers: {
|
|
1191
|
+
"Content-Type": "application/json",
|
|
1192
|
+
...options.headers
|
|
1193
|
+
}
|
|
1170
1194
|
});
|
|
1171
|
-
var
|
|
1195
|
+
var statusListManagementControllerDeleteList = (options) => (options.client ?? client).delete({
|
|
1172
1196
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1173
|
-
url: "/api/
|
|
1197
|
+
url: "/api/status-lists/{listId}",
|
|
1174
1198
|
...options
|
|
1175
1199
|
});
|
|
1176
|
-
var
|
|
1200
|
+
var statusListManagementControllerGetList = (options) => (options.client ?? client).get({
|
|
1177
1201
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1178
|
-
url: "/api/
|
|
1202
|
+
url: "/api/status-lists/{listId}",
|
|
1179
1203
|
...options
|
|
1180
1204
|
});
|
|
1181
|
-
var
|
|
1205
|
+
var statusListManagementControllerUpdateList = (options) => (options.client ?? client).patch({
|
|
1182
1206
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1183
|
-
url: "/api/
|
|
1207
|
+
url: "/api/status-lists/{listId}",
|
|
1184
1208
|
...options,
|
|
1185
1209
|
headers: {
|
|
1186
1210
|
"Content-Type": "application/json",
|
|
1187
1211
|
...options.headers
|
|
1188
1212
|
}
|
|
1189
1213
|
});
|
|
1190
|
-
var
|
|
1214
|
+
var credentialConfigControllerGetConfigs = (options) => (options?.client ?? client).get({
|
|
1191
1215
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1192
|
-
url: "/api/issuer/
|
|
1216
|
+
url: "/api/issuer/credentials",
|
|
1193
1217
|
...options
|
|
1194
1218
|
});
|
|
1195
|
-
var
|
|
1219
|
+
var credentialConfigControllerStoreCredentialConfiguration = (options) => (options.client ?? client).post({
|
|
1196
1220
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1197
|
-
url: "/api/issuer/
|
|
1221
|
+
url: "/api/issuer/credentials",
|
|
1198
1222
|
...options,
|
|
1199
1223
|
headers: {
|
|
1200
1224
|
"Content-Type": "application/json",
|
|
1201
1225
|
...options.headers
|
|
1202
1226
|
}
|
|
1203
1227
|
});
|
|
1204
|
-
var
|
|
1228
|
+
var credentialConfigControllerDeleteIssuanceConfiguration = (options) => (options.client ?? client).delete({
|
|
1205
1229
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1206
|
-
url: "/api/issuer/
|
|
1230
|
+
url: "/api/issuer/credentials/{id}",
|
|
1207
1231
|
...options
|
|
1208
1232
|
});
|
|
1209
|
-
var
|
|
1233
|
+
var credentialConfigControllerGetConfigById = (options) => (options.client ?? client).get({
|
|
1210
1234
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1211
|
-
url: "/api/issuer/
|
|
1235
|
+
url: "/api/issuer/credentials/{id}",
|
|
1212
1236
|
...options
|
|
1213
1237
|
});
|
|
1214
|
-
var
|
|
1238
|
+
var credentialConfigControllerUpdateCredentialConfiguration = (options) => (options.client ?? client).patch({
|
|
1215
1239
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1216
|
-
url: "/api/issuer/
|
|
1240
|
+
url: "/api/issuer/credentials/{id}",
|
|
1217
1241
|
...options,
|
|
1218
1242
|
headers: {
|
|
1219
1243
|
"Content-Type": "application/json",
|
|
1220
1244
|
...options.headers
|
|
1221
1245
|
}
|
|
1222
1246
|
});
|
|
1223
|
-
var
|
|
1247
|
+
var presentationManagementControllerConfiguration = (options) => (options?.client ?? client).get({
|
|
1224
1248
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1225
|
-
url: "/api/
|
|
1249
|
+
url: "/api/verifier/config",
|
|
1226
1250
|
...options
|
|
1227
1251
|
});
|
|
1228
|
-
var
|
|
1252
|
+
var presentationManagementControllerStorePresentationConfig = (options) => (options.client ?? client).post({
|
|
1229
1253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1230
|
-
url: "/api/
|
|
1254
|
+
url: "/api/verifier/config",
|
|
1231
1255
|
...options,
|
|
1232
1256
|
headers: {
|
|
1233
1257
|
"Content-Type": "application/json",
|
|
1234
1258
|
...options.headers
|
|
1235
1259
|
}
|
|
1236
1260
|
});
|
|
1237
|
-
var
|
|
1261
|
+
var presentationManagementControllerResolveIssuerMetadata = (options) => (options.client ?? client).post({
|
|
1238
1262
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1239
|
-
url: "/api/issuer
|
|
1263
|
+
url: "/api/verifier/config/issuer-metadata/resolve",
|
|
1264
|
+
...options,
|
|
1265
|
+
headers: {
|
|
1266
|
+
"Content-Type": "application/json",
|
|
1267
|
+
...options.headers
|
|
1268
|
+
}
|
|
1269
|
+
});
|
|
1270
|
+
var presentationManagementControllerResolveSchemaMetadata = (options) => (options.client ?? client).post({
|
|
1271
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1272
|
+
url: "/api/verifier/config/schema-metadata/resolve",
|
|
1273
|
+
...options,
|
|
1274
|
+
headers: {
|
|
1275
|
+
"Content-Type": "application/json",
|
|
1276
|
+
...options.headers
|
|
1277
|
+
}
|
|
1278
|
+
});
|
|
1279
|
+
var presentationManagementControllerResolveSchemaMetadataJwt = (options) => (options.client ?? client).post({
|
|
1280
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1281
|
+
url: "/api/verifier/config/schema-metadata/resolve-jwt",
|
|
1282
|
+
...options,
|
|
1283
|
+
headers: {
|
|
1284
|
+
"Content-Type": "application/json",
|
|
1285
|
+
...options.headers
|
|
1286
|
+
}
|
|
1287
|
+
});
|
|
1288
|
+
var presentationManagementControllerListSchemaMetadataCatalog = (options) => (options?.client ?? client).get({
|
|
1289
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1290
|
+
url: "/api/verifier/config/schema-metadata/catalog",
|
|
1240
1291
|
...options
|
|
1241
1292
|
});
|
|
1242
|
-
var
|
|
1293
|
+
var presentationManagementControllerDeleteConfiguration = (options) => (options.client ?? client).delete({
|
|
1243
1294
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1244
|
-
url: "/api/
|
|
1295
|
+
url: "/api/verifier/config/{id}",
|
|
1245
1296
|
...options
|
|
1246
1297
|
});
|
|
1247
|
-
var
|
|
1298
|
+
var presentationManagementControllerGetConfiguration = (options) => (options.client ?? client).get({
|
|
1248
1299
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1249
|
-
url: "/api/
|
|
1300
|
+
url: "/api/verifier/config/{id}",
|
|
1301
|
+
...options
|
|
1302
|
+
});
|
|
1303
|
+
var presentationManagementControllerUpdateConfiguration = (options) => (options.client ?? client).patch({
|
|
1304
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1305
|
+
url: "/api/verifier/config/{id}",
|
|
1250
1306
|
...options,
|
|
1251
1307
|
headers: {
|
|
1252
1308
|
"Content-Type": "application/json",
|
|
1253
1309
|
...options.headers
|
|
1254
1310
|
}
|
|
1255
1311
|
});
|
|
1312
|
+
var presentationManagementControllerReissueRegistrationCertificate = (options) => (options.client ?? client).post({
|
|
1313
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1314
|
+
url: "/api/verifier/config/{id}/registration-cert/reissue",
|
|
1315
|
+
...options
|
|
1316
|
+
});
|
|
1256
1317
|
var trustListControllerGetAllTrustLists = (options) => (options?.client ?? client).get({
|
|
1257
1318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1258
1319
|
url: "/api/trust-list",
|
|
@@ -1321,107 +1382,151 @@ var cacheControllerClearStatusListCache = (options) => (options?.client ?? clien
|
|
|
1321
1382
|
url: "/api/cache/status-list",
|
|
1322
1383
|
...options
|
|
1323
1384
|
});
|
|
1324
|
-
var
|
|
1385
|
+
var issuanceConfigControllerGetIssuanceConfigurations = (options) => (options?.client ?? client).get({
|
|
1325
1386
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1326
|
-
url: "/api/
|
|
1387
|
+
url: "/api/issuer/config",
|
|
1327
1388
|
...options
|
|
1328
1389
|
});
|
|
1329
|
-
var
|
|
1390
|
+
var issuanceConfigControllerStoreIssuanceConfiguration = (options) => (options.client ?? client).post({
|
|
1330
1391
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1331
|
-
url: "/api/
|
|
1392
|
+
url: "/api/issuer/config",
|
|
1332
1393
|
...options,
|
|
1333
1394
|
headers: {
|
|
1334
1395
|
"Content-Type": "application/json",
|
|
1335
1396
|
...options.headers
|
|
1336
1397
|
}
|
|
1337
1398
|
});
|
|
1338
|
-
var
|
|
1399
|
+
var issuanceConfigControllerReissueRegistrationCertificate = (options) => (options?.client ?? client).post({
|
|
1339
1400
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1340
|
-
url: "/api/
|
|
1401
|
+
url: "/api/issuer/config/registration-cert/reissue",
|
|
1402
|
+
...options
|
|
1403
|
+
});
|
|
1404
|
+
var schemaMetadataControllerPublishSchemaMetadata = (options) => (options.client ?? client).post({
|
|
1405
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1406
|
+
url: "/api/schema-metadata/publish",
|
|
1341
1407
|
...options,
|
|
1342
1408
|
headers: {
|
|
1343
1409
|
"Content-Type": "application/json",
|
|
1344
1410
|
...options.headers
|
|
1345
1411
|
}
|
|
1346
1412
|
});
|
|
1347
|
-
var
|
|
1413
|
+
var schemaMetadataControllerSignSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1348
1414
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1349
|
-
url: "/api/
|
|
1415
|
+
url: "/api/schema-metadata/sign",
|
|
1350
1416
|
...options,
|
|
1351
1417
|
headers: {
|
|
1352
1418
|
"Content-Type": "application/json",
|
|
1353
1419
|
...options.headers
|
|
1354
1420
|
}
|
|
1355
1421
|
});
|
|
1356
|
-
var
|
|
1422
|
+
var schemaMetadataControllerPublishSchemaMetadataVersion = (options) => (options.client ?? client).post({
|
|
1357
1423
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1358
|
-
url: "/api/
|
|
1424
|
+
url: "/api/schema-metadata/publish-version",
|
|
1359
1425
|
...options,
|
|
1360
1426
|
headers: {
|
|
1361
1427
|
"Content-Type": "application/json",
|
|
1362
1428
|
...options.headers
|
|
1363
1429
|
}
|
|
1364
1430
|
});
|
|
1365
|
-
var
|
|
1431
|
+
var schemaMetadataControllerSignVersionSchemaMetaConfig = (options) => (options.client ?? client).post({
|
|
1366
1432
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1367
|
-
url: "/api/
|
|
1433
|
+
url: "/api/schema-metadata/sign-version",
|
|
1434
|
+
...options,
|
|
1435
|
+
headers: {
|
|
1436
|
+
"Content-Type": "application/json",
|
|
1437
|
+
...options.headers
|
|
1438
|
+
}
|
|
1439
|
+
});
|
|
1440
|
+
var schemaMetadataControllerGetVocabularies = (options) => (options?.client ?? client).get({
|
|
1441
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1442
|
+
url: "/api/schema-metadata/vocabularies",
|
|
1368
1443
|
...options
|
|
1369
1444
|
});
|
|
1370
|
-
var
|
|
1445
|
+
var schemaMetadataControllerFindAll = (options) => (options?.client ?? client).get({
|
|
1371
1446
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1372
|
-
url: "/api/
|
|
1447
|
+
url: "/api/schema-metadata",
|
|
1373
1448
|
...options
|
|
1374
1449
|
});
|
|
1375
|
-
var
|
|
1450
|
+
var schemaMetadataControllerGetMine = (options) => (options?.client ?? client).get({
|
|
1376
1451
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1377
|
-
url: "/api/
|
|
1452
|
+
url: "/api/schema-metadata/mine",
|
|
1378
1453
|
...options
|
|
1379
1454
|
});
|
|
1380
|
-
var
|
|
1455
|
+
var schemaMetadataControllerFindOne = (options) => (options.client ?? client).get({
|
|
1381
1456
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1382
|
-
url: "/api/
|
|
1457
|
+
url: "/api/schema-metadata/{id}",
|
|
1458
|
+
...options
|
|
1459
|
+
});
|
|
1460
|
+
var schemaMetadataControllerRemove = (options) => (options.client ?? client).delete({
|
|
1461
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1462
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1463
|
+
...options
|
|
1464
|
+
});
|
|
1465
|
+
var schemaMetadataControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1466
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1467
|
+
url: "/api/schema-metadata/{id}/versions/{version}",
|
|
1383
1468
|
...options,
|
|
1384
1469
|
headers: {
|
|
1385
1470
|
"Content-Type": "application/json",
|
|
1386
1471
|
...options.headers
|
|
1387
1472
|
}
|
|
1388
1473
|
});
|
|
1389
|
-
var
|
|
1474
|
+
var schemaMetadataControllerGetLatest = (options) => (options.client ?? client).get({
|
|
1390
1475
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1391
|
-
url: "/api/
|
|
1476
|
+
url: "/api/schema-metadata/{id}/latest",
|
|
1392
1477
|
...options
|
|
1393
1478
|
});
|
|
1394
|
-
var
|
|
1479
|
+
var schemaMetadataControllerGetVersions = (options) => (options.client ?? client).get({
|
|
1395
1480
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1396
|
-
url: "/api/
|
|
1481
|
+
url: "/api/schema-metadata/{id}/versions",
|
|
1397
1482
|
...options
|
|
1398
1483
|
});
|
|
1399
|
-
var
|
|
1484
|
+
var schemaMetadataControllerGetJwt = (options) => (options.client ?? client).get({
|
|
1400
1485
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1401
|
-
url: "/api/
|
|
1486
|
+
url: "/api/schema-metadata/{id}/versions/{version}/jwt",
|
|
1402
1487
|
...options
|
|
1403
1488
|
});
|
|
1404
|
-
var
|
|
1489
|
+
var schemaMetadataControllerGetSchema = (options) => (options.client ?? client).get({
|
|
1405
1490
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1406
|
-
url: "/api/
|
|
1491
|
+
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}",
|
|
1492
|
+
...options
|
|
1493
|
+
});
|
|
1494
|
+
var schemaMetadataControllerDeprecateVersion = (options) => (options.client ?? client).patch({
|
|
1495
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1496
|
+
url: "/api/schema-metadata/{id}/versions/{version}/deprecation",
|
|
1407
1497
|
...options,
|
|
1408
1498
|
headers: {
|
|
1409
1499
|
"Content-Type": "application/json",
|
|
1410
1500
|
...options.headers
|
|
1411
1501
|
}
|
|
1412
1502
|
});
|
|
1413
|
-
var
|
|
1503
|
+
var webhookEndpointControllerGetAll = (options) => (options?.client ?? client).get({
|
|
1414
1504
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1415
|
-
url: "/api/
|
|
1505
|
+
url: "/api/issuer/webhook-endpoints",
|
|
1506
|
+
...options
|
|
1507
|
+
});
|
|
1508
|
+
var webhookEndpointControllerCreate = (options) => (options.client ?? client).post({
|
|
1509
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1510
|
+
url: "/api/issuer/webhook-endpoints",
|
|
1416
1511
|
...options,
|
|
1417
1512
|
headers: {
|
|
1418
1513
|
"Content-Type": "application/json",
|
|
1419
1514
|
...options.headers
|
|
1420
1515
|
}
|
|
1421
1516
|
});
|
|
1422
|
-
var
|
|
1517
|
+
var webhookEndpointControllerDelete = (options) => (options.client ?? client).delete({
|
|
1423
1518
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1424
|
-
url: "/api/
|
|
1519
|
+
url: "/api/issuer/webhook-endpoints/{id}",
|
|
1520
|
+
...options
|
|
1521
|
+
});
|
|
1522
|
+
var webhookEndpointControllerGetById = (options) => (options.client ?? client).get({
|
|
1523
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1524
|
+
url: "/api/issuer/webhook-endpoints/{id}",
|
|
1525
|
+
...options
|
|
1526
|
+
});
|
|
1527
|
+
var webhookEndpointControllerUpdate = (options) => (options.client ?? client).patch({
|
|
1528
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1529
|
+
url: "/api/issuer/webhook-endpoints/{id}",
|
|
1425
1530
|
...options,
|
|
1426
1531
|
headers: {
|
|
1427
1532
|
"Content-Type": "application/json",
|
|
@@ -1455,7 +1560,15 @@ var deferredControllerFailDeferred = (options) => (options.client ?? client).pos
|
|
|
1455
1560
|
...options.headers
|
|
1456
1561
|
}
|
|
1457
1562
|
});
|
|
1458
|
-
var chainedAsVpControllerPar = (options) => (options.client ?? client).post({
|
|
1563
|
+
var chainedAsVpControllerPar = (options) => (options.client ?? client).post({
|
|
1564
|
+
...urlSearchParamsBodySerializer,
|
|
1565
|
+
url: "/api/issuers/{tenantId}/chained-as-vp/par",
|
|
1566
|
+
...options,
|
|
1567
|
+
headers: {
|
|
1568
|
+
"Content-Type": "application/x-www-form-urlencoded",
|
|
1569
|
+
...options.headers
|
|
1570
|
+
}
|
|
1571
|
+
});
|
|
1459
1572
|
var chainedAsVpControllerAuthorize = (options) => (options.client ?? client).get({ url: "/api/issuers/{tenantId}/chained-as-vp/authorize", ...options });
|
|
1460
1573
|
var chainedAsVpControllerVpCallback = (options) => (options.client ?? client).get({ url: "/api/issuers/{tenantId}/chained-as-vp/vp-callback", ...options });
|
|
1461
1574
|
var chainedAsVpControllerToken = (options) => (options.client ?? client).post({
|
|
@@ -1466,107 +1579,66 @@ var chainedAsVpControllerToken = (options) => (options.client ?? client).post({
|
|
|
1466
1579
|
...options.headers
|
|
1467
1580
|
}
|
|
1468
1581
|
});
|
|
1469
|
-
var
|
|
1470
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1471
|
-
url: "/api/key-chain/providers",
|
|
1472
|
-
...options
|
|
1473
|
-
});
|
|
1474
|
-
var keyChainControllerGetProvidersHealth = (options) => (options?.client ?? client).get({
|
|
1475
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1476
|
-
url: "/api/key-chain/providers/health",
|
|
1477
|
-
...options
|
|
1478
|
-
});
|
|
1479
|
-
var keyChainControllerDeleteTenantKmsConfig = (options) => (options?.client ?? client).delete({
|
|
1480
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1481
|
-
url: "/api/key-chain/providers/config",
|
|
1482
|
-
...options
|
|
1483
|
-
});
|
|
1484
|
-
var keyChainControllerGetTenantKmsConfig = (options) => (options?.client ?? client).get({
|
|
1485
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1486
|
-
url: "/api/key-chain/providers/config",
|
|
1487
|
-
...options
|
|
1488
|
-
});
|
|
1489
|
-
var keyChainControllerUpdateTenantKmsConfig = (options) => (options.client ?? client).put({
|
|
1582
|
+
var verifierOfferControllerGetOffer = (options) => (options.client ?? client).post({
|
|
1490
1583
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1491
|
-
url: "/api/
|
|
1584
|
+
url: "/api/verifier/offer",
|
|
1492
1585
|
...options,
|
|
1493
1586
|
headers: {
|
|
1494
1587
|
"Content-Type": "application/json",
|
|
1495
1588
|
...options.headers
|
|
1496
1589
|
}
|
|
1497
1590
|
});
|
|
1498
|
-
var
|
|
1499
|
-
|
|
1500
|
-
url: "/api/key-chain",
|
|
1501
|
-
...options
|
|
1502
|
-
});
|
|
1503
|
-
var keyChainControllerCreate = (options) => (options.client ?? client).post({
|
|
1591
|
+
var storageControllerUpload = (options) => (options.client ?? client).post({
|
|
1592
|
+
...formDataBodySerializer,
|
|
1504
1593
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1505
|
-
url: "/api/
|
|
1594
|
+
url: "/api/storage",
|
|
1506
1595
|
...options,
|
|
1507
1596
|
headers: {
|
|
1508
|
-
"Content-Type":
|
|
1597
|
+
"Content-Type": null,
|
|
1509
1598
|
...options.headers
|
|
1510
1599
|
}
|
|
1511
1600
|
});
|
|
1512
|
-
var
|
|
1601
|
+
var configPortabilityControllerExport = (options) => (options?.client ?? client).get({
|
|
1513
1602
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1514
|
-
url: "/api/
|
|
1603
|
+
url: "/api/config-bundles/export",
|
|
1515
1604
|
...options
|
|
1516
1605
|
});
|
|
1517
|
-
var
|
|
1606
|
+
var configPortabilityControllerPlan = (options) => (options?.client ?? client).post({
|
|
1518
1607
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1519
|
-
url: "/api/
|
|
1608
|
+
url: "/api/config-bundles/plan",
|
|
1520
1609
|
...options
|
|
1521
1610
|
});
|
|
1522
|
-
var
|
|
1611
|
+
var configPortabilityControllerPlanArchive = (options) => (options?.client ?? client).post({
|
|
1523
1612
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1524
|
-
url: "/api/
|
|
1525
|
-
...options
|
|
1526
|
-
headers: {
|
|
1527
|
-
"Content-Type": "application/json",
|
|
1528
|
-
...options.headers
|
|
1529
|
-
}
|
|
1613
|
+
url: "/api/config-bundles/plan/archive",
|
|
1614
|
+
...options
|
|
1530
1615
|
});
|
|
1531
|
-
var
|
|
1616
|
+
var configPortabilityControllerImport = (options) => (options?.client ?? client).post({
|
|
1532
1617
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1533
|
-
url: "/api/
|
|
1618
|
+
url: "/api/config-bundles/import",
|
|
1534
1619
|
...options
|
|
1535
1620
|
});
|
|
1536
|
-
var
|
|
1621
|
+
var configPortabilityControllerImportArchive = (options) => (options?.client ?? client).post({
|
|
1537
1622
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1538
|
-
url: "/api/
|
|
1539
|
-
...options
|
|
1540
|
-
headers: {
|
|
1541
|
-
"Content-Type": "application/json",
|
|
1542
|
-
...options.headers
|
|
1543
|
-
}
|
|
1623
|
+
url: "/api/config-bundles/import/archive",
|
|
1624
|
+
...options
|
|
1544
1625
|
});
|
|
1545
|
-
var
|
|
1626
|
+
var configPortabilityControllerUpgrade = (options) => (options?.client ?? client).post({
|
|
1546
1627
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1547
|
-
url: "/api/
|
|
1628
|
+
url: "/api/config-bundles/documents/upgrade",
|
|
1548
1629
|
...options
|
|
1549
1630
|
});
|
|
1550
|
-
var
|
|
1631
|
+
var configPortabilityControllerResources = (options) => (options?.client ?? client).get({
|
|
1551
1632
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1552
|
-
url: "/api/
|
|
1553
|
-
...options
|
|
1554
|
-
headers: {
|
|
1555
|
-
"Content-Type": "application/json",
|
|
1556
|
-
...options.headers
|
|
1557
|
-
}
|
|
1633
|
+
url: "/api/config-bundles/resources",
|
|
1634
|
+
...options
|
|
1558
1635
|
});
|
|
1559
|
-
var
|
|
1560
|
-
...formDataBodySerializer,
|
|
1636
|
+
var configPortabilityControllerDetach = (options) => (options.client ?? client).post({
|
|
1561
1637
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1562
|
-
url: "/api/
|
|
1563
|
-
...options
|
|
1564
|
-
headers: {
|
|
1565
|
-
"Content-Type": null,
|
|
1566
|
-
...options.headers
|
|
1567
|
-
}
|
|
1638
|
+
url: "/api/config-bundles/resources/{kind}/{id}/detach",
|
|
1639
|
+
...options
|
|
1568
1640
|
});
|
|
1569
1641
|
|
|
1570
|
-
export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, auditLogControllerGetAuditLogs, authControllerGetOAuth2Token, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, chainedAsVpControllerAuthorize, chainedAsVpControllerPar, chainedAsVpControllerToken, chainedAsVpControllerVpCallback, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerReissueRegistrationCertificate, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerDeleteTenantKmsConfig, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerGetProvidersHealth, keyChainControllerGetTenantKmsConfig, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, keyChainControllerUpdateTenantKmsConfig, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerListSchemaMetadataCatalog, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerResolveSchemaMetadata, presentationManagementControllerResolveSchemaMetadataJwt, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, schemaMetadataControllerDeprecateVersion, schemaMetadataControllerFindAll, schemaMetadataControllerFindOne, schemaMetadataControllerGetJwt, schemaMetadataControllerGetLatest, schemaMetadataControllerGetMine, schemaMetadataControllerGetSchema, schemaMetadataControllerGetVersions, schemaMetadataControllerGetVocabularies, schemaMetadataControllerPublishSchemaMetadata, schemaMetadataControllerPublishSchemaMetadataVersion, 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 };
|
|
1642
|
+
export { appControllerGetFrontendConfig, appControllerGetVersion, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, auditLogControllerGetAuditLogs, authControllerGetOAuth2Token, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, chainedAsVpControllerAuthorize, chainedAsVpControllerPar, chainedAsVpControllerToken, chainedAsVpControllerVpCallback, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, configPortabilityControllerDetach, configPortabilityControllerExport, configPortabilityControllerImport, configPortabilityControllerImportArchive, configPortabilityControllerPlan, configPortabilityControllerPlanArchive, configPortabilityControllerResources, configPortabilityControllerUpgrade, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerReissueRegistrationCertificate, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerDeleteTenantKmsConfig, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerGetProvidersHealth, keyChainControllerGetTenantKmsConfig, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, keyChainControllerUpdateTenantKmsConfig, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerListSchemaMetadataCatalog, presentationManagementControllerReissueRegistrationCertificate, presentationManagementControllerResolveIssuerMetadata, presentationManagementControllerResolveSchemaMetadata, presentationManagementControllerResolveSchemaMetadataJwt, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, schemaMetadataControllerDeprecateVersion, schemaMetadataControllerFindAll, schemaMetadataControllerFindOne, schemaMetadataControllerGetJwt, schemaMetadataControllerGetLatest, schemaMetadataControllerGetMine, schemaMetadataControllerGetSchema, schemaMetadataControllerGetVersions, schemaMetadataControllerGetVocabularies, schemaMetadataControllerPublishSchemaMetadata, schemaMetadataControllerPublishSchemaMetadataVersion, 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 };
|
|
1571
1643
|
//# sourceMappingURL=index.mjs.map
|
|
1572
1644
|
//# sourceMappingURL=index.mjs.map
|