@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/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.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -94,6 +94,45 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
94
94
  options: localVarRequestOptions,
95
95
  };
96
96
  }),
97
+ /**
98
+ * Create a bookmark in the project
99
+ * @summary Create bookmark
100
+ * @param {string} project Projects unique identifier
101
+ * @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
102
+ * @param {*} [options] Override http request option.
103
+ * @throws {RequiredError}
104
+ */
105
+ createBookmark: (project_1, createBookmarkRequest_1, ...args_1) => __awaiter(this, [project_1, createBookmarkRequest_1, ...args_1], void 0, function* (project, createBookmarkRequest, options = {}) {
106
+ // verify required parameter 'project' is not null or undefined
107
+ assertParamExists('createBookmark', 'project', project);
108
+ // verify required parameter 'createBookmarkRequest' is not null or undefined
109
+ assertParamExists('createBookmark', 'createBookmarkRequest', createBookmarkRequest);
110
+ const localVarPath = `/v1/projects/{project}/bookmarks`
111
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
112
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
113
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
114
+ let baseOptions;
115
+ if (configuration) {
116
+ baseOptions = configuration.baseOptions;
117
+ }
118
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
119
+ const localVarHeaderParameter = {};
120
+ const localVarQueryParameter = {};
121
+ // authentication session-oauth required
122
+ // oauth required
123
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
124
+ // authentication api-key required
125
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
126
+ localVarHeaderParameter['Content-Type'] = 'application/json';
127
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
128
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
129
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
130
+ localVarRequestOptions.data = serializeDataIfNeeded(createBookmarkRequest, localVarRequestOptions, configuration);
131
+ return {
132
+ url: toPathString(localVarUrlObj),
133
+ options: localVarRequestOptions,
134
+ };
135
+ }),
97
136
  /**
98
137
  * Creates an invite for the project
99
138
  * @summary Creates an invite
@@ -243,6 +282,44 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
243
282
  options: localVarRequestOptions,
244
283
  };
245
284
  }),
285
+ /**
286
+ * Delete a bookmark in the project
287
+ * @summary Delete bookmark
288
+ * @param {string} project Projects unique identifier
289
+ * @param {string} id The unique id of the bookmark
290
+ * @param {*} [options] Override http request option.
291
+ * @throws {RequiredError}
292
+ */
293
+ deleteBookmark: (project_1, id_1, ...args_1) => __awaiter(this, [project_1, id_1, ...args_1], void 0, function* (project, id, options = {}) {
294
+ // verify required parameter 'project' is not null or undefined
295
+ assertParamExists('deleteBookmark', 'project', project);
296
+ // verify required parameter 'id' is not null or undefined
297
+ assertParamExists('deleteBookmark', 'id', id);
298
+ const localVarPath = `/v1/projects/{project}/bookmarks/{id}`
299
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
300
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
301
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
302
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
303
+ let baseOptions;
304
+ if (configuration) {
305
+ baseOptions = configuration.baseOptions;
306
+ }
307
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
308
+ const localVarHeaderParameter = {};
309
+ const localVarQueryParameter = {};
310
+ // authentication session-oauth required
311
+ // oauth required
312
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
313
+ // authentication api-key required
314
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
315
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
316
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
317
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
318
+ return {
319
+ url: toPathString(localVarUrlObj),
320
+ options: localVarRequestOptions,
321
+ };
322
+ }),
246
323
  /**
247
324
  * Deletes an invite to the project
248
325
  * @summary Deletes an invite
@@ -814,6 +891,40 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
814
891
  options: localVarRequestOptions,
815
892
  };
816
893
  }),
894
+ /**
895
+ * List the bookmarks in the project
896
+ * @summary List bookmarks
897
+ * @param {string} project Projects unique identifier
898
+ * @param {*} [options] Override http request option.
899
+ * @throws {RequiredError}
900
+ */
901
+ listBookmarks: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
902
+ // verify required parameter 'project' is not null or undefined
903
+ assertParamExists('listBookmarks', 'project', project);
904
+ const localVarPath = `/v1/projects/{project}/bookmarks`
905
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
906
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
907
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
908
+ let baseOptions;
909
+ if (configuration) {
910
+ baseOptions = configuration.baseOptions;
911
+ }
912
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
913
+ const localVarHeaderParameter = {};
914
+ const localVarQueryParameter = {};
915
+ // authentication session-oauth required
916
+ // oauth required
917
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
918
+ // authentication api-key required
919
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
920
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
921
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
922
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
923
+ return {
924
+ url: toPathString(localVarUrlObj),
925
+ options: localVarRequestOptions,
926
+ };
927
+ }),
817
928
  /**
818
929
  * List the tasks in the workflow
819
930
  * @summary List Tasks
@@ -929,6 +1040,49 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
929
1040
  options: localVarRequestOptions,
930
1041
  };
931
1042
  }),
1043
+ /**
1044
+ * Update a bookmark in the project
1045
+ * @summary Update bookmark
1046
+ * @param {string} project Projects unique identifier
1047
+ * @param {string} id The unique id of the bookmark
1048
+ * @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
1049
+ * @param {*} [options] Override http request option.
1050
+ * @throws {RequiredError}
1051
+ */
1052
+ 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 = {}) {
1053
+ // verify required parameter 'project' is not null or undefined
1054
+ assertParamExists('updateBookmark', 'project', project);
1055
+ // verify required parameter 'id' is not null or undefined
1056
+ assertParamExists('updateBookmark', 'id', id);
1057
+ // verify required parameter 'updateBookmarkRequest' is not null or undefined
1058
+ assertParamExists('updateBookmark', 'updateBookmarkRequest', updateBookmarkRequest);
1059
+ const localVarPath = `/v1/projects/{project}/bookmarks/{id}`
1060
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1061
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1062
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1063
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1064
+ let baseOptions;
1065
+ if (configuration) {
1066
+ baseOptions = configuration.baseOptions;
1067
+ }
1068
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
1069
+ const localVarHeaderParameter = {};
1070
+ const localVarQueryParameter = {};
1071
+ // authentication session-oauth required
1072
+ // oauth required
1073
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
1074
+ // authentication api-key required
1075
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1076
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1077
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1078
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1079
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1080
+ localVarRequestOptions.data = serializeDataIfNeeded(updateBookmarkRequest, localVarRequestOptions, configuration);
1081
+ return {
1082
+ url: toPathString(localVarUrlObj),
1083
+ options: localVarRequestOptions,
1084
+ };
1085
+ }),
932
1086
  /**
933
1087
  * Update an integration on the project
934
1088
  * @summary Update integration
@@ -1077,6 +1231,23 @@ export const ProjectsApiFp = function (configuration) {
1077
1231
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1078
1232
  });
1079
1233
  },
1234
+ /**
1235
+ * Create a bookmark in the project
1236
+ * @summary Create bookmark
1237
+ * @param {string} project Projects unique identifier
1238
+ * @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
1239
+ * @param {*} [options] Override http request option.
1240
+ * @throws {RequiredError}
1241
+ */
1242
+ createBookmark(project, createBookmarkRequest, options) {
1243
+ return __awaiter(this, void 0, void 0, function* () {
1244
+ var _a, _b, _c;
1245
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.createBookmark(project, createBookmarkRequest, options);
1246
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1247
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.createBookmark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1248
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1249
+ });
1250
+ },
1080
1251
  /**
1081
1252
  * Creates an invite for the project
1082
1253
  * @summary Creates an invite
@@ -1144,6 +1315,23 @@ export const ProjectsApiFp = function (configuration) {
1144
1315
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1145
1316
  });
1146
1317
  },
1318
+ /**
1319
+ * Delete a bookmark in the project
1320
+ * @summary Delete bookmark
1321
+ * @param {string} project Projects unique identifier
1322
+ * @param {string} id The unique id of the bookmark
1323
+ * @param {*} [options] Override http request option.
1324
+ * @throws {RequiredError}
1325
+ */
1326
+ deleteBookmark(project, id, options) {
1327
+ return __awaiter(this, void 0, void 0, function* () {
1328
+ var _a, _b, _c;
1329
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteBookmark(project, id, options);
1330
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1331
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.deleteBookmark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1332
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1333
+ });
1334
+ },
1147
1335
  /**
1148
1336
  * Deletes an invite to the project
1149
1337
  * @summary Deletes an invite
@@ -1399,6 +1587,22 @@ export const ProjectsApiFp = function (configuration) {
1399
1587
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1400
1588
  });
1401
1589
  },
1590
+ /**
1591
+ * List the bookmarks in the project
1592
+ * @summary List bookmarks
1593
+ * @param {string} project Projects unique identifier
1594
+ * @param {*} [options] Override http request option.
1595
+ * @throws {RequiredError}
1596
+ */
1597
+ listBookmarks(project, options) {
1598
+ return __awaiter(this, void 0, void 0, function* () {
1599
+ var _a, _b, _c;
1600
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listBookmarks(project, options);
1601
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1602
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.listBookmarks']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1603
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1604
+ });
1605
+ },
1402
1606
  /**
1403
1607
  * List the tasks in the workflow
1404
1608
  * @summary List Tasks
@@ -1450,6 +1654,24 @@ export const ProjectsApiFp = function (configuration) {
1450
1654
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1451
1655
  });
1452
1656
  },
1657
+ /**
1658
+ * Update a bookmark in the project
1659
+ * @summary Update bookmark
1660
+ * @param {string} project Projects unique identifier
1661
+ * @param {string} id The unique id of the bookmark
1662
+ * @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
1663
+ * @param {*} [options] Override http request option.
1664
+ * @throws {RequiredError}
1665
+ */
1666
+ updateBookmark(project, id, updateBookmarkRequest, options) {
1667
+ return __awaiter(this, void 0, void 0, function* () {
1668
+ var _a, _b, _c;
1669
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateBookmark(project, id, updateBookmarkRequest, options);
1670
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1671
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.updateBookmark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1672
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1673
+ });
1674
+ },
1453
1675
  /**
1454
1676
  * Update an integration on the project
1455
1677
  * @summary Update integration
@@ -1522,6 +1744,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
1522
1744
  createAuth(requestParameters, options) {
1523
1745
  return localVarFp.createAuth(requestParameters.project, options).then((request) => request(axios, basePath));
1524
1746
  },
1747
+ /**
1748
+ * Create a bookmark in the project
1749
+ * @summary Create bookmark
1750
+ * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
1751
+ * @param {*} [options] Override http request option.
1752
+ * @throws {RequiredError}
1753
+ */
1754
+ createBookmark(requestParameters, options) {
1755
+ return localVarFp.createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(axios, basePath));
1756
+ },
1525
1757
  /**
1526
1758
  * Creates an invite for the project
1527
1759
  * @summary Creates an invite
@@ -1562,6 +1794,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
1562
1794
  deleteAuth(requestParameters, options) {
1563
1795
  return localVarFp.deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(axios, basePath));
1564
1796
  },
1797
+ /**
1798
+ * Delete a bookmark in the project
1799
+ * @summary Delete bookmark
1800
+ * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
1801
+ * @param {*} [options] Override http request option.
1802
+ * @throws {RequiredError}
1803
+ */
1804
+ deleteBookmark(requestParameters, options) {
1805
+ return localVarFp.deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(axios, basePath));
1806
+ },
1565
1807
  /**
1566
1808
  * Deletes an invite to the project
1567
1809
  * @summary Deletes an invite
@@ -1712,6 +1954,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
1712
1954
  installTemplate(requestParameters, options) {
1713
1955
  return localVarFp.installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(axios, basePath));
1714
1956
  },
1957
+ /**
1958
+ * List the bookmarks in the project
1959
+ * @summary List bookmarks
1960
+ * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
1961
+ * @param {*} [options] Override http request option.
1962
+ * @throws {RequiredError}
1963
+ */
1964
+ listBookmarks(requestParameters, options) {
1965
+ return localVarFp.listBookmarks(requestParameters.project, options).then((request) => request(axios, basePath));
1966
+ },
1715
1967
  /**
1716
1968
  * List the tasks in the workflow
1717
1969
  * @summary List Tasks
@@ -1742,6 +1994,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
1742
1994
  uninstallIntegration(requestParameters, options) {
1743
1995
  return localVarFp.uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(axios, basePath));
1744
1996
  },
1997
+ /**
1998
+ * Update a bookmark in the project
1999
+ * @summary Update bookmark
2000
+ * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
2001
+ * @param {*} [options] Override http request option.
2002
+ * @throws {RequiredError}
2003
+ */
2004
+ updateBookmark(requestParameters, options) {
2005
+ return localVarFp.updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(axios, basePath));
2006
+ },
1745
2007
  /**
1746
2008
  * Update an integration on the project
1747
2009
  * @summary Update integration
@@ -1792,6 +2054,17 @@ export class ProjectsApi extends BaseAPI {
1792
2054
  createAuth(requestParameters, options) {
1793
2055
  return ProjectsApiFp(this.configuration).createAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
1794
2056
  }
2057
+ /**
2058
+ * Create a bookmark in the project
2059
+ * @summary Create bookmark
2060
+ * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
2061
+ * @param {*} [options] Override http request option.
2062
+ * @throws {RequiredError}
2063
+ * @memberof ProjectsApi
2064
+ */
2065
+ createBookmark(requestParameters, options) {
2066
+ return ProjectsApiFp(this.configuration).createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
2067
+ }
1795
2068
  /**
1796
2069
  * Creates an invite for the project
1797
2070
  * @summary Creates an invite
@@ -1836,6 +2109,17 @@ export class ProjectsApi extends BaseAPI {
1836
2109
  deleteAuth(requestParameters, options) {
1837
2110
  return ProjectsApiFp(this.configuration).deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(this.axios, this.basePath));
1838
2111
  }
2112
+ /**
2113
+ * Delete a bookmark in the project
2114
+ * @summary Delete bookmark
2115
+ * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
2116
+ * @param {*} [options] Override http request option.
2117
+ * @throws {RequiredError}
2118
+ * @memberof ProjectsApi
2119
+ */
2120
+ deleteBookmark(requestParameters, options) {
2121
+ return ProjectsApiFp(this.configuration).deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2122
+ }
1839
2123
  /**
1840
2124
  * Deletes an invite to the project
1841
2125
  * @summary Deletes an invite
@@ -2001,6 +2285,17 @@ export class ProjectsApi extends BaseAPI {
2001
2285
  installTemplate(requestParameters, options) {
2002
2286
  return ProjectsApiFp(this.configuration).installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(this.axios, this.basePath));
2003
2287
  }
2288
+ /**
2289
+ * List the bookmarks in the project
2290
+ * @summary List bookmarks
2291
+ * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
2292
+ * @param {*} [options] Override http request option.
2293
+ * @throws {RequiredError}
2294
+ * @memberof ProjectsApi
2295
+ */
2296
+ listBookmarks(requestParameters, options) {
2297
+ return ProjectsApiFp(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2298
+ }
2004
2299
  /**
2005
2300
  * List the tasks in the workflow
2006
2301
  * @summary List Tasks
@@ -2034,6 +2329,17 @@ export class ProjectsApi extends BaseAPI {
2034
2329
  uninstallIntegration(requestParameters, options) {
2035
2330
  return ProjectsApiFp(this.configuration).uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
2036
2331
  }
2332
+ /**
2333
+ * Update a bookmark in the project
2334
+ * @summary Update bookmark
2335
+ * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
2336
+ * @param {*} [options] Override http request option.
2337
+ * @throws {RequiredError}
2338
+ * @memberof ProjectsApi
2339
+ */
2340
+ updateBookmark(requestParameters, options) {
2341
+ return ProjectsApiFp(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
2342
+ }
2037
2343
  /**
2038
2344
  * Update an integration on the project
2039
2345
  * @summary Update integration
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.25.0
5
+ * The version of the OpenAPI document: 1.26.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.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.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.25.0
5
+ * The version of the OpenAPI document: 1.26.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.25.0
5
+ * The version of the OpenAPI document: 1.26.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.25.0
5
+ * The version of the OpenAPI document: 1.26.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.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.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.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.25.0
5
+ * The version of the OpenAPI document: 1.26.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.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.25.0
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).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/projects",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "OpenAPI client for @teemill/projects",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {