@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/README.md +2 -2
- package/api.ts +314 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +220 -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 +220 -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/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.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/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage PodOS Projects
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.37.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
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED