@nestbox-ai/admin 1.0.50 → 1.0.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -13,944 +13,238 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
- /**
17
- *
18
- * @export
19
- * @interface AddProjectMemberData
20
- */
21
16
  export interface AddProjectMemberData {
22
- /**
23
- *
24
- * @type {string}
25
- * @memberof AddProjectMemberData
26
- */
27
17
  'message': string;
28
- /**
29
- *
30
- * @type {object}
31
- * @memberof AddProjectMemberData
32
- */
33
18
  'project': object;
34
19
  }
35
- /**
36
- *
37
- * @export
38
- * @interface AddProjectMemberDto
39
- */
40
20
  export interface AddProjectMemberDto {
41
- /**
42
- *
43
- * @type {string}
44
- * @memberof AddProjectMemberDto
45
- */
46
21
  'firstName': string;
47
- /**
48
- *
49
- * @type {string}
50
- * @memberof AddProjectMemberDto
51
- */
52
22
  'lastName': string;
53
- /**
54
- *
55
- * @type {string}
56
- * @memberof AddProjectMemberDto
57
- */
58
23
  'email': string;
59
- /**
60
- *
61
- * @type {number}
62
- * @memberof AddProjectMemberDto
63
- */
64
24
  'roleId': number;
65
25
  }
66
- /**
67
- *
68
- * @export
69
- * @interface AddProjectMemberResponseDTO
70
- */
71
26
  export interface AddProjectMemberResponseDTO {
72
- /**
73
- *
74
- * @type {AddProjectMemberData}
75
- * @memberof AddProjectMemberResponseDTO
76
- */
77
27
  'data': AddProjectMemberData;
78
28
  }
79
- /**
80
- *
81
- * @export
82
- * @interface AllProjectResponse
83
- */
84
29
  export interface AllProjectResponse {
85
- /**
86
- *
87
- * @type {string}
88
- * @memberof AllProjectResponse
89
- */
90
30
  'id': string;
91
- /**
92
- *
93
- * @type {string}
94
- * @memberof AllProjectResponse
95
- */
96
31
  'name': string;
97
- /**
98
- *
99
- * @type {string}
100
- * @memberof AllProjectResponse
101
- */
102
32
  'description': string;
103
- /**
104
- *
105
- * @type {string}
106
- * @memberof AllProjectResponse
107
- */
108
33
  'createdAt': string;
109
- /**
110
- *
111
- * @type {string}
112
- * @memberof AllProjectResponse
113
- */
114
34
  'updatedAt': string;
115
- /**
116
- *
117
- * @type {string}
118
- * @memberof AllProjectResponse
119
- */
120
35
  'deletedAt': string;
121
36
  }
122
- /**
123
- *
124
- * @export
125
- * @interface AllProjectResponseModel
126
- */
127
37
  export interface AllProjectResponseModel {
128
- /**
129
- *
130
- * @type {Array<AllProjectResponse>}
131
- * @memberof AllProjectResponseModel
132
- */
133
38
  'projects': Array<AllProjectResponse>;
134
- /**
135
- *
136
- * @type {number}
137
- * @memberof AllProjectResponseModel
138
- */
139
39
  'totalCount': number;
140
40
  }
141
- /**
142
- *
143
- * @export
144
- * @interface BadRequestExceptionResponse
145
- */
146
41
  export interface BadRequestExceptionResponse {
147
- /**
148
- *
149
- * @type {string}
150
- * @memberof BadRequestExceptionResponse
151
- */
152
42
  'message': string;
153
- /**
154
- *
155
- * @type {object}
156
- * @memberof BadRequestExceptionResponse
157
- */
158
43
  'errors': object | null;
159
44
  }
160
- /**
161
- *
162
- * @export
163
- * @interface BenchmarkingDatapointDto
164
- */
165
45
  export interface BenchmarkingDatapointDto {
166
46
  /**
167
47
  * Combined content of all benchmarking lines
168
- * @type {string}
169
- * @memberof BenchmarkingDatapointDto
170
48
  */
171
49
  'lines': string;
172
50
  /**
173
51
  * Total number of lines found
174
- * @type {number}
175
- * @memberof BenchmarkingDatapointDto
176
52
  */
177
53
  'totalLines': number;
178
54
  }
179
- /**
180
- *
181
- * @export
182
- * @interface BenchmarkingReportsDto
183
- */
184
55
  export interface BenchmarkingReportsDto {
185
56
  /**
186
57
  * Combined markdown content of all benchmarking reports
187
- * @type {string}
188
- * @memberof BenchmarkingReportsDto
189
58
  */
190
59
  'content': string;
191
60
  /**
192
61
  * Total number of reports found
193
- * @type {number}
194
- * @memberof BenchmarkingReportsDto
195
62
  */
196
63
  'totalReports': number;
197
64
  }
198
- /**
199
- *
200
- * @export
201
- * @interface BooleanResponseDTO
202
- */
203
65
  export interface BooleanResponseDTO {
204
- /**
205
- *
206
- * @type {boolean}
207
- * @memberof BooleanResponseDTO
208
- */
209
66
  'data': boolean;
210
67
  }
211
- /**
212
- *
213
- * @export
214
- * @interface ChunkFileRequestDTO
215
- */
216
68
  export interface ChunkFileRequestDTO {
217
- /**
218
- *
219
- * @type {string}
220
- * @memberof ChunkFileRequestDTO
221
- */
222
69
  'type': string;
223
- /**
224
- *
225
- * @type {string}
226
- * @memberof ChunkFileRequestDTO
227
- */
228
70
  'url': string;
229
- /**
230
- *
231
- * @type {object}
232
- * @memberof ChunkFileRequestDTO
233
- */
234
71
  'options': object;
235
72
  }
236
- /**
237
- *
238
- * @export
239
- * @interface CreateCollectionRequestDTO
240
- */
241
73
  export interface CreateCollectionRequestDTO {
242
- /**
243
- *
244
- * @type {string}
245
- * @memberof CreateCollectionRequestDTO
246
- */
247
74
  'name': string;
248
- /**
249
- *
250
- * @type {object}
251
- * @memberof CreateCollectionRequestDTO
252
- */
253
75
  'metadata': object;
254
76
  }
255
- /**
256
- *
257
- * @export
258
- * @interface CreateDocumentRequestDTO
259
- */
260
77
  export interface CreateDocumentRequestDTO {
261
- /**
262
- *
263
- * @type {string}
264
- * @memberof CreateDocumentRequestDTO
265
- */
266
78
  'id': string;
267
- /**
268
- *
269
- * @type {string}
270
- * @memberof CreateDocumentRequestDTO
271
- */
272
79
  'document': string;
273
- /**
274
- *
275
- * @type {object}
276
- * @memberof CreateDocumentRequestDTO
277
- */
278
80
  'metadata': object;
279
81
  }
280
- /**
281
- *
282
- * @export
283
- * @interface CreateMachineAgentDto
284
- */
285
82
  export interface CreateMachineAgentDto {
286
- /**
287
- *
288
- * @type {string}
289
- * @memberof CreateMachineAgentDto
290
- */
291
83
  'agentName': string;
292
- /**
293
- *
294
- * @type {string}
295
- * @memberof CreateMachineAgentDto
296
- */
297
84
  'goal': string;
298
- /**
299
- *
300
- * @type {string}
301
- * @memberof CreateMachineAgentDto
302
- */
303
85
  'modelBaseId': string;
304
- /**
305
- *
306
- * @type {string}
307
- * @memberof CreateMachineAgentDto
308
- */
309
86
  'machineName': string;
310
- /**
311
- *
312
- * @type {number}
313
- * @memberof CreateMachineAgentDto
314
- */
315
87
  'machineInstanceId': number;
316
- /**
317
- *
318
- * @type {string}
319
- * @memberof CreateMachineAgentDto
320
- */
321
88
  'instanceIP': string;
322
- /**
323
- *
324
- * @type {string}
325
- * @memberof CreateMachineAgentDto
326
- */
327
89
  'entryFunctionName': string;
328
- /**
329
- *
330
- * @type {string}
331
- * @memberof CreateMachineAgentDto
332
- */
333
90
  'machineManifestId': string;
334
- /**
335
- *
336
- * @type {string}
337
- * @memberof CreateMachineAgentDto
338
- */
339
91
  'type': string;
340
- /**
341
- *
342
- * @type {string}
343
- * @memberof CreateMachineAgentDto
344
- */
345
92
  'projectId': string;
346
- /**
347
- *
348
- * @type {number}
349
- * @memberof CreateMachineAgentDto
350
- */
351
93
  'userId': number;
352
94
  /**
353
95
  * Optional Input Schema JSON for agent.
354
- * @type {object}
355
- * @memberof CreateMachineAgentDto
356
96
  */
357
97
  'inputSchema'?: object;
358
98
  }
359
- /**
360
- *
361
- * @export
362
- * @interface CreatePermissionDto
363
- */
364
99
  export interface CreatePermissionDto {
365
- /**
366
- *
367
- * @type {boolean}
368
- * @memberof CreatePermissionDto
369
- */
370
100
  'read': boolean;
371
- /**
372
- *
373
- * @type {boolean}
374
- * @memberof CreatePermissionDto
375
- */
376
101
  'write': boolean;
377
- /**
378
- *
379
- * @type {boolean}
380
- * @memberof CreatePermissionDto
381
- */
382
102
  'update': boolean;
383
- /**
384
- *
385
- * @type {boolean}
386
- * @memberof CreatePermissionDto
387
- */
388
103
  'delete': boolean;
389
104
  }
390
- /**
391
- *
392
- * @export
393
- * @interface CreateProjectDTO
394
- */
395
105
  export interface CreateProjectDTO {
396
- /**
397
- *
398
- * @type {string}
399
- * @memberof CreateProjectDTO
400
- */
401
106
  'name': string;
402
- /**
403
- *
404
- * @type {string}
405
- * @memberof CreateProjectDTO
406
- */
407
107
  'description': string;
408
108
  }
409
- /**
410
- *
411
- * @export
412
- * @interface CreateProjectResponseDTO
413
- */
414
109
  export interface CreateProjectResponseDTO {
415
- /**
416
- *
417
- * @type {ProjectResponseModel}
418
- * @memberof CreateProjectResponseDTO
419
- */
420
110
  'data': ProjectResponseModel;
421
111
  }
422
- /**
423
- *
424
- * @export
425
- * @interface CreateProjectRoleResponseDto
426
- */
427
112
  export interface CreateProjectRoleResponseDto {
428
- /**
429
- *
430
- * @type {CreateRoleDTO}
431
- * @memberof CreateProjectRoleResponseDto
432
- */
433
113
  'data': CreateRoleDTO;
434
114
  }
435
- /**
436
- *
437
- * @export
438
- * @interface CreateResourceDto
439
- */
440
115
  export interface CreateResourceDto {
441
- /**
442
- *
443
- * @type {string}
444
- * @memberof CreateResourceDto
445
- */
446
116
  'name': string;
447
- /**
448
- *
449
- * @type {Array<CreatePermissionDto>}
450
- * @memberof CreateResourceDto
451
- */
452
117
  'permissions': Array<CreatePermissionDto>;
453
118
  }
454
- /**
455
- *
456
- * @export
457
- * @interface CreateRoleDTO
458
- */
459
119
  export interface CreateRoleDTO {
460
- /**
461
- *
462
- * @type {number}
463
- * @memberof CreateRoleDTO
464
- */
465
120
  'id': number;
466
- /**
467
- *
468
- * @type {string}
469
- * @memberof CreateRoleDTO
470
- */
471
121
  'name': string;
472
- /**
473
- *
474
- * @type {string}
475
- * @memberof CreateRoleDTO
476
- */
477
122
  'description': string;
478
- /**
479
- *
480
- * @type {Array<ResourceDTO>}
481
- * @memberof CreateRoleDTO
482
- */
483
123
  'resources': Array<ResourceDTO>;
484
124
  }
