@teemill/projects 1.46.6 → 1.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.46.6
7
+ * The version of the OpenAPI document: 1.48.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,538 +23,140 @@ import type { RequestArgs } from './base';
23
23
  // @ts-ignore
24
24
  import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
25
25
 
26
- /**
27
- *
28
- * @export
29
- * @interface ApiError
30
- */
31
26
  export interface ApiError {
32
- /**
33
- *
34
- * @type {string}
35
- * @memberof ApiError
36
- */
37
27
  'code'?: string;
38
- /**
39
- *
40
- * @type {string}
41
- * @memberof ApiError
42
- */
43
28
  'message': string;
44
29
  }
45
- /**
46
- *
47
- * @export
48
- * @interface Auth
49
- */
50
30
  export interface Auth {
51
- /**
52
- *
53
- * @type {string}
54
- * @memberof Auth
55
- */
56
31
  'id'?: string;
57
- /**
58
- *
59
- * @type {string}
60
- * @memberof Auth
61
- */
62
32
  'projectId'?: string;
63
- /**
64
- *
65
- * @type {string}
66
- * @memberof Auth
67
- */
68
33
  'token'?: string;
69
34
  }
70
- /**
71
- *
72
- * @export
73
- * @interface AuthResponse
74
- */
75
35
  export interface AuthResponse {
76
- /**
77
- *
78
- * @type {Array<Auth>}
79
- * @memberof AuthResponse
80
- */
81
36
  'auth'?: Array<Auth>;
82
37
  }
83
- /**
84
- *
85
- * @export
86
- * @interface Bookmark
87
- */
88
38
  export interface Bookmark {
89
- /**
90
- *
91
- * @type {string}
92
- * @memberof Bookmark
93
- */
94
39
  'id': string;
95
- /**
96
- *
97
- * @type {string}
98
- * @memberof Bookmark
99
- */
100
40
  'title': string | null;
101
- /**
102
- *
103
- * @type {BookmarkData}
104
- * @memberof Bookmark
105
- */
106
41
  'data': BookmarkData;
107
- /**
108
- *
109
- * @type {string}
110
- * @memberof Bookmark
111
- */
112
42
  'description': string | null;
113
- /**
114
- *
115
- * @type {string}
116
- * @memberof Bookmark
117
- */
118
43
  'color': string | null;
119
- /**
120
- *
121
- * @type {NullableIcon}
122
- * @memberof Bookmark
123
- */
124
44
  'icon': NullableIcon | null;
125
- /**
126
- *
127
- * @type {string}
128
- * @memberof Bookmark
129
- */
130
45
  'tabId': string | null;
131
- /**
132
- *
133
- * @type {number}
134
- * @memberof Bookmark
135
- */
136
46
  'sortOrder': number;
137
- /**
138
- *
139
- * @type {number}
140
- * @memberof Bookmark
141
- */
142
47
  'tabSortOrder': number;
143
48
  }
144
49
  /**
145
50
  * @type BookmarkData
146
- * @export
147
51
  */
148
52
  export type BookmarkData = BookmarkRoute | BookmarkUrl;
149
53
 
150
- /**
151
- *
152
- * @export
153
- * @interface BookmarkRoute
154
- */
155
54
  export interface BookmarkRoute {
156
- /**
157
- *
158
- * @type {BookmarkRouteRoute}
159
- * @memberof BookmarkRoute
160
- */
161
55
  'route': BookmarkRouteRoute;
162
56
  }
163
- /**
164
- *
165
- * @export
166
- * @interface BookmarkRouteRoute
167
- */
168
57
  export interface BookmarkRouteRoute {
169
- /**
170
- *
171
- * @type {string}
172
- * @memberof BookmarkRouteRoute
173
- */
174
58
  'name': string;
175
- /**
176
- *
177
- * @type {{ [key: string]: any; }}
178
- * @memberof BookmarkRouteRoute
179
- */
180
59
  'params'?: { [key: string]: any; };
181
- /**
182
- *
183
- * @type {{ [key: string]: any; }}
184
- * @memberof BookmarkRouteRoute
185
- */
186
60
  'query'?: { [key: string]: any; };
187
61
  }
188
- /**
189
- *
190
- * @export
191
- * @interface BookmarkTab
192
- */
193
62
  export interface BookmarkTab {
194
- /**
195
- *
196
- * @type {string}
197
- * @memberof BookmarkTab
198
- */
199
63
  'id': string;
200
- /**
201
- *
202
- * @type {string}
203
- * @memberof BookmarkTab
204
- */
205
64
  'name': string;
206
- /**
207
- *
208
- * @type {number}
209
- * @memberof BookmarkTab
210
- */
211
65
  'sortOrder': number;
212
66
  }
213
- /**
214
- *
215
- * @export
216
- * @interface BookmarkTabs
217
- */
218
67
  export interface BookmarkTabs {
219
- /**
220
- *
221
- * @type {Array<BookmarkTab>}
222
- * @memberof BookmarkTabs
223
- */
224
68
  'tabs': Array<BookmarkTab>;
225
69
  }
226
- /**
227
- *
228
- * @export
229
- * @interface BookmarkUrl
230
- */
231
70
  export interface BookmarkUrl {
232
- /**
233
- *
234
- * @type {string}
235
- * @memberof BookmarkUrl
236
- */
237
71
  'url': string;
238
72
  }
239
- /**
240
- *
241
- * @export
242
- * @interface Bookmarks
243
- */
244
73
  export interface Bookmarks {
245
- /**
246
- *
247
- * @type {Array<Bookmark>}
248
- * @memberof Bookmarks
249
- */
250
74
  'bookmarks': Array<Bookmark>;
251
75
  }
252
- /**
253
- *
254
- * @export
255
- * @interface BulkUpdateTasksRequest
256
- */
257
76
  export interface BulkUpdateTasksRequest {
258
- /**
259
- *
260
- * @type {Array<BulkUpdateTasksRequestTasksInner>}
261
- * @memberof BulkUpdateTasksRequest
262
- */
263
77
  'tasks': Array<BulkUpdateTasksRequestTasksInner>;
264
78
  }
265
- /**
266
- *
267
- * @export
268
- * @interface BulkUpdateTasksRequestTasksInner
269
- */
270
79
  export interface BulkUpdateTasksRequestTasksInner {
271
- /**
272
- *
273
- * @type {string}
274
- * @memberof BulkUpdateTasksRequestTasksInner
275
- */
276
80
  'id': string;
277
- /**
278
- *
279
- * @type {TaskStatus}
280
- * @memberof BulkUpdateTasksRequestTasksInner
281
- */
282
81
  'status': TaskStatus;
283
82
  }
284
83
 
285
84
 
286
- /**
287
- *
288
- * @export
289
- * @interface CreateBookmarkRequest
290
- */
291
85
  export interface CreateBookmarkRequest {
292
- /**
293
- *
294
- * @type {string}
295
- * @memberof CreateBookmarkRequest
296
- */
297
86
  'title'?: string;
298
- /**
299
- *
300
- * @type {BookmarkData}
301
- * @memberof CreateBookmarkRequest
302
- */
303
87
  'data': BookmarkData;
304
- /**
305
- *
306
- * @type {string}
307
- * @memberof CreateBookmarkRequest
308
- */
309
88
  'description'?: string;
310
- /**
311
- *
312
- * @type {string}
313
- * @memberof CreateBookmarkRequest
314
- */
315
89
  'color'?: string;
316
90
  /**
317
91
  * The icon name of the bookmark
318
- * @type {string}
319
- * @memberof CreateBookmarkRequest
320
92
  */
321
93
  'icon'?: string;
322
94
  /**
323
95
  * The ID of the tab the bookmark belongs to
324
- * @type {string}
325
- * @memberof CreateBookmarkRequest
326
96
  */
327
97
  'tabId'?: string | null;
328
98
  }
329
- /**
330
- *
331
- * @export
332
- * @interface CreateInviteRequest
333
- */
334
99
  export interface CreateInviteRequest {
335
- /**
336
- *
337
- * @type {string}
338
- * @memberof CreateInviteRequest
339
- */
340
100
  'email': string;
341
- /**
342
- *
343
- * @type {string}
344
- * @memberof CreateInviteRequest
345
- */
346
101
  'role'?: string;
347
102
  }
348
- /**
349
- *
350
- * @export
351
- * @interface CreateProjectRequest
352
- */
353
103
  export interface CreateProjectRequest {
354
- /**
355
- *
356
- * @type {string}
357
- * @memberof CreateProjectRequest
358
- */
359
104
  'name': string;
360
- /**
361
- *
362
- * @type {TemplateCode}
363
- * @memberof CreateProjectRequest
364
- */
365
105
  'template'?: TemplateCode;
366
- /**
367
- *
368
- * @type {object}
369
- * @memberof CreateProjectRequest
370
- */
371
106
  'config'?: object;
372
- /**
373
- *
374
- * @type {string}
375
- * @memberof CreateProjectRequest
376
- */
377
107
  'platformId'?: string | null;
378
108
  }
379
109
 
380
110
 
381
- /**
382
- *
383
- * @export
384
- * @interface CreateTaskRequest
385
- */
386
111
  export interface CreateTaskRequest {
387
- /**
388
- *
389
- * @type {string}
390
- * @memberof CreateTaskRequest
391
- */
392
112
  'content': string;
393
- /**
394
- *
395
- * @type {TaskStatus}
396
- * @memberof CreateTaskRequest
397
- */
398
113
  'status': TaskStatus;
399
114
  }
400
115
 
401
116
 
402
- /**
403
- *
404
- * @export
405
- * @interface ExportTasks202Response
406
- */
407
117
  export interface ExportTasks202Response {
408
118
  /**
409
119
  * A message describing the export status
410
- * @type {string}
411
- * @memberof ExportTasks202Response
412
120
  */
413
121
  'message'?: string;
414
122
  }
415
- /**
416
- *
417
- * @export
418
- * @interface Icon
419
- */
123
+ export interface GetClients200Response {
124
+ 'clients': Array<UserClient>;
125
+ }
126
+ export interface GetLogs200Response {
127
+ 'logs': Array<UserLog>;
128
+ }
420
129
  export interface Icon {
421
- /**
422
- *
423
- * @type {string}
424
- * @memberof Icon
425
- */
426
130
  'prefix': string;
427
- /**
428
- *
429
- * @type {string}
430
- * @memberof Icon
431
- */
432
131
  'iconName': string;
433
- /**
434
- *
435
- * @type {Array<any>}
436
- * @memberof Icon
437
- */
438
132
  'icon': Array<any>;
439
133
  }
440
- /**
441
- *
442
- * @export
443
- * @interface InstallTemplateRequest
444
- */
445
134
  export interface InstallTemplateRequest {
446
- /**
447
- *
448
- * @type {object}
449
- * @memberof InstallTemplateRequest
450
- */
451
135
  'config'?: object;
452
136
  }
453
- /**
454
- *
455
- * @export
456
- * @interface Integration
457
- */
458
137
  export interface Integration {
459
- /**
460
- *
461
- * @type {number}
462
- * @memberof Integration
463
- */
464
138
  'id'?: number;
465
- /**
466
- *
467
- * @type {string}
468
- * @memberof Integration
469
- */
470
139
  'code': string;
471
- /**
472
- *
473
- * @type {object}
474
- * @memberof Integration
475
- */
476
140
  'config': object;
477
- /**
478
- *
479
- * @type {string}
480
- * @memberof Integration
481
- */
482
141
  'setupAt'?: string;
483
142
  }
484
- /**
485
- *
486
- * @export
487
- * @interface IntegrationsResponse
488
- */
489
143
  export interface IntegrationsResponse {
490
- /**
491
- *
492
- * @type {Array<Integration>}
493
- * @memberof IntegrationsResponse
494
- */
495
144
  'integrations': Array<Integration>;
496
145
  }
497
- /**
498
- *
499
- * @export
500
- * @interface LegacyProjectLogo
501
- */
502
146
  export interface LegacyProjectLogo {
503
- /**
504
- *
505
- * @type {string}
506
- * @memberof LegacyProjectLogo
507
- */
508
147
  'url': string;
509
- /**
510
- *
511
- * @type {string}
512
- * @memberof LegacyProjectLogo
513
- */
514
148
  'backgroundColor': string;
515
149
  }
516
- /**
517
- *
518
- * @export
519
- * @interface ListTasksResponse
520
- */
521
150
  export interface ListTasksResponse {
522
- /**
523
- *
524
- * @type {Array<TaskSummary>}
525
- * @memberof ListTasksResponse
526
- */
527
151
  'tasks': Array<TaskSummary>;
528
152
  }
