@teemill/projects 1.35.0 → 1.37.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.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.37.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
  *
@@ -481,6 +531,12 @@ export interface Project {
481
531
  * @memberof Project
482
532
  */
483
533
  'manager'?: ProjectManager | null;
534
+ /**
535
+ *
536
+ * @type {ProjectPlatform}
537
+ * @memberof Project
538
+ */
539
+ 'platform'?: ProjectPlatform | null;
484
540
  /**
485
541
  *
486
542
  * @type {Array<string>}
@@ -627,6 +683,25 @@ export interface ProjectManager {
627
683
  */
628
684
  'logos': Array<ProjectLogo>;
629
685
  }
686
+ /**
687
+ *
688
+ * @export
689
+ * @interface ProjectPlatform
690
+ */
691
+ export interface ProjectPlatform {
692
+ /**
693
+ *
694
+ * @type {string}
695
+ * @memberof ProjectPlatform
696
+ */
697
+ 'id'?: string;
698
+ /**
699
+ *
700
+ * @type {string}
701
+ * @memberof ProjectPlatform
702
+ */
703
+ 'name'?: string;
704
+ }
630
705
  /**
631
706
  *
632
707
  * @export
@@ -972,6 +1047,50 @@ export interface UpdateBookmarkRequest {
972
1047
  * @memberof UpdateBookmarkRequest
973
1048
  */
974
1049
  'icon'?: string;
1050
+ /**
1051
+ * The ID of the tab the bookmark belongs to
1052
+ * @type {string}
1053
+ * @memberof UpdateBookmarkRequest
1054
+ */
1055
+ 'tabId'?: string | null;
1056
+ }
1057
+ /**
1058
+ *
1059
+ * @export
1060
+ * @interface UpdateBookmarkTabsRequest
1061
+ */
1062
+ export interface UpdateBookmarkTabsRequest {
1063
+ /**
1064
+ *
1065
+ * @type {Array<UpdateBookmarkTabsRequestTabsInner>}
1066
+ * @memberof UpdateBookmarkTabsRequest
1067
+ */
1068
+ 'tabs'?: Array<UpdateBookmarkTabsRequestTabsInner>;
1069
+ }
1070
+ /**
1071
+ *
1072
+ * @export
1073
+ * @interface UpdateBookmarkTabsRequestTabsInner
1074
+ */
1075
+ export interface UpdateBookmarkTabsRequestTabsInner {
1076
+ /**
1077
+ *
1078
+ * @type {string}
1079
+ * @memberof UpdateBookmarkTabsRequestTabsInner
1080
+ */
1081
+ 'id': string | null;
1082
+ /**
1083
+ *
1084
+ * @type {string}
1085
+ * @memberof UpdateBookmarkTabsRequestTabsInner
1086
+ */
1087
+ 'name': string;
1088
+ /**
1089
+ *
1090
+ * @type {number}
1091
+ * @memberof UpdateBookmarkTabsRequestTabsInner
1092
+ */
1093
+ 'sortOrder': number;
975
1094
  }
976
1095
  /**
977
1096
  *
@@ -1280,6 +1399,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1280
1399
  * @throws {RequiredError}
1281
1400
  */
1282
1401
  listBookmarks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1402
+ /**
1403
+ * List the bookmark tabs in the project
1404
+ * @summary List bookmark tabs
1405
+ * @param {string} project Projects unique identifier
1406
+ * @param {*} [options] Override http request option.
1407
+ * @throws {RequiredError}
1408
+ */
1409
+ listBookmarktabs: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1283
1410
  /**
1284
1411
  * List the tasks in the workflow
1285
1412
  * @summary List Tasks
@@ -1317,6 +1444,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1317
1444
  * @throws {RequiredError}
1318
1445
  */
