@teemill/projects 1.35.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/dist/api.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.35.0
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).
@@ -112,6 +112,12 @@ export interface Bookmark {
112
112
  * @memberof Bookmark
113
113
  */
114
114
  'icon': NullableIcon | null;
115
+ /**
116
+ *
117
+ * @type {string}
118
+ * @memberof Bookmark
119
+ */
120
+ 'tabId': string | null;
115
121
  }
116
122
  /**
117
123
  * @type BookmarkData
@@ -160,6 +166,44 @@ export interface BookmarkRouteRoute {
160
166
  [key: string]: any;
161
167
  };
162
168
  }
169
+ /**
170
+ *
171
+ * @export
172
+ * @interface BookmarkTab
173
+ */
174
+ export interface BookmarkTab {
175
+ /**
176
+ *
177
+ * @type {string}
178
+ * @memberof BookmarkTab
179
+ */
180
+ 'id': string;
181
+ /**
182
+ *
183
+ * @type {string}
184
+ * @memberof BookmarkTab
185
+ */
186
+ 'name': string;
187
+ /**
188
+ *
189
+ * @type {number}
190
+ * @memberof BookmarkTab
191
+ */
192
+ 'sortOrder': number;
193
+ }
194
+ /**
195
+ *
196
+ * @export
197
+ * @interface BookmarkTabs
198
+ */
199
+ export interface BookmarkTabs {
200
+ /**
201
+ *
202
+ * @type {Array<BookmarkTab>}
203
+ * @memberof BookmarkTabs
204
+ */
205
+ 'tabs': Array<BookmarkTab>;
206
+ }
163
207
  /**
164
208
  *
165
209
  * @export
@@ -222,6 +266,12 @@ export interface CreateBookmarkRequest {
222
266
  * @memberof CreateBookmarkRequest
223
267
  */
224
268
  'icon'?: string;
269
+ /**
270
+ * The ID of the tab the bookmark belongs to
271
+ * @type {string}
272
+ * @memberof CreateBookmarkRequest
273
+ */
274
+ 'tabId'?: string | null;
225
275
  }
226
276
  /**
227
277
  *
@@ -972,6 +1022,50 @@ export interface UpdateBookmarkRequest {
972
1022
  * @memberof UpdateBookmarkRequest
973
1023
  */
974
1024
  'icon'?: string;
1025
+ /**
1026
+ * The ID of the tab the bookmark belongs to
1027
+ * @type {string}
1028
+ * @memberof UpdateBookmarkRequest
1029
+ */
1030
+ 'tabId'?: string | null;
1031
+ }
1032
+ /**
1033
+ *
1034
+ * @export
1035
+ * @interface UpdateBookmarkTabsRequest
1036
+ */
1037
+ export interface UpdateBookmarkTabsRequest {
1038
+ /**
1039
+ *
1040
+ * @type {Array<UpdateBookmarkTabsRequestTabsInner>}
1041
+ * @memberof UpdateBookmarkTabsRequest
1042
+ */
1043
+ 'tabs'?: Array<UpdateBookmarkTabsRequestTabsInner>;
1044
+ }
1045
+ /**
1046
+ *
1047
+ * @export
1048
+ * @interface UpdateBookmarkTabsRequestTabsInner
1049
+ */
1050
+ export interface UpdateBookmarkTabsRequestTabsInner {
1051
+ /**
1052
+ *
1053
+ * @type {string}
1054
+ * @memberof UpdateBookmarkTabsRequestTabsInner
1055
+ */
1056
+ 'id': string | null;
1057
+ /**
1058
+ *
1059
+ * @type {string}
1060
+ * @memberof UpdateBookmarkTabsRequestTabsInner
1061
+ */
1062
+ 'name': string;
1063
+ /**
1064
+ *
1065
+ * @type {number}
1066
+ * @memberof UpdateBookmarkTabsRequestTabsInner
1067
+ */
1068
+ 'sortOrder': number;
975
1069
  }
976
1070
  /**
977
1071
  *
@@ -1280,6 +1374,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1280
1374
  * @throws {RequiredError}
1281
1375
  */
1282
1376
  listBookmarks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1377
+ /**
1378
+ * List the bookmark tabs in the project
1379
+ * @summary List bookmark tabs
1380
+ * @param {string} project Projects unique identifier
1381
+ * @param {*} [options] Override http request option.
1382
+ * @throws {RequiredError}
1383
+ */
1384
+ listBookmarktabs: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1283
1385
  /**
1284
1386
  * List the tasks in the workflow
1285
1387
  * @summary List Tasks
@@ -1317,6 +1419,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1317
1419
  * @throws {RequiredError}
1318
1420
  */
1319
1421
  updateBookmark: (project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1422
+ /**
1423
+ * Update bookmark tabs
1424
+ * @summary Update bookmark tabs
1425
+ * @param {string} project Projects unique identifier
1426
+ * @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
1427
+ * @param {*} [options] Override http request option.
1428
+ * @throws {RequiredError}
1429
+ */
1430
+ updateBookmarkTabs: (project: string, updateBookmarkTabsRequest: UpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1320
1431
  /**
1321
1432
  * Update an integration on the project
1322
1433
  * @summary Update integration
@@ -1573,6 +1684,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1573
1684
  * @throws {RequiredError}
1574
1685
  */
1575
1686
  listBookmarks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmarks>>;
1687
+ /**
1688
+ * List the bookmark tabs in the project
1689
+ * @summary List bookmark tabs
1690
+ * @param {string} project Projects unique identifier
1691
+ * @param {*} [options] Override http request option.
1692
+ * @throws {RequiredError}
1693
+ */
1694
+ listBookmarktabs(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookmarkTabs>>;
1576
1695
  /**
1577
1696
  * List the tasks in the workflow
1578
1697
  * @summary List Tasks
@@ -1610,6 +1729,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1610
1729
  * @throws {RequiredError}
1611
1730
  */
1612
1731
  updateBookmark(project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
1732
+ /**
1733
+ * Update bookmark tabs
1734
+ * @summary Update bookmark tabs
1735
+ * @param {string} project Projects unique identifier
1736
+ * @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
1737
+ * @param {*} [options] Override http request option.
1738
+ * @throws {RequiredError}
1739
+ */
1740
+ updateBookmarkTabs(project: string, updateBookmarkTabsRequest: UpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookmarkTabs>>;
1613
1741
  /**
1614
1742
  * Update an integration on the project
1615
1743
  * @summary Update integration
@@ -1845,6 +1973,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1845
1973
  * @throws {RequiredError}
1846
1974
  */
1847
1975
  listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmarks>;
1976
+ /**
1977
+ * List the bookmark tabs in the project
1978
+ * @summary List bookmark tabs
1979
+ * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
1980
+ * @param {*} [options] Override http request option.
1981
+ * @throws {RequiredError}
1982
+ */
1983
+ listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookmarkTabs>;
1848
1984
  /**
1849
1985
  * List the tasks in the workflow
1850
1986
  * @summary List Tasks
@@ -1877,6 +2013,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1877
2013
  * @throws {RequiredError}
1878
2014
  */
1879
2015
  updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
2016
+ /**
2017
+ * Update bookmark tabs
2018
+ * @summary Update bookmark tabs
2019
+ * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
2020
+ * @param {*} [options] Override http request option.
2021
+ * @throws {RequiredError}
2022
+ */
2023
+ updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookmarkTabs>;
1880
2024
  /**
1881
2025
  * Update an integration on the project
1882
2026
  * @summary Update integration
@@ -2353,6 +2497,19 @@ export interface ProjectsApiListBookmarksRequest {
2353
2497
  */
2354
2498
  readonly project: string;
2355
2499
  }
2500
+ /**
2501
+ * Request parameters for listBookmarktabs operation in ProjectsApi.
2502
+ * @export
2503
+ * @interface ProjectsApiListBookmarktabsRequest
2504
+ */
2505
+ export interface ProjectsApiListBookmarktabsRequest {
2506
+ /**
2507
+ * Projects unique identifier
2508
+ * @type {string}
2509
+ * @memberof ProjectsApiListBookmarktabs
2510
+ */
2511
+ readonly project: string;
2512
+ }
2356
2513
  /**
2357
2514
  * Request parameters for listTasks operation in ProjectsApi.
2358
2515
  * @export
@@ -2435,6 +2592,25 @@ export interface ProjectsApiUpdateBookmarkRequest {
2435
2592
  */
2436
2593
  readonly updateBookmarkRequest: UpdateBookmarkRequest;
2437
2594
  }
2595
+ /**
2596
+ * Request parameters for updateBookmarkTabs operation in ProjectsApi.
2597
+ * @export
2598
+ * @interface ProjectsApiUpdateBookmarkTabsRequest
2599
+ */
2600
+ export interface ProjectsApiUpdateBookmarkTabsRequest {
2601
+ /**
2602
+ * Projects unique identifier
2603
+ * @type {string}
2604
+ * @memberof ProjectsApiUpdateBookmarkTabs
2605
+ */
2606
+ readonly project: string;
2607
+ /**
2608
+ * Update a bookmark tab in the project
2609
+ * @type {UpdateBookmarkTabsRequest}
2610
+ * @memberof ProjectsApiUpdateBookmarkTabs
2611
+ */
2612
+ readonly updateBookmarkTabsRequest: UpdateBookmarkTabsRequest;
2613
+ }
2438
2614
  /**
2439
2615
  * Request parameters for updateIntegration operation in ProjectsApi.
2440
2616
  * @export
@@ -2736,6 +2912,15 @@ export declare class ProjectsApi extends BaseAPI {
2736
2912
  * @memberof ProjectsApi
2737
2913
  */
2738
2914
  listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any>>;
2915
+ /**
2916
+ * List the bookmark tabs in the project
2917
+ * @summary List bookmark tabs
2918
+ * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
2919
+ * @param {*} [options] Override http request option.
2920
+ * @throws {RequiredError}
2921
+ * @memberof ProjectsApi
2922
+ */
2923
+ listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any>>;
2739
2924
  /**
2740
2925
  * List the tasks in the workflow
2741
2926
  * @summary List Tasks
@@ -2772,6 +2957,15 @@ export declare class ProjectsApi extends BaseAPI {
2772
2957
  * @memberof ProjectsApi
2773
2958
  */
2774
2959
  updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
2960
+ /**
2961
+ * Update bookmark tabs
2962
+ * @summary Update bookmark tabs
2963
+ * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
2964
+ * @param {*} [options] Override http request option.
2965
+ * @throws {RequiredError}
2966
+ * @memberof ProjectsApi
2967
+ */
2968
+ updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any>>;
2775
2969
  /**
2776
2970
  * Update an integration on the project
2777
2971
  * @summary Update integration
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.35.0
8
+ * The version of the OpenAPI document: 1.36.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1000,6 +1000,40 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
1000
1000
  options: localVarRequestOptions,
1001
1001
  };
1002
1002
  }),
1003
+ /**
1004
+ * List the bookmark tabs in the project
1005
+ * @summary List bookmark tabs
1006
+ * @param {string} project Projects unique identifier
1007
+ * @param {*} [options] Override http request option.
1008
+ * @throws {RequiredError}
1009
+ */
1010
+ listBookmarktabs: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
1011
+ // verify required parameter 'project' is not null or undefined
1012
+ (0, common_1.assertParamExists)('listBookmarktabs', 'project', project);
1013
+ const localVarPath = `/v1/projects/{project}/bookmarktabs`
1014
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
1015
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1016
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1017
+ let baseOptions;
1018
+ if (configuration) {
1019
+ baseOptions = configuration.baseOptions;
1020
+ }
1021
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1022
+ const localVarHeaderParameter = {};
1023
+ const localVarQueryParameter = {};
1024
+ // authentication session-oauth required
1025
+ // oauth required
1026
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
1027
+ // authentication api-key required
1028
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
1029
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1030
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1031
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1032
+ return {
1033
+ url: (0, common_1.toPathString)(localVarUrlObj),
1034
+ options: localVarRequestOptions,
1035
+ };
1036
+ }),
1003
1037
  /**
1004
1038
  * List the tasks in the workflow
1005
1039
  * @summary List Tasks
@@ -1158,6 +1192,45 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
1158
1192
  options: localVarRequestOptions,
1159
1193
  };
1160
1194
  }),
1195
+ /**
1196
+ * Update bookmark tabs
1197
+ * @summary Update bookmark tabs
1198
+ * @param {string} project Projects unique identifier
1199
+ * @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
1200
+ * @param {*} [options] Override http request option.
1201
+ * @throws {RequiredError}
1202
+ */
1203
+ updateBookmarkTabs: (project_1, updateBookmarkTabsRequest_1, ...args_1) => __awaiter(this, [project_1, updateBookmarkTabsRequest_1, ...args_1], void 0, function* (project, updateBookmarkTabsRequest, options = {}) {
1204
+ // verify required parameter 'project' is not null or undefined
1205
+ (0, common_1.assertParamExists)('updateBookmarkTabs', 'project', project);
1206
+ // verify required parameter 'updateBookmarkTabsRequest' is not null or undefined
1207
+ (0, common_1.assertParamExists)('updateBookmarkTabs', 'updateBookmarkTabsRequest', updateBookmarkTabsRequest);
1208
+ const localVarPath = `/v1/projects/{project}/bookmarktabs`
1209
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
1210
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1211
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1212
+ let baseOptions;
1213
+ if (configuration) {
1214
+ baseOptions = configuration.baseOptions;
1215
+ }
1216
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1217
+ const localVarHeaderParameter = {};
1218
+ const localVarQueryParameter = {};
1219
+ // authentication session-oauth required
1220
+ // oauth required
1221
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
1222
+ // authentication api-key required
1223
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
1224
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1225
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1226
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1227
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1228
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateBookmarkTabsRequest, localVarRequestOptions, configuration);
1229
+ return {
1230
+ url: (0, common_1.toPathString)(localVarUrlObj),
1231
+ options: localVarRequestOptions,
1232
+ };
1233
+ }),
1161
1234
  /**
1162
1235
  * Update an integration on the project
1163
1236
  * @summary Update integration
@@ -1712,6 +1785,22 @@ const ProjectsApiFp = function (configuration) {
1712
1785
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1713
1786
  });
1714
1787
  },
1788
+ /**
1789
+ * List the bookmark tabs in the project
1790
+ * @summary List bookmark tabs
1791
+ * @param {string} project Projects unique identifier
1792
+ * @param {*} [options] Override http request option.
1793
+ * @throws {RequiredError}
1794
+ */
1795
+ listBookmarktabs(project, options) {
1796
+ return __awaiter(this, void 0, void 0, function* () {
1797
+ var _a, _b, _c;
1798
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listBookmarktabs(project, options);
1799
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1800
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.listBookmarktabs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1801
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1802
+ });
1803
+ },
1715
1804
  /**
1716
1805
  * List the tasks in the workflow
1717
1806
  * @summary List Tasks
@@ -1781,6 +1870,23 @@ const ProjectsApiFp = function (configuration) {
1781
1870
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1782
1871
  });
1783
1872
  },
1873
+ /**
1874
+ * Update bookmark tabs
1875
+ * @summary Update bookmark tabs
1876
+ * @param {string} project Projects unique identifier
1877
+ * @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
1878
+ * @param {*} [options] Override http request option.
1879
+ * @throws {RequiredError}
1880
+ */
1881
+ updateBookmarkTabs(project, updateBookmarkTabsRequest, options) {
1882
+ return __awaiter(this, void 0, void 0, function* () {
1883
+ var _a, _b, _c;
1884
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateBookmarkTabs(project, updateBookmarkTabsRequest, options);
1885
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1886
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.updateBookmarkTabs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1887
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1888
+ });
1889
+ },
1784
1890
  /**
1785
1891
  * Update an integration on the project
1786
1892
  * @summary Update integration
@@ -2094,6 +2200,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
2094
2200
  listBookmarks(requestParameters, options) {
2095
2201
  return localVarFp.listBookmarks(requestParameters.project, options).then((request) => request(axios, basePath));
2096
2202
  },
2203
+ /**
2204
+ * List the bookmark tabs in the project
2205
+ * @summary List bookmark tabs
2206
+ * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
2207
+ * @param {*} [options] Override http request option.
2208
+ * @throws {RequiredError}
2209
+ */
2210
+ listBookmarktabs(requestParameters, options) {
2211
+ return localVarFp.listBookmarktabs(requestParameters.project, options).then((request) => request(axios, basePath));
2212
+ },
2097
2213
  /**
2098
2214
  * List the tasks in the workflow
2099
2215
  * @summary List Tasks
@@ -2134,6 +2250,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
2134
2250
  updateBookmark(requestParameters, options) {
2135
2251
  return localVarFp.updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(axios, basePath));
2136
2252
  },
2253
+ /**
2254
+ * Update bookmark tabs
2255
+ * @summary Update bookmark tabs
2256
+ * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
2257
+ * @param {*} [options] Override http request option.
2258
+ * @throws {RequiredError}
2259
+ */
2260
+ updateBookmarkTabs(requestParameters, options) {
2261
+ return localVarFp.updateBookmarkTabs(requestParameters.project, requestParameters.updateBookmarkTabsRequest, options).then((request) => request(axios, basePath));
2262
+ },
2137
2263
  /**
2138
2264
  * Update an integration on the project
2139
2265
  * @summary Update integration
@@ -2449,6 +2575,17 @@ class ProjectsApi extends base_1.BaseAPI {
2449
2575
  listBookmarks(requestParameters, options) {
2450
2576
  return (0, exports.ProjectsApiFp)(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2451
2577
  }
2578
+ /**
2579
+ * List the bookmark tabs in the project
2580
+ * @summary List bookmark tabs
2581
+ * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
2582
+ * @param {*} [options] Override http request option.
2583
+ * @throws {RequiredError}
2584
+ * @memberof ProjectsApi
2585
+ */
2586
+ listBookmarktabs(requestParameters, options) {
2587
+ return (0, exports.ProjectsApiFp)(this.configuration).listBookmarktabs(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2588
+ }
2452
2589
  /**
2453
2590
  * List the tasks in the workflow
2454
2591
  * @summary List Tasks
@@ -2493,6 +2630,17 @@ class ProjectsApi extends base_1.BaseAPI {
2493
2630
  updateBookmark(requestParameters, options) {
2494
2631
  return (0, exports.ProjectsApiFp)(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
2495
2632
  }
2633
+ /**
2634
+ * Update bookmark tabs
2635
+ * @summary Update bookmark tabs
2636
+ * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
2637
+ * @param {*} [options] Override http request option.
2638
+ * @throws {RequiredError}
2639
+ * @memberof ProjectsApi
2640
+ */
2641
+ updateBookmarkTabs(requestParameters, options) {
2642
+ return (0, exports.ProjectsApiFp)(this.configuration).updateBookmarkTabs(requestParameters.project, requestParameters.updateBookmarkTabsRequest, options).then((request) => request(this.axios, this.basePath));
2643
+ }
2496
2644
  /**
2497
2645
  * Update an integration on the project
2498
2646
  * @summary Update integration
package/dist/base.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.35.0
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).
package/dist/base.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.35.0
8
+ * The version of the OpenAPI document: 1.36.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/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.35.0
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).
package/dist/common.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.35.0
8
+ * The version of the OpenAPI document: 1.36.0
9
9
  *
10
10
  *
11
11
  * 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.35.0
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).
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.35.0
8
+ * The version of the OpenAPI document: 1.36.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).