529
- /**
530
- *
531
- * @export
532
- * @interface NullableIcon
533
- */
534
153
  export interface NullableIcon {
535
- /**
536
- *
537
- * @type {string}
538
- * @memberof NullableIcon
539
- */
540
154
  'prefix': string;
541
- /**
542
- *
543
- * @type {string}
544
- * @memberof NullableIcon
545
- */
546
155
  'iconName': string;
547
- /**
548
- *
549
- * @type {Array<any>}
550
- * @memberof NullableIcon
551
- */
552
156
  'icon': Array<any>;
553
157
  }
554
158
  /**
555
159
  * Indicates whether the task is an OKR associated with the user
556
- * @export
557
- * @enum {string}
558
160
  */
559
161
 
560
162
  export const OkrLevel = {
@@ -566,303 +168,84 @@ export const OkrLevel = {
566
168
  export type OkrLevel = typeof OkrLevel[keyof typeof OkrLevel];
567
169
 
568
170
 
569
- /**
570
- *
571
- * @export
572
- * @interface OkrSummary
573
- */
574
171
  export interface OkrSummary {
575
- /**
576
- *
577
- * @type {string}
578
- * @memberof OkrSummary
579
- */
580
172
  'id': string;
581
- /**
582
- *
583
- * @type {string}
584
- * @memberof OkrSummary
585
- */
586
173
  'content': string;
587
- /**
588
- *
589
- * @type {string}
590
- * @memberof OkrSummary
591
- */
592
174
  'createdAt': string;
593
175
  }
594
- /**
595
- *
596
- * @export
597
- * @interface Project
598
- */
599
176
  export interface Project {
600
- /**
601
- *
602
- * @type {string}
603
- * @memberof Project
604
- */
605
177
  'id': string;
606
- /**
607
- *
608
- * @type {string}
609
- * @memberof Project
610
- */
611
178
  'name': string;
612
179
  /**
613
- *
614
- * @type {LegacyProjectLogo}
615
- * @memberof Project
616
180
  * @deprecated
617
181
  */
618
182
  'logo': LegacyProjectLogo | null;
619
- /**
620
- *
621
- * @type {Array<ProjectLogo>}
622
- * @memberof Project
623
- */
624
183
  'logos': Array<ProjectLogo>;
625
- /**
626
- *
627
- * @type {ProjectManager}
628
- * @memberof Project
629
- */
630
184
  'manager'?: ProjectManager | null;
631
- /**
632
- *
633
- * @type {ProjectPlatform}
634
- * @memberof Project
635
- */
636
185
  'platform'?: ProjectPlatform | null;
637
- /**
638
- *
639
- * @type {Array<string>}
640
- * @memberof Project
641
- */
642
186
  'integrations'?: Array<string>;
643
- /**
644
- *
645
- * @type {ProjectCurrency}
646
- * @memberof Project
647
- */
648
187
  'currency': ProjectCurrency;
649
188
  /**
650
189
  * The public API key for the project which can be used to access basic information about the project such as the store url
651
- * @type {string}
652
- * @memberof Project
653
190
  */
654
191
  'publicKey'?: string;
655
- }
656
- /**
657
- *
658
- * @export
659
- * @interface ProjectCurrency
660
- */
661
- export interface ProjectCurrency {
662
192
  /**
663
- *
664
- * @type {string}
665
- * @memberof ProjectCurrency
193
+ * The date and time the project was created.
666
194
  */
667
- 'code': string;
195
+ 'createdAt': string;
668
196
  /**
669
- *
670
- * @type {string}
671
- * @memberof ProjectCurrency
197
+ * The user who created the project.
672
198
  */
199
+ 'createdBy'?: string;
200
+ }
201
+ export interface ProjectCurrency {
202
+ 'code': string;
673
203
  'symbol': string;
674
204
  }
675
- /**
676
- *
677
- * @export
678
- * @interface ProjectInvite
679
- */
680
205
  export interface ProjectInvite {
681
- /**
682
- *
683
- * @type {string}
684
- * @memberof ProjectInvite
685
- */
686
206
  'id': string;
687
- /**
688
- *
689
- * @type {string}
690
- * @memberof ProjectInvite
691
- */
692
207
  'inviteeEmail': string;
693
- /**
694
- *
695
- * @type {string}
696
- * @memberof ProjectInvite
697
- */
698
208
  'inviteeRole'?: string | null;
699
- /**
700
- *
701
- * @type {string}
702
- * @memberof ProjectInvite
703
- */
704
209
  'createdAt': string;
705
- /**
706
- *
707
- * @type {string}
708
- * @memberof ProjectInvite
709
- */
710
210
  'expiresAt': string;
711
- /**
712
- *
713
- * @type {ProjectUser}
714
- * @memberof ProjectInvite
715
- */
716
211
  'inviter': ProjectUser;
717
212
  }
718
- /**
719
- *
720
- * @export
721
- * @interface ProjectInvites
722
- */
723
213
  export interface ProjectInvites {
724
- /**
725
- *
726
- * @type {Array<ProjectInvite>}
727
- * @memberof ProjectInvites
728
- */
729
214
  'invites': Array<ProjectInvite>;
730
215
  /**
731
216
  * The token referencing the next page number
732
- * @type {number}
733
- * @memberof ProjectInvites
734
217
  */
735
218
  'nextPageToken': number | null;
736
219
  }
737
- /**
738
- *
739
- * @export
740
- * @interface ProjectLogo
741
- */
742
220
  export interface ProjectLogo {
743
- /**
744
- *
745
- * @type {string}
746
- * @memberof ProjectLogo
747
- */
748
221
  'url': string;
749
- /**
750
- *
751
- * @type {{ [key: string]: string; }}
752
- * @memberof ProjectLogo
753
- */
754
222
  'meta': { [key: string]: string; };
755
223
  }
756
- /**
757
- *
758
- * @export
759
- * @interface ProjectManager
760
- */
761
224
  export interface ProjectManager {
762
- /**
763
- *
764
- * @type {string}
765
- * @memberof ProjectManager
766
- */
767
225
  'id': string;
768
- /**
769
- *
770
- * @type {string}
771
- * @memberof ProjectManager
772
- */
773
226
  'name': string;
774
- /**
775
- *
776
- * @type {Array<ProjectLogo>}
777
- * @memberof ProjectManager
778
- */
779
227
  'logos': Array<ProjectLogo>;
780
228
  }
781
- /**
782
- *
783
- * @export
784
- * @interface ProjectPlatform
785
- */
786
229
  export interface ProjectPlatform {
787
- /**
788
- *
789
- * @type {string}
790
- * @memberof ProjectPlatform
791
- */
792
230
  'id'?: string;
793
- /**
794
- *
795
- * @type {string}
796
- * @memberof ProjectPlatform
797
- */
798
231
  'name'?: string;
799
232
  }
800
- /**
801
- *
802
- * @export
803
- * @interface ProjectUser
804
- */
805
233
  export interface ProjectUser {
806
- /**
807
- *
808
- * @type {string}
809
- * @memberof ProjectUser
810
- */
811
234
  'id': string;
812
- /**
813
- *
814
- * @type {string}
815
- * @memberof ProjectUser
816
- */
817
235
  'userRef': string;
818
- /**
819
- *
820
- * @type {string}
821
- * @memberof ProjectUser
822
- */
823
236
  'type'?: ProjectUserTypeEnum;
824
- /**
825
- *
826
- * @type {string}
827
- * @memberof ProjectUser
828
- */
829
237
  'firstName': string | null;
830
- /**
831
- *
832
- * @type {string}
833
- * @memberof ProjectUser
834
- */
835
238
  'lastName': string | null;
836
- /**
837
- *
838
- * @type {string}
839
- * @memberof ProjectUser
840
- */
841
239
  'username': string | null;
842
- /**
843
- *
844
- * @type {string}
845
- * @memberof ProjectUser
846
- */
847
240
  'email': string;
848
- /**
849
- *
850
- * @type {ProjectUserAvatar}
851
- * @memberof ProjectUser
852
- */
853
241
  'avatar': ProjectUserAvatar;
854
- /**
855
- *
856
- * @type {TwoFactorAuthentication}
857
- * @memberof ProjectUser
858
- */
859
242
  'twoFactorAuthentication': TwoFactorAuthentication;
860
243
  /**
861
244
  * Whether the user provides support for the project
862
- * @type {boolean}
863
- * @memberof ProjectUser
864
245
  */
865
246
  'providesSupport'?: boolean;
247
+ 'lastAccessed'?: string;
248
+ 'createdAt': string;
866
249
  }
867
250
 
868
251
  export const ProjectUserTypeEnum = {
@@ -873,62 +256,20 @@ export const ProjectUserTypeEnum = {
873
256
 
874
257
  export type ProjectUserTypeEnum = typeof ProjectUserTypeEnum[keyof typeof ProjectUserTypeEnum];
875
258
 
876
- /**
877
- *
878
- * @export
879
- * @interface ProjectUserAvatar
880
- */
881
259
  export interface ProjectUserAvatar {
882
- /**
883
- *
884
- * @type {string}
885
- * @memberof ProjectUserAvatar
886
- */
887
260
  'original'?: string | null;
888
261
  }
889
- /**
890
- *
891
- * @export
892
- * @interface ProjectUsers
893
- */
894
262
  export interface ProjectUsers {
895
- /**
896
- *
897
- * @type {Array<ProjectUser>}
898
- * @memberof ProjectUsers
899
- */
900
263
  'users': Array<ProjectUser>;
901
264
  /**
902
265
  * The token referencing the next page number
903
- * @type {number}
904
- * @memberof ProjectUsers
905
266
  */
906
267
  'nextPageToken': number | null;
907
268
  }
908
- /**
909
- *
910
- * @export
911
- * @interface ProjectsResponse
912
- */
913
269
  export interface ProjectsResponse {
914
- /**
915
- *
916
- * @type {Array<Project>}
917
- * @memberof ProjectsResponse
918
- */
919
270
  'projects': Array<Project>;
920
271
  }
921
- /**
922
- *
923
- * @export
924
- * @interface SetupMethod
925
- */
926
272
  export interface SetupMethod {
927
- /**
928
- *
929
- * @type {string}
930
- * @memberof SetupMethod
931
- */
932
273
  'type': SetupMethodTypeEnum;
933
274
  }
934
275
 
@@ -938,110 +279,49 @@ export const SetupMethodTypeEnum = {
938
279
 
939
280
  export type SetupMethodTypeEnum = typeof SetupMethodTypeEnum[keyof typeof SetupMethodTypeEnum];
940
281
 
941
- /**
942
- *
943
- * @export
944
- * @interface Task
945
- */
946
282
  export interface Task {
947
- /**
948
- *
949
- * @type {string}
950
- * @memberof Task
951
- */
952
283
  'id': string;
953
- /**
954
- *
955
- * @type {string}
956
- * @memberof Task
957
- */
958
284
  'content': string;
959
- /**
960
- *
961
- * @type {TaskStatus}
962
- * @memberof Task
963
- */
964
285
  'status': TaskStatus;
965
286
  /**
966
287
  * The position of the task in its status group
967
- * @type {number}
968
- * @memberof Task
969
288
  */
970
289
  'sortOrder': number;
971
290
  /**
972
291
  * The code of the chat channel associated with the task
973
- * @type {string}
974
- * @memberof Task
975
292
  */
976
293
  'chatChannel': string | null;
977
294
  /**
978
295
  * The unique id of the user who owns the task
979
- * @type {string}
980
- * @memberof Task
981
296
  */
982
297
  'owner': string | null;
983
298
  /**
984
299
  * The unique ids of the users who will receive notifications for the task
985
- * @type {Array<string>}
986
- * @memberof Task
987
300
  */
988
301
  'notificationRecipients': Array<string>;
989
302
  /**
990
303
  * The estimated hours to complete the task
991
- * @type {number}
992
- * @memberof Task
993
304
  */
994
305
  'estimatedHours': number | null;
995
306
  /**
996
307
  * The completion percentage of the task
997
- * @type {number}
998
- * @memberof Task
999
308
  */
1000
309
  'workProgress': number;
1001
- /**
1002
- *
1003
- * @type {OkrLevel}
1004
- * @memberof Task
1005
- */
1006
310
  'okrLevel': OkrLevel | null;
1007
- /**
1008
- *
1009
- * @type {string}
1010
- * @memberof Task
1011
- */
1012
311
  'parentTask': string | null;
1013
312
  /**
1014
313
  * Indicates the task deadline date
1015
- * @type {string}
1016
- * @memberof Task
1017
314
  */
1018
315
  'endDate': string | null;
1019
316
  /**
1020
317
  * The unique id of the user who created the task
1021
- * @type {string}
1022
- * @memberof Task
1023
318
  */
1024
319
  'createdUser': string;
1025
- /**
1026
- *
1027
- * @type {string}
1028
- * @memberof Task
1029
- */
1030
320
  'createdAt': string;
1031
- /**
1032
- *
1033
- * @type {string}
1034
- * @memberof Task
1035
- */
1036
321
  'updatedAt': string;
1037
322
  }
1038
323
 
1039
324
 
1040
- /**
1041
- *
1042
- * @export
1043
- * @enum {string}
1044
- */
1045
325
 
1046
326
  export const TaskStatus = {
1047
327
  Nice: 'nice',
@@ -1054,131 +334,46 @@ export const TaskStatus = {
1054
334
  export type TaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
1055
335
 
1056
336
 
1057
- /**
1058
- *
1059
- * @export
1060
- * @interface TaskSummary
1061
- */
1062
337
  export interface TaskSummary {
1063
- /**
1064
- *
1065
- * @type {string}
1066
- * @memberof TaskSummary
1067
- */
1068
338
  'id': string;
1069
- /**
1070
- *
1071
- * @type {string}
1072
- * @memberof TaskSummary
1073
- */
1074
339
  'content': string;
1075
- /**
1076
- *
1077
- * @type {TaskStatus}
1078
- * @memberof TaskSummary
1079
- */
1080
340
  'status': TaskStatus;
1081
341
  /**
1082
342
  * The position of the task in its status group
1083
- * @type {number}
1084
- * @memberof TaskSummary
1085
343
  */
1086
344
  'sortOrder': number;
1087
345
  /**
1088
346
  * The unique id of the user who owns the task
1089
- * @type {string}
1090
- * @memberof TaskSummary
1091
347
  */
1092
348
  'owner': string | null;
1093
349
  /**
1094
350
  * The estimated hours to complete the task
1095
- * @type {number}
1096
- * @memberof TaskSummary
1097
351
  */
1098
352
  'estimatedHours': number | null;
1099
353
  /**
1100
354
  * The completion percentage of the task
1101
- * @type {number}
1102
- * @memberof TaskSummary
1103
355
  */
1104
356
  'workProgress': number;
1105
- /**
1106
- *
1107
- * @type {OkrLevel}
1108
- * @memberof TaskSummary
1109
- */
1110
357
  'okrLevel': OkrLevel | null;
1111
- /**
1112
- *
1113
- * @type {string}
1114
- * @memberof TaskSummary
1115
- */
1116
358
  'parentTask': string | null;
1117
359
  /**
1118
360
  * Indicates the task deadline date
1119
- * @type {string}
1120
- * @memberof TaskSummary
1121
361
  */
1122
362
  'endDate': string | null;
1123
- /**
1124
- *
1125
- * @type {string}
1126
- * @memberof TaskSummary
1127
- */
1128
363
  'createdAt': string;
1129
- /**
1130
- *
1131
- * @type {string}
1132
- * @memberof TaskSummary
1133
- */
1134
364
  'updatedAt': string;
1135
365
  }
1136
366
 
1137
367
 
1138
- /**
1139
- *
1140
- * @export
1141
- * @interface Template
1142
- */
1143
368
  export interface Template {
1144
- /**
1145
- *
1146
- * @type {string}
1147
- * @memberof Template
1148
- */
1149
369
  'name': string;
1150
- /**
1151
- *
1152
- * @type {string}
1153
- * @memberof Template
1154
- */
1155
370
  'description': string;
1156
- /**
1157
- *
1158
- * @type {TemplateCode}
1159
- * @memberof Template
1160
- */
1161
371
  'code': TemplateCode;
1162
- /**
1163
- *
1164
- * @type {boolean}
1165
- * @memberof Template
1166
- */
1167
372
  'highlighted': boolean;
1168
- /**
1169
- *
1170
- * @type {Icon}
1171
- * @memberof Template
1172
- */
1173
373
  'icon': Icon;
1174
374
  }
1175
375
 
1176
376
 
1177
- /**
1178
- *
1179
- * @export
1180
- * @enum {string}
1181
- */
1182
377
 
1183
378
  export const TemplateCode = {
1184
379
  Shop: 'shop',
@@ -1192,249 +387,107 @@ export const TemplateCode = {
1192
387
  export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
1193
388
 
1194
389
 
1195
- /**
1196
- *
1197
- * @export
1198
- * @interface TemplatesResponse
1199
- */
1200
390
  export interface TemplatesResponse {
1201
- /**
1202
- *
1203
- * @type {Array<Template>}
1204
- * @memberof TemplatesResponse
1205
- */
1206
391
  'templates': Array<Template>;
1207
392
  }
1208
- /**
1209
- *
1210
- * @export
1211
- * @interface TwoFactorAuthentication
1212
- */
1213
393
  export interface TwoFactorAuthentication {
1214
- /**
1215
- *
1216
- * @type {boolean}
1217
- * @memberof TwoFactorAuthentication
1218
- */
1219
394
  'required'?: boolean;
1220
- /**
1221
- *
1222
- * @type {Array<SetupMethod>}
1223
- * @memberof TwoFactorAuthentication
1224
- */
1225
395
  'setupMethods'?: Array<SetupMethod>;
1226
396
  }
1227
- /**
1228
- *
1229
- * @export
1230
- * @interface UpdateBookmarkRequest
1231
- */
1232
397
  export interface UpdateBookmarkRequest {
1233
- /**
1234
- *
1235
- * @type {string}
1236
- * @memberof UpdateBookmarkRequest
1237
- */
1238
398
  'title'?: string;
1239
- /**
1240
- *
1241
- * @type {BookmarkData}
1242
- * @memberof UpdateBookmarkRequest
1243
- */
1244
399
  'data'?: BookmarkData;
1245
- /**
1246
- *
1247
- * @type {string}
1248
- * @memberof UpdateBookmarkRequest
1249
- */
1250
400
  'description'?: string;
1251
- /**
1252
- *
1253
- * @type {string}
1254
- * @memberof UpdateBookmarkRequest
1255
- */
1256
401
  'color'?: string;
1257
402
  /**
1258
403
  * The icon name of the bookmark
1259
- * @type {string}
1260
- * @memberof UpdateBookmarkRequest
1261
404
  */
1262
405
  'icon'?: string;
1263
406
  /**
1264
407
  * The ID of the tab the bookmark belongs to
1265
- * @type {string}
1266
- * @memberof UpdateBookmarkRequest
1267
408
  */
1268
409
  'tabId'?: string | null;
1269
410
  /**
1270
411
  * The sort order of the bookmark in all tab
1271
- * @type {number}
1272
- * @memberof UpdateBookmarkRequest
1273
412
  */
1274
413
  'sortOrder'?: number | null;
1275
414
  /**
1276
415
  * The sort order of the bookmark in the custom or favourite tab
1277
- * @type {number}
1278
- * @memberof UpdateBookmarkRequest
1279
416
  */
1280
417
  'tabSortOrder'?: number | null;
1281
418
  }
1282
- /**
1283
- *
1284
- * @export
1285
- * @interface UpdateBookmarkTabsRequest
1286
- */
1287
419
  export interface UpdateBookmarkTabsRequest {
1288
- /**
1289
- *
1290
- * @type {Array<UpdateBookmarkTabsRequestTabsInner>}
1291
- * @memberof UpdateBookmarkTabsRequest
1292
- */
1293
420
  'tabs'?: Array<UpdateBookmarkTabsRequestTabsInner>;
1294
421
  }
1295
- /**
1296
- *
1297
- * @export
1298
- * @interface UpdateBookmarkTabsRequestTabsInner
1299
- */
1300
422
  export interface UpdateBookmarkTabsRequestTabsInner {
1301
- /**
1302
- *
1303
- * @type {string}
1304
- * @memberof UpdateBookmarkTabsRequestTabsInner
1305
- */
1306
423
  'id': string | null;
1307
- /**
1308
- *
1309
- * @type {string}
1310
- * @memberof UpdateBookmarkTabsRequestTabsInner
1311
- */
1312
424
  'name': string;
1313
- /**
1314
- *
1315
- * @type {number}
1316
- * @memberof UpdateBookmarkTabsRequestTabsInner
1317
- */
1318
425
  'sortOrder': number;
1319
426
  }
1320
- /**
1321
- *
1322
- * @export
1323
- * @interface UpdateIntegrationRequest
1324
- */
1325
427
  export interface UpdateIntegrationRequest {
1326
- /**
1327
- *
1328
- * @type {object}
1329
- * @memberof UpdateIntegrationRequest
1330
- */
1331
428
  'config': object;
1332
429
  }
1333
- /**
1334
- *
1335
- * @export
1336
- * @interface UpdateProjectRequest
1337
- */
1338
430
  export interface UpdateProjectRequest {
1339
- /**
1340
- *
1341
- * @type {string}
1342
- * @memberof UpdateProjectRequest
1343
- */
1344
431
  'name'?: string;
1345
- /**
1346
- *
1347
- * @type {Array<ProjectLogo>}
1348
- * @memberof UpdateProjectRequest
1349
- */
1350
432
  'logos'?: Array<ProjectLogo>;
1351
433
  }
1352
- /**
1353
- *
1354
- * @export
1355
- * @interface UpdateTaskRequest
1356
- */
1357
434
  export interface UpdateTaskRequest {
1358
- /**
1359
- *
1360
- * @type {string}
1361
- * @memberof UpdateTaskRequest
1362
- */
1363
435
  'content'?: string;
1364
- /**
1365
- *
1366
- * @type {TaskStatus}
1367
- * @memberof UpdateTaskRequest
1368
- */
1369
436
  'status'?: TaskStatus;
1370
437
  /**
1371
438
  * The position of the task in its status group
1372
- * @type {number}
1373
- * @memberof UpdateTaskRequest
1374
439
  */
1375
440
  'sortOrder'?: number;
1376
441
  /**
1377
442
  * The unique id of the user who owns the task
1378
- * @type {string}
1379
- * @memberof UpdateTaskRequest
1380
443
  */
1381
444
  'owner'?: string | null;
1382
445
  /**
1383
446
  * The unique ids of the users who will receive notifications for the task
1384
- * @type {Array<string>}
1385
- * @memberof UpdateTaskRequest
1386
447
  */
1387
448
  'notificationRecipients'?: Array<string>;
1388
449
  /**
1389
450
  * The estimated hours to complete the task
1390
- * @type {number}
1391
- * @memberof UpdateTaskRequest
1392
451
  */
1393
452
  'estimatedHours'?: number | null;
1394
453
  /**
1395
454
  * The completion percentage of the task
1396
- * @type {number}
1397
- * @memberof UpdateTaskRequest
1398
455
  */
1399
456
  'workProgress'?: number;
1400
- /**
1401
- *
1402
- * @type {OkrLevel}
1403
- * @memberof UpdateTaskRequest
1404
- */
1405
457
  'okrLevel'?: OkrLevel | null;
1406
- /**
1407
- *
1408
- * @type {string}
1409
- * @memberof UpdateTaskRequest
1410
- */
1411
458
  'parentTask'?: string | null;
1412
459
  /**
1413
460
  * Indicates the task deadline date
1414
- * @type {string}
1415
- * @memberof UpdateTaskRequest
1416
461
  */
1417
462
  'endDate'?: string | null;
1418
463
  }
1419
464
 
1420
465
 
1421
- /**
1422
- *
1423
- * @export
1424
- * @interface UpdateUserRequest
1425
- */
1426
466
  export interface UpdateUserRequest {
1427
- /**
1428
- *
1429
- * @type {boolean}
1430
- * @memberof UpdateUserRequest
1431
- */
1432
- 'providesSupport': boolean;
467
+ 'firstName'?: string;
468
+ 'lastName'?: string;
469
+ 'username'?: string;
470
+ 'avatar'?: string;
471
+ 'providesSupport'?: boolean;
472
+ }
473
+ export interface UserClient {
474
+ 'name': string;
475
+ 'createdAt': string;
476
+ 'lastAccessed': string;
477
+ }
478
+ export interface UserInvite {
479
+ 'inviter': ProjectUser;
480
+ 'createdAt': string;
481
+ }
482
+ export interface UserLog {
483
+ 'id': string;
484
+ 'action': string;
485
+ 'context': { [key: string]: any; };
486
+ 'createdAt': string;
1433
487
  }
1434
488
 
1435
489
  /**
1436
490
  * ProjectsApi - axios parameter creator
1437
- * @export
1438
491
  */
1439
492
  export const ProjectsApiAxiosParamCreator = function (configuration?: Configuration) {
1440
493
  return {
@@ -2129,6 +1182,51 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
2129
1182
 
2130
1183
 
2131
1184
 
1185
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1186
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1187
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1188
+
1189
+ return {
1190
+ url: toPathString(localVarUrlObj),
1191
+ options: localVarRequestOptions,
1192
+ };
1193
+ },
1194
+ /**
1195
+ * List the clients of the project that the user has access to
1196
+ * @summary List clients
1197
+ * @param {string} project Projects unique identifier
1198
+ * @param {string} user the unique id of the user
1199
+ * @param {*} [options] Override http request option.
1200
+ * @throws {RequiredError}
1201
+ */
1202
+ getClients: async (project: string, user: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1203
+ // verify required parameter 'project' is not null or undefined
1204
+ assertParamExists('getClients', 'project', project)
1205
+ // verify required parameter 'user' is not null or undefined
1206
+ assertParamExists('getClients', 'user', user)
1207
+ const localVarPath = `/v1/projects/{project}/users/{user}/clients`
1208
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1209
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
1210
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1211
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1212
+ let baseOptions;
1213
+ if (configuration) {
1214
+ baseOptions = configuration.baseOptions;
1215
+ }
1216
+
1217
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1218
+ const localVarHeaderParameter = {} as any;
1219
+ const localVarQueryParameter = {} as any;
1220
+
1221
+ // authentication session-oauth required
1222
+ // oauth required
1223
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1224
+
1225
+ // authentication api-key required
1226
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1227
+
1228
+
1229
+
2132
1230
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2133
1231
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2134
1232
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -2276,6 +1374,51 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
2276
1374
 
2277
1375
 
2278
1376
 
1377
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1378
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1379
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1380
+
1381
+ return {
1382
+ url: toPathString(localVarUrlObj),
1383
+ options: localVarRequestOptions,
1384
+ };
1385
+ },
1386
+ /**
1387
+ * List the logs associated with a user on the project
1388
+ * @summary List logs
1389
+ * @param {string} project Projects unique identifier
1390
+ * @param {string} user the unique id of the user
1391
+ * @param {*} [options] Override http request option.
1392
+ * @throws {RequiredError}
1393
+ */
1394
+ getLogs: async (project: string, user: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1395
+ // verify required parameter 'project' is not null or undefined
1396
+ assertParamExists('getLogs', 'project', project)
1397
+ // verify required parameter 'user' is not null or undefined
1398
+ assertParamExists('getLogs', 'user', user)
1399
+ const localVarPath = `/v1/projects/{project}/users/{user}/logs`
1400
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1401
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
1402
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1403
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1404
+ let baseOptions;
1405
+ if (configuration) {
1406
+ baseOptions = configuration.baseOptions;
1407
+ }
1408
+
1409
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1410
+ const localVarHeaderParameter = {} as any;
1411
+ const localVarQueryParameter = {} as any;
1412
+
1413
+ // authentication session-oauth required
1414
+ // oauth required
1415
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1416
+
1417
+ // authentication api-key required
1418
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1419
+
1420
+
1421
+
2279
1422
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2280
1423
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2281
1424
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -2532,6 +1675,51 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
2532
1675
 
2533
1676
 
2534
1677
 
1678
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1679
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1680
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1681
+
1682
+ return {
1683
+ url: toPathString(localVarUrlObj),
1684
+ options: localVarRequestOptions,
1685
+ };
1686
+ },
1687
+ /**
1688
+ * Get the details of the user\'s invite to the project
1689
+ * @summary Get invite
1690
+ * @param {string} project Projects unique identifier
1691
+ * @param {string} user the unique id of the user
1692
+ * @param {*} [options] Override http request option.
1693
+ * @throws {RequiredError}
1694
+ */
1695
+ getUserInvite: async (project: string, user: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1696
+ // verify required parameter 'project' is not null or undefined
1697
+ assertParamExists('getUserInvite', 'project', project)
1698
+ // verify required parameter 'user' is not null or undefined
1699
+ assertParamExists('getUserInvite', 'user', user)
1700
+ const localVarPath = `/v1/projects/{project}/users/{user}/invite`
1701
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1702
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
1703
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1704
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1705
+ let baseOptions;
1706
+ if (configuration) {
1707
+ baseOptions = configuration.baseOptions;
1708
+ }
1709
+
1710
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1711
+ const localVarHeaderParameter = {} as any;
1712
+ const localVarQueryParameter = {} as any;
1713
+
1714
+ // authentication session-oauth required
1715
+ // oauth required
1716
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1717
+
1718
+ // authentication api-key required
1719
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1720
+
1721
+
1722
+
2535
1723
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2536
1724
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2537
1725
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -3258,7 +2446,6 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
3258
2446
 
3259
2447
  /**
3260
2448
  * ProjectsApi - functional programming interface
3261
- * @export
3262
2449
  */
3263
2450
  export const ProjectsApiFp = function(configuration?: Configuration) {
3264
2451
  const localVarAxiosParamCreator = ProjectsApiAxiosParamCreator(configuration)
@@ -3480,6 +2667,20 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
3480
2667
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.getAuth']?.[localVarOperationServerIndex]?.url;
3481
2668
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3482
2669
  },
2670
+ /**
2671
+ * List the clients of the project that the user has access to
2672
+ * @summary List clients
2673
+ * @param {string} project Projects unique identifier
2674
+ * @param {string} user the unique id of the user
2675
+ * @param {*} [options] Override http request option.
2676
+ * @throws {RequiredError}
2677
+ */
2678
+ async getClients(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClients200Response>> {
2679
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getClients(project, user, options);
2680
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2681
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.getClients']?.[localVarOperationServerIndex]?.url;
2682
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2683
+ },
3483
2684
  /**
3484
2685
  * Get an integration
3485
2686
  * @summary Get integration
@@ -3524,6 +2725,20 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
3524
2725
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.getInvites']?.[localVarOperationServerIndex]?.url;
3525
2726
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3526
2727
  },
2728
+ /**
2729
+ * List the logs associated with a user on the project
2730
+ * @summary List logs
2731
+ * @param {string} project Projects unique identifier
2732
+ * @param {string} user the unique id of the user
2733
+ * @param {*} [options] Override http request option.
2734
+ * @throws {RequiredError}
2735
+ */
2736
+ async getLogs(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLogs200Response>> {
2737
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getLogs(project, user, options);
2738
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2739
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.getLogs']?.[localVarOperationServerIndex]?.url;
2740
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2741
+ },
3527
2742
  /**
3528
2743
  * Get the AI-generated OKR summary for the project
3529
2744
  * @summary Get OKR summary
@@ -3604,6 +2819,20 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
3604
2819
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.getUser']?.[localVarOperationServerIndex]?.url;
3605
2820
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3606
2821
  },
2822
+ /**
2823
+ * Get the details of the user\'s invite to the project
2824
+ * @summary Get invite
2825
+ * @param {string} project Projects unique identifier
2826
+ * @param {string} user the unique id of the user
2827
+ * @param {*} [options] Override http request option.
2828
+ * @throws {RequiredError}
2829
+ */
2830
+ async getUserInvite(project: string, user: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserInvite>> {
2831
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getUserInvite(project, user, options);
2832
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2833
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.getUserInvite']?.[localVarOperationServerIndex]?.url;
2834
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2835
+ },
3607
2836
  /**
3608
2837
  * List the users associated with a project
3609
2838
  * @summary List project users
@@ -3824,7 +3053,6 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
3824
3053
 
3825
3054
  /**
3826
3055
  * ProjectsApi - factory interface
3827
- * @export
3828
3056
  */
3829
3057
  export const ProjectsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
3830
3058
  const localVarFp = ProjectsApiFp(configuration)
@@ -3989,6 +3217,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
3989
3217
  getAuth(requestParameters: ProjectsApiGetAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthResponse> {
3990
3218
  return localVarFp.getAuth(requestParameters.project, options).then((request) => request(axios, basePath));
3991
3219
  },
3220
+ /**
3221
+ * List the clients of the project that the user has access to
3222
+ * @summary List clients
3223
+ * @param {ProjectsApiGetClientsRequest} requestParameters Request parameters.
3224
+ * @param {*} [options] Override http request option.
3225
+ * @throws {RequiredError}
3226
+ */
3227
+ getClients(requestParameters: ProjectsApiGetClientsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetClients200Response> {
3228
+ return localVarFp.getClients(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
3229
+ },
3992
3230
  /**
3993
3231
  * Get an integration
3994
3232
  * @summary Get integration
@@ -4019,6 +3257,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
4019
3257
  getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectInvites> {
4020
3258
  return localVarFp.getInvites(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
4021
3259
  },
3260
+ /**
3261
+ * List the logs associated with a user on the project
3262
+ * @summary List logs
3263
+ * @param {ProjectsApiGetLogsRequest} requestParameters Request parameters.
3264
+ * @param {*} [options] Override http request option.
3265
+ * @throws {RequiredError}
3266
+ */
3267
+ getLogs(requestParameters: ProjectsApiGetLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetLogs200Response> {
3268
+ return localVarFp.getLogs(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
3269
+ },
4022
3270
  /**
4023
3271
  * Get the AI-generated OKR summary for the project
4024
3272
  * @summary Get OKR summary
@@ -4079,6 +3327,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
4079
3327
  getUser(requestParameters: ProjectsApiGetUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectUser> {
4080
3328
  return localVarFp.getUser(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
4081
3329
  },
3330
+ /**
3331
+ * Get the details of the user\'s invite to the project
3332
+ * @summary Get invite
3333
+ * @param {ProjectsApiGetUserInviteRequest} requestParameters Request parameters.
3334
+ * @param {*} [options] Override http request option.
3335
+ * @throws {RequiredError}
3336
+ */
3337
+ getUserInvite(requestParameters: ProjectsApiGetUserInviteRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserInvite> {
3338
+ return localVarFp.getUserInvite(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
3339
+ },
4082
3340
  /**
4083
3341
  * List the users associated with a project
4084
3342
  * @summary List project users
@@ -4234,821 +3492,631 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
4234
3492
 
4235
3493
  /**
4236
3494
  * Request parameters for archiveTasks operation in ProjectsApi.
4237
- * @export
4238
- * @interface ProjectsApiArchiveTasksRequest
4239
3495
  */
4240
3496
  export interface ProjectsApiArchiveTasksRequest {
4241
3497
  /**
4242
3498
  * Projects unique identifier
4243
- * @type {string}
4244
- * @memberof ProjectsApiArchiveTasks
4245
3499
  */
4246
3500
  readonly project: string
4247
3501
  }
4248
3502
 
4249
3503
  /**
4250
3504
  * Request parameters for bulkUpdateTasks operation in ProjectsApi.
4251
- * @export
4252
- * @interface ProjectsApiBulkUpdateTasksRequest
4253
3505
  */
4254
3506
  export interface ProjectsApiBulkUpdateTasksRequest {
4255
3507
  /**
4256
3508
  * Projects unique identifier
4257
- * @type {string}
4258
- * @memberof ProjectsApiBulkUpdateTasks
4259
3509
  */
4260
3510
  readonly project: string
4261
3511
 
4262
3512
  /**
4263
3513
  * Update multiple tasks in the workflow
4264
- * @type {BulkUpdateTasksRequest}
4265
- * @memberof ProjectsApiBulkUpdateTasks
4266
3514
  */
4267
3515
  readonly bulkUpdateTasksRequest: BulkUpdateTasksRequest
4268
3516
  }
4269
3517
 
4270
3518
  /**
4271
3519
  * Request parameters for createAuth operation in ProjectsApi.
4272
- * @export
4273
- * @interface ProjectsApiCreateAuthRequest
4274
3520
  */
4275
3521
  export interface ProjectsApiCreateAuthRequest {
4276
3522
  /**
4277
3523
  * Projects unique identifier
4278
- * @type {string}
4279
- * @memberof ProjectsApiCreateAuth
4280
3524
  */
4281
3525
  readonly project: string
4282
3526
  }
4283
3527
 
4284
3528
  /**
4285
3529
  * Request parameters for createBookmark operation in ProjectsApi.
4286
- * @export
4287
- * @interface ProjectsApiCreateBookmarkRequest
4288
3530
  */
4289
3531
  export interface ProjectsApiCreateBookmarkRequest {
4290
3532
  /**
4291
3533
  * Projects unique identifier
4292
- * @type {string}
4293
- * @memberof ProjectsApiCreateBookmark
4294
3534
  */
4295
3535
  readonly project: string
4296
3536
 
4297
3537
  /**
4298
3538
  * Create a new bookmark in the project
4299
- * @type {CreateBookmarkRequest}
4300
- * @memberof ProjectsApiCreateBookmark
4301
3539
  */
4302
3540
  readonly createBookmarkRequest: CreateBookmarkRequest
4303
3541
  }
4304
3542
 
4305
3543
  /**
4306
3544
  * Request parameters for createInvite operation in ProjectsApi.
4307
- * @export
4308
- * @interface ProjectsApiCreateInviteRequest
4309
3545
  */
4310
3546
  export interface ProjectsApiCreateInviteRequest {
4311
3547
  /**
4312
3548
  * Projects unique identifier
4313
- * @type {string}
4314
- * @memberof ProjectsApiCreateInvite
4315
3549
  */
4316
3550
  readonly project: string
4317
3551
 
4318
3552
  /**
4319
3553
  * Request body to invite user
4320
- * @type {CreateInviteRequest}
4321
- * @memberof ProjectsApiCreateInvite
4322
3554
  */
4323
3555
  readonly createInviteRequest: CreateInviteRequest
4324
3556
  }
4325
3557
 
4326
3558
  /**
4327
3559
  * Request parameters for createProject operation in ProjectsApi.
4328
- * @export
4329
- * @interface ProjectsApiCreateProjectRequest
4330
3560
  */
4331
3561
  export interface ProjectsApiCreateProjectRequest {
4332
3562
  /**
4333
3563
  * Project to create
4334
- * @type {CreateProjectRequest}
4335
- * @memberof ProjectsApiCreateProject
4336
3564
  */
4337
3565
  readonly createProjectRequest: CreateProjectRequest
4338
3566
  }
4339
3567
 
4340
3568
  /**
4341
3569
  * Request parameters for createTask operation in ProjectsApi.
4342
- * @export
4343
- * @interface ProjectsApiCreateTaskRequest
4344
3570
  */
4345
3571
  export interface ProjectsApiCreateTaskRequest {
4346
3572
  /**
4347
3573
  * Projects unique identifier
4348
- * @type {string}
4349
- * @memberof ProjectsApiCreateTask
4350
3574
  */
4351
3575
  readonly project: string
4352
3576
 
4353
3577
  /**
4354
3578
  * Create a new task in the workflow
4355
- * @type {CreateTaskRequest}
4356
- * @memberof ProjectsApiCreateTask
4357
3579
  */
4358
3580
  readonly createTaskRequest?: CreateTaskRequest
4359
3581
  }
4360
3582
 
4361
3583
  /**
4362
3584
  * Request parameters for deleteAuth operation in ProjectsApi.
4363
- * @export
4364
- * @interface ProjectsApiDeleteAuthRequest
4365
3585
  */
4366
3586
  export interface ProjectsApiDeleteAuthRequest {
4367
3587
  /**
4368
3588
  * Projects unique identifier
4369
- * @type {string}
4370
- * @memberof ProjectsApiDeleteAuth
4371
3589
  */
4372
3590
  readonly project: string
4373
3591
 
4374
3592
  /**
4375
3593
  * The unique id of the auth token
4376
- * @type {string}
4377
- * @memberof ProjectsApiDeleteAuth
4378
3594
  */
4379
3595
  readonly auth: string
4380
3596
  }
4381
3597
 
4382
3598
  /**
4383
3599
  * Request parameters for deleteBookmark operation in ProjectsApi.
4384
- * @export
4385
- * @interface ProjectsApiDeleteBookmarkRequest
4386
3600
  */
4387
3601
  export interface ProjectsApiDeleteBookmarkRequest {
4388
3602
  /**
4389
3603
  * Projects unique identifier
4390
- * @type {string}
4391
- * @memberof ProjectsApiDeleteBookmark
4392
3604
  */
4393
3605
  readonly project: string
4394
3606
 
4395
3607
  /**
4396
3608
  * The unique id of the bookmark
4397
- * @type {string}
4398
- * @memberof ProjectsApiDeleteBookmark
4399
3609
  */
4400
3610
  readonly id: string
4401
3611
  }
4402
3612
 
4403
3613
  /**
4404
3614
  * Request parameters for deleteInvite operation in ProjectsApi.
4405
- * @export
4406
- * @interface ProjectsApiDeleteInviteRequest
4407
3615
  */
4408
3616
  export interface ProjectsApiDeleteInviteRequest {
4409
3617
  /**
4410
3618
  * Projects unique identifier
4411
- * @type {string}
4412
- * @memberof ProjectsApiDeleteInvite
4413
3619
  */
4414
3620
  readonly project: string
4415
3621
 
4416
3622
  /**
4417
3623
  * The unique id of the invite
4418
- * @type {string}
4419
- * @memberof ProjectsApiDeleteInvite
4420
3624
  */
4421
3625
  readonly invite: string
4422
3626
  }
4423
3627
 
4424
3628
  /**
4425
3629
  * Request parameters for deleteProject operation in ProjectsApi.
4426
- * @export
4427
- * @interface ProjectsApiDeleteProjectRequest
4428
3630
  */
4429
3631
  export interface ProjectsApiDeleteProjectRequest {
4430
3632
  /**
4431
3633
  * Projects unique identifier
4432
- * @type {string}
4433
- * @memberof ProjectsApiDeleteProject
4434
3634
  */
4435
3635
  readonly project: string
4436
3636
  }
4437
3637
 
4438
3638
  /**
4439
3639
  * Request parameters for deleteTask operation in ProjectsApi.
4440
- * @export
4441
- * @interface ProjectsApiDeleteTaskRequest
4442
3640
  */
4443
3641
  export interface ProjectsApiDeleteTaskRequest {
4444
3642
  /**
4445
3643
  * Projects unique identifier
4446
- * @type {string}
4447
- * @memberof ProjectsApiDeleteTask
4448
3644
  */
4449
3645
  readonly project: string
4450
3646
 
4451
3647
  /**
4452
3648
  * The unique id of the task
4453
- * @type {string}
4454
- * @memberof ProjectsApiDeleteTask
4455
3649
  */
4456
3650
  readonly id: string
4457
3651
  }
4458
3652
 
4459
3653
  /**
4460
3654
  * Request parameters for deleteUser operation in ProjectsApi.
4461
- * @export
4462
- * @interface ProjectsApiDeleteUserRequest
4463
3655
  */
4464
3656
  export interface ProjectsApiDeleteUserRequest {
4465
3657
  /**
4466
3658
  * Projects unique identifier
4467
- * @type {string}
4468
- * @memberof ProjectsApiDeleteUser
4469
3659
  */
4470
3660
  readonly project: string
4471
3661
 
4472
3662
  /**
4473
3663
  * the unique id of the user
4474
- * @type {string}
4475
- * @memberof ProjectsApiDeleteUser
4476
3664
  */
4477
3665
  readonly user: string
4478
3666
  }
4479
3667
 
4480
3668
  /**
4481
3669
  * Request parameters for exportOkrs operation in ProjectsApi.
4482
- * @export
4483
- * @interface ProjectsApiExportOkrsRequest
4484
3670
  */
4485
3671
  export interface ProjectsApiExportOkrsRequest {
4486
3672
  /**
4487
3673
  * Projects unique identifier
4488
- * @type {string}
4489
- * @memberof ProjectsApiExportOkrs
4490
3674
  */
4491
3675
  readonly project: string
4492
3676
  }
4493
3677
 
4494
3678
  /**
4495
3679
  * Request parameters for exportTasks operation in ProjectsApi.
4496
- * @export
4497
- * @interface ProjectsApiExportTasksRequest
4498
3680
  */
4499
3681
  export interface ProjectsApiExportTasksRequest {
4500
3682
  /**
4501
3683
  * Projects unique identifier
4502
- * @type {string}
4503
- * @memberof ProjectsApiExportTasks
4504
3684
  */
4505
3685
  readonly project: string
4506
3686
  }
4507
3687
 
4508
3688
  /**
4509
3689
  * Request parameters for getAuth operation in ProjectsApi.
4510
- * @export
4511
- * @interface ProjectsApiGetAuthRequest
4512
3690
  */
4513
3691
  export interface ProjectsApiGetAuthRequest {
4514
3692
  /**
4515
3693
  * Projects unique identifier
4516
- * @type {string}
4517
- * @memberof ProjectsApiGetAuth
4518
3694
  */
4519
3695
  readonly project: string
4520
3696
  }
4521
3697
 
3698
+ /**
3699
+ * Request parameters for getClients operation in ProjectsApi.
3700
+ */
3701
+ export interface ProjectsApiGetClientsRequest {
3702
+ /**
3703
+ * Projects unique identifier
3704
+ */
3705
+ readonly project: string
3706
+
3707
+ /**
3708
+ * the unique id of the user
3709
+ */
3710
+ readonly user: string
3711
+ }
3712
+
4522
3713
  /**
4523
3714
  * Request parameters for getIntegration operation in ProjectsApi.
4524
- * @export
4525
- * @interface ProjectsApiGetIntegrationRequest
4526
3715
  */
4527
3716
  export interface ProjectsApiGetIntegrationRequest {
4528
3717
  /**
4529
3718
  * Projects unique identifier
4530
- * @type {string}
4531
- * @memberof ProjectsApiGetIntegration
4532
3719
  */
4533
3720
  readonly project: string
4534
3721
 
4535
3722
  /**
4536
3723
  * Integrations unique code
4537
- * @type {string}
4538
- * @memberof ProjectsApiGetIntegration
4539
3724
  */
4540
3725
  readonly integration: string
4541
3726
  }
4542
3727
 
4543
3728
  /**
4544
3729
  * Request parameters for getIntegrations operation in ProjectsApi.
4545
- * @export
4546
- * @interface ProjectsApiGetIntegrationsRequest
4547
3730
  */
4548
3731
  export interface ProjectsApiGetIntegrationsRequest {
4549
3732
  /**
4550
3733
  * Projects unique identifier
4551
- * @type {string}
4552
- * @memberof ProjectsApiGetIntegrations
4553
3734
  */
4554
3735
  readonly project: string
4555
3736
 
4556
3737
  /**
4557
3738
  * Include soft deleted integrations
4558
- * @type {string}
4559
- * @memberof ProjectsApiGetIntegrations
4560
3739
  */
4561
3740
  readonly withUninstalled?: string
4562
3741
  }
4563
3742
 
4564
3743
  /**
4565
3744
  * Request parameters for getInvites operation in ProjectsApi.
4566
- * @export
4567
- * @interface ProjectsApiGetInvitesRequest
4568
3745
  */
4569
3746
  export interface ProjectsApiGetInvitesRequest {
4570
3747
  /**
4571
3748
  * Projects unique identifier
4572
- * @type {string}
4573
- * @memberof ProjectsApiGetInvites
4574
3749
  */
4575
3750
  readonly project: string
4576
3751
 
4577
3752
  /**
4578
3753
  * Search term used to filter results by
4579
- * @type {string}
4580
- * @memberof ProjectsApiGetInvites
4581
3754
  */
4582
3755
  readonly search?: string
4583
3756
 
4584
3757
  /**
4585
3758
  * Page reference token
4586
- * @type {number}
4587
- * @memberof ProjectsApiGetInvites
4588
3759
  */
4589
3760
  readonly pageToken?: number
4590
3761
 
4591
3762
  /**
4592
3763
  * 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.
4593
- * @type {number}
4594
- * @memberof ProjectsApiGetInvites
4595
3764
  */
4596
3765
  readonly pageSize?: number
4597
3766
  }
4598
3767
 
3768
+ /**
3769
+ * Request parameters for getLogs operation in ProjectsApi.
3770
+ */
3771
+ export interface ProjectsApiGetLogsRequest {
3772
+ /**
3773
+ * Projects unique identifier
3774
+ */
3775
+ readonly project: string
3776
+
3777
+ /**
3778
+ * the unique id of the user
3779
+ */
3780
+ readonly user: string
3781
+ }
3782
+
4599
3783
  /**
4600
3784
  * Request parameters for getOkrSummary operation in ProjectsApi.
4601
- * @export
4602
- * @interface ProjectsApiGetOkrSummaryRequest
4603
3785
  */
4604
3786
  export interface ProjectsApiGetOkrSummaryRequest {
4605
3787
  /**
4606
3788
  * Projects unique identifier
4607
- * @type {string}
4608
- * @memberof ProjectsApiGetOkrSummary
4609
3789
  */
4610
3790
  readonly project: string
4611
3791
  }
4612
3792
 
4613
3793
  /**
4614
3794
  * Request parameters for getProject operation in ProjectsApi.
4615
- * @export
4616
- * @interface ProjectsApiGetProjectRequest
4617
3795
  */
4618
3796
  export interface ProjectsApiGetProjectRequest {
4619
3797
  /**
4620
3798
  * Projects unique identifier
4621
- * @type {string}
4622
- * @memberof ProjectsApiGetProject
4623
3799
  */
4624
3800
  readonly project: string
4625
3801
  }
4626
3802
 
4627
3803
  /**
4628
3804
  * Request parameters for getProjects operation in ProjectsApi.
4629
- * @export
4630
- * @interface ProjectsApiGetProjectsRequest
4631
3805
  */
4632
3806
  export interface ProjectsApiGetProjectsRequest {
4633
3807
  /**
4634
3808
  * What project it is
4635
- * @type {string}
4636
- * @memberof ProjectsApiGetProjects
4637
3809
  */
4638
3810
  readonly project?: string
4639
3811
  }
4640
3812
 
4641
3813
  /**
4642
3814
  * Request parameters for getTask operation in ProjectsApi.
4643
- * @export
4644
- * @interface ProjectsApiGetTaskRequest
4645
3815
  */
4646
3816
  export interface ProjectsApiGetTaskRequest {
4647
3817
  /**
4648
3818
  * Projects unique identifier
4649
- * @type {string}
4650
- * @memberof ProjectsApiGetTask
4651
3819
  */
4652
3820
  readonly project: string
4653
3821
 
4654
3822
  /**
4655
3823
  * The unique id of the task
4656
- * @type {string}
4657
- * @memberof ProjectsApiGetTask
4658
3824
  */
4659
3825
  readonly id: string
4660
3826
  }
4661
3827
 
4662
3828
  /**
4663
3829
  * Request parameters for getTemplates operation in ProjectsApi.
4664
- * @export
4665
- * @interface ProjectsApiGetTemplatesRequest
4666
3830
  */
4667
3831
  export interface ProjectsApiGetTemplatesRequest {
4668
3832
  /**
4669
3833
  * The project being accessed
4670
- * @type {string}
4671
- * @memberof ProjectsApiGetTemplates
4672
3834
  */
4673
3835
  readonly project?: string
4674
3836
  }
4675
3837
 
4676
3838
  /**
4677
3839
  * Request parameters for getUser operation in ProjectsApi.
4678
- * @export
4679
- * @interface ProjectsApiGetUserRequest
4680
3840
  */
4681
3841
  export interface ProjectsApiGetUserRequest {
4682
3842
  /**
4683
3843
  * Projects unique identifier
4684
- * @type {string}
4685
- * @memberof ProjectsApiGetUser
4686
3844
  */
4687
3845
  readonly project: string
4688
3846
 
4689
3847
  /**
4690
3848
  * the unique id of the user
4691
- * @type {string}
4692
- * @memberof ProjectsApiGetUser
3849
+ */
3850
+ readonly user: string
3851
+ }
3852
+
3853
+ /**
3854
+ * Request parameters for getUserInvite operation in ProjectsApi.
3855
+ */
3856
+ export interface ProjectsApiGetUserInviteRequest {
3857
+ /**
3858
+ * Projects unique identifier
3859
+ */
3860
+ readonly project: string
3861
+
3862
+ /**
3863
+ * the unique id of the user
4693
3864
  */
4694
3865
  readonly user: string
4695
3866
  }
4696
3867
 
4697
3868
  /**
4698
3869
  * Request parameters for getUsers operation in ProjectsApi.
4699
- * @export
4700
- * @interface ProjectsApiGetUsersRequest
4701
3870
  */
4702
3871
  export interface ProjectsApiGetUsersRequest {
4703
3872
  /**
4704
3873
  * Projects unique identifier
4705
- * @type {string}
4706
- * @memberof ProjectsApiGetUsers
4707
3874
  */
4708
3875
  readonly project: string
4709
3876
 
4710
3877
  /**
4711
3878
  * Search term used to filter results by
4712
- * @type {string}
4713
- * @memberof ProjectsApiGetUsers
4714
3879
  */
4715
3880
  readonly search?: string
4716
3881
 
4717
3882
  /**
4718
3883
  * Page reference token
4719
- * @type {number}
4720
- * @memberof ProjectsApiGetUsers
4721
3884
  */
4722
3885
  readonly pageToken?: number
4723
3886
 
4724
3887
  /**
4725
3888
  * 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.
4726
- * @type {number}
4727
- * @memberof ProjectsApiGetUsers
4728
3889
  */
4729
3890
  readonly pageSize?: number
4730
3891
  }
4731
3892
 
4732
3893
  /**
4733
3894
  * Request parameters for installIntegration operation in ProjectsApi.
4734
- * @export
4735
- * @interface ProjectsApiInstallIntegrationRequest
4736
3895
  */
4737
3896
  export interface ProjectsApiInstallIntegrationRequest {
4738
3897
  /**
4739
3898
  * Projects unique identifier
4740
- * @type {string}
4741
- * @memberof ProjectsApiInstallIntegration
4742
3899
  */
4743
3900
  readonly project: string
4744
3901
 
4745
3902
  /**
4746
3903
  * Integrations unique code
4747
- * @type {string}
4748
- * @memberof ProjectsApiInstallIntegration
4749
3904
  */
4750
3905
  readonly integration: string
4751
3906
  }
4752
3907
 
4753
3908
  /**
4754
3909
  * Request parameters for installTemplate operation in ProjectsApi.
4755
- * @export
4756
- * @interface ProjectsApiInstallTemplateRequest
4757
3910
  */
4758
3911
  export interface ProjectsApiInstallTemplateRequest {
4759
3912
  /**
4760
3913
  * Projects unique identifier
4761
- * @type {string}
4762
- * @memberof ProjectsApiInstallTemplate
4763
3914
  */
4764
3915
  readonly project: string
4765
3916
 
4766
3917
  /**
4767
3918
  * Templates unique code
4768
- * @type {TemplateCode}
4769
- * @memberof ProjectsApiInstallTemplate
4770
3919
  */
4771
3920
  readonly template: TemplateCode
4772
3921
 
4773
3922
  /**
4774
3923
  * Request body to install template
4775
- * @type {InstallTemplateRequest}
4776
- * @memberof ProjectsApiInstallTemplate
4777
3924
  */
4778
3925
  readonly installTemplateRequest: InstallTemplateRequest
4779
3926
  }
4780
3927
 
4781
3928
  /**
4782
3929
  * Request parameters for listBookmarks operation in ProjectsApi.
4783
- * @export
4784
- * @interface ProjectsApiListBookmarksRequest
4785
3930
  */
4786
3931
  export interface ProjectsApiListBookmarksRequest {
4787
3932
  /**
4788
3933
  * Projects unique identifier
4789
- * @type {string}
4790
- * @memberof ProjectsApiListBookmarks
4791
3934
  */
4792
3935
  readonly project: string
4793
3936
  }
4794
3937
 
4795
3938
  /**
4796
3939
  * Request parameters for listBookmarktabs operation in ProjectsApi.
4797
- * @export
4798
- * @interface ProjectsApiListBookmarktabsRequest
4799
3940
  */
4800
3941
  export interface ProjectsApiListBookmarktabsRequest {
4801
3942
  /**
4802
3943
  * Projects unique identifier
4803
- * @type {string}
4804
- * @memberof ProjectsApiListBookmarktabs
4805
3944
  */
4806
3945
  readonly project: string
4807
3946
  }
4808
3947
 
4809
3948
  /**
4810
3949
  * Request parameters for listTasks operation in ProjectsApi.
4811
- * @export
4812
- * @interface ProjectsApiListTasksRequest
4813
3950
  */
4814
3951
  export interface ProjectsApiListTasksRequest {
4815
3952
  /**
4816
3953
  * Projects unique identifier
4817
- * @type {string}
4818
- * @memberof ProjectsApiListTasks
4819
3954
  */
4820
3955
  readonly project: string
4821
3956
  }
4822
3957
 
4823
3958
  /**
4824
3959
  * Request parameters for reset2FA operation in ProjectsApi.
4825
- * @export
4826
- * @interface ProjectsApiReset2FARequest
4827
3960
  */
4828
3961
  export interface ProjectsApiReset2FARequest {
4829
3962
  /**
4830
3963
  * Projects unique identifier
4831
- * @type {string}
4832
- * @memberof ProjectsApiReset2FA
4833
3964
  */
4834
3965
  readonly project: string
4835
3966
 
4836
3967
  /**
4837
3968
  * the unique id of the user
4838
- * @type {string}
4839
- * @memberof ProjectsApiReset2FA
4840
3969
  */
4841
3970
  readonly user: string
4842
3971
  }
4843
3972
 
4844
3973
  /**
4845
3974
  * Request parameters for setupIntegration operation in ProjectsApi.
4846
- * @export
4847
- * @interface ProjectsApiSetupIntegrationRequest
4848
3975
  */
4849
3976
  export interface ProjectsApiSetupIntegrationRequest {
4850
3977
  /**
4851
3978
  * Projects unique identifier
4852
- * @type {string}
4853
- * @memberof ProjectsApiSetupIntegration
4854
3979
  */
4855
3980
  readonly project: string
4856
3981
 
4857
3982
  /**
4858
3983
  * Integrations unique code
4859
- * @type {string}
4860
- * @memberof ProjectsApiSetupIntegration
4861
3984
  */
4862
3985
  readonly integration: string
4863
3986
 
4864
3987
  /**
4865
3988
  * Request body to setup integration
4866
- * @type {UpdateIntegrationRequest}
4867
- * @memberof ProjectsApiSetupIntegration
4868
3989
  */
4869
3990
  readonly updateIntegrationRequest: UpdateIntegrationRequest
4870
3991
  }
4871
3992
 
4872
3993
  /**
4873
3994
  * Request parameters for uninstallIntegration operation in ProjectsApi.
4874
- * @export
4875
- * @interface ProjectsApiUninstallIntegrationRequest
4876
3995
  */
4877
3996
  export interface ProjectsApiUninstallIntegrationRequest {
4878
3997
  /**
4879
3998
  * Projects unique identifier
4880
- * @type {string}
4881
- * @memberof ProjectsApiUninstallIntegration
4882
3999
  */
4883
4000
  readonly project: string
4884
4001
 
4885
4002
  /**
4886
4003
  * Integrations unique code
4887
- * @type {string}
4888
- * @memberof ProjectsApiUninstallIntegration
4889
4004
  */
4890
4005
  readonly integration: string
4891
4006
  }
4892
4007
 
4893
4008
  /**
4894
4009
  * Request parameters for updateBookmark operation in ProjectsApi.
4895
- * @export
4896
- * @interface ProjectsApiUpdateBookmarkRequest
4897
4010
  */
4898
4011
  export interface ProjectsApiUpdateBookmarkRequest {
4899
4012
  /**
4900
4013
  * Projects unique identifier
4901
- * @type {string}
4902
- * @memberof ProjectsApiUpdateBookmark
4903
4014
  */
4904
4015
  readonly project: string
4905
4016
 
4906
4017
  /**
4907
4018
  * The unique id of the bookmark
4908
- * @type {string}
4909
- * @memberof ProjectsApiUpdateBookmark
4910
4019
  */
4911
4020
  readonly id: string
4912
4021
 
4913
4022
  /**
4914
4023
  * Update a bookmark in the project
4915
- * @type {UpdateBookmarkRequest}
4916
- * @memberof ProjectsApiUpdateBookmark
4917
4024
  */
4918
4025
  readonly updateBookmarkRequest: UpdateBookmarkRequest
4919
4026
  }
4920
4027
 
4921
4028
  /**
4922
4029
  * Request parameters for updateBookmarkTabs operation in ProjectsApi.
4923
- * @export
4924
- * @interface ProjectsApiUpdateBookmarkTabsRequest
4925
4030
  */
4926
4031
  export interface ProjectsApiUpdateBookmarkTabsRequest {
4927
4032
  /**
4928
4033
  * Projects unique identifier
4929
- * @type {string}
4930
- * @memberof ProjectsApiUpdateBookmarkTabs
4931
4034
  */
4932
4035
  readonly project: string
4933
4036
 
4934
4037
  /**
4935
4038
  * Update a bookmark tab in the project
4936
- * @type {UpdateBookmarkTabsRequest}
4937
- * @memberof ProjectsApiUpdateBookmarkTabs
4938
4039
  */
4939
4040
  readonly updateBookmarkTabsRequest: UpdateBookmarkTabsRequest
4940
4041
  }
4941
4042
 
4942
4043
  /**
4943
4044
  * Request parameters for updateIntegration operation in ProjectsApi.
4944
- * @export
4945
- * @interface ProjectsApiUpdateIntegrationRequest
4946
4045
  */
4947
4046
  export interface ProjectsApiUpdateIntegrationRequest {
4948
4047
  /**
4949
4048
  * Projects unique identifier
4950
- * @type {string}
4951
- * @memberof ProjectsApiUpdateIntegration
4952
4049
  */
4953
4050
  readonly project: string
4954
4051
 
4955
4052
  /**
4956
4053
  * Integrations unique code
4957
- * @type {string}
4958
- * @memberof ProjectsApiUpdateIntegration
4959
4054
  */
4960
4055
  readonly integration: string
4961
4056
 
4962
4057
  /**
4963
4058
  * Request body to update an integration
4964
- * @type {UpdateIntegrationRequest}
4965
- * @memberof ProjectsApiUpdateIntegration
4966
4059
  */
4967
4060
  readonly updateIntegrationRequest: UpdateIntegrationRequest
4968
4061
  }
4969
4062
 
4970
4063
  /**
4971
4064
  * Request parameters for updateProject operation in ProjectsApi.
4972
- * @export
4973
- * @interface ProjectsApiUpdateProjectRequest
4974
4065
  */
4975
4066
  export interface ProjectsApiUpdateProjectRequest {
4976
4067
  /**
4977
4068
  * Projects unique identifier
4978
- * @type {string}
4979
- * @memberof ProjectsApiUpdateProject
4980
4069
  */
4981
4070
  readonly project: string
4982
4071
 
4983
4072
  /**
4984
4073
  * Updated project data
4985
- * @type {UpdateProjectRequest}
4986
- * @memberof ProjectsApiUpdateProject
4987
4074
  */
4988
4075
  readonly updateProjectRequest: UpdateProjectRequest
4989
4076
  }
4990
4077
 
4991
4078
  /**
4992
4079
  * Request parameters for updateTask operation in ProjectsApi.
4993
- * @export
4994
- * @interface ProjectsApiUpdateTaskRequest
4995
4080
  */
4996
4081
  export interface ProjectsApiUpdateTaskRequest {
4997
4082
  /**
4998
4083
  * Projects unique identifier
4999
- * @type {string}
5000
- * @memberof ProjectsApiUpdateTask
5001
4084
  */
5002
4085
  readonly project: string
5003
4086
 
5004
4087
  /**
5005
4088
  * The unique id of the task
5006
- * @type {string}
5007
- * @memberof ProjectsApiUpdateTask
5008
4089
  */
5009
4090
  readonly id: string
5010
4091
 
5011
4092
  /**
5012
4093
  * Update a task in the workflow
5013
- * @type {UpdateTaskRequest}
5014
- * @memberof ProjectsApiUpdateTask
5015
4094
  */
5016
4095
  readonly updateTaskRequest?: UpdateTaskRequest
5017
4096
  }
5018
4097
 
5019
4098
  /**
5020
4099
  * Request parameters for updateUser operation in ProjectsApi.
5021
- * @export
5022
- * @interface ProjectsApiUpdateUserRequest
5023
4100
  */
5024
4101
  export interface ProjectsApiUpdateUserRequest {
5025
4102
  /**
5026
4103
  * Projects unique identifier
5027
- * @type {string}
5028
- * @memberof ProjectsApiUpdateUser
5029
4104
  */
5030
4105
  readonly project: string
5031
4106
 
5032
4107
  /**
5033
4108
  * the unique id of the user
5034
- * @type {string}
5035
- * @memberof ProjectsApiUpdateUser
5036
4109
  */
5037
4110
  readonly user: string
5038
4111
 
5039
4112
  /**
5040
4113
  * Updated project user data
5041
- * @type {UpdateUserRequest}
5042
- * @memberof ProjectsApiUpdateUser
5043
4114
  */
5044
4115
  readonly updateUserRequest: UpdateUserRequest
5045
4116
  }
5046
4117
 
5047
4118
  /**
5048
4119
  * ProjectsApi - object-oriented interface
5049
- * @export
5050
- * @class ProjectsApi
5051
- * @extends {BaseAPI}
5052
4120
  */
5053
4121
  export class ProjectsApi extends BaseAPI {
5054
4122
  /**
@@ -5057,7 +4125,6 @@ export class ProjectsApi extends BaseAPI {
5057
4125
  * @param {ProjectsApiArchiveTasksRequest} requestParameters Request parameters.
5058
4126
  * @param {*} [options] Override http request option.
5059
4127
  * @throws {RequiredError}
5060
- * @memberof ProjectsApi
5061
4128
  */
5062
4129
  public archiveTasks(requestParameters: ProjectsApiArchiveTasksRequest, options?: RawAxiosRequestConfig) {
5063
4130
  return ProjectsApiFp(this.configuration).archiveTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5069,7 +4136,6 @@ export class ProjectsApi extends BaseAPI {
5069
4136
  * @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
5070
4137
  * @param {*} [options] Override http request option.
5071
4138
  * @throws {RequiredError}
5072
- * @memberof ProjectsApi
5073
4139
  */
5074
4140
  public bulkUpdateTasks(requestParameters: ProjectsApiBulkUpdateTasksRequest, options?: RawAxiosRequestConfig) {
5075
4141
  return ProjectsApiFp(this.configuration).bulkUpdateTasks(requestParameters.project, requestParameters.bulkUpdateTasksRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5081,7 +4147,6 @@ export class ProjectsApi extends BaseAPI {
5081
4147
  * @param {ProjectsApiCreateAuthRequest} requestParameters Request parameters.
5082
4148
  * @param {*} [options] Override http request option.
5083
4149
  * @throws {RequiredError}
5084
- * @memberof ProjectsApi
5085
4150
  */
5086
4151
  public createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig) {
5087
4152
  return ProjectsApiFp(this.configuration).createAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5093,7 +4158,6 @@ export class ProjectsApi extends BaseAPI {
5093
4158
  * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
5094
4159
  * @param {*} [options] Override http request option.
5095
4160
  * @throws {RequiredError}
5096
- * @memberof ProjectsApi
5097
4161
  */
5098
4162
  public createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig) {
5099
4163
  return ProjectsApiFp(this.configuration).createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5105,7 +4169,6 @@ export class ProjectsApi extends BaseAPI {
5105
4169
  * @param {ProjectsApiCreateInviteRequest} requestParameters Request parameters.
5106
4170
  * @param {*} [options] Override http request option.
5107
4171
  * @throws {RequiredError}
5108
- * @memberof ProjectsApi
5109
4172
  */
5110
4173
  public createInvite(requestParameters: ProjectsApiCreateInviteRequest, options?: RawAxiosRequestConfig) {
5111
4174
  return ProjectsApiFp(this.configuration).createInvite(requestParameters.project, requestParameters.createInviteRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5117,7 +4180,6 @@ export class ProjectsApi extends BaseAPI {
5117
4180
  * @param {ProjectsApiCreateProjectRequest} requestParameters Request parameters.
5118
4181
  * @param {*} [options] Override http request option.
5119
4182
  * @throws {RequiredError}
5120
- * @memberof ProjectsApi
5121
4183
  */
5122
4184
  public createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig) {
5123
4185
  return ProjectsApiFp(this.configuration).createProject(requestParameters.createProjectRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5129,7 +4191,6 @@ export class ProjectsApi extends BaseAPI {
5129
4191
  * @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
5130
4192
  * @param {*} [options] Override http request option.
5131
4193
  * @throws {RequiredError}
5132
- * @memberof ProjectsApi
5133
4194
  */
5134
4195
  public createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig) {
5135
4196
  return ProjectsApiFp(this.configuration).createTask(requestParameters.project, requestParameters.createTaskRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5141,7 +4202,6 @@ export class ProjectsApi extends BaseAPI {
5141
4202
  * @param {ProjectsApiDeleteAuthRequest} requestParameters Request parameters.
5142
4203
  * @param {*} [options] Override http request option.
5143
4204
  * @throws {RequiredError}
5144
- * @memberof ProjectsApi
5145
4205
  */
5146
4206
  public deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig) {
5147
4207
  return ProjectsApiFp(this.configuration).deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(this.axios, this.basePath));
@@ -5153,7 +4213,6 @@ export class ProjectsApi extends BaseAPI {
5153
4213
  * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
5154
4214
  * @param {*} [options] Override http request option.
5155
4215
  * @throws {RequiredError}
5156
- * @memberof ProjectsApi
5157
4216
  */
5158
4217
  public deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig) {
5159
4218
  return ProjectsApiFp(this.configuration).deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
@@ -5165,7 +4224,6 @@ export class ProjectsApi extends BaseAPI {
5165
4224
  * @param {ProjectsApiDeleteInviteRequest} requestParameters Request parameters.
5166
4225
  * @param {*} [options] Override http request option.
5167
4226
  * @throws {RequiredError}
5168
- * @memberof ProjectsApi
5169
4227
  */
5170
4228
  public deleteInvite(requestParameters: ProjectsApiDeleteInviteRequest, options?: RawAxiosRequestConfig) {
5171
4229
  return ProjectsApiFp(this.configuration).deleteInvite(requestParameters.project, requestParameters.invite, options).then((request) => request(this.axios, this.basePath));
@@ -5177,7 +4235,6 @@ export class ProjectsApi extends BaseAPI {
5177
4235
  * @param {ProjectsApiDeleteProjectRequest} requestParameters Request parameters.
5178
4236
  * @param {*} [options] Override http request option.
5179
4237
  * @throws {RequiredError}
5180
- * @memberof ProjectsApi
5181
4238
  */
5182
4239
  public deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig) {
5183
4240
  return ProjectsApiFp(this.configuration).deleteProject(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5189,7 +4246,6 @@ export class ProjectsApi extends BaseAPI {
5189
4246
  * @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
5190
4247
  * @param {*} [options] Override http request option.
5191
4248
  * @throws {RequiredError}
5192
- * @memberof ProjectsApi
5193
4249
  */
5194
4250
  public deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig) {
5195
4251
  return ProjectsApiFp(this.configuration).deleteTask(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
@@ -5201,7 +4257,6 @@ export class ProjectsApi extends BaseAPI {
5201
4257
  * @param {ProjectsApiDeleteUserRequest} requestParameters Request parameters.
5202
4258
  * @param {*} [options] Override http request option.
5203
4259
  * @throws {RequiredError}
5204
- * @memberof ProjectsApi
5205
4260
  */
5206
4261
  public deleteUser(requestParameters: ProjectsApiDeleteUserRequest, options?: RawAxiosRequestConfig) {
5207
4262
  return ProjectsApiFp(this.configuration).deleteUser(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
@@ -5213,7 +4268,6 @@ export class ProjectsApi extends BaseAPI {
5213
4268
  * @param {ProjectsApiExportOkrsRequest} requestParameters Request parameters.
5214
4269
  * @param {*} [options] Override http request option.
5215
4270
  * @throws {RequiredError}
5216
- * @memberof ProjectsApi
5217
4271
  */
5218
4272
  public exportOkrs(requestParameters: ProjectsApiExportOkrsRequest, options?: RawAxiosRequestConfig) {
5219
4273
  return ProjectsApiFp(this.configuration).exportOkrs(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5225,7 +4279,6 @@ export class ProjectsApi extends BaseAPI {
5225
4279
  * @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
5226
4280
  * @param {*} [options] Override http request option.
5227
4281
  * @throws {RequiredError}
5228
- * @memberof ProjectsApi
5229
4282
  */
5230
4283
  public exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig) {
5231
4284
  return ProjectsApiFp(this.configuration).exportTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5237,19 +4290,28 @@ export class ProjectsApi extends BaseAPI {
5237
4290
  * @param {ProjectsApiGetAuthRequest} requestParameters Request parameters.
5238
4291
  * @param {*} [options] Override http request option.
5239
4292
  * @throws {RequiredError}
5240
- * @memberof ProjectsApi
5241
4293
  */
5242
4294
  public getAuth(requestParameters: ProjectsApiGetAuthRequest, options?: RawAxiosRequestConfig) {
5243
4295
  return ProjectsApiFp(this.configuration).getAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
5244
4296
  }
5245
4297
 
4298
+ /**
4299
+ * List the clients of the project that the user has access to
4300
+ * @summary List clients
4301
+ * @param {ProjectsApiGetClientsRequest} requestParameters Request parameters.
4302
+ * @param {*} [options] Override http request option.
4303
+ * @throws {RequiredError}
4304
+ */
4305
+ public getClients(requestParameters: ProjectsApiGetClientsRequest, options?: RawAxiosRequestConfig) {
4306
+ return ProjectsApiFp(this.configuration).getClients(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
4307
+ }
4308
+
5246
4309
  /**
5247
4310
  * Get an integration
5248
4311
  * @summary Get integration
5249
4312
  * @param {ProjectsApiGetIntegrationRequest} requestParameters Request parameters.
5250
4313
  * @param {*} [options] Override http request option.
5251
4314
  * @throws {RequiredError}
5252
- * @memberof ProjectsApi
5253
4315
  */
5254
4316
  public getIntegration(requestParameters: ProjectsApiGetIntegrationRequest, options?: RawAxiosRequestConfig) {
5255
4317
  return ProjectsApiFp(this.configuration).getIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
@@ -5261,7 +4323,6 @@ export class ProjectsApi extends BaseAPI {
5261
4323
  * @param {ProjectsApiGetIntegrationsRequest} requestParameters Request parameters.
5262
4324
  * @param {*} [options] Override http request option.
5263
4325
  * @throws {RequiredError}
5264
- * @memberof ProjectsApi
5265
4326
  */
5266
4327
  public getIntegrations(requestParameters: ProjectsApiGetIntegrationsRequest, options?: RawAxiosRequestConfig) {
5267
4328
  return ProjectsApiFp(this.configuration).getIntegrations(requestParameters.project, requestParameters.withUninstalled, options).then((request) => request(this.axios, this.basePath));
@@ -5273,19 +4334,28 @@ export class ProjectsApi extends BaseAPI {
5273
4334
  * @param {ProjectsApiGetInvitesRequest} requestParameters Request parameters.
5274
4335
  * @param {*} [options] Override http request option.
5275
4336
  * @throws {RequiredError}
5276
- * @memberof ProjectsApi
5277
4337
  */
5278
4338
  public getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig) {
5279
4339
  return ProjectsApiFp(this.configuration).getInvites(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
5280
4340
  }
5281
4341
 
4342
+ /**
4343
+ * List the logs associated with a user on the project
4344
+ * @summary List logs
4345
+ * @param {ProjectsApiGetLogsRequest} requestParameters Request parameters.
4346
+ * @param {*} [options] Override http request option.
4347
+ * @throws {RequiredError}
4348
+ */
4349
+ public getLogs(requestParameters: ProjectsApiGetLogsRequest, options?: RawAxiosRequestConfig) {
4350
+ return ProjectsApiFp(this.configuration).getLogs(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
4351
+ }
4352
+
5282
4353
  /**
5283
4354
  * Get the AI-generated OKR summary for the project
5284
4355
  * @summary Get OKR summary
5285
4356
  * @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
5286
4357
  * @param {*} [options] Override http request option.
5287
4358
  * @throws {RequiredError}
5288
- * @memberof ProjectsApi
5289
4359
  */
5290
4360
  public getOkrSummary(requestParameters: ProjectsApiGetOkrSummaryRequest, options?: RawAxiosRequestConfig) {
5291
4361
  return ProjectsApiFp(this.configuration).getOkrSummary(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5297,7 +4367,6 @@ export class ProjectsApi extends BaseAPI {
5297
4367
  * @param {ProjectsApiGetProjectRequest} requestParameters Request parameters.
5298
4368
  * @param {*} [options] Override http request option.
5299
4369
  * @throws {RequiredError}
5300
- * @memberof ProjectsApi
5301
4370
  */
5302
4371
  public getProject(requestParameters: ProjectsApiGetProjectRequest, options?: RawAxiosRequestConfig) {
5303
4372
  return ProjectsApiFp(this.configuration).getProject(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5309,7 +4378,6 @@ export class ProjectsApi extends BaseAPI {
5309
4378
  * @param {ProjectsApiGetProjectsRequest} requestParameters Request parameters.
5310
4379
  * @param {*} [options] Override http request option.
5311
4380
  * @throws {RequiredError}
5312
- * @memberof ProjectsApi
5313
4381
  */
5314
4382
  public getProjects(requestParameters: ProjectsApiGetProjectsRequest = {}, options?: RawAxiosRequestConfig) {
5315
4383
  return ProjectsApiFp(this.configuration).getProjects(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5321,7 +4389,6 @@ export class ProjectsApi extends BaseAPI {
5321
4389
  * @param {ProjectsApiGetTaskRequest} requestParameters Request parameters.
5322
4390
  * @param {*} [options] Override http request option.
5323
4391
  * @throws {RequiredError}
5324
- * @memberof ProjectsApi
5325
4392
  */
5326
4393
  public getTask(requestParameters: ProjectsApiGetTaskRequest, options?: RawAxiosRequestConfig) {
5327
4394
  return ProjectsApiFp(this.configuration).getTask(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
@@ -5333,7 +4400,6 @@ export class ProjectsApi extends BaseAPI {
5333
4400
  * @param {ProjectsApiGetTemplatesRequest} requestParameters Request parameters.
5334
4401
  * @param {*} [options] Override http request option.
5335
4402
  * @throws {RequiredError}
5336
- * @memberof ProjectsApi
5337
4403
  */
5338
4404
  public getTemplates(requestParameters: ProjectsApiGetTemplatesRequest = {}, options?: RawAxiosRequestConfig) {
5339
4405
  return ProjectsApiFp(this.configuration).getTemplates(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5345,19 +4411,28 @@ export class ProjectsApi extends BaseAPI {
5345
4411
  * @param {ProjectsApiGetUserRequest} requestParameters Request parameters.
5346
4412
  * @param {*} [options] Override http request option.
5347
4413
  * @throws {RequiredError}
5348
- * @memberof ProjectsApi
5349
4414
  */
5350
4415
  public getUser(requestParameters: ProjectsApiGetUserRequest, options?: RawAxiosRequestConfig) {
5351
4416
  return ProjectsApiFp(this.configuration).getUser(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
5352
4417
  }
5353
4418
 
4419
+ /**
4420
+ * Get the details of the user\'s invite to the project
4421
+ * @summary Get invite
4422
+ * @param {ProjectsApiGetUserInviteRequest} requestParameters Request parameters.
4423
+ * @param {*} [options] Override http request option.
4424
+ * @throws {RequiredError}
4425
+ */
4426
+ public getUserInvite(requestParameters: ProjectsApiGetUserInviteRequest, options?: RawAxiosRequestConfig) {
4427
+ return ProjectsApiFp(this.configuration).getUserInvite(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
4428
+ }
4429
+
5354
4430
  /**
5355
4431
  * List the users associated with a project
5356
4432
  * @summary List project users
5357
4433
  * @param {ProjectsApiGetUsersRequest} requestParameters Request parameters.
5358
4434
  * @param {*} [options] Override http request option.
5359
4435
  * @throws {RequiredError}
5360
- * @memberof ProjectsApi
5361
4436
  */
5362
4437
  public getUsers(requestParameters: ProjectsApiGetUsersRequest, options?: RawAxiosRequestConfig) {
5363
4438
  return ProjectsApiFp(this.configuration).getUsers(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
@@ -5369,7 +4444,6 @@ export class ProjectsApi extends BaseAPI {
5369
4444
  * @param {ProjectsApiInstallIntegrationRequest} requestParameters Request parameters.
5370
4445
  * @param {*} [options] Override http request option.
5371
4446
  * @throws {RequiredError}
5372
- * @memberof ProjectsApi
5373
4447
  */
5374
4448
  public installIntegration(requestParameters: ProjectsApiInstallIntegrationRequest, options?: RawAxiosRequestConfig) {
5375
4449
  return ProjectsApiFp(this.configuration).installIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
@@ -5381,7 +4455,6 @@ export class ProjectsApi extends BaseAPI {
5381
4455
  * @param {ProjectsApiInstallTemplateRequest} requestParameters Request parameters.
5382
4456
  * @param {*} [options] Override http request option.
5383
4457
  * @throws {RequiredError}
5384
- * @memberof ProjectsApi
5385
4458
  */
5386
4459
  public installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig) {
5387
4460
  return ProjectsApiFp(this.configuration).installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5393,7 +4466,6 @@ export class ProjectsApi extends BaseAPI {
5393
4466
  * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
5394
4467
  * @param {*} [options] Override http request option.
5395
4468
  * @throws {RequiredError}
5396
- * @memberof ProjectsApi
5397
4469
  */
5398
4470
  public listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig) {
5399
4471
  return ProjectsApiFp(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5405,7 +4477,6 @@ export class ProjectsApi extends BaseAPI {
5405
4477
  * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
5406
4478
  * @param {*} [options] Override http request option.
5407
4479
  * @throws {RequiredError}
5408
- * @memberof ProjectsApi
5409
4480
  */
5410
4481
  public listBookmarktabs(requestParameters: ProjectsApiListBookmarktabsRequest, options?: RawAxiosRequestConfig) {
5411
4482
  return ProjectsApiFp(this.configuration).listBookmarktabs(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5417,7 +4488,6 @@ export class ProjectsApi extends BaseAPI {
5417
4488
  * @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
5418
4489
  * @param {*} [options] Override http request option.
5419
4490
  * @throws {RequiredError}
5420
- * @memberof ProjectsApi
5421
4491
  */
5422
4492
  public listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig) {
5423
4493
  return ProjectsApiFp(this.configuration).listTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5429,7 +4499,6 @@ export class ProjectsApi extends BaseAPI {
5429
4499
  * @param {ProjectsApiReset2FARequest} requestParameters Request parameters.
5430
4500
  * @param {*} [options] Override http request option.
5431
4501
  * @throws {RequiredError}
5432
- * @memberof ProjectsApi
5433
4502
  */
5434
4503
  public reset2FA(requestParameters: ProjectsApiReset2FARequest, options?: RawAxiosRequestConfig) {
5435
4504
  return ProjectsApiFp(this.configuration).reset2FA(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
@@ -5441,7 +4510,6 @@ export class ProjectsApi extends BaseAPI {
5441
4510
  * @param {ProjectsApiSetupIntegrationRequest} requestParameters Request parameters.
5442
4511
  * @param {*} [options] Override http request option.
5443
4512
  * @throws {RequiredError}
5444
- * @memberof ProjectsApi
5445
4513
  */
5446
4514
  public setupIntegration(requestParameters: ProjectsApiSetupIntegrationRequest, options?: RawAxiosRequestConfig) {
5447
4515
  return ProjectsApiFp(this.configuration).setupIntegration(requestParameters.project, requestParameters.integration, requestParameters.updateIntegrationRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5453,7 +4521,6 @@ export class ProjectsApi extends BaseAPI {
5453
4521
  * @param {ProjectsApiUninstallIntegrationRequest} requestParameters Request parameters.
5454
4522
  * @param {*} [options] Override http request option.
5455
4523
  * @throws {RequiredError}
5456
- * @memberof ProjectsApi
5457
4524
  */
5458
4525
  public uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig) {
5459
4526
  return ProjectsApiFp(this.configuration).uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
@@ -5465,7 +4532,6 @@ export class ProjectsApi extends BaseAPI {
5465
4532
  * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
5466
4533
  * @param {*} [options] Override http request option.
5467
4534
  * @throws {RequiredError}
5468
- * @memberof ProjectsApi
5469
4535
  */
5470
4536
  public updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig) {
5471
4537
  return ProjectsApiFp(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5477,7 +4543,6 @@ export class ProjectsApi extends BaseAPI {
5477
4543
  * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
5478
4544
  * @param {*} [options] Override http request option.
5479
4545
  * @throws {RequiredError}
5480
- * @memberof ProjectsApi
5481
4546
  */
5482
4547
  public updateBookmarkTabs(requestParameters: ProjectsApiUpdateBookmarkTabsRequest, options?: RawAxiosRequestConfig) {
5483
4548
  return ProjectsApiFp(this.configuration).updateBookmarkTabs(requestParameters.project, requestParameters.updateBookmarkTabsRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5489,7 +4554,6 @@ export class ProjectsApi extends BaseAPI {
5489
4554
  * @param {ProjectsApiUpdateIntegrationRequest} requestParameters Request parameters.
5490
4555
  * @param {*} [options] Override http request option.
5491
4556
  * @throws {RequiredError}
5492
- * @memberof ProjectsApi
5493
4557
  */
5494
4558
  public updateIntegration(requestParameters: ProjectsApiUpdateIntegrationRequest, options?: RawAxiosRequestConfig) {
5495
4559
  return ProjectsApiFp(this.configuration).updateIntegration(requestParameters.project, requestParameters.integration, requestParameters.updateIntegrationRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5501,7 +4565,6 @@ export class ProjectsApi extends BaseAPI {
5501
4565
  * @param {ProjectsApiUpdateProjectRequest} requestParameters Request parameters.
5502
4566
  * @param {*} [options] Override http request option.
5503
4567
  * @throws {RequiredError}
5504
- * @memberof ProjectsApi
5505
4568
  */
5506
4569
  public updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig) {
5507
4570
  return ProjectsApiFp(this.configuration).updateProject(requestParameters.project, requestParameters.updateProjectRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5513,7 +4576,6 @@ export class ProjectsApi extends BaseAPI {
5513
4576
  * @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
5514
4577
  * @param {*} [options] Override http request option.
5515
4578
  * @throws {RequiredError}
5516
- * @memberof ProjectsApi
5517
4579
  */
5518
4580
  public updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig) {
5519
4581
  return ProjectsApiFp(this.configuration).updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5525,7 +4587,6 @@ export class ProjectsApi extends BaseAPI {
5525
4587
  * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
5526
4588
  * @param {*} [options] Override http request option.
5527
4589
  * @throws {RequiredError}
5528
- * @memberof ProjectsApi
5529
4590
  */
5530
4591
  public updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig) {
5531
4592
  return ProjectsApiFp(this.configuration).updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(this.axios, this.basePath));