485
- /**
486
- *
487
- * @export
488
- * @interface CreateRoleDto
489
- */
490
125
  export interface CreateRoleDto {
491
- /**
492
- *
493
- * @type {string}
494
- * @memberof CreateRoleDto
495
- */
496
126
  'name': string;
497
- /**
498
- *
499
- * @type {string}
500
- * @memberof CreateRoleDto
501
- */
502
127
  'description': string;
503
- /**
504
- *
505
- * @type {Array<CreateResourceDto>}
506
- * @memberof CreateRoleDto
507
- */
508
128
  'resources': Array<CreateResourceDto>;
509
129
  }
510
- /**
511
- *
512
- * @export
513
- * @interface CreateWebhookDto
514
- */
515
130
  export interface CreateWebhookDto {
516
131
  /**
517
132
  * The URL for the webhook
518
- * @type {string}
519
- * @memberof CreateWebhookDto
520
133
  */
521
134
  'url': string;
522
135
  /**
523
136
  * Comma-separated notifications. Valid values: QUERY_CREATED, QUERY_COMPLETED, QUERY_FAILED, EVENT_CREATED, EVENT_UPDATED
524
- * @type {string}
525
- * @memberof CreateWebhookDto
526
137
  */
527
138
  'notifications': string;
528
139
  }
529
- /**
530
- *
531
- * @export
532
- * @interface DeleteProjectDto
533
- */
534
140
  export interface DeleteProjectDto {
535
- /**
536
- *
537
- * @type {string}
538
- * @memberof DeleteProjectDto
539
- */
540
141
  'message': string;
541
142
  }
542
- /**
543
- *
544
- * @export
545
- * @interface DeleteProjectResponseDTO
546
- */
547
143
  export interface DeleteProjectResponseDTO {
548
- /**
549
- *
550
- * @type {string}
551
- * @memberof DeleteProjectResponseDTO
552
- */
553
144
  'message': string;
554
145
  }
555
- /**
556
- *
557
- * @export
558
- * @interface DeleteProjectRoleByIdResponseDto
559
- */
560
146
  export interface DeleteProjectRoleByIdResponseDto {
561
- /**
562
- *
563
- * @type {DeleteProjectDto}
564
- * @memberof DeleteProjectRoleByIdResponseDto
565
- */
566
147
  'data': DeleteProjectDto;
567
148
  }
568
- /**
569
- *
570
- * @export
571
- * @interface FatalErrorExceptionResponse
572
- */
573
149
  export interface FatalErrorExceptionResponse {
574
- /**
575
- *
576
- * @type {string}
577
- * @memberof FatalErrorExceptionResponse
578
- */
579
150
  'message': string;
580
151
  }
581
- /**
582
- *
583
- * @export
584
- * @interface ForbiddenExceptionResponse
585
- */
586
152
  export interface ForbiddenExceptionResponse {
587
- /**
588
- *
589
- * @type {string}
590
- * @memberof ForbiddenExceptionResponse
591
- */
592
153
  'message': string;
593
154
  }
594
- /**
595
- *
596
- * @export
597
- * @interface ForgetPasswordRequestDTO
598
- */
599
155
  export interface ForgetPasswordRequestDTO {
600
- /**
601
- *
602
- * @type {string}
603
- * @memberof ForgetPasswordRequestDTO
604
- */
605
156
  'email': string;
606
157
  }
607
- /**
608
- *
609
- * @export
610
- * @interface ForgetPasswordResponseDTO
611
- */
612
158
  export interface ForgetPasswordResponseDTO {
613
- /**
614
- *
615
- * @type {string}
616
- * @memberof ForgetPasswordResponseDTO
617
- */
618
159
  'token': string;
619
160
  }
620
- /**
621
- *
622
- * @export
623
- * @interface ForgetPasswordVerificationRequestDTO
624
- */
625
161
  export interface ForgetPasswordVerificationRequestDTO {
626
- /**
627
- *
628
- * @type {string}
629
- * @memberof ForgetPasswordVerificationRequestDTO
630
- */
631
162
  'token': string;
632
163
  }
633
- /**
634
- *
635
- * @export
636
- * @interface ForgetPasswordVerificationResponseDTO
637
- */
638
164
  export interface ForgetPasswordVerificationResponseDTO {
639
- /**
640
- *
641
- * @type {string}
642
- * @memberof ForgetPasswordVerificationResponseDTO
643
- */
644
165
  'token': string;
645
166
  }
646
- /**
647
- *
648
- * @export
649
- * @interface GetAllProjectDto
650
- */
651
167
  export interface GetAllProjectDto {
652
- /**
653
- *
654
- * @type {Array<GetAllRoleDTO>}
655
- * @memberof GetAllProjectDto
656
- */
657
168
  'roles': Array<GetAllRoleDTO>;
658
- /**
659
- *
660
- * @type {number}
661
- * @memberof GetAllProjectDto
662
- */
663
169
  'totalCount': number;
664
170
  }
665
- /**
666
- *
667
- * @export
668
- * @interface GetAllProjectMemberResponse
669
- */
670
171
  export interface GetAllProjectMemberResponse {
671
- /**
672
- *
673
- * @type {Array<TeamMemberDto>}
674
- * @memberof GetAllProjectMemberResponse
675
- */
676
172
  'teamMembers': Array<TeamMemberDto>;
677
- /**
678
- *
679
- * @type {number}
680
- * @memberof GetAllProjectMemberResponse
681
- */
682
173
  'totalCount': number;
683
174
  }
684
- /**
685
- *
686
- * @export
687
- * @interface GetAllProjectMemberResponseDto
688
- */
689
175
  export interface GetAllProjectMemberResponseDto {
690
- /**
691
- *
692
- * @type {GetAllProjectMemberResponse}
693
- * @memberof GetAllProjectMemberResponseDto
694
- */
695
176
  'data': GetAllProjectMemberResponse;
696
177
  }
697
- /**
698
- *
699
- * @export
700
- * @interface GetAllProjectRoleResponseDto
701
- */
702
178
  export interface GetAllProjectRoleResponseDto {
703
- /**
704
- *
705
- * @type {GetAllProjectDto}
706
- * @memberof GetAllProjectRoleResponseDto
707
- */
708
179
  'data': GetAllProjectDto;
709
180
  }
710
- /**
711
- *
712
- * @export
713
- * @interface GetAllProjectsResponseDTO
714
- */
715
181
  export interface GetAllProjectsResponseDTO {
716
- /**
717
- *
718
- * @type {AllProjectResponseModel}
719
- * @memberof GetAllProjectsResponseDTO
720
- */
721
182
  'data': AllProjectResponseModel;
722
183
  }
723
- /**
724
- *
725
- * @export
726
- * @interface GetAllRoleDTO
727
- */
728
184
  export interface GetAllRoleDTO {
729
- /**
730
- *
731
- * @type {number}
732
- * @memberof GetAllRoleDTO
733
- */
734
185
  'id': number;
735
- /**
736
- *
737
- * @type {string}
738
- * @memberof GetAllRoleDTO
739
- */
740
186
  'name': string;
741
- /**
742
- *
743
- * @type {string}
744
- * @memberof GetAllRoleDTO
745
- */
746
187
  'description': string;
747
- /**
748
- *
749
- * @type {string}
750
- * @memberof GetAllRoleDTO
751
- */
752
188
  'projectId': string;
753
- /**
754
- *
755
- * @type {string}
756
- * @memberof GetAllRoleDTO
757
- */
758
189
  'createdAt': string;
759
- /**
760
- *
761
- * @type {string}
762
- * @memberof GetAllRoleDTO
763
- */
764
190
  'updatedAt': string;
765
- /**
766
- *
767
- * @type {string}
768
- * @memberof GetAllRoleDTO
769
- */
770
191
  'deletedAt': string;
771
192
  }
772
- /**
773
- *
774
- * @export
775
- * @interface GetProjectByIDResponseDTO
776
- */
777
193
  export interface GetProjectByIDResponseDTO {
778
- /**
779
- *
780
- * @type {ProjectResponseModel}
781
- * @memberof GetProjectByIDResponseDTO
782
- */
783
194
  'data': ProjectResponseModel;
784
195
  }
785
- /**
786
- *
787
- * @export
788
- * @interface GetProjectRoleByIdResponseDto
789
- */
790
196
  export interface GetProjectRoleByIdResponseDto {
791
- /**
792
- *
793
- * @type {GetRoleDTO}
794
- * @memberof GetProjectRoleByIdResponseDto
795
- */
796
197
  'data': GetRoleDTO;
797
198
  }
798
- /**
799
- *
800
- * @export
801
- * @interface GetRoleDTO
802
- */
803
199
  export interface GetRoleDTO {
804
- /**
805
- *
806
- * @type {number}
807
- * @memberof GetRoleDTO
808
- */
809
200
  'id': number;
810
- /**
811
- *
812
- * @type {string}
813
- * @memberof GetRoleDTO
814
- */
815
201
  'name': string;
816
- /**
817
- *
818
- * @type {string}
819
- * @memberof GetRoleDTO
820
- */
821
202
  'description': string;
822
- /**
823
- *
824
- * @type {Array<ResourceDTO>}
825
- * @memberof GetRoleDTO
826
- */
827
203
  'resources': Array<ResourceDTO>;
828
204
  }
829
- /**
830
- *
831
- * @export
832
- * @interface GetUserProjectRoleByRoleIdResponseDto
833
- */
834
205
  export interface GetUserProjectRoleByRoleIdResponseDto {
835
- /**
836
- *
837
- * @type {GetRoleDTO}
838
- * @memberof GetUserProjectRoleByRoleIdResponseDto
839
- */
840
206
  'data': GetRoleDTO;
841
207
  }
842
- /**
843
- *
844
- * @export
845
- * @interface LoginRequestDTO
846
- */
847
208
  export interface LoginRequestDTO {
848
209
  /**
849
210
  * Email
850
- * @type {string}
851
- * @memberof LoginRequestDTO
852
211
  */
853
212
  'email': string;
854
213
  /**
855
214
  * Password
856
- * @type {string}
857
- * @memberof LoginRequestDTO
858
215
  */
859
216
  'password': string;
860
217
  }
861
- /**
862
- *
863
- * @export
864
- * @interface LoginResponseDTO
865
- */
866
218
  export interface LoginResponseDTO {
867
219
  /**
868
220
  * Token
869
- * @type {string}
870
- * @memberof LoginResponseDTO
871
221
  */
872
222
  'token': string;
873
223
  }
874
- /**
875
- *
876
- * @export
877
- * @interface MachineStatusDto
878
- */
879
224
  export interface MachineStatusDto {
880
225
  /**
881
226
  * Current status of the machine instance
882
- * @type {string}
883
- * @memberof MachineStatusDto
884
227
  */
885
228
  'status': string;
886
229
  /**
887
230
  * Logs from the machine instance execution
888
- * @type {string}
889
- * @memberof MachineStatusDto
890
231
  */
891
232
  'logs': string;
892
233
  /**
893
234
  * Timestamp of the status update
894
- * @type {string}
895
- * @memberof MachineStatusDto
896
235
  */
897
236
  'timeStamp': string;
898
237
  }
899
- /**
900
- *
901
- * @export
902
- * @interface MessageResponseDTO
903
- */
904
238
  export interface MessageResponseDTO {
905
- /**
906
- *
907
- * @type {string}
908
- * @memberof MessageResponseDTO
909
- */
910
239
  'message': string;
911
240
  }
