@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/README.md +2 -2
- package/api.ts +289 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +195 -1
- package/dist/api.js +149 -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 +195 -1
- package/dist/esm/api.js +149 -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/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.
|
|
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/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Projects API
|
|
5
5
|
* Manage PodOS Projects
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.36.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED