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