912
- /**
913
- *
914
- * @export
915
- * @interface NotFoundExceptionResponse
916
- */
917
241
  export interface NotFoundExceptionResponse {
918
- /**
919
- *
920
- * @type {string}
921
- * @memberof NotFoundExceptionResponse
922
- */
923
242
  'message': string;
924
243
  }
925
- /**
926
- *
927
- * @export
928
- * @interface OAuthLoginRequestDTO
929
- */
930
244
  export interface OAuthLoginRequestDTO {
931
- /**
932
- *
933
- * @type {string}
934
- * @memberof OAuthLoginRequestDTO
935
- */
936
245
  'providerId': string;
937
- /**
938
- *
939
- * @type {string}
940
- * @memberof OAuthLoginRequestDTO
941
- */
942
246
  'type': OAuthLoginRequestDTOTypeEnum;
943
- /**
944
- *
945
- * @type {string}
946
- * @memberof OAuthLoginRequestDTO
947
- */
948
247
  'email': string;
949
- /**
950
- *
951
- * @type {string}
952
- * @memberof OAuthLoginRequestDTO
953
- */
954
248
  'profilePictureUrl': string;
955
249
  }
956
250
  export declare const OAuthLoginRequestDTOTypeEnum: {
@@ -958,208 +252,43 @@ export declare const OAuthLoginRequestDTOTypeEnum: {
958
252
  readonly Apple: "APPLE";
959
253
  };
960
254
  export type OAuthLoginRequestDTOTypeEnum = typeof OAuthLoginRequestDTOTypeEnum[keyof typeof OAuthLoginRequestDTOTypeEnum];
961
- /**
962
- *
963
- * @export
964
- * @interface PermissionsDTO
965
- */
966
255
  export interface PermissionsDTO {
967
- /**
968
- *
969
- * @type {number}
970
- * @memberof PermissionsDTO
971
- */
972
256
  'id': number;
973
- /**
974
- *
975
- * @type {boolean}
976
- * @memberof PermissionsDTO
977
- */
978
257
  'read': boolean;
979
- /**
980
- *
981
- * @type {boolean}
982
- * @memberof PermissionsDTO
983
- */
984
258
  'write': boolean;
985
- /**
986
- *
987
- * @type {boolean}
988
- * @memberof PermissionsDTO
989
- */
990
259
  'update': boolean;
991
- /**
992
- *
993
- * @type {boolean}
994
- * @memberof PermissionsDTO
995
- */
996
260
  'delete': boolean;
997
261
  }
998
- /**
999
- *
1000
- * @export
1001
- * @interface ProjectResponseModel
1002
- */
1003
262
  export interface ProjectResponseModel {
1004
- /**
1005
- *
1006
- * @type {string}
1007
- * @memberof ProjectResponseModel
1008
- */
1009
263
  'id': string;
1010
- /**
1011
- *
1012
- * @type {string}
1013
- * @memberof ProjectResponseModel
1014
- */
1015
264
  'name': string;
1016
- /**
1017
- *
1018
- * @type {string}
1019
- * @memberof ProjectResponseModel
1020
- */
1021
265
  'description': string;
1022
- /**
1023
- *
1024
- * @type {string}
1025
- * @memberof ProjectResponseModel
1026
- */
1027
266
  'createdAt': string;
1028
- /**
1029
- *
1030
- * @type {string}
1031
- * @memberof ProjectResponseModel
1032
- */
1033
- 'updatedAt': string;
1034
- /**
1035
- *
1036
- * @type {string}
1037
- * @memberof ProjectResponseModel
1038
- */
267
+ 'updatedAt': string;
1039
268
  'deletedAt': string;
1040
269
  }
1041
- /**
1042
- *
1043
- * @export
1044
- * @interface ResetPasswordRequestDTO
1045
- */
1046
270
  export interface ResetPasswordRequestDTO {
1047
- /**
1048
- *
1049
- * @type {string}
1050
- * @memberof ResetPasswordRequestDTO
1051
- */
1052
271
  'token': string;
1053
- /**
1054
- *
1055
- * @type {string}
1056
- * @memberof ResetPasswordRequestDTO
1057
- */
1058
272
  'password': string;
1059
273
  }
1060
- /**
1061
- *
1062
- * @export
1063
- * @interface ResourceDTO
1064
- */
1065
274
  export interface ResourceDTO {
1066
- /**
1067
- *
1068
- * @type {number}
1069
- * @memberof ResourceDTO
1070
- */
1071
275
  'id': number;
1072
- /**
1073
- *
1074
- * @type {string}
1075
- * @memberof ResourceDTO
1076
- */
1077
276
  'name': string;
1078
- /**
1079
- *
1080
- * @type {Array<PermissionsDTO>}
1081
- * @memberof ResourceDTO
1082
- */
1083
277
  'permissions': Array<PermissionsDTO>;
1084
278
  }
1085
- /**
1086
- *
1087
- * @export
1088
- * @interface RoleDto
1089
- */
1090
279
  export interface RoleDto {
1091
- /**
1092
- *
1093
- * @type {number}
1094
- * @memberof RoleDto
1095
- */
1096
280
  'id': number;
1097
- /**
1098
- *
1099
- * @type {string}
1100
- * @memberof RoleDto
1101
- */
1102
281
  'name': string;
1103
282
  }
1104
- /**
1105
- *
1106
- * @export
1107
- * @interface SignupRequestDTO
1108
- */
1109
283
  export interface SignupRequestDTO {
1110
- /**
1111
- *
1112
- * @type {string}
1113
- * @memberof SignupRequestDTO
1114
- */
1115
284
  'email': string;
1116
- /**
1117
- *
1118
- * @type {string}
1119
- * @memberof SignupRequestDTO
1120
- */
1121
285
  'password'?: string;
1122
- /**
1123
- *
1124
- * @type {string}
1125
- * @memberof SignupRequestDTO
1126
- */
1127
286
  'firstName': string;
1128
- /**
1129
- *
1130
- * @type {string}
1131
- * @memberof SignupRequestDTO
1132
- */
1133
287
  'lastName': string;
1134
- /**
1135
- *
1136
- * @type {string}
1137
- * @memberof SignupRequestDTO
1138
- */
1139
288
  'phone': string;
1140
- /**
1141
- *
1142
- * @type {string}
1143
- * @memberof SignupRequestDTO
1144
- */
1145
289
  'providerId'?: string;
1146
- /**
1147
- *
1148
- * @type {string}
1149
- * @memberof SignupRequestDTO
1150
- */
1151
290
  'providerType'?: SignupRequestDTOProviderTypeEnum;
1152
- /**
1153
- *
1154
- * @type {string}
1155
- * @memberof SignupRequestDTO
1156
- */
1157
291
  'image'?: string;
1158
- /**
1159
- *
1160
- * @type {string}
1161
- * @memberof SignupRequestDTO
1162
- */
1163
292
  'profilePictureUrl': string;
1164
293
  }
1165
294
  export declare const SignupRequestDTOProviderTypeEnum: {
@@ -1167,360 +296,82 @@ export declare const SignupRequestDTOProviderTypeEnum: {
1167
296
  readonly Apple: "APPLE";
1168
297
  };
1169
298
  export type SignupRequestDTOProviderTypeEnum = typeof SignupRequestDTOProviderTypeEnum[keyof typeof SignupRequestDTOProviderTypeEnum];
1170
- /**
1171
- *
1172
- * @export
1173
- * @interface SignupResponseDTO
1174
- */
1175
299
  export interface SignupResponseDTO {
1176
300
  /**
1177
301
  * Token
1178
- * @type {string}
1179
- * @memberof SignupResponseDTO
1180
302
  */
1181
303
  'token': string;
1182
304
  }
1183
- /**
1184
- *
1185
- * @export
1186
- * @interface SimilaritySearchQueryDTO
1187
- */
1188
305
  export interface SimilaritySearchQueryDTO {
1189
- /**
1190
- *
1191
- * @type {string}
1192
- * @memberof SimilaritySearchQueryDTO
1193
- */
1194
306
  'query': string;
1195
- /**
1196
- *
1197
- * @type {object}
1198
- * @memberof SimilaritySearchQueryDTO
1199
- */
1200
307
  'params': object;
1201
- /**
1202
- *
1203
- * @type {object}
1204
- * @memberof SimilaritySearchQueryDTO
1205
- */
1206
308
  'filter': object;
1207
- /**
1208
- *
1209
- * @type {Array<string>}
1210
- * @memberof SimilaritySearchQueryDTO
1211
- */
1212
309
  'include': Array<string>;
1213
310
  }
1214
- /**
1215
- *
1216
- * @export
1217
- * @interface TeamMemberDto
1218
- */
1219
311
  export interface TeamMemberDto {
1220
- /**
1221
- *
1222
- * @type {number}
1223
- * @memberof TeamMemberDto
1224
- */
1225
312
  'id': number;
1226
- /**
1227
- *
1228
- * @type {string}
1229
- * @memberof TeamMemberDto
1230
- */
1231
313
  'status': string;
1232
- /**
1233
- *
1234
- * @type {UserDto}
1235
- * @memberof TeamMemberDto
1236
- */
1237
314
  'user': UserDto;
1238
- /**
1239
- *
1240
- * @type {RoleDto}
1241
- * @memberof TeamMemberDto
1242
- */
1243
315
  'role': RoleDto;
1244
316
  }
1245
- /**
1246
- *
1247
- * @export
1248
- * @interface UnauthorizedExceptionResponse
1249
- */
1250
317
  export interface UnauthorizedExceptionResponse {
1251
- /**
1252
- *
1253
- * @type {string}
1254
- * @memberof UnauthorizedExceptionResponse
1255
- */
1256
318
  'message': string;
1257
319
  }
1258
- /**
1259
- *
1260
- * @export
1261
- * @interface UpdateDocumentRequestDTO
1262
- */
1263
320
  export interface UpdateDocumentRequestDTO {
1264
- /**
1265
- *
1266
- * @type {string}
1267
- * @memberof UpdateDocumentRequestDTO
1268
- */
1269
321
  'document': string;
1270
- /**
1271
- *
1272
- * @type {object}
1273
- * @memberof UpdateDocumentRequestDTO
1274
- */
1275
322
  'metadata': object;
1276
323
  }
1277
- /**
1278
- *
1279
- * @export
1280
- * @interface UpdatePermissionDto
1281
- */
1282
324
  export interface UpdatePermissionDto {
1283
- /**
1284
- *
1285
- * @type {number}
1286
- * @memberof UpdatePermissionDto
1287
- */
1288
325
  'id': number;
1289
- /**
1290
- *
1291
- * @type {boolean}
1292
- * @memberof UpdatePermissionDto
1293
- */
1294
326
  'read': boolean;
1295
- /**
1296
- *
1297
- * @type {boolean}
1298
- * @memberof UpdatePermissionDto
1299
- */
1300
327
  'write': boolean;
1301
- /**
1302
- *
1303
- * @type {boolean}
1304
- * @memberof UpdatePermissionDto
1305
- */
1306
328
  'update': boolean;
1307
- /**
1308
- *
1309
- * @type {boolean}
1310
- * @memberof UpdatePermissionDto
1311
- */
1312
329
  'delete': boolean;
1313
330
  }
1314
- /**
1315
- *
1316
- * @export
1317
- * @interface UpdateProjectByIDResponseDTO
1318
- */
1319
331
  export interface UpdateProjectByIDResponseDTO {
1320
- /**
1321
- *
1322
- * @type {ProjectResponseModel}
1323
- * @memberof UpdateProjectByIDResponseDTO
1324
- */
1325
332
  'data': ProjectResponseModel;
1326
333
  }
1327
- /**
1328
- *
1329
- * @export
1330
- * @interface UpdateProjectByIdRequest
1331
- */
1332
334
  export interface UpdateProjectByIdRequest {
1333
- /**
1334
- *
1335
- * @type {string}
1336
- * @memberof UpdateProjectByIdRequest
1337
- */
1338
335
  'name': string;
1339
- /**
1340
- *
1341
- * @type {string}
1342
- * @memberof UpdateProjectByIdRequest
1343
- */
1344
336
  'description': string;
1345
337
  }
1346
- /**
1347
- *
1348
- * @export
1349
- * @interface UpdateProjectRoleResponseDto
1350
- */
1351
338
  export interface UpdateProjectRoleResponseDto {
1352
- /**
1353
- *
1354
- * @type {UpdateRoleDTO}
1355
- * @memberof UpdateProjectRoleResponseDto
1356
- */
1357
339
  'data': UpdateRoleDTO;
1358
340
  }
1359
- /**
1360
- *
1361
- * @export
1362
- * @interface UpdateResourceDto
1363
- */
1364
341
  export interface UpdateResourceDto {
1365
- /**
1366
- *
1367
- * @type {number}
1368
- * @memberof UpdateResourceDto
1369
- */
1370
342
  'id': number;
1371
- /**
1372
- *
1373
- * @type {string}
1374
- * @memberof UpdateResourceDto
1375
- */
1376
343
  'name': string;
1377
- /**
1378
- *
1379
- * @type {Array<UpdatePermissionDto>}
1380
- * @memberof UpdateResourceDto
1381
- */
1382
344
  'permissions': Array<UpdatePermissionDto>;
1383
345
  }
1384
- /**
1385
- *
1386
- * @export
1387
- * @interface UpdateRoleByIdDto
1388
- */
1389
346
  export interface UpdateRoleByIdDto {
1390
- /**
1391
- *
1392
- * @type {string}
1393
- * @memberof UpdateRoleByIdDto
1394
- */
1395
347
  'name': string;
1396
- /**
1397
- *
1398
- * @type {string}
1399
- * @memberof UpdateRoleByIdDto
1400
- */
1401
348
  'description': string;
1402
- /**
1403
- *
1404
- * @type {Array<UpdateResourceDto>}
1405
- * @memberof UpdateRoleByIdDto
1406
- */
1407
349
  'resources': Array<UpdateResourceDto>;
1408
350
  }
1409
- /**
1410
- *
1411
- * @export
1412
- * @interface UpdateRoleDTO
1413
- */
1414
351
  export interface UpdateRoleDTO {
1415
- /**
1416
- *
1417
- * @type {number}
1418
- * @memberof UpdateRoleDTO
1419
- */
1420
352
  'id': number;
1421
- /**
1422
- *
1423
- * @type {string}
1424
- * @memberof UpdateRoleDTO
1425
- */
1426
353
  'name': string;
1427
- /**
1428
- *
1429
- * @type {string}
1430
- * @memberof UpdateRoleDTO
1431
- */
1432
354
  'description': string;
1433
- /**
1434
- *
1435
- * @type {Array<ResourceDTO>}
1436
- * @memberof UpdateRoleDTO
1437
- */
1438
355
  'resources': Array<ResourceDTO>;
1439
356
  }
1440
- /**
1441
- *
1442
- * @export
1443
- * @interface UpdateTeamMemberRequestDTO
1444
- */
1445
357
  export interface UpdateTeamMemberRequestDTO {
1446
- /**
1447
- *
1448
- * @type {number}
1449
- * @memberof UpdateTeamMemberRequestDTO
1450
- */
1451
358
  'roleId': number;
1452
359
  }
1453
- /**
1454
- *
1455
- * @export
1456
- * @interface UpdateTeamMemberStatusRequestDTO
1457
- */
1458
360
  export interface UpdateTeamMemberStatusRequestDTO {
1459
- /**
1460
- *
1461
- * @type {string}
1462
- * @memberof UpdateTeamMemberStatusRequestDTO
1463
- */
1464
361
  'status': string;
1465
- /**
1466
- *
1467
- * @type {string}
1468
- * @memberof UpdateTeamMemberStatusRequestDTO
1469
- */
1470
362
  'token': string;
1471
363
  }
1472
- /**
1473
- *
1474
- * @export
1475
- * @interface UserDto
1476
- */
1477
364
  export interface UserDto {
1478
- /**
1479
- *
1480
- * @type {number}
1481
- * @memberof UserDto
1482
- */
1483
365
  'id': number;
1484
- /**
1485
- *
1486
- * @type {string}
1487
- * @memberof UserDto
1488
- */
1489
366
  'firstName': string;
1490
- /**
1491
- *
1492
- * @type {string}
1493
- * @memberof UserDto
1494
- */
1495
367
  'lastName': string;
1496
- /**
1497
- *
1498
- * @type {string}
1499
- * @memberof UserDto
1500
- */
1501
368
  'email': string;
1502
- /**
1503
- *
1504
- * @type {string}
1505
- * @memberof UserDto
1506
- */
1507
369
  'status': string;
1508
- /**
1509
- *
1510
- * @type {string}
1511
- * @memberof UserDto
1512
- */
1513
370
  'profilePicture': string;
1514
- /**
1515
- *
1516
- * @type {string}
1517
- * @memberof UserDto
1518
- */
1519
371
  'bio': string;
1520
372
  }
1521
373
  /**
1522
374
  * AuthApi - axios parameter creator
1523
- * @export
1524
375
  */
1525
376
  export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
1526
377
  /**
@@ -1563,6 +414,14 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
1563
414
  * @throws {RequiredError}
1564
415
  */
1565
416
  authControllerOAuthLogin: (oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
417
+ /**
418
+ *
419
+ * @summary Refresh Google access token
420
+ * @param {string} token
421
+ * @param {*} [options] Override http request option.
422
+ * @throws {RequiredError}
423
+ */
424
+ authControllerRefreshToken: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1566
425
  /**
1567
426
  *
1568
427
  * @summary Forget password initiate
@@ -1582,7 +441,6 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
1582
441
  };
1583
442
  /**
1584
443
  * AuthApi - functional programming interface
1585
- * @export
1586
444
  */
1587
445
  export declare const AuthApiFp: (configuration?: Configuration) => {
1588
446
  /**
@@ -1625,6 +483,14 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
1625
483
  * @throws {RequiredError}
1626
484
  */
1627
485
  authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoginResponseDTO>>;
486
+ /**
487
+ *
488
+ * @summary Refresh Google access token
489
+ * @param {string} token
490
+ * @param {*} [options] Override http request option.
491
+ * @throws {RequiredError}
492
+ */
493
+ authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
1628
494
  /**
1629
495
  *
1630
496
  * @summary Forget password initiate
@@ -1644,7 +510,6 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
1644
510
  };
1645
511
  /**
1646
512
  * AuthApi - factory interface
1647
- * @export
1648
513
  */
1649
514
  export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1650
515
  /**
@@ -1687,6 +552,14 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
1687
552
  * @throws {RequiredError}
1688
553
  */
1689
554
  authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<LoginResponseDTO>;
555
+ /**
556
+ *
557
+ * @summary Refresh Google access token
558
+ * @param {string} token
559
+ * @param {*} [options] Override http request option.
560
+ * @throws {RequiredError}
561
+ */
562
+ authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
1690
563
  /**
1691
564
  *
1692
565
  * @summary Forget password initiate
@@ -1706,9 +579,6 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
1706
579
  };
1707
580
  /**
1708
581
  * AuthApi - object-oriented interface
1709
- * @export
1710
- * @class AuthApi
1711
- * @extends {BaseAPI}
1712
582
  */
1713
583
  export declare class AuthApi extends BaseAPI {
1714
584
  /**
@@ -1717,67 +587,67 @@ export declare class AuthApi extends BaseAPI {
1717
587
  * @param {string} token
1718
588
  * @param {*} [options] Override http request option.
1719
589
  * @throws {RequiredError}
1720
- * @memberof AuthApi
1721
590
  */
1722
- authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
591
+ authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
1723
592
  /**
1724
593
  *
1725
594
  * @summary Forget password initiate
1726
595
  * @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
1727
596
  * @param {*} [options] Override http request option.
1728
597
  * @throws {RequiredError}
1729
- * @memberof AuthApi
1730
598
  */
1731
- authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordResponseDTO, any>>;
599
+ authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordResponseDTO, any, {}>>;
1732
600
  /**
1733
601
  *
1734
602
  * @summary Forget password verification
1735
603
  * @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
1736
604
  * @param {*} [options] Override http request option.
1737
605
  * @throws {RequiredError}
1738
- * @memberof AuthApi
1739
606
  */
1740
- authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordVerificationResponseDTO, any>>;
607
+ authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordVerificationResponseDTO, any, {}>>;
1741
608
  /**
1742
609
  *
1743
610
  * @summary Login to the application
1744
611
  * @param {LoginRequestDTO} loginRequestDTO
1745
612
  * @param {*} [options] Override http request option.
1746
613
  * @throws {RequiredError}
1747
- * @memberof AuthApi
1748
614
  */
1749
- authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any>>;
615
+ authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any, {}>>;
1750
616
  /**
1751
617
  *
1752
618
  * @summary Login with OAuth apps
1753
619
  * @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
1754
620
  * @param {*} [options] Override http request option.
1755
621
  * @throws {RequiredError}
1756
- * @memberof AuthApi
1757
622
  */
1758
- authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any>>;
623
+ authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any, {}>>;
624
+ /**
625
+ *
626
+ * @summary Refresh Google access token
627
+ * @param {string} token
628
+ * @param {*} [options] Override http request option.
629
+ * @throws {RequiredError}
630
+ */
631
+ authControllerRefreshToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
1759
632
  /**
1760
633
  *
1761
634
  * @summary Forget password initiate
1762
635
  * @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
1763
636
  * @param {*} [options] Override http request option.
1764
637
  * @throws {RequiredError}
1765
- * @memberof AuthApi
1766
638
  */
1767
- authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BooleanResponseDTO, any>>;
639
+ authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BooleanResponseDTO, any, {}>>;
1768
640
  /**
1769
641
  *
1770
642
  * @summary Signup in the application
1771
643
  * @param {SignupRequestDTO} signupRequestDTO
1772
644
  * @param {*} [options] Override http request option.
1773
645
  * @throws {RequiredError}
1774
- * @memberof AuthApi
1775
646
  */
1776
- authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignupResponseDTO, any>>;
647
+ authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignupResponseDTO, any, {}>>;
1777
648
  }
1778
649
  /**
1779
650
  * DocumentsApi - axios parameter creator
1780
- * @export
1781
651
  */
1782
652
  export declare const DocumentsApiAxiosParamCreator: (configuration?: Configuration) => {
1783
653
  /**
@@ -1911,7 +781,6 @@ export declare const DocumentsApiAxiosParamCreator: (configuration?: Configurati
1911
781
  };
1912
782
  /**
1913
783
  * DocumentsApi - functional programming interface
1914
- * @export
1915
784
  */
1916
785
  export declare const DocumentsApiFp: (configuration?: Configuration) => {
1917
786
  /**
@@ -2045,7 +914,6 @@ export declare const DocumentsApiFp: (configuration?: Configuration) => {
2045
914
  };
2046
915
  /**
2047
916
  * DocumentsApi - factory interface
2048
- * @export
2049
917
  */
2050
918
  export declare const DocumentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2051
919
  /**
@@ -2179,9 +1047,6 @@ export declare const DocumentsApiFactory: (configuration?: Configuration, basePa
2179
1047
  };
2180
1048
  /**
2181
1049
  * DocumentsApi - object-oriented interface
2182
- * @export
2183
- * @class DocumentsApi
2184
- * @extends {BaseAPI}
2185
1050
  */
2186
1051
  export declare class DocumentsApi extends BaseAPI {
2187
1052
  /**
@@ -2193,9 +1058,8 @@ export declare class DocumentsApi extends BaseAPI {
2193
1058
  * @param {CreateDocumentRequestDTO} createDocumentRequestDTO
2194
1059
  * @param {*} [options] Override http request option.
2195
1060
  * @throws {RequiredError}
2196
- * @memberof DocumentsApi
2197
1061
  */
2198
- documentControllerAddDocToCollection(projectId: string, instanceId: string, collectionId: string, createDocumentRequestDTO: CreateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1062
+ documentControllerAddDocToCollection(projectId: string, instanceId: string, collectionId: string, createDocumentRequestDTO: CreateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2199
1063
  /**
2200
1064
  *
2201
1065
  * @summary Use a file to chunk and add to collection
@@ -2205,9 +1069,8 @@ export declare class DocumentsApi extends BaseAPI {
2205
1069
  * @param {ChunkFileRequestDTO} chunkFileRequestDTO
2206
1070
  * @param {*} [options] Override http request option.
2207
1071
  * @throws {RequiredError}
2208
- * @memberof DocumentsApi
2209
1072
  */
2210
- documentControllerAddDocToCollectionFromFile(projectId: string, instanceId: string, collectionId: string, chunkFileRequestDTO: ChunkFileRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1073
+ documentControllerAddDocToCollectionFromFile(projectId: string, instanceId: string, collectionId: string, chunkFileRequestDTO: ChunkFileRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2211
1074
  /**
2212
1075
  *
2213
1076
  * @summary Create collection
@@ -2216,9 +1079,8 @@ export declare class DocumentsApi extends BaseAPI {
2216
1079
  * @param {CreateCollectionRequestDTO} createCollectionRequestDTO
2217
1080
  * @param {*} [options] Override http request option.
2218
1081
  * @throws {RequiredError}
2219
- * @memberof DocumentsApi
2220
1082
  */
2221
- documentControllerCreateCollection(projectId: string, instanceId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1083
+ documentControllerCreateCollection(projectId: string, instanceId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2222
1084
  /**
2223
1085
  *
2224
1086
  * @summary Delete collection
@@ -2227,9 +1089,8 @@ export declare class DocumentsApi extends BaseAPI {
2227
1089
  * @param {string} collectionId
2228
1090
  * @param {*} [options] Override http request option.
2229
1091
  * @throws {RequiredError}
2230
- * @memberof DocumentsApi
2231
1092
  */
2232
- documentControllerDeleteCollection(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1093
+ documentControllerDeleteCollection(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2233
1094
  /**
2234
1095
  *
2235
1096
  * @summary Delete doc by ID
@@ -2239,9 +1100,8 @@ export declare class DocumentsApi extends BaseAPI {
2239
1100
  * @param {string} docId
2240
1101
  * @param {*} [options] Override http request option.
2241
1102
  * @throws {RequiredError}
2242
- * @memberof DocumentsApi
2243
1103
  */
2244
- documentControllerDeleteDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1104
+ documentControllerDeleteDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2245
1105
  /**
2246
1106
  *
2247
1107
  * @summary Delete docs based on metadata filters
@@ -2251,9 +1111,8 @@ export declare class DocumentsApi extends BaseAPI {
2251
1111
  * @param {string} filter
2252
1112
  * @param {*} [options] Override http request option.
2253
1113
  * @throws {RequiredError}
2254
- * @memberof DocumentsApi
2255
1114
  */
2256
- documentControllerDeleteDocsFromCollection(projectId: string, instanceId: string, collectionId: string, filter: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1115
+ documentControllerDeleteDocsFromCollection(projectId: string, instanceId: string, collectionId: string, filter: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2257
1116
  /**
2258
1117
  *
2259
1118
  * @summary Get all collections
@@ -2261,9 +1120,8 @@ export declare class DocumentsApi extends BaseAPI {
2261
1120
  * @param {string} instanceId
2262
1121
  * @param {*} [options] Override http request option.
2263
1122
  * @throws {RequiredError}
2264
- * @memberof DocumentsApi
2265
1123
  */
2266
- documentControllerGetAllCollections(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1124
+ documentControllerGetAllCollections(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2267
1125
  /**
2268
1126
  *
2269
1127
  * @summary Get collection info
@@ -2272,9 +1130,8 @@ export declare class DocumentsApi extends BaseAPI {
2272
1130
  * @param {string} collectionId
2273
1131
  * @param {*} [options] Override http request option.
2274
1132
  * @throws {RequiredError}
2275
- * @memberof DocumentsApi
2276
1133
  */
2277
- documentControllerGetCollectionInfo(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1134
+ documentControllerGetCollectionInfo(projectId: string, instanceId: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2278
1135
  /**
2279
1136
  *
2280
1137
  * @summary Get doc by ID
@@ -2284,9 +1141,8 @@ export declare class DocumentsApi extends BaseAPI {
2284
1141
  * @param {string} docId
2285
1142
  * @param {*} [options] Override http request option.
2286
1143
  * @throws {RequiredError}
2287
- * @memberof DocumentsApi
2288
1144
  */
2289
- documentControllerGetDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1145
+ documentControllerGetDocById(projectId: string, instanceId: string, collectionId: string, docId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2290
1146
  /**
2291
1147
  *
2292
1148
  * @summary Similarity search query
@@ -2296,9 +1152,8 @@ export declare class DocumentsApi extends BaseAPI {
2296
1152
  * @param {SimilaritySearchQueryDTO} similaritySearchQueryDTO
2297
1153
  * @param {*} [options] Override http request option.
2298
1154
  * @throws {RequiredError}
2299
- * @memberof DocumentsApi
2300
1155
  */
2301
- documentControllerSimilaritySearch(projectId: string, instanceId: string, collectionId: string, similaritySearchQueryDTO: SimilaritySearchQueryDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1156
+ documentControllerSimilaritySearch(projectId: string, instanceId: string, collectionId: string, similaritySearchQueryDTO: SimilaritySearchQueryDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2302
1157
  /**
2303
1158
  *
2304
1159
  * @summary Update collection
@@ -2308,9 +1163,8 @@ export declare class DocumentsApi extends BaseAPI {
2308
1163
  * @param {CreateCollectionRequestDTO} createCollectionRequestDTO
2309
1164
  * @param {*} [options] Override http request option.
2310
1165
  * @throws {RequiredError}
2311
- * @memberof DocumentsApi
2312
1166
  */
2313
- documentControllerUpdateCollection(projectId: string, instanceId: string, collectionId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1167
+ documentControllerUpdateCollection(projectId: string, instanceId: string, collectionId: string, createCollectionRequestDTO: CreateCollectionRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2314
1168
  /**
2315
1169
  *
2316
1170
  * @summary Update or upsert doc
@@ -2321,13 +1175,11 @@ export declare class DocumentsApi extends BaseAPI {
2321
1175
  * @param {UpdateDocumentRequestDTO} updateDocumentRequestDTO
2322
1176
  * @param {*} [options] Override http request option.
2323
1177
  * @throws {RequiredError}
2324
- * @memberof DocumentsApi
2325
1178
  */
2326
- documentControllerUpdateDoc(projectId: string, instanceId: string, collectionId: string, docId: string, updateDocumentRequestDTO: UpdateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any>>;
1179
+ documentControllerUpdateDoc(projectId: string, instanceId: string, collectionId: string, docId: string, updateDocumentRequestDTO: UpdateDocumentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageResponseDTO, any, {}>>;
2327
1180
  }
2328
1181
  /**
2329
1182
  * EvaluationTestApi - axios parameter creator
2330
- * @export
2331
1183
  */
2332
1184
  export declare const EvaluationTestApiAxiosParamCreator: (configuration?: Configuration) => {
2333
1185
  /**
@@ -2377,7 +1229,6 @@ export declare const EvaluationTestApiAxiosParamCreator: (configuration?: Config
2377
1229
  };
2378
1230
  /**
2379
1231
  * EvaluationTestApi - functional programming interface
2380
- * @export
2381
1232
  */
2382
1233
  export declare const EvaluationTestApiFp: (configuration?: Configuration) => {
2383
1234
  /**
@@ -2427,7 +1278,6 @@ export declare const EvaluationTestApiFp: (configuration?: Configuration) => {
2427
1278
  };
2428
1279
  /**
2429
1280
  * EvaluationTestApi - factory interface
2430
- * @export
2431
1281
  */
2432
1282
  export declare const EvaluationTestApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2433
1283
  /**
@@ -2477,9 +1327,6 @@ export declare const EvaluationTestApiFactory: (configuration?: Configuration, b
2477
1327
  };
2478
1328
  /**
2479
1329
  * EvaluationTestApi - object-oriented interface
2480
- * @export
2481
- * @class EvaluationTestApi
2482
- * @extends {BaseAPI}
2483
1330
  */
2484
1331
  export declare class EvaluationTestApi extends BaseAPI {
2485
1332
  /**
@@ -2488,9 +1335,8 @@ export declare class EvaluationTestApi extends BaseAPI {
2488
1335
  * @param {string} projectId
2489
1336
  * @param {*} [options] Override http request option.
2490
1337
  * @throws {RequiredError}
2491
- * @memberof EvaluationTestApi
2492
1338
  */
2493
- evaluationTestControllerAddEvaluationTest(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1339
+ evaluationTestControllerAddEvaluationTest(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2494
1340
  /**
2495
1341
  *
2496
1342
  * @summary Delete evaluation
@@ -2498,9 +1344,8 @@ export declare class EvaluationTestApi extends BaseAPI {
2498
1344
  * @param {string} testId
2499
1345
  * @param {*} [options] Override http request option.
2500
1346
  * @throws {RequiredError}
2501
- * @memberof EvaluationTestApi
2502
1347
  */
2503
- evaluationTestControllerDeleteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1348
+ evaluationTestControllerDeleteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2504
1349
  /**
2505
1350
  *
2506
1351
  * @summary Execute evaluation test.
@@ -2508,9 +1353,8 @@ export declare class EvaluationTestApi extends BaseAPI {
2508
1353
  * @param {string} testId
2509
1354
  * @param {*} [options] Override http request option.
2510
1355
  * @throws {RequiredError}
2511
- * @memberof EvaluationTestApi
2512
1356
  */
2513
- evaluationTestControllerExecuteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1357
+ evaluationTestControllerExecuteEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2514
1358
  /**
2515
1359
  *
2516
1360
  * @summary Fetch evaluation test.
@@ -2518,9 +1362,8 @@ export declare class EvaluationTestApi extends BaseAPI {
2518
1362
  * @param {string} modelId
2519
1363
  * @param {*} [options] Override http request option.
2520
1364
  * @throws {RequiredError}
2521
- * @memberof EvaluationTestApi
2522
1365
  */
2523
- evaluationTestControllerGetEvaluationTest(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1366
+ evaluationTestControllerGetEvaluationTest(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2524
1367
  /**
2525
1368
  *
2526
1369
  * @summary Update evaluation test
@@ -2528,13 +1371,11 @@ export declare class EvaluationTestApi extends BaseAPI {
2528
1371
  * @param {string} testId
2529
1372
  * @param {*} [options] Override http request option.
2530
1373
  * @throws {RequiredError}
2531
- * @memberof EvaluationTestApi
2532
1374
  */
2533
- evaluationTestControllerUpdateEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1375
+ evaluationTestControllerUpdateEvaluation(projectId: string, testId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2534
1376
  }
2535
1377
  /**
2536
1378
  * MachineAgentApi - axios parameter creator
2537
- * @export
2538
1379
  */
2539
1380
  export declare const MachineAgentApiAxiosParamCreator: (configuration?: Configuration) => {
2540
1381
  /**
@@ -2579,7 +1420,6 @@ export declare const MachineAgentApiAxiosParamCreator: (configuration?: Configur
2579
1420
  };
2580
1421
  /**
2581
1422
  * MachineAgentApi - functional programming interface
2582
- * @export
2583
1423
  */
2584
1424
  export declare const MachineAgentApiFp: (configuration?: Configuration) => {
2585
1425
  /**
@@ -2624,7 +1464,6 @@ export declare const MachineAgentApiFp: (configuration?: Configuration) => {
2624
1464
  };
2625
1465
  /**
2626
1466
  * MachineAgentApi - factory interface
2627
- * @export
2628
1467
  */
2629
1468
  export declare const MachineAgentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2630
1469
  /**
@@ -2669,9 +1508,6 @@ export declare const MachineAgentApiFactory: (configuration?: Configuration, bas
2669
1508
  };
2670
1509
  /**
2671
1510
  * MachineAgentApi - object-oriented interface
2672
- * @export
2673
- * @class MachineAgentApi
2674
- * @extends {BaseAPI}
2675
1511
  */
2676
1512
  export declare class MachineAgentApi extends BaseAPI {
2677
1513
  /**
@@ -2681,9 +1517,8 @@ export declare class MachineAgentApi extends BaseAPI {
2681
1517
  * @param {CreateMachineAgentDto} createMachineAgentDto
2682
1518
  * @param {*} [options] Override http request option.
2683
1519
  * @throws {RequiredError}
2684
- * @memberof MachineAgentApi
2685
1520
  */
2686
- machineAgentControllerCreateMachineAgent(projectId: string, createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
1521
+ machineAgentControllerCreateMachineAgent(projectId: string, createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
2687
1522
  /**
2688
1523
  *
2689
1524
  * @summary Delete machine agent
@@ -2692,9 +1527,8 @@ export declare class MachineAgentApi extends BaseAPI {
2692
1527
  * @param {Array<string>} requestBody
2693
1528
  * @param {*} [options] Override http request option.
2694
1529
  * @throws {RequiredError}
2695
- * @memberof MachineAgentApi
2696
1530
  */
2697
- machineAgentControllerDeleteMachineAgents(projectId: string, agentId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
1531
+ machineAgentControllerDeleteMachineAgents(projectId: string, agentId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
2698
1532
  /**
2699
1533
  *
2700
1534
  * @summary Get all machine agent with count
@@ -2704,9 +1538,8 @@ export declare class MachineAgentApi extends BaseAPI {
2704
1538
  * @param {string} type
2705
1539
  * @param {*} [options] Override http request option.
2706
1540
  * @throws {RequiredError}
2707
- * @memberof MachineAgentApi
2708
1541
  */
2709
- machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
1542
+ machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
2710
1543
  /**
2711
1544
  *
2712
1545
  * @summary Update machine agent by id
@@ -2714,13 +1547,11 @@ export declare class MachineAgentApi extends BaseAPI {
2714
1547
  * @param {string} agentId
2715
1548
  * @param {*} [options] Override http request option.
2716
1549
  * @throws {RequiredError}
2717
- * @memberof MachineAgentApi
2718
1550
  */
2719
- machineAgentControllerUpdateMachineAgent(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
1551
+ machineAgentControllerUpdateMachineAgent(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any, {}>>;
2720
1552
  }
2721
1553
  /**
2722
1554
  * MachineAgentLogsApi - axios parameter creator
2723
- * @export
2724
1555
  */
2725
1556
  export declare const MachineAgentLogsApiAxiosParamCreator: (configuration?: Configuration) => {
2726
1557
  /**
@@ -2746,7 +1577,6 @@ export declare const MachineAgentLogsApiAxiosParamCreator: (configuration?: Conf
2746
1577
  };
2747
1578
  /**
2748
1579
  * MachineAgentLogsApi - functional programming interface
2749
- * @export
2750
1580
  */
2751
1581
  export declare const MachineAgentLogsApiFp: (configuration?: Configuration) => {
2752
1582
  /**
@@ -2772,7 +1602,6 @@ export declare const MachineAgentLogsApiFp: (configuration?: Configuration) => {
2772
1602
  };
2773
1603
  /**
2774
1604
  * MachineAgentLogsApi - factory interface
2775
- * @export
2776
1605
  */
2777
1606
  export declare const MachineAgentLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2778
1607
  /**
@@ -2798,9 +1627,6 @@ export declare const MachineAgentLogsApiFactory: (configuration?: Configuration,
2798
1627
  };
2799
1628
  /**
2800
1629
  * MachineAgentLogsApi - object-oriented interface
2801
- * @export
2802
- * @class MachineAgentLogsApi
2803
- * @extends {BaseAPI}
2804
1630
  */
2805
1631
  export declare class MachineAgentLogsApi extends BaseAPI {
2806
1632
  /**
@@ -2812,9 +1638,8 @@ export declare class MachineAgentLogsApi extends BaseAPI {
2812
1638
  * @param {string} cursor
2813
1639
  * @param {*} [options] Override http request option.
2814
1640
  * @throws {RequiredError}
2815
- * @memberof MachineAgentLogsApi
2816
1641
  */
2817
- logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1642
+ logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2818
1643
  /**
2819
1644
  *
2820
1645
  * @summary Fetch event logs.
@@ -2822,13 +1647,11 @@ export declare class MachineAgentLogsApi extends BaseAPI {
2822
1647
  * @param {string} agentId
2823
1648
  * @param {*} [options] Override http request option.
2824
1649
  * @throws {RequiredError}
2825
- * @memberof MachineAgentLogsApi
2826
1650
  */
2827
- logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1651
+ logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2828
1652
  }
2829
1653
  /**
2830
1654
  * MachineInstancesApi - axios parameter creator
2831
- * @export
2832
1655
  */
2833
1656
  export declare const MachineInstancesApiAxiosParamCreator: (configuration?: Configuration) => {
2834
1657
  /**
@@ -2915,7 +1738,6 @@ export declare const MachineInstancesApiAxiosParamCreator: (configuration?: Conf
2915
1738
  };
2916
1739
  /**
2917
1740
  * MachineInstancesApi - functional programming interface
2918
- * @export
2919
1741
  */
2920
1742
  export declare const MachineInstancesApiFp: (configuration?: Configuration) => {
2921
1743
  /**
@@ -3002,7 +1824,6 @@ export declare const MachineInstancesApiFp: (configuration?: Configuration) => {
3002
1824
  };
3003
1825
  /**
3004
1826
  * MachineInstancesApi - factory interface
3005
- * @export
3006
1827
  */
3007
1828
  export declare const MachineInstancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3008
1829
  /**
@@ -3089,9 +1910,6 @@ export declare const MachineInstancesApiFactory: (configuration?: Configuration,
3089
1910
  };
3090
1911
  /**
3091
1912
  * MachineInstancesApi - object-oriented interface
3092
- * @export
3093
- * @class MachineInstancesApi
3094
- * @extends {BaseAPI}
3095
1913
  */
3096
1914
  export declare class MachineInstancesApi extends BaseAPI {
3097
1915
  /**
@@ -3100,27 +1918,24 @@ export declare class MachineInstancesApi extends BaseAPI {
3100
1918
  * @param {string} projectId
3101
1919
  * @param {*} [options] Override http request option.
3102
1920
  * @throws {RequiredError}
3103
- * @memberof MachineInstancesApi
3104
1921
  */
3105
- machineInstancesControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1922
+ machineInstancesControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3106
1923
  /**
3107
1924
  *
3108
1925
  * @summary Delete machine instances by ids
3109
1926
  * @param {string} projectId
3110
1927
  * @param {*} [options] Override http request option.
3111
1928
  * @throws {RequiredError}
3112
- * @memberof MachineInstancesApi
3113
1929
  */
3114
- machineInstancesControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1930
+ machineInstancesControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3115
1931
  /**
3116
1932
  *
3117
1933
  * @summary Retrieve running status of instances
3118
1934
  * @param {string} projectId
3119
1935
  * @param {*} [options] Override http request option.
3120
1936
  * @throws {RequiredError}
3121
- * @memberof MachineInstancesApi
3122
1937
  */
3123
- machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1938
+ machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3124
1939
  /**
3125
1940
  *
3126
1941
  * @summary Retrieve CSV benchmarking datapoints for a specific machine
@@ -3128,9 +1943,8 @@ export declare class MachineInstancesApi extends BaseAPI {
3128
1943
  * @param {string} machineId
3129
1944
  * @param {*} [options] Override http request option.
3130
1945
  * @throws {RequiredError}
3131
- * @memberof MachineInstancesApi
3132
1946
  */
3133
- machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingDatapointDto, any>>;
1947
+ machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingDatapointDto, any, {}>>;
3134
1948
  /**
3135
1949
  *
3136
1950
  * @summary Retrieve benchmarking reports for a specific machine
@@ -3138,9 +1952,8 @@ export declare class MachineInstancesApi extends BaseAPI {
3138
1952
  * @param {string} machineId
3139
1953
  * @param {*} [options] Override http request option.
3140
1954
  * @throws {RequiredError}
3141
- * @memberof MachineInstancesApi
3142
1955
  */
3143
- machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingReportsDto, any>>;
1956
+ machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingReportsDto, any, {}>>;
3144
1957
  /**
3145
1958
  *
3146
1959
  * @summary Retrieve status of a specific machine instance
@@ -3148,9 +1961,8 @@ export declare class MachineInstancesApi extends BaseAPI {
3148
1961
  * @param {string} machineId
3149
1962
  * @param {*} [options] Override http request option.
3150
1963
  * @throws {RequiredError}
3151
- * @memberof MachineInstancesApi
3152
1964
  */
3153
- machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineStatusDto, any>>;
1965
+ machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineStatusDto, any, {}>>;
3154
1966
  /**
3155
1967
  *
3156
1968
  * @summary Retrieve running status of instances
@@ -3160,9 +1972,8 @@ export declare class MachineInstancesApi extends BaseAPI {
3160
1972
  * @param {number} limit
3161
1973
  * @param {*} [options] Override http request option.
3162
1974
  * @throws {RequiredError}
3163
- * @memberof MachineInstancesApi
3164
1975
  */
3165
- machineInstancesControllerGetMachineInstanceById(projectId: string, machineId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1976
+ machineInstancesControllerGetMachineInstanceById(projectId: string, machineId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3166
1977
  /**
3167
1978
  *
3168
1979
  * @summary Retrieve all machine instances with count
@@ -3171,9 +1982,8 @@ export declare class MachineInstancesApi extends BaseAPI {
3171
1982
  * @param {number} limit
3172
1983
  * @param {*} [options] Override http request option.
3173
1984
  * @throws {RequiredError}
3174
- * @memberof MachineInstancesApi
3175
1985
  */
3176
- machineInstancesControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1986
+ machineInstancesControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3177
1987
  /**
3178
1988
  *
3179
1989
  * @summary Update Machine Instance Running Status
@@ -3181,13 +1991,11 @@ export declare class MachineInstancesApi extends BaseAPI {
3181
1991
  * @param {object} body
3182
1992
  * @param {*} [options] Override http request option.
3183
1993
  * @throws {RequiredError}
3184
- * @memberof MachineInstancesApi
3185
1994
  */
3186
- machineInstancesControllerUpdateRunningStatus(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1995
+ machineInstancesControllerUpdateRunningStatus(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3187
1996
  }
3188
1997
  /**
3189
1998
  * MembersApi - axios parameter creator
3190
- * @export
3191
1999
  */
3192
2000
  export declare const MembersApiAxiosParamCreator: (configuration?: Configuration) => {
3193
2001
  /**
@@ -3226,7 +2034,6 @@ export declare const MembersApiAxiosParamCreator: (configuration?: Configuration
3226
2034
  };
3227
2035
  /**
3228
2036
  * MembersApi - functional programming interface
3229
- * @export
3230
2037
  */
3231
2038
  export declare const MembersApiFp: (configuration?: Configuration) => {
3232
2039
  /**
@@ -3265,7 +2072,6 @@ export declare const MembersApiFp: (configuration?: Configuration) => {
3265
2072
  };
3266
2073
  /**
3267
2074
  * MembersApi - factory interface
3268
- * @export
3269
2075
  */
3270
2076
  export declare const MembersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3271
2077
  /**
@@ -3304,9 +2110,6 @@ export declare const MembersApiFactory: (configuration?: Configuration, basePath
3304
2110
  };
3305
2111
  /**
3306
2112
  * MembersApi - object-oriented interface
3307
- * @export
3308
- * @class MembersApi
3309
- * @extends {BaseAPI}
3310
2113
  */
3311
2114
  export declare class MembersApi extends BaseAPI {
3312
2115
  /**
@@ -3316,9 +2119,8 @@ export declare class MembersApi extends BaseAPI {
3316
2119
  * @param {AddProjectMemberDto} addProjectMemberDto
3317
2120
  * @param {*} [options] Override http request option.
3318
2121
  * @throws {RequiredError}
3319
- * @memberof MembersApi
3320
2122
  */
3321
- membersControllerAddTeamMemberToProject(projectId: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
2123
+ membersControllerAddTeamMemberToProject(projectId: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any, {}>>;
3322
2124
  /**
3323
2125
  *
3324
2126
  * @summary Retrieve all team members
@@ -3331,9 +2133,8 @@ export declare class MembersApi extends BaseAPI {
3331
2133
  * @param {Array<number>} [roleIds]
3332
2134
  * @param {*} [options] Override http request option.
3333
2135
  * @throws {RequiredError}
3334
- * @memberof MembersApi
3335
2136
  */
3336
- membersControllerGetAllTeamMembersOfProject(projectId: string, page?: number, limit?: number, column?: string, direction?: MembersControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectMemberResponseDto, any>>;
2137
+ membersControllerGetAllTeamMembersOfProject(projectId: string, page?: number, limit?: number, column?: string, direction?: MembersControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectMemberResponseDto, any, {}>>;
3337
2138
  /**
3338
2139
  *
3339
2140
  * @summary Update team member details
@@ -3342,13 +2143,9 @@ export declare class MembersApi extends BaseAPI {
3342
2143
  * @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
3343
2144
  * @param {*} [options] Override http request option.
3344
2145
  * @throws {RequiredError}
3345
- * @memberof MembersApi
3346
2146
  */
3347
- membersControllerUpdateTeamMemberRole(projectId: string, memberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
2147
+ membersControllerUpdateTeamMemberRole(projectId: string, memberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any, {}>>;
3348
2148
  }
3349
- /**
3350
- * @export
3351
- */
3352
2149
  export declare const MembersControllerGetAllTeamMembersOfProjectDirectionEnum: {
3353
2150
  readonly Asc: "ASC";
3354
2151
  readonly Desc: "DESC";
@@ -3356,7 +2153,6 @@ export declare const MembersControllerGetAllTeamMembersOfProjectDirectionEnum: {
3356
2153
  export type MembersControllerGetAllTeamMembersOfProjectDirectionEnum = typeof MembersControllerGetAllTeamMembersOfProjectDirectionEnum[keyof typeof MembersControllerGetAllTeamMembersOfProjectDirectionEnum];
3357
2154
  /**
3358
2155
  * MiscellaneousApi - axios parameter creator
3359
- * @export
3360
2156
  */
3361
2157
  export declare const MiscellaneousApiAxiosParamCreator: (configuration?: Configuration) => {
3362
2158
  /**
@@ -3385,7 +2181,6 @@ export declare const MiscellaneousApiAxiosParamCreator: (configuration?: Configu
3385
2181
  };
3386
2182
  /**
3387
2183
  * MiscellaneousApi - functional programming interface
3388
- * @export
3389
2184
  */
3390
2185
  export declare const MiscellaneousApiFp: (configuration?: Configuration) => {
3391
2186
  /**
@@ -3414,7 +2209,6 @@ export declare const MiscellaneousApiFp: (configuration?: Configuration) => {
3414
2209
  };
3415
2210
  /**
3416
2211
  * MiscellaneousApi - factory interface
3417
- * @export
3418
2212
  */
3419
2213
  export declare const MiscellaneousApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3420
2214
  /**
@@ -3443,9 +2237,6 @@ export declare const MiscellaneousApiFactory: (configuration?: Configuration, ba
3443
2237
  };
3444
2238
  /**
3445
2239
  * MiscellaneousApi - object-oriented interface
3446
- * @export
3447
- * @class MiscellaneousApi
3448
- * @extends {BaseAPI}
3449
2240
  */
3450
2241
  export declare class MiscellaneousApi extends BaseAPI {
3451
2242
  /**
@@ -3453,31 +2244,27 @@ export declare class MiscellaneousApi extends BaseAPI {
3453
2244
  * @summary Get machine id matching instances.
3454
2245
  * @param {*} [options] Override http request option.
3455
2246
  * @throws {RequiredError}
3456
- * @memberof MiscellaneousApi
3457
2247
  */
3458
- miscellaneousControllerGetData(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2248
+ miscellaneousControllerGetData(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3459
2249
  /**
3460
2250
  *
3461
2251
  * @summary Get machine id matching instances.
3462
2252
  * @param {string} projectId
3463
2253
  * @param {*} [options] Override http request option.
3464
2254
  * @throws {RequiredError}
3465
- * @memberof MiscellaneousApi
3466
2255
  */
3467
- miscellaneousControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2256
+ miscellaneousControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3468
2257
  /**
3469
2258
  *
3470
2259
  * @summary Join project
3471
2260
  * @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
3472
2261
  * @param {*} [options] Override http request option.
3473
2262
  * @throws {RequiredError}
3474
- * @memberof MiscellaneousApi
3475
2263
  */
3476
- miscellaneousControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
2264
+ miscellaneousControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any, {}>>;
3477
2265
  }
3478
2266
  /**
3479
2267
  * NotificationsApi - axios parameter creator
3480
- * @export
3481
2268
  */
3482
2269
  export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration) => {
3483
2270
  /**
@@ -3500,7 +2287,6 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
3500
2287
  };
3501
2288
  /**
3502
2289
  * NotificationsApi - functional programming interface
3503
- * @export
3504
2290
  */
3505
2291
  export declare const NotificationsApiFp: (configuration?: Configuration) => {
3506
2292
  /**
@@ -3523,7 +2309,6 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
3523
2309
  };
3524
2310
  /**
3525
2311
  * NotificationsApi - factory interface
3526
- * @export
3527
2312
  */
3528
2313
  export declare const NotificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3529
2314
  /**
@@ -3546,9 +2331,6 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
3546
2331
  };
3547
2332
  /**
3548
2333
  * NotificationsApi - object-oriented interface
3549
- * @export
3550
- * @class NotificationsApi
3551
- * @extends {BaseAPI}
3552
2334
  */
3553
2335
  export declare class NotificationsApi extends BaseAPI {
3554
2336
  /**
@@ -3557,9 +2339,8 @@ export declare class NotificationsApi extends BaseAPI {
3557
2339
  * @param {string} projectId
3558
2340
  * @param {*} [options] Override http request option.
3559
2341
  * @throws {RequiredError}
3560
- * @memberof NotificationsApi
3561
2342
  */
3562
- notificationsControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2343
+ notificationsControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3563
2344
  /**
3564
2345
  *
3565
2346
  * @summary Mark notification as read
@@ -3567,13 +2348,11 @@ export declare class NotificationsApi extends BaseAPI {
3567
2348
  * @param {object} body
3568
2349
  * @param {*} [options] Override http request option.
3569
2350
  * @throws {RequiredError}
3570
- * @memberof NotificationsApi
3571
2351
  */
3572
- notificationsControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2352
+ notificationsControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3573
2353
  }
3574
2354
  /**
3575
2355
  * ProjectsApi - axios parameter creator
3576
- * @export
3577
2356
  */
3578
2357
  export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration) => {
3579
2358
  /**
@@ -3623,7 +2402,6 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
3623
2402
  };
3624
2403
  /**
3625
2404
  * ProjectsApi - functional programming interface
3626
- * @export
3627
2405
  */
3628
2406
  export declare const ProjectsApiFp: (configuration?: Configuration) => {
3629
2407
  /**
@@ -3673,7 +2451,6 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
3673
2451
  };
3674
2452
  /**
3675
2453
  * ProjectsApi - factory interface
3676
- * @export
3677
2454
  */
3678
2455
  export declare const ProjectsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3679
2456
  /**
@@ -3723,9 +2500,6 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
3723
2500
  };
3724
2501
  /**
3725
2502
  * ProjectsApi - object-oriented interface
3726
- * @export
3727
- * @class ProjectsApi
3728
- * @extends {BaseAPI}
3729
2503
  */
3730
2504
  export declare class ProjectsApi extends BaseAPI {
3731
2505
  /**
@@ -3734,18 +2508,16 @@ export declare class ProjectsApi extends BaseAPI {
3734
2508
  * @param {CreateProjectDTO} createProjectDTO
3735
2509
  * @param {*} [options] Override http request option.
3736
2510
  * @throws {RequiredError}
3737
- * @memberof ProjectsApi
3738
2511
  */
3739
- projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectResponseDTO, any>>;
2512
+ projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectResponseDTO, any, {}>>;
3740
2513
  /**
3741
2514
  *
3742
2515
  * @summary Delete project by id
3743
2516
  * @param {string} id
3744
2517
  * @param {*} [options] Override http request option.
3745
2518
  * @throws {RequiredError}
3746
- * @memberof ProjectsApi
3747
2519
  */
3748
- projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectResponseDTO, any>>;
2520
+ projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectResponseDTO, any, {}>>;
3749
2521
  /**
3750
2522
  *
3751
2523
  * @summary Get all projects
@@ -3755,18 +2527,16 @@ export declare class ProjectsApi extends BaseAPI {
3755
2527
  * @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
3756
2528
  * @param {*} [options] Override http request option.
3757
2529
  * @throws {RequiredError}
3758
- * @memberof ProjectsApi
3759
2530
  */
3760
- projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectsResponseDTO, any>>;
2531
+ projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectsResponseDTO, any, {}>>;
3761
2532
  /**
3762
2533
  *
3763
2534
  * @summary Get project by id
3764
2535
  * @param {string} id
3765
2536
  * @param {*} [options] Override http request option.
3766
2537
  * @throws {RequiredError}
3767
- * @memberof ProjectsApi
3768
2538
  */
3769
- projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectByIDResponseDTO, any>>;
2539
+ projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectByIDResponseDTO, any, {}>>;
3770
2540
  /**
3771
2541
  *
3772
2542
  * @summary Update project by id
@@ -3774,13 +2544,9 @@ export declare class ProjectsApi extends BaseAPI {
3774
2544
  * @param {UpdateProjectByIdRequest} updateProjectByIdRequest
3775
2545
  * @param {*} [options] Override http request option.
3776
2546
  * @throws {RequiredError}
3777
- * @memberof ProjectsApi
3778
2547
  */
3779
- projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectByIDResponseDTO, any>>;
2548
+ projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectByIDResponseDTO, any, {}>>;
3780
2549
  }
3781
- /**
3782
- * @export
3783
- */
3784
2550
  export declare const ProjectControllerGetAllProjectsDirectionEnum: {
3785
2551
  readonly Asc: "ASC";
3786
2552
  readonly Desc: "DESC";
@@ -3788,7 +2554,6 @@ export declare const ProjectControllerGetAllProjectsDirectionEnum: {
3788
2554
  export type ProjectControllerGetAllProjectsDirectionEnum = typeof ProjectControllerGetAllProjectsDirectionEnum[keyof typeof ProjectControllerGetAllProjectsDirectionEnum];
3789
2555
  /**
3790
2556
  * QueriesAndDocumentationsApi - axios parameter creator
3791
- * @export
3792
2557
  */
3793
2558
  export declare const QueriesAndDocumentationsApiAxiosParamCreator: (configuration?: Configuration) => {
3794
2559
  /**
@@ -3812,7 +2577,6 @@ export declare const QueriesAndDocumentationsApiAxiosParamCreator: (configuratio
3812
2577
  };
3813
2578
  /**
3814
2579
  * QueriesAndDocumentationsApi - functional programming interface
3815
- * @export
3816
2580
  */
3817
2581
  export declare const QueriesAndDocumentationsApiFp: (configuration?: Configuration) => {
3818
2582
  /**
@@ -3836,7 +2600,6 @@ export declare const QueriesAndDocumentationsApiFp: (configuration?: Configurati
3836
2600
  };
3837
2601
  /**
3838
2602
  * QueriesAndDocumentationsApi - factory interface
3839
- * @export
3840
2603
  */
3841
2604
  export declare const QueriesAndDocumentationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3842
2605
  /**
@@ -3860,9 +2623,6 @@ export declare const QueriesAndDocumentationsApiFactory: (configuration?: Config
3860
2623
  };
3861
2624
  /**
3862
2625
  * QueriesAndDocumentationsApi - object-oriented interface
3863
- * @export
3864
- * @class QueriesAndDocumentationsApi
3865
- * @extends {BaseAPI}
3866
2626
  */
3867
2627
  export declare class QueriesAndDocumentationsApi extends BaseAPI {
3868
2628
  /**
@@ -3873,22 +2633,19 @@ export declare class QueriesAndDocumentationsApi extends BaseAPI {
3873
2633
  * @param {string} fieldName
3874
2634
  * @param {*} [options] Override http request option.
3875
2635
  * @throws {RequiredError}
3876
- * @memberof QueriesAndDocumentationsApi
3877
2636
  */
3878
- queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2637
+ queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
3879
2638
  /**
3880
2639
  *
3881
2640
  * @summary Run Query
3882
2641
  * @param {string} projectId
3883
2642
  * @param {*} [options] Override http request option.
3884
2643
  * @throws {RequiredError}
3885
- * @memberof QueriesAndDocumentationsApi
3886
2644
  */
3887
- queriesAndDocControllerRunQuery(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
2645
+ queriesAndDocControllerRunQuery(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
3888
2646
  }
3889
2647
  /**
3890
2648
  * RolesApi - axios parameter creator
3891
- * @export
3892
2649
  */
3893
2650
  export declare const RolesApiAxiosParamCreator: (configuration?: Configuration) => {
3894
2651
  /**
@@ -3951,7 +2708,6 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
3951
2708
  };
3952
2709
  /**
3953
2710
  * RolesApi - functional programming interface
3954
- * @export
3955
2711
  */
3956
2712
  export declare const RolesApiFp: (configuration?: Configuration) => {
3957
2713
  /**
@@ -4014,7 +2770,6 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
4014
2770
  };
4015
2771
  /**
4016
2772
  * RolesApi - factory interface
4017
- * @export
4018
2773
  */
4019
2774
  export declare const RolesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4020
2775
  /**
@@ -4077,9 +2832,6 @@ export declare const RolesApiFactory: (configuration?: Configuration, basePath?:
4077
2832
  };
4078
2833
  /**
4079
2834
  * RolesApi - object-oriented interface
4080
- * @export
4081
- * @class RolesApi
4082
- * @extends {BaseAPI}
4083
2835
  */
4084
2836
  export declare class RolesApi extends BaseAPI {
4085
2837
  /**
@@ -4089,9 +2841,8 @@ export declare class RolesApi extends BaseAPI {
4089
2841
  * @param {CreateRoleDto} createRoleDto
4090
2842
  * @param {*} [options] Override http request option.
4091
2843
  * @throws {RequiredError}
4092
- * @memberof RolesApi
4093
2844
  */
4094
- rolesControllerCreateProjectRole(projectId: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectRoleResponseDto, any>>;
2845
+ rolesControllerCreateProjectRole(projectId: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectRoleResponseDto, any, {}>>;
4095
2846
  /**
4096
2847
  *
4097
2848
  * @summary Delete Project Role
@@ -4099,9 +2850,8 @@ export declare class RolesApi extends BaseAPI {
4099
2850
  * @param {number} roleId
4100
2851
  * @param {*} [options] Override http request option.
4101
2852
  * @throws {RequiredError}
4102
- * @memberof RolesApi
4103
2853
  */
4104
- rolesControllerDeleteProjectRole(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectRoleByIdResponseDto, any>>;
2854
+ rolesControllerDeleteProjectRole(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectRoleByIdResponseDto, any, {}>>;
4105
2855
  /**
4106
2856
  *
4107
2857
  * @summary Retrieve all roles
@@ -4112,9 +2862,8 @@ export declare class RolesApi extends BaseAPI {
4112
2862
  * @param {RolesControllerGetAllProjectRolesDirectionEnum} [direction]
4113
2863
  * @param {*} [options] Override http request option.
4114
2864
  * @throws {RequiredError}
4115
- * @memberof RolesApi
4116
2865
  */
4117
- rolesControllerGetAllProjectRoles(projectId: string, page?: number, limit?: number, column?: string, direction?: RolesControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectRoleResponseDto, any>>;
2866
+ rolesControllerGetAllProjectRoles(projectId: string, page?: number, limit?: number, column?: string, direction?: RolesControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectRoleResponseDto, any, {}>>;
4118
2867
  /**
4119
2868
  *
4120
2869
  * @summary Retrieve a role by ID
@@ -4122,18 +2871,16 @@ export declare class RolesApi extends BaseAPI {
4122
2871
  * @param {number} roleId
4123
2872
  * @param {*} [options] Override http request option.
4124
2873
  * @throws {RequiredError}
4125
- * @memberof RolesApi
4126
2874
  */
4127
- rolesControllerGetProjectRoleById(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectRoleByIdResponseDto, any>>;
2875
+ rolesControllerGetProjectRoleById(projectId: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectRoleByIdResponseDto, any, {}>>;
4128
2876
  /**
4129
2877
  *
4130
2878
  * @summary Retrieve the role of a specific member
4131
2879
  * @param {string} id
4132
2880
  * @param {*} [options] Override http request option.
4133
2881
  * @throws {RequiredError}
4134
- * @memberof RolesApi
4135
2882
  */
4136
- rolesControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserProjectRoleByRoleIdResponseDto, any>>;
2883
+ rolesControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserProjectRoleByRoleIdResponseDto, any, {}>>;
4137
2884
  /**
4138
2885
  *
4139
2886
  * @summary Update a role
@@ -4142,13 +2889,9 @@ export declare class RolesApi extends BaseAPI {
4142
2889
  * @param {UpdateRoleByIdDto} updateRoleByIdDto
4143
2890
  * @param {*} [options] Override http request option.
4144
2891
  * @throws {RequiredError}
4145
- * @memberof RolesApi
4146
2892
  */
4147
- rolesControllerUpdateProjectRoleById(projectId: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectRoleResponseDto, any>>;
2893
+ rolesControllerUpdateProjectRoleById(projectId: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectRoleResponseDto, any, {}>>;
4148
2894
  }
4149
- /**
4150
- * @export
4151
- */
4152
2895
  export declare const RolesControllerGetAllProjectRolesDirectionEnum: {
4153
2896
  readonly Asc: "ASC";
4154
2897
  readonly Desc: "DESC";
@@ -4156,7 +2899,6 @@ export declare const RolesControllerGetAllProjectRolesDirectionEnum: {
4156
2899
  export type RolesControllerGetAllProjectRolesDirectionEnum = typeof RolesControllerGetAllProjectRolesDirectionEnum[keyof typeof RolesControllerGetAllProjectRolesDirectionEnum];
4157
2900
  /**
4158
2901
  * WebhookApi - axios parameter creator
4159
- * @export
4160
2902
  */
4161
2903
  export declare const WebhookApiAxiosParamCreator: (configuration?: Configuration) => {
4162
2904
  /**
@@ -4198,7 +2940,6 @@ export declare const WebhookApiAxiosParamCreator: (configuration?: Configuration
4198
2940
  };
4199
2941
  /**
4200
2942
  * WebhookApi - functional programming interface
4201
- * @export
4202
2943
  */
4203
2944
  export declare const WebhookApiFp: (configuration?: Configuration) => {
4204
2945
  /**
@@ -4240,7 +2981,6 @@ export declare const WebhookApiFp: (configuration?: Configuration) => {
4240
2981
  };
4241
2982
  /**
4242
2983
  * WebhookApi - factory interface
4243
- * @export
4244
2984
  */
4245
2985
  export declare const WebhookApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4246
2986
  /**
@@ -4282,9 +3022,6 @@ export declare const WebhookApiFactory: (configuration?: Configuration, basePath
4282
3022
  };
4283
3023
  /**
4284
3024
  * WebhookApi - object-oriented interface
4285
- * @export
4286
- * @class WebhookApi
4287
- * @extends {BaseAPI}
4288
3025
  */
4289
3026
  export declare class WebhookApi extends BaseAPI {
4290
3027
  /**
@@ -4293,9 +3030,8 @@ export declare class WebhookApi extends BaseAPI {
4293
3030
  * @param {string} projectId
4294
3031
  * @param {*} [options] Override http request option.
4295
3032
  * @throws {RequiredError}
4296
- * @memberof WebhookApi
4297
3033
  */
4298
- webhookControllerCreateWebhook(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3034
+ webhookControllerCreateWebhook(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
4299
3035
  /**
4300
3036
  *
4301
3037
  * @summary Delete webhook
@@ -4303,9 +3039,8 @@ export declare class WebhookApi extends BaseAPI {
4303
3039
  * @param {string} modelId
4304
3040
  * @param {*} [options] Override http request option.
4305
3041
  * @throws {RequiredError}
4306
- * @memberof WebhookApi
4307
3042
  */
4308
- webhookControllerDeleteWebhook(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3043
+ webhookControllerDeleteWebhook(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
4309
3044
  /**
4310
3045
  *
4311
3046
  * @summary Fetch webhook
@@ -4314,9 +3049,8 @@ export declare class WebhookApi extends BaseAPI {
4314
3049
  * @param {boolean} isAgentWebhook
4315
3050
  * @param {*} [options] Override http request option.
4316
3051
  * @throws {RequiredError}
4317
- * @memberof WebhookApi
4318
3052
  */
4319
- webhookControllerFetchWebhook(projectId: string, modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3053
+ webhookControllerFetchWebhook(projectId: string, modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
4320
3054
  /**
4321
3055
  *
4322
3056
  * @summary Update webhook
@@ -4324,7 +3058,6 @@ export declare class WebhookApi extends BaseAPI {
4324
3058
  * @param {string} projectId
4325
3059
  * @param {*} [options] Override http request option.
4326
3060
  * @throws {RequiredError}
4327
- * @memberof WebhookApi
4328
3061
  */
4329
- webhookControllerUpdateWebhook(webhookId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3062
+ webhookControllerUpdateWebhook(webhookId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any, {}>>;
4330
3063
  }