@teemill/projects 1.47.0 → 1.48.0

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