1319
1446
  updateBookmark: (project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1447
+ /**
1448
+ * Update bookmark tabs
1449
+ * @summary Update bookmark tabs
1450
+ * @param {string} project Projects unique identifier
1451
+ * @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
1452
+ * @param {*} [options] Override http request option.
1453
+ * @throws {RequiredError}
1454
+ */
1455
+ updateBookmarkTabs: (project: string, updateBookmarkTabsRequest: UpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1320
1456
  /**
1321
1457
  * Update an integration on the project
1322
1458
  * @summary Update integration
@@ -1573,6 +1709,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1573
1709
  * @throws {RequiredError}
1574
1710
  */
1575
1711
  listBookmarks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmarks>>;
1712
+ /**
1713
+ * List the bookmark tabs in the project
1714
+ * @summary List bookmark tabs
1715
+ * @param {string} project Projects unique identifier
1716
+ * @param {*} [options] Override http request option.
1717
+ * @throws {RequiredError}
1718
+ */
1719
+ listBookmarktabs(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookmarkTabs>>;
1576
1720
  /**
1577
1721
  * List the tasks in the workflow
1578
1722
  * @summary List Tasks
@@ -1610,6 +1754,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1610
1754
  * @throws {RequiredError}
1611
1755
  */
1612
1756
  updateBookmark(project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
1757
+ /**
1758
+ * Update bookmark tabs
1759
+ * @summary Update bookmark tabs
1760
+ * @param {string} project Projects unique identifier
1761
+ * @param {UpdateBookmarkTabsRequest} updateBookmarkTabsRequest Update a bookmark tab in the project
1762
+ * @param {*} [options] Override http request option.
1763
+ * @throws {RequiredError}
1764
+ */
1765
+ updateBookmarkTabs(project: string, updateBookmarkTabsRequest: UpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookmarkTabs>>;
1613
1766
  /**
1614
1767
  * Update an integration on the project
1615
1768
  * @summary Update integration
@@ -1845,6 +1998,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1845
1998
  * @throws {RequiredError}
1846
1999
  */
1847
2000
  listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmarks>;
2001
+ /**
2002
+ * List the bookmark tabs in the project
2003
+ * @summary List bookmark tabs
2004
+ * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
2005
+ * @param {*} [options] Override http request option.
2006
+ * @throws {RequiredError}
2007
+ */
2008
+ listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookmarkTabs>;
1848
2009
  /**
1849
2010
  * List the tasks in the workflow
1850
2011
  * @summary List Tasks
@@ -1877,6 +2038,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1877
2038
  * @throws {RequiredError}
1878
2039
  */
1879
2040
  updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
2041
+ /**
2042
+ * Update bookmark tabs
2043
+ * @summary Update bookmark tabs
2044
+ * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
2045
+ * @param {*} [options] Override http request option.
2046
+ * @throws {RequiredError}
2047
+ */
2048
+ updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookmarkTabs>;
1880
2049
  /**
1881
2050
  * Update an integration on the project
1882
2051
  * @summary Update integration
@@ -2353,6 +2522,19 @@ export interface ProjectsApiListBookmarksRequest {
2353
2522
  */
2354
2523
  readonly project: string;
2355
2524
  }
2525
+ /**
2526
+ * Request parameters for listBookmarktabs operation in ProjectsApi.
2527
+ * @export
2528
+ * @interface ProjectsApiListBookmarktabsRequest
2529
+ */
2530
+ export interface ProjectsApiListBookmarktabsRequest {
2531
+ /**
2532
+ * Projects unique identifier
2533
+ * @type {string}
2534
+ * @memberof ProjectsApiListBookmarktabs
2535
+ */
2536
+ readonly project: string;
2537
+ }
2356
2538
  /**
2357
2539
  * Request parameters for listTasks operation in ProjectsApi.
2358
2540
  * @export
@@ -2435,6 +2617,25 @@ export interface ProjectsApiUpdateBookmarkRequest {
2435
2617
  */
2436
2618
  readonly updateBookmarkRequest: UpdateBookmarkRequest;
2437
2619
  }
2620
+ /**
2621
+ * Request parameters for updateBookmarkTabs operation in ProjectsApi.
2622
+ * @export
2623
+ * @interface ProjectsApiUpdateBookmarkTabsRequest
2624
+ */
2625
+ export interface ProjectsApiUpdateBookmarkTabsRequest {
2626
+ /**
2627
+ * Projects unique identifier
2628
+ * @type {string}
2629
+ * @memberof ProjectsApiUpdateBookmarkTabs
2630
+ */
2631
+ readonly project: string;
2632
+ /**
2633
+ * Update a bookmark tab in the project
2634
+ * @type {UpdateBookmarkTabsRequest}
2635
+ * @memberof ProjectsApiUpdateBookmarkTabs
2636
+ */
2637
+ readonly updateBookmarkTabsRequest: UpdateBookmarkTabsRequest;
2638
+ }
2438
2639
  /**
2439
2640
  * Request parameters for updateIntegration operation in ProjectsApi.
2440
2641
  * @export
@@ -2736,6 +2937,15 @@ export declare class ProjectsApi extends BaseAPI {
2736
2937
  * @memberof ProjectsApi
2737
2938
  */
2738
2939
  listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any>>;
2940
+ /**
2941
+ * List the bookmark tabs in the project
2942
+ * @summary List bookmark tabs
2943
+ * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
2944
+ * @param {*} [options] Override http request option.
2945
+ * @throws {RequiredError}
2946
+ * @memberof ProjectsApi
2947
+ */
2948
+ listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any>>;
2739
2949
  /**
2740
2950
  * List the tasks in the workflow
2741
2951
  * @summary List Tasks
@@ -2772,6 +2982,15 @@ export declare class ProjectsApi extends BaseAPI {
2772
2982
  * @memberof ProjectsApi
2773
2983
  */
2774
2984
  updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
2985
+ /**
2986
+ * Update bookmark tabs
2987
+ * @summary Update bookmark tabs
2988
+ * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
2989
+ * @param {*} [options] Override http request option.
2990
+ * @throws {RequiredError}
2991
+ * @memberof ProjectsApi
2992
+ */
2993
+ updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any>>;
2775
2994
  /**
2776
2995
  * Update an integration on the project
2777
2996
  * @summary Update integration
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.35.0
7
+ * The version of the OpenAPI document: 1.37.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -997,6 +997,40 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
997
997
  options: localVarRequestOptions,
998
998
  };
999
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
+ }),
1000
1034
  /**
1001
1035
  * List the tasks in the workflow
1002
1036
  * @summary List Tasks
@@ -1155,6 +1189,45 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
1155
1189
  options: localVarRequestOptions,
1156
1190
  };
1157
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
+ }),
1158
1231
  /**
1159
1232
  * Update an integration on the project
1160
1233
  * @summary Update integration
@@ -1708,6 +1781,22 @@ export const ProjectsApiFp = function (configuration) {
1708
1781
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1709
1782
  });
1710
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
+ },
1711
1800
  /**
1712
1801
  * List the tasks in the workflow
1713
1802
  * @summary List Tasks
@@ -1777,6 +1866,23 @@ export const ProjectsApiFp = function (configuration) {
1777
1866
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1778
1867
  });
1779
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
+ },
1780
1886
  /**
1781
1887
  * Update an integration on the project
1782
1888
  * @summary Update integration
@@ -2089,6 +2195,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2089
2195
  listBookmarks(requestParameters, options) {
2090
2196
  return localVarFp.listBookmarks(requestParameters.project, options).then((request) => request(axios, basePath));
2091
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
+ },
2092
2208
  /**
2093
2209
  * List the tasks in the workflow
2094
2210
  * @summary List Tasks
@@ -2129,6 +2245,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2129
2245
  updateBookmark(requestParameters, options) {
2130
2246
  return localVarFp.updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(axios, basePath));
2131
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
+ },
2132
2258
  /**
2133
2259
  * Update an integration on the project
2134
2260
  * @summary Update integration
@@ -2443,6 +2569,17 @@ export class ProjectsApi extends BaseAPI {
2443
2569
  listBookmarks(requestParameters, options) {
2444
2570
  return ProjectsApiFp(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2445
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
+ }
2446
2583
  /**
2447
2584
  * List the tasks in the workflow
2448
2585
  * @summary List Tasks
@@ -2487,6 +2624,17 @@ export class ProjectsApi extends BaseAPI {
2487
2624
  updateBookmark(requestParameters, options) {
2488
2625
  return ProjectsApiFp(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
2489
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
+ }
2490
2638
  /**
2491
2639
  * Update an integration on the project
2492
2640
  * @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.35.0
5
+ * The version of the OpenAPI document: 1.37.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.35.0
7
+ * The version of the OpenAPI document: 1.37.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.35.0
5
+ * The version of the OpenAPI document: 1.37.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.35.0
7
+ * The version of the OpenAPI document: 1.37.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.35.0
5
+ * The version of the OpenAPI document: 1.37.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.35.0
7
+ * The version of the OpenAPI document: 1.37.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.35.0
5
+ * The version of the OpenAPI document: 1.37.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.35.0
7
+ * The version of the OpenAPI document: 1.37.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.35.0
5
+ * The version of the OpenAPI document: 1.37.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.35.0
8
+ * The version of the OpenAPI document: 1.37.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.35.0
7
+ * The version of the OpenAPI document: 1.37.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.35.0",
3
+ "version": "1.37.0",
4
4
  "description": "OpenAPI client for @teemill/projects",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {