@nestbox-ai/admin 1.0.23

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 ADDED
@@ -0,0 +1,4380 @@
1
+ /**
2
+ * Nestbox API Admin
3
+ * API for Nestbox Admin, control your resources
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from './configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import type { RequestArgs } from './base';
15
+ import { BaseAPI } from './base';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface AddProjectMemberData
20
+ */
21
+ export interface AddProjectMemberData {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof AddProjectMemberData
26
+ */
27
+ 'message': string;
28
+ /**
29
+ *
30
+ * @type {object}
31
+ * @memberof AddProjectMemberData
32
+ */
33
+ 'project': object;
34
+ }
35
+ /**
36
+ *
37
+ * @export
38
+ * @interface AddProjectMemberDto
39
+ */
40
+ export interface AddProjectMemberDto {
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof AddProjectMemberDto
45
+ */
46
+ 'firstName': string;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof AddProjectMemberDto
51
+ */
52
+ 'lastName': string;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof AddProjectMemberDto
57
+ */
58
+ 'email': string;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof AddProjectMemberDto
63
+ */
64
+ 'roleId': number;
65
+ }
66
+ /**
67
+ *
68
+ * @export
69
+ * @interface AddProjectMemberResponseDTO
70
+ */
71
+ export interface AddProjectMemberResponseDTO {
72
+ /**
73
+ *
74
+ * @type {AddProjectMemberData}
75
+ * @memberof AddProjectMemberResponseDTO
76
+ */
77
+ 'data': AddProjectMemberData;
78
+ }
79
+ /**
80
+ *
81
+ * @export
82
+ * @interface AllProjectResponse
83
+ */
84
+ export interface AllProjectResponse {
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof AllProjectResponse
89
+ */
90
+ 'id': string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof AllProjectResponse
95
+ */
96
+ 'name': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof AllProjectResponse
101
+ */
102
+ 'description': string;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof AllProjectResponse
107
+ */
108
+ 'createdAt': string;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof AllProjectResponse
113
+ */
114
+ 'updatedAt': string;
115
+ /**
116
+ *
117
+ * @type {string}
118
+ * @memberof AllProjectResponse
119
+ */
120
+ 'deletedAt': string;
121
+ }
122
+ /**
123
+ *
124
+ * @export
125
+ * @interface AllProjectResponseModel
126
+ */
127
+ export interface AllProjectResponseModel {
128
+ /**
129
+ *
130
+ * @type {Array<AllProjectResponse>}
131
+ * @memberof AllProjectResponseModel
132
+ */
133
+ 'projects': Array<AllProjectResponse>;
134
+ /**
135
+ *
136
+ * @type {number}
137
+ * @memberof AllProjectResponseModel
138
+ */
139
+ 'totalCount': number;
140
+ }
141
+ /**
142
+ *
143
+ * @export
144
+ * @interface BadRequestExceptionResponse
145
+ */
146
+ export interface BadRequestExceptionResponse {
147
+ /**
148
+ *
149
+ * @type {string}
150
+ * @memberof BadRequestExceptionResponse
151
+ */
152
+ 'message': string;
153
+ /**
154
+ *
155
+ * @type {object}
156
+ * @memberof BadRequestExceptionResponse
157
+ */
158
+ 'errors': object | null;
159
+ }
160
+ /**
161
+ *
162
+ * @export
163
+ * @interface BooleanResponseDTO
164
+ */
165
+ export interface BooleanResponseDTO {
166
+ /**
167
+ *
168
+ * @type {boolean}
169
+ * @memberof BooleanResponseDTO
170
+ */
171
+ 'data': boolean;
172
+ }
173
+ /**
174
+ *
175
+ * @export
176
+ * @interface CreateDeviceRequestDTO
177
+ */
178
+ export interface CreateDeviceRequestDTO {
179
+ /**
180
+ *
181
+ * @type {string}
182
+ * @memberof CreateDeviceRequestDTO
183
+ */
184
+ 'type': CreateDeviceRequestDTOTypeEnum;
185
+ /**
186
+ *
187
+ * @type {number}
188
+ * @memberof CreateDeviceRequestDTO
189
+ */
190
+ 'userId': number;
191
+ /**
192
+ *
193
+ * @type {string}
194
+ * @memberof CreateDeviceRequestDTO
195
+ */
196
+ 'userAgent'?: string;
197
+ }
198
+ export declare const CreateDeviceRequestDTOTypeEnum: {
199
+ readonly Web: "WEB";
200
+ readonly Android: "ANDROID";
201
+ readonly Ios: "IOS";
202
+ };
203
+ export type CreateDeviceRequestDTOTypeEnum = typeof CreateDeviceRequestDTOTypeEnum[keyof typeof CreateDeviceRequestDTOTypeEnum];
204
+ /**
205
+ *
206
+ * @export
207
+ * @interface CreateDeviceResponseDTO
208
+ */
209
+ export interface CreateDeviceResponseDTO {
210
+ /**
211
+ *
212
+ * @type {number}
213
+ * @memberof CreateDeviceResponseDTO
214
+ */
215
+ 'id': number;
216
+ /**
217
+ *
218
+ * @type {string}
219
+ * @memberof CreateDeviceResponseDTO
220
+ */
221
+ 'uuid': string;
222
+ /**
223
+ *
224
+ * @type {number}
225
+ * @memberof CreateDeviceResponseDTO
226
+ */
227
+ 'userId': number;
228
+ /**
229
+ *
230
+ * @type {string}
231
+ * @memberof CreateDeviceResponseDTO
232
+ */
233
+ 'type': CreateDeviceResponseDTOTypeEnum;
234
+ /**
235
+ *
236
+ * @type {string}
237
+ * @memberof CreateDeviceResponseDTO
238
+ */
239
+ 'userAgent': string;
240
+ }
241
+ export declare const CreateDeviceResponseDTOTypeEnum: {
242
+ readonly Web: "WEB";
243
+ readonly Android: "ANDROID";
244
+ readonly Ios: "IOS";
245
+ };
246
+ export type CreateDeviceResponseDTOTypeEnum = typeof CreateDeviceResponseDTOTypeEnum[keyof typeof CreateDeviceResponseDTOTypeEnum];
247
+ /**
248
+ *
249
+ * @export
250
+ * @interface CreateMachineAgentDto
251
+ */
252
+ export interface CreateMachineAgentDto {
253
+ /**
254
+ *
255
+ * @type {string}
256
+ * @memberof CreateMachineAgentDto
257
+ */
258
+ 'agentName': string;
259
+ /**
260
+ *
261
+ * @type {string}
262
+ * @memberof CreateMachineAgentDto
263
+ */
264
+ 'goal': string;
265
+ /**
266
+ *
267
+ * @type {string}
268
+ * @memberof CreateMachineAgentDto
269
+ */
270
+ 'modelBaseId': string;
271
+ /**
272
+ *
273
+ * @type {string}
274
+ * @memberof CreateMachineAgentDto
275
+ */
276
+ 'machineName': string;
277
+ /**
278
+ *
279
+ * @type {number}
280
+ * @memberof CreateMachineAgentDto
281
+ */
282
+ 'machineInstanceId': number;
283
+ /**
284
+ *
285
+ * @type {string}
286
+ * @memberof CreateMachineAgentDto
287
+ */
288
+ 'instanceIP': string;
289
+ /**
290
+ *
291
+ * @type {string}
292
+ * @memberof CreateMachineAgentDto
293
+ */
294
+ 'entryFunctionName': string;
295
+ /**
296
+ *
297
+ * @type {string}
298
+ * @memberof CreateMachineAgentDto
299
+ */
300
+ 'machineManifestId': string;
301
+ /**
302
+ *
303
+ * @type {Array<object>}
304
+ * @memberof CreateMachineAgentDto
305
+ */
306
+ 'parameters': Array<object>;
307
+ /**
308
+ *
309
+ * @type {string}
310
+ * @memberof CreateMachineAgentDto
311
+ */
312
+ 'projectId': string;
313
+ /**
314
+ *
315
+ * @type {number}
316
+ * @memberof CreateMachineAgentDto
317
+ */
318
+ 'userId': number;
319
+ }
320
+ /**
321
+ *
322
+ * @export
323
+ * @interface CreatePermissionDto
324
+ */
325
+ export interface CreatePermissionDto {
326
+ /**
327
+ *
328
+ * @type {boolean}
329
+ * @memberof CreatePermissionDto
330
+ */
331
+ 'read': boolean;
332
+ /**
333
+ *
334
+ * @type {boolean}
335
+ * @memberof CreatePermissionDto
336
+ */
337
+ 'write': boolean;
338
+ /**
339
+ *
340
+ * @type {boolean}
341
+ * @memberof CreatePermissionDto
342
+ */
343
+ 'update': boolean;
344
+ /**
345
+ *
346
+ * @type {boolean}
347
+ * @memberof CreatePermissionDto
348
+ */
349
+ 'delete': boolean;
350
+ }
351
+ /**
352
+ *
353
+ * @export
354
+ * @interface CreateProjectDTO
355
+ */
356
+ export interface CreateProjectDTO {
357
+ /**
358
+ *
359
+ * @type {string}
360
+ * @memberof CreateProjectDTO
361
+ */
362
+ 'name': string;
363
+ /**
364
+ *
365
+ * @type {string}
366
+ * @memberof CreateProjectDTO
367
+ */
368
+ 'description': string;
369
+ }
370
+ /**
371
+ *
372
+ * @export
373
+ * @interface CreateProjectResponseDTO
374
+ */
375
+ export interface CreateProjectResponseDTO {
376
+ /**
377
+ *
378
+ * @type {ProjectResponseModel}
379
+ * @memberof CreateProjectResponseDTO
380
+ */
381
+ 'data': ProjectResponseModel;
382
+ }
383
+ /**
384
+ *
385
+ * @export
386
+ * @interface CreateProjectRoleResponseDto
387
+ */
388
+ export interface CreateProjectRoleResponseDto {
389
+ /**
390
+ *
391
+ * @type {CreateRoleDTO}
392
+ * @memberof CreateProjectRoleResponseDto
393
+ */
394
+ 'data': CreateRoleDTO;
395
+ }
396
+ /**
397
+ *
398
+ * @export
399
+ * @interface CreateResourceDto
400
+ */
401
+ export interface CreateResourceDto {
402
+ /**
403
+ *
404
+ * @type {string}
405
+ * @memberof CreateResourceDto
406
+ */
407
+ 'name': string;
408
+ /**
409
+ *
410
+ * @type {Array<CreatePermissionDto>}
411
+ * @memberof CreateResourceDto
412
+ */
413
+ 'permissions': Array<CreatePermissionDto>;
414
+ }
415
+ /**
416
+ *
417
+ * @export
418
+ * @interface CreateRoleDTO
419
+ */
420
+ export interface CreateRoleDTO {
421
+ /**
422
+ *
423
+ * @type {number}
424
+ * @memberof CreateRoleDTO
425
+ */
426
+ 'id': number;
427
+ /**
428
+ *
429
+ * @type {string}
430
+ * @memberof CreateRoleDTO
431
+ */
432
+ 'name': string;
433
+ /**
434
+ *
435
+ * @type {string}
436
+ * @memberof CreateRoleDTO
437
+ */
438
+ 'description': string;
439
+ /**
440
+ *
441
+ * @type {Array<ResourceDTO>}
442
+ * @memberof CreateRoleDTO
443
+ */
444
+ 'resources': Array<ResourceDTO>;
445
+ }
446
+ /**
447
+ *
448
+ * @export
449
+ * @interface CreateRoleDto
450
+ */
451
+ export interface CreateRoleDto {
452
+ /**
453
+ *
454
+ * @type {string}
455
+ * @memberof CreateRoleDto
456
+ */
457
+ 'name': string;
458
+ /**
459
+ *
460
+ * @type {string}
461
+ * @memberof CreateRoleDto
462
+ */
463
+ 'description': string;
464
+ /**
465
+ *
466
+ * @type {Array<CreateResourceDto>}
467
+ * @memberof CreateRoleDto
468
+ */
469
+ 'resources': Array<CreateResourceDto>;
470
+ }
471
+ /**
472
+ *
473
+ * @export
474
+ * @interface CreateWebhookDto
475
+ */
476
+ export interface CreateWebhookDto {
477
+ /**
478
+ * The URL for the webhook
479
+ * @type {string}
480
+ * @memberof CreateWebhookDto
481
+ */
482
+ 'url': string;
483
+ /**
484
+ * Comma-separated notifications. Valid values: QUERY_CREATED, QUERY_COMPLETED, QUERY_FAILED, EVENT_CREATED, EVENT_UPDATED
485
+ * @type {string}
486
+ * @memberof CreateWebhookDto
487
+ */
488
+ 'notifications': string;
489
+ }
490
+ /**
491
+ *
492
+ * @export
493
+ * @interface DeleteProjectDto
494
+ */
495
+ export interface DeleteProjectDto {
496
+ /**
497
+ *
498
+ * @type {string}
499
+ * @memberof DeleteProjectDto
500
+ */
501
+ 'message': string;
502
+ }
503
+ /**
504
+ *
505
+ * @export
506
+ * @interface DeleteProjectResponseDTO
507
+ */
508
+ export interface DeleteProjectResponseDTO {
509
+ /**
510
+ *
511
+ * @type {string}
512
+ * @memberof DeleteProjectResponseDTO
513
+ */
514
+ 'message': string;
515
+ }
516
+ /**
517
+ *
518
+ * @export
519
+ * @interface DeleteProjectRoleByIdResponseDto
520
+ */
521
+ export interface DeleteProjectRoleByIdResponseDto {
522
+ /**
523
+ *
524
+ * @type {DeleteProjectDto}
525
+ * @memberof DeleteProjectRoleByIdResponseDto
526
+ */
527
+ 'data': DeleteProjectDto;
528
+ }
529
+ /**
530
+ *
531
+ * @export
532
+ * @interface FatalErrorExceptionResponse
533
+ */
534
+ export interface FatalErrorExceptionResponse {
535
+ /**
536
+ *
537
+ * @type {string}
538
+ * @memberof FatalErrorExceptionResponse
539
+ */
540
+ 'message': string;
541
+ }
542
+ /**
543
+ *
544
+ * @export
545
+ * @interface FindUsersResponseDTO
546
+ */
547
+ export interface FindUsersResponseDTO {
548
+ /**
549
+ *
550
+ * @type {Array<UserResponseModel>}
551
+ * @memberof FindUsersResponseDTO
552
+ */
553
+ 'data': Array<UserResponseModel>;
554
+ /**
555
+ *
556
+ * @type {number}
557
+ * @memberof FindUsersResponseDTO
558
+ */
559
+ 'count': number;
560
+ }
561
+ /**
562
+ *
563
+ * @export
564
+ * @interface ForbiddenExceptionResponse
565
+ */
566
+ export interface ForbiddenExceptionResponse {
567
+ /**
568
+ *
569
+ * @type {string}
570
+ * @memberof ForbiddenExceptionResponse
571
+ */
572
+ 'message': string;
573
+ }
574
+ /**
575
+ *
576
+ * @export
577
+ * @interface ForgetPasswordRequestDTO
578
+ */
579
+ export interface ForgetPasswordRequestDTO {
580
+ /**
581
+ *
582
+ * @type {string}
583
+ * @memberof ForgetPasswordRequestDTO
584
+ */
585
+ 'email': string;
586
+ }
587
+ /**
588
+ *
589
+ * @export
590
+ * @interface ForgetPasswordResponseDTO
591
+ */
592
+ export interface ForgetPasswordResponseDTO {
593
+ /**
594
+ *
595
+ * @type {string}
596
+ * @memberof ForgetPasswordResponseDTO
597
+ */
598
+ 'token': string;
599
+ }
600
+ /**
601
+ *
602
+ * @export
603
+ * @interface ForgetPasswordVerificationRequestDTO
604
+ */
605
+ export interface ForgetPasswordVerificationRequestDTO {
606
+ /**
607
+ *
608
+ * @type {string}
609
+ * @memberof ForgetPasswordVerificationRequestDTO
610
+ */
611
+ 'token': string;
612
+ }
613
+ /**
614
+ *
615
+ * @export
616
+ * @interface ForgetPasswordVerificationResponseDTO
617
+ */
618
+ export interface ForgetPasswordVerificationResponseDTO {
619
+ /**
620
+ *
621
+ * @type {string}
622
+ * @memberof ForgetPasswordVerificationResponseDTO
623
+ */
624
+ 'token': string;
625
+ }
626
+ /**
627
+ *
628
+ * @export
629
+ * @interface GetAllProjectDto
630
+ */
631
+ export interface GetAllProjectDto {
632
+ /**
633
+ *
634
+ * @type {Array<GetAllRoleDTO>}
635
+ * @memberof GetAllProjectDto
636
+ */
637
+ 'roles': Array<GetAllRoleDTO>;
638
+ /**
639
+ *
640
+ * @type {number}
641
+ * @memberof GetAllProjectDto
642
+ */
643
+ 'totalCount': number;
644
+ }
645
+ /**
646
+ *
647
+ * @export
648
+ * @interface GetAllProjectMemberResponse
649
+ */
650
+ export interface GetAllProjectMemberResponse {
651
+ /**
652
+ *
653
+ * @type {Array<TeamMemberDto>}
654
+ * @memberof GetAllProjectMemberResponse
655
+ */
656
+ 'teamMembers': Array<TeamMemberDto>;
657
+ /**
658
+ *
659
+ * @type {number}
660
+ * @memberof GetAllProjectMemberResponse
661
+ */
662
+ 'totalCount': number;
663
+ }
664
+ /**
665
+ *
666
+ * @export
667
+ * @interface GetAllProjectMemberResponseDto
668
+ */
669
+ export interface GetAllProjectMemberResponseDto {
670
+ /**
671
+ *
672
+ * @type {GetAllProjectMemberResponse}
673
+ * @memberof GetAllProjectMemberResponseDto
674
+ */
675
+ 'data': GetAllProjectMemberResponse;
676
+ }
677
+ /**
678
+ *
679
+ * @export
680
+ * @interface GetAllProjectRoleResponseDto
681
+ */
682
+ export interface GetAllProjectRoleResponseDto {
683
+ /**
684
+ *
685
+ * @type {GetAllProjectDto}
686
+ * @memberof GetAllProjectRoleResponseDto
687
+ */
688
+ 'data': GetAllProjectDto;
689
+ }
690
+ /**
691
+ *
692
+ * @export
693
+ * @interface GetAllProjectsResponseDTO
694
+ */
695
+ export interface GetAllProjectsResponseDTO {
696
+ /**
697
+ *
698
+ * @type {AllProjectResponseModel}
699
+ * @memberof GetAllProjectsResponseDTO
700
+ */
701
+ 'data': AllProjectResponseModel;
702
+ }
703
+ /**
704
+ *
705
+ * @export
706
+ * @interface GetAllRoleDTO
707
+ */
708
+ export interface GetAllRoleDTO {
709
+ /**
710
+ *
711
+ * @type {number}
712
+ * @memberof GetAllRoleDTO
713
+ */
714
+ 'id': number;
715
+ /**
716
+ *
717
+ * @type {string}
718
+ * @memberof GetAllRoleDTO
719
+ */
720
+ 'name': string;
721
+ /**
722
+ *
723
+ * @type {string}
724
+ * @memberof GetAllRoleDTO
725
+ */
726
+ 'description': string;
727
+ /**
728
+ *
729
+ * @type {string}
730
+ * @memberof GetAllRoleDTO
731
+ */
732
+ 'projectId': string;
733
+ /**
734
+ *
735
+ * @type {string}
736
+ * @memberof GetAllRoleDTO
737
+ */
738
+ 'createdAt': string;
739
+ /**
740
+ *
741
+ * @type {string}
742
+ * @memberof GetAllRoleDTO
743
+ */
744
+ 'updatedAt': string;
745
+ /**
746
+ *
747
+ * @type {string}
748
+ * @memberof GetAllRoleDTO
749
+ */
750
+ 'deletedAt': string;
751
+ }
752
+ /**
753
+ *
754
+ * @export
755
+ * @interface GetMeResponseDTO
756
+ */
757
+ export interface GetMeResponseDTO {
758
+ /**
759
+ *
760
+ * @type {number}
761
+ * @memberof GetMeResponseDTO
762
+ */
763
+ 'id': number;
764
+ /**
765
+ *
766
+ * @type {string}
767
+ * @memberof GetMeResponseDTO
768
+ */
769
+ 'firstName': string;
770
+ /**
771
+ *
772
+ * @type {string}
773
+ * @memberof GetMeResponseDTO
774
+ */
775
+ 'lastName': string;
776
+ /**
777
+ *
778
+ * @type {string}
779
+ * @memberof GetMeResponseDTO
780
+ */
781
+ 'type': GetMeResponseDTOTypeEnum;
782
+ /**
783
+ *
784
+ * @type {string}
785
+ * @memberof GetMeResponseDTO
786
+ */
787
+ 'email': string;
788
+ /**
789
+ *
790
+ * @type {string}
791
+ * @memberof GetMeResponseDTO
792
+ */
793
+ 'phone': string;
794
+ /**
795
+ *
796
+ * @type {string}
797
+ * @memberof GetMeResponseDTO
798
+ */
799
+ 'status': GetMeResponseDTOStatusEnum;
800
+ /**
801
+ *
802
+ * @type {number}
803
+ * @memberof GetMeResponseDTO
804
+ */
805
+ 'profilePictureId': number;
806
+ /**
807
+ *
808
+ * @type {UserSettingsModel}
809
+ * @memberof GetMeResponseDTO
810
+ */
811
+ 'settings': UserSettingsModel;
812
+ /**
813
+ *
814
+ * @type {string}
815
+ * @memberof GetMeResponseDTO
816
+ */
817
+ 'bio': string;
818
+ /**
819
+ *
820
+ * @type {string}
821
+ * @memberof GetMeResponseDTO
822
+ */
823
+ 'profilePictureUrl': string;
824
+ }
825
+ export declare const GetMeResponseDTOTypeEnum: {
826
+ readonly User: "USER";
827
+ readonly Admin: "ADMIN";
828
+ };
829
+ export type GetMeResponseDTOTypeEnum = typeof GetMeResponseDTOTypeEnum[keyof typeof GetMeResponseDTOTypeEnum];
830
+ export declare const GetMeResponseDTOStatusEnum: {
831
+ readonly Active: "ACTIVE";
832
+ readonly Inactive: "INACTIVE";
833
+ };
834
+ export type GetMeResponseDTOStatusEnum = typeof GetMeResponseDTOStatusEnum[keyof typeof GetMeResponseDTOStatusEnum];
835
+ /**
836
+ *
837
+ * @export
838
+ * @interface GetProjectByIDResponseDTO
839
+ */
840
+ export interface GetProjectByIDResponseDTO {
841
+ /**
842
+ *
843
+ * @type {ProjectResponseModel}
844
+ * @memberof GetProjectByIDResponseDTO
845
+ */
846
+ 'data': ProjectResponseModel;
847
+ }
848
+ /**
849
+ *
850
+ * @export
851
+ * @interface GetProjectRoleByIdResponseDto
852
+ */
853
+ export interface GetProjectRoleByIdResponseDto {
854
+ /**
855
+ *
856
+ * @type {GetRoleDTO}
857
+ * @memberof GetProjectRoleByIdResponseDto
858
+ */
859
+ 'data': GetRoleDTO;
860
+ }
861
+ /**
862
+ *
863
+ * @export
864
+ * @interface GetRoleDTO
865
+ */
866
+ export interface GetRoleDTO {
867
+ /**
868
+ *
869
+ * @type {number}
870
+ * @memberof GetRoleDTO
871
+ */
872
+ 'id': number;
873
+ /**
874
+ *
875
+ * @type {string}
876
+ * @memberof GetRoleDTO
877
+ */
878
+ 'name': string;
879
+ /**
880
+ *
881
+ * @type {string}
882
+ * @memberof GetRoleDTO
883
+ */
884
+ 'description': string;
885
+ /**
886
+ *
887
+ * @type {Array<ResourceDTO>}
888
+ * @memberof GetRoleDTO
889
+ */
890
+ 'resources': Array<ResourceDTO>;
891
+ }
892
+ /**
893
+ *
894
+ * @export
895
+ * @interface GetUserByIdResponseDTO
896
+ */
897
+ export interface GetUserByIdResponseDTO {
898
+ /**
899
+ *
900
+ * @type {number}
901
+ * @memberof GetUserByIdResponseDTO
902
+ */
903
+ 'id': number;
904
+ /**
905
+ *
906
+ * @type {string}
907
+ * @memberof GetUserByIdResponseDTO
908
+ */
909
+ 'firstName': string;
910
+ /**
911
+ *
912
+ * @type {string}
913
+ * @memberof GetUserByIdResponseDTO
914
+ */
915
+ 'lastName': string;
916
+ /**
917
+ *
918
+ * @type {string}
919
+ * @memberof GetUserByIdResponseDTO
920
+ */
921
+ 'type': GetUserByIdResponseDTOTypeEnum;
922
+ /**
923
+ *
924
+ * @type {string}
925
+ * @memberof GetUserByIdResponseDTO
926
+ */
927
+ 'email': string;
928
+ /**
929
+ *
930
+ * @type {string}
931
+ * @memberof GetUserByIdResponseDTO
932
+ */
933
+ 'bio': string;
934
+ /**
935
+ *
936
+ * @type {string}
937
+ * @memberof GetUserByIdResponseDTO
938
+ */
939
+ 'phone': string;
940
+ /**
941
+ *
942
+ * @type {string}
943
+ * @memberof GetUserByIdResponseDTO
944
+ */
945
+ 'status': GetUserByIdResponseDTOStatusEnum;
946
+ /**
947
+ *
948
+ * @type {number}
949
+ * @memberof GetUserByIdResponseDTO
950
+ */
951
+ 'profilePictureId': number;
952
+ /**
953
+ *
954
+ * @type {MediaResponseModel}
955
+ * @memberof GetUserByIdResponseDTO
956
+ */
957
+ 'profilePicture': MediaResponseModel;
958
+ /**
959
+ *
960
+ * @type {string}
961
+ * @memberof GetUserByIdResponseDTO
962
+ */
963
+ 'profilePictureUrl': string;
964
+ }
965
+ export declare const GetUserByIdResponseDTOTypeEnum: {
966
+ readonly User: "USER";
967
+ readonly Admin: "ADMIN";
968
+ };
969
+ export type GetUserByIdResponseDTOTypeEnum = typeof GetUserByIdResponseDTOTypeEnum[keyof typeof GetUserByIdResponseDTOTypeEnum];
970
+ export declare const GetUserByIdResponseDTOStatusEnum: {
971
+ readonly Active: "ACTIVE";
972
+ readonly Inactive: "INACTIVE";
973
+ };
974
+ export type GetUserByIdResponseDTOStatusEnum = typeof GetUserByIdResponseDTOStatusEnum[keyof typeof GetUserByIdResponseDTOStatusEnum];
975
+ /**
976
+ *
977
+ * @export
978
+ * @interface GetUserProjectRoleByRoleIdResponseDto
979
+ */
980
+ export interface GetUserProjectRoleByRoleIdResponseDto {
981
+ /**
982
+ *
983
+ * @type {GetRoleDTO}
984
+ * @memberof GetUserProjectRoleByRoleIdResponseDto
985
+ */
986
+ 'data': GetRoleDTO;
987
+ }
988
+ /**
989
+ *
990
+ * @export
991
+ * @interface LoginRequestDTO
992
+ */
993
+ export interface LoginRequestDTO {
994
+ /**
995
+ * Email
996
+ * @type {string}
997
+ * @memberof LoginRequestDTO
998
+ */
999
+ 'email': string;
1000
+ /**
1001
+ * Password
1002
+ * @type {string}
1003
+ * @memberof LoginRequestDTO
1004
+ */
1005
+ 'password': string;
1006
+ }
1007
+ /**
1008
+ *
1009
+ * @export
1010
+ * @interface LoginResponseDTO
1011
+ */
1012
+ export interface LoginResponseDTO {
1013
+ /**
1014
+ * Token
1015
+ * @type {string}
1016
+ * @memberof LoginResponseDTO
1017
+ */
1018
+ 'token': string;
1019
+ }
1020
+ /**
1021
+ *
1022
+ * @export
1023
+ * @interface MediaResponseModel
1024
+ */
1025
+ export interface MediaResponseModel {
1026
+ /**
1027
+ *
1028
+ * @type {number}
1029
+ * @memberof MediaResponseModel
1030
+ */
1031
+ 'id': number;
1032
+ /**
1033
+ *
1034
+ * @type {string}
1035
+ * @memberof MediaResponseModel
1036
+ */
1037
+ 'name': string;
1038
+ /**
1039
+ *
1040
+ * @type {string}
1041
+ * @memberof MediaResponseModel
1042
+ */
1043
+ 'extension': string;
1044
+ /**
1045
+ *
1046
+ * @type {string}
1047
+ * @memberof MediaResponseModel
1048
+ */
1049
+ 'type': MediaResponseModelTypeEnum;
1050
+ /**
1051
+ *
1052
+ * @type {string}
1053
+ * @memberof MediaResponseModel
1054
+ */
1055
+ 'access': MediaResponseModelAccessEnum;
1056
+ /**
1057
+ *
1058
+ * @type {number}
1059
+ * @memberof MediaResponseModel
1060
+ */
1061
+ 'size': number;
1062
+ /**
1063
+ *
1064
+ * @type {string}
1065
+ * @memberof MediaResponseModel
1066
+ */
1067
+ 'path': string;
1068
+ /**
1069
+ *
1070
+ * @type {string}
1071
+ * @memberof MediaResponseModel
1072
+ */
1073
+ 'thumbPath': string;
1074
+ /**
1075
+ *
1076
+ * @type {string}
1077
+ * @memberof MediaResponseModel
1078
+ */
1079
+ 'status': MediaResponseModelStatusEnum;
1080
+ /**
1081
+ *
1082
+ * @type {number}
1083
+ * @memberof MediaResponseModel
1084
+ */
1085
+ 'userId': number;
1086
+ /**
1087
+ *
1088
+ * @type {object}
1089
+ * @memberof MediaResponseModel
1090
+ */
1091
+ 'meta': object;
1092
+ }
1093
+ export declare const MediaResponseModelTypeEnum: {
1094
+ readonly Image: "IMAGE";
1095
+ readonly Video: "VIDEO";
1096
+ readonly Document: "DOCUMENT";
1097
+ readonly Archive: "ARCHIVE";
1098
+ readonly Other: "OTHER";
1099
+ };
1100
+ export type MediaResponseModelTypeEnum = typeof MediaResponseModelTypeEnum[keyof typeof MediaResponseModelTypeEnum];
1101
+ export declare const MediaResponseModelAccessEnum: {
1102
+ readonly Public: "PUBLIC";
1103
+ readonly Private: "PRIVATE";
1104
+ };
1105
+ export type MediaResponseModelAccessEnum = typeof MediaResponseModelAccessEnum[keyof typeof MediaResponseModelAccessEnum];
1106
+ export declare const MediaResponseModelStatusEnum: {
1107
+ readonly Uploading: "UPLOADING";
1108
+ readonly Ready: "READY";
1109
+ readonly Stale: "STALE";
1110
+ };
1111
+ export type MediaResponseModelStatusEnum = typeof MediaResponseModelStatusEnum[keyof typeof MediaResponseModelStatusEnum];
1112
+ /**
1113
+ *
1114
+ * @export
1115
+ * @interface NotFoundExceptionResponse
1116
+ */
1117
+ export interface NotFoundExceptionResponse {
1118
+ /**
1119
+ *
1120
+ * @type {string}
1121
+ * @memberof NotFoundExceptionResponse
1122
+ */
1123
+ 'message': string;
1124
+ }
1125
+ /**
1126
+ *
1127
+ * @export
1128
+ * @interface OAuthLoginRequestDTO
1129
+ */
1130
+ export interface OAuthLoginRequestDTO {
1131
+ /**
1132
+ *
1133
+ * @type {string}
1134
+ * @memberof OAuthLoginRequestDTO
1135
+ */
1136
+ 'providerId': string;
1137
+ /**
1138
+ *
1139
+ * @type {string}
1140
+ * @memberof OAuthLoginRequestDTO
1141
+ */
1142
+ 'type': OAuthLoginRequestDTOTypeEnum;
1143
+ /**
1144
+ *
1145
+ * @type {string}
1146
+ * @memberof OAuthLoginRequestDTO
1147
+ */
1148
+ 'email': string;
1149
+ /**
1150
+ *
1151
+ * @type {string}
1152
+ * @memberof OAuthLoginRequestDTO
1153
+ */
1154
+ 'profilePictureUrl': string;
1155
+ }
1156
+ export declare const OAuthLoginRequestDTOTypeEnum: {
1157
+ readonly Google: "GOOGLE";
1158
+ readonly Apple: "APPLE";
1159
+ };
1160
+ export type OAuthLoginRequestDTOTypeEnum = typeof OAuthLoginRequestDTOTypeEnum[keyof typeof OAuthLoginRequestDTOTypeEnum];
1161
+ /**
1162
+ *
1163
+ * @export
1164
+ * @interface PermissionsDTO
1165
+ */
1166
+ export interface PermissionsDTO {
1167
+ /**
1168
+ *
1169
+ * @type {number}
1170
+ * @memberof PermissionsDTO
1171
+ */
1172
+ 'id': number;
1173
+ /**
1174
+ *
1175
+ * @type {boolean}
1176
+ * @memberof PermissionsDTO
1177
+ */
1178
+ 'read': boolean;
1179
+ /**
1180
+ *
1181
+ * @type {boolean}
1182
+ * @memberof PermissionsDTO
1183
+ */
1184
+ 'write': boolean;
1185
+ /**
1186
+ *
1187
+ * @type {boolean}
1188
+ * @memberof PermissionsDTO
1189
+ */
1190
+ 'update': boolean;
1191
+ /**
1192
+ *
1193
+ * @type {boolean}
1194
+ * @memberof PermissionsDTO
1195
+ */
1196
+ 'delete': boolean;
1197
+ }
1198
+ /**
1199
+ *
1200
+ * @export
1201
+ * @interface ProjectResponseModel
1202
+ */
1203
+ export interface ProjectResponseModel {
1204
+ /**
1205
+ *
1206
+ * @type {string}
1207
+ * @memberof ProjectResponseModel
1208
+ */
1209
+ 'id': string;
1210
+ /**
1211
+ *
1212
+ * @type {string}
1213
+ * @memberof ProjectResponseModel
1214
+ */
1215
+ 'name': string;
1216
+ /**
1217
+ *
1218
+ * @type {string}
1219
+ * @memberof ProjectResponseModel
1220
+ */
1221
+ 'description': string;
1222
+ /**
1223
+ *
1224
+ * @type {string}
1225
+ * @memberof ProjectResponseModel
1226
+ */
1227
+ 'createdAt': string;
1228
+ /**
1229
+ *
1230
+ * @type {string}
1231
+ * @memberof ProjectResponseModel
1232
+ */
1233
+ 'updatedAt': string;
1234
+ /**
1235
+ *
1236
+ * @type {string}
1237
+ * @memberof ProjectResponseModel
1238
+ */
1239
+ 'deletedAt': string;
1240
+ }
1241
+ /**
1242
+ *
1243
+ * @export
1244
+ * @interface RegisteredUserResponseDTO
1245
+ */
1246
+ export interface RegisteredUserResponseDTO {
1247
+ /**
1248
+ * registered
1249
+ * @type {boolean}
1250
+ * @memberof RegisteredUserResponseDTO
1251
+ */
1252
+ 'registered': boolean;
1253
+ }
1254
+ /**
1255
+ *
1256
+ * @export
1257
+ * @interface ResetPasswordRequestDTO
1258
+ */
1259
+ export interface ResetPasswordRequestDTO {
1260
+ /**
1261
+ *
1262
+ * @type {string}
1263
+ * @memberof ResetPasswordRequestDTO
1264
+ */
1265
+ 'token': string;
1266
+ /**
1267
+ *
1268
+ * @type {string}
1269
+ * @memberof ResetPasswordRequestDTO
1270
+ */
1271
+ 'password': string;
1272
+ }
1273
+ /**
1274
+ *
1275
+ * @export
1276
+ * @interface ResourceDTO
1277
+ */
1278
+ export interface ResourceDTO {
1279
+ /**
1280
+ *
1281
+ * @type {number}
1282
+ * @memberof ResourceDTO
1283
+ */
1284
+ 'id': number;
1285
+ /**
1286
+ *
1287
+ * @type {string}
1288
+ * @memberof ResourceDTO
1289
+ */
1290
+ 'name': string;
1291
+ /**
1292
+ *
1293
+ * @type {Array<PermissionsDTO>}
1294
+ * @memberof ResourceDTO
1295
+ */
1296
+ 'permissions': Array<PermissionsDTO>;
1297
+ }
1298
+ /**
1299
+ *
1300
+ * @export
1301
+ * @interface RoleDto
1302
+ */
1303
+ export interface RoleDto {
1304
+ /**
1305
+ *
1306
+ * @type {number}
1307
+ * @memberof RoleDto
1308
+ */
1309
+ 'id': number;
1310
+ /**
1311
+ *
1312
+ * @type {string}
1313
+ * @memberof RoleDto
1314
+ */
1315
+ 'name': string;
1316
+ }
1317
+ /**
1318
+ *
1319
+ * @export
1320
+ * @interface SignupRequestDTO
1321
+ */
1322
+ export interface SignupRequestDTO {
1323
+ /**
1324
+ *
1325
+ * @type {string}
1326
+ * @memberof SignupRequestDTO
1327
+ */
1328
+ 'email': string;
1329
+ /**
1330
+ *
1331
+ * @type {string}
1332
+ * @memberof SignupRequestDTO
1333
+ */
1334
+ 'password'?: string;
1335
+ /**
1336
+ *
1337
+ * @type {string}
1338
+ * @memberof SignupRequestDTO
1339
+ */
1340
+ 'firstName': string;
1341
+ /**
1342
+ *
1343
+ * @type {string}
1344
+ * @memberof SignupRequestDTO
1345
+ */
1346
+ 'lastName': string;
1347
+ /**
1348
+ *
1349
+ * @type {string}
1350
+ * @memberof SignupRequestDTO
1351
+ */
1352
+ 'phone': string;
1353
+ /**
1354
+ *
1355
+ * @type {string}
1356
+ * @memberof SignupRequestDTO
1357
+ */
1358
+ 'providerId'?: string;
1359
+ /**
1360
+ *
1361
+ * @type {string}
1362
+ * @memberof SignupRequestDTO
1363
+ */
1364
+ 'providerType'?: SignupRequestDTOProviderTypeEnum;
1365
+ /**
1366
+ *
1367
+ * @type {string}
1368
+ * @memberof SignupRequestDTO
1369
+ */
1370
+ 'image'?: string;
1371
+ /**
1372
+ *
1373
+ * @type {string}
1374
+ * @memberof SignupRequestDTO
1375
+ */
1376
+ 'profilePictureUrl': string;
1377
+ }
1378
+ export declare const SignupRequestDTOProviderTypeEnum: {
1379
+ readonly Google: "GOOGLE";
1380
+ readonly Apple: "APPLE";
1381
+ };
1382
+ export type SignupRequestDTOProviderTypeEnum = typeof SignupRequestDTOProviderTypeEnum[keyof typeof SignupRequestDTOProviderTypeEnum];
1383
+ /**
1384
+ *
1385
+ * @export
1386
+ * @interface SignupResponseDTO
1387
+ */
1388
+ export interface SignupResponseDTO {
1389
+ /**
1390
+ * Token
1391
+ * @type {string}
1392
+ * @memberof SignupResponseDTO
1393
+ */
1394
+ 'token': string;
1395
+ }
1396
+ /**
1397
+ *
1398
+ * @export
1399
+ * @interface TeamMemberDto
1400
+ */
1401
+ export interface TeamMemberDto {
1402
+ /**
1403
+ *
1404
+ * @type {number}
1405
+ * @memberof TeamMemberDto
1406
+ */
1407
+ 'id': number;
1408
+ /**
1409
+ *
1410
+ * @type {string}
1411
+ * @memberof TeamMemberDto
1412
+ */
1413
+ 'status': string;
1414
+ /**
1415
+ *
1416
+ * @type {UserDto}
1417
+ * @memberof TeamMemberDto
1418
+ */
1419
+ 'user': UserDto;
1420
+ /**
1421
+ *
1422
+ * @type {RoleDto}
1423
+ * @memberof TeamMemberDto
1424
+ */
1425
+ 'role': RoleDto;
1426
+ }
1427
+ /**
1428
+ *
1429
+ * @export
1430
+ * @interface UnauthorizedExceptionResponse
1431
+ */
1432
+ export interface UnauthorizedExceptionResponse {
1433
+ /**
1434
+ *
1435
+ * @type {string}
1436
+ * @memberof UnauthorizedExceptionResponse
1437
+ */
1438
+ 'message': string;
1439
+ }
1440
+ /**
1441
+ *
1442
+ * @export
1443
+ * @interface UpdatePermissionDto
1444
+ */
1445
+ export interface UpdatePermissionDto {
1446
+ /**
1447
+ *
1448
+ * @type {number}
1449
+ * @memberof UpdatePermissionDto
1450
+ */
1451
+ 'id': number;
1452
+ /**
1453
+ *
1454
+ * @type {boolean}
1455
+ * @memberof UpdatePermissionDto
1456
+ */
1457
+ 'read': boolean;
1458
+ /**
1459
+ *
1460
+ * @type {boolean}
1461
+ * @memberof UpdatePermissionDto
1462
+ */
1463
+ 'write': boolean;
1464
+ /**
1465
+ *
1466
+ * @type {boolean}
1467
+ * @memberof UpdatePermissionDto
1468
+ */
1469
+ 'update': boolean;
1470
+ /**
1471
+ *
1472
+ * @type {boolean}
1473
+ * @memberof UpdatePermissionDto
1474
+ */
1475
+ 'delete': boolean;
1476
+ }
1477
+ /**
1478
+ *
1479
+ * @export
1480
+ * @interface UpdateProjectByIDResponseDTO
1481
+ */
1482
+ export interface UpdateProjectByIDResponseDTO {
1483
+ /**
1484
+ *
1485
+ * @type {ProjectResponseModel}
1486
+ * @memberof UpdateProjectByIDResponseDTO
1487
+ */
1488
+ 'data': ProjectResponseModel;
1489
+ }
1490
+ /**
1491
+ *
1492
+ * @export
1493
+ * @interface UpdateProjectByIdRequest
1494
+ */
1495
+ export interface UpdateProjectByIdRequest {
1496
+ /**
1497
+ *
1498
+ * @type {string}
1499
+ * @memberof UpdateProjectByIdRequest
1500
+ */
1501
+ 'name': string;
1502
+ /**
1503
+ *
1504
+ * @type {string}
1505
+ * @memberof UpdateProjectByIdRequest
1506
+ */
1507
+ 'description': string;
1508
+ }
1509
+ /**
1510
+ *
1511
+ * @export
1512
+ * @interface UpdateProjectRoleResponseDto
1513
+ */
1514
+ export interface UpdateProjectRoleResponseDto {
1515
+ /**
1516
+ *
1517
+ * @type {UpdateRoleDTO}
1518
+ * @memberof UpdateProjectRoleResponseDto
1519
+ */
1520
+ 'data': UpdateRoleDTO;
1521
+ }
1522
+ /**
1523
+ *
1524
+ * @export
1525
+ * @interface UpdateResourceDto
1526
+ */
1527
+ export interface UpdateResourceDto {
1528
+ /**
1529
+ *
1530
+ * @type {number}
1531
+ * @memberof UpdateResourceDto
1532
+ */
1533
+ 'id': number;
1534
+ /**
1535
+ *
1536
+ * @type {string}
1537
+ * @memberof UpdateResourceDto
1538
+ */
1539
+ 'name': string;
1540
+ /**
1541
+ *
1542
+ * @type {Array<UpdatePermissionDto>}
1543
+ * @memberof UpdateResourceDto
1544
+ */
1545
+ 'permissions': Array<UpdatePermissionDto>;
1546
+ }
1547
+ /**
1548
+ *
1549
+ * @export
1550
+ * @interface UpdateRoleByIdDto
1551
+ */
1552
+ export interface UpdateRoleByIdDto {
1553
+ /**
1554
+ *
1555
+ * @type {string}
1556
+ * @memberof UpdateRoleByIdDto
1557
+ */
1558
+ 'name': string;
1559
+ /**
1560
+ *
1561
+ * @type {string}
1562
+ * @memberof UpdateRoleByIdDto
1563
+ */
1564
+ 'description': string;
1565
+ /**
1566
+ *
1567
+ * @type {Array<UpdateResourceDto>}
1568
+ * @memberof UpdateRoleByIdDto
1569
+ */
1570
+ 'resources': Array<UpdateResourceDto>;
1571
+ }
1572
+ /**
1573
+ *
1574
+ * @export
1575
+ * @interface UpdateRoleDTO
1576
+ */
1577
+ export interface UpdateRoleDTO {
1578
+ /**
1579
+ *
1580
+ * @type {number}
1581
+ * @memberof UpdateRoleDTO
1582
+ */
1583
+ 'id': number;
1584
+ /**
1585
+ *
1586
+ * @type {string}
1587
+ * @memberof UpdateRoleDTO
1588
+ */
1589
+ 'name': string;
1590
+ /**
1591
+ *
1592
+ * @type {string}
1593
+ * @memberof UpdateRoleDTO
1594
+ */
1595
+ 'description': string;
1596
+ /**
1597
+ *
1598
+ * @type {Array<ResourceDTO>}
1599
+ * @memberof UpdateRoleDTO
1600
+ */
1601
+ 'resources': Array<ResourceDTO>;
1602
+ }
1603
+ /**
1604
+ *
1605
+ * @export
1606
+ * @interface UpdateTeamMemberRequestDTO
1607
+ */
1608
+ export interface UpdateTeamMemberRequestDTO {
1609
+ /**
1610
+ *
1611
+ * @type {number}
1612
+ * @memberof UpdateTeamMemberRequestDTO
1613
+ */
1614
+ 'roleId': number;
1615
+ }
1616
+ /**
1617
+ *
1618
+ * @export
1619
+ * @interface UpdateTeamMemberStatusRequestDTO
1620
+ */
1621
+ export interface UpdateTeamMemberStatusRequestDTO {
1622
+ /**
1623
+ *
1624
+ * @type {string}
1625
+ * @memberof UpdateTeamMemberStatusRequestDTO
1626
+ */
1627
+ 'status': string;
1628
+ /**
1629
+ *
1630
+ * @type {string}
1631
+ * @memberof UpdateTeamMemberStatusRequestDTO
1632
+ */
1633
+ 'token': string;
1634
+ }
1635
+ /**
1636
+ *
1637
+ * @export
1638
+ * @interface UpdateUserRequestDTO
1639
+ */
1640
+ export interface UpdateUserRequestDTO {
1641
+ /**
1642
+ *
1643
+ * @type {string}
1644
+ * @memberof UpdateUserRequestDTO
1645
+ */
1646
+ 'email': string;
1647
+ /**
1648
+ *
1649
+ * @type {string}
1650
+ * @memberof UpdateUserRequestDTO
1651
+ */
1652
+ 'firstName': string;
1653
+ /**
1654
+ *
1655
+ * @type {string}
1656
+ * @memberof UpdateUserRequestDTO
1657
+ */
1658
+ 'lastName': string;
1659
+ /**
1660
+ *
1661
+ * @type {string}
1662
+ * @memberof UpdateUserRequestDTO
1663
+ */
1664
+ 'bio': string;
1665
+ /**
1666
+ *
1667
+ * @type {string}
1668
+ * @memberof UpdateUserRequestDTO
1669
+ */
1670
+ 'phone': string;
1671
+ /**
1672
+ *
1673
+ * @type {string}
1674
+ * @memberof UpdateUserRequestDTO
1675
+ */
1676
+ 'image'?: string;
1677
+ }
1678
+ /**
1679
+ *
1680
+ * @export
1681
+ * @interface UpdateUserSettingsRequestDTO
1682
+ */
1683
+ export interface UpdateUserSettingsRequestDTO {
1684
+ /**
1685
+ *
1686
+ * @type {boolean}
1687
+ * @memberof UpdateUserSettingsRequestDTO
1688
+ */
1689
+ 'notificationsEnabled'?: boolean;
1690
+ }
1691
+ /**
1692
+ *
1693
+ * @export
1694
+ * @interface UploadFinalizeMediaRequestDTO
1695
+ */
1696
+ export interface UploadFinalizeMediaRequestDTO {
1697
+ /**
1698
+ *
1699
+ * @type {number}
1700
+ * @memberof UploadFinalizeMediaRequestDTO
1701
+ */
1702
+ 'id': number;
1703
+ }
1704
+ /**
1705
+ *
1706
+ * @export
1707
+ * @interface UploadFinalizeMediaResponseDTO
1708
+ */
1709
+ export interface UploadFinalizeMediaResponseDTO {
1710
+ /**
1711
+ *
1712
+ * @type {number}
1713
+ * @memberof UploadFinalizeMediaResponseDTO
1714
+ */
1715
+ 'id': number;
1716
+ /**
1717
+ *
1718
+ * @type {string}
1719
+ * @memberof UploadFinalizeMediaResponseDTO
1720
+ */
1721
+ 'name': string;
1722
+ /**
1723
+ *
1724
+ * @type {string}
1725
+ * @memberof UploadFinalizeMediaResponseDTO
1726
+ */
1727
+ 'extension': string;
1728
+ /**
1729
+ *
1730
+ * @type {string}
1731
+ * @memberof UploadFinalizeMediaResponseDTO
1732
+ */
1733
+ 'type': UploadFinalizeMediaResponseDTOTypeEnum;
1734
+ /**
1735
+ *
1736
+ * @type {string}
1737
+ * @memberof UploadFinalizeMediaResponseDTO
1738
+ */
1739
+ 'access': UploadFinalizeMediaResponseDTOAccessEnum;
1740
+ /**
1741
+ *
1742
+ * @type {number}
1743
+ * @memberof UploadFinalizeMediaResponseDTO
1744
+ */
1745
+ 'size': number;
1746
+ /**
1747
+ *
1748
+ * @type {string}
1749
+ * @memberof UploadFinalizeMediaResponseDTO
1750
+ */
1751
+ 'path': string;
1752
+ /**
1753
+ *
1754
+ * @type {string}
1755
+ * @memberof UploadFinalizeMediaResponseDTO
1756
+ */
1757
+ 'thumbPath': string;
1758
+ /**
1759
+ *
1760
+ * @type {string}
1761
+ * @memberof UploadFinalizeMediaResponseDTO
1762
+ */
1763
+ 'status': UploadFinalizeMediaResponseDTOStatusEnum;
1764
+ /**
1765
+ *
1766
+ * @type {number}
1767
+ * @memberof UploadFinalizeMediaResponseDTO
1768
+ */
1769
+ 'userId': number;
1770
+ /**
1771
+ *
1772
+ * @type {object}
1773
+ * @memberof UploadFinalizeMediaResponseDTO
1774
+ */
1775
+ 'meta': object;
1776
+ }
1777
+ export declare const UploadFinalizeMediaResponseDTOTypeEnum: {
1778
+ readonly Image: "IMAGE";
1779
+ readonly Video: "VIDEO";
1780
+ readonly Document: "DOCUMENT";
1781
+ readonly Archive: "ARCHIVE";
1782
+ readonly Other: "OTHER";
1783
+ };
1784
+ export type UploadFinalizeMediaResponseDTOTypeEnum = typeof UploadFinalizeMediaResponseDTOTypeEnum[keyof typeof UploadFinalizeMediaResponseDTOTypeEnum];
1785
+ export declare const UploadFinalizeMediaResponseDTOAccessEnum: {
1786
+ readonly Public: "PUBLIC";
1787
+ readonly Private: "PRIVATE";
1788
+ };
1789
+ export type UploadFinalizeMediaResponseDTOAccessEnum = typeof UploadFinalizeMediaResponseDTOAccessEnum[keyof typeof UploadFinalizeMediaResponseDTOAccessEnum];
1790
+ export declare const UploadFinalizeMediaResponseDTOStatusEnum: {
1791
+ readonly Uploading: "UPLOADING";
1792
+ readonly Ready: "READY";
1793
+ readonly Stale: "STALE";
1794
+ };
1795
+ export type UploadFinalizeMediaResponseDTOStatusEnum = typeof UploadFinalizeMediaResponseDTOStatusEnum[keyof typeof UploadFinalizeMediaResponseDTOStatusEnum];
1796
+ /**
1797
+ *
1798
+ * @export
1799
+ * @interface UploadInitiateMediaRequestDTO
1800
+ */
1801
+ export interface UploadInitiateMediaRequestDTO {
1802
+ /**
1803
+ *
1804
+ * @type {string}
1805
+ * @memberof UploadInitiateMediaRequestDTO
1806
+ */
1807
+ 'name': string;
1808
+ /**
1809
+ * Size in KB
1810
+ * @type {number}
1811
+ * @memberof UploadInitiateMediaRequestDTO
1812
+ */
1813
+ 'size': number;
1814
+ /**
1815
+ *
1816
+ * @type {string}
1817
+ * @memberof UploadInitiateMediaRequestDTO
1818
+ */
1819
+ 'type': UploadInitiateMediaRequestDTOTypeEnum;
1820
+ /**
1821
+ *
1822
+ * @type {boolean}
1823
+ * @memberof UploadInitiateMediaRequestDTO
1824
+ */
1825
+ 'public'?: boolean;
1826
+ }
1827
+ export declare const UploadInitiateMediaRequestDTOTypeEnum: {
1828
+ readonly Image: "IMAGE";
1829
+ readonly Video: "VIDEO";
1830
+ readonly Document: "DOCUMENT";
1831
+ readonly Archive: "ARCHIVE";
1832
+ readonly Other: "OTHER";
1833
+ };
1834
+ export type UploadInitiateMediaRequestDTOTypeEnum = typeof UploadInitiateMediaRequestDTOTypeEnum[keyof typeof UploadInitiateMediaRequestDTOTypeEnum];
1835
+ /**
1836
+ *
1837
+ * @export
1838
+ * @interface UploadInitiateMediaResponseDTO
1839
+ */
1840
+ export interface UploadInitiateMediaResponseDTO {
1841
+ /**
1842
+ *
1843
+ * @type {string}
1844
+ * @memberof UploadInitiateMediaResponseDTO
1845
+ */
1846
+ 'accessKeyId': string;
1847
+ /**
1848
+ *
1849
+ * @type {string}
1850
+ * @memberof UploadInitiateMediaResponseDTO
1851
+ */
1852
+ 'secretAccessKey': string;
1853
+ /**
1854
+ *
1855
+ * @type {string}
1856
+ * @memberof UploadInitiateMediaResponseDTO
1857
+ */
1858
+ 'sessionToken': string;
1859
+ /**
1860
+ *
1861
+ * @type {number}
1862
+ * @memberof UploadInitiateMediaResponseDTO
1863
+ */
1864
+ 'mediaId': number;
1865
+ /**
1866
+ *
1867
+ * @type {string}
1868
+ * @memberof UploadInitiateMediaResponseDTO
1869
+ */
1870
+ 'location': string;
1871
+ /**
1872
+ *
1873
+ * @type {string}
1874
+ * @memberof UploadInitiateMediaResponseDTO
1875
+ */
1876
+ 'bucket': string;
1877
+ /**
1878
+ *
1879
+ * @type {string}
1880
+ * @memberof UploadInitiateMediaResponseDTO
1881
+ */
1882
+ 'region': string;
1883
+ }
1884
+ /**
1885
+ *
1886
+ * @export
1887
+ * @interface UserDto
1888
+ */
1889
+ export interface UserDto {
1890
+ /**
1891
+ *
1892
+ * @type {number}
1893
+ * @memberof UserDto
1894
+ */
1895
+ 'id': number;
1896
+ /**
1897
+ *
1898
+ * @type {string}
1899
+ * @memberof UserDto
1900
+ */
1901
+ 'firstName': string;
1902
+ /**
1903
+ *
1904
+ * @type {string}
1905
+ * @memberof UserDto
1906
+ */
1907
+ 'lastName': string;
1908
+ /**
1909
+ *
1910
+ * @type {string}
1911
+ * @memberof UserDto
1912
+ */
1913
+ 'email': string;
1914
+ /**
1915
+ *
1916
+ * @type {string}
1917
+ * @memberof UserDto
1918
+ */
1919
+ 'status': string;
1920
+ /**
1921
+ *
1922
+ * @type {string}
1923
+ * @memberof UserDto
1924
+ */
1925
+ 'profilePicture': string;
1926
+ /**
1927
+ *
1928
+ * @type {string}
1929
+ * @memberof UserDto
1930
+ */
1931
+ 'bio': string;
1932
+ }
1933
+ /**
1934
+ *
1935
+ * @export
1936
+ * @interface UserResponseModel
1937
+ */
1938
+ export interface UserResponseModel {
1939
+ /**
1940
+ *
1941
+ * @type {number}
1942
+ * @memberof UserResponseModel
1943
+ */
1944
+ 'id': number;
1945
+ /**
1946
+ *
1947
+ * @type {string}
1948
+ * @memberof UserResponseModel
1949
+ */
1950
+ 'firstName': string;
1951
+ /**
1952
+ *
1953
+ * @type {string}
1954
+ * @memberof UserResponseModel
1955
+ */
1956
+ 'lastName': string;
1957
+ /**
1958
+ *
1959
+ * @type {string}
1960
+ * @memberof UserResponseModel
1961
+ */
1962
+ 'type': UserResponseModelTypeEnum;
1963
+ /**
1964
+ *
1965
+ * @type {string}
1966
+ * @memberof UserResponseModel
1967
+ */
1968
+ 'email': string;
1969
+ /**
1970
+ *
1971
+ * @type {string}
1972
+ * @memberof UserResponseModel
1973
+ */
1974
+ 'bio': string;
1975
+ /**
1976
+ *
1977
+ * @type {string}
1978
+ * @memberof UserResponseModel
1979
+ */
1980
+ 'phone': string;
1981
+ /**
1982
+ *
1983
+ * @type {string}
1984
+ * @memberof UserResponseModel
1985
+ */
1986
+ 'status': UserResponseModelStatusEnum;
1987
+ /**
1988
+ *
1989
+ * @type {number}
1990
+ * @memberof UserResponseModel
1991
+ */
1992
+ 'profilePictureId': number;
1993
+ /**
1994
+ *
1995
+ * @type {MediaResponseModel}
1996
+ * @memberof UserResponseModel
1997
+ */
1998
+ 'profilePicture': MediaResponseModel;
1999
+ /**
2000
+ *
2001
+ * @type {string}
2002
+ * @memberof UserResponseModel
2003
+ */
2004
+ 'profilePictureUrl': string;
2005
+ }
2006
+ export declare const UserResponseModelTypeEnum: {
2007
+ readonly User: "USER";
2008
+ readonly Admin: "ADMIN";
2009
+ };
2010
+ export type UserResponseModelTypeEnum = typeof UserResponseModelTypeEnum[keyof typeof UserResponseModelTypeEnum];
2011
+ export declare const UserResponseModelStatusEnum: {
2012
+ readonly Active: "ACTIVE";
2013
+ readonly Inactive: "INACTIVE";
2014
+ };
2015
+ export type UserResponseModelStatusEnum = typeof UserResponseModelStatusEnum[keyof typeof UserResponseModelStatusEnum];
2016
+ /**
2017
+ *
2018
+ * @export
2019
+ * @interface UserSettingsModel
2020
+ */
2021
+ export interface UserSettingsModel {
2022
+ /**
2023
+ *
2024
+ * @type {boolean}
2025
+ * @memberof UserSettingsModel
2026
+ */
2027
+ 'notificationsEnabled': boolean;
2028
+ }
2029
+ /**
2030
+ * AuthApi - axios parameter creator
2031
+ * @export
2032
+ */
2033
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
2034
+ /**
2035
+ *
2036
+ * @summary Forget password initiate
2037
+ * @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
2038
+ * @param {*} [options] Override http request option.
2039
+ * @throws {RequiredError}
2040
+ */
2041
+ authControllerForgetPassword: (forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2042
+ /**
2043
+ *
2044
+ * @summary Forget password verification
2045
+ * @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
2046
+ * @param {*} [options] Override http request option.
2047
+ * @throws {RequiredError}
2048
+ */
2049
+ authControllerForgetPasswordVerification: (forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2050
+ /**
2051
+ *
2052
+ * @summary Login to the application
2053
+ * @param {LoginRequestDTO} loginRequestDTO
2054
+ * @param {*} [options] Override http request option.
2055
+ * @throws {RequiredError}
2056
+ */
2057
+ authControllerLogin: (loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2058
+ /**
2059
+ *
2060
+ * @summary Login with OAuth apps
2061
+ * @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
2062
+ * @param {*} [options] Override http request option.
2063
+ * @throws {RequiredError}
2064
+ */
2065
+ authControllerOAuthLogin: (oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2066
+ /**
2067
+ *
2068
+ * @summary Forget password initiate
2069
+ * @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
2070
+ * @param {*} [options] Override http request option.
2071
+ * @throws {RequiredError}
2072
+ */
2073
+ authControllerResetPassword: (resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2074
+ /**
2075
+ *
2076
+ * @summary Signup in the application
2077
+ * @param {SignupRequestDTO} signupRequestDTO
2078
+ * @param {*} [options] Override http request option.
2079
+ * @throws {RequiredError}
2080
+ */
2081
+ authControllerSignup: (signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2082
+ };
2083
+ /**
2084
+ * AuthApi - functional programming interface
2085
+ * @export
2086
+ */
2087
+ export declare const AuthApiFp: (configuration?: Configuration) => {
2088
+ /**
2089
+ *
2090
+ * @summary Forget password initiate
2091
+ * @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
2092
+ * @param {*} [options] Override http request option.
2093
+ * @throws {RequiredError}
2094
+ */
2095
+ authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForgetPasswordResponseDTO>>;
2096
+ /**
2097
+ *
2098
+ * @summary Forget password verification
2099
+ * @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
2100
+ * @param {*} [options] Override http request option.
2101
+ * @throws {RequiredError}
2102
+ */
2103
+ authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForgetPasswordVerificationResponseDTO>>;
2104
+ /**
2105
+ *
2106
+ * @summary Login to the application
2107
+ * @param {LoginRequestDTO} loginRequestDTO
2108
+ * @param {*} [options] Override http request option.
2109
+ * @throws {RequiredError}
2110
+ */
2111
+ authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoginResponseDTO>>;
2112
+ /**
2113
+ *
2114
+ * @summary Login with OAuth apps
2115
+ * @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
2116
+ * @param {*} [options] Override http request option.
2117
+ * @throws {RequiredError}
2118
+ */
2119
+ authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoginResponseDTO>>;
2120
+ /**
2121
+ *
2122
+ * @summary Forget password initiate
2123
+ * @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
2124
+ * @param {*} [options] Override http request option.
2125
+ * @throws {RequiredError}
2126
+ */
2127
+ authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BooleanResponseDTO>>;
2128
+ /**
2129
+ *
2130
+ * @summary Signup in the application
2131
+ * @param {SignupRequestDTO} signupRequestDTO
2132
+ * @param {*} [options] Override http request option.
2133
+ * @throws {RequiredError}
2134
+ */
2135
+ authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SignupResponseDTO>>;
2136
+ };
2137
+ /**
2138
+ * AuthApi - factory interface
2139
+ * @export
2140
+ */
2141
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2142
+ /**
2143
+ *
2144
+ * @summary Forget password initiate
2145
+ * @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
2146
+ * @param {*} [options] Override http request option.
2147
+ * @throws {RequiredError}
2148
+ */
2149
+ authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ForgetPasswordResponseDTO>;
2150
+ /**
2151
+ *
2152
+ * @summary Forget password verification
2153
+ * @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
2154
+ * @param {*} [options] Override http request option.
2155
+ * @throws {RequiredError}
2156
+ */
2157
+ authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ForgetPasswordVerificationResponseDTO>;
2158
+ /**
2159
+ *
2160
+ * @summary Login to the application
2161
+ * @param {LoginRequestDTO} loginRequestDTO
2162
+ * @param {*} [options] Override http request option.
2163
+ * @throws {RequiredError}
2164
+ */
2165
+ authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<LoginResponseDTO>;
2166
+ /**
2167
+ *
2168
+ * @summary Login with OAuth apps
2169
+ * @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
2170
+ * @param {*} [options] Override http request option.
2171
+ * @throws {RequiredError}
2172
+ */
2173
+ authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<LoginResponseDTO>;
2174
+ /**
2175
+ *
2176
+ * @summary Forget password initiate
2177
+ * @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
2178
+ * @param {*} [options] Override http request option.
2179
+ * @throws {RequiredError}
2180
+ */
2181
+ authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<BooleanResponseDTO>;
2182
+ /**
2183
+ *
2184
+ * @summary Signup in the application
2185
+ * @param {SignupRequestDTO} signupRequestDTO
2186
+ * @param {*} [options] Override http request option.
2187
+ * @throws {RequiredError}
2188
+ */
2189
+ authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<SignupResponseDTO>;
2190
+ };
2191
+ /**
2192
+ * AuthApi - object-oriented interface
2193
+ * @export
2194
+ * @class AuthApi
2195
+ * @extends {BaseAPI}
2196
+ */
2197
+ export declare class AuthApi extends BaseAPI {
2198
+ /**
2199
+ *
2200
+ * @summary Forget password initiate
2201
+ * @param {ForgetPasswordRequestDTO} forgetPasswordRequestDTO
2202
+ * @param {*} [options] Override http request option.
2203
+ * @throws {RequiredError}
2204
+ * @memberof AuthApi
2205
+ */
2206
+ authControllerForgetPassword(forgetPasswordRequestDTO: ForgetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordResponseDTO, any>>;
2207
+ /**
2208
+ *
2209
+ * @summary Forget password verification
2210
+ * @param {ForgetPasswordVerificationRequestDTO} forgetPasswordVerificationRequestDTO
2211
+ * @param {*} [options] Override http request option.
2212
+ * @throws {RequiredError}
2213
+ * @memberof AuthApi
2214
+ */
2215
+ authControllerForgetPasswordVerification(forgetPasswordVerificationRequestDTO: ForgetPasswordVerificationRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForgetPasswordVerificationResponseDTO, any>>;
2216
+ /**
2217
+ *
2218
+ * @summary Login to the application
2219
+ * @param {LoginRequestDTO} loginRequestDTO
2220
+ * @param {*} [options] Override http request option.
2221
+ * @throws {RequiredError}
2222
+ * @memberof AuthApi
2223
+ */
2224
+ authControllerLogin(loginRequestDTO: LoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any>>;
2225
+ /**
2226
+ *
2227
+ * @summary Login with OAuth apps
2228
+ * @param {OAuthLoginRequestDTO} oAuthLoginRequestDTO
2229
+ * @param {*} [options] Override http request option.
2230
+ * @throws {RequiredError}
2231
+ * @memberof AuthApi
2232
+ */
2233
+ authControllerOAuthLogin(oAuthLoginRequestDTO: OAuthLoginRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoginResponseDTO, any>>;
2234
+ /**
2235
+ *
2236
+ * @summary Forget password initiate
2237
+ * @param {ResetPasswordRequestDTO} resetPasswordRequestDTO
2238
+ * @param {*} [options] Override http request option.
2239
+ * @throws {RequiredError}
2240
+ * @memberof AuthApi
2241
+ */
2242
+ authControllerResetPassword(resetPasswordRequestDTO: ResetPasswordRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BooleanResponseDTO, any>>;
2243
+ /**
2244
+ *
2245
+ * @summary Signup in the application
2246
+ * @param {SignupRequestDTO} signupRequestDTO
2247
+ * @param {*} [options] Override http request option.
2248
+ * @throws {RequiredError}
2249
+ * @memberof AuthApi
2250
+ */
2251
+ authControllerSignup(signupRequestDTO: SignupRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SignupResponseDTO, any>>;
2252
+ }
2253
+ /**
2254
+ * DefaultApi - axios parameter creator
2255
+ * @export
2256
+ */
2257
+ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
2258
+ /**
2259
+ *
2260
+ * @param {*} [options] Override http request option.
2261
+ * @throws {RequiredError}
2262
+ */
2263
+ appControllerGetHello: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2264
+ };
2265
+ /**
2266
+ * DefaultApi - functional programming interface
2267
+ * @export
2268
+ */
2269
+ export declare const DefaultApiFp: (configuration?: Configuration) => {
2270
+ /**
2271
+ *
2272
+ * @param {*} [options] Override http request option.
2273
+ * @throws {RequiredError}
2274
+ */
2275
+ appControllerGetHello(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2276
+ };
2277
+ /**
2278
+ * DefaultApi - factory interface
2279
+ * @export
2280
+ */
2281
+ export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2282
+ /**
2283
+ *
2284
+ * @param {*} [options] Override http request option.
2285
+ * @throws {RequiredError}
2286
+ */
2287
+ appControllerGetHello(options?: RawAxiosRequestConfig): AxiosPromise<void>;
2288
+ };
2289
+ /**
2290
+ * DefaultApi - object-oriented interface
2291
+ * @export
2292
+ * @class DefaultApi
2293
+ * @extends {BaseAPI}
2294
+ */
2295
+ export declare class DefaultApi extends BaseAPI {
2296
+ /**
2297
+ *
2298
+ * @param {*} [options] Override http request option.
2299
+ * @throws {RequiredError}
2300
+ * @memberof DefaultApi
2301
+ */
2302
+ appControllerGetHello(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2303
+ }
2304
+ /**
2305
+ * DeviceApi - axios parameter creator
2306
+ * @export
2307
+ */
2308
+ export declare const DeviceApiAxiosParamCreator: (configuration?: Configuration) => {
2309
+ /**
2310
+ *
2311
+ * @summary Create a new device
2312
+ * @param {CreateDeviceRequestDTO} createDeviceRequestDTO
2313
+ * @param {*} [options] Override http request option.
2314
+ * @throws {RequiredError}
2315
+ */
2316
+ deviceControllerCreate: (createDeviceRequestDTO: CreateDeviceRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2317
+ };
2318
+ /**
2319
+ * DeviceApi - functional programming interface
2320
+ * @export
2321
+ */
2322
+ export declare const DeviceApiFp: (configuration?: Configuration) => {
2323
+ /**
2324
+ *
2325
+ * @summary Create a new device
2326
+ * @param {CreateDeviceRequestDTO} createDeviceRequestDTO
2327
+ * @param {*} [options] Override http request option.
2328
+ * @throws {RequiredError}
2329
+ */
2330
+ deviceControllerCreate(createDeviceRequestDTO: CreateDeviceRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDeviceResponseDTO>>;
2331
+ };
2332
+ /**
2333
+ * DeviceApi - factory interface
2334
+ * @export
2335
+ */
2336
+ export declare const DeviceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2337
+ /**
2338
+ *
2339
+ * @summary Create a new device
2340
+ * @param {CreateDeviceRequestDTO} createDeviceRequestDTO
2341
+ * @param {*} [options] Override http request option.
2342
+ * @throws {RequiredError}
2343
+ */
2344
+ deviceControllerCreate(createDeviceRequestDTO: CreateDeviceRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<CreateDeviceResponseDTO>;
2345
+ };
2346
+ /**
2347
+ * DeviceApi - object-oriented interface
2348
+ * @export
2349
+ * @class DeviceApi
2350
+ * @extends {BaseAPI}
2351
+ */
2352
+ export declare class DeviceApi extends BaseAPI {
2353
+ /**
2354
+ *
2355
+ * @summary Create a new device
2356
+ * @param {CreateDeviceRequestDTO} createDeviceRequestDTO
2357
+ * @param {*} [options] Override http request option.
2358
+ * @throws {RequiredError}
2359
+ * @memberof DeviceApi
2360
+ */
2361
+ deviceControllerCreate(createDeviceRequestDTO: CreateDeviceRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateDeviceResponseDTO, any>>;
2362
+ }
2363
+ /**
2364
+ * MachineImagesApi - axios parameter creator
2365
+ * @export
2366
+ */
2367
+ export declare const MachineImagesApiAxiosParamCreator: (configuration?: Configuration) => {
2368
+ /**
2369
+ *
2370
+ * @param {*} [options] Override http request option.
2371
+ * @throws {RequiredError}
2372
+ */
2373
+ machineImagesControllerGetJsonData: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2374
+ };
2375
+ /**
2376
+ * MachineImagesApi - functional programming interface
2377
+ * @export
2378
+ */
2379
+ export declare const MachineImagesApiFp: (configuration?: Configuration) => {
2380
+ /**
2381
+ *
2382
+ * @param {*} [options] Override http request option.
2383
+ * @throws {RequiredError}
2384
+ */
2385
+ machineImagesControllerGetJsonData(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2386
+ };
2387
+ /**
2388
+ * MachineImagesApi - factory interface
2389
+ * @export
2390
+ */
2391
+ export declare const MachineImagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2392
+ /**
2393
+ *
2394
+ * @param {*} [options] Override http request option.
2395
+ * @throws {RequiredError}
2396
+ */
2397
+ machineImagesControllerGetJsonData(options?: RawAxiosRequestConfig): AxiosPromise<void>;
2398
+ };
2399
+ /**
2400
+ * MachineImagesApi - object-oriented interface
2401
+ * @export
2402
+ * @class MachineImagesApi
2403
+ * @extends {BaseAPI}
2404
+ */
2405
+ export declare class MachineImagesApi extends BaseAPI {
2406
+ /**
2407
+ *
2408
+ * @param {*} [options] Override http request option.
2409
+ * @throws {RequiredError}
2410
+ * @memberof MachineImagesApi
2411
+ */
2412
+ machineImagesControllerGetJsonData(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2413
+ }
2414
+ /**
2415
+ * MediaApi - axios parameter creator
2416
+ * @export
2417
+ */
2418
+ export declare const MediaApiAxiosParamCreator: (configuration?: Configuration) => {
2419
+ /**
2420
+ *
2421
+ * @summary Finalize media
2422
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2423
+ * @param {*} [options] Override http request option.
2424
+ * @throws {RequiredError}
2425
+ */
2426
+ mediaControllerUploadFinalize: (uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2427
+ /**
2428
+ *
2429
+ * @summary Upload media
2430
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2431
+ * @param {*} [options] Override http request option.
2432
+ * @throws {RequiredError}
2433
+ */
2434
+ mediaControllerUploadInitiate: (uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2435
+ /**
2436
+ *
2437
+ * @summary Finalize public media
2438
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2439
+ * @param {*} [options] Override http request option.
2440
+ * @throws {RequiredError}
2441
+ */
2442
+ mediaControllerUploadPublicFinalize: (uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2443
+ /**
2444
+ *
2445
+ * @summary Upload public media
2446
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2447
+ * @param {*} [options] Override http request option.
2448
+ * @throws {RequiredError}
2449
+ */
2450
+ mediaControllerUploadPublicInitiate: (uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2451
+ };
2452
+ /**
2453
+ * MediaApi - functional programming interface
2454
+ * @export
2455
+ */
2456
+ export declare const MediaApiFp: (configuration?: Configuration) => {
2457
+ /**
2458
+ *
2459
+ * @summary Finalize media
2460
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2461
+ * @param {*} [options] Override http request option.
2462
+ * @throws {RequiredError}
2463
+ */
2464
+ mediaControllerUploadFinalize(uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadFinalizeMediaResponseDTO>>;
2465
+ /**
2466
+ *
2467
+ * @summary Upload media
2468
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2469
+ * @param {*} [options] Override http request option.
2470
+ * @throws {RequiredError}
2471
+ */
2472
+ mediaControllerUploadInitiate(uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadInitiateMediaResponseDTO>>;
2473
+ /**
2474
+ *
2475
+ * @summary Finalize public media
2476
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2477
+ * @param {*} [options] Override http request option.
2478
+ * @throws {RequiredError}
2479
+ */
2480
+ mediaControllerUploadPublicFinalize(uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadFinalizeMediaResponseDTO>>;
2481
+ /**
2482
+ *
2483
+ * @summary Upload public media
2484
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2485
+ * @param {*} [options] Override http request option.
2486
+ * @throws {RequiredError}
2487
+ */
2488
+ mediaControllerUploadPublicInitiate(uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadInitiateMediaResponseDTO>>;
2489
+ };
2490
+ /**
2491
+ * MediaApi - factory interface
2492
+ * @export
2493
+ */
2494
+ export declare const MediaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2495
+ /**
2496
+ *
2497
+ * @summary Finalize media
2498
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2499
+ * @param {*} [options] Override http request option.
2500
+ * @throws {RequiredError}
2501
+ */
2502
+ mediaControllerUploadFinalize(uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<UploadFinalizeMediaResponseDTO>;
2503
+ /**
2504
+ *
2505
+ * @summary Upload media
2506
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2507
+ * @param {*} [options] Override http request option.
2508
+ * @throws {RequiredError}
2509
+ */
2510
+ mediaControllerUploadInitiate(uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<UploadInitiateMediaResponseDTO>;
2511
+ /**
2512
+ *
2513
+ * @summary Finalize public media
2514
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2515
+ * @param {*} [options] Override http request option.
2516
+ * @throws {RequiredError}
2517
+ */
2518
+ mediaControllerUploadPublicFinalize(uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<UploadFinalizeMediaResponseDTO>;
2519
+ /**
2520
+ *
2521
+ * @summary Upload public media
2522
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2523
+ * @param {*} [options] Override http request option.
2524
+ * @throws {RequiredError}
2525
+ */
2526
+ mediaControllerUploadPublicInitiate(uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<UploadInitiateMediaResponseDTO>;
2527
+ };
2528
+ /**
2529
+ * MediaApi - object-oriented interface
2530
+ * @export
2531
+ * @class MediaApi
2532
+ * @extends {BaseAPI}
2533
+ */
2534
+ export declare class MediaApi extends BaseAPI {
2535
+ /**
2536
+ *
2537
+ * @summary Finalize media
2538
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2539
+ * @param {*} [options] Override http request option.
2540
+ * @throws {RequiredError}
2541
+ * @memberof MediaApi
2542
+ */
2543
+ mediaControllerUploadFinalize(uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadFinalizeMediaResponseDTO, any>>;
2544
+ /**
2545
+ *
2546
+ * @summary Upload media
2547
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2548
+ * @param {*} [options] Override http request option.
2549
+ * @throws {RequiredError}
2550
+ * @memberof MediaApi
2551
+ */
2552
+ mediaControllerUploadInitiate(uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadInitiateMediaResponseDTO, any>>;
2553
+ /**
2554
+ *
2555
+ * @summary Finalize public media
2556
+ * @param {UploadFinalizeMediaRequestDTO} uploadFinalizeMediaRequestDTO
2557
+ * @param {*} [options] Override http request option.
2558
+ * @throws {RequiredError}
2559
+ * @memberof MediaApi
2560
+ */
2561
+ mediaControllerUploadPublicFinalize(uploadFinalizeMediaRequestDTO: UploadFinalizeMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadFinalizeMediaResponseDTO, any>>;
2562
+ /**
2563
+ *
2564
+ * @summary Upload public media
2565
+ * @param {UploadInitiateMediaRequestDTO} uploadInitiateMediaRequestDTO
2566
+ * @param {*} [options] Override http request option.
2567
+ * @throws {RequiredError}
2568
+ * @memberof MediaApi
2569
+ */
2570
+ mediaControllerUploadPublicInitiate(uploadInitiateMediaRequestDTO: UploadInitiateMediaRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadInitiateMediaResponseDTO, any>>;
2571
+ }
2572
+ /**
2573
+ * ProjectApi - axios parameter creator
2574
+ * @export
2575
+ */
2576
+ export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration) => {
2577
+ /**
2578
+ *
2579
+ * @summary Create New Machine Agent
2580
+ * @param {CreateMachineAgentDto} createMachineAgentDto
2581
+ * @param {*} [options] Override http request option.
2582
+ * @throws {RequiredError}
2583
+ */
2584
+ machineAgentControllerCreateMachineAgent: (createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2585
+ /**
2586
+ *
2587
+ * @summary Delete machine agent
2588
+ * @param {Array<string>} requestBody
2589
+ * @param {*} [options] Override http request option.
2590
+ * @throws {RequiredError}
2591
+ */
2592
+ machineAgentControllerDeleteMachineAgents: (requestBody: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2593
+ /**
2594
+ *
2595
+ * @summary Get all machine agent with count
2596
+ * @param {string} projectId
2597
+ * @param {number} page
2598
+ * @param {number} limit
2599
+ * @param {*} [options] Override http request option.
2600
+ * @throws {RequiredError}
2601
+ */
2602
+ machineAgentControllerGetMachineAgentByProjectId: (projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2603
+ /**
2604
+ *
2605
+ * @summary Update machine agent by id
2606
+ * @param {*} [options] Override http request option.
2607
+ * @throws {RequiredError}
2608
+ */
2609
+ machineAgentControllerUpdateMachineAgent: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2610
+ /**
2611
+ *
2612
+ * @summary Add new evaluation test.
2613
+ * @param {*} [options] Override http request option.
2614
+ * @throws {RequiredError}
2615
+ */
2616
+ machineModelControllerAddEvaluationTest: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2617
+ /**
2618
+ *
2619
+ * @summary Create New Machine Model
2620
+ * @param {object} body
2621
+ * @param {*} [options] Override http request option.
2622
+ * @throws {RequiredError}
2623
+ */
2624
+ machineModelControllerCreateMachineModel: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2625
+ /**
2626
+ *
2627
+ * @summary Create webhook
2628
+ * @param {*} [options] Override http request option.
2629
+ * @throws {RequiredError}
2630
+ */
2631
+ machineModelControllerCreateWebhook: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2632
+ /**
2633
+ *
2634
+ * @summary Delete evaluation
2635
+ * @param {*} [options] Override http request option.
2636
+ * @throws {RequiredError}
2637
+ */
2638
+ machineModelControllerDeleteEvaluation: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2639
+ /**
2640
+ *
2641
+ * @summary Create New Machine Model
2642
+ * @param {Array<string>} requestBody
2643
+ * @param {*} [options] Override http request option.
2644
+ * @throws {RequiredError}
2645
+ */
2646
+ machineModelControllerDeleteMachineModels: (requestBody: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2647
+ /**
2648
+ *
2649
+ * @summary Delete webhook
2650
+ * @param {string} modelId
2651
+ * @param {*} [options] Override http request option.
2652
+ * @throws {RequiredError}
2653
+ */
2654
+ machineModelControllerDeleteWebhook: (modelId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2655
+ /**
2656
+ *
2657
+ * @summary Execute evaluation test.
2658
+ * @param {*} [options] Override http request option.
2659
+ * @throws {RequiredError}
2660
+ */
2661
+ machineModelControllerExecuteEvaluation: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2662
+ /**
2663
+ *
2664
+ * @summary Fetch Swagger JSON
2665
+ * @param {string} modelId
2666
+ * @param {*} [options] Override http request option.
2667
+ * @throws {RequiredError}
2668
+ */
2669
+ machineModelControllerFetchSwaggerJSON: (modelId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2670
+ /**
2671
+ *
2672
+ * @summary Fetch webhook
2673
+ * @param {string} modelId
2674
+ * @param {boolean} isAgentWebhook
2675
+ * @param {*} [options] Override http request option.
2676
+ * @throws {RequiredError}
2677
+ */
2678
+ machineModelControllerFetchWebhook: (modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2679
+ /**
2680
+ *
2681
+ * @summary Fetch evaluation test.
2682
+ * @param {string} modelId
2683
+ * @param {*} [options] Override http request option.
2684
+ * @throws {RequiredError}
2685
+ */
2686
+ machineModelControllerGetEvaluationTest: (modelId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2687
+ /**
2688
+ *
2689
+ * @summary Fetch Swagger JSON
2690
+ * @param {string} modelId
2691
+ * @param {string} queryId
2692
+ * @param {*} [options] Override http request option.
2693
+ * @throws {RequiredError}
2694
+ */
2695
+ machineModelControllerGetEventLogsByQueryId: (modelId: string, queryId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2696
+ /**
2697
+ *
2698
+ * @summary Get all machine models with count
2699
+ * @param {string} projectId
2700
+ * @param {number} page
2701
+ * @param {number} limit
2702
+ * @param {*} [options] Override http request option.
2703
+ * @throws {RequiredError}
2704
+ */
2705
+ machineModelControllerGetMachineInstanceByProjectId: (projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2706
+ /**
2707
+ *
2708
+ * @summary Run Query
2709
+ * @param {*} [options] Override http request option.
2710
+ * @throws {RequiredError}
2711
+ */
2712
+ machineModelControllerRunQuery: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2713
+ /**
2714
+ *
2715
+ * @summary Update evaluation
2716
+ * @param {*} [options] Override http request option.
2717
+ * @throws {RequiredError}
2718
+ */
2719
+ machineModelControllerUpdateEvaluation: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2720
+ /**
2721
+ *
2722
+ * @summary Update machine model by id
2723
+ * @param {*} [options] Override http request option.
2724
+ * @throws {RequiredError}
2725
+ */
2726
+ machineModelControllerUpdateMachineModel: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2727
+ /**
2728
+ *
2729
+ * @summary Update webhook
2730
+ * @param {*} [options] Override http request option.
2731
+ * @throws {RequiredError}
2732
+ */
2733
+ machineModelControllerUpdateWebhook: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2734
+ /**
2735
+ *
2736
+ * @summary Add team member to project
2737
+ * @param {string} id
2738
+ * @param {AddProjectMemberDto} addProjectMemberDto
2739
+ * @param {*} [options] Override http request option.
2740
+ * @throws {RequiredError}
2741
+ */
2742
+ projectControllerAddTeamMemberToProject: (id: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2743
+ /**
2744
+ *
2745
+ * @summary Create Machine Instance
2746
+ * @param {string} projectId
2747
+ * @param {*} [options] Override http request option.
2748
+ * @throws {RequiredError}
2749
+ */
2750
+ projectControllerCreateMachineInstance: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2751
+ /**
2752
+ *
2753
+ * @summary Create Project
2754
+ * @param {CreateProjectDTO} createProjectDTO
2755
+ * @param {*} [options] Override http request option.
2756
+ * @throws {RequiredError}
2757
+ */
2758
+ projectControllerCreateProject: (createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2759
+ /**
2760
+ *
2761
+ * @summary Create Project Role
2762
+ * @param {string} id
2763
+ * @param {CreateRoleDto} createRoleDto
2764
+ * @param {*} [options] Override http request option.
2765
+ * @throws {RequiredError}
2766
+ */
2767
+ projectControllerCreateProjectRole: (id: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2768
+ /**
2769
+ *
2770
+ * @summary Delete machine instances by ids
2771
+ * @param {string} projectId
2772
+ * @param {*} [options] Override http request option.
2773
+ * @throws {RequiredError}
2774
+ */
2775
+ projectControllerDeleteMachineInstance: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2776
+ /**
2777
+ *
2778
+ * @summary Delete project by id
2779
+ * @param {string} id
2780
+ * @param {*} [options] Override http request option.
2781
+ * @throws {RequiredError}
2782
+ */
2783
+ projectControllerDeleteProjectById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2784
+ /**
2785
+ *
2786
+ * @summary Delete Project Role
2787
+ * @param {string} id
2788
+ * @param {number} roleId
2789
+ * @param {*} [options] Override http request option.
2790
+ * @throws {RequiredError}
2791
+ */
2792
+ projectControllerDeleteProjectRole: (id: string, roleId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2793
+ /**
2794
+ *
2795
+ * @summary Get all project roles
2796
+ * @param {string} id
2797
+ * @param {number} [page]
2798
+ * @param {number} [limit]
2799
+ * @param {string} [column]
2800
+ * @param {ProjectControllerGetAllProjectRolesDirectionEnum} [direction]
2801
+ * @param {*} [options] Override http request option.
2802
+ * @throws {RequiredError}
2803
+ */
2804
+ projectControllerGetAllProjectRoles: (id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2805
+ /**
2806
+ *
2807
+ * @summary Get all projects
2808
+ * @param {number} [page]
2809
+ * @param {number} [limit]
2810
+ * @param {string} [column]
2811
+ * @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
2812
+ * @param {*} [options] Override http request option.
2813
+ * @throws {RequiredError}
2814
+ */
2815
+ projectControllerGetAllProjects: (page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2816
+ /**
2817
+ *
2818
+ * @summary Get all team members of project
2819
+ * @param {string} id
2820
+ * @param {number} [page]
2821
+ * @param {number} [limit]
2822
+ * @param {string} [column]
2823
+ * @param {ProjectControllerGetAllTeamMembersOfProjectDirectionEnum} [direction]
2824
+ * @param {Array<string>} [teamMemberStatus]
2825
+ * @param {Array<number>} [roleIds]
2826
+ * @param {*} [options] Override http request option.
2827
+ * @throws {RequiredError}
2828
+ */
2829
+ projectControllerGetAllTeamMembersOfProject: (id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2830
+ /**
2831
+ *
2832
+ * @summary Get running status of instances.
2833
+ * @param {string} projectId
2834
+ * @param {*} [options] Override http request option.
2835
+ * @throws {RequiredError}
2836
+ */
2837
+ projectControllerGetInstanceRunningStatus: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2838
+ /**
2839
+ *
2840
+ * @summary Fetch last 5 notifications
2841
+ * @param {string} projectId
2842
+ * @param {*} [options] Override http request option.
2843
+ * @throws {RequiredError}
2844
+ */
2845
+ projectControllerGetLastFiveNotifications: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2846
+ /**
2847
+ *
2848
+ * @summary Get machine id matching instances.
2849
+ * @param {string} projectId
2850
+ * @param {*} [options] Override http request option.
2851
+ * @throws {RequiredError}
2852
+ */
2853
+ projectControllerGetMachineInstanceByImageId: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2854
+ /**
2855
+ *
2856
+ * @summary Get all machineInstances with count
2857
+ * @param {string} projectId
2858
+ * @param {number} page
2859
+ * @param {number} limit
2860
+ * @param {*} [options] Override http request option.
2861
+ * @throws {RequiredError}
2862
+ */
2863
+ projectControllerGetMachineInstanceByUserId: (projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2864
+ /**
2865
+ *
2866
+ * @summary Get project by id
2867
+ * @param {string} id
2868
+ * @param {*} [options] Override http request option.
2869
+ * @throws {RequiredError}
2870
+ */
2871
+ projectControllerGetProjectById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2872
+ /**
2873
+ *
2874
+ * @summary Get project role by id
2875
+ * @param {string} id
2876
+ * @param {number} roleId
2877
+ * @param {*} [options] Override http request option.
2878
+ * @throws {RequiredError}
2879
+ */
2880
+ projectControllerGetProjectRoleById: (id: string, roleId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2881
+ /**
2882
+ *
2883
+ * @summary Get user project role
2884
+ * @param {string} id
2885
+ * @param {*} [options] Override http request option.
2886
+ * @throws {RequiredError}
2887
+ */
2888
+ projectControllerGetUserProjectRole: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2889
+ /**
2890
+ *
2891
+ * @summary Mark read
2892
+ * @param {string} projectId
2893
+ * @param {object} body
2894
+ * @param {*} [options] Override http request option.
2895
+ * @throws {RequiredError}
2896
+ */
2897
+ projectControllerMarkNotificationsAsRead: (projectId: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2898
+ /**
2899
+ *
2900
+ * @summary Update project by id
2901
+ * @param {string} id
2902
+ * @param {UpdateProjectByIdRequest} updateProjectByIdRequest
2903
+ * @param {*} [options] Override http request option.
2904
+ * @throws {RequiredError}
2905
+ */
2906
+ projectControllerUpdateProjectById: (id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2907
+ /**
2908
+ *
2909
+ * @summary Update project role by id
2910
+ * @param {string} id
2911
+ * @param {number} roleId
2912
+ * @param {UpdateRoleByIdDto} updateRoleByIdDto
2913
+ * @param {*} [options] Override http request option.
2914
+ * @throws {RequiredError}
2915
+ */
2916
+ projectControllerUpdateProjectRoleById: (id: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2917
+ /**
2918
+ *
2919
+ * @summary Update Machine Instance Running Status
2920
+ * @param {object} body
2921
+ * @param {*} [options] Override http request option.
2922
+ * @throws {RequiredError}
2923
+ */
2924
+ projectControllerUpdateRunningStatus: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2925
+ /**
2926
+ *
2927
+ * @summary Update team member
2928
+ * @param {string} id
2929
+ * @param {string} teamMemberId
2930
+ * @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
2931
+ * @param {*} [options] Override http request option.
2932
+ * @throws {RequiredError}
2933
+ */
2934
+ projectControllerUpdateTeamMemberRole: (id: string, teamMemberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2935
+ /**
2936
+ *
2937
+ * @summary Join project
2938
+ * @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
2939
+ * @param {*} [options] Override http request option.
2940
+ * @throws {RequiredError}
2941
+ */
2942
+ projectControllerUpdateTeamMemberStatus: (updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2943
+ };
2944
+ /**
2945
+ * ProjectApi - functional programming interface
2946
+ * @export
2947
+ */
2948
+ export declare const ProjectApiFp: (configuration?: Configuration) => {
2949
+ /**
2950
+ *
2951
+ * @summary Create New Machine Agent
2952
+ * @param {CreateMachineAgentDto} createMachineAgentDto
2953
+ * @param {*} [options] Override http request option.
2954
+ * @throws {RequiredError}
2955
+ */
2956
+ machineAgentControllerCreateMachineAgent(createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMachineAgentDto>>;
2957
+ /**
2958
+ *
2959
+ * @summary Delete machine agent
2960
+ * @param {Array<string>} requestBody
2961
+ * @param {*} [options] Override http request option.
2962
+ * @throws {RequiredError}
2963
+ */
2964
+ machineAgentControllerDeleteMachineAgents(requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMachineAgentDto>>;
2965
+ /**
2966
+ *
2967
+ * @summary Get all machine agent with count
2968
+ * @param {string} projectId
2969
+ * @param {number} page
2970
+ * @param {number} limit
2971
+ * @param {*} [options] Override http request option.
2972
+ * @throws {RequiredError}
2973
+ */
2974
+ machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMachineAgentDto>>;
2975
+ /**
2976
+ *
2977
+ * @summary Update machine agent by id
2978
+ * @param {*} [options] Override http request option.
2979
+ * @throws {RequiredError}
2980
+ */
2981
+ machineAgentControllerUpdateMachineAgent(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMachineAgentDto>>;
2982
+ /**
2983
+ *
2984
+ * @summary Add new evaluation test.
2985
+ * @param {*} [options] Override http request option.
2986
+ * @throws {RequiredError}
2987
+ */
2988
+ machineModelControllerAddEvaluationTest(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2989
+ /**
2990
+ *
2991
+ * @summary Create New Machine Model
2992
+ * @param {object} body
2993
+ * @param {*} [options] Override http request option.
2994
+ * @throws {RequiredError}
2995
+ */
2996
+ machineModelControllerCreateMachineModel(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2997
+ /**
2998
+ *
2999
+ * @summary Create webhook
3000
+ * @param {*} [options] Override http request option.
3001
+ * @throws {RequiredError}
3002
+ */
3003
+ machineModelControllerCreateWebhook(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWebhookDto>>;
3004
+ /**
3005
+ *
3006
+ * @summary Delete evaluation
3007
+ * @param {*} [options] Override http request option.
3008
+ * @throws {RequiredError}
3009
+ */
3010
+ machineModelControllerDeleteEvaluation(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3011
+ /**
3012
+ *
3013
+ * @summary Create New Machine Model
3014
+ * @param {Array<string>} requestBody
3015
+ * @param {*} [options] Override http request option.
3016
+ * @throws {RequiredError}
3017
+ */
3018
+ machineModelControllerDeleteMachineModels(requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3019
+ /**
3020
+ *
3021
+ * @summary Delete webhook
3022
+ * @param {string} modelId
3023
+ * @param {*} [options] Override http request option.
3024
+ * @throws {RequiredError}
3025
+ */
3026
+ machineModelControllerDeleteWebhook(modelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWebhookDto>>;
3027
+ /**
3028
+ *
3029
+ * @summary Execute evaluation test.
3030
+ * @param {*} [options] Override http request option.
3031
+ * @throws {RequiredError}
3032
+ */
3033
+ machineModelControllerExecuteEvaluation(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3034
+ /**
3035
+ *
3036
+ * @summary Fetch Swagger JSON
3037
+ * @param {string} modelId
3038
+ * @param {*} [options] Override http request option.
3039
+ * @throws {RequiredError}
3040
+ */
3041
+ machineModelControllerFetchSwaggerJSON(modelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3042
+ /**
3043
+ *
3044
+ * @summary Fetch webhook
3045
+ * @param {string} modelId
3046
+ * @param {boolean} isAgentWebhook
3047
+ * @param {*} [options] Override http request option.
3048
+ * @throws {RequiredError}
3049
+ */
3050
+ machineModelControllerFetchWebhook(modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWebhookDto>>;
3051
+ /**
3052
+ *
3053
+ * @summary Fetch evaluation test.
3054
+ * @param {string} modelId
3055
+ * @param {*} [options] Override http request option.
3056
+ * @throws {RequiredError}
3057
+ */
3058
+ machineModelControllerGetEvaluationTest(modelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3059
+ /**
3060
+ *
3061
+ * @summary Fetch Swagger JSON
3062
+ * @param {string} modelId
3063
+ * @param {string} queryId
3064
+ * @param {*} [options] Override http request option.
3065
+ * @throws {RequiredError}
3066
+ */
3067
+ machineModelControllerGetEventLogsByQueryId(modelId: string, queryId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3068
+ /**
3069
+ *
3070
+ * @summary Get all machine models with count
3071
+ * @param {string} projectId
3072
+ * @param {number} page
3073
+ * @param {number} limit
3074
+ * @param {*} [options] Override http request option.
3075
+ * @throws {RequiredError}
3076
+ */
3077
+ machineModelControllerGetMachineInstanceByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3078
+ /**
3079
+ *
3080
+ * @summary Run Query
3081
+ * @param {*} [options] Override http request option.
3082
+ * @throws {RequiredError}
3083
+ */
3084
+ machineModelControllerRunQuery(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWebhookDto>>;
3085
+ /**
3086
+ *
3087
+ * @summary Update evaluation
3088
+ * @param {*} [options] Override http request option.
3089
+ * @throws {RequiredError}
3090
+ */
3091
+ machineModelControllerUpdateEvaluation(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3092
+ /**
3093
+ *
3094
+ * @summary Update machine model by id
3095
+ * @param {*} [options] Override http request option.
3096
+ * @throws {RequiredError}
3097
+ */
3098
+ machineModelControllerUpdateMachineModel(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3099
+ /**
3100
+ *
3101
+ * @summary Update webhook
3102
+ * @param {*} [options] Override http request option.
3103
+ * @throws {RequiredError}
3104
+ */
3105
+ machineModelControllerUpdateWebhook(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWebhookDto>>;
3106
+ /**
3107
+ *
3108
+ * @summary Add team member to project
3109
+ * @param {string} id
3110
+ * @param {AddProjectMemberDto} addProjectMemberDto
3111
+ * @param {*} [options] Override http request option.
3112
+ * @throws {RequiredError}
3113
+ */
3114
+ projectControllerAddTeamMemberToProject(id: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddProjectMemberResponseDTO>>;
3115
+ /**
3116
+ *
3117
+ * @summary Create Machine Instance
3118
+ * @param {string} projectId
3119
+ * @param {*} [options] Override http request option.
3120
+ * @throws {RequiredError}
3121
+ */
3122
+ projectControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3123
+ /**
3124
+ *
3125
+ * @summary Create Project
3126
+ * @param {CreateProjectDTO} createProjectDTO
3127
+ * @param {*} [options] Override http request option.
3128
+ * @throws {RequiredError}
3129
+ */
3130
+ projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateProjectResponseDTO>>;
3131
+ /**
3132
+ *
3133
+ * @summary Create Project Role
3134
+ * @param {string} id
3135
+ * @param {CreateRoleDto} createRoleDto
3136
+ * @param {*} [options] Override http request option.
3137
+ * @throws {RequiredError}
3138
+ */
3139
+ projectControllerCreateProjectRole(id: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateProjectRoleResponseDto>>;
3140
+ /**
3141
+ *
3142
+ * @summary Delete machine instances by ids
3143
+ * @param {string} projectId
3144
+ * @param {*} [options] Override http request option.
3145
+ * @throws {RequiredError}
3146
+ */
3147
+ projectControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3148
+ /**
3149
+ *
3150
+ * @summary Delete project by id
3151
+ * @param {string} id
3152
+ * @param {*} [options] Override http request option.
3153
+ * @throws {RequiredError}
3154
+ */
3155
+ projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteProjectResponseDTO>>;
3156
+ /**
3157
+ *
3158
+ * @summary Delete Project Role
3159
+ * @param {string} id
3160
+ * @param {number} roleId
3161
+ * @param {*} [options] Override http request option.
3162
+ * @throws {RequiredError}
3163
+ */
3164
+ projectControllerDeleteProjectRole(id: string, roleId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteProjectRoleByIdResponseDto>>;
3165
+ /**
3166
+ *
3167
+ * @summary Get all project roles
3168
+ * @param {string} id
3169
+ * @param {number} [page]
3170
+ * @param {number} [limit]
3171
+ * @param {string} [column]
3172
+ * @param {ProjectControllerGetAllProjectRolesDirectionEnum} [direction]
3173
+ * @param {*} [options] Override http request option.
3174
+ * @throws {RequiredError}
3175
+ */
3176
+ projectControllerGetAllProjectRoles(id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllProjectRoleResponseDto>>;
3177
+ /**
3178
+ *
3179
+ * @summary Get all projects
3180
+ * @param {number} [page]
3181
+ * @param {number} [limit]
3182
+ * @param {string} [column]
3183
+ * @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
3184
+ * @param {*} [options] Override http request option.
3185
+ * @throws {RequiredError}
3186
+ */
3187
+ projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllProjectsResponseDTO>>;
3188
+ /**
3189
+ *
3190
+ * @summary Get all team members of project
3191
+ * @param {string} id
3192
+ * @param {number} [page]
3193
+ * @param {number} [limit]
3194
+ * @param {string} [column]
3195
+ * @param {ProjectControllerGetAllTeamMembersOfProjectDirectionEnum} [direction]
3196
+ * @param {Array<string>} [teamMemberStatus]
3197
+ * @param {Array<number>} [roleIds]
3198
+ * @param {*} [options] Override http request option.
3199
+ * @throws {RequiredError}
3200
+ */
3201
+ projectControllerGetAllTeamMembersOfProject(id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllProjectMemberResponseDto>>;
3202
+ /**
3203
+ *
3204
+ * @summary Get running status of instances.
3205
+ * @param {string} projectId
3206
+ * @param {*} [options] Override http request option.
3207
+ * @throws {RequiredError}
3208
+ */
3209
+ projectControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3210
+ /**
3211
+ *
3212
+ * @summary Fetch last 5 notifications
3213
+ * @param {string} projectId
3214
+ * @param {*} [options] Override http request option.
3215
+ * @throws {RequiredError}
3216
+ */
3217
+ projectControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3218
+ /**
3219
+ *
3220
+ * @summary Get machine id matching instances.
3221
+ * @param {string} projectId
3222
+ * @param {*} [options] Override http request option.
3223
+ * @throws {RequiredError}
3224
+ */
3225
+ projectControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3226
+ /**
3227
+ *
3228
+ * @summary Get all machineInstances with count
3229
+ * @param {string} projectId
3230
+ * @param {number} page
3231
+ * @param {number} limit
3232
+ * @param {*} [options] Override http request option.
3233
+ * @throws {RequiredError}
3234
+ */
3235
+ projectControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3236
+ /**
3237
+ *
3238
+ * @summary Get project by id
3239
+ * @param {string} id
3240
+ * @param {*} [options] Override http request option.
3241
+ * @throws {RequiredError}
3242
+ */
3243
+ projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetProjectByIDResponseDTO>>;
3244
+ /**
3245
+ *
3246
+ * @summary Get project role by id
3247
+ * @param {string} id
3248
+ * @param {number} roleId
3249
+ * @param {*} [options] Override http request option.
3250
+ * @throws {RequiredError}
3251
+ */
3252
+ projectControllerGetProjectRoleById(id: string, roleId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetProjectRoleByIdResponseDto>>;
3253
+ /**
3254
+ *
3255
+ * @summary Get user project role
3256
+ * @param {string} id
3257
+ * @param {*} [options] Override http request option.
3258
+ * @throws {RequiredError}
3259
+ */
3260
+ projectControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserProjectRoleByRoleIdResponseDto>>;
3261
+ /**
3262
+ *
3263
+ * @summary Mark read
3264
+ * @param {string} projectId
3265
+ * @param {object} body
3266
+ * @param {*} [options] Override http request option.
3267
+ * @throws {RequiredError}
3268
+ */
3269
+ projectControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3270
+ /**
3271
+ *
3272
+ * @summary Update project by id
3273
+ * @param {string} id
3274
+ * @param {UpdateProjectByIdRequest} updateProjectByIdRequest
3275
+ * @param {*} [options] Override http request option.
3276
+ * @throws {RequiredError}
3277
+ */
3278
+ projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateProjectByIDResponseDTO>>;
3279
+ /**
3280
+ *
3281
+ * @summary Update project role by id
3282
+ * @param {string} id
3283
+ * @param {number} roleId
3284
+ * @param {UpdateRoleByIdDto} updateRoleByIdDto
3285
+ * @param {*} [options] Override http request option.
3286
+ * @throws {RequiredError}
3287
+ */
3288
+ projectControllerUpdateProjectRoleById(id: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateProjectRoleResponseDto>>;
3289
+ /**
3290
+ *
3291
+ * @summary Update Machine Instance Running Status
3292
+ * @param {object} body
3293
+ * @param {*} [options] Override http request option.
3294
+ * @throws {RequiredError}
3295
+ */
3296
+ projectControllerUpdateRunningStatus(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3297
+ /**
3298
+ *
3299
+ * @summary Update team member
3300
+ * @param {string} id
3301
+ * @param {string} teamMemberId
3302
+ * @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
3303
+ * @param {*} [options] Override http request option.
3304
+ * @throws {RequiredError}
3305
+ */
3306
+ projectControllerUpdateTeamMemberRole(id: string, teamMemberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddProjectMemberResponseDTO>>;
3307
+ /**
3308
+ *
3309
+ * @summary Join project
3310
+ * @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
3311
+ * @param {*} [options] Override http request option.
3312
+ * @throws {RequiredError}
3313
+ */
3314
+ projectControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddProjectMemberResponseDTO>>;
3315
+ };
3316
+ /**
3317
+ * ProjectApi - factory interface
3318
+ * @export
3319
+ */
3320
+ export declare const ProjectApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3321
+ /**
3322
+ *
3323
+ * @summary Create New Machine Agent
3324
+ * @param {CreateMachineAgentDto} createMachineAgentDto
3325
+ * @param {*} [options] Override http request option.
3326
+ * @throws {RequiredError}
3327
+ */
3328
+ machineAgentControllerCreateMachineAgent(createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): AxiosPromise<CreateMachineAgentDto>;
3329
+ /**
3330
+ *
3331
+ * @summary Delete machine agent
3332
+ * @param {Array<string>} requestBody
3333
+ * @param {*} [options] Override http request option.
3334
+ * @throws {RequiredError}
3335
+ */
3336
+ machineAgentControllerDeleteMachineAgents(requestBody: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<CreateMachineAgentDto>;
3337
+ /**
3338
+ *
3339
+ * @summary Get all machine agent with count
3340
+ * @param {string} projectId
3341
+ * @param {number} page
3342
+ * @param {number} limit
3343
+ * @param {*} [options] Override http request option.
3344
+ * @throws {RequiredError}
3345
+ */
3346
+ machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): AxiosPromise<CreateMachineAgentDto>;
3347
+ /**
3348
+ *
3349
+ * @summary Update machine agent by id
3350
+ * @param {*} [options] Override http request option.
3351
+ * @throws {RequiredError}
3352
+ */
3353
+ machineAgentControllerUpdateMachineAgent(options?: RawAxiosRequestConfig): AxiosPromise<CreateMachineAgentDto>;
3354
+ /**
3355
+ *
3356
+ * @summary Add new evaluation test.
3357
+ * @param {*} [options] Override http request option.
3358
+ * @throws {RequiredError}
3359
+ */
3360
+ machineModelControllerAddEvaluationTest(options?: RawAxiosRequestConfig): AxiosPromise<object>;
3361
+ /**
3362
+ *
3363
+ * @summary Create New Machine Model
3364
+ * @param {object} body
3365
+ * @param {*} [options] Override http request option.
3366
+ * @throws {RequiredError}
3367
+ */
3368
+ machineModelControllerCreateMachineModel(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3369
+ /**
3370
+ *
3371
+ * @summary Create webhook
3372
+ * @param {*} [options] Override http request option.
3373
+ * @throws {RequiredError}
3374
+ */
3375
+ machineModelControllerCreateWebhook(options?: RawAxiosRequestConfig): AxiosPromise<CreateWebhookDto>;
3376
+ /**
3377
+ *
3378
+ * @summary Delete evaluation
3379
+ * @param {*} [options] Override http request option.
3380
+ * @throws {RequiredError}
3381
+ */
3382
+ machineModelControllerDeleteEvaluation(options?: RawAxiosRequestConfig): AxiosPromise<object>;
3383
+ /**
3384
+ *
3385
+ * @summary Create New Machine Model
3386
+ * @param {Array<string>} requestBody
3387
+ * @param {*} [options] Override http request option.
3388
+ * @throws {RequiredError}
3389
+ */
3390
+ machineModelControllerDeleteMachineModels(requestBody: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3391
+ /**
3392
+ *
3393
+ * @summary Delete webhook
3394
+ * @param {string} modelId
3395
+ * @param {*} [options] Override http request option.
3396
+ * @throws {RequiredError}
3397
+ */
3398
+ machineModelControllerDeleteWebhook(modelId: string, options?: RawAxiosRequestConfig): AxiosPromise<CreateWebhookDto>;
3399
+ /**
3400
+ *
3401
+ * @summary Execute evaluation test.
3402
+ * @param {*} [options] Override http request option.
3403
+ * @throws {RequiredError}
3404
+ */
3405
+ machineModelControllerExecuteEvaluation(options?: RawAxiosRequestConfig): AxiosPromise<object>;
3406
+ /**
3407
+ *
3408
+ * @summary Fetch Swagger JSON
3409
+ * @param {string} modelId
3410
+ * @param {*} [options] Override http request option.
3411
+ * @throws {RequiredError}
3412
+ */
3413
+ machineModelControllerFetchSwaggerJSON(modelId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3414
+ /**
3415
+ *
3416
+ * @summary Fetch webhook
3417
+ * @param {string} modelId
3418
+ * @param {boolean} isAgentWebhook
3419
+ * @param {*} [options] Override http request option.
3420
+ * @throws {RequiredError}
3421
+ */
3422
+ machineModelControllerFetchWebhook(modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): AxiosPromise<CreateWebhookDto>;
3423
+ /**
3424
+ *
3425
+ * @summary Fetch evaluation test.
3426
+ * @param {string} modelId
3427
+ * @param {*} [options] Override http request option.
3428
+ * @throws {RequiredError}
3429
+ */
3430
+ machineModelControllerGetEvaluationTest(modelId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3431
+ /**
3432
+ *
3433
+ * @summary Fetch Swagger JSON
3434
+ * @param {string} modelId
3435
+ * @param {string} queryId
3436
+ * @param {*} [options] Override http request option.
3437
+ * @throws {RequiredError}
3438
+ */
3439
+ machineModelControllerGetEventLogsByQueryId(modelId: string, queryId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3440
+ /**
3441
+ *
3442
+ * @summary Get all machine models with count
3443
+ * @param {string} projectId
3444
+ * @param {number} page
3445
+ * @param {number} limit
3446
+ * @param {*} [options] Override http request option.
3447
+ * @throws {RequiredError}
3448
+ */
3449
+ machineModelControllerGetMachineInstanceByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3450
+ /**
3451
+ *
3452
+ * @summary Run Query
3453
+ * @param {*} [options] Override http request option.
3454
+ * @throws {RequiredError}
3455
+ */
3456
+ machineModelControllerRunQuery(options?: RawAxiosRequestConfig): AxiosPromise<CreateWebhookDto>;
3457
+ /**
3458
+ *
3459
+ * @summary Update evaluation
3460
+ * @param {*} [options] Override http request option.
3461
+ * @throws {RequiredError}
3462
+ */
3463
+ machineModelControllerUpdateEvaluation(options?: RawAxiosRequestConfig): AxiosPromise<object>;
3464
+ /**
3465
+ *
3466
+ * @summary Update machine model by id
3467
+ * @param {*} [options] Override http request option.
3468
+ * @throws {RequiredError}
3469
+ */
3470
+ machineModelControllerUpdateMachineModel(options?: RawAxiosRequestConfig): AxiosPromise<object>;
3471
+ /**
3472
+ *
3473
+ * @summary Update webhook
3474
+ * @param {*} [options] Override http request option.
3475
+ * @throws {RequiredError}
3476
+ */
3477
+ machineModelControllerUpdateWebhook(options?: RawAxiosRequestConfig): AxiosPromise<CreateWebhookDto>;
3478
+ /**
3479
+ *
3480
+ * @summary Add team member to project
3481
+ * @param {string} id
3482
+ * @param {AddProjectMemberDto} addProjectMemberDto
3483
+ * @param {*} [options] Override http request option.
3484
+ * @throws {RequiredError}
3485
+ */
3486
+ projectControllerAddTeamMemberToProject(id: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): AxiosPromise<AddProjectMemberResponseDTO>;
3487
+ /**
3488
+ *
3489
+ * @summary Create Machine Instance
3490
+ * @param {string} projectId
3491
+ * @param {*} [options] Override http request option.
3492
+ * @throws {RequiredError}
3493
+ */
3494
+ projectControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3495
+ /**
3496
+ *
3497
+ * @summary Create Project
3498
+ * @param {CreateProjectDTO} createProjectDTO
3499
+ * @param {*} [options] Override http request option.
3500
+ * @throws {RequiredError}
3501
+ */
3502
+ projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): AxiosPromise<CreateProjectResponseDTO>;
3503
+ /**
3504
+ *
3505
+ * @summary Create Project Role
3506
+ * @param {string} id
3507
+ * @param {CreateRoleDto} createRoleDto
3508
+ * @param {*} [options] Override http request option.
3509
+ * @throws {RequiredError}
3510
+ */
3511
+ projectControllerCreateProjectRole(id: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): AxiosPromise<CreateProjectRoleResponseDto>;
3512
+ /**
3513
+ *
3514
+ * @summary Delete machine instances by ids
3515
+ * @param {string} projectId
3516
+ * @param {*} [options] Override http request option.
3517
+ * @throws {RequiredError}
3518
+ */
3519
+ projectControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3520
+ /**
3521
+ *
3522
+ * @summary Delete project by id
3523
+ * @param {string} id
3524
+ * @param {*} [options] Override http request option.
3525
+ * @throws {RequiredError}
3526
+ */
3527
+ projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DeleteProjectResponseDTO>;
3528
+ /**
3529
+ *
3530
+ * @summary Delete Project Role
3531
+ * @param {string} id
3532
+ * @param {number} roleId
3533
+ * @param {*} [options] Override http request option.
3534
+ * @throws {RequiredError}
3535
+ */
3536
+ projectControllerDeleteProjectRole(id: string, roleId: number, options?: RawAxiosRequestConfig): AxiosPromise<DeleteProjectRoleByIdResponseDto>;
3537
+ /**
3538
+ *
3539
+ * @summary Get all project roles
3540
+ * @param {string} id
3541
+ * @param {number} [page]
3542
+ * @param {number} [limit]
3543
+ * @param {string} [column]
3544
+ * @param {ProjectControllerGetAllProjectRolesDirectionEnum} [direction]
3545
+ * @param {*} [options] Override http request option.
3546
+ * @throws {RequiredError}
3547
+ */
3548
+ projectControllerGetAllProjectRoles(id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): AxiosPromise<GetAllProjectRoleResponseDto>;
3549
+ /**
3550
+ *
3551
+ * @summary Get all projects
3552
+ * @param {number} [page]
3553
+ * @param {number} [limit]
3554
+ * @param {string} [column]
3555
+ * @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
3556
+ * @param {*} [options] Override http request option.
3557
+ * @throws {RequiredError}
3558
+ */
3559
+ projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): AxiosPromise<GetAllProjectsResponseDTO>;
3560
+ /**
3561
+ *
3562
+ * @summary Get all team members of project
3563
+ * @param {string} id
3564
+ * @param {number} [page]
3565
+ * @param {number} [limit]
3566
+ * @param {string} [column]
3567
+ * @param {ProjectControllerGetAllTeamMembersOfProjectDirectionEnum} [direction]
3568
+ * @param {Array<string>} [teamMemberStatus]
3569
+ * @param {Array<number>} [roleIds]
3570
+ * @param {*} [options] Override http request option.
3571
+ * @throws {RequiredError}
3572
+ */
3573
+ projectControllerGetAllTeamMembersOfProject(id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): AxiosPromise<GetAllProjectMemberResponseDto>;
3574
+ /**
3575
+ *
3576
+ * @summary Get running status of instances.
3577
+ * @param {string} projectId
3578
+ * @param {*} [options] Override http request option.
3579
+ * @throws {RequiredError}
3580
+ */
3581
+ projectControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3582
+ /**
3583
+ *
3584
+ * @summary Fetch last 5 notifications
3585
+ * @param {string} projectId
3586
+ * @param {*} [options] Override http request option.
3587
+ * @throws {RequiredError}
3588
+ */
3589
+ projectControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3590
+ /**
3591
+ *
3592
+ * @summary Get machine id matching instances.
3593
+ * @param {string} projectId
3594
+ * @param {*} [options] Override http request option.
3595
+ * @throws {RequiredError}
3596
+ */
3597
+ projectControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3598
+ /**
3599
+ *
3600
+ * @summary Get all machineInstances with count
3601
+ * @param {string} projectId
3602
+ * @param {number} page
3603
+ * @param {number} limit
3604
+ * @param {*} [options] Override http request option.
3605
+ * @throws {RequiredError}
3606
+ */
3607
+ projectControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3608
+ /**
3609
+ *
3610
+ * @summary Get project by id
3611
+ * @param {string} id
3612
+ * @param {*} [options] Override http request option.
3613
+ * @throws {RequiredError}
3614
+ */
3615
+ projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GetProjectByIDResponseDTO>;
3616
+ /**
3617
+ *
3618
+ * @summary Get project role by id
3619
+ * @param {string} id
3620
+ * @param {number} roleId
3621
+ * @param {*} [options] Override http request option.
3622
+ * @throws {RequiredError}
3623
+ */
3624
+ projectControllerGetProjectRoleById(id: string, roleId: number, options?: RawAxiosRequestConfig): AxiosPromise<GetProjectRoleByIdResponseDto>;
3625
+ /**
3626
+ *
3627
+ * @summary Get user project role
3628
+ * @param {string} id
3629
+ * @param {*} [options] Override http request option.
3630
+ * @throws {RequiredError}
3631
+ */
3632
+ projectControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GetUserProjectRoleByRoleIdResponseDto>;
3633
+ /**
3634
+ *
3635
+ * @summary Mark read
3636
+ * @param {string} projectId
3637
+ * @param {object} body
3638
+ * @param {*} [options] Override http request option.
3639
+ * @throws {RequiredError}
3640
+ */
3641
+ projectControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3642
+ /**
3643
+ *
3644
+ * @summary Update project by id
3645
+ * @param {string} id
3646
+ * @param {UpdateProjectByIdRequest} updateProjectByIdRequest
3647
+ * @param {*} [options] Override http request option.
3648
+ * @throws {RequiredError}
3649
+ */
3650
+ projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateProjectByIDResponseDTO>;
3651
+ /**
3652
+ *
3653
+ * @summary Update project role by id
3654
+ * @param {string} id
3655
+ * @param {number} roleId
3656
+ * @param {UpdateRoleByIdDto} updateRoleByIdDto
3657
+ * @param {*} [options] Override http request option.
3658
+ * @throws {RequiredError}
3659
+ */
3660
+ projectControllerUpdateProjectRoleById(id: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): AxiosPromise<UpdateProjectRoleResponseDto>;
3661
+ /**
3662
+ *
3663
+ * @summary Update Machine Instance Running Status
3664
+ * @param {object} body
3665
+ * @param {*} [options] Override http request option.
3666
+ * @throws {RequiredError}
3667
+ */
3668
+ projectControllerUpdateRunningStatus(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3669
+ /**
3670
+ *
3671
+ * @summary Update team member
3672
+ * @param {string} id
3673
+ * @param {string} teamMemberId
3674
+ * @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
3675
+ * @param {*} [options] Override http request option.
3676
+ * @throws {RequiredError}
3677
+ */
3678
+ projectControllerUpdateTeamMemberRole(id: string, teamMemberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<AddProjectMemberResponseDTO>;
3679
+ /**
3680
+ *
3681
+ * @summary Join project
3682
+ * @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
3683
+ * @param {*} [options] Override http request option.
3684
+ * @throws {RequiredError}
3685
+ */
3686
+ projectControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<AddProjectMemberResponseDTO>;
3687
+ };
3688
+ /**
3689
+ * ProjectApi - object-oriented interface
3690
+ * @export
3691
+ * @class ProjectApi
3692
+ * @extends {BaseAPI}
3693
+ */
3694
+ export declare class ProjectApi extends BaseAPI {
3695
+ /**
3696
+ *
3697
+ * @summary Create New Machine Agent
3698
+ * @param {CreateMachineAgentDto} createMachineAgentDto
3699
+ * @param {*} [options] Override http request option.
3700
+ * @throws {RequiredError}
3701
+ * @memberof ProjectApi
3702
+ */
3703
+ machineAgentControllerCreateMachineAgent(createMachineAgentDto: CreateMachineAgentDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
3704
+ /**
3705
+ *
3706
+ * @summary Delete machine agent
3707
+ * @param {Array<string>} requestBody
3708
+ * @param {*} [options] Override http request option.
3709
+ * @throws {RequiredError}
3710
+ * @memberof ProjectApi
3711
+ */
3712
+ machineAgentControllerDeleteMachineAgents(requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
3713
+ /**
3714
+ *
3715
+ * @summary Get all machine agent with count
3716
+ * @param {string} projectId
3717
+ * @param {number} page
3718
+ * @param {number} limit
3719
+ * @param {*} [options] Override http request option.
3720
+ * @throws {RequiredError}
3721
+ * @memberof ProjectApi
3722
+ */
3723
+ machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
3724
+ /**
3725
+ *
3726
+ * @summary Update machine agent by id
3727
+ * @param {*} [options] Override http request option.
3728
+ * @throws {RequiredError}
3729
+ * @memberof ProjectApi
3730
+ */
3731
+ machineAgentControllerUpdateMachineAgent(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
3732
+ /**
3733
+ *
3734
+ * @summary Add new evaluation test.
3735
+ * @param {*} [options] Override http request option.
3736
+ * @throws {RequiredError}
3737
+ * @memberof ProjectApi
3738
+ */
3739
+ machineModelControllerAddEvaluationTest(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3740
+ /**
3741
+ *
3742
+ * @summary Create New Machine Model
3743
+ * @param {object} body
3744
+ * @param {*} [options] Override http request option.
3745
+ * @throws {RequiredError}
3746
+ * @memberof ProjectApi
3747
+ */
3748
+ machineModelControllerCreateMachineModel(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3749
+ /**
3750
+ *
3751
+ * @summary Create webhook
3752
+ * @param {*} [options] Override http request option.
3753
+ * @throws {RequiredError}
3754
+ * @memberof ProjectApi
3755
+ */
3756
+ machineModelControllerCreateWebhook(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3757
+ /**
3758
+ *
3759
+ * @summary Delete evaluation
3760
+ * @param {*} [options] Override http request option.
3761
+ * @throws {RequiredError}
3762
+ * @memberof ProjectApi
3763
+ */
3764
+ machineModelControllerDeleteEvaluation(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3765
+ /**
3766
+ *
3767
+ * @summary Create New Machine Model
3768
+ * @param {Array<string>} requestBody
3769
+ * @param {*} [options] Override http request option.
3770
+ * @throws {RequiredError}
3771
+ * @memberof ProjectApi
3772
+ */
3773
+ machineModelControllerDeleteMachineModels(requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3774
+ /**
3775
+ *
3776
+ * @summary Delete webhook
3777
+ * @param {string} modelId
3778
+ * @param {*} [options] Override http request option.
3779
+ * @throws {RequiredError}
3780
+ * @memberof ProjectApi
3781
+ */
3782
+ machineModelControllerDeleteWebhook(modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3783
+ /**
3784
+ *
3785
+ * @summary Execute evaluation test.
3786
+ * @param {*} [options] Override http request option.
3787
+ * @throws {RequiredError}
3788
+ * @memberof ProjectApi
3789
+ */
3790
+ machineModelControllerExecuteEvaluation(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3791
+ /**
3792
+ *
3793
+ * @summary Fetch Swagger JSON
3794
+ * @param {string} modelId
3795
+ * @param {*} [options] Override http request option.
3796
+ * @throws {RequiredError}
3797
+ * @memberof ProjectApi
3798
+ */
3799
+ machineModelControllerFetchSwaggerJSON(modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3800
+ /**
3801
+ *
3802
+ * @summary Fetch webhook
3803
+ * @param {string} modelId
3804
+ * @param {boolean} isAgentWebhook
3805
+ * @param {*} [options] Override http request option.
3806
+ * @throws {RequiredError}
3807
+ * @memberof ProjectApi
3808
+ */
3809
+ machineModelControllerFetchWebhook(modelId: string, isAgentWebhook: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3810
+ /**
3811
+ *
3812
+ * @summary Fetch evaluation test.
3813
+ * @param {string} modelId
3814
+ * @param {*} [options] Override http request option.
3815
+ * @throws {RequiredError}
3816
+ * @memberof ProjectApi
3817
+ */
3818
+ machineModelControllerGetEvaluationTest(modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3819
+ /**
3820
+ *
3821
+ * @summary Fetch Swagger JSON
3822
+ * @param {string} modelId
3823
+ * @param {string} queryId
3824
+ * @param {*} [options] Override http request option.
3825
+ * @throws {RequiredError}
3826
+ * @memberof ProjectApi
3827
+ */
3828
+ machineModelControllerGetEventLogsByQueryId(modelId: string, queryId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3829
+ /**
3830
+ *
3831
+ * @summary Get all machine models with count
3832
+ * @param {string} projectId
3833
+ * @param {number} page
3834
+ * @param {number} limit
3835
+ * @param {*} [options] Override http request option.
3836
+ * @throws {RequiredError}
3837
+ * @memberof ProjectApi
3838
+ */
3839
+ machineModelControllerGetMachineInstanceByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3840
+ /**
3841
+ *
3842
+ * @summary Run Query
3843
+ * @param {*} [options] Override http request option.
3844
+ * @throws {RequiredError}
3845
+ * @memberof ProjectApi
3846
+ */
3847
+ machineModelControllerRunQuery(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3848
+ /**
3849
+ *
3850
+ * @summary Update evaluation
3851
+ * @param {*} [options] Override http request option.
3852
+ * @throws {RequiredError}
3853
+ * @memberof ProjectApi
3854
+ */
3855
+ machineModelControllerUpdateEvaluation(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3856
+ /**
3857
+ *
3858
+ * @summary Update machine model by id
3859
+ * @param {*} [options] Override http request option.
3860
+ * @throws {RequiredError}
3861
+ * @memberof ProjectApi
3862
+ */
3863
+ machineModelControllerUpdateMachineModel(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3864
+ /**
3865
+ *
3866
+ * @summary Update webhook
3867
+ * @param {*} [options] Override http request option.
3868
+ * @throws {RequiredError}
3869
+ * @memberof ProjectApi
3870
+ */
3871
+ machineModelControllerUpdateWebhook(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWebhookDto, any>>;
3872
+ /**
3873
+ *
3874
+ * @summary Add team member to project
3875
+ * @param {string} id
3876
+ * @param {AddProjectMemberDto} addProjectMemberDto
3877
+ * @param {*} [options] Override http request option.
3878
+ * @throws {RequiredError}
3879
+ * @memberof ProjectApi
3880
+ */
3881
+ projectControllerAddTeamMemberToProject(id: string, addProjectMemberDto: AddProjectMemberDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
3882
+ /**
3883
+ *
3884
+ * @summary Create Machine Instance
3885
+ * @param {string} projectId
3886
+ * @param {*} [options] Override http request option.
3887
+ * @throws {RequiredError}
3888
+ * @memberof ProjectApi
3889
+ */
3890
+ projectControllerCreateMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3891
+ /**
3892
+ *
3893
+ * @summary Create Project
3894
+ * @param {CreateProjectDTO} createProjectDTO
3895
+ * @param {*} [options] Override http request option.
3896
+ * @throws {RequiredError}
3897
+ * @memberof ProjectApi
3898
+ */
3899
+ projectControllerCreateProject(createProjectDTO: CreateProjectDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectResponseDTO, any>>;
3900
+ /**
3901
+ *
3902
+ * @summary Create Project Role
3903
+ * @param {string} id
3904
+ * @param {CreateRoleDto} createRoleDto
3905
+ * @param {*} [options] Override http request option.
3906
+ * @throws {RequiredError}
3907
+ * @memberof ProjectApi
3908
+ */
3909
+ projectControllerCreateProjectRole(id: string, createRoleDto: CreateRoleDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateProjectRoleResponseDto, any>>;
3910
+ /**
3911
+ *
3912
+ * @summary Delete machine instances by ids
3913
+ * @param {string} projectId
3914
+ * @param {*} [options] Override http request option.
3915
+ * @throws {RequiredError}
3916
+ * @memberof ProjectApi
3917
+ */
3918
+ projectControllerDeleteMachineInstance(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3919
+ /**
3920
+ *
3921
+ * @summary Delete project by id
3922
+ * @param {string} id
3923
+ * @param {*} [options] Override http request option.
3924
+ * @throws {RequiredError}
3925
+ * @memberof ProjectApi
3926
+ */
3927
+ projectControllerDeleteProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectResponseDTO, any>>;
3928
+ /**
3929
+ *
3930
+ * @summary Delete Project Role
3931
+ * @param {string} id
3932
+ * @param {number} roleId
3933
+ * @param {*} [options] Override http request option.
3934
+ * @throws {RequiredError}
3935
+ * @memberof ProjectApi
3936
+ */
3937
+ projectControllerDeleteProjectRole(id: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteProjectRoleByIdResponseDto, any>>;
3938
+ /**
3939
+ *
3940
+ * @summary Get all project roles
3941
+ * @param {string} id
3942
+ * @param {number} [page]
3943
+ * @param {number} [limit]
3944
+ * @param {string} [column]
3945
+ * @param {ProjectControllerGetAllProjectRolesDirectionEnum} [direction]
3946
+ * @param {*} [options] Override http request option.
3947
+ * @throws {RequiredError}
3948
+ * @memberof ProjectApi
3949
+ */
3950
+ projectControllerGetAllProjectRoles(id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectRolesDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectRoleResponseDto, any>>;
3951
+ /**
3952
+ *
3953
+ * @summary Get all projects
3954
+ * @param {number} [page]
3955
+ * @param {number} [limit]
3956
+ * @param {string} [column]
3957
+ * @param {ProjectControllerGetAllProjectsDirectionEnum} [direction]
3958
+ * @param {*} [options] Override http request option.
3959
+ * @throws {RequiredError}
3960
+ * @memberof ProjectApi
3961
+ */
3962
+ projectControllerGetAllProjects(page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllProjectsDirectionEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectsResponseDTO, any>>;
3963
+ /**
3964
+ *
3965
+ * @summary Get all team members of project
3966
+ * @param {string} id
3967
+ * @param {number} [page]
3968
+ * @param {number} [limit]
3969
+ * @param {string} [column]
3970
+ * @param {ProjectControllerGetAllTeamMembersOfProjectDirectionEnum} [direction]
3971
+ * @param {Array<string>} [teamMemberStatus]
3972
+ * @param {Array<number>} [roleIds]
3973
+ * @param {*} [options] Override http request option.
3974
+ * @throws {RequiredError}
3975
+ * @memberof ProjectApi
3976
+ */
3977
+ projectControllerGetAllTeamMembersOfProject(id: string, page?: number, limit?: number, column?: string, direction?: ProjectControllerGetAllTeamMembersOfProjectDirectionEnum, teamMemberStatus?: Array<string>, roleIds?: Array<number>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllProjectMemberResponseDto, any>>;
3978
+ /**
3979
+ *
3980
+ * @summary Get running status of instances.
3981
+ * @param {string} projectId
3982
+ * @param {*} [options] Override http request option.
3983
+ * @throws {RequiredError}
3984
+ * @memberof ProjectApi
3985
+ */
3986
+ projectControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3987
+ /**
3988
+ *
3989
+ * @summary Fetch last 5 notifications
3990
+ * @param {string} projectId
3991
+ * @param {*} [options] Override http request option.
3992
+ * @throws {RequiredError}
3993
+ * @memberof ProjectApi
3994
+ */
3995
+ projectControllerGetLastFiveNotifications(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3996
+ /**
3997
+ *
3998
+ * @summary Get machine id matching instances.
3999
+ * @param {string} projectId
4000
+ * @param {*} [options] Override http request option.
4001
+ * @throws {RequiredError}
4002
+ * @memberof ProjectApi
4003
+ */
4004
+ projectControllerGetMachineInstanceByImageId(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
4005
+ /**
4006
+ *
4007
+ * @summary Get all machineInstances with count
4008
+ * @param {string} projectId
4009
+ * @param {number} page
4010
+ * @param {number} limit
4011
+ * @param {*} [options] Override http request option.
4012
+ * @throws {RequiredError}
4013
+ * @memberof ProjectApi
4014
+ */
4015
+ projectControllerGetMachineInstanceByUserId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
4016
+ /**
4017
+ *
4018
+ * @summary Get project by id
4019
+ * @param {string} id
4020
+ * @param {*} [options] Override http request option.
4021
+ * @throws {RequiredError}
4022
+ * @memberof ProjectApi
4023
+ */
4024
+ projectControllerGetProjectById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectByIDResponseDTO, any>>;
4025
+ /**
4026
+ *
4027
+ * @summary Get project role by id
4028
+ * @param {string} id
4029
+ * @param {number} roleId
4030
+ * @param {*} [options] Override http request option.
4031
+ * @throws {RequiredError}
4032
+ * @memberof ProjectApi
4033
+ */
4034
+ projectControllerGetProjectRoleById(id: string, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectRoleByIdResponseDto, any>>;
4035
+ /**
4036
+ *
4037
+ * @summary Get user project role
4038
+ * @param {string} id
4039
+ * @param {*} [options] Override http request option.
4040
+ * @throws {RequiredError}
4041
+ * @memberof ProjectApi
4042
+ */
4043
+ projectControllerGetUserProjectRole(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserProjectRoleByRoleIdResponseDto, any>>;
4044
+ /**
4045
+ *
4046
+ * @summary Mark read
4047
+ * @param {string} projectId
4048
+ * @param {object} body
4049
+ * @param {*} [options] Override http request option.
4050
+ * @throws {RequiredError}
4051
+ * @memberof ProjectApi
4052
+ */
4053
+ projectControllerMarkNotificationsAsRead(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
4054
+ /**
4055
+ *
4056
+ * @summary Update project by id
4057
+ * @param {string} id
4058
+ * @param {UpdateProjectByIdRequest} updateProjectByIdRequest
4059
+ * @param {*} [options] Override http request option.
4060
+ * @throws {RequiredError}
4061
+ * @memberof ProjectApi
4062
+ */
4063
+ projectControllerUpdateProjectById(id: string, updateProjectByIdRequest: UpdateProjectByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectByIDResponseDTO, any>>;
4064
+ /**
4065
+ *
4066
+ * @summary Update project role by id
4067
+ * @param {string} id
4068
+ * @param {number} roleId
4069
+ * @param {UpdateRoleByIdDto} updateRoleByIdDto
4070
+ * @param {*} [options] Override http request option.
4071
+ * @throws {RequiredError}
4072
+ * @memberof ProjectApi
4073
+ */
4074
+ projectControllerUpdateProjectRoleById(id: string, roleId: number, updateRoleByIdDto: UpdateRoleByIdDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateProjectRoleResponseDto, any>>;
4075
+ /**
4076
+ *
4077
+ * @summary Update Machine Instance Running Status
4078
+ * @param {object} body
4079
+ * @param {*} [options] Override http request option.
4080
+ * @throws {RequiredError}
4081
+ * @memberof ProjectApi
4082
+ */
4083
+ projectControllerUpdateRunningStatus(body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
4084
+ /**
4085
+ *
4086
+ * @summary Update team member
4087
+ * @param {string} id
4088
+ * @param {string} teamMemberId
4089
+ * @param {UpdateTeamMemberRequestDTO} updateTeamMemberRequestDTO
4090
+ * @param {*} [options] Override http request option.
4091
+ * @throws {RequiredError}
4092
+ * @memberof ProjectApi
4093
+ */
4094
+ projectControllerUpdateTeamMemberRole(id: string, teamMemberId: string, updateTeamMemberRequestDTO: UpdateTeamMemberRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
4095
+ /**
4096
+ *
4097
+ * @summary Join project
4098
+ * @param {UpdateTeamMemberStatusRequestDTO} updateTeamMemberStatusRequestDTO
4099
+ * @param {*} [options] Override http request option.
4100
+ * @throws {RequiredError}
4101
+ * @memberof ProjectApi
4102
+ */
4103
+ projectControllerUpdateTeamMemberStatus(updateTeamMemberStatusRequestDTO: UpdateTeamMemberStatusRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddProjectMemberResponseDTO, any>>;
4104
+ }
4105
+ /**
4106
+ * @export
4107
+ */
4108
+ export declare const ProjectControllerGetAllProjectRolesDirectionEnum: {
4109
+ readonly Asc: "ASC";
4110
+ readonly Desc: "DESC";
4111
+ };
4112
+ export type ProjectControllerGetAllProjectRolesDirectionEnum = typeof ProjectControllerGetAllProjectRolesDirectionEnum[keyof typeof ProjectControllerGetAllProjectRolesDirectionEnum];
4113
+ /**
4114
+ * @export
4115
+ */
4116
+ export declare const ProjectControllerGetAllProjectsDirectionEnum: {
4117
+ readonly Asc: "ASC";
4118
+ readonly Desc: "DESC";
4119
+ };
4120
+ export type ProjectControllerGetAllProjectsDirectionEnum = typeof ProjectControllerGetAllProjectsDirectionEnum[keyof typeof ProjectControllerGetAllProjectsDirectionEnum];
4121
+ /**
4122
+ * @export
4123
+ */
4124
+ export declare const ProjectControllerGetAllTeamMembersOfProjectDirectionEnum: {
4125
+ readonly Asc: "ASC";
4126
+ readonly Desc: "DESC";
4127
+ };
4128
+ export type ProjectControllerGetAllTeamMembersOfProjectDirectionEnum = typeof ProjectControllerGetAllTeamMembersOfProjectDirectionEnum[keyof typeof ProjectControllerGetAllTeamMembersOfProjectDirectionEnum];
4129
+ /**
4130
+ * UserApi - axios parameter creator
4131
+ * @export
4132
+ */
4133
+ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) => {
4134
+ /**
4135
+ *
4136
+ * @summary Get users listing
4137
+ * @param {number} [page]
4138
+ * @param {number} [limit]
4139
+ * @param {string} [column]
4140
+ * @param {UserControllerFindDirectionEnum} [direction]
4141
+ * @param {UserControllerFindTypeEnum} [type]
4142
+ * @param {*} [options] Override http request option.
4143
+ * @throws {RequiredError}
4144
+ */
4145
+ userControllerFind: (page?: number, limit?: number, column?: string, direction?: UserControllerFindDirectionEnum, type?: UserControllerFindTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4146
+ /**
4147
+ *
4148
+ * @summary Get user by id
4149
+ * @param {number} id
4150
+ * @param {*} [options] Override http request option.
4151
+ * @throws {RequiredError}
4152
+ */
4153
+ userControllerGet: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4154
+ /**
4155
+ *
4156
+ * @summary Get current user details
4157
+ * @param {*} [options] Override http request option.
4158
+ * @throws {RequiredError}
4159
+ */
4160
+ userControllerGetMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4161
+ /**
4162
+ *
4163
+ * @summary Check if user is registered
4164
+ * @param {string} email
4165
+ * @param {*} [options] Override http request option.
4166
+ * @throws {RequiredError}
4167
+ */
4168
+ userControllerIsRegistered: (email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4169
+ /**
4170
+ *
4171
+ * @summary Update user data
4172
+ * @param {UpdateUserRequestDTO} updateUserRequestDTO
4173
+ * @param {*} [options] Override http request option.
4174
+ * @throws {RequiredError}
4175
+ */
4176
+ userControllerUpdate: (updateUserRequestDTO: UpdateUserRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4177
+ /**
4178
+ *
4179
+ * @summary Update user settings
4180
+ * @param {UpdateUserSettingsRequestDTO} updateUserSettingsRequestDTO
4181
+ * @param {*} [options] Override http request option.
4182
+ * @throws {RequiredError}
4183
+ */
4184
+ userSettingsControllerUpdate: (updateUserSettingsRequestDTO: UpdateUserSettingsRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4185
+ };
4186
+ /**
4187
+ * UserApi - functional programming interface
4188
+ * @export
4189
+ */
4190
+ export declare const UserApiFp: (configuration?: Configuration) => {
4191
+ /**
4192
+ *
4193
+ * @summary Get users listing
4194
+ * @param {number} [page]
4195
+ * @param {number} [limit]
4196
+ * @param {string} [column]
4197
+ * @param {UserControllerFindDirectionEnum} [direction]
4198
+ * @param {UserControllerFindTypeEnum} [type]
4199
+ * @param {*} [options] Override http request option.
4200
+ * @throws {RequiredError}
4201
+ */
4202
+ userControllerFind(page?: number, limit?: number, column?: string, direction?: UserControllerFindDirectionEnum, type?: UserControllerFindTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FindUsersResponseDTO>>;
4203
+ /**
4204
+ *
4205
+ * @summary Get user by id
4206
+ * @param {number} id
4207
+ * @param {*} [options] Override http request option.
4208
+ * @throws {RequiredError}
4209
+ */
4210
+ userControllerGet(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserByIdResponseDTO>>;
4211
+ /**
4212
+ *
4213
+ * @summary Get current user details
4214
+ * @param {*} [options] Override http request option.
4215
+ * @throws {RequiredError}
4216
+ */
4217
+ userControllerGetMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMeResponseDTO>>;
4218
+ /**
4219
+ *
4220
+ * @summary Check if user is registered
4221
+ * @param {string} email
4222
+ * @param {*} [options] Override http request option.
4223
+ * @throws {RequiredError}
4224
+ */
4225
+ userControllerIsRegistered(email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredUserResponseDTO>>;
4226
+ /**
4227
+ *
4228
+ * @summary Update user data
4229
+ * @param {UpdateUserRequestDTO} updateUserRequestDTO
4230
+ * @param {*} [options] Override http request option.
4231
+ * @throws {RequiredError}
4232
+ */
4233
+ userControllerUpdate(updateUserRequestDTO: UpdateUserRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserByIdResponseDTO>>;
4234
+ /**
4235
+ *
4236
+ * @summary Update user settings
4237
+ * @param {UpdateUserSettingsRequestDTO} updateUserSettingsRequestDTO
4238
+ * @param {*} [options] Override http request option.
4239
+ * @throws {RequiredError}
4240
+ */
4241
+ userSettingsControllerUpdate(updateUserSettingsRequestDTO: UpdateUserSettingsRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BooleanResponseDTO>>;
4242
+ };
4243
+ /**
4244
+ * UserApi - factory interface
4245
+ * @export
4246
+ */
4247
+ export declare const UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4248
+ /**
4249
+ *
4250
+ * @summary Get users listing
4251
+ * @param {number} [page]
4252
+ * @param {number} [limit]
4253
+ * @param {string} [column]
4254
+ * @param {UserControllerFindDirectionEnum} [direction]
4255
+ * @param {UserControllerFindTypeEnum} [type]
4256
+ * @param {*} [options] Override http request option.
4257
+ * @throws {RequiredError}
4258
+ */
4259
+ userControllerFind(page?: number, limit?: number, column?: string, direction?: UserControllerFindDirectionEnum, type?: UserControllerFindTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<FindUsersResponseDTO>;
4260
+ /**
4261
+ *
4262
+ * @summary Get user by id
4263
+ * @param {number} id
4264
+ * @param {*} [options] Override http request option.
4265
+ * @throws {RequiredError}
4266
+ */
4267
+ userControllerGet(id: number, options?: RawAxiosRequestConfig): AxiosPromise<GetUserByIdResponseDTO>;
4268
+ /**
4269
+ *
4270
+ * @summary Get current user details
4271
+ * @param {*} [options] Override http request option.
4272
+ * @throws {RequiredError}
4273
+ */
4274
+ userControllerGetMe(options?: RawAxiosRequestConfig): AxiosPromise<GetMeResponseDTO>;
4275
+ /**
4276
+ *
4277
+ * @summary Check if user is registered
4278
+ * @param {string} email
4279
+ * @param {*} [options] Override http request option.
4280
+ * @throws {RequiredError}
4281
+ */
4282
+ userControllerIsRegistered(email: string, options?: RawAxiosRequestConfig): AxiosPromise<RegisteredUserResponseDTO>;
4283
+ /**
4284
+ *
4285
+ * @summary Update user data
4286
+ * @param {UpdateUserRequestDTO} updateUserRequestDTO
4287
+ * @param {*} [options] Override http request option.
4288
+ * @throws {RequiredError}
4289
+ */
4290
+ userControllerUpdate(updateUserRequestDTO: UpdateUserRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<GetUserByIdResponseDTO>;
4291
+ /**
4292
+ *
4293
+ * @summary Update user settings
4294
+ * @param {UpdateUserSettingsRequestDTO} updateUserSettingsRequestDTO
4295
+ * @param {*} [options] Override http request option.
4296
+ * @throws {RequiredError}
4297
+ */
4298
+ userSettingsControllerUpdate(updateUserSettingsRequestDTO: UpdateUserSettingsRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<BooleanResponseDTO>;
4299
+ };
4300
+ /**
4301
+ * UserApi - object-oriented interface
4302
+ * @export
4303
+ * @class UserApi
4304
+ * @extends {BaseAPI}
4305
+ */
4306
+ export declare class UserApi extends BaseAPI {
4307
+ /**
4308
+ *
4309
+ * @summary Get users listing
4310
+ * @param {number} [page]
4311
+ * @param {number} [limit]
4312
+ * @param {string} [column]
4313
+ * @param {UserControllerFindDirectionEnum} [direction]
4314
+ * @param {UserControllerFindTypeEnum} [type]
4315
+ * @param {*} [options] Override http request option.
4316
+ * @throws {RequiredError}
4317
+ * @memberof UserApi
4318
+ */
4319
+ userControllerFind(page?: number, limit?: number, column?: string, direction?: UserControllerFindDirectionEnum, type?: UserControllerFindTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FindUsersResponseDTO, any>>;
4320
+ /**
4321
+ *
4322
+ * @summary Get user by id
4323
+ * @param {number} id
4324
+ * @param {*} [options] Override http request option.
4325
+ * @throws {RequiredError}
4326
+ * @memberof UserApi
4327
+ */
4328
+ userControllerGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserByIdResponseDTO, any>>;
4329
+ /**
4330
+ *
4331
+ * @summary Get current user details
4332
+ * @param {*} [options] Override http request option.
4333
+ * @throws {RequiredError}
4334
+ * @memberof UserApi
4335
+ */
4336
+ userControllerGetMe(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMeResponseDTO, any>>;
4337
+ /**
4338
+ *
4339
+ * @summary Check if user is registered
4340
+ * @param {string} email
4341
+ * @param {*} [options] Override http request option.
4342
+ * @throws {RequiredError}
4343
+ * @memberof UserApi
4344
+ */
4345
+ userControllerIsRegistered(email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredUserResponseDTO, any>>;
4346
+ /**
4347
+ *
4348
+ * @summary Update user data
4349
+ * @param {UpdateUserRequestDTO} updateUserRequestDTO
4350
+ * @param {*} [options] Override http request option.
4351
+ * @throws {RequiredError}
4352
+ * @memberof UserApi
4353
+ */
4354
+ userControllerUpdate(updateUserRequestDTO: UpdateUserRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserByIdResponseDTO, any>>;
4355
+ /**
4356
+ *
4357
+ * @summary Update user settings
4358
+ * @param {UpdateUserSettingsRequestDTO} updateUserSettingsRequestDTO
4359
+ * @param {*} [options] Override http request option.
4360
+ * @throws {RequiredError}
4361
+ * @memberof UserApi
4362
+ */
4363
+ userSettingsControllerUpdate(updateUserSettingsRequestDTO: UpdateUserSettingsRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BooleanResponseDTO, any>>;
4364
+ }
4365
+ /**
4366
+ * @export
4367
+ */
4368
+ export declare const UserControllerFindDirectionEnum: {
4369
+ readonly Asc: "ASC";
4370
+ readonly Desc: "DESC";
4371
+ };
4372
+ export type UserControllerFindDirectionEnum = typeof UserControllerFindDirectionEnum[keyof typeof UserControllerFindDirectionEnum];
4373
+ /**
4374
+ * @export
4375
+ */
4376
+ export declare const UserControllerFindTypeEnum: {
4377
+ readonly User: "USER";
4378
+ readonly Admin: "ADMIN";
4379
+ };
4380
+ export type UserControllerFindTypeEnum = typeof UserControllerFindTypeEnum[keyof typeof UserControllerFindTypeEnum];