@teemill/projects 1.46.6 → 1.48.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 +10 -2
- package/api.ts +321 -1260
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +219 -1300
- package/dist/api.js +226 -59
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +219 -1300
- package/dist/esm/api.js +226 -59
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- 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/docs/GetClients200Response.md +20 -0
- package/docs/GetLogs200Response.md +20 -0
- package/docs/Project.md +4 -0
- package/docs/ProjectUser.md +4 -0
- package/docs/ProjectsApi.md +179 -0
- package/docs/UpdateUserRequest.md +9 -1
- package/docs/UserClient.md +24 -0
- package/docs/UserInvite.md +22 -0
- package/docs/UserLog.md +26 -0
- 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.48.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -13,535 +13,137 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface ApiError
|
|
20
|
-
*/
|
|
21
16
|
export interface ApiError {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof ApiError
|
|
26
|
-
*/
|
|
27
17
|
'code'?: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof ApiError
|
|
32
|
-
*/
|
|
33
18
|
'message': string;
|
|
34
19
|
}
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @export
|
|
38
|
-
* @interface Auth
|
|
39
|
-
*/
|
|
40
20
|
export interface Auth {
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof Auth
|
|
45
|
-
*/
|
|
46
21
|
'id'?: string;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof Auth
|
|
51
|
-
*/
|
|
52
22
|
'projectId'?: string;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof Auth
|
|
57
|
-
*/
|
|
58
23
|
'token'?: string;
|
|
59
24
|
}
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @export
|
|
63
|
-
* @interface AuthResponse
|
|
64
|
-
*/
|
|
65
25
|
export interface AuthResponse {
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @type {Array<Auth>}
|
|
69
|
-
* @memberof AuthResponse
|
|
70
|
-
*/
|
|
71
26
|
'auth'?: Array<Auth>;
|
|
72
27
|
}
|
|
73
|
-
/**
|
|
74
|
-
*
|
|
75
|
-
* @export
|
|
76
|
-
* @interface Bookmark
|
|
77
|
-
*/
|
|
78
28
|
export interface Bookmark {
|
|
79
|
-
/**
|
|
80
|
-
*
|
|
81
|
-
* @type {string}
|
|
82
|
-
* @memberof Bookmark
|
|
83
|
-
*/
|
|
84
29
|
'id': string;
|
|
85
|
-
/**
|
|
86
|
-
*
|
|
87
|
-
* @type {string}
|
|
88
|
-
* @memberof Bookmark
|
|
89
|
-
*/
|
|
90
30
|
'title': string | null;
|
|
91
|
-
/**
|
|
92
|
-
*
|
|
93
|
-
* @type {BookmarkData}
|
|
94
|
-
* @memberof Bookmark
|
|
95
|
-
*/
|
|
96
31
|
'data': BookmarkData;
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @memberof Bookmark
|
|
101
|
-
*/
|
|
102
32
|
'description': string | null;
|
|
103
|
-
/**
|
|
104
|
-
*
|
|
105
|
-
* @type {string}
|
|
106
|
-
* @memberof Bookmark
|
|
107
|
-
*/
|
|
108
33
|
'color': string | null;
|
|
109
|
-
/**
|
|
110
|
-
*
|
|
111
|
-
* @type {NullableIcon}
|
|
112
|
-
* @memberof Bookmark
|
|
113
|
-
*/
|
|
114
34
|
'icon': NullableIcon | null;
|
|
115
|
-
/**
|
|
116
|
-
*
|
|
117
|
-
* @type {string}
|
|
118
|
-
* @memberof Bookmark
|
|
119
|
-
*/
|
|
120
35
|
'tabId': string | null;
|
|
121
|
-
/**
|
|
122
|
-
*
|
|
123
|
-
* @type {number}
|
|
124
|
-
* @memberof Bookmark
|
|
125
|
-
*/
|
|
126
36
|
'sortOrder': number;
|
|
127
|
-
/**
|
|
128
|
-
*
|
|
129
|
-
* @type {number}
|
|
130
|
-
* @memberof Bookmark
|
|
131
|
-
*/
|
|
132
37
|
'tabSortOrder': number;
|
|
133
38
|
}
|
|
134
39
|
/**
|
|
135
40
|
* @type BookmarkData
|
|
136
|
-
* @export
|
|
137
41
|
*/
|
|
138
42
|
export type BookmarkData = BookmarkRoute | BookmarkUrl;
|
|
139
|
-
/**
|
|
140
|
-
*
|
|
141
|
-
* @export
|
|
142
|
-
* @interface BookmarkRoute
|
|
143
|
-
*/
|
|
144
43
|
export interface BookmarkRoute {
|
|
145
|
-
/**
|
|
146
|
-
*
|
|
147
|
-
* @type {BookmarkRouteRoute}
|
|
148
|
-
* @memberof BookmarkRoute
|
|
149
|
-
*/
|
|
150
44
|
'route': BookmarkRouteRoute;
|
|
151
45
|
}
|
|
152
|
-
/**
|
|
153
|
-
*
|
|
154
|
-
* @export
|
|
155
|
-
* @interface BookmarkRouteRoute
|
|
156
|
-
*/
|
|
157
46
|
export interface BookmarkRouteRoute {
|
|
158
|
-
/**
|
|
159
|
-
*
|
|
160
|
-
* @type {string}
|
|
161
|
-
* @memberof BookmarkRouteRoute
|
|
162
|
-
*/
|
|
163
47
|
'name': string;
|
|
164
|
-
/**
|
|
165
|
-
*
|
|
166
|
-
* @type {{ [key: string]: any; }}
|
|
167
|
-
* @memberof BookmarkRouteRoute
|
|
168
|
-
*/
|
|
169
48
|
'params'?: {
|
|
170
49
|
[key: string]: any;
|
|
171
50
|
};
|
|
172
|
-
/**
|
|
173
|
-
*
|
|
174
|
-
* @type {{ [key: string]: any; }}
|
|
175
|
-
* @memberof BookmarkRouteRoute
|
|
176
|
-
*/
|
|
177
51
|
'query'?: {
|
|
178
52
|
[key: string]: any;
|
|
179
53
|
};
|
|
180
54
|
}
|
|
181
|
-
/**
|
|
182
|
-
*
|
|
183
|
-
* @export
|
|
184
|
-
* @interface BookmarkTab
|
|
185
|
-
*/
|
|
186
55
|
export interface BookmarkTab {
|
|
187
|
-
/**
|
|
188
|
-
*
|
|
189
|
-
* @type {string}
|
|
190
|
-
* @memberof BookmarkTab
|
|
191
|
-
*/
|
|
192
56
|
'id': string;
|
|
193
|
-
/**
|
|
194
|
-
*
|
|
195
|
-
* @type {string}
|
|
196
|
-
* @memberof BookmarkTab
|
|
197
|
-
*/
|
|
198
57
|
'name': string;
|
|
199
|
-
/**
|
|
200
|
-
*
|
|
201
|
-
* @type {number}
|
|
202
|
-
* @memberof BookmarkTab
|
|
203
|
-
*/
|
|
204
58
|
'sortOrder': number;
|
|
205
59
|
}
|
|
206
|
-
/**
|
|
207
|
-
*
|
|
208
|
-
* @export
|
|
209
|
-
* @interface BookmarkTabs
|
|
210
|
-
*/
|
|
211
60
|
export interface BookmarkTabs {
|
|
212
|
-
/**
|
|
213
|
-
*
|
|
214
|
-
* @type {Array<BookmarkTab>}
|
|
215
|
-
* @memberof BookmarkTabs
|
|
216
|
-
*/
|
|
217
61
|
'tabs': Array<BookmarkTab>;
|
|
218
62
|
}
|
|
219
|
-
/**
|
|
220
|
-
*
|
|
221
|
-
* @export
|
|
222
|
-
* @interface BookmarkUrl
|
|
223
|
-
*/
|
|
224
63
|
export interface BookmarkUrl {
|
|
225
|
-
/**
|
|
226
|
-
*
|
|
227
|
-
* @type {string}
|
|
228
|
-
* @memberof BookmarkUrl
|
|
229
|
-
*/
|
|
230
64
|
'url': string;
|
|
231
65
|
}
|
|
232
|
-
/**
|
|
233
|
-
*
|
|
234
|
-
* @export
|
|
235
|
-
* @interface Bookmarks
|
|
236
|
-
*/
|
|
237
66
|
export interface Bookmarks {
|
|
238
|
-
/**
|
|
239
|
-
*
|
|
240
|
-
* @type {Array<Bookmark>}
|
|
241
|
-
* @memberof Bookmarks
|
|
242
|
-
*/
|
|
243
67
|
'bookmarks': Array<Bookmark>;
|
|
244
68
|
}
|
|
245
|
-
/**
|
|
246
|
-
*
|
|
247
|
-
* @export
|
|
248
|
-
* @interface BulkUpdateTasksRequest
|
|
249
|
-
*/
|
|
250
69
|
export interface BulkUpdateTasksRequest {
|
|
251
|
-
/**
|
|
252
|
-
*
|
|
253
|
-
* @type {Array<BulkUpdateTasksRequestTasksInner>}
|
|
254
|
-
* @memberof BulkUpdateTasksRequest
|
|
255
|
-
*/
|
|
256
70
|
'tasks': Array<BulkUpdateTasksRequestTasksInner>;
|
|
257
71
|
}
|
|
258
|
-
/**
|
|
259
|
-
*
|
|
260
|
-
* @export
|
|
261
|
-
* @interface BulkUpdateTasksRequestTasksInner
|
|
262
|
-
*/
|
|
263
72
|
export interface BulkUpdateTasksRequestTasksInner {
|
|
264
|
-
/**
|
|
265
|
-
*
|
|
266
|
-
* @type {string}
|
|
267
|
-
* @memberof BulkUpdateTasksRequestTasksInner
|
|
268
|
-
*/
|
|
269
73
|
'id': string;
|
|
270
|
-
/**
|
|
271
|
-
*
|
|
272
|
-
* @type {TaskStatus}
|
|
273
|
-
* @memberof BulkUpdateTasksRequestTasksInner
|
|
274
|
-
*/
|
|
275
74
|
'status': TaskStatus;
|
|
276
75
|
}
|
|
277
|
-
/**
|
|
278
|
-
*
|
|
279
|
-
* @export
|
|
280
|
-
* @interface CreateBookmarkRequest
|
|
281
|
-
*/
|
|
282
76
|
export interface CreateBookmarkRequest {
|
|
283
|
-
/**
|
|
284
|
-
*
|
|
285
|
-
* @type {string}
|
|
286
|
-
* @memberof CreateBookmarkRequest
|
|
287
|
-
*/
|
|
288
77
|
'title'?: string;
|
|
289
|
-
/**
|
|
290
|
-
*
|
|
291
|
-
* @type {BookmarkData}
|
|
292
|
-
* @memberof CreateBookmarkRequest
|
|
293
|
-
*/
|
|
294
78
|
'data': BookmarkData;
|
|
295
|
-
/**
|
|
296
|
-
*
|
|
297
|
-
* @type {string}
|
|
298
|
-
* @memberof CreateBookmarkRequest
|
|
299
|
-
*/
|
|
300
79
|
'description'?: string;
|
|
301
|
-
/**
|
|
302
|
-
*
|
|
303
|
-
* @type {string}
|
|
304
|
-
* @memberof CreateBookmarkRequest
|
|
305
|
-
*/
|
|
306
80
|
'color'?: string;
|
|
307
81
|
/**
|
|
308
82
|
* The icon name of the bookmark
|
|
309
|
-
* @type {string}
|
|
310
|
-
* @memberof CreateBookmarkRequest
|
|
311
83
|
*/
|
|
312
84
|
'icon'?: string;
|
|
313
85
|
/**
|
|
314
86
|
* The ID of the tab the bookmark belongs to
|
|
315
|
-
* @type {string}
|
|
316
|
-
* @memberof CreateBookmarkRequest
|
|
317
87
|
*/
|
|
318
88
|
'tabId'?: string | null;
|
|
319
89
|
}
|
|
320
|
-
/**
|
|
321
|
-
*
|
|
322
|
-
* @export
|
|
323
|
-
* @interface CreateInviteRequest
|
|
324
|
-
*/
|
|
325
90
|
export interface CreateInviteRequest {
|
|
326
|
-
/**
|
|
327
|
-
*
|
|
328
|
-
* @type {string}
|
|
329
|
-
* @memberof CreateInviteRequest
|
|
330
|
-
*/
|
|
331
91
|
'email': string;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {string}
|
|
335
|
-
* @memberof CreateInviteRequest
|
|
336
|
-
*/
|
|
337
92
|
'role'?: string;
|
|
338
93
|
}
|
|
339
|
-
/**
|
|
340
|
-
*
|
|
341
|
-
* @export
|
|
342
|
-
* @interface CreateProjectRequest
|
|
343
|
-
*/
|
|
344
94
|
export interface CreateProjectRequest {
|
|
345
|
-
/**
|
|
346
|
-
*
|
|
347
|
-
* @type {string}
|
|
348
|
-
* @memberof CreateProjectRequest
|
|
349
|
-
*/
|
|
350
95
|
'name': string;
|
|
351
|
-
/**
|
|
352
|
-
*
|
|
353
|
-
* @type {TemplateCode}
|
|
354
|
-
* @memberof CreateProjectRequest
|
|
355
|
-
*/
|
|
356
96
|
'template'?: TemplateCode;
|
|
357
|
-
/**
|
|
358
|
-
*
|
|
359
|
-
* @type {object}
|
|
360
|
-
* @memberof CreateProjectRequest
|
|
361
|
-
*/
|
|
362
97
|
'config'?: object;
|
|
363
|
-
/**
|
|
364
|
-
*
|
|
365
|
-
* @type {string}
|
|
366
|
-
* @memberof CreateProjectRequest
|
|
367
|
-
*/
|
|
368
98
|
'platformId'?: string | null;
|
|
369
99
|
}
|
|
370
|
-
/**
|
|
371
|
-
*
|
|
372
|
-
* @export
|
|
373
|
-
* @interface CreateTaskRequest
|
|
374
|
-
*/
|
|
375
100
|
export interface CreateTaskRequest {
|
|
376
|
-
/**
|
|
377
|
-
*
|
|
378
|
-
* @type {string}
|
|
379
|
-
* @memberof CreateTaskRequest
|
|
380
|
-
*/
|
|
381
101
|
'content': string;
|
|
382
|
-
/**
|
|
383
|
-
*
|
|
384
|
-
* @type {TaskStatus}
|
|
385
|
-
* @memberof CreateTaskRequest
|
|
386
|
-
*/
|
|
387
102
|
'status': TaskStatus;
|
|
388
103
|
}
|
|
389
|
-
/**
|
|
390
|
-
*
|
|
391
|
-
* @export
|
|
392
|
-
* @interface ExportTasks202Response
|
|
393
|
-
*/
|
|
394
104
|
export interface ExportTasks202Response {
|
|
395
105
|
/**
|
|
396
106
|
* A message describing the export status
|
|
397
|
-
* @type {string}
|
|
398
|
-
* @memberof ExportTasks202Response
|
|
399
107
|
*/
|
|
400
108
|
'message'?: string;
|
|
401
109
|
}
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
110
|
+
export interface GetClients200Response {
|
|
111
|
+
'clients': Array<UserClient>;
|
|
112
|
+
}
|
|
113
|
+
export interface GetLogs200Response {
|
|
114
|
+
'logs': Array<UserLog>;
|
|
115
|
+
}
|
|
407
116
|
export interface Icon {
|
|
408
|
-
/**
|
|
409
|
-
*
|
|
410
|
-
* @type {string}
|
|
411
|
-
* @memberof Icon
|
|
412
|
-
*/
|
|
413
117
|
'prefix': string;
|
|
414
|
-
/**
|
|
415
|
-
*
|
|
416
|
-
* @type {string}
|
|
417
|
-
* @memberof Icon
|
|
418
|
-
*/
|
|
419
118
|
'iconName': string;
|
|
420
|
-
/**
|
|
421
|
-
*
|
|
422
|
-
* @type {Array<any>}
|
|
423
|
-
* @memberof Icon
|
|
424
|
-
*/
|
|
425
119
|
'icon': Array<any>;
|
|
426
120
|
}
|
|
427
|
-
/**
|
|
428
|
-
*
|
|
429
|
-
* @export
|
|
430
|
-
* @interface InstallTemplateRequest
|
|
431
|
-
*/
|
|
432
121
|
export interface InstallTemplateRequest {
|
|
433
|
-
/**
|
|
434
|
-
*
|
|
435
|
-
* @type {object}
|
|
436
|
-
* @memberof InstallTemplateRequest
|
|
437
|
-
*/
|
|
438
122
|
'config'?: object;
|
|
439
123
|
}
|
|
440
|
-
/**
|
|
441
|
-
*
|
|
442
|
-
* @export
|
|
443
|
-
* @interface Integration
|
|
444
|
-
*/
|
|
445
124
|
export interface Integration {
|
|
446
|
-
/**
|
|
447
|
-
*
|
|
448
|
-
* @type {number}
|
|
449
|
-
* @memberof Integration
|
|
450
|
-
*/
|
|
451
125
|
'id'?: number;
|
|
452
|
-
/**
|
|
453
|
-
*
|
|
454
|
-
* @type {string}
|
|
455
|
-
* @memberof Integration
|
|
456
|
-
*/
|
|
457
126
|
'code': string;
|
|
458
|
-
/**
|
|
459
|
-
*
|
|
460
|
-
* @type {object}
|
|
461
|
-
* @memberof Integration
|
|
462
|
-
*/
|
|
463
127
|
'config': object;
|
|
464
|
-
/**
|
|
465
|
-
*
|
|
466
|
-
* @type {string}
|
|
467
|
-
* @memberof Integration
|
|
468
|
-
*/
|
|
469
128
|
'setupAt'?: string;
|
|
470
129
|
}
|
|
471
|
-
/**
|
|
472
|
-
*
|
|
473
|
-
* @export
|
|
474
|
-
* @interface IntegrationsResponse
|
|
475
|
-
*/
|
|
476
130
|
export interface IntegrationsResponse {
|
|
477
|
-
/**
|
|
478
|
-
*
|
|
479
|
-
* @type {Array<Integration>}
|
|
480
|
-
* @memberof IntegrationsResponse
|
|
481
|
-
*/
|
|
482
131
|
'integrations': Array<Integration>;
|
|
483
132
|
}
|
|
484
|
-
/**
|
|
485
|
-
*
|
|
486
|
-
* @export
|
|
487
|
-
* @interface LegacyProjectLogo
|
|
488
|
-
*/
|
|
489
133
|
export interface LegacyProjectLogo {
|
|
490
|
-
/**
|
|
491
|
-
*
|
|
492
|
-
* @type {string}
|
|
493
|
-
* @memberof LegacyProjectLogo
|
|
494
|
-
*/
|
|
495
134
|
'url': string;
|
|
496
|
-
/**
|
|
497
|
-
*
|
|
498
|
-
* @type {string}
|
|
499
|
-
* @memberof LegacyProjectLogo
|
|
500
|
-
*/
|
|
501
135
|
'backgroundColor': string;
|
|
502
136
|
}
|
|
503
|
-
/**
|
|
504
|
-
*
|
|
505
|
-
* @export
|
|
506
|
-
* @interface ListTasksResponse
|
|
507
|
-
*/
|
|
508
137
|
export interface ListTasksResponse {
|
|
509
|
-
/**
|
|
510
|
-
*
|
|
511
|
-
* @type {Array<TaskSummary>}
|
|
512
|
-
* @memberof ListTasksResponse
|
|
513
|
-
*/
|
|
514
138
|
'tasks': Array<TaskSummary>;
|
|
515
139
|
}
|
|
516
|
-
/**
|
|
517
|
-
*
|
|
518
|
-
* @export
|
|
519
|
-
* @interface NullableIcon
|
|
520
|
-
*/
|
|
521
140
|
export interface NullableIcon {
|
|
522
|
-
/**
|
|
523
|
-
*
|
|
524
|
-
* @type {string}
|
|
525
|
-
* @memberof NullableIcon
|
|
526
|
-
*/
|
|
527
141
|
'prefix': string;
|
|
528
|
-
/**
|
|
529
|
-
*
|
|
530
|
-
* @type {string}
|
|
531
|
-
* @memberof NullableIcon
|
|
532
|
-
*/
|
|
533
142
|
'iconName': string;
|
|
534
|
-
/**
|
|
535
|
-
*
|
|
536
|
-
* @type {Array<any>}
|
|
537
|
-
* @memberof NullableIcon
|
|
538
|
-
*/
|
|
539
143
|
'icon': Array<any>;
|
|
540
144
|
}
|
|
541
145
|
/**
|
|
542
146
|
* Indicates whether the task is an OKR associated with the user
|
|
543
|
-
* @export
|
|
544
|
-
* @enum {string}
|
|
545
147
|
*/
|
|
546
148
|
export declare const OkrLevel: {
|
|
547
149
|
readonly Objective: "objective";
|
|
@@ -549,305 +151,86 @@ export declare const OkrLevel: {
|
|
|
549
151
|
readonly Task: "task";
|
|
550
152
|
};
|
|
551
153
|
export type OkrLevel = typeof OkrLevel[keyof typeof OkrLevel];
|
|
552
|
-
/**
|
|
553
|
-
*
|
|
554
|
-
* @export
|
|
555
|
-
* @interface OkrSummary
|
|
556
|
-
*/
|
|
557
154
|
export interface OkrSummary {
|
|
558
|
-
/**
|
|
559
|
-
*
|
|
560
|
-
* @type {string}
|
|
561
|
-
* @memberof OkrSummary
|
|
562
|
-
*/
|
|
563
155
|
'id': string;
|
|
564
|
-
/**
|
|
565
|
-
*
|
|
566
|
-
* @type {string}
|
|
567
|
-
* @memberof OkrSummary
|
|
568
|
-
*/
|
|
569
156
|
'content': string;
|
|
570
|
-
/**
|
|
571
|
-
*
|
|
572
|
-
* @type {string}
|
|
573
|
-
* @memberof OkrSummary
|
|
574
|
-
*/
|
|
575
157
|
'createdAt': string;
|
|
576
158
|
}
|
|
577
|
-
/**
|
|
578
|
-
*
|
|
579
|
-
* @export
|
|
580
|
-
* @interface Project
|
|
581
|
-
*/
|
|
582
159
|
export interface Project {
|
|
583
|
-
/**
|
|
584
|
-
*
|
|
585
|
-
* @type {string}
|
|
586
|
-
* @memberof Project
|
|
587
|
-
*/
|
|
588
160
|
'id': string;
|
|
589
|
-
/**
|
|
590
|
-
*
|
|
591
|
-
* @type {string}
|
|
592
|
-
* @memberof Project
|
|
593
|
-
*/
|
|
594
161
|
'name': string;
|
|
595
162
|
/**
|
|
596
|
-
*
|
|
597
|
-
* @type {LegacyProjectLogo}
|
|
598
|
-
* @memberof Project
|
|
599
163
|
* @deprecated
|
|
600
164
|
*/
|
|
601
165
|
'logo': LegacyProjectLogo | null;
|
|
602
|
-
/**
|
|
603
|
-
*
|
|
604
|
-
* @type {Array<ProjectLogo>}
|
|
605
|
-
* @memberof Project
|
|
606
|
-
*/
|
|
607
166
|
'logos': Array<ProjectLogo>;
|
|
608
|
-
/**
|
|
609
|
-
*
|
|
610
|
-
* @type {ProjectManager}
|
|
611
|
-
* @memberof Project
|
|
612
|
-
*/
|
|
613
167
|
'manager'?: ProjectManager | null;
|
|
614
|
-
/**
|
|
615
|
-
*
|
|
616
|
-
* @type {ProjectPlatform}
|
|
617
|
-
* @memberof Project
|
|
618
|
-
*/
|
|
619
168
|
'platform'?: ProjectPlatform | null;
|
|
620
|
-
/**
|
|
621
|
-
*
|
|
622
|
-
* @type {Array<string>}
|
|
623
|
-
* @memberof Project
|
|
624
|
-
*/
|
|
625
169
|
'integrations'?: Array<string>;
|
|
626
|
-
/**
|
|
627
|
-
*
|
|
628
|
-
* @type {ProjectCurrency}
|
|
629
|
-
* @memberof Project
|
|
630
|
-
*/
|
|
631
170
|
'currency': ProjectCurrency;
|
|
632
171
|
/**
|
|
633
172
|
* The public API key for the project which can be used to access basic information about the project such as the store url
|
|
634
|
-
* @type {string}
|
|
635
|
-
* @memberof Project
|
|
636
173
|
*/
|
|
637
174
|
'publicKey'?: string;
|
|
638
|
-
}
|
|
639
|
-
/**
|
|
640
|
-
*
|
|
641
|
-
* @export
|
|
642
|
-
* @interface ProjectCurrency
|
|
643
|
-
*/
|
|
644
|
-
export interface ProjectCurrency {
|
|
645
175
|
/**
|
|
646
|
-
*
|
|
647
|
-
* @type {string}
|
|
648
|
-
* @memberof ProjectCurrency
|
|
176
|
+
* The date and time the project was created.
|
|
649
177
|
*/
|
|
650
|
-
'
|
|
178
|
+
'createdAt': string;
|
|
651
179
|
/**
|
|
652
|
-
*
|
|
653
|
-
* @type {string}
|
|
654
|
-
* @memberof ProjectCurrency
|
|
180
|
+
* The user who created the project.
|
|
655
181
|
*/
|
|
182
|
+
'createdBy'?: string;
|
|
183
|
+
}
|
|
184
|
+
export interface ProjectCurrency {
|
|
185
|
+
'code': string;
|
|
656
186
|
'symbol': string;
|
|
657
187
|
}
|
|
658
|
-
/**
|
|
659
|
-
*
|
|
660
|
-
* @export
|
|
661
|
-
* @interface ProjectInvite
|
|
662
|
-
*/
|
|
663
188
|
export interface ProjectInvite {
|
|
664
|
-
/**
|
|
665
|
-
*
|
|
666
|
-
* @type {string}
|
|
667
|
-
* @memberof ProjectInvite
|
|
668
|
-
*/
|
|
669
189
|
'id': string;
|
|
670
|
-
/**
|
|
671
|
-
*
|
|
672
|
-
* @type {string}
|
|
673
|
-
* @memberof ProjectInvite
|
|
674
|
-
*/
|
|
675
190
|
'inviteeEmail': string;
|
|
676
|
-
/**
|
|
677
|
-
*
|
|
678
|
-
* @type {string}
|
|
679
|
-
* @memberof ProjectInvite
|
|
680
|
-
*/
|
|
681
191
|
'inviteeRole'?: string | null;
|
|
682
|
-
/**
|
|
683
|
-
*
|
|
684
|
-
* @type {string}
|
|
685
|
-
* @memberof ProjectInvite
|
|
686
|
-
*/
|
|
687
192
|
'createdAt': string;
|
|
688
|
-
/**
|
|
689
|
-
*
|
|
690
|
-
* @type {string}
|
|
691
|
-
* @memberof ProjectInvite
|
|
692
|
-
*/
|
|
693
193
|
'expiresAt': string;
|
|
694
|
-
/**
|
|
695
|
-
*
|
|
696
|
-
* @type {ProjectUser}
|
|
697
|
-
* @memberof ProjectInvite
|
|
698
|
-
*/
|
|
699
194
|
'inviter': ProjectUser;
|
|
700
195
|
}
|
|
701
|
-
/**
|
|
702
|
-
*
|
|
703
|
-
* @export
|
|
704
|
-
* @interface ProjectInvites
|
|
705
|
-
*/
|
|
706
196
|
export interface ProjectInvites {
|
|
707
|
-
/**
|
|
708
|
-
*
|
|
709
|
-
* @type {Array<ProjectInvite>}
|
|
710
|
-
* @memberof ProjectInvites
|
|
711
|
-
*/
|
|
712
197
|
'invites': Array<ProjectInvite>;
|
|
713
198
|
/**
|
|
714
199
|
* The token referencing the next page number
|
|
715
|
-
* @type {number}
|
|
716
|
-
* @memberof ProjectInvites
|
|
717
200
|
*/
|
|
718
201
|
'nextPageToken': number | null;
|
|
719
202
|
}
|
|
720
|
-
/**
|
|
721
|
-
*
|
|
722
|
-
* @export
|
|
723
|
-
* @interface ProjectLogo
|
|
724
|
-
*/
|
|
725
203
|
export interface ProjectLogo {
|
|
726
|
-
/**
|
|
727
|
-
*
|
|
728
|
-
* @type {string}
|
|
729
|
-
* @memberof ProjectLogo
|
|
730
|
-
*/
|
|
731
204
|
'url': string;
|
|
732
|
-
/**
|
|
733
|
-
*
|
|
734
|
-
* @type {{ [key: string]: string; }}
|
|
735
|
-
* @memberof ProjectLogo
|
|
736
|
-
*/
|
|
737
205
|
'meta': {
|
|
738
206
|
[key: string]: string;
|
|
739
207
|
};
|
|
740
208
|
}
|
|
741
|
-
/**
|
|
742
|
-
*
|
|
743
|
-
* @export
|
|
744
|
-
* @interface ProjectManager
|
|
745
|
-
*/
|
|
746
209
|
export interface ProjectManager {
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {string}
|
|
750
|
-
* @memberof ProjectManager
|
|
751
|
-
*/
|
|
752
210
|
'id': string;
|
|
753
|
-
/**
|
|
754
|
-
*
|
|
755
|
-
* @type {string}
|
|
756
|
-
* @memberof ProjectManager
|
|
757
|
-
*/
|
|
758
211
|
'name': string;
|
|
759
|
-
/**
|
|
760
|
-
*
|
|
761
|
-
* @type {Array<ProjectLogo>}
|
|
762
|
-
* @memberof ProjectManager
|
|
763
|
-
*/
|
|
764
212
|
'logos': Array<ProjectLogo>;
|
|
765
213
|
}
|
|
766
|
-
/**
|
|
767
|
-
*
|
|
768
|
-
* @export
|
|
769
|
-
* @interface ProjectPlatform
|
|
770
|
-
*/
|
|
771
214
|
export interface ProjectPlatform {
|
|
772
|
-
/**
|
|
773
|
-
*
|
|
774
|
-
* @type {string}
|
|
775
|
-
* @memberof ProjectPlatform
|
|
776
|
-
*/
|
|
777
215
|
'id'?: string;
|
|
778
|
-
/**
|
|
779
|
-
*
|
|
780
|
-
* @type {string}
|
|
781
|
-
* @memberof ProjectPlatform
|
|
782
|
-
*/
|
|
783
216
|
'name'?: string;
|
|
784
217
|
}
|
|
785
|
-
/**
|
|
786
|
-
*
|
|
787
|
-
* @export
|
|
788
|
-
* @interface ProjectUser
|
|
789
|
-
*/
|
|
790
218
|
export interface ProjectUser {
|
|
791
|
-
/**
|
|
792
|
-
*
|
|
793
|
-
* @type {string}
|
|
794
|
-
* @memberof ProjectUser
|
|
795
|
-
*/
|
|
796
219
|
'id': string;
|
|
797
|
-
/**
|
|
798
|
-
*
|
|
799
|
-
* @type {string}
|
|
800
|
-
* @memberof ProjectUser
|
|
801
|
-
*/
|
|
802
220
|
'userRef': string;
|
|
803
|
-
/**
|
|
804
|
-
*
|
|
805
|
-
* @type {string}
|
|
806
|
-
* @memberof ProjectUser
|
|
807
|
-
*/
|
|
808
221
|
'type'?: ProjectUserTypeEnum;
|
|
809
|
-
/**
|
|
810
|
-
*
|
|
811
|
-
* @type {string}
|
|
812
|
-
* @memberof ProjectUser
|
|
813
|
-
*/
|
|
814
222
|
'firstName': string | null;
|
|
815
|
-
/**
|
|
816
|
-
*
|
|
817
|
-
* @type {string}
|
|
818
|
-
* @memberof ProjectUser
|
|
819
|
-
*/
|
|
820
223
|
'lastName': string | null;
|
|
821
|
-
/**
|
|
822
|
-
*
|
|
823
|
-
* @type {string}
|
|
824
|
-
* @memberof ProjectUser
|
|
825
|
-
*/
|
|
826
224
|
'username': string | null;
|
|
827
|
-
/**
|
|
828
|
-
*
|
|
829
|
-
* @type {string}
|
|
830
|
-
* @memberof ProjectUser
|
|
831
|
-
*/
|
|
832
225
|
'email': string;
|
|
833
|
-
/**
|
|
834
|
-
*
|
|
835
|
-
* @type {ProjectUserAvatar}
|
|
836
|
-
* @memberof ProjectUser
|
|
837
|
-
*/
|
|
838
226
|
'avatar': ProjectUserAvatar;
|
|
839
|
-
/**
|
|
840
|
-
*
|
|
841
|
-
* @type {TwoFactorAuthentication}
|
|
842
|
-
* @memberof ProjectUser
|
|
843
|
-
*/
|
|
844
227
|
'twoFactorAuthentication': TwoFactorAuthentication;
|
|
845
228
|
/**
|
|
846
229
|
* Whether the user provides support for the project
|
|
847
|
-
* @type {boolean}
|
|
848
|
-
* @memberof ProjectUser
|
|
849
230
|
*/
|
|
850
231
|
'providesSupport'?: boolean;
|
|
232
|
+
'lastAccessed'?: string;
|
|
233
|
+
'createdAt': string;
|
|
851
234
|
}
|
|
852
235
|
export declare const ProjectUserTypeEnum: {
|
|
853
236
|
readonly User: "user";
|
|
@@ -855,170 +238,67 @@ export declare const ProjectUserTypeEnum: {
|
|
|
855
238
|
readonly Ghost: "ghost";
|
|
856
239
|
};
|
|
857
240
|
export type ProjectUserTypeEnum = typeof ProjectUserTypeEnum[keyof typeof ProjectUserTypeEnum];
|
|
858
|
-
/**
|
|
859
|
-
*
|
|
860
|
-
* @export
|
|
861
|
-
* @interface ProjectUserAvatar
|
|
862
|
-
*/
|
|
863
241
|
export interface ProjectUserAvatar {
|
|
864
|
-
/**
|
|
865
|
-
*
|
|
866
|
-
* @type {string}
|
|
867
|
-
* @memberof ProjectUserAvatar
|
|
868
|
-
*/
|
|
869
242
|
'original'?: string | null;
|
|
870
243
|
}
|
|
871
|
-
/**
|
|
872
|
-
*
|
|
873
|
-
* @export
|
|
874
|
-
* @interface ProjectUsers
|
|
875
|
-
*/
|
|
876
244
|
export interface ProjectUsers {
|
|
877
|
-
/**
|
|
878
|
-
*
|
|
879
|
-
* @type {Array<ProjectUser>}
|
|
880
|
-
* @memberof ProjectUsers
|
|
881
|
-
*/
|
|
882
245
|
'users': Array<ProjectUser>;
|
|
883
246
|
/**
|
|
884
247
|
* The token referencing the next page number
|
|
885
|
-
* @type {number}
|
|
886
|
-
* @memberof ProjectUsers
|
|
887
248
|
*/
|
|
888
249
|
'nextPageToken': number | null;
|
|
889
250
|
}
|
|
890
|
-
/**
|
|
891
|
-
*
|
|
892
|
-
* @export
|
|
893
|
-
* @interface ProjectsResponse
|
|
894
|
-
*/
|
|
895
251
|
export interface ProjectsResponse {
|
|
896
|
-
/**
|
|
897
|
-
*
|
|
898
|
-
* @type {Array<Project>}
|
|
899
|
-
* @memberof ProjectsResponse
|
|
900
|
-
*/
|
|
901
252
|
'projects': Array<Project>;
|
|
902
253
|
}
|
|
903
|
-
/**
|
|
904
|
-
*
|
|
905
|
-
* @export
|
|
906
|
-
* @interface SetupMethod
|
|
907
|
-
*/
|
|
908
254
|
export interface SetupMethod {
|
|
909
|
-
/**
|
|
910
|
-
*
|
|
911
|
-
* @type {string}
|
|
912
|
-
* @memberof SetupMethod
|
|
913
|
-
*/
|
|
914
255
|
'type': SetupMethodTypeEnum;
|
|
915
256
|
}
|
|
916
257
|
export declare const SetupMethodTypeEnum: {
|
|
917
258
|
readonly Authenticator: "authenticator";
|
|
918
259
|
};
|
|
919
260
|
export type SetupMethodTypeEnum = typeof SetupMethodTypeEnum[keyof typeof SetupMethodTypeEnum];
|
|
920
|
-
/**
|
|
921
|
-
*
|
|
922
|
-
* @export
|
|
923
|
-
* @interface Task
|
|
924
|
-
*/
|
|
925
261
|
export interface Task {
|
|
926
|
-
/**
|
|
927
|
-
*
|
|
928
|
-
* @type {string}
|
|
929
|
-
* @memberof Task
|
|
930
|
-
*/
|
|
931
262
|
'id': string;
|
|
932
|
-
/**
|
|
933
|
-
*
|
|
934
|
-
* @type {string}
|
|
935
|
-
* @memberof Task
|
|
936
|
-
*/
|
|
937
263
|
'content': string;
|
|
938
|
-
/**
|
|
939
|
-
*
|
|
940
|
-
* @type {TaskStatus}
|
|
941
|
-
* @memberof Task
|
|
942
|
-
*/
|
|
943
264
|
'status': TaskStatus;
|
|
944
265
|
/**
|
|
945
266
|
* The position of the task in its status group
|
|
946
|
-
* @type {number}
|
|
947
|
-
* @memberof Task
|
|
948
267
|
*/
|
|
949
268
|
'sortOrder': number;
|
|
950
269
|
/**
|
|
951
270
|
* The code of the chat channel associated with the task
|
|
952
|
-
* @type {string}
|
|
953
|
-
* @memberof Task
|
|
954
271
|
*/
|
|
955
272
|
'chatChannel': string | null;
|
|
956
273
|
/**
|
|
957
274
|
* The unique id of the user who owns the task
|
|
958
|
-
* @type {string}
|
|
959
|
-
* @memberof Task
|
|
960
275
|
*/
|
|
961
276
|
'owner': string | null;
|
|
962
277
|
/**
|
|
963
278
|
* The unique ids of the users who will receive notifications for the task
|
|
964
|
-
* @type {Array<string>}
|
|
965
|
-
* @memberof Task
|
|
966
279
|
*/
|
|
967
280
|
'notificationRecipients': Array<string>;
|
|
968
281
|
/**
|
|
969
282
|
* The estimated hours to complete the task
|
|
970
|
-
* @type {number}
|
|
971
|
-
* @memberof Task
|
|
972
283
|
*/
|
|
973
284
|
'estimatedHours': number | null;
|
|
974
285
|
/**
|
|
975
286
|
* The completion percentage of the task
|
|
976
|
-
* @type {number}
|
|
977
|
-
* @memberof Task
|
|
978
287
|
*/
|
|
979
288
|
'workProgress': number;
|
|
980
|
-
/**
|
|
981
|
-
*
|
|
982
|
-
* @type {OkrLevel}
|
|
983
|
-
* @memberof Task
|
|
984
|
-
*/
|
|
985
289
|
'okrLevel': OkrLevel | null;
|
|
986
|
-
/**
|
|
987
|
-
*
|
|
988
|
-
* @type {string}
|
|
989
|
-
* @memberof Task
|
|
990
|
-
*/
|
|
991
290
|
'parentTask': string | null;
|
|
992
291
|
/**
|
|
993
292
|
* Indicates the task deadline date
|
|
994
|
-
* @type {string}
|
|
995
|
-
* @memberof Task
|
|
996
293
|
*/
|
|
997
294
|
'endDate': string | null;
|
|
998
295
|
/**
|
|
999
296
|
* The unique id of the user who created the task
|
|
1000
|
-
* @type {string}
|
|
1001
|
-
* @memberof Task
|
|
1002
297
|
*/
|
|
1003
298
|
'createdUser': string;
|
|
1004
|
-
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {string}
|
|
1007
|
-
* @memberof Task
|
|
1008
|
-
*/
|
|
1009
299
|
'createdAt': string;
|
|
1010
|
-
/**
|
|
1011
|
-
*
|
|
1012
|
-
* @type {string}
|
|
1013
|
-
* @memberof Task
|
|
1014
|
-
*/
|
|
1015
300
|
'updatedAt': string;
|
|
1016
301
|
}
|
|
1017
|
-
/**
|
|
1018
|
-
*
|
|
1019
|
-
* @export
|
|
1020
|
-
* @enum {string}
|
|
1021
|
-
*/
|
|
1022
302
|
export declare const TaskStatus: {
|
|
1023
303
|
readonly Nice: "nice";
|
|
1024
304
|
readonly Need: "need";
|
|
@@ -1027,127 +307,42 @@ export declare const TaskStatus: {
|
|
|
1027
307
|
readonly Archived: "archived";
|
|
1028
308
|
};
|
|
1029
309
|
export type TaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
|
|
1030
|
-
/**
|
|
1031
|
-
*
|
|
1032
|
-
* @export
|
|
1033
|
-
* @interface TaskSummary
|
|
1034
|
-
*/
|
|
1035
310
|
export interface TaskSummary {
|
|
1036
|
-
/**
|
|
1037
|
-
*
|
|
1038
|
-
* @type {string}
|
|
1039
|
-
* @memberof TaskSummary
|
|
1040
|
-
*/
|
|
1041
311
|
'id': string;
|
|
1042
|
-
/**
|
|
1043
|
-
*
|
|
1044
|
-
* @type {string}
|
|
1045
|
-
* @memberof TaskSummary
|
|
1046
|
-
*/
|
|
1047
312
|
'content': string;
|
|
1048
|
-
/**
|
|
1049
|
-
*
|
|
1050
|
-
* @type {TaskStatus}
|
|
1051
|
-
* @memberof TaskSummary
|
|
1052
|
-
*/
|
|
1053
313
|
'status': TaskStatus;
|
|
1054
314
|
/**
|
|
1055
315
|
* The position of the task in its status group
|
|
1056
|
-
* @type {number}
|
|
1057
|
-
* @memberof TaskSummary
|
|
1058
316
|
*/
|
|
1059
317
|
'sortOrder': number;
|
|
1060
318
|
/**
|
|
1061
319
|
* The unique id of the user who owns the task
|
|
1062
|
-
* @type {string}
|
|
1063
|
-
* @memberof TaskSummary
|
|
1064
320
|
*/
|
|
1065
321
|
'owner': string | null;
|
|
1066
322
|
/**
|
|
1067
323
|
* The estimated hours to complete the task
|
|
1068
|
-
* @type {number}
|
|
1069
|
-
* @memberof TaskSummary
|
|
1070
324
|
*/
|
|
1071
325
|
'estimatedHours': number | null;
|
|
1072
326
|
/**
|
|
1073
327
|
* The completion percentage of the task
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof TaskSummary
|
|
1076
328
|
*/
|
|
1077
329
|
'workProgress': number;
|
|
1078
|
-
/**
|
|
1079
|
-
*
|
|
1080
|
-
* @type {OkrLevel}
|
|
1081
|
-
* @memberof TaskSummary
|
|
1082
|
-
*/
|
|
1083
330
|
'okrLevel': OkrLevel | null;
|
|
1084
|
-
/**
|
|
1085
|
-
*
|
|
1086
|
-
* @type {string}
|
|
1087
|
-
* @memberof TaskSummary
|
|
1088
|
-
*/
|
|
1089
331
|
'parentTask': string | null;
|
|
1090
332
|
/**
|
|
1091
333
|
* Indicates the task deadline date
|
|
1092
|
-
* @type {string}
|
|
1093
|
-
* @memberof TaskSummary
|
|
1094
334
|
*/
|
|
1095
335
|
'endDate': string | null;
|
|
1096
|
-
/**
|
|
1097
|
-
*
|
|
1098
|
-
* @type {string}
|
|
1099
|
-
* @memberof TaskSummary
|
|
1100
|
-
*/
|
|
1101
336
|
'createdAt': string;
|
|
1102
|
-
/**
|
|
1103
|
-
*
|
|
1104
|
-
* @type {string}
|
|
1105
|
-
* @memberof TaskSummary
|
|
1106
|
-
*/
|
|
1107
337
|
'updatedAt': string;
|
|
1108
338
|
}
|
|
1109
|
-
/**
|
|
1110
|
-
*
|
|
1111
|
-
* @export
|
|
1112
|
-
* @interface Template
|
|
1113
|
-
*/
|
|
1114
339
|
export interface Template {
|
|
1115
|
-
/**
|
|
1116
|
-
*
|
|
1117
|
-
* @type {string}
|
|
1118
|
-
* @memberof Template
|
|
1119
|
-
*/
|
|
1120
340
|
'name': string;
|
|
1121
|
-
/**
|
|
1122
|
-
*
|
|
1123
|
-
* @type {string}
|
|
1124
|
-
* @memberof Template
|
|
1125
|
-
*/
|
|
1126
341
|
'description': string;
|
|
1127
|
-
/**
|
|
1128
|
-
*
|
|
1129
|
-
* @type {TemplateCode}
|
|
1130
|
-
* @memberof Template
|
|
1131
|
-
*/
|
|
1132
342
|
'code': TemplateCode;
|
|
1133
|
-
/**
|
|
1134
|
-
*
|
|
1135
|
-
* @type {boolean}
|
|
1136
|
-
* @memberof Template
|
|
1137
|
-
*/
|
|
1138
343
|
'highlighted': boolean;
|
|
1139
|
-
/**
|
|
1140
|
-
*
|
|
1141
|
-
* @type {Icon}
|
|
1142
|
-
* @memberof Template
|
|
1143
|
-
*/
|
|
1144
344
|
'icon': Icon;
|
|
1145
345
|
}
|
|
1146
|
-
/**
|
|
1147
|
-
*
|
|
1148
|
-
* @export
|
|
1149
|
-
* @enum {string}
|
|
1150
|
-
*/
|
|
1151
346
|
export declare const TemplateCode: {
|
|
1152
347
|
readonly Shop: "shop";
|
|
1153
348
|
readonly ShopHeadless: "shop-headless";
|
|
@@ -1157,246 +352,106 @@ export declare const TemplateCode: {
|
|
|
1157
352
|
readonly Woocommerce: "woocommerce";
|
|
1158
353
|
};
|
|
1159
354
|
export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
|
|
1160
|
-
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @export
|
|
1163
|
-
* @interface TemplatesResponse
|
|
1164
|
-
*/
|
|
1165
355
|
export interface TemplatesResponse {
|
|
1166
|
-
/**
|
|
1167
|
-
*
|
|
1168
|
-
* @type {Array<Template>}
|
|
1169
|
-
* @memberof TemplatesResponse
|
|
1170
|
-
*/
|
|
1171
356
|
'templates': Array<Template>;
|
|
1172
357
|
}
|
|
1173
|
-
/**
|
|
1174
|
-
*
|
|
1175
|
-
* @export
|
|
1176
|
-
* @interface TwoFactorAuthentication
|
|
1177
|
-
*/
|
|
1178
358
|
export interface TwoFactorAuthentication {
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @type {boolean}
|
|
1182
|
-
* @memberof TwoFactorAuthentication
|
|
1183
|
-
*/
|
|
1184
359
|
'required'?: boolean;
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {Array<SetupMethod>}
|
|
1188
|
-
* @memberof TwoFactorAuthentication
|
|
1189
|
-
*/
|
|
1190
360
|
'setupMethods'?: Array<SetupMethod>;
|
|
1191
361
|
}
|
|
1192
|
-
/**
|
|
1193
|
-
*
|
|
1194
|
-
* @export
|
|
1195
|
-
* @interface UpdateBookmarkRequest
|
|
1196
|
-
*/
|
|
1197
362
|
export interface UpdateBookmarkRequest {
|
|
1198
|
-
/**
|
|
1199
|
-
*
|
|
1200
|
-
* @type {string}
|
|
1201
|
-
* @memberof UpdateBookmarkRequest
|
|
1202
|
-
*/
|
|
1203
363
|
'title'?: string;
|
|
1204
|
-
/**
|
|
1205
|
-
*
|
|
1206
|
-
* @type {BookmarkData}
|
|
1207
|
-
* @memberof UpdateBookmarkRequest
|
|
1208
|
-
*/
|
|
1209
364
|
'data'?: BookmarkData;
|
|
1210
|
-
/**
|
|
1211
|
-
*
|
|
1212
|
-
* @type {string}
|
|
1213
|
-
* @memberof UpdateBookmarkRequest
|
|
1214
|
-
*/
|
|
1215
365
|
'description'?: string;
|
|
1216
|
-
/**
|
|
1217
|
-
*
|
|
1218
|
-
* @type {string}
|
|
1219
|
-
* @memberof UpdateBookmarkRequest
|
|
1220
|
-
*/
|
|
1221
366
|
'color'?: string;
|
|
1222
367
|
/**
|
|
1223
368
|
* The icon name of the bookmark
|
|
1224
|
-
* @type {string}
|
|
1225
|
-
* @memberof UpdateBookmarkRequest
|
|
1226
369
|
*/
|
|
1227
370
|
'icon'?: string;
|
|
1228
371
|
/**
|
|
1229
372
|
* The ID of the tab the bookmark belongs to
|
|
1230
|
-
* @type {string}
|
|
1231
|
-
* @memberof UpdateBookmarkRequest
|
|
1232
373
|
*/
|
|
1233
374
|
'tabId'?: string | null;
|
|
1234
375
|
/**
|
|
1235
376
|
* The sort order of the bookmark in all tab
|
|
1236
|
-
* @type {number}
|
|
1237
|
-
* @memberof UpdateBookmarkRequest
|
|
1238
377
|
*/
|
|
1239
378
|
'sortOrder'?: number | null;
|
|
1240
379
|
/**
|
|
1241
380
|
* The sort order of the bookmark in the custom or favourite tab
|
|
1242
|
-
* @type {number}
|
|
1243
|
-
* @memberof UpdateBookmarkRequest
|
|
1244
381
|
*/
|
|
1245
382
|
'tabSortOrder'?: number | null;
|
|
1246
383
|
}
|
|
1247
|
-
/**
|
|
1248
|
-
*
|
|
1249
|
-
* @export
|
|
1250
|
-
* @interface UpdateBookmarkTabsRequest
|
|
1251
|
-
*/
|
|
1252
384
|
export interface UpdateBookmarkTabsRequest {
|
|
1253
|
-
/**
|
|
1254
|
-
*
|
|
1255
|
-
* @type {Array<UpdateBookmarkTabsRequestTabsInner>}
|
|
1256
|
-
* @memberof UpdateBookmarkTabsRequest
|
|
1257
|
-
*/
|
|
1258
385
|
'tabs'?: Array<UpdateBookmarkTabsRequestTabsInner>;
|
|
1259
386
|
}
|
|
1260
|
-
/**
|
|
1261
|
-
*
|
|
1262
|
-
* @export
|
|
1263
|
-
* @interface UpdateBookmarkTabsRequestTabsInner
|
|
1264
|
-
*/
|
|
1265
387
|
export interface UpdateBookmarkTabsRequestTabsInner {
|
|
1266
|
-
/**
|
|
1267
|
-
*
|
|
1268
|
-
* @type {string}
|
|
1269
|
-
* @memberof UpdateBookmarkTabsRequestTabsInner
|
|
1270
|
-
*/
|
|
1271
388
|
'id': string | null;
|
|
1272
|
-
/**
|
|
1273
|
-
*
|
|
1274
|
-
* @type {string}
|
|
1275
|
-
* @memberof UpdateBookmarkTabsRequestTabsInner
|
|
1276
|
-
*/
|
|
1277
389
|
'name': string;
|
|
1278
|
-
/**
|
|
1279
|
-
*
|
|
1280
|
-
* @type {number}
|
|
1281
|
-
* @memberof UpdateBookmarkTabsRequestTabsInner
|
|
1282
|
-
*/
|
|
1283
390
|
'sortOrder': number;
|
|
1284
391
|
}
|
|
1285
|
-
/**
|
|
1286
|
-
*
|
|
1287
|
-
* @export
|
|
1288
|
-
* @interface UpdateIntegrationRequest
|
|
1289
|
-
*/
|
|
1290
392
|
export interface UpdateIntegrationRequest {
|
|
1291
|
-
/**
|
|
1292
|
-
*
|
|
1293
|
-
* @type {object}
|
|
1294
|
-
* @memberof UpdateIntegrationRequest
|
|
1295
|
-
*/
|
|
1296
393
|
'config': object;
|
|
1297
394
|
}
|
|
1298
|
-
/**
|
|
1299
|
-
*
|
|
1300
|
-
* @export
|
|
1301
|
-
* @interface UpdateProjectRequest
|
|
1302
|
-
*/
|
|
1303
395
|
export interface UpdateProjectRequest {
|
|
1304
|
-
/**
|
|
1305
|
-
*
|
|
1306
|
-
* @type {string}
|
|
1307
|
-
* @memberof UpdateProjectRequest
|
|
1308
|
-
*/
|
|
1309
396
|
'name'?: string;
|
|
1310
|
-
/**
|
|
1311
|
-
*
|
|
1312
|
-
* @type {Array<ProjectLogo>}
|
|
1313
|
-
* @memberof UpdateProjectRequest
|
|
1314
|
-
*/
|
|
1315
397
|
'logos'?: Array<ProjectLogo>;
|
|
1316
398
|
}
|
|
1317
|
-
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @export
|
|
1320
|
-
* @interface UpdateTaskRequest
|
|
1321
|
-
*/
|
|
1322
399
|
export interface UpdateTaskRequest {
|
|
1323
|
-
/**
|
|
1324
|
-
*
|
|
1325
|
-
* @type {string}
|
|
1326
|
-
* @memberof UpdateTaskRequest
|
|
1327
|
-
*/
|
|
1328
400
|
'content'?: string;
|
|
1329
|
-
/**
|
|
1330
|
-
*
|
|
1331
|
-
* @type {TaskStatus}
|
|
1332
|
-
* @memberof UpdateTaskRequest
|
|
1333
|
-
*/
|
|
1334
401
|
'status'?: TaskStatus;
|
|
1335
402
|
/**
|
|
1336
403
|
* The position of the task in its status group
|
|
1337
|
-
* @type {number}
|
|
1338
|
-
* @memberof UpdateTaskRequest
|
|
1339
404
|
*/
|
|
1340
405
|
'sortOrder'?: number;
|
|
1341
406
|
/**
|
|
1342
407
|
* The unique id of the user who owns the task
|
|
1343
|
-
* @type {string}
|
|
1344
|
-
* @memberof UpdateTaskRequest
|
|
1345
408
|
*/
|
|
1346
409
|
'owner'?: string | null;
|
|
1347
410
|
/**
|
|
1348
411
|
* The unique ids of the users who will receive notifications for the task
|
|
1349
|
-
* @type {Array<string>}
|
|
1350
|
-
* @memberof UpdateTaskRequest
|
|
1351
412
|
*/
|
|
1352
413
|
'notificationRecipients'?: Array<string>;
|
|
1353
414
|
/**
|
|
1354
415
|
* The estimated hours to complete the task
|
|
1355
|
-
* @type {number}
|
|
1356
|
-
* @memberof UpdateTaskRequest
|
|
1357
416
|
*/
|
|
1358
417
|
'estimatedHours'?: number | null;
|
|
1359
418
|
/**
|
|
1360
419
|
* The completion percentage of the task
|
|
1361
|
-
* @type {number}
|
|
1362
|
-
* @memberof UpdateTaskRequest
|
|
1363
420
|
*/
|
|
1364
421
|
'workProgress'?: number;
|
|
1365
|
-
/**
|
|
1366
|
-
*
|
|
1367
|
-
* @type {OkrLevel}
|
|
1368
|
-
* @memberof UpdateTaskRequest
|
|
1369
|
-
*/
|
|
1370
422
|
'okrLevel'?: OkrLevel | null;
|
|
1371
|
-
/**
|
|
1372
|
-
*
|
|
1373
|
-
* @type {string}
|
|
1374
|
-
* @memberof UpdateTaskRequest
|
|
1375
|
-
*/
|
|
1376
423
|
'parentTask'?: string | null;
|
|
1377
424
|
/**
|
|
1378
425
|
* Indicates the task deadline date
|
|
1379
|
-
* @type {string}
|
|
1380
|
-
* @memberof UpdateTaskRequest
|
|
1381
426
|
*/
|
|
1382
427
|
'endDate'?: string | null;
|
|
1383
428
|
}
|
|
1384
|
-
/**
|
|
1385
|
-
*
|
|
1386
|
-
* @export
|
|
1387
|
-
* @interface UpdateUserRequest
|
|
1388
|
-
*/
|
|
1389
429
|
export interface UpdateUserRequest {
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
430
|
+
'firstName'?: string;
|
|
431
|
+
'lastName'?: string;
|
|
432
|
+
'username'?: string;
|
|
433
|
+
'avatar'?: string;
|
|
434
|
+
'providesSupport'?: boolean;
|
|
435
|
+
}
|
|
436
|
+
export interface UserClient {
|
|
437
|
+
'name': string;
|
|
438
|
+
'createdAt': string;
|
|
439
|
+
'lastAccessed': string;
|
|
440
|
+
}
|
|
441
|
+
export interface UserInvite {
|
|
442
|
+
'inviter': ProjectUser;
|
|
443
|
+
'createdAt': string;
|
|
444
|
+
}
|
|
445
|
+
export interface UserLog {
|
|
446
|
+
'id': string;
|
|
447
|
+
'action': string;
|
|
448
|
+
'context': {
|
|
449
|
+
[key: string]: any;
|
|
450
|
+
};
|
|
451
|
+
'createdAt': string;
|
|
1396
452
|
}
|
|
1397
453
|
/**
|
|
1398
454
|
* ProjectsApi - axios parameter creator
|
|
1399
|
-
* @export
|
|
1400
455
|
*/
|
|
1401
456
|
export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1402
457
|
/**
|
|
@@ -1536,6 +591,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1536
591
|
* @throws {RequiredError}
|
|
1537
592
|
*/
|
|
1538
593
|
getAuth: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
594
|
+
/**
|
|
595
|
+
* List the clients of the project that the user has access to
|
|
596
|
+
* @summary List clients
|
|
597
|
+
* @param {string} project Projects unique identifier
|
|
598
|
+
* @param {string} user the unique id of the user
|
|
599
|
+
* @param {*} [options] Override http request option.
|
|
600
|
+
* @throws {RequiredError}
|
|
601
|
+
*/
|
|
602
|
+
getClients: (project: string, user: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1539
603
|
/**
|
|
1540
604
|
* Get an integration
|
|
1541
605
|
* @summary Get integration
|
|
@@ -1565,6 +629,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1565
629
|
* @throws {RequiredError}
|
|
1566
630
|
*/
|
|
1567
631
|
getInvites: (project: string, search?: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
632
|
+
/**
|
|
633
|
+
* List the logs associated with a user on the project
|
|
634
|
+
* @summary List logs
|
|
635
|
+
* @param {string} project Projects unique identifier
|
|
636
|
+
* @param {string} user the unique id of the user
|
|
637
|
+
* @param {*} [options] Override http request option.
|
|
638
|
+
* @throws {RequiredError}
|
|
639
|
+
*/
|
|
640
|
+
getLogs: (project: string, user: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1568
641
|
/**
|
|
1569
642
|
* Get the AI-generated OKR summary for the project
|
|
1570
643
|
* @summary Get OKR summary
|
|
@@ -1615,6 +688,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1615
688
|
* @throws {RequiredError}
|
|
1616
689
|
*/
|
|
1617
690
|
getUser: (project: string, user: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
691
|
+
/**
|
|
692
|
+
* Get the details of the user\'s invite to the project
|
|
693
|
+
* @summary Get invite
|
|
694
|
+
* @param {string} project Projects unique identifier
|
|
695
|
+
* @param {string} user the unique id of the user
|
|
696
|
+
* @param {*} [options] Override http request option.
|
|
697
|
+
* @throws {RequiredError}
|
|
698
|
+
*/
|
|
699
|
+
getUserInvite: (project: string, user: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1618
700
|
/**
|
|
1619
701
|
* List the users associated with a project
|
|
1620
702
|
* @summary List project users
|
|
@@ -1758,7 +840,6 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1758
840
|
};
|
|
1759
841
|
/**
|
|
1760
842
|
* ProjectsApi - functional programming interface
|
|
1761
|
-
* @export
|
|
1762
843
|
*/
|
|
1763
844
|
export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
1764
845
|
/**
|
|
@@ -1898,6 +979,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1898
979
|
* @throws {RequiredError}
|
|
1899
980
|
*/
|
|
1900
981
|
getAuth(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthResponse>>;
|
|
982
|
+
/**
|
|
983
|
+
* List the clients of the project that the user has access to
|
|
984
|
+
* @summary List clients
|
|
985
|
+
* @param {string} project Projects unique identifier
|
|
986
|
+
* @param {string} user the unique id of the user
|
|
987
|
+
* @param {*} [options] Override http request option.
|
|
988
|
+
* @throws {RequiredError}
|
|
989
|
+
*/
|
|
990
|
+
getClients(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClients200Response>>;
|
|
1901
991
|
/**
|
|
1902
992
|
* Get an integration
|
|
1903
993
|
* @summary Get integration
|
|
@@ -1927,6 +1017,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1927
1017
|
* @throws {RequiredError}
|
|
1928
1018
|
*/
|
|
1929
1019
|
getInvites(project: string, search?: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectInvites>>;
|
|
1020
|
+
/**
|
|
1021
|
+
* List the logs associated with a user on the project
|
|
1022
|
+
* @summary List logs
|
|
1023
|
+
* @param {string} project Projects unique identifier
|
|
1024
|
+
* @param {string} user the unique id of the user
|
|
1025
|
+
* @param {*} [options] Override http request option.
|
|
1026
|
+
* @throws {RequiredError}
|
|
1027
|
+
*/
|
|
1028
|
+
getLogs(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLogs200Response>>;
|
|
1930
1029
|
/**
|
|
1931
1030
|
* Get the AI-generated OKR summary for the project
|
|
1932
1031
|
* @summary Get OKR summary
|
|
@@ -1977,6 +1076,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1977
1076
|
* @throws {RequiredError}
|
|
1978
1077
|
*/
|
|
1979
1078
|
getUser(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectUser>>;
|
|
1079
|
+
/**
|
|
1080
|
+
* Get the details of the user\'s invite to the project
|
|
1081
|
+
* @summary Get invite
|
|
1082
|
+
* @param {string} project Projects unique identifier
|
|
1083
|
+
* @param {string} user the unique id of the user
|
|
1084
|
+
* @param {*} [options] Override http request option.
|
|
1085
|
+
* @throws {RequiredError}
|
|
1086
|
+
*/
|
|
1087
|
+
getUserInvite(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserInvite>>;
|
|
1980
1088
|
/**
|
|
1981
1089
|
* List the users associated with a project
|
|
1982
1090
|
* @summary List project users
|
|
@@ -2120,7 +1228,6 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
2120
1228
|
};
|
|
2121
1229
|
/**
|
|
2122
1230
|
* ProjectsApi - factory interface
|
|
2123
|
-
* @export
|
|
2124
1231
|
*/
|
|
2125
1232
|
export declare const ProjectsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2126
1233
|
/**
|
|
@@ -2251,6 +1358,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
2251
1358
|
* @throws {RequiredError}
|
|
2252
1359
|
*/
|
|
2253
1360
|
getAuth(requestParameters: ProjectsApiGetAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthResponse>;
|
|
1361
|
+
/**
|
|
1362
|
+
* List the clients of the project that the user has access to
|
|
1363
|
+
* @summary List clients
|
|
1364
|
+
* @param {ProjectsApiGetClientsRequest} requestParameters Request parameters.
|
|
1365
|
+
* @param {*} [options] Override http request option.
|
|
1366
|
+
* @throws {RequiredError}
|
|
1367
|
+
*/
|
|
1368
|
+
getClients(requestParameters: ProjectsApiGetClientsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetClients200Response>;
|
|
2254
1369
|
/**
|
|
2255
1370
|
* Get an integration
|
|
2256
1371
|
* @summary Get integration
|
|
@@ -2275,6 +1390,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
2275
1390
|
* @throws {RequiredError}
|
|
2276
1391
|
*/
|
|
2277
1392
|
getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectInvites>;
|
|
1393
|
+
/**
|
|
1394
|
+
* List the logs associated with a user on the project
|
|
1395
|
+
* @summary List logs
|
|
1396
|
+
* @param {ProjectsApiGetLogsRequest} requestParameters Request parameters.
|
|
1397
|
+
* @param {*} [options] Override http request option.
|
|
1398
|
+
* @throws {RequiredError}
|
|
1399
|
+
*/
|
|
1400
|
+
getLogs(requestParameters: ProjectsApiGetLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetLogs200Response>;
|
|
2278
1401
|
/**
|
|
2279
1402
|
* Get the AI-generated OKR summary for the project
|
|
2280
1403
|
* @summary Get OKR summary
|
|
@@ -2323,6 +1446,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
2323
1446
|
* @throws {RequiredError}
|
|
2324
1447
|
*/
|
|
2325
1448
|
getUser(requestParameters: ProjectsApiGetUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectUser>;
|
|
1449
|
+
/**
|
|
1450
|
+
* Get the details of the user\'s invite to the project
|
|
1451
|
+
* @summary Get invite
|
|
1452
|
+
* @param {ProjectsApiGetUserInviteRequest} requestParameters Request parameters.
|
|
1453
|
+
* @param {*} [options] Override http request option.
|
|
1454
|
+
* @throws {RequiredError}
|
|
1455
|
+
*/
|
|
1456
|
+
getUserInvite(requestParameters: ProjectsApiGetUserInviteRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserInvite>;
|
|
2326
1457
|
/**
|
|
2327
1458
|
* List the users associated with a project
|
|
2328
1459
|
* @summary List project users
|
|
@@ -2446,745 +1577,549 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
2446
1577
|
};
|
|
2447
1578
|
/**
|
|
2448
1579
|
* Request parameters for archiveTasks operation in ProjectsApi.
|
|
2449
|
-
* @export
|
|
2450
|
-
* @interface ProjectsApiArchiveTasksRequest
|
|
2451
1580
|
*/
|
|
2452
1581
|
export interface ProjectsApiArchiveTasksRequest {
|
|
2453
1582
|
/**
|
|
2454
1583
|
* Projects unique identifier
|
|
2455
|
-
* @type {string}
|
|
2456
|
-
* @memberof ProjectsApiArchiveTasks
|
|
2457
1584
|
*/
|
|
2458
1585
|
readonly project: string;
|
|
2459
1586
|
}
|
|
2460
1587
|
/**
|
|
2461
1588
|
* Request parameters for bulkUpdateTasks operation in ProjectsApi.
|
|
2462
|
-
* @export
|
|
2463
|
-
* @interface ProjectsApiBulkUpdateTasksRequest
|
|
2464
1589
|
*/
|
|
2465
1590
|
export interface ProjectsApiBulkUpdateTasksRequest {
|
|
2466
1591
|
/**
|
|
2467
1592
|
* Projects unique identifier
|
|
2468
|
-
* @type {string}
|
|
2469
|
-
* @memberof ProjectsApiBulkUpdateTasks
|
|
2470
1593
|
*/
|
|
2471
1594
|
readonly project: string;
|
|
2472
1595
|
/**
|
|
2473
1596
|
* Update multiple tasks in the workflow
|
|
2474
|
-
* @type {BulkUpdateTasksRequest}
|
|
2475
|
-
* @memberof ProjectsApiBulkUpdateTasks
|
|
2476
1597
|
*/
|
|
2477
1598
|
readonly bulkUpdateTasksRequest: BulkUpdateTasksRequest;
|
|
2478
1599
|
}
|
|
2479
1600
|
/**
|
|
2480
1601
|
* Request parameters for createAuth operation in ProjectsApi.
|
|
2481
|
-
* @export
|
|
2482
|
-
* @interface ProjectsApiCreateAuthRequest
|
|
2483
1602
|
*/
|
|
2484
1603
|
export interface ProjectsApiCreateAuthRequest {
|
|
2485
1604
|
/**
|
|
2486
1605
|
* Projects unique identifier
|
|
2487
|
-
* @type {string}
|
|
2488
|
-
* @memberof ProjectsApiCreateAuth
|
|
2489
1606
|
*/
|
|
2490
1607
|
readonly project: string;
|
|
2491
1608
|
}
|
|
2492
1609
|
/**
|
|
2493
1610
|
* Request parameters for createBookmark operation in ProjectsApi.
|
|
2494
|
-
* @export
|
|
2495
|
-
* @interface ProjectsApiCreateBookmarkRequest
|
|
2496
1611
|
*/
|
|
2497
1612
|
export interface ProjectsApiCreateBookmarkRequest {
|
|
2498
1613
|
/**
|
|
2499
1614
|
* Projects unique identifier
|
|
2500
|
-
* @type {string}
|
|
2501
|
-
* @memberof ProjectsApiCreateBookmark
|
|
2502
1615
|
*/
|
|
2503
1616
|
readonly project: string;
|
|
2504
1617
|
/**
|
|
2505
1618
|
* Create a new bookmark in the project
|
|
2506
|
-
* @type {CreateBookmarkRequest}
|
|
2507
|
-
* @memberof ProjectsApiCreateBookmark
|
|
2508
1619
|
*/
|
|
2509
1620
|
readonly createBookmarkRequest: CreateBookmarkRequest;
|
|
2510
1621
|
}
|
|
2511
1622
|
/**
|
|
2512
1623
|
* Request parameters for createInvite operation in ProjectsApi.
|
|
2513
|
-
* @export
|
|
2514
|
-
* @interface ProjectsApiCreateInviteRequest
|
|
2515
1624
|
*/
|
|
2516
1625
|
export interface ProjectsApiCreateInviteRequest {
|
|
2517
1626
|
/**
|
|
2518
1627
|
* Projects unique identifier
|
|
2519
|
-
* @type {string}
|
|
2520
|
-
* @memberof ProjectsApiCreateInvite
|
|
2521
1628
|
*/
|
|
2522
1629
|
readonly project: string;
|
|
2523
1630
|
/**
|
|
2524
1631
|
* Request body to invite user
|
|
2525
|
-
* @type {CreateInviteRequest}
|
|
2526
|
-
* @memberof ProjectsApiCreateInvite
|
|
2527
1632
|
*/
|
|
2528
1633
|
readonly createInviteRequest: CreateInviteRequest;
|
|
2529
1634
|
}
|
|
2530
1635
|
/**
|
|
2531
1636
|
* Request parameters for createProject operation in ProjectsApi.
|
|
2532
|
-
* @export
|
|
2533
|
-
* @interface ProjectsApiCreateProjectRequest
|
|
2534
1637
|
*/
|
|
2535
1638
|
export interface ProjectsApiCreateProjectRequest {
|
|
2536
1639
|
/**
|
|
2537
1640
|
* Project to create
|
|
2538
|
-
* @type {CreateProjectRequest}
|
|
2539
|
-
* @memberof ProjectsApiCreateProject
|
|
2540
1641
|
*/
|
|
2541
1642
|
readonly createProjectRequest: CreateProjectRequest;
|
|
2542
1643
|
}
|
|
2543
1644
|
/**
|
|
2544
1645
|
* Request parameters for createTask operation in ProjectsApi.
|
|
2545
|
-
* @export
|
|
2546
|
-
* @interface ProjectsApiCreateTaskRequest
|
|
2547
1646
|
*/
|
|
2548
1647
|
export interface ProjectsApiCreateTaskRequest {
|
|
2549
1648
|
/**
|
|
2550
1649
|
* Projects unique identifier
|
|
2551
|
-
* @type {string}
|
|
2552
|
-
* @memberof ProjectsApiCreateTask
|
|
2553
1650
|
*/
|
|
2554
1651
|
readonly project: string;
|
|
2555
1652
|
/**
|
|
2556
1653
|
* Create a new task in the workflow
|
|
2557
|
-
* @type {CreateTaskRequest}
|
|
2558
|
-
* @memberof ProjectsApiCreateTask
|
|
2559
1654
|
*/
|
|
2560
1655
|
readonly createTaskRequest?: CreateTaskRequest;
|
|
2561
1656
|
}
|
|
2562
1657
|
/**
|
|
2563
1658
|
* Request parameters for deleteAuth operation in ProjectsApi.
|
|
2564
|
-
* @export
|
|
2565
|
-
* @interface ProjectsApiDeleteAuthRequest
|
|
2566
1659
|
*/
|
|
2567
1660
|
export interface ProjectsApiDeleteAuthRequest {
|
|
2568
1661
|
/**
|
|
2569
1662
|
* Projects unique identifier
|
|
2570
|
-
* @type {string}
|
|
2571
|
-
* @memberof ProjectsApiDeleteAuth
|
|
2572
1663
|
*/
|
|
2573
1664
|
readonly project: string;
|
|
2574
1665
|
/**
|
|
2575
1666
|
* The unique id of the auth token
|
|
2576
|
-
* @type {string}
|
|
2577
|
-
* @memberof ProjectsApiDeleteAuth
|
|
2578
1667
|
*/
|
|
2579
1668
|
readonly auth: string;
|
|
2580
1669
|
}
|
|
2581
1670
|
/**
|
|
2582
1671
|
* Request parameters for deleteBookmark operation in ProjectsApi.
|
|
2583
|
-
* @export
|
|
2584
|
-
* @interface ProjectsApiDeleteBookmarkRequest
|
|
2585
1672
|
*/
|
|
2586
1673
|
export interface ProjectsApiDeleteBookmarkRequest {
|
|
2587
1674
|
/**
|
|
2588
1675
|
* Projects unique identifier
|
|
2589
|
-
* @type {string}
|
|
2590
|
-
* @memberof ProjectsApiDeleteBookmark
|
|
2591
1676
|
*/
|
|
2592
1677
|
readonly project: string;
|
|
2593
1678
|
/**
|
|
2594
1679
|
* The unique id of the bookmark
|
|
2595
|
-
* @type {string}
|
|
2596
|
-
* @memberof ProjectsApiDeleteBookmark
|
|
2597
1680
|
*/
|
|
2598
1681
|
readonly id: string;
|
|
2599
1682
|
}
|
|
2600
1683
|
/**
|
|
2601
1684
|
* Request parameters for deleteInvite operation in ProjectsApi.
|
|
2602
|
-
* @export
|
|
2603
|
-
* @interface ProjectsApiDeleteInviteRequest
|
|
2604
1685
|
*/
|
|
2605
1686
|
export interface ProjectsApiDeleteInviteRequest {
|
|
2606
1687
|
/**
|
|
2607
1688
|
* Projects unique identifier
|
|
2608
|
-
* @type {string}
|
|
2609
|
-
* @memberof ProjectsApiDeleteInvite
|
|
2610
1689
|
*/
|
|
2611
1690
|
readonly project: string;
|
|
2612
1691
|
/**
|
|
2613
1692
|
* The unique id of the invite
|
|
2614
|
-
* @type {string}
|
|
2615
|
-
* @memberof ProjectsApiDeleteInvite
|
|
2616
1693
|
*/
|
|
2617
1694
|
readonly invite: string;
|
|
2618
1695
|
}
|
|
2619
1696
|
/**
|
|
2620
1697
|
* Request parameters for deleteProject operation in ProjectsApi.
|
|
2621
|
-
* @export
|
|
2622
|
-
* @interface ProjectsApiDeleteProjectRequest
|
|
2623
1698
|
*/
|
|
2624
1699
|
export interface ProjectsApiDeleteProjectRequest {
|
|
2625
1700
|
/**
|
|
2626
1701
|
* Projects unique identifier
|
|
2627
|
-
* @type {string}
|
|
2628
|
-
* @memberof ProjectsApiDeleteProject
|
|
2629
1702
|
*/
|
|
2630
1703
|
readonly project: string;
|
|
2631
1704
|
}
|
|
2632
1705
|
/**
|
|
2633
1706
|
* Request parameters for deleteTask operation in ProjectsApi.
|
|
2634
|
-
* @export
|
|
2635
|
-
* @interface ProjectsApiDeleteTaskRequest
|
|
2636
1707
|
*/
|
|
2637
1708
|
export interface ProjectsApiDeleteTaskRequest {
|
|
2638
1709
|
/**
|
|
2639
1710
|
* Projects unique identifier
|
|
2640
|
-
* @type {string}
|
|
2641
|
-
* @memberof ProjectsApiDeleteTask
|
|
2642
1711
|
*/
|
|
2643
1712
|
readonly project: string;
|
|
2644
1713
|
/**
|
|
2645
1714
|
* The unique id of the task
|
|
2646
|
-
* @type {string}
|
|
2647
|
-
* @memberof ProjectsApiDeleteTask
|
|
2648
1715
|
*/
|
|
2649
1716
|
readonly id: string;
|
|
2650
1717
|
}
|
|
2651
1718
|
/**
|
|
2652
1719
|
* Request parameters for deleteUser operation in ProjectsApi.
|
|
2653
|
-
* @export
|
|
2654
|
-
* @interface ProjectsApiDeleteUserRequest
|
|
2655
1720
|
*/
|
|
2656
1721
|
export interface ProjectsApiDeleteUserRequest {
|
|
2657
1722
|
/**
|
|
2658
1723
|
* Projects unique identifier
|
|
2659
|
-
* @type {string}
|
|
2660
|
-
* @memberof ProjectsApiDeleteUser
|
|
2661
1724
|
*/
|
|
2662
1725
|
readonly project: string;
|
|
2663
1726
|
/**
|
|
2664
1727
|
* the unique id of the user
|
|
2665
|
-
* @type {string}
|
|
2666
|
-
* @memberof ProjectsApiDeleteUser
|
|
2667
1728
|
*/
|
|
2668
1729
|
readonly user: string;
|
|
2669
1730
|
}
|
|
2670
1731
|
/**
|
|
2671
1732
|
* Request parameters for exportOkrs operation in ProjectsApi.
|
|
2672
|
-
* @export
|
|
2673
|
-
* @interface ProjectsApiExportOkrsRequest
|
|
2674
1733
|
*/
|
|
2675
1734
|
export interface ProjectsApiExportOkrsRequest {
|
|
2676
1735
|
/**
|
|
2677
1736
|
* Projects unique identifier
|
|
2678
|
-
* @type {string}
|
|
2679
|
-
* @memberof ProjectsApiExportOkrs
|
|
2680
1737
|
*/
|
|
2681
1738
|
readonly project: string;
|
|
2682
1739
|
}
|
|
2683
1740
|
/**
|
|
2684
1741
|
* Request parameters for exportTasks operation in ProjectsApi.
|
|
2685
|
-
* @export
|
|
2686
|
-
* @interface ProjectsApiExportTasksRequest
|
|
2687
1742
|
*/
|
|
2688
1743
|
export interface ProjectsApiExportTasksRequest {
|
|
2689
1744
|
/**
|
|
2690
1745
|
* Projects unique identifier
|
|
2691
|
-
* @type {string}
|
|
2692
|
-
* @memberof ProjectsApiExportTasks
|
|
2693
1746
|
*/
|
|
2694
1747
|
readonly project: string;
|
|
2695
1748
|
}
|
|
2696
1749
|
/**
|
|
2697
1750
|
* Request parameters for getAuth operation in ProjectsApi.
|
|
2698
|
-
* @export
|
|
2699
|
-
* @interface ProjectsApiGetAuthRequest
|
|
2700
1751
|
*/
|
|
2701
1752
|
export interface ProjectsApiGetAuthRequest {
|
|
2702
1753
|
/**
|
|
2703
1754
|
* Projects unique identifier
|
|
2704
|
-
* @type {string}
|
|
2705
|
-
* @memberof ProjectsApiGetAuth
|
|
2706
1755
|
*/
|
|
2707
1756
|
readonly project: string;
|
|
2708
1757
|
}
|
|
1758
|
+
/**
|
|
1759
|
+
* Request parameters for getClients operation in ProjectsApi.
|
|
1760
|
+
*/
|
|
1761
|
+
export interface ProjectsApiGetClientsRequest {
|
|
1762
|
+
/**
|
|
1763
|
+
* Projects unique identifier
|
|
1764
|
+
*/
|
|
1765
|
+
readonly project: string;
|
|
1766
|
+
/**
|
|
1767
|
+
* the unique id of the user
|
|
1768
|
+
*/
|
|
1769
|
+
readonly user: string;
|
|
1770
|
+
}
|
|
2709
1771
|
/**
|
|
2710
1772
|
* Request parameters for getIntegration operation in ProjectsApi.
|
|
2711
|
-
* @export
|
|
2712
|
-
* @interface ProjectsApiGetIntegrationRequest
|
|
2713
1773
|
*/
|
|
2714
1774
|
export interface ProjectsApiGetIntegrationRequest {
|
|
2715
1775
|
/**
|
|
2716
1776
|
* Projects unique identifier
|
|
2717
|
-
* @type {string}
|
|
2718
|
-
* @memberof ProjectsApiGetIntegration
|
|
2719
1777
|
*/
|
|
2720
1778
|
readonly project: string;
|
|
2721
1779
|
/**
|
|
2722
1780
|
* Integrations unique code
|
|
2723
|
-
* @type {string}
|
|
2724
|
-
* @memberof ProjectsApiGetIntegration
|
|
2725
1781
|
*/
|
|
2726
1782
|
readonly integration: string;
|
|
2727
1783
|
}
|
|
2728
1784
|
/**
|
|
2729
1785
|
* Request parameters for getIntegrations operation in ProjectsApi.
|
|
2730
|
-
* @export
|
|
2731
|
-
* @interface ProjectsApiGetIntegrationsRequest
|
|
2732
1786
|
*/
|
|
2733
1787
|
export interface ProjectsApiGetIntegrationsRequest {
|
|
2734
1788
|
/**
|
|
2735
1789
|
* Projects unique identifier
|
|
2736
|
-
* @type {string}
|
|
2737
|
-
* @memberof ProjectsApiGetIntegrations
|
|
2738
1790
|
*/
|
|
2739
1791
|
readonly project: string;
|
|
2740
1792
|
/**
|
|
2741
1793
|
* Include soft deleted integrations
|
|
2742
|
-
* @type {string}
|
|
2743
|
-
* @memberof ProjectsApiGetIntegrations
|
|
2744
1794
|
*/
|
|
2745
1795
|
readonly withUninstalled?: string;
|
|
2746
1796
|
}
|
|
2747
1797
|
/**
|
|
2748
1798
|
* Request parameters for getInvites operation in ProjectsApi.
|
|
2749
|
-
* @export
|
|
2750
|
-
* @interface ProjectsApiGetInvitesRequest
|
|
2751
1799
|
*/
|
|
2752
1800
|
export interface ProjectsApiGetInvitesRequest {
|
|
2753
1801
|
/**
|
|
2754
1802
|
* Projects unique identifier
|
|
2755
|
-
* @type {string}
|
|
2756
|
-
* @memberof ProjectsApiGetInvites
|
|
2757
1803
|
*/
|
|
2758
1804
|
readonly project: string;
|
|
2759
1805
|
/**
|
|
2760
1806
|
* Search term used to filter results by
|
|
2761
|
-
* @type {string}
|
|
2762
|
-
* @memberof ProjectsApiGetInvites
|
|
2763
1807
|
*/
|
|
2764
1808
|
readonly search?: string;
|
|
2765
1809
|
/**
|
|
2766
1810
|
* Page reference token
|
|
2767
|
-
* @type {number}
|
|
2768
|
-
* @memberof ProjectsApiGetInvites
|
|
2769
1811
|
*/
|
|
2770
1812
|
readonly pageToken?: number;
|
|
2771
1813
|
/**
|
|
2772
1814
|
* Max page size. This is the maximum page size that will be returned, but it could be smaller if there are less records than the max page size.
|
|
2773
|
-
* @type {number}
|
|
2774
|
-
* @memberof ProjectsApiGetInvites
|
|
2775
1815
|
*/
|
|
2776
1816
|
readonly pageSize?: number;
|
|
2777
1817
|
}
|
|
1818
|
+
/**
|
|
1819
|
+
* Request parameters for getLogs operation in ProjectsApi.
|
|
1820
|
+
*/
|
|
1821
|
+
export interface ProjectsApiGetLogsRequest {
|
|
1822
|
+
/**
|
|
1823
|
+
* Projects unique identifier
|
|
1824
|
+
*/
|
|
1825
|
+
readonly project: string;
|
|
1826
|
+
/**
|
|
1827
|
+
* the unique id of the user
|
|
1828
|
+
*/
|
|
1829
|
+
readonly user: string;
|
|
1830
|
+
}
|
|
2778
1831
|
/**
|
|
2779
1832
|
* Request parameters for getOkrSummary operation in ProjectsApi.
|
|
2780
|
-
* @export
|
|
2781
|
-
* @interface ProjectsApiGetOkrSummaryRequest
|
|
2782
1833
|
*/
|
|
2783
1834
|
export interface ProjectsApiGetOkrSummaryRequest {
|
|
2784
1835
|
/**
|
|
2785
1836
|
* Projects unique identifier
|
|
2786
|
-
* @type {string}
|
|
2787
|
-
* @memberof ProjectsApiGetOkrSummary
|
|
2788
1837
|
*/
|
|
2789
1838
|
readonly project: string;
|
|
2790
1839
|
}
|
|
2791
1840
|
/**
|
|
2792
1841
|
* Request parameters for getProject operation in ProjectsApi.
|
|
2793
|
-
* @export
|
|
2794
|
-
* @interface ProjectsApiGetProjectRequest
|
|
2795
1842
|
*/
|
|
2796
1843
|
export interface ProjectsApiGetProjectRequest {
|
|
2797
1844
|
/**
|
|
2798
1845
|
* Projects unique identifier
|
|
2799
|
-
* @type {string}
|
|
2800
|
-
* @memberof ProjectsApiGetProject
|
|
2801
1846
|
*/
|
|
2802
1847
|
readonly project: string;
|
|
2803
1848
|
}
|
|
2804
1849
|
/**
|
|
2805
1850
|
* Request parameters for getProjects operation in ProjectsApi.
|
|
2806
|
-
* @export
|
|
2807
|
-
* @interface ProjectsApiGetProjectsRequest
|
|
2808
1851
|
*/
|
|
2809
1852
|
export interface ProjectsApiGetProjectsRequest {
|
|
2810
1853
|
/**
|
|
2811
1854
|
* What project it is
|
|
2812
|
-
* @type {string}
|
|
2813
|
-
* @memberof ProjectsApiGetProjects
|
|
2814
1855
|
*/
|
|
2815
1856
|
readonly project?: string;
|
|
2816
1857
|
}
|
|
2817
1858
|
/**
|
|
2818
1859
|
* Request parameters for getTask operation in ProjectsApi.
|
|
2819
|
-
* @export
|
|
2820
|
-
* @interface ProjectsApiGetTaskRequest
|
|
2821
1860
|
*/
|
|
2822
1861
|
export interface ProjectsApiGetTaskRequest {
|
|
2823
1862
|
/**
|
|
2824
1863
|
* Projects unique identifier
|
|
2825
|
-
* @type {string}
|
|
2826
|
-
* @memberof ProjectsApiGetTask
|
|
2827
1864
|
*/
|
|
2828
1865
|
readonly project: string;
|
|
2829
1866
|
/**
|
|
2830
1867
|
* The unique id of the task
|
|
2831
|
-
* @type {string}
|
|
2832
|
-
* @memberof ProjectsApiGetTask
|
|
2833
1868
|
*/
|
|
2834
1869
|
readonly id: string;
|
|
2835
1870
|
}
|
|
2836
1871
|
/**
|
|
2837
1872
|
* Request parameters for getTemplates operation in ProjectsApi.
|
|
2838
|
-
* @export
|
|
2839
|
-
* @interface ProjectsApiGetTemplatesRequest
|
|
2840
1873
|
*/
|
|
2841
1874
|
export interface ProjectsApiGetTemplatesRequest {
|
|
2842
1875
|
/**
|
|
2843
1876
|
* The project being accessed
|
|
2844
|
-
* @type {string}
|
|
2845
|
-
* @memberof ProjectsApiGetTemplates
|
|
2846
1877
|
*/
|
|
2847
1878
|
readonly project?: string;
|
|
2848
1879
|
}
|
|
2849
1880
|
/**
|
|
2850
1881
|
* Request parameters for getUser operation in ProjectsApi.
|
|
2851
|
-
* @export
|
|
2852
|
-
* @interface ProjectsApiGetUserRequest
|
|
2853
1882
|
*/
|
|
2854
1883
|
export interface ProjectsApiGetUserRequest {
|
|
2855
1884
|
/**
|
|
2856
1885
|
* Projects unique identifier
|
|
2857
|
-
* @type {string}
|
|
2858
|
-
* @memberof ProjectsApiGetUser
|
|
2859
1886
|
*/
|
|
2860
1887
|
readonly project: string;
|
|
2861
1888
|
/**
|
|
2862
1889
|
* the unique id of the user
|
|
2863
|
-
|
|
2864
|
-
|
|
1890
|
+
*/
|
|
1891
|
+
readonly user: string;
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
* Request parameters for getUserInvite operation in ProjectsApi.
|
|
1895
|
+
*/
|
|
1896
|
+
export interface ProjectsApiGetUserInviteRequest {
|
|
1897
|
+
/**
|
|
1898
|
+
* Projects unique identifier
|
|
1899
|
+
*/
|
|
1900
|
+
readonly project: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* the unique id of the user
|
|
2865
1903
|
*/
|
|
2866
1904
|
readonly user: string;
|
|
2867
1905
|
}
|
|
2868
1906
|
/**
|
|
2869
1907
|
* Request parameters for getUsers operation in ProjectsApi.
|
|
2870
|
-
* @export
|
|
2871
|
-
* @interface ProjectsApiGetUsersRequest
|
|
2872
1908
|
*/
|
|
2873
1909
|
export interface ProjectsApiGetUsersRequest {
|
|
2874
1910
|
/**
|
|
2875
1911
|
* Projects unique identifier
|
|
2876
|
-
* @type {string}
|
|
2877
|
-
* @memberof ProjectsApiGetUsers
|
|
2878
1912
|
*/
|
|
2879
1913
|
readonly project: string;
|
|
2880
1914
|
/**
|
|
2881
1915
|
* Search term used to filter results by
|
|
2882
|
-
* @type {string}
|
|
2883
|
-
* @memberof ProjectsApiGetUsers
|
|
2884
1916
|
*/
|
|
2885
1917
|
readonly search?: string;
|
|
2886
1918
|
/**
|
|
2887
1919
|
* Page reference token
|
|
2888
|
-
* @type {number}
|
|
2889
|
-
* @memberof ProjectsApiGetUsers
|
|
2890
1920
|
*/
|
|
2891
1921
|
readonly pageToken?: number;
|
|
2892
1922
|
/**
|
|
2893
1923
|
* Max page size. This is the maximum page size that will be returned, but it could be smaller if there are less records than the max page size.
|
|
2894
|
-
* @type {number}
|
|
2895
|
-
* @memberof ProjectsApiGetUsers
|
|
2896
1924
|
*/
|
|
2897
1925
|
readonly pageSize?: number;
|
|
2898
1926
|
}
|
|
2899
1927
|
/**
|
|
2900
1928
|
* Request parameters for installIntegration operation in ProjectsApi.
|
|
2901
|
-
* @export
|
|
2902
|
-
* @interface ProjectsApiInstallIntegrationRequest
|
|
2903
1929
|
*/
|
|
2904
1930
|
export interface ProjectsApiInstallIntegrationRequest {
|
|
2905
1931
|
/**
|
|
2906
1932
|
* Projects unique identifier
|
|
2907
|
-
* @type {string}
|
|
2908
|
-
* @memberof ProjectsApiInstallIntegration
|
|
2909
1933
|
*/
|
|
2910
1934
|
readonly project: string;
|
|
2911
1935
|
/**
|
|
2912
1936
|
* Integrations unique code
|
|
2913
|
-
* @type {string}
|
|
2914
|
-
* @memberof ProjectsApiInstallIntegration
|
|
2915
1937
|
*/
|
|
2916
1938
|
readonly integration: string;
|
|
2917
1939
|
}
|
|
2918
1940
|
/**
|
|
2919
1941
|
* Request parameters for installTemplate operation in ProjectsApi.
|
|
2920
|
-
* @export
|
|
2921
|
-
* @interface ProjectsApiInstallTemplateRequest
|
|
2922
1942
|
*/
|
|
2923
1943
|
export interface ProjectsApiInstallTemplateRequest {
|
|
2924
1944
|
/**
|
|
2925
1945
|
* Projects unique identifier
|
|
2926
|
-
* @type {string}
|
|
2927
|
-
* @memberof ProjectsApiInstallTemplate
|
|
2928
1946
|
*/
|
|
2929
1947
|
readonly project: string;
|
|
2930
1948
|
/**
|
|
2931
1949
|
* Templates unique code
|
|
2932
|
-
* @type {TemplateCode}
|
|
2933
|
-
* @memberof ProjectsApiInstallTemplate
|
|
2934
1950
|
*/
|
|
2935
1951
|
readonly template: TemplateCode;
|
|
2936
1952
|
/**
|
|
2937
1953
|
* Request body to install template
|
|
2938
|
-
* @type {InstallTemplateRequest}
|
|
2939
|
-
* @memberof ProjectsApiInstallTemplate
|
|
2940
1954
|
*/
|
|
2941
1955
|
readonly installTemplateRequest: InstallTemplateRequest;
|
|
2942
1956
|
}
|
|
2943
1957
|
/**
|
|
2944
1958
|
* Request parameters for listBookmarks operation in ProjectsApi.
|
|
2945
|
-
* @export
|
|
2946
|
-
* @interface ProjectsApiListBookmarksRequest
|
|
2947
1959
|
*/
|
|
2948
1960
|
export interface ProjectsApiListBookmarksRequest {
|
|
2949
1961
|
/**
|
|
2950
1962
|
* Projects unique identifier
|
|
2951
|
-
* @type {string}
|
|
2952
|
-
* @memberof ProjectsApiListBookmarks
|
|
2953
1963
|
*/
|
|
2954
1964
|
readonly project: string;
|
|
2955
1965
|
}
|
|
2956
1966
|
/**
|
|
2957
1967
|
* Request parameters for listBookmarktabs operation in ProjectsApi.
|
|
2958
|
-
* @export
|
|
2959
|
-
* @interface ProjectsApiListBookmarktabsRequest
|
|
2960
1968
|
*/
|
|
2961
1969
|
export interface ProjectsApiListBookmarktabsRequest {
|
|
2962
1970
|
/**
|
|
2963
1971
|
* Projects unique identifier
|
|
2964
|
-
* @type {string}
|
|
2965
|
-
* @memberof ProjectsApiListBookmarktabs
|
|
2966
1972
|
*/
|
|
2967
1973
|
readonly project: string;
|
|
2968
1974
|
}
|
|
2969
1975
|
/**
|
|
2970
1976
|
* Request parameters for listTasks operation in ProjectsApi.
|
|
2971
|
-
* @export
|
|
2972
|
-
* @interface ProjectsApiListTasksRequest
|
|
2973
1977
|
*/
|
|
2974
1978
|
export interface ProjectsApiListTasksRequest {
|
|
2975
1979
|
/**
|
|
2976
1980
|
* Projects unique identifier
|
|
2977
|
-
* @type {string}
|
|
2978
|
-
* @memberof ProjectsApiListTasks
|
|
2979
1981
|
*/
|
|
2980
1982
|
readonly project: string;
|
|
2981
1983
|
}
|
|
2982
1984
|
/**
|
|
2983
1985
|
* Request parameters for reset2FA operation in ProjectsApi.
|
|
2984
|
-
* @export
|
|
2985
|
-
* @interface ProjectsApiReset2FARequest
|
|
2986
1986
|
*/
|
|
2987
1987
|
export interface ProjectsApiReset2FARequest {
|
|
2988
1988
|
/**
|
|
2989
1989
|
* Projects unique identifier
|
|
2990
|
-
* @type {string}
|
|
2991
|
-
* @memberof ProjectsApiReset2FA
|
|
2992
1990
|
*/
|
|
2993
1991
|
readonly project: string;
|
|
2994
1992
|
/**
|
|
2995
1993
|
* the unique id of the user
|
|
2996
|
-
* @type {string}
|
|
2997
|
-
* @memberof ProjectsApiReset2FA
|
|
2998
1994
|
*/
|
|
2999
1995
|
readonly user: string;
|
|
3000
1996
|
}
|
|
3001
1997
|
/**
|
|
3002
1998
|
* Request parameters for setupIntegration operation in ProjectsApi.
|
|
3003
|
-
* @export
|
|
3004
|
-
* @interface ProjectsApiSetupIntegrationRequest
|
|
3005
1999
|
*/
|
|
3006
2000
|
export interface ProjectsApiSetupIntegrationRequest {
|
|
3007
2001
|
/**
|
|
3008
2002
|
* Projects unique identifier
|
|
3009
|
-
* @type {string}
|
|
3010
|
-
* @memberof ProjectsApiSetupIntegration
|
|
3011
2003
|
*/
|
|
3012
2004
|
readonly project: string;
|
|
3013
2005
|
/**
|
|
3014
2006
|
* Integrations unique code
|
|
3015
|
-
* @type {string}
|
|
3016
|
-
* @memberof ProjectsApiSetupIntegration
|
|
3017
2007
|
*/
|
|
3018
2008
|
readonly integration: string;
|
|
3019
2009
|
/**
|
|
3020
2010
|
* Request body to setup integration
|
|
3021
|
-
* @type {UpdateIntegrationRequest}
|
|
3022
|
-
* @memberof ProjectsApiSetupIntegration
|
|
3023
2011
|
*/
|
|
3024
2012
|
readonly updateIntegrationRequest: UpdateIntegrationRequest;
|
|
3025
2013
|
}
|
|
3026
2014
|
/**
|
|
3027
2015
|
* Request parameters for uninstallIntegration operation in ProjectsApi.
|
|
3028
|
-
* @export
|
|
3029
|
-
* @interface ProjectsApiUninstallIntegrationRequest
|
|
3030
2016
|
*/
|
|
3031
2017
|
export interface ProjectsApiUninstallIntegrationRequest {
|
|
3032
2018
|
/**
|
|
3033
2019
|
* Projects unique identifier
|
|
3034
|
-
* @type {string}
|
|
3035
|
-
* @memberof ProjectsApiUninstallIntegration
|
|
3036
2020
|
*/
|
|
3037
2021
|
readonly project: string;
|
|
3038
2022
|
/**
|
|
3039
2023
|
* Integrations unique code
|
|
3040
|
-
* @type {string}
|
|
3041
|
-
* @memberof ProjectsApiUninstallIntegration
|
|
3042
2024
|
*/
|
|
3043
2025
|
readonly integration: string;
|
|
3044
2026
|
}
|
|
3045
2027
|
/**
|
|
3046
2028
|
* Request parameters for updateBookmark operation in ProjectsApi.
|
|
3047
|
-
* @export
|
|
3048
|
-
* @interface ProjectsApiUpdateBookmarkRequest
|
|
3049
2029
|
*/
|
|
3050
2030
|
export interface ProjectsApiUpdateBookmarkRequest {
|
|
3051
2031
|
/**
|
|
3052
2032
|
* Projects unique identifier
|
|
3053
|
-
* @type {string}
|
|
3054
|
-
* @memberof ProjectsApiUpdateBookmark
|
|
3055
2033
|
*/
|
|
3056
2034
|
readonly project: string;
|
|
3057
2035
|
/**
|
|
3058
2036
|
* The unique id of the bookmark
|
|
3059
|
-
* @type {string}
|
|
3060
|
-
* @memberof ProjectsApiUpdateBookmark
|
|
3061
2037
|
*/
|
|
3062
2038
|
readonly id: string;
|
|
3063
2039
|
/**
|
|
3064
2040
|
* Update a bookmark in the project
|
|
3065
|
-
* @type {UpdateBookmarkRequest}
|
|
3066
|
-
* @memberof ProjectsApiUpdateBookmark
|
|
3067
2041
|
*/
|
|
3068
2042
|
readonly updateBookmarkRequest: UpdateBookmarkRequest;
|
|
3069
2043
|
}
|
|
3070
2044
|
/**
|
|
3071
2045
|
* Request parameters for updateBookmarkTabs operation in ProjectsApi.
|
|
3072
|
-
* @export
|
|
3073
|
-
* @interface ProjectsApiUpdateBookmarkTabsRequest
|
|
3074
2046
|
*/
|
|
3075
2047
|
export interface ProjectsApiUpdateBookmarkTabsRequest {
|
|
3076
2048
|
/**
|
|
3077
2049
|
* Projects unique identifier
|
|
3078
|
-
* @type {string}
|
|
3079
|
-
* @memberof ProjectsApiUpdateBookmarkTabs
|
|
3080
2050
|
*/
|
|
3081
2051
|
readonly project: string;
|
|
3082
2052
|
/**
|
|
3083
2053
|
* Update a bookmark tab in the project
|
|
3084
|
-
* @type {UpdateBookmarkTabsRequest}
|
|
3085
|
-
* @memberof ProjectsApiUpdateBookmarkTabs
|
|
3086
2054
|
*/
|
|
3087
2055
|
readonly updateBookmarkTabsRequest: UpdateBookmarkTabsRequest;
|
|
3088
2056
|
}
|
|
3089
2057
|
/**
|
|
3090
2058
|
* Request parameters for updateIntegration operation in ProjectsApi.
|
|
3091
|
-
* @export
|
|
3092
|
-
* @interface ProjectsApiUpdateIntegrationRequest
|
|
3093
2059
|
*/
|
|
3094
2060
|
export interface ProjectsApiUpdateIntegrationRequest {
|
|
3095
2061
|
/**
|
|
3096
2062
|
* Projects unique identifier
|
|
3097
|
-
* @type {string}
|
|
3098
|
-
* @memberof ProjectsApiUpdateIntegration
|
|
3099
2063
|
*/
|
|
3100
2064
|
readonly project: string;
|
|
3101
2065
|
/**
|
|
3102
2066
|
* Integrations unique code
|
|
3103
|
-
* @type {string}
|
|
3104
|
-
* @memberof ProjectsApiUpdateIntegration
|
|
3105
2067
|
*/
|
|
3106
2068
|
readonly integration: string;
|
|
3107
2069
|
/**
|
|
3108
2070
|
* Request body to update an integration
|
|
3109
|
-
* @type {UpdateIntegrationRequest}
|
|
3110
|
-
* @memberof ProjectsApiUpdateIntegration
|
|
3111
2071
|
*/
|
|
3112
2072
|
readonly updateIntegrationRequest: UpdateIntegrationRequest;
|
|
3113
2073
|
}
|
|
3114
2074
|
/**
|
|
3115
2075
|
* Request parameters for updateProject operation in ProjectsApi.
|
|
3116
|
-
* @export
|
|
3117
|
-
* @interface ProjectsApiUpdateProjectRequest
|
|
3118
2076
|
*/
|
|
3119
2077
|
export interface ProjectsApiUpdateProjectRequest {
|
|
3120
2078
|
/**
|
|
3121
2079
|
* Projects unique identifier
|
|
3122
|
-
* @type {string}
|
|
3123
|
-
* @memberof ProjectsApiUpdateProject
|
|
3124
2080
|
*/
|
|
3125
2081
|
readonly project: string;
|
|
3126
2082
|
/**
|
|
3127
2083
|
* Updated project data
|
|
3128
|
-
* @type {UpdateProjectRequest}
|
|
3129
|
-
* @memberof ProjectsApiUpdateProject
|
|
3130
2084
|
*/
|
|
3131
2085
|
readonly updateProjectRequest: UpdateProjectRequest;
|
|
3132
2086
|
}
|
|
3133
2087
|
/**
|
|
3134
2088
|
* Request parameters for updateTask operation in ProjectsApi.
|
|
3135
|
-
* @export
|
|
3136
|
-
* @interface ProjectsApiUpdateTaskRequest
|
|
3137
2089
|
*/
|
|
3138
2090
|
export interface ProjectsApiUpdateTaskRequest {
|
|
3139
2091
|
/**
|
|
3140
2092
|
* Projects unique identifier
|
|
3141
|
-
* @type {string}
|
|
3142
|
-
* @memberof ProjectsApiUpdateTask
|
|
3143
2093
|
*/
|
|
3144
2094
|
readonly project: string;
|
|
3145
2095
|
/**
|
|
3146
2096
|
* The unique id of the task
|
|
3147
|
-
* @type {string}
|
|
3148
|
-
* @memberof ProjectsApiUpdateTask
|
|
3149
2097
|
*/
|
|
3150
2098
|
readonly id: string;
|
|
3151
2099
|
/**
|
|
3152
2100
|
* Update a task in the workflow
|
|
3153
|
-
* @type {UpdateTaskRequest}
|
|
3154
|
-
* @memberof ProjectsApiUpdateTask
|
|
3155
2101
|
*/
|
|
3156
2102
|
readonly updateTaskRequest?: UpdateTaskRequest;
|
|
3157
2103
|
}
|
|
3158
2104
|
/**
|
|
3159
2105
|
* Request parameters for updateUser operation in ProjectsApi.
|
|
3160
|
-
* @export
|
|
3161
|
-
* @interface ProjectsApiUpdateUserRequest
|
|
3162
2106
|
*/
|
|
3163
2107
|
export interface ProjectsApiUpdateUserRequest {
|
|
3164
2108
|
/**
|
|
3165
2109
|
* Projects unique identifier
|
|
3166
|
-
* @type {string}
|
|
3167
|
-
* @memberof ProjectsApiUpdateUser
|
|
3168
2110
|
*/
|
|
3169
2111
|
readonly project: string;
|
|
3170
2112
|
/**
|
|
3171
2113
|
* the unique id of the user
|
|
3172
|
-
* @type {string}
|
|
3173
|
-
* @memberof ProjectsApiUpdateUser
|
|
3174
2114
|
*/
|
|
3175
2115
|
readonly user: string;
|
|
3176
2116
|
/**
|
|
3177
2117
|
* Updated project user data
|
|
3178
|
-
* @type {UpdateUserRequest}
|
|
3179
|
-
* @memberof ProjectsApiUpdateUser
|
|
3180
2118
|
*/
|
|
3181
2119
|
readonly updateUserRequest: UpdateUserRequest;
|
|
3182
2120
|
}
|
|
3183
2121
|
/**
|
|
3184
2122
|
* ProjectsApi - object-oriented interface
|
|
3185
|
-
* @export
|
|
3186
|
-
* @class ProjectsApi
|
|
3187
|
-
* @extends {BaseAPI}
|
|
3188
2123
|
*/
|
|
3189
2124
|
export declare class ProjectsApi extends BaseAPI {
|
|
3190
2125
|
/**
|
|
@@ -3193,358 +2128,342 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
3193
2128
|
* @param {ProjectsApiArchiveTasksRequest} requestParameters Request parameters.
|
|
3194
2129
|
* @param {*} [options] Override http request option.
|
|
3195
2130
|
* @throws {RequiredError}
|
|
3196
|
-
* @memberof ProjectsApi
|
|
3197
2131
|
*/
|
|
3198
|
-
archiveTasks(requestParameters: ProjectsApiArchiveTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2132
|
+
archiveTasks(requestParameters: ProjectsApiArchiveTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3199
2133
|
/**
|
|
3200
2134
|
* Update multiple tasks in the workflow at once
|
|
3201
2135
|
* @summary Bulk update tasks
|
|
3202
2136
|
* @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
|
|
3203
2137
|
* @param {*} [options] Override http request option.
|
|
3204
2138
|
* @throws {RequiredError}
|
|
3205
|
-
* @memberof ProjectsApi
|
|
3206
2139
|
*/
|
|
3207
|
-
bulkUpdateTasks(requestParameters: ProjectsApiBulkUpdateTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any>>;
|
|
2140
|
+
bulkUpdateTasks(requestParameters: ProjectsApiBulkUpdateTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any, {}>>;
|
|
3208
2141
|
/**
|
|
3209
2142
|
* Create an auth token for the project
|
|
3210
2143
|
* @summary Create auth token
|
|
3211
2144
|
* @param {ProjectsApiCreateAuthRequest} requestParameters Request parameters.
|
|
3212
2145
|
* @param {*} [options] Override http request option.
|
|
3213
2146
|
* @throws {RequiredError}
|
|
3214
|
-
* @memberof ProjectsApi
|
|
3215
2147
|
*/
|
|
3216
|
-
createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Auth, any>>;
|
|
2148
|
+
createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Auth, any, {}>>;
|
|
3217
2149
|
/**
|
|
3218
2150
|
* Create a bookmark in the project
|
|
3219
2151
|
* @summary Create bookmark
|
|
3220
2152
|
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
3221
2153
|
* @param {*} [options] Override http request option.
|
|
3222
2154
|
* @throws {RequiredError}
|
|
3223
|
-
* @memberof ProjectsApi
|
|
3224
2155
|
*/
|
|
3225
|
-
createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
|
|
2156
|
+
createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any, {}>>;
|
|
3226
2157
|
/**
|
|
3227
2158
|
* Creates an invite for the project
|
|
3228
2159
|
* @summary Creates an invite
|
|
3229
2160
|
* @param {ProjectsApiCreateInviteRequest} requestParameters Request parameters.
|
|
3230
2161
|
* @param {*} [options] Override http request option.
|
|
3231
2162
|
* @throws {RequiredError}
|
|
3232
|
-
* @memberof ProjectsApi
|
|
3233
2163
|
*/
|
|
3234
|
-
createInvite(requestParameters: ProjectsApiCreateInviteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectInvite, any>>;
|
|
2164
|
+
createInvite(requestParameters: ProjectsApiCreateInviteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectInvite, any, {}>>;
|
|
3235
2165
|
/**
|
|
3236
2166
|
* Create a new projects
|
|
3237
2167
|
* @summary Create project
|
|
3238
2168
|
* @param {ProjectsApiCreateProjectRequest} requestParameters Request parameters.
|
|
3239
2169
|
* @param {*} [options] Override http request option.
|
|
3240
2170
|
* @throws {RequiredError}
|
|
3241
|
-
* @memberof ProjectsApi
|
|
3242
2171
|
*/
|
|
3243
|
-
createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
2172
|
+
createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
3244
2173
|
/**
|
|
3245
2174
|
* Create a new task in the workflow
|
|
3246
2175
|
* @summary Create Task
|
|
3247
2176
|
* @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
|
|
3248
2177
|
* @param {*} [options] Override http request option.
|
|
3249
2178
|
* @throws {RequiredError}
|
|
3250
|
-
* @memberof ProjectsApi
|
|
3251
2179
|
*/
|
|
3252
|
-
createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
2180
|
+
createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any, {}>>;
|
|
3253
2181
|
/**
|
|
3254
2182
|
* Delete an auth token for the project
|
|
3255
2183
|
* @summary Delete auth token
|
|
3256
2184
|
* @param {ProjectsApiDeleteAuthRequest} requestParameters Request parameters.
|
|
3257
2185
|
* @param {*} [options] Override http request option.
|
|
3258
2186
|
* @throws {RequiredError}
|
|
3259
|
-
* @memberof ProjectsApi
|
|
3260
2187
|
*/
|
|
3261
|
-
deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2188
|
+
deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3262
2189
|
/**
|
|
3263
2190
|
* Delete a bookmark in the project
|
|
3264
2191
|
* @summary Delete bookmark
|
|
3265
2192
|
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
3266
2193
|
* @param {*} [options] Override http request option.
|
|
3267
2194
|
* @throws {RequiredError}
|
|
3268
|
-
* @memberof ProjectsApi
|
|
3269
2195
|
*/
|
|
3270
|
-
deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2196
|
+
deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3271
2197
|
/**
|
|
3272
2198
|
* Deletes an invite to the project
|
|
3273
2199
|
* @summary Deletes an invite
|
|
3274
2200
|
* @param {ProjectsApiDeleteInviteRequest} requestParameters Request parameters.
|
|
3275
2201
|
* @param {*} [options] Override http request option.
|
|
3276
2202
|
* @throws {RequiredError}
|
|
3277
|
-
* @memberof ProjectsApi
|
|
3278
2203
|
*/
|
|
3279
|
-
deleteInvite(requestParameters: ProjectsApiDeleteInviteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2204
|
+
deleteInvite(requestParameters: ProjectsApiDeleteInviteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3280
2205
|
/**
|
|
3281
2206
|
* Delete a project
|
|
3282
2207
|
* @summary Delete project
|
|
3283
2208
|
* @param {ProjectsApiDeleteProjectRequest} requestParameters Request parameters.
|
|
3284
2209
|
* @param {*} [options] Override http request option.
|
|
3285
2210
|
* @throws {RequiredError}
|
|
3286
|
-
* @memberof ProjectsApi
|
|
3287
2211
|
*/
|
|
3288
|
-
deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2212
|
+
deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3289
2213
|
/**
|
|
3290
2214
|
* Delete a task in the workflow
|
|
3291
2215
|
* @summary Delete Task
|
|
3292
2216
|
* @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
|
|
3293
2217
|
* @param {*} [options] Override http request option.
|
|
3294
2218
|
* @throws {RequiredError}
|
|
3295
|
-
* @memberof ProjectsApi
|
|
3296
2219
|
*/
|
|
3297
|
-
deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2220
|
+
deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3298
2221
|
/**
|
|
3299
2222
|
* Delete a project user by ID
|
|
3300
2223
|
* @summary Delete a user by ID
|
|
3301
2224
|
* @param {ProjectsApiDeleteUserRequest} requestParameters Request parameters.
|
|
3302
2225
|
* @param {*} [options] Override http request option.
|
|
3303
2226
|
* @throws {RequiredError}
|
|
3304
|
-
* @memberof ProjectsApi
|
|
3305
2227
|
*/
|
|
3306
|
-
deleteUser(requestParameters: ProjectsApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2228
|
+
deleteUser(requestParameters: ProjectsApiDeleteUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3307
2229
|
/**
|
|
3308
2230
|
* Export all the OKRs in the planner
|
|
3309
2231
|
* @summary Export all OKRs
|
|
3310
2232
|
* @param {ProjectsApiExportOkrsRequest} requestParameters Request parameters.
|
|
3311
2233
|
* @param {*} [options] Override http request option.
|
|
3312
2234
|
* @throws {RequiredError}
|
|
3313
|
-
* @memberof ProjectsApi
|
|
3314
2235
|
*/
|
|
3315
|
-
exportOkrs(requestParameters: ProjectsApiExportOkrsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2236
|
+
exportOkrs(requestParameters: ProjectsApiExportOkrsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
3316
2237
|
/**
|
|
3317
2238
|
* Export all the tasks in the workflow
|
|
3318
2239
|
* @summary Export all tasks
|
|
3319
2240
|
* @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
|
|
3320
2241
|
* @param {*} [options] Override http request option.
|
|
3321
2242
|
* @throws {RequiredError}
|
|
3322
|
-
* @memberof ProjectsApi
|
|
3323
2243
|
*/
|
|
3324
|
-
exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2244
|
+
exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
3325
2245
|
/**
|
|
3326
2246
|
* Lists the auth tokens for the project
|
|
3327
2247
|
* @summary List auth tokens
|
|
3328
2248
|
* @param {ProjectsApiGetAuthRequest} requestParameters Request parameters.
|
|
3329
2249
|
* @param {*} [options] Override http request option.
|
|
3330
2250
|
* @throws {RequiredError}
|
|
3331
|
-
* @memberof ProjectsApi
|
|
3332
2251
|
*/
|
|
3333
|
-
getAuth(requestParameters: ProjectsApiGetAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthResponse, any>>;
|
|
2252
|
+
getAuth(requestParameters: ProjectsApiGetAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthResponse, any, {}>>;
|
|
2253
|
+
/**
|
|
2254
|
+
* List the clients of the project that the user has access to
|
|
2255
|
+
* @summary List clients
|
|
2256
|
+
* @param {ProjectsApiGetClientsRequest} requestParameters Request parameters.
|
|
2257
|
+
* @param {*} [options] Override http request option.
|
|
2258
|
+
* @throws {RequiredError}
|
|
2259
|
+
*/
|
|
2260
|
+
getClients(requestParameters: ProjectsApiGetClientsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClients200Response, any, {}>>;
|
|
3334
2261
|
/**
|
|
3335
2262
|
* Get an integration
|
|
3336
2263
|
* @summary Get integration
|
|
3337
2264
|
* @param {ProjectsApiGetIntegrationRequest} requestParameters Request parameters.
|
|
3338
2265
|
* @param {*} [options] Override http request option.
|
|
3339
2266
|
* @throws {RequiredError}
|
|
3340
|
-
* @memberof ProjectsApi
|
|
3341
2267
|
*/
|
|
3342
|
-
getIntegration(requestParameters: ProjectsApiGetIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any>>;
|
|
2268
|
+
getIntegration(requestParameters: ProjectsApiGetIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any, {}>>;
|
|
3343
2269
|
/**
|
|
3344
2270
|
* List all integrations installed on a project
|
|
3345
2271
|
* @summary List integrations
|
|
3346
2272
|
* @param {ProjectsApiGetIntegrationsRequest} requestParameters Request parameters.
|
|
3347
2273
|
* @param {*} [options] Override http request option.
|
|
3348
2274
|
* @throws {RequiredError}
|
|
3349
|
-
* @memberof ProjectsApi
|
|
3350
2275
|
*/
|
|
3351
|
-
getIntegrations(requestParameters: ProjectsApiGetIntegrationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
|
|
2276
|
+
getIntegrations(requestParameters: ProjectsApiGetIntegrationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any, {}>>;
|
|
3352
2277
|
/**
|
|
3353
2278
|
* List the invites associated with a project
|
|
3354
2279
|
* @summary List Invites
|
|
3355
2280
|
* @param {ProjectsApiGetInvitesRequest} requestParameters Request parameters.
|
|
3356
2281
|
* @param {*} [options] Override http request option.
|
|
3357
2282
|
* @throws {RequiredError}
|
|
3358
|
-
* @memberof ProjectsApi
|
|
3359
2283
|
*/
|
|
3360
|
-
getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectInvites, any>>;
|
|
2284
|
+
getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectInvites, any, {}>>;
|
|
2285
|
+
/**
|
|
2286
|
+
* List the logs associated with a user on the project
|
|
2287
|
+
* @summary List logs
|
|
2288
|
+
* @param {ProjectsApiGetLogsRequest} requestParameters Request parameters.
|
|
2289
|
+
* @param {*} [options] Override http request option.
|
|
2290
|
+
* @throws {RequiredError}
|
|
2291
|
+
*/
|
|
2292
|
+
getLogs(requestParameters: ProjectsApiGetLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLogs200Response, any, {}>>;
|
|
3361
2293
|
/**
|
|
3362
2294
|
* Get the AI-generated OKR summary for the project
|
|
3363
2295
|
* @summary Get OKR summary
|
|
3364
2296
|
* @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
|
|
3365
2297
|
* @param {*} [options] Override http request option.
|
|
3366
2298
|
* @throws {RequiredError}
|
|
3367
|
-
* @memberof ProjectsApi
|
|
3368
2299
|
*/
|
|
3369
|
-
getOkrSummary(requestParameters: ProjectsApiGetOkrSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OkrSummary, any>>;
|
|
2300
|
+
getOkrSummary(requestParameters: ProjectsApiGetOkrSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OkrSummary, any, {}>>;
|
|
3370
2301
|
/**
|
|
3371
2302
|
* Get a project
|
|
3372
2303
|
* @summary Get project
|
|
3373
2304
|
* @param {ProjectsApiGetProjectRequest} requestParameters Request parameters.
|
|
3374
2305
|
* @param {*} [options] Override http request option.
|
|
3375
2306
|
* @throws {RequiredError}
|
|
3376
|
-
* @memberof ProjectsApi
|
|
3377
2307
|
*/
|
|
3378
|
-
getProject(requestParameters: ProjectsApiGetProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
2308
|
+
getProject(requestParameters: ProjectsApiGetProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
3379
2309
|
/**
|
|
3380
2310
|
* List all projects available
|
|
3381
2311
|
* @summary List projects
|
|
3382
2312
|
* @param {ProjectsApiGetProjectsRequest} requestParameters Request parameters.
|
|
3383
2313
|
* @param {*} [options] Override http request option.
|
|
3384
2314
|
* @throws {RequiredError}
|
|
3385
|
-
* @memberof ProjectsApi
|
|
3386
2315
|
*/
|
|
3387
|
-
getProjects(requestParameters?: ProjectsApiGetProjectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectsResponse, any>>;
|
|
2316
|
+
getProjects(requestParameters?: ProjectsApiGetProjectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectsResponse, any, {}>>;
|
|
3388
2317
|
/**
|
|
3389
2318
|
* Get a task in the workflow
|
|
3390
2319
|
* @summary Get Task
|
|
3391
2320
|
* @param {ProjectsApiGetTaskRequest} requestParameters Request parameters.
|
|
3392
2321
|
* @param {*} [options] Override http request option.
|
|
3393
2322
|
* @throws {RequiredError}
|
|
3394
|
-
* @memberof ProjectsApi
|
|
3395
2323
|
*/
|
|
3396
|
-
getTask(requestParameters: ProjectsApiGetTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
2324
|
+
getTask(requestParameters: ProjectsApiGetTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any, {}>>;
|
|
3397
2325
|
/**
|
|
3398
2326
|
* List all templates available
|
|
3399
2327
|
* @summary List templates
|
|
3400
2328
|
* @param {ProjectsApiGetTemplatesRequest} requestParameters Request parameters.
|
|
3401
2329
|
* @param {*} [options] Override http request option.
|
|
3402
2330
|
* @throws {RequiredError}
|
|
3403
|
-
* @memberof ProjectsApi
|
|
3404
2331
|
*/
|
|
3405
|
-
getTemplates(requestParameters?: ProjectsApiGetTemplatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplatesResponse, any>>;
|
|
2332
|
+
getTemplates(requestParameters?: ProjectsApiGetTemplatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TemplatesResponse, any, {}>>;
|
|
3406
2333
|
/**
|
|
3407
2334
|
* Get a project user by id
|
|
3408
2335
|
* @summary Get a user
|
|
3409
2336
|
* @param {ProjectsApiGetUserRequest} requestParameters Request parameters.
|
|
3410
2337
|
* @param {*} [options] Override http request option.
|
|
3411
2338
|
* @throws {RequiredError}
|
|
3412
|
-
* @memberof ProjectsApi
|
|
3413
2339
|
*/
|
|
3414
|
-
getUser(requestParameters: ProjectsApiGetUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUser, any>>;
|
|
2340
|
+
getUser(requestParameters: ProjectsApiGetUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUser, any, {}>>;
|
|
2341
|
+
/**
|
|
2342
|
+
* Get the details of the user\'s invite to the project
|
|
2343
|
+
* @summary Get invite
|
|
2344
|
+
* @param {ProjectsApiGetUserInviteRequest} requestParameters Request parameters.
|
|
2345
|
+
* @param {*} [options] Override http request option.
|
|
2346
|
+
* @throws {RequiredError}
|
|
2347
|
+
*/
|
|
2348
|
+
getUserInvite(requestParameters: ProjectsApiGetUserInviteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserInvite, any, {}>>;
|
|
3415
2349
|
/**
|
|
3416
2350
|
* List the users associated with a project
|
|
3417
2351
|
* @summary List project users
|
|
3418
2352
|
* @param {ProjectsApiGetUsersRequest} requestParameters Request parameters.
|
|
3419
2353
|
* @param {*} [options] Override http request option.
|
|
3420
2354
|
* @throws {RequiredError}
|
|
3421
|
-
* @memberof ProjectsApi
|
|
3422
2355
|
*/
|
|
3423
|
-
getUsers(requestParameters: ProjectsApiGetUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUsers, any>>;
|
|
2356
|
+
getUsers(requestParameters: ProjectsApiGetUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUsers, any, {}>>;
|
|
3424
2357
|
/**
|
|
3425
2358
|
* Install an integration on the project
|
|
3426
2359
|
* @summary Install integration
|
|
3427
2360
|
* @param {ProjectsApiInstallIntegrationRequest} requestParameters Request parameters.
|
|
3428
2361
|
* @param {*} [options] Override http request option.
|
|
3429
2362
|
* @throws {RequiredError}
|
|
3430
|
-
* @memberof ProjectsApi
|
|
3431
2363
|
*/
|
|
3432
|
-
installIntegration(requestParameters: ProjectsApiInstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any>>;
|
|
2364
|
+
installIntegration(requestParameters: ProjectsApiInstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any, {}>>;
|
|
3433
2365
|
/**
|
|
3434
2366
|
* Install an integration template on the project
|
|
3435
2367
|
* @summary Install integration template
|
|
3436
2368
|
* @param {ProjectsApiInstallTemplateRequest} requestParameters Request parameters.
|
|
3437
2369
|
* @param {*} [options] Override http request option.
|
|
3438
2370
|
* @throws {RequiredError}
|
|
3439
|
-
* @memberof ProjectsApi
|
|
3440
2371
|
*/
|
|
3441
|
-
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
|
|
2372
|
+
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any, {}>>;
|
|
3442
2373
|
/**
|
|
3443
2374
|
* List the bookmarks in the project
|
|
3444
2375
|
* @summary List bookmarks
|
|
3445
2376
|
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
3446
2377
|
* @param {*} [options] Override http request option.
|
|
3447
2378
|
* @throws {RequiredError}
|
|
3448
|
-
* @memberof ProjectsApi
|
|
3449
2379
|
*/
|
|
3450
|
-
listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any>>;
|
|
2380
|
+
listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any, {}>>;
|
|
3451
2381
|
/**
|
|
3452
2382
|
* List the bookmark tabs in the project
|
|
3453
2383
|
* @summary List bookmark tabs
|
|
3454
2384
|
* @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
|
|
3455
2385
|
* @param {*} [options] Override http request option.
|
|
3456
2386
|
* @throws {RequiredError}
|
|
3457
|
-
* @memberof ProjectsApi
|
|
3458
2387
|
*/
|
|
3459
|
-
listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any>>;
|
|
2388
|
+
listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any, {}>>;
|
|
3460
2389
|
/**
|
|
3461
2390
|
* List the tasks in the workflow
|
|
3462
2391
|
* @summary List Tasks
|
|
3463
2392
|
* @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
|
|
3464
2393
|
* @param {*} [options] Override http request option.
|
|
3465
2394
|
* @throws {RequiredError}
|
|
3466
|
-
* @memberof ProjectsApi
|
|
3467
2395
|
*/
|
|
3468
|
-
listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any>>;
|
|
2396
|
+
listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any, {}>>;
|
|
3469
2397
|
/**
|
|
3470
2398
|
* Reset 2FA for a given user
|
|
3471
2399
|
* @summary Reset 2FA
|
|
3472
2400
|
* @param {ProjectsApiReset2FARequest} requestParameters Request parameters.
|
|
3473
2401
|
* @param {*} [options] Override http request option.
|
|
3474
2402
|
* @throws {RequiredError}
|
|
3475
|
-
* @memberof ProjectsApi
|
|
3476
2403
|
*/
|
|
3477
|
-
reset2FA(requestParameters: ProjectsApiReset2FARequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2404
|
+
reset2FA(requestParameters: ProjectsApiReset2FARequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3478
2405
|
/**
|
|
3479
2406
|
* Setup an integration on the project
|
|
3480
2407
|
* @summary Setup integration
|
|
3481
2408
|
* @param {ProjectsApiSetupIntegrationRequest} requestParameters Request parameters.
|
|
3482
2409
|
* @param {*} [options] Override http request option.
|
|
3483
2410
|
* @throws {RequiredError}
|
|
3484
|
-
* @memberof ProjectsApi
|
|
3485
2411
|
*/
|
|
3486
|
-
setupIntegration(requestParameters: ProjectsApiSetupIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any>>;
|
|
2412
|
+
setupIntegration(requestParameters: ProjectsApiSetupIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any, {}>>;
|
|
3487
2413
|
/**
|
|
3488
2414
|
* Uninstall a projects integration
|
|
3489
2415
|
* @summary Uninstall integration
|
|
3490
2416
|
* @param {ProjectsApiUninstallIntegrationRequest} requestParameters Request parameters.
|
|
3491
2417
|
* @param {*} [options] Override http request option.
|
|
3492
2418
|
* @throws {RequiredError}
|
|
3493
|
-
* @memberof ProjectsApi
|
|
3494
2419
|
*/
|
|
3495
|
-
uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2420
|
+
uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3496
2421
|
/**
|
|
3497
2422
|
* Update a bookmark in the project
|
|
3498
2423
|
* @summary Update bookmark
|
|
3499
2424
|
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
3500
2425
|
* @param {*} [options] Override http request option.
|
|
3501
2426
|
* @throws {RequiredError}
|
|
3502
|
-
* @memberof ProjectsApi
|
|
3503
2427
|
*/
|
|
3504
|
-
updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
|
|
2428
|
+
updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any, {}>>;
|
|
3505
2429
|
/**
|
|
3506
2430
|
* Update bookmark tabs
|
|
3507
2431
|
* @summary Update bookmark tabs
|
|
3508
2432
|
* @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
|
|
3509
2433
|
* @param {*} [options] Override http request option.
|
|
3510
2434
|
* @throws {RequiredError}
|
|
3511
|
-
* @memberof ProjectsApi
|
|
3512
2435
|
*/
|
|
3513
|
-
updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any>>;
|
|
2436
|
+
updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookmarkTabs, any, {}>>;
|
|
3514
2437
|
/**
|
|
3515
2438
|
* Update an integration on the project
|
|
3516
2439
|
* @summary Update integration
|
|
3517
2440
|
* @param {ProjectsApiUpdateIntegrationRequest} requestParameters Request parameters.
|
|
3518
2441
|
* @param {*} [options] Override http request option.
|
|
3519
2442
|
* @throws {RequiredError}
|
|
3520
|
-
* @memberof ProjectsApi
|
|
3521
2443
|
*/
|
|
3522
|
-
updateIntegration(requestParameters: ProjectsApiUpdateIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any>>;
|
|
2444
|
+
updateIntegration(requestParameters: ProjectsApiUpdateIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any, {}>>;
|
|
3523
2445
|
/**
|
|
3524
2446
|
* Update a project
|
|
3525
2447
|
* @summary Update project
|
|
3526
2448
|
* @param {ProjectsApiUpdateProjectRequest} requestParameters Request parameters.
|
|
3527
2449
|
* @param {*} [options] Override http request option.
|
|
3528
2450
|
* @throws {RequiredError}
|
|
3529
|
-
* @memberof ProjectsApi
|
|
3530
2451
|
*/
|
|
3531
|
-
updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
2452
|
+
updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
|
|
3532
2453
|
/**
|
|
3533
2454
|
* Update a task in the workflow
|
|
3534
2455
|
* @summary Update Task
|
|
3535
2456
|
* @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
|
|
3536
2457
|
* @param {*} [options] Override http request option.
|
|
3537
2458
|
* @throws {RequiredError}
|
|
3538
|
-
* @memberof ProjectsApi
|
|
3539
2459
|
*/
|
|
3540
|
-
updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
2460
|
+
updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any, {}>>;
|
|
3541
2461
|
/**
|
|
3542
2462
|
* Update a project user
|
|
3543
2463
|
* @summary Update a user
|
|
3544
2464
|
* @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
|
|
3545
2465
|
* @param {*} [options] Override http request option.
|
|
3546
2466
|
* @throws {RequiredError}
|
|
3547
|
-
* @memberof ProjectsApi
|
|
3548
2467
|
*/
|
|
3549
|
-
updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUser, any>>;
|
|
2468
|
+
updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUser, any, {}>>;
|
|
3550
2469
|
}
|