@teemill/projects 1.33.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 +437 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +2 -3
- package/dist/api.d.ts +299 -3
- package/dist/api.js +220 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +299 -3
- package/dist/esm/api.js +220 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +2 -2
- 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.36.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -108,10 +108,16 @@ export interface Bookmark {
|
|
|
108
108
|
'color': string | null;
|
|
109
109
|
/**
|
|
110
110
|
*
|
|
111
|
-
* @type {
|
|
111
|
+
* @type {NullableIcon}
|
|
112
112
|
* @memberof Bookmark
|
|
113
113
|
*/
|
|
114
|
-
'icon':
|
|
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
|
*
|
|
@@ -292,6 +342,19 @@ export interface CreateTaskRequest {
|
|
|
292
342
|
*/
|
|
293
343
|
'status': TaskStatus;
|
|
294
344
|
}
|
|
345
|
+
/**
|
|
346
|
+
*
|
|
347
|
+
* @export
|
|
348
|
+
* @interface ExportTasks202Response
|
|
349
|
+
*/
|
|
350
|
+
export interface ExportTasks202Response {
|
|
351
|
+
/**
|
|
352
|
+
* A message describing the export status
|
|
353
|
+
* @type {string}
|
|
354
|
+
* @memberof ExportTasks202Response
|
|
355
|
+
*/
|
|
356
|
+
'message'?: string;
|
|
357
|
+
}
|
|
295
358
|
/**
|
|
296
359
|
*
|
|
297
360
|
* @export
|
|
@@ -406,6 +469,31 @@ export interface ListTasksResponse {
|
|
|
406
469
|
*/
|
|
407
470
|
'tasks': Array<TaskSummary>;
|
|
408
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
*
|
|
474
|
+
* @export
|
|
475
|
+
* @interface NullableIcon
|
|
476
|
+
*/
|
|
477
|
+
export interface NullableIcon {
|
|
478
|
+
/**
|
|
479
|
+
*
|
|
480
|
+
* @type {string}
|
|
481
|
+
* @memberof NullableIcon
|
|
482
|
+
*/
|
|
483
|
+
'prefix': string;
|
|
484
|
+
/**
|
|
485
|
+
*
|
|
486
|
+
* @type {string}
|
|
487
|
+
* @memberof NullableIcon
|
|
488
|
+
*/
|
|
489
|
+
'iconName': string;
|
|
490
|
+
/**
|
|
491
|
+
*
|
|
492
|
+
* @type {Array<any>}
|
|
493
|
+
* @memberof NullableIcon
|
|
494
|
+
*/
|
|
495
|
+
'icon': Array<any>;
|
|
496
|
+
}
|
|
409
497
|
/**
|
|
410
498
|
*
|
|
411
499
|
* @export
|
|
@@ -749,6 +837,12 @@ export interface Task {
|
|
|
749
837
|
* @memberof Task
|
|
750
838
|
*/
|
|
751
839
|
'estimatedHours': number | null;
|
|
840
|
+
/**
|
|
841
|
+
* The completion percentage of the task
|
|
842
|
+
* @type {number}
|
|
843
|
+
* @memberof Task
|
|
844
|
+
*/
|
|
845
|
+
'workProgress': number;
|
|
752
846
|
/**
|
|
753
847
|
* The unique id of the user who created the task
|
|
754
848
|
* @type {string}
|
|
@@ -816,6 +910,12 @@ export interface TaskSummary {
|
|
|
816
910
|
* @memberof TaskSummary
|
|
817
911
|
*/
|
|
818
912
|
'estimatedHours': number | null;
|
|
913
|
+
/**
|
|
914
|
+
* The completion percentage of the task
|
|
915
|
+
* @type {number}
|
|
916
|
+
* @memberof TaskSummary
|
|
917
|
+
*/
|
|
918
|
+
'workProgress': number;
|
|
819
919
|
/**
|
|
820
920
|
*
|
|
821
921
|
* @type {string}
|
|
@@ -922,6 +1022,50 @@ export interface UpdateBookmarkRequest {
|
|
|
922
1022
|
* @memberof UpdateBookmarkRequest
|
|
923
1023
|
*/
|
|
924
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;
|
|
925
1069
|
}
|
|
926
1070
|
/**
|
|
927
1071
|
*
|
|
@@ -997,6 +1141,12 @@ export interface UpdateTaskRequest {
|
|
|
997
1141
|
* @memberof UpdateTaskRequest
|
|
998
1142
|
*/
|
|
999
1143
|
'estimatedHours'?: number | null;
|
|
1144
|
+
/**
|
|
1145
|
+
* The completion percentage of the task
|
|
1146
|
+
* @type {number}
|
|
1147
|
+
* @memberof UpdateTaskRequest
|
|
1148
|
+
*/
|
|
1149
|
+
'workProgress'?: number;
|
|
1000
1150
|
}
|
|
1001
1151
|
/**
|
|
1002
1152
|
* ProjectsApi - axios parameter creator
|
|
@@ -1099,6 +1249,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1099
1249
|
* @throws {RequiredError}
|
|
1100
1250
|
*/
|
|
1101
1251
|
deleteUser: (project: string, user: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1252
|
+
/**
|
|
1253
|
+
* Export all the tasks in the workflow
|
|
1254
|
+
* @summary Export all tasks
|
|
1255
|
+
* @param {string} project Projects unique identifier
|
|
1256
|
+
* @param {*} [options] Override http request option.
|
|
1257
|
+
* @throws {RequiredError}
|
|
1258
|
+
*/
|
|
1259
|
+
exportTasks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1102
1260
|
/**
|
|
1103
1261
|
* Lists the auth tokens for the project
|
|
1104
1262
|
* @summary List auth tokens
|
|
@@ -1216,6 +1374,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1216
1374
|
* @throws {RequiredError}
|
|
1217
1375
|
*/
|
|
1218
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>;
|
|
1219
1385
|
/**
|
|
1220
1386
|
* List the tasks in the workflow
|
|
1221
1387
|
* @summary List Tasks
|
|
@@ -1253,6 +1419,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1253
1419
|
* @throws {RequiredError}
|
|
1254
1420
|
*/
|
|
1255
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>;
|
|
1256
1431
|
/**
|
|
1257
1432
|
* Update an integration on the project
|
|
1258
1433
|
* @summary Update integration
|
|
@@ -1384,6 +1559,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1384
1559
|
* @throws {RequiredError}
|
|
1385
1560
|
*/
|
|
1386
1561
|
deleteUser(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1562
|
+
/**
|
|
1563
|
+
* Export all the tasks in the workflow
|
|
1564
|
+
* @summary Export all tasks
|
|
1565
|
+
* @param {string} project Projects unique identifier
|
|
1566
|
+
* @param {*} [options] Override http request option.
|
|
1567
|
+
* @throws {RequiredError}
|
|
1568
|
+
*/
|
|
1569
|
+
exportTasks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
1387
1570
|
/**
|
|
1388
1571
|
* Lists the auth tokens for the project
|
|
1389
1572
|
* @summary List auth tokens
|
|
@@ -1501,6 +1684,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1501
1684
|
* @throws {RequiredError}
|
|
1502
1685
|
*/
|
|
1503
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>>;
|
|
1504
1695
|
/**
|
|
1505
1696
|
* List the tasks in the workflow
|
|
1506
1697
|
* @summary List Tasks
|
|
@@ -1538,6 +1729,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1538
1729
|
* @throws {RequiredError}
|
|
1539
1730
|
*/
|
|
1540
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>>;
|
|
1541
1741
|
/**
|
|
1542
1742
|
* Update an integration on the project
|
|
1543
1743
|
* @summary Update integration
|
|
@@ -1661,6 +1861,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1661
1861
|
* @throws {RequiredError}
|
|
1662
1862
|
*/
|
|
1663
1863
|
deleteUser(requestParameters: ProjectsApiDeleteUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1864
|
+
/**
|
|
1865
|
+
* Export all the tasks in the workflow
|
|
1866
|
+
* @summary Export all tasks
|
|
1867
|
+
* @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
|
|
1868
|
+
* @param {*} [options] Override http request option.
|
|
1869
|
+
* @throws {RequiredError}
|
|
1870
|
+
*/
|
|
1871
|
+
exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
1664
1872
|
/**
|
|
1665
1873
|
* Lists the auth tokens for the project
|
|
1666
1874
|
* @summary List auth tokens
|
|
@@ -1765,6 +1973,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1765
1973
|
* @throws {RequiredError}
|
|
1766
1974
|
*/
|
|
1767
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>;
|
|
1768
1984
|
/**
|
|
1769
1985
|
* List the tasks in the workflow
|
|
1770
1986
|
* @summary List Tasks
|
|
@@ -1797,6 +2013,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1797
2013
|
* @throws {RequiredError}
|
|
1798
2014
|
*/
|
|
1799
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>;
|
|
1800
2024
|
/**
|
|
1801
2025
|
* Update an integration on the project
|
|
1802
2026
|
* @summary Update integration
|
|
@@ -2013,6 +2237,19 @@ export interface ProjectsApiDeleteUserRequest {
|
|
|
2013
2237
|
*/
|
|
2014
2238
|
readonly user: string;
|
|
2015
2239
|
}
|
|
2240
|
+
/**
|
|
2241
|
+
* Request parameters for exportTasks operation in ProjectsApi.
|
|
2242
|
+
* @export
|
|
2243
|
+
* @interface ProjectsApiExportTasksRequest
|
|
2244
|
+
*/
|
|
2245
|
+
export interface ProjectsApiExportTasksRequest {
|
|
2246
|
+
/**
|
|
2247
|
+
* Projects unique identifier
|
|
2248
|
+
* @type {string}
|
|
2249
|
+
* @memberof ProjectsApiExportTasks
|
|
2250
|
+
*/
|
|
2251
|
+
readonly project: string;
|
|
2252
|
+
}
|
|
2016
2253
|
/**
|
|
2017
2254
|
* Request parameters for getAuth operation in ProjectsApi.
|
|
2018
2255
|
* @export
|
|
@@ -2260,6 +2497,19 @@ export interface ProjectsApiListBookmarksRequest {
|
|
|
2260
2497
|
*/
|
|
2261
2498
|
readonly project: string;
|
|
2262
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
|
+
}
|
|
2263
2513
|
/**
|
|
2264
2514
|
* Request parameters for listTasks operation in ProjectsApi.
|
|
2265
2515
|
* @export
|
|
@@ -2342,6 +2592,25 @@ export interface ProjectsApiUpdateBookmarkRequest {
|
|
|
2342
2592
|
*/
|
|
2343
2593
|
readonly updateBookmarkRequest: UpdateBookmarkRequest;
|
|
2344
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
|
+
}
|
|
2345
2614
|
/**
|
|
2346
2615
|
* Request parameters for updateIntegration operation in ProjectsApi.
|
|
2347
2616
|
* @export
|
|
@@ -2517,6 +2786,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
2517
2786
|
* @memberof ProjectsApi
|
|
2518
2787
|
*/
|
|
2519
2788
|
deleteUser(requestParameters: ProjectsApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2789
|
+
/**
|
|
2790
|
+
* Export all the tasks in the workflow
|
|
2791
|
+
* @summary Export all tasks
|
|
2792
|
+
* @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
|
|
2793
|
+
* @param {*} [options] Override http request option.
|
|
2794
|
+
* @throws {RequiredError}
|
|
2795
|
+
* @memberof ProjectsApi
|
|
2796
|
+
*/
|
|
2797
|
+
exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2520
2798
|
/**
|
|
2521
2799
|
* Lists the auth tokens for the project
|
|
2522
2800
|
* @summary List auth tokens
|
|
@@ -2634,6 +2912,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
2634
2912
|
* @memberof ProjectsApi
|
|
2635
2913
|
*/
|
|
2636
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>>;
|
|
2637
2924
|
/**
|
|
2638
2925
|
* List the tasks in the workflow
|
|
2639
2926
|
* @summary List Tasks
|
|
@@ -2670,6 +2957,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
2670
2957
|
* @memberof ProjectsApi
|
|
2671
2958
|
*/
|
|
2672
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>>;
|
|
2673
2969
|
/**
|
|
2674
2970
|
* Update an integration on the project
|
|
2675
2971
|
* @summary Update integration
|