@teemill/projects 1.33.0 → 1.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +437 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +2 -3
- package/dist/api.d.ts +299 -3
- package/dist/api.js +220 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +299 -3
- package/dist/esm/api.js +220 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Projects API
|
|
5
5
|
* Manage PodOS Projects
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.36.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -468,6 +468,40 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
468
468
|
options: localVarRequestOptions,
|
|
469
469
|
};
|
|
470
470
|
}),
|
|
471
|
+
/**
|
|
472
|
+
* Export all the tasks in the workflow
|
|
473
|
+
* @summary Export all tasks
|
|
474
|
+
* @param {string} project Projects unique identifier
|
|
475
|
+
* @param {*} [options] Override http request option.
|
|
476
|
+
* @throws {RequiredError}
|
|
477
|
+
*/
|
|
478
|
+
exportTasks: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
479
|
+
// verify required parameter 'project' is not null or undefined
|
|
480
|
+
assertParamExists('exportTasks', 'project', project);
|
|
481
|
+
const localVarPath = `/v1/projects/{project}/tasks/export`
|
|
482
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)));
|
|
483
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
484
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
485
|
+
let baseOptions;
|
|
486
|
+
if (configuration) {
|
|
487
|
+
baseOptions = configuration.baseOptions;
|
|
488
|
+
}
|
|
489
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
490
|
+
const localVarHeaderParameter = {};
|
|
491
|
+
const localVarQueryParameter = {};
|
|
492
|
+
// authentication session-oauth required
|
|
493
|
+
// oauth required
|
|
494
|
+
yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
495
|
+
// authentication api-key required
|
|
496
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
497
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
498
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
499
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
500
|
+
return {
|
|
501
|
+
url: toPathString(localVarUrlObj),
|
|
502
|
+
options: localVarRequestOptions,
|
|
503
|
+
};
|
|
504
|
+
}),
|
|
471
505
|
/**
|
|
472
506
|
* Lists the auth tokens for the project
|
|
473
507
|
* @summary List auth tokens
|
|
@@ -963,6 +997,40 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
963
997
|
options: localVarRequestOptions,
|
|
964
998
|
};
|
|
965
999
|
}),
|
|
1000
|
+
/**
|
|
1001
|
+
* List the bookmark tabs in the project
|
|
1002
|
+
* @summary List bookmark tabs
|
|
1003
|
+
* @param {string} project Projects unique identifier
|
|
1004
|
+
* @param {*} [options] Override http request option.
|
|
1005
|
+
* @throws {RequiredError}
|
|
1006
|
+
*/
|
|
1007
|
+
listBookmarktabs: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
1008
|
+
// verify required parameter 'project' is not null or undefined
|
|
1009
|
+
assertParamExists('listBookmarktabs', 'project', project);
|
|
1010
|
+
const localVarPath = `/v1/projects/{project}/bookmarktabs`
|
|
1011
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)));
|
|
1012
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1013
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1014
|
+
let baseOptions;
|
|
1015
|
+
if (configuration) {
|
|
1016
|
+
baseOptions = configuration.baseOptions;
|
|
1017
|
+
}
|
|
1018
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1019
|
+
const localVarHeaderParameter = {};
|
|
1020
|
+
const localVarQueryParameter = {};
|
|
1021
|
+
// authentication session-oauth required
|
|
1022
|
+
// oauth required
|
|
1023
|
+
yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
1024
|
+
// authentication api-key required
|
|
1025
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
1026
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1027
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1028
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1029
|
+
return {
|
|
1030
|
+
url: toPathString(localVarUrlObj),
|
|
1031
|
+
options: localVarRequestOptions,
|
|
1032
|
+
};
|
|
1033
|
+
}),
|
|
966
1034
|
/**
|
|
967
1035
|
* List the tasks in the workflow
|
|
968
1036
|
* @summary List Tasks
|
|
@@ -1121,6 +1189,45 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
1121
1189
|
options: localVarRequestOptions,
|
|
1122
1190
|
};
|
|
1123
1191
|
}),
|
|
1192
|
+
/**
|
|
1193
|
+
* Update bookmark tabs
|
|
1194
|
+
* @summary Update bookmark tabs
|
|
1195
|
+
* @param {string} project Projects unique identifier
|
|
1196
|
+
* @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
|
|
1197
|
+
* @param {*} [options] Override http request option.
|
|
1198
|
+
* @throws {RequiredError}
|
|
1199
|
+
*/
|
|
1200
|
+
updateBookmarkTabs: (project_1, updateBookmarkTabsRequest_1, ...args_1) => __awaiter(this, [project_1, updateBookmarkTabsRequest_1, ...args_1], void 0, function* (project, updateBookmarkTabsRequest, options = {}) {
|
|
1201
|
+
// verify required parameter 'project' is not null or undefined
|
|
1202
|
+
assertParamExists('updateBookmarkTabs', 'project', project);
|
|
1203
|
+
// verify required parameter 'updateBookmarkTabsRequest' is not null or undefined
|
|
1204
|
+
assertParamExists('updateBookmarkTabs', 'updateBookmarkTabsRequest', updateBookmarkTabsRequest);
|
|
1205
|
+
const localVarPath = `/v1/projects/{project}/bookmarktabs`
|
|
1206
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)));
|
|
1207
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1208
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1209
|
+
let baseOptions;
|
|
1210
|
+
if (configuration) {
|
|
1211
|
+
baseOptions = configuration.baseOptions;
|
|
1212
|
+
}
|
|
1213
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1214
|
+
const localVarHeaderParameter = {};
|
|
1215
|
+
const localVarQueryParameter = {};
|
|
1216
|
+
// authentication session-oauth required
|
|
1217
|
+
// oauth required
|
|
1218
|
+
yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
1219
|
+
// authentication api-key required
|
|
1220
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
1221
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1222
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1223
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1224
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1225
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateBookmarkTabsRequest, localVarRequestOptions, configuration);
|
|
1226
|
+
return {
|
|
1227
|
+
url: toPathString(localVarUrlObj),
|
|
1228
|
+
options: localVarRequestOptions,
|
|
1229
|
+
};
|
|
1230
|
+
}),
|
|
1124
1231
|
/**
|
|
1125
1232
|
* Update an integration on the project
|
|
1126
1233
|
* @summary Update integration
|
|
@@ -1437,6 +1544,22 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
1437
1544
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1438
1545
|
});
|
|
1439
1546
|
},
|
|
1547
|
+
/**
|
|
1548
|
+
* Export all the tasks in the workflow
|
|
1549
|
+
* @summary Export all tasks
|
|
1550
|
+
* @param {string} project Projects unique identifier
|
|
1551
|
+
* @param {*} [options] Override http request option.
|
|
1552
|
+
* @throws {RequiredError}
|
|
1553
|
+
*/
|
|
1554
|
+
exportTasks(project, options) {
|
|
1555
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1556
|
+
var _a, _b, _c;
|
|
1557
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.exportTasks(project, options);
|
|
1558
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1559
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.exportTasks']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1560
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1561
|
+
});
|
|
1562
|
+
},
|
|
1440
1563
|
/**
|
|
1441
1564
|
* Lists the auth tokens for the project
|
|
1442
1565
|
* @summary List auth tokens
|
|
@@ -1658,6 +1781,22 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
1658
1781
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1659
1782
|
});
|
|
1660
1783
|
},
|
|
1784
|
+
/**
|
|
1785
|
+
* List the bookmark tabs in the project
|
|
1786
|
+
* @summary List bookmark tabs
|
|
1787
|
+
* @param {string} project Projects unique identifier
|
|
1788
|
+
* @param {*} [options] Override http request option.
|
|
1789
|
+
* @throws {RequiredError}
|
|
1790
|
+
*/
|
|
1791
|
+
listBookmarktabs(project, options) {
|
|
1792
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1793
|
+
var _a, _b, _c;
|
|
1794
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listBookmarktabs(project, options);
|
|
1795
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1796
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.listBookmarktabs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1797
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1798
|
+
});
|
|
1799
|
+
},
|
|
1661
1800
|
/**
|
|
1662
1801
|
* List the tasks in the workflow
|
|
1663
1802
|
* @summary List Tasks
|
|
@@ -1727,6 +1866,23 @@ export const ProjectsApiFp = function (configuration) {
|
|
|
1727
1866
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1728
1867
|
});
|
|
1729
1868
|
},
|
|
1869
|
+
/**
|
|
1870
|
+
* Update bookmark tabs
|
|
1871
|
+
* @summary Update bookmark tabs
|
|
1872
|
+
* @param {string} project Projects unique identifier
|
|
1873
|
+
* @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
|
|
1874
|
+
* @param {*} [options] Override http request option.
|
|
1875
|
+
* @throws {RequiredError}
|
|
1876
|
+
*/
|
|
1877
|
+
updateBookmarkTabs(project, updateBookmarkTabsRequest, options) {
|
|
1878
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1879
|
+
var _a, _b, _c;
|
|
1880
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateBookmarkTabs(project, updateBookmarkTabsRequest, options);
|
|
1881
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1882
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.updateBookmarkTabs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1883
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1884
|
+
});
|
|
1885
|
+
},
|
|
1730
1886
|
/**
|
|
1731
1887
|
* Update an integration on the project
|
|
1732
1888
|
* @summary Update integration
|
|
@@ -1899,6 +2055,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
1899
2055
|
deleteUser(requestParameters, options) {
|
|
1900
2056
|
return localVarFp.deleteUser(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
|
|
1901
2057
|
},
|
|
2058
|
+
/**
|
|
2059
|
+
* Export all the tasks in the workflow
|
|
2060
|
+
* @summary Export all tasks
|
|
2061
|
+
* @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
|
|
2062
|
+
* @param {*} [options] Override http request option.
|
|
2063
|
+
* @throws {RequiredError}
|
|
2064
|
+
*/
|
|
2065
|
+
exportTasks(requestParameters, options) {
|
|
2066
|
+
return localVarFp.exportTasks(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
2067
|
+
},
|
|
1902
2068
|
/**
|
|
1903
2069
|
* Lists the auth tokens for the project
|
|
1904
2070
|
* @summary List auth tokens
|
|
@@ -2029,6 +2195,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
2029
2195
|
listBookmarks(requestParameters, options) {
|
|
2030
2196
|
return localVarFp.listBookmarks(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
2031
2197
|
},
|
|
2198
|
+
/**
|
|
2199
|
+
* List the bookmark tabs in the project
|
|
2200
|
+
* @summary List bookmark tabs
|
|
2201
|
+
* @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
|
|
2202
|
+
* @param {*} [options] Override http request option.
|
|
2203
|
+
* @throws {RequiredError}
|
|
2204
|
+
*/
|
|
2205
|
+
listBookmarktabs(requestParameters, options) {
|
|
2206
|
+
return localVarFp.listBookmarktabs(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
2207
|
+
},
|
|
2032
2208
|
/**
|
|
2033
2209
|
* List the tasks in the workflow
|
|
2034
2210
|
* @summary List Tasks
|
|
@@ -2069,6 +2245,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
2069
2245
|
updateBookmark(requestParameters, options) {
|
|
2070
2246
|
return localVarFp.updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(axios, basePath));
|
|
2071
2247
|
},
|
|
2248
|
+
/**
|
|
2249
|
+
* Update bookmark tabs
|
|
2250
|
+
* @summary Update bookmark tabs
|
|
2251
|
+
* @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
|
|
2252
|
+
* @param {*} [options] Override http request option.
|
|
2253
|
+
* @throws {RequiredError}
|
|
2254
|
+
*/
|
|
2255
|
+
updateBookmarkTabs(requestParameters, options) {
|
|
2256
|
+
return localVarFp.updateBookmarkTabs(requestParameters.project, requestParameters.updateBookmarkTabsRequest, options).then((request) => request(axios, basePath));
|
|
2257
|
+
},
|
|
2072
2258
|
/**
|
|
2073
2259
|
* Update an integration on the project
|
|
2074
2260
|
* @summary Update integration
|
|
@@ -2229,6 +2415,17 @@ export class ProjectsApi extends BaseAPI {
|
|
|
2229
2415
|
deleteUser(requestParameters, options) {
|
|
2230
2416
|
return ProjectsApiFp(this.configuration).deleteUser(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
|
|
2231
2417
|
}
|
|
2418
|
+
/**
|
|
2419
|
+
* Export all the tasks in the workflow
|
|
2420
|
+
* @summary Export all tasks
|
|
2421
|
+
* @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
|
|
2422
|
+
* @param {*} [options] Override http request option.
|
|
2423
|
+
* @throws {RequiredError}
|
|
2424
|
+
* @memberof ProjectsApi
|
|
2425
|
+
*/
|
|
2426
|
+
exportTasks(requestParameters, options) {
|
|
2427
|
+
return ProjectsApiFp(this.configuration).exportTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
2428
|
+
}
|
|
2232
2429
|
/**
|
|
2233
2430
|
* Lists the auth tokens for the project
|
|
2234
2431
|
* @summary List auth tokens
|
|
@@ -2372,6 +2569,17 @@ export class ProjectsApi extends BaseAPI {
|
|
|
2372
2569
|
listBookmarks(requestParameters, options) {
|
|
2373
2570
|
return ProjectsApiFp(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
2374
2571
|
}
|
|
2572
|
+
/**
|
|
2573
|
+
* List the bookmark tabs in the project
|
|
2574
|
+
* @summary List bookmark tabs
|
|
2575
|
+
* @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
|
|
2576
|
+
* @param {*} [options] Override http request option.
|
|
2577
|
+
* @throws {RequiredError}
|
|
2578
|
+
* @memberof ProjectsApi
|
|
2579
|
+
*/
|
|
2580
|
+
listBookmarktabs(requestParameters, options) {
|
|
2581
|
+
return ProjectsApiFp(this.configuration).listBookmarktabs(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
2582
|
+
}
|
|
2375
2583
|
/**
|
|
2376
2584
|
* List the tasks in the workflow
|
|
2377
2585
|
* @summary List Tasks
|
|
@@ -2416,6 +2624,17 @@ export class ProjectsApi extends BaseAPI {
|
|
|
2416
2624
|
updateBookmark(requestParameters, options) {
|
|
2417
2625
|
return ProjectsApiFp(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2418
2626
|
}
|
|
2627
|
+
/**
|
|
2628
|
+
* Update bookmark tabs
|
|
2629
|
+
* @summary Update bookmark tabs
|
|
2630
|
+
* @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
|
|
2631
|
+
* @param {*} [options] Override http request option.
|
|
2632
|
+
* @throws {RequiredError}
|
|
2633
|
+
* @memberof ProjectsApi
|
|
2634
|
+
*/
|
|
2635
|
+
updateBookmarkTabs(requestParameters, options) {
|
|
2636
|
+
return ProjectsApiFp(this.configuration).updateBookmarkTabs(requestParameters.project, requestParameters.updateBookmarkTabsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2637
|
+
}
|
|
2419
2638
|
/**
|
|
2420
2639
|
* Update an integration on the project
|
|
2421
2640
|
* @summary Update integration
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage PodOS Projects
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.36.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
|
|
|
62
62
|
*
|
|
63
63
|
* @export
|
|
64
64
|
*/
|
|
65
|
-
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T
|
|
65
|
+
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Projects API
|
|
5
5
|
* Manage PodOS Projects
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.36.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -20,7 +20,7 @@ export class Configuration {
|
|
|
20
20
|
this.accessToken = param.accessToken;
|
|
21
21
|
this.basePath = param.basePath;
|
|
22
22
|
this.serverIndex = param.serverIndex;
|
|
23
|
-
this.baseOptions = Object.assign({ headers: Object.assign(
|
|
23
|
+
this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
|
|
24
24
|
this.formDataCtor = param.formDataCtor;
|
|
25
25
|
}
|
|
26
26
|
/**
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED