@seekora-ai/admin-api 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -14
- package/api.ts +155 -155
- package/dist/api.d.ts +85 -85
- package/dist/api.js +118 -118
- package/dist/esm/api.d.ts +85 -85
- package/dist/esm/api.js +118 -118
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.4.tgz +0 -0
- package/seekora-ai-admin-api-1.0.3.tgz +0 -0
package/dist/api.js
CHANGED
|
@@ -986,12 +986,12 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
986
986
|
* @param {*} [options] Override http request option.
|
|
987
987
|
* @throws {RequiredError}
|
|
988
988
|
*/
|
|
989
|
-
|
|
989
|
+
v1ConnectorsSearchIndexGet: (index_1, q_1, ...args_1) => __awaiter(this, [index_1, q_1, ...args_1], void 0, function* (index, q, options = {}) {
|
|
990
990
|
// verify required parameter 'index' is not null or undefined
|
|
991
|
-
(0, common_1.assertParamExists)('
|
|
991
|
+
(0, common_1.assertParamExists)('v1ConnectorsSearchIndexGet', 'index', index);
|
|
992
992
|
// verify required parameter 'q' is not null or undefined
|
|
993
|
-
(0, common_1.assertParamExists)('
|
|
994
|
-
const localVarPath = `/
|
|
993
|
+
(0, common_1.assertParamExists)('v1ConnectorsSearchIndexGet', 'q', q);
|
|
994
|
+
const localVarPath = `/v1/connectors/search/{index}`
|
|
995
995
|
.replace(`{${"index"}}`, encodeURIComponent(String(index)));
|
|
996
996
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
997
997
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1019,8 +1019,8 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1019
1019
|
* @param {*} [options] Override http request option.
|
|
1020
1020
|
* @throws {RequiredError}
|
|
1021
1021
|
*/
|
|
1022
|
-
|
|
1023
|
-
const localVarPath = `/
|
|
1022
|
+
v1ConnectorsSourcesGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
1023
|
+
const localVarPath = `/v1/connectors/sources`;
|
|
1024
1024
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1025
1025
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1026
1026
|
let baseOptions;
|
|
@@ -1045,10 +1045,10 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1045
1045
|
* @param {*} [options] Override http request option.
|
|
1046
1046
|
* @throws {RequiredError}
|
|
1047
1047
|
*/
|
|
1048
|
-
|
|
1048
|
+
v1ConnectorsSourcesPost: (source_1, ...args_1) => __awaiter(this, [source_1, ...args_1], void 0, function* (source, options = {}) {
|
|
1049
1049
|
// verify required parameter 'source' is not null or undefined
|
|
1050
|
-
(0, common_1.assertParamExists)('
|
|
1051
|
-
const localVarPath = `/
|
|
1050
|
+
(0, common_1.assertParamExists)('v1ConnectorsSourcesPost', 'source', source);
|
|
1051
|
+
const localVarPath = `/v1/connectors/sources`;
|
|
1052
1052
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1053
1053
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1054
1054
|
let baseOptions;
|
|
@@ -1076,12 +1076,12 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1076
1076
|
* @param {*} [options] Override http request option.
|
|
1077
1077
|
* @throws {RequiredError}
|
|
1078
1078
|
*/
|
|
1079
|
-
|
|
1079
|
+
v1ConnectorsSourcesSourceIdConfigPut: (sourceId_1, config_1, ...args_1) => __awaiter(this, [sourceId_1, config_1, ...args_1], void 0, function* (sourceId, config, options = {}) {
|
|
1080
1080
|
// verify required parameter 'sourceId' is not null or undefined
|
|
1081
|
-
(0, common_1.assertParamExists)('
|
|
1081
|
+
(0, common_1.assertParamExists)('v1ConnectorsSourcesSourceIdConfigPut', 'sourceId', sourceId);
|
|
1082
1082
|
// verify required parameter 'config' is not null or undefined
|
|
1083
|
-
(0, common_1.assertParamExists)('
|
|
1084
|
-
const localVarPath = `/
|
|
1083
|
+
(0, common_1.assertParamExists)('v1ConnectorsSourcesSourceIdConfigPut', 'config', config);
|
|
1084
|
+
const localVarPath = `/v1/connectors/sources/:source_id/config`
|
|
1085
1085
|
.replace(`{${"source_id"}}`, encodeURIComponent(String(sourceId)));
|
|
1086
1086
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1087
1087
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1110,8 +1110,8 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1110
1110
|
* @param {*} [options] Override http request option.
|
|
1111
1111
|
* @throws {RequiredError}
|
|
1112
1112
|
*/
|
|
1113
|
-
|
|
1114
|
-
const localVarPath = `/
|
|
1113
|
+
v1ConnectorsSourcesSourceIdGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
1114
|
+
const localVarPath = `/v1/connectors/sources/:source_id`;
|
|
1115
1115
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1116
1116
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1117
1117
|
let baseOptions;
|
|
@@ -1137,12 +1137,12 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1137
1137
|
* @param {*} [options] Override http request option.
|
|
1138
1138
|
* @throws {RequiredError}
|
|
1139
1139
|
*/
|
|
1140
|
-
|
|
1140
|
+
v1ConnectorsSourcesSourceidUpdateschemaPatch: (sourceid_1, schema_1, ...args_1) => __awaiter(this, [sourceid_1, schema_1, ...args_1], void 0, function* (sourceid, schema, options = {}) {
|
|
1141
1141
|
// verify required parameter 'sourceid' is not null or undefined
|
|
1142
|
-
(0, common_1.assertParamExists)('
|
|
1142
|
+
(0, common_1.assertParamExists)('v1ConnectorsSourcesSourceidUpdateschemaPatch', 'sourceid', sourceid);
|
|
1143
1143
|
// verify required parameter 'schema' is not null or undefined
|
|
1144
|
-
(0, common_1.assertParamExists)('
|
|
1145
|
-
const localVarPath = `/
|
|
1144
|
+
(0, common_1.assertParamExists)('v1ConnectorsSourcesSourceidUpdateschemaPatch', 'schema', schema);
|
|
1145
|
+
const localVarPath = `/v1/connectors/sources/:sourceid/updateschema`
|
|
1146
1146
|
.replace(`{${"sourceid"}}`, encodeURIComponent(String(sourceid)));
|
|
1147
1147
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1148
1148
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1166,14 +1166,14 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1166
1166
|
/**
|
|
1167
1167
|
* Upload source data
|
|
1168
1168
|
* @summary Upload source data
|
|
1169
|
-
* @param {
|
|
1169
|
+
* @param {V1ConnectorsSourcesSourceidUploaddataPostRequest} v1ConnectorsSourcesSourceidUploaddataPostRequest
|
|
1170
1170
|
* @param {*} [options] Override http request option.
|
|
1171
1171
|
* @throws {RequiredError}
|
|
1172
1172
|
*/
|
|
1173
|
-
|
|
1174
|
-
// verify required parameter '
|
|
1175
|
-
(0, common_1.assertParamExists)('
|
|
1176
|
-
const localVarPath = `/
|
|
1173
|
+
v1ConnectorsSourcesSourceidUploaddataPost: (v1ConnectorsSourcesSourceidUploaddataPostRequest_1, ...args_1) => __awaiter(this, [v1ConnectorsSourcesSourceidUploaddataPostRequest_1, ...args_1], void 0, function* (v1ConnectorsSourcesSourceidUploaddataPostRequest, options = {}) {
|
|
1174
|
+
// verify required parameter 'v1ConnectorsSourcesSourceidUploaddataPostRequest' is not null or undefined
|
|
1175
|
+
(0, common_1.assertParamExists)('v1ConnectorsSourcesSourceidUploaddataPost', 'v1ConnectorsSourcesSourceidUploaddataPostRequest', v1ConnectorsSourcesSourceidUploaddataPostRequest);
|
|
1176
|
+
const localVarPath = `/v1/connectors/sources/:sourceid/uploaddata`;
|
|
1177
1177
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1178
1178
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1179
1179
|
let baseOptions;
|
|
@@ -1187,7 +1187,7 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1187
1187
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1188
1188
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1189
1189
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1190
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
1190
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1ConnectorsSourcesSourceidUploaddataPostRequest, localVarRequestOptions, configuration);
|
|
1191
1191
|
return {
|
|
1192
1192
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1193
1193
|
options: localVarRequestOptions,
|
|
@@ -1200,10 +1200,10 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1200
1200
|
* @param {*} [options] Override http request option.
|
|
1201
1201
|
* @throws {RequiredError}
|
|
1202
1202
|
*/
|
|
1203
|
-
|
|
1203
|
+
v1ConnectorsTasksPost: (task_1, ...args_1) => __awaiter(this, [task_1, ...args_1], void 0, function* (task, options = {}) {
|
|
1204
1204
|
// verify required parameter 'task' is not null or undefined
|
|
1205
|
-
(0, common_1.assertParamExists)('
|
|
1206
|
-
const localVarPath = `/
|
|
1205
|
+
(0, common_1.assertParamExists)('v1ConnectorsTasksPost', 'task', task);
|
|
1206
|
+
const localVarPath = `/v1/connectors/tasks`;
|
|
1207
1207
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1208
1208
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1209
1209
|
let baseOptions;
|
|
@@ -1231,12 +1231,12 @@ const ConnectorsApiAxiosParamCreator = function (configuration) {
|
|
|
1231
1231
|
* @param {*} [options] Override http request option.
|
|
1232
1232
|
* @throws {RequiredError}
|
|
1233
1233
|
*/
|
|
1234
|
-
|
|
1234
|
+
v1ConnectorsTasksTaskIdRunPost: (taskId_1, initiatedBy_1, ...args_1) => __awaiter(this, [taskId_1, initiatedBy_1, ...args_1], void 0, function* (taskId, initiatedBy, options = {}) {
|
|
1235
1235
|
// verify required parameter 'taskId' is not null or undefined
|
|
1236
|
-
(0, common_1.assertParamExists)('
|
|
1236
|
+
(0, common_1.assertParamExists)('v1ConnectorsTasksTaskIdRunPost', 'taskId', taskId);
|
|
1237
1237
|
// verify required parameter 'initiatedBy' is not null or undefined
|
|
1238
|
-
(0, common_1.assertParamExists)('
|
|
1239
|
-
const localVarPath = `/
|
|
1238
|
+
(0, common_1.assertParamExists)('v1ConnectorsTasksTaskIdRunPost', 'initiatedBy', initiatedBy);
|
|
1239
|
+
const localVarPath = `/v1/connectors/tasks/{task_id}/run`
|
|
1240
1240
|
.replace(`{${"task_id"}}`, encodeURIComponent(String(taskId)));
|
|
1241
1241
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1242
1242
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1275,12 +1275,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1275
1275
|
* @param {*} [options] Override http request option.
|
|
1276
1276
|
* @throws {RequiredError}
|
|
1277
1277
|
*/
|
|
1278
|
-
|
|
1278
|
+
v1ConnectorsSearchIndexGet(index, q, options) {
|
|
1279
1279
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1280
1280
|
var _a, _b, _c;
|
|
1281
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1281
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSearchIndexGet(index, q, options);
|
|
1282
1282
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1283
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1283
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSearchIndexGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1284
1284
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1285
1285
|
});
|
|
1286
1286
|
},
|
|
@@ -1290,12 +1290,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1290
1290
|
* @param {*} [options] Override http request option.
|
|
1291
1291
|
* @throws {RequiredError}
|
|
1292
1292
|
*/
|
|
1293
|
-
|
|
1293
|
+
v1ConnectorsSourcesGet(options) {
|
|
1294
1294
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1295
1295
|
var _a, _b, _c;
|
|
1296
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1296
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSourcesGet(options);
|
|
1297
1297
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1298
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1298
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSourcesGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1299
1299
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1300
1300
|
});
|
|
1301
1301
|
},
|
|
@@ -1306,12 +1306,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1306
1306
|
* @param {*} [options] Override http request option.
|
|
1307
1307
|
* @throws {RequiredError}
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
v1ConnectorsSourcesPost(source, options) {
|
|
1310
1310
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1311
1311
|
var _a, _b, _c;
|
|
1312
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1312
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSourcesPost(source, options);
|
|
1313
1313
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1314
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1314
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSourcesPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1315
1315
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1316
1316
|
});
|
|
1317
1317
|
},
|
|
@@ -1323,12 +1323,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1323
1323
|
* @param {*} [options] Override http request option.
|
|
1324
1324
|
* @throws {RequiredError}
|
|
1325
1325
|
*/
|
|
1326
|
-
|
|
1326
|
+
v1ConnectorsSourcesSourceIdConfigPut(sourceId, config, options) {
|
|
1327
1327
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1328
1328
|
var _a, _b, _c;
|
|
1329
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1329
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSourcesSourceIdConfigPut(sourceId, config, options);
|
|
1330
1330
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1331
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1331
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSourcesSourceIdConfigPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1332
1332
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1333
1333
|
});
|
|
1334
1334
|
},
|
|
@@ -1338,12 +1338,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1338
1338
|
* @param {*} [options] Override http request option.
|
|
1339
1339
|
* @throws {RequiredError}
|
|
1340
1340
|
*/
|
|
1341
|
-
|
|
1341
|
+
v1ConnectorsSourcesSourceIdGet(options) {
|
|
1342
1342
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1343
1343
|
var _a, _b, _c;
|
|
1344
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1344
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSourcesSourceIdGet(options);
|
|
1345
1345
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1346
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1346
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSourcesSourceIdGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1347
1347
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1348
1348
|
});
|
|
1349
1349
|
},
|
|
@@ -1355,28 +1355,28 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1355
1355
|
* @param {*} [options] Override http request option.
|
|
1356
1356
|
* @throws {RequiredError}
|
|
1357
1357
|
*/
|
|
1358
|
-
|
|
1358
|
+
v1ConnectorsSourcesSourceidUpdateschemaPatch(sourceid, schema, options) {
|
|
1359
1359
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1360
1360
|
var _a, _b, _c;
|
|
1361
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1361
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSourcesSourceidUpdateschemaPatch(sourceid, schema, options);
|
|
1362
1362
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1363
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1363
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSourcesSourceidUpdateschemaPatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1364
1364
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1365
1365
|
});
|
|
1366
1366
|
},
|
|
1367
1367
|
/**
|
|
1368
1368
|
* Upload source data
|
|
1369
1369
|
* @summary Upload source data
|
|
1370
|
-
* @param {
|
|
1370
|
+
* @param {V1ConnectorsSourcesSourceidUploaddataPostRequest} v1ConnectorsSourcesSourceidUploaddataPostRequest
|
|
1371
1371
|
* @param {*} [options] Override http request option.
|
|
1372
1372
|
* @throws {RequiredError}
|
|
1373
1373
|
*/
|
|
1374
|
-
|
|
1374
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest, options) {
|
|
1375
1375
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1376
1376
|
var _a, _b, _c;
|
|
1377
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1377
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest, options);
|
|
1378
1378
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1379
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1379
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsSourcesSourceidUploaddataPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1380
1380
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1381
1381
|
});
|
|
1382
1382
|
},
|
|
@@ -1387,12 +1387,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1387
1387
|
* @param {*} [options] Override http request option.
|
|
1388
1388
|
* @throws {RequiredError}
|
|
1389
1389
|
*/
|
|
1390
|
-
|
|
1390
|
+
v1ConnectorsTasksPost(task, options) {
|
|
1391
1391
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1392
1392
|
var _a, _b, _c;
|
|
1393
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1393
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsTasksPost(task, options);
|
|
1394
1394
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1395
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1395
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsTasksPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1396
1396
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1397
1397
|
});
|
|
1398
1398
|
},
|
|
@@ -1404,12 +1404,12 @@ const ConnectorsApiFp = function (configuration) {
|
|
|
1404
1404
|
* @param {*} [options] Override http request option.
|
|
1405
1405
|
* @throws {RequiredError}
|
|
1406
1406
|
*/
|
|
1407
|
-
|
|
1407
|
+
v1ConnectorsTasksTaskIdRunPost(taskId, initiatedBy, options) {
|
|
1408
1408
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1409
1409
|
var _a, _b, _c;
|
|
1410
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
1410
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1ConnectorsTasksTaskIdRunPost(taskId, initiatedBy, options);
|
|
1411
1411
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1412
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.
|
|
1412
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConnectorsApi.v1ConnectorsTasksTaskIdRunPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1413
1413
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1414
1414
|
});
|
|
1415
1415
|
},
|
|
@@ -1431,8 +1431,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1431
1431
|
* @param {*} [options] Override http request option.
|
|
1432
1432
|
* @throws {RequiredError}
|
|
1433
1433
|
*/
|
|
1434
|
-
|
|
1435
|
-
return localVarFp.
|
|
1434
|
+
v1ConnectorsSearchIndexGet(index, q, options) {
|
|
1435
|
+
return localVarFp.v1ConnectorsSearchIndexGet(index, q, options).then((request) => request(axios, basePath));
|
|
1436
1436
|
},
|
|
1437
1437
|
/**
|
|
1438
1438
|
* Get all sources
|
|
@@ -1440,8 +1440,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1440
1440
|
* @param {*} [options] Override http request option.
|
|
1441
1441
|
* @throws {RequiredError}
|
|
1442
1442
|
*/
|
|
1443
|
-
|
|
1444
|
-
return localVarFp.
|
|
1443
|
+
v1ConnectorsSourcesGet(options) {
|
|
1444
|
+
return localVarFp.v1ConnectorsSourcesGet(options).then((request) => request(axios, basePath));
|
|
1445
1445
|
},
|
|
1446
1446
|
/**
|
|
1447
1447
|
* Create source
|
|
@@ -1450,8 +1450,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1450
1450
|
* @param {*} [options] Override http request option.
|
|
1451
1451
|
* @throws {RequiredError}
|
|
1452
1452
|
*/
|
|
1453
|
-
|
|
1454
|
-
return localVarFp.
|
|
1453
|
+
v1ConnectorsSourcesPost(source, options) {
|
|
1454
|
+
return localVarFp.v1ConnectorsSourcesPost(source, options).then((request) => request(axios, basePath));
|
|
1455
1455
|
},
|
|
1456
1456
|
/**
|
|
1457
1457
|
* Update source config by id
|
|
@@ -1461,8 +1461,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1461
1461
|
* @param {*} [options] Override http request option.
|
|
1462
1462
|
* @throws {RequiredError}
|
|
1463
1463
|
*/
|
|
1464
|
-
|
|
1465
|
-
return localVarFp.
|
|
1464
|
+
v1ConnectorsSourcesSourceIdConfigPut(sourceId, config, options) {
|
|
1465
|
+
return localVarFp.v1ConnectorsSourcesSourceIdConfigPut(sourceId, config, options).then((request) => request(axios, basePath));
|
|
1466
1466
|
},
|
|
1467
1467
|
/**
|
|
1468
1468
|
* Get source by id
|
|
@@ -1470,8 +1470,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1470
1470
|
* @param {*} [options] Override http request option.
|
|
1471
1471
|
* @throws {RequiredError}
|
|
1472
1472
|
*/
|
|
1473
|
-
|
|
1474
|
-
return localVarFp.
|
|
1473
|
+
v1ConnectorsSourcesSourceIdGet(options) {
|
|
1474
|
+
return localVarFp.v1ConnectorsSourcesSourceIdGet(options).then((request) => request(axios, basePath));
|
|
1475
1475
|
},
|
|
1476
1476
|
/**
|
|
1477
1477
|
* Update Index schema
|
|
@@ -1481,18 +1481,18 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1481
1481
|
* @param {*} [options] Override http request option.
|
|
1482
1482
|
* @throws {RequiredError}
|
|
1483
1483
|
*/
|
|
1484
|
-
|
|
1485
|
-
return localVarFp.
|
|
1484
|
+
v1ConnectorsSourcesSourceidUpdateschemaPatch(sourceid, schema, options) {
|
|
1485
|
+
return localVarFp.v1ConnectorsSourcesSourceidUpdateschemaPatch(sourceid, schema, options).then((request) => request(axios, basePath));
|
|
1486
1486
|
},
|
|
1487
1487
|
/**
|
|
1488
1488
|
* Upload source data
|
|
1489
1489
|
* @summary Upload source data
|
|
1490
|
-
* @param {
|
|
1490
|
+
* @param {V1ConnectorsSourcesSourceidUploaddataPostRequest} v1ConnectorsSourcesSourceidUploaddataPostRequest
|
|
1491
1491
|
* @param {*} [options] Override http request option.
|
|
1492
1492
|
* @throws {RequiredError}
|
|
1493
1493
|
*/
|
|
1494
|
-
|
|
1495
|
-
return localVarFp.
|
|
1494
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest, options) {
|
|
1495
|
+
return localVarFp.v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest, options).then((request) => request(axios, basePath));
|
|
1496
1496
|
},
|
|
1497
1497
|
/**
|
|
1498
1498
|
* Create task
|
|
@@ -1501,8 +1501,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1501
1501
|
* @param {*} [options] Override http request option.
|
|
1502
1502
|
* @throws {RequiredError}
|
|
1503
1503
|
*/
|
|
1504
|
-
|
|
1505
|
-
return localVarFp.
|
|
1504
|
+
v1ConnectorsTasksPost(task, options) {
|
|
1505
|
+
return localVarFp.v1ConnectorsTasksPost(task, options).then((request) => request(axios, basePath));
|
|
1506
1506
|
},
|
|
1507
1507
|
/**
|
|
1508
1508
|
* Trigger task run
|
|
@@ -1512,8 +1512,8 @@ const ConnectorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1512
1512
|
* @param {*} [options] Override http request option.
|
|
1513
1513
|
* @throws {RequiredError}
|
|
1514
1514
|
*/
|
|
1515
|
-
|
|
1516
|
-
return localVarFp.
|
|
1515
|
+
v1ConnectorsTasksTaskIdRunPost(taskId, initiatedBy, options) {
|
|
1516
|
+
return localVarFp.v1ConnectorsTasksTaskIdRunPost(taskId, initiatedBy, options).then((request) => request(axios, basePath));
|
|
1517
1517
|
},
|
|
1518
1518
|
};
|
|
1519
1519
|
};
|
|
@@ -1534,8 +1534,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1534
1534
|
* @throws {RequiredError}
|
|
1535
1535
|
* @memberof ConnectorsApi
|
|
1536
1536
|
*/
|
|
1537
|
-
|
|
1538
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1537
|
+
v1ConnectorsSearchIndexGet(index, q, options) {
|
|
1538
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSearchIndexGet(index, q, options).then((request) => request(this.axios, this.basePath));
|
|
1539
1539
|
}
|
|
1540
1540
|
/**
|
|
1541
1541
|
* Get all sources
|
|
@@ -1544,8 +1544,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1544
1544
|
* @throws {RequiredError}
|
|
1545
1545
|
* @memberof ConnectorsApi
|
|
1546
1546
|
*/
|
|
1547
|
-
|
|
1548
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1547
|
+
v1ConnectorsSourcesGet(options) {
|
|
1548
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSourcesGet(options).then((request) => request(this.axios, this.basePath));
|
|
1549
1549
|
}
|
|
1550
1550
|
/**
|
|
1551
1551
|
* Create source
|
|
@@ -1555,8 +1555,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1555
1555
|
* @throws {RequiredError}
|
|
1556
1556
|
* @memberof ConnectorsApi
|
|
1557
1557
|
*/
|
|
1558
|
-
|
|
1559
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1558
|
+
v1ConnectorsSourcesPost(source, options) {
|
|
1559
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSourcesPost(source, options).then((request) => request(this.axios, this.basePath));
|
|
1560
1560
|
}
|
|
1561
1561
|
/**
|
|
1562
1562
|
* Update source config by id
|
|
@@ -1567,8 +1567,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1567
1567
|
* @throws {RequiredError}
|
|
1568
1568
|
* @memberof ConnectorsApi
|
|
1569
1569
|
*/
|
|
1570
|
-
|
|
1571
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1570
|
+
v1ConnectorsSourcesSourceIdConfigPut(sourceId, config, options) {
|
|
1571
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSourcesSourceIdConfigPut(sourceId, config, options).then((request) => request(this.axios, this.basePath));
|
|
1572
1572
|
}
|
|
1573
1573
|
/**
|
|
1574
1574
|
* Get source by id
|
|
@@ -1577,8 +1577,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1577
1577
|
* @throws {RequiredError}
|
|
1578
1578
|
* @memberof ConnectorsApi
|
|
1579
1579
|
*/
|
|
1580
|
-
|
|
1581
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1580
|
+
v1ConnectorsSourcesSourceIdGet(options) {
|
|
1581
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSourcesSourceIdGet(options).then((request) => request(this.axios, this.basePath));
|
|
1582
1582
|
}
|
|
1583
1583
|
/**
|
|
1584
1584
|
* Update Index schema
|
|
@@ -1589,19 +1589,19 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1589
1589
|
* @throws {RequiredError}
|
|
1590
1590
|
* @memberof ConnectorsApi
|
|
1591
1591
|
*/
|
|
1592
|
-
|
|
1593
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1592
|
+
v1ConnectorsSourcesSourceidUpdateschemaPatch(sourceid, schema, options) {
|
|
1593
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSourcesSourceidUpdateschemaPatch(sourceid, schema, options).then((request) => request(this.axios, this.basePath));
|
|
1594
1594
|
}
|
|
1595
1595
|
/**
|
|
1596
1596
|
* Upload source data
|
|
1597
1597
|
* @summary Upload source data
|
|
1598
|
-
* @param {
|
|
1598
|
+
* @param {V1ConnectorsSourcesSourceidUploaddataPostRequest} v1ConnectorsSourcesSourceidUploaddataPostRequest
|
|
1599
1599
|
* @param {*} [options] Override http request option.
|
|
1600
1600
|
* @throws {RequiredError}
|
|
1601
1601
|
* @memberof ConnectorsApi
|
|
1602
1602
|
*/
|
|
1603
|
-
|
|
1604
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1603
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest, options) {
|
|
1604
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1605
1605
|
}
|
|
1606
1606
|
/**
|
|
1607
1607
|
* Create task
|
|
@@ -1611,8 +1611,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1611
1611
|
* @throws {RequiredError}
|
|
1612
1612
|
* @memberof ConnectorsApi
|
|
1613
1613
|
*/
|
|
1614
|
-
|
|
1615
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1614
|
+
v1ConnectorsTasksPost(task, options) {
|
|
1615
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsTasksPost(task, options).then((request) => request(this.axios, this.basePath));
|
|
1616
1616
|
}
|
|
1617
1617
|
/**
|
|
1618
1618
|
* Trigger task run
|
|
@@ -1623,8 +1623,8 @@ class ConnectorsApi extends base_1.BaseAPI {
|
|
|
1623
1623
|
* @throws {RequiredError}
|
|
1624
1624
|
* @memberof ConnectorsApi
|
|
1625
1625
|
*/
|
|
1626
|
-
|
|
1627
|
-
return (0, exports.ConnectorsApiFp)(this.configuration).
|
|
1626
|
+
v1ConnectorsTasksTaskIdRunPost(taskId, initiatedBy, options) {
|
|
1627
|
+
return (0, exports.ConnectorsApiFp)(this.configuration).v1ConnectorsTasksTaskIdRunPost(taskId, initiatedBy, options).then((request) => request(this.axios, this.basePath));
|
|
1628
1628
|
}
|
|
1629
1629
|
}
|
|
1630
1630
|
exports.ConnectorsApi = ConnectorsApi;
|
|
@@ -4220,10 +4220,10 @@ const OnboardingApiAxiosParamCreator = function (configuration) {
|
|
|
4220
4220
|
* @param {*} [options] Override http request option.
|
|
4221
4221
|
* @throws {RequiredError}
|
|
4222
4222
|
*/
|
|
4223
|
-
|
|
4223
|
+
adminV1UsersOnboardingPatch: (body_1, ...args_1) => __awaiter(this, [body_1, ...args_1], void 0, function* (body, options = {}) {
|
|
4224
4224
|
// verify required parameter 'body' is not null or undefined
|
|
4225
|
-
(0, common_1.assertParamExists)('
|
|
4226
|
-
const localVarPath = `/
|
|
4225
|
+
(0, common_1.assertParamExists)('adminV1UsersOnboardingPatch', 'body', body);
|
|
4226
|
+
const localVarPath = `/admin/v1/users/onboarding`;
|
|
4227
4227
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4228
4228
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
4229
4229
|
let baseOptions;
|
|
@@ -4250,10 +4250,10 @@ const OnboardingApiAxiosParamCreator = function (configuration) {
|
|
|
4250
4250
|
* @param {*} [options] Override http request option.
|
|
4251
4251
|
* @throws {RequiredError}
|
|
4252
4252
|
*/
|
|
4253
|
-
|
|
4253
|
+
adminV1UsersOnboardingSchemaUploadPost: (file_1, ...args_1) => __awaiter(this, [file_1, ...args_1], void 0, function* (file, options = {}) {
|
|
4254
4254
|
// verify required parameter 'file' is not null or undefined
|
|
4255
|
-
(0, common_1.assertParamExists)('
|
|
4256
|
-
const localVarPath = `/
|
|
4255
|
+
(0, common_1.assertParamExists)('adminV1UsersOnboardingSchemaUploadPost', 'file', file);
|
|
4256
|
+
const localVarPath = `/admin/v1/users/onboarding/schema-upload`;
|
|
4257
4257
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4258
4258
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
4259
4259
|
let baseOptions;
|
|
@@ -4294,12 +4294,12 @@ const OnboardingApiFp = function (configuration) {
|
|
|
4294
4294
|
* @param {*} [options] Override http request option.
|
|
4295
4295
|
* @throws {RequiredError}
|
|
4296
4296
|
*/
|
|
4297
|
-
|
|
4297
|
+
adminV1UsersOnboardingPatch(body, options) {
|
|
4298
4298
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4299
4299
|
var _a, _b, _c;
|
|
4300
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
4300
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1UsersOnboardingPatch(body, options);
|
|
4301
4301
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4302
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OnboardingApi.
|
|
4302
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OnboardingApi.adminV1UsersOnboardingPatch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4303
4303
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4304
4304
|
});
|
|
4305
4305
|
},
|
|
@@ -4310,12 +4310,12 @@ const OnboardingApiFp = function (configuration) {
|
|
|
4310
4310
|
* @param {*} [options] Override http request option.
|
|
4311
4311
|
* @throws {RequiredError}
|
|
4312
4312
|
*/
|
|
4313
|
-
|
|
4313
|
+
adminV1UsersOnboardingSchemaUploadPost(file, options) {
|
|
4314
4314
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4315
4315
|
var _a, _b, _c;
|
|
4316
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
4316
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1UsersOnboardingSchemaUploadPost(file, options);
|
|
4317
4317
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4318
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OnboardingApi.
|
|
4318
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OnboardingApi.adminV1UsersOnboardingSchemaUploadPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4319
4319
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4320
4320
|
});
|
|
4321
4321
|
},
|
|
@@ -4336,8 +4336,8 @@ const OnboardingApiFactory = function (configuration, basePath, axios) {
|
|
|
4336
4336
|
* @param {*} [options] Override http request option.
|
|
4337
4337
|
* @throws {RequiredError}
|
|
4338
4338
|
*/
|
|
4339
|
-
|
|
4340
|
-
return localVarFp.
|
|
4339
|
+
adminV1UsersOnboardingPatch(body, options) {
|
|
4340
|
+
return localVarFp.adminV1UsersOnboardingPatch(body, options).then((request) => request(axios, basePath));
|
|
4341
4341
|
},
|
|
4342
4342
|
/**
|
|
4343
4343
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
@@ -4346,8 +4346,8 @@ const OnboardingApiFactory = function (configuration, basePath, axios) {
|
|
|
4346
4346
|
* @param {*} [options] Override http request option.
|
|
4347
4347
|
* @throws {RequiredError}
|
|
4348
4348
|
*/
|
|
4349
|
-
|
|
4350
|
-
return localVarFp.
|
|
4349
|
+
adminV1UsersOnboardingSchemaUploadPost(file, options) {
|
|
4350
|
+
return localVarFp.adminV1UsersOnboardingSchemaUploadPost(file, options).then((request) => request(axios, basePath));
|
|
4351
4351
|
},
|
|
4352
4352
|
};
|
|
4353
4353
|
};
|
|
@@ -4367,8 +4367,8 @@ class OnboardingApi extends base_1.BaseAPI {
|
|
|
4367
4367
|
* @throws {RequiredError}
|
|
4368
4368
|
* @memberof OnboardingApi
|
|
4369
4369
|
*/
|
|
4370
|
-
|
|
4371
|
-
return (0, exports.OnboardingApiFp)(this.configuration).
|
|
4370
|
+
adminV1UsersOnboardingPatch(body, options) {
|
|
4371
|
+
return (0, exports.OnboardingApiFp)(this.configuration).adminV1UsersOnboardingPatch(body, options).then((request) => request(this.axios, this.basePath));
|
|
4372
4372
|
}
|
|
4373
4373
|
/**
|
|
4374
4374
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
@@ -4378,8 +4378,8 @@ class OnboardingApi extends base_1.BaseAPI {
|
|
|
4378
4378
|
* @throws {RequiredError}
|
|
4379
4379
|
* @memberof OnboardingApi
|
|
4380
4380
|
*/
|
|
4381
|
-
|
|
4382
|
-
return (0, exports.OnboardingApiFp)(this.configuration).
|
|
4381
|
+
adminV1UsersOnboardingSchemaUploadPost(file, options) {
|
|
4382
|
+
return (0, exports.OnboardingApiFp)(this.configuration).adminV1UsersOnboardingSchemaUploadPost(file, options).then((request) => request(this.axios, this.basePath));
|
|
4383
4383
|
}
|
|
4384
4384
|
}
|
|
4385
4385
|
exports.OnboardingApi = OnboardingApi;
|