@teemill/projects 1.25.0 → 1.26.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 +546 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +353 -1
- package/dist/api.js +307 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +353 -1
- package/dist/esm/api.js +307 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- 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/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage PodOS Projects
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.26.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -97,6 +97,45 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
options: localVarRequestOptions,
|
|
98
98
|
};
|
|
99
99
|
}),
|
|
100
|
+
/**
|
|
101
|
+
* Create a bookmark in the project
|
|
102
|
+
* @summary Create bookmark
|
|
103
|
+
* @param {string} project Projects unique identifier
|
|
104
|
+
* @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
|
|
105
|
+
* @param {*} [options] Override http request option.
|
|
106
|
+
* @throws {RequiredError}
|
|
107
|
+
*/
|
|
108
|
+
createBookmark: (project_1, createBookmarkRequest_1, ...args_1) => __awaiter(this, [project_1, createBookmarkRequest_1, ...args_1], void 0, function* (project, createBookmarkRequest, options = {}) {
|
|
109
|
+
// verify required parameter 'project' is not null or undefined
|
|
110
|
+
(0, common_1.assertParamExists)('createBookmark', 'project', project);
|
|
111
|
+
// verify required parameter 'createBookmarkRequest' is not null or undefined
|
|
112
|
+
(0, common_1.assertParamExists)('createBookmark', 'createBookmarkRequest', createBookmarkRequest);
|
|
113
|
+
const localVarPath = `/v1/projects/{project}/bookmarks`
|
|
114
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)));
|
|
115
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
116
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
117
|
+
let baseOptions;
|
|
118
|
+
if (configuration) {
|
|
119
|
+
baseOptions = configuration.baseOptions;
|
|
120
|
+
}
|
|
121
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
122
|
+
const localVarHeaderParameter = {};
|
|
123
|
+
const localVarQueryParameter = {};
|
|
124
|
+
// authentication session-oauth required
|
|
125
|
+
// oauth required
|
|
126
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
127
|
+
// authentication api-key required
|
|
128
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
129
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
130
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
131
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
132
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
133
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createBookmarkRequest, localVarRequestOptions, configuration);
|
|
134
|
+
return {
|
|
135
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
136
|
+
options: localVarRequestOptions,
|
|
137
|
+
};
|
|
138
|
+
}),
|
|
100
139
|
/**
|
|
101
140
|
* Creates an invite for the project
|
|
102
141
|
* @summary Creates an invite
|
|
@@ -246,6 +285,44 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
246
285
|
options: localVarRequestOptions,
|
|
247
286
|
};
|
|
248
287
|
}),
|
|
288
|
+
/**
|
|
289
|
+
* Delete a bookmark in the project
|
|
290
|
+
* @summary Delete bookmark
|
|
291
|
+
* @param {string} project Projects unique identifier
|
|
292
|
+
* @param {string} id The unique id of the bookmark
|
|
293
|
+
* @param {*} [options] Override http request option.
|
|
294
|
+
* @throws {RequiredError}
|
|
295
|
+
*/
|
|
296
|
+
deleteBookmark: (project_1, id_1, ...args_1) => __awaiter(this, [project_1, id_1, ...args_1], void 0, function* (project, id, options = {}) {
|
|
297
|
+
// verify required parameter 'project' is not null or undefined
|
|
298
|
+
(0, common_1.assertParamExists)('deleteBookmark', 'project', project);
|
|
299
|
+
// verify required parameter 'id' is not null or undefined
|
|
300
|
+
(0, common_1.assertParamExists)('deleteBookmark', 'id', id);
|
|
301
|
+
const localVarPath = `/v1/projects/{project}/bookmarks/{id}`
|
|
302
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)))
|
|
303
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
304
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
305
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
306
|
+
let baseOptions;
|
|
307
|
+
if (configuration) {
|
|
308
|
+
baseOptions = configuration.baseOptions;
|
|
309
|
+
}
|
|
310
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
311
|
+
const localVarHeaderParameter = {};
|
|
312
|
+
const localVarQueryParameter = {};
|
|
313
|
+
// authentication session-oauth required
|
|
314
|
+
// oauth required
|
|
315
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
316
|
+
// authentication api-key required
|
|
317
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
318
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
319
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
320
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
321
|
+
return {
|
|
322
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
323
|
+
options: localVarRequestOptions,
|
|
324
|
+
};
|
|
325
|
+
}),
|
|
249
326
|
/**
|
|
250
327
|
* Deletes an invite to the project
|
|
251
328
|
* @summary Deletes an invite
|
|
@@ -817,6 +894,40 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
817
894
|
options: localVarRequestOptions,
|
|
818
895
|
};
|
|
819
896
|
}),
|
|
897
|
+
/**
|
|
898
|
+
* List the bookmarks in the project
|
|
899
|
+
* @summary List bookmarks
|
|
900
|
+
* @param {string} project Projects unique identifier
|
|
901
|
+
* @param {*} [options] Override http request option.
|
|
902
|
+
* @throws {RequiredError}
|
|
903
|
+
*/
|
|
904
|
+
listBookmarks: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
905
|
+
// verify required parameter 'project' is not null or undefined
|
|
906
|
+
(0, common_1.assertParamExists)('listBookmarks', 'project', project);
|
|
907
|
+
const localVarPath = `/v1/projects/{project}/bookmarks`
|
|
908
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)));
|
|
909
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
910
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
911
|
+
let baseOptions;
|
|
912
|
+
if (configuration) {
|
|
913
|
+
baseOptions = configuration.baseOptions;
|
|
914
|
+
}
|
|
915
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
916
|
+
const localVarHeaderParameter = {};
|
|
917
|
+
const localVarQueryParameter = {};
|
|
918
|
+
// authentication session-oauth required
|
|
919
|
+
// oauth required
|
|
920
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
921
|
+
// authentication api-key required
|
|
922
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
923
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
924
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
925
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
926
|
+
return {
|
|
927
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
928
|
+
options: localVarRequestOptions,
|
|
929
|
+
};
|
|
930
|
+
}),
|
|
820
931
|
/**
|
|
821
932
|
* List the tasks in the workflow
|
|
822
933
|
* @summary List Tasks
|
|
@@ -932,6 +1043,49 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
|
|
|
932
1043
|
options: localVarRequestOptions,
|
|
933
1044
|
};
|
|
934
1045
|
}),
|
|
1046
|
+
/**
|
|
1047
|
+
* Update a bookmark in the project
|
|
1048
|
+
* @summary Update bookmark
|
|
1049
|
+
* @param {string} project Projects unique identifier
|
|
1050
|
+
* @param {string} id The unique id of the bookmark
|
|
1051
|
+
* @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
|
|
1052
|
+
* @param {*} [options] Override http request option.
|
|
1053
|
+
* @throws {RequiredError}
|
|
1054
|
+
*/
|
|
1055
|
+
updateBookmark: (project_1, id_1, updateBookmarkRequest_1, ...args_1) => __awaiter(this, [project_1, id_1, updateBookmarkRequest_1, ...args_1], void 0, function* (project, id, updateBookmarkRequest, options = {}) {
|
|
1056
|
+
// verify required parameter 'project' is not null or undefined
|
|
1057
|
+
(0, common_1.assertParamExists)('updateBookmark', 'project', project);
|
|
1058
|
+
// verify required parameter 'id' is not null or undefined
|
|
1059
|
+
(0, common_1.assertParamExists)('updateBookmark', 'id', id);
|
|
1060
|
+
// verify required parameter 'updateBookmarkRequest' is not null or undefined
|
|
1061
|
+
(0, common_1.assertParamExists)('updateBookmark', 'updateBookmarkRequest', updateBookmarkRequest);
|
|
1062
|
+
const localVarPath = `/v1/projects/{project}/bookmarks/{id}`
|
|
1063
|
+
.replace(`{${"project"}}`, encodeURIComponent(String(project)))
|
|
1064
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
1065
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1066
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1067
|
+
let baseOptions;
|
|
1068
|
+
if (configuration) {
|
|
1069
|
+
baseOptions = configuration.baseOptions;
|
|
1070
|
+
}
|
|
1071
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
1072
|
+
const localVarHeaderParameter = {};
|
|
1073
|
+
const localVarQueryParameter = {};
|
|
1074
|
+
// authentication session-oauth required
|
|
1075
|
+
// oauth required
|
|
1076
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
1077
|
+
// authentication api-key required
|
|
1078
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
1079
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1080
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1081
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1082
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1083
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateBookmarkRequest, localVarRequestOptions, configuration);
|
|
1084
|
+
return {
|
|
1085
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1086
|
+
options: localVarRequestOptions,
|
|
1087
|
+
};
|
|
1088
|
+
}),
|
|
935
1089
|
/**
|
|
936
1090
|
* Update an integration on the project
|
|
937
1091
|
* @summary Update integration
|
|
@@ -1081,6 +1235,23 @@ const ProjectsApiFp = function (configuration) {
|
|
|
1081
1235
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1082
1236
|
});
|
|
1083
1237
|
},
|
|
1238
|
+
/**
|
|
1239
|
+
* Create a bookmark in the project
|
|
1240
|
+
* @summary Create bookmark
|
|
1241
|
+
* @param {string} project Projects unique identifier
|
|
1242
|
+
* @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
|
|
1243
|
+
* @param {*} [options] Override http request option.
|
|
1244
|
+
* @throws {RequiredError}
|
|
1245
|
+
*/
|
|
1246
|
+
createBookmark(project, createBookmarkRequest, options) {
|
|
1247
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1248
|
+
var _a, _b, _c;
|
|
1249
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createBookmark(project, createBookmarkRequest, options);
|
|
1250
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1251
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.createBookmark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1252
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1253
|
+
});
|
|
1254
|
+
},
|
|
1084
1255
|
/**
|
|
1085
1256
|
* Creates an invite for the project
|
|
1086
1257
|
* @summary Creates an invite
|
|
@@ -1148,6 +1319,23 @@ const ProjectsApiFp = function (configuration) {
|
|
|
1148
1319
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1149
1320
|
});
|
|
1150
1321
|
},
|
|
1322
|
+
/**
|
|
1323
|
+
* Delete a bookmark in the project
|
|
1324
|
+
* @summary Delete bookmark
|
|
1325
|
+
* @param {string} project Projects unique identifier
|
|
1326
|
+
* @param {string} id The unique id of the bookmark
|
|
1327
|
+
* @param {*} [options] Override http request option.
|
|
1328
|
+
* @throws {RequiredError}
|
|
1329
|
+
*/
|
|
1330
|
+
deleteBookmark(project, id, options) {
|
|
1331
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1332
|
+
var _a, _b, _c;
|
|
1333
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteBookmark(project, id, options);
|
|
1334
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1335
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.deleteBookmark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1336
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1337
|
+
});
|
|
1338
|
+
},
|
|
1151
1339
|
/**
|
|
1152
1340
|
* Deletes an invite to the project
|
|
1153
1341
|
* @summary Deletes an invite
|
|
@@ -1403,6 +1591,22 @@ const ProjectsApiFp = function (configuration) {
|
|
|
1403
1591
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1404
1592
|
});
|
|
1405
1593
|
},
|
|
1594
|
+
/**
|
|
1595
|
+
* List the bookmarks in the project
|
|
1596
|
+
* @summary List bookmarks
|
|
1597
|
+
* @param {string} project Projects unique identifier
|
|
1598
|
+
* @param {*} [options] Override http request option.
|
|
1599
|
+
* @throws {RequiredError}
|
|
1600
|
+
*/
|
|
1601
|
+
listBookmarks(project, options) {
|
|
1602
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1603
|
+
var _a, _b, _c;
|
|
1604
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listBookmarks(project, options);
|
|
1605
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1606
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.listBookmarks']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1607
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1608
|
+
});
|
|
1609
|
+
},
|
|
1406
1610
|
/**
|
|
1407
1611
|
* List the tasks in the workflow
|
|
1408
1612
|
* @summary List Tasks
|
|
@@ -1454,6 +1658,24 @@ const ProjectsApiFp = function (configuration) {
|
|
|
1454
1658
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1455
1659
|
});
|
|
1456
1660
|
},
|
|
1661
|
+
/**
|
|
1662
|
+
* Update a bookmark in the project
|
|
1663
|
+
* @summary Update bookmark
|
|
1664
|
+
* @param {string} project Projects unique identifier
|
|
1665
|
+
* @param {string} id The unique id of the bookmark
|
|
1666
|
+
* @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
|
|
1667
|
+
* @param {*} [options] Override http request option.
|
|
1668
|
+
* @throws {RequiredError}
|
|
1669
|
+
*/
|
|
1670
|
+
updateBookmark(project, id, updateBookmarkRequest, options) {
|
|
1671
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1672
|
+
var _a, _b, _c;
|
|
1673
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateBookmark(project, id, updateBookmarkRequest, options);
|
|
1674
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1675
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.updateBookmark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1676
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1677
|
+
});
|
|
1678
|
+
},
|
|
1457
1679
|
/**
|
|
1458
1680
|
* Update an integration on the project
|
|
1459
1681
|
* @summary Update integration
|
|
@@ -1527,6 +1749,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
1527
1749
|
createAuth(requestParameters, options) {
|
|
1528
1750
|
return localVarFp.createAuth(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
1529
1751
|
},
|
|
1752
|
+
/**
|
|
1753
|
+
* Create a bookmark in the project
|
|
1754
|
+
* @summary Create bookmark
|
|
1755
|
+
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
1756
|
+
* @param {*} [options] Override http request option.
|
|
1757
|
+
* @throws {RequiredError}
|
|
1758
|
+
*/
|
|
1759
|
+
createBookmark(requestParameters, options) {
|
|
1760
|
+
return localVarFp.createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(axios, basePath));
|
|
1761
|
+
},
|
|
1530
1762
|
/**
|
|
1531
1763
|
* Creates an invite for the project
|
|
1532
1764
|
* @summary Creates an invite
|
|
@@ -1567,6 +1799,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
1567
1799
|
deleteAuth(requestParameters, options) {
|
|
1568
1800
|
return localVarFp.deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(axios, basePath));
|
|
1569
1801
|
},
|
|
1802
|
+
/**
|
|
1803
|
+
* Delete a bookmark in the project
|
|
1804
|
+
* @summary Delete bookmark
|
|
1805
|
+
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
1806
|
+
* @param {*} [options] Override http request option.
|
|
1807
|
+
* @throws {RequiredError}
|
|
1808
|
+
*/
|
|
1809
|
+
deleteBookmark(requestParameters, options) {
|
|
1810
|
+
return localVarFp.deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1811
|
+
},
|
|
1570
1812
|
/**
|
|
1571
1813
|
* Deletes an invite to the project
|
|
1572
1814
|
* @summary Deletes an invite
|
|
@@ -1717,6 +1959,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
1717
1959
|
installTemplate(requestParameters, options) {
|
|
1718
1960
|
return localVarFp.installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(axios, basePath));
|
|
1719
1961
|
},
|
|
1962
|
+
/**
|
|
1963
|
+
* List the bookmarks in the project
|
|
1964
|
+
* @summary List bookmarks
|
|
1965
|
+
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
1966
|
+
* @param {*} [options] Override http request option.
|
|
1967
|
+
* @throws {RequiredError}
|
|
1968
|
+
*/
|
|
1969
|
+
listBookmarks(requestParameters, options) {
|
|
1970
|
+
return localVarFp.listBookmarks(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
1971
|
+
},
|
|
1720
1972
|
/**
|
|
1721
1973
|
* List the tasks in the workflow
|
|
1722
1974
|
* @summary List Tasks
|
|
@@ -1747,6 +1999,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
|
|
|
1747
1999
|
uninstallIntegration(requestParameters, options) {
|
|
1748
2000
|
return localVarFp.uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(axios, basePath));
|
|
1749
2001
|
},
|
|
2002
|
+
/**
|
|
2003
|
+
* Update a bookmark in the project
|
|
2004
|
+
* @summary Update bookmark
|
|
2005
|
+
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
2006
|
+
* @param {*} [options] Override http request option.
|
|
2007
|
+
* @throws {RequiredError}
|
|
2008
|
+
*/
|
|
2009
|
+
updateBookmark(requestParameters, options) {
|
|
2010
|
+
return localVarFp.updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(axios, basePath));
|
|
2011
|
+
},
|
|
1750
2012
|
/**
|
|
1751
2013
|
* Update an integration on the project
|
|
1752
2014
|
* @summary Update integration
|
|
@@ -1798,6 +2060,17 @@ class ProjectsApi extends base_1.BaseAPI {
|
|
|
1798
2060
|
createAuth(requestParameters, options) {
|
|
1799
2061
|
return (0, exports.ProjectsApiFp)(this.configuration).createAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
1800
2062
|
}
|
|
2063
|
+
/**
|
|
2064
|
+
* Create a bookmark in the project
|
|
2065
|
+
* @summary Create bookmark
|
|
2066
|
+
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
2067
|
+
* @param {*} [options] Override http request option.
|
|
2068
|
+
* @throws {RequiredError}
|
|
2069
|
+
* @memberof ProjectsApi
|
|
2070
|
+
*/
|
|
2071
|
+
createBookmark(requestParameters, options) {
|
|
2072
|
+
return (0, exports.ProjectsApiFp)(this.configuration).createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2073
|
+
}
|
|
1801
2074
|
/**
|
|
1802
2075
|
* Creates an invite for the project
|
|
1803
2076
|
* @summary Creates an invite
|
|
@@ -1842,6 +2115,17 @@ class ProjectsApi extends base_1.BaseAPI {
|
|
|
1842
2115
|
deleteAuth(requestParameters, options) {
|
|
1843
2116
|
return (0, exports.ProjectsApiFp)(this.configuration).deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(this.axios, this.basePath));
|
|
1844
2117
|
}
|
|
2118
|
+
/**
|
|
2119
|
+
* Delete a bookmark in the project
|
|
2120
|
+
* @summary Delete bookmark
|
|
2121
|
+
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
2122
|
+
* @param {*} [options] Override http request option.
|
|
2123
|
+
* @throws {RequiredError}
|
|
2124
|
+
* @memberof ProjectsApi
|
|
2125
|
+
*/
|
|
2126
|
+
deleteBookmark(requestParameters, options) {
|
|
2127
|
+
return (0, exports.ProjectsApiFp)(this.configuration).deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2128
|
+
}
|
|
1845
2129
|
/**
|
|
1846
2130
|
* Deletes an invite to the project
|
|
1847
2131
|
* @summary Deletes an invite
|
|
@@ -2007,6 +2291,17 @@ class ProjectsApi extends base_1.BaseAPI {
|
|
|
2007
2291
|
installTemplate(requestParameters, options) {
|
|
2008
2292
|
return (0, exports.ProjectsApiFp)(this.configuration).installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2009
2293
|
}
|
|
2294
|
+
/**
|
|
2295
|
+
* List the bookmarks in the project
|
|
2296
|
+
* @summary List bookmarks
|
|
2297
|
+
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
2298
|
+
* @param {*} [options] Override http request option.
|
|
2299
|
+
* @throws {RequiredError}
|
|
2300
|
+
* @memberof ProjectsApi
|
|
2301
|
+
*/
|
|
2302
|
+
listBookmarks(requestParameters, options) {
|
|
2303
|
+
return (0, exports.ProjectsApiFp)(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
2304
|
+
}
|
|
2010
2305
|
/**
|
|
2011
2306
|
* List the tasks in the workflow
|
|
2012
2307
|
* @summary List Tasks
|
|
@@ -2040,6 +2335,17 @@ class ProjectsApi extends base_1.BaseAPI {
|
|
|
2040
2335
|
uninstallIntegration(requestParameters, options) {
|
|
2041
2336
|
return (0, exports.ProjectsApiFp)(this.configuration).uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
|
|
2042
2337
|
}
|
|
2338
|
+
/**
|
|
2339
|
+
* Update a bookmark in the project
|
|
2340
|
+
* @summary Update bookmark
|
|
2341
|
+
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
2342
|
+
* @param {*} [options] Override http request option.
|
|
2343
|
+
* @throws {RequiredError}
|
|
2344
|
+
* @memberof ProjectsApi
|
|
2345
|
+
*/
|
|
2346
|
+
updateBookmark(requestParameters, options) {
|
|
2347
|
+
return (0, exports.ProjectsApiFp)(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2348
|
+
}
|
|
2043
2349
|
/**
|
|
2044
2350
|
* Update an integration on the project
|
|
2045
2351
|
* @summary Update integration
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED