infinity-forge 12.8.8 → 12.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/client/swagger_client.d.ts +2668 -446
  2. package/dist/test/index.js +56 -1
  3. package/dist/test/index.js.map +1 -1
  4. package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/select-source-filter/index.js +0 -1
  5. package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/select-source-filter/index.js.map +1 -1
  6. package/dist/ui/components/form/select/hooks/use-select-components.js +3 -2
  7. package/dist/ui/components/form/select/hooks/use-select-components.js.map +1 -1
  8. package/dist/ui/components/form/select/index.js +5 -0
  9. package/dist/ui/components/form/select/index.js.map +1 -1
  10. package/dist/ui/components/index.d.ts +1 -0
  11. package/dist/ui/components/index.js +1 -0
  12. package/dist/ui/components/index.js.map +1 -1
  13. package/dist/ui/components/table-stories/component.d.ts +7 -0
  14. package/dist/ui/components/table-stories/component.js +146 -0
  15. package/dist/ui/components/table-stories/component.js.map +1 -0
  16. package/dist/ui/components/table-stories/index.d.ts +1 -0
  17. package/dist/ui/components/table-stories/index.js +18 -0
  18. package/dist/ui/components/table-stories/index.js.map +1 -0
  19. package/dist/ui/components/table-stories/styles.d.ts +1 -0
  20. package/dist/ui/components/table-stories/styles.js +14 -0
  21. package/dist/ui/components/table-stories/styles.js.map +1 -0
  22. package/dist/ui/components/table-stories/table-configurations/actions.d.ts +2 -0
  23. package/dist/ui/components/table-stories/table-configurations/actions.js +159 -0
  24. package/dist/ui/components/table-stories/table-configurations/actions.js.map +1 -0
  25. package/dist/ui/components/table-stories/table-configurations/columns.d.ts +10 -0
  26. package/dist/ui/components/table-stories/table-configurations/columns.js +37 -0
  27. package/dist/ui/components/table-stories/table-configurations/columns.js.map +1 -0
  28. package/dist/ui/components/table-stories/table-configurations/index.d.ts +2 -0
  29. package/dist/ui/components/table-stories/table-configurations/index.js +19 -0
  30. package/dist/ui/components/table-stories/table-configurations/index.js.map +1 -0
  31. package/package.json +1 -1
@@ -1,4 +1,22 @@
1
1
  export type Swagger = {
2
+ "/billing/access/grant": {
3
+ post: {
4
+ params: {};
5
+ requestBody: GrantAccessRequest;
6
+ result: null;
7
+ };
8
+ };
9
+ "/billing/access/check": {
10
+ get: {
11
+ params: {
12
+ usuarioId: number | undefined;
13
+ tableAction: string | undefined;
14
+ tableId: number | undefined;
15
+ };
16
+ requestBody: null;
17
+ result: null;
18
+ };
19
+ };
2
20
  "/Account/user/create/short": {
3
21
  post: {
4
22
  params: {};
@@ -46,10 +64,10 @@ export type Swagger = {
46
64
  CreatedTo: string | undefined;
47
65
  OrderBy: string | undefined;
48
66
  Include: string | undefined;
49
- page: number;
50
- pageSize: number;
51
- Filters: object | undefined;
52
- SourceFilters: any | undefined;
67
+ page: number | undefined;
68
+ pageSize: number | undefined;
69
+ Filters: Record<string, string> | undefined;
70
+ SourceFilters: any[] | undefined;
53
71
  Target: string | undefined;
54
72
  OnlyActives: boolean | undefined;
55
73
  };
@@ -96,7 +114,14 @@ export type Swagger = {
96
114
  result: null;
97
115
  };
98
116
  };
99
- "/auth/login": {
117
+ "/Authentication": {
118
+ post: {
119
+ params: {};
120
+ requestBody: UsuarioLoginDto;
121
+ result: LoginResult;
122
+ };
123
+ };
124
+ "/Users/me": {
100
125
  get: {
101
126
  params: {};
102
127
  requestBody: null;
@@ -112,13 +137,6 @@ export type Swagger = {
112
137
  result: null;
113
138
  };
114
139
  };
115
- "/auth/google": {
116
- get: {
117
- params: {};
118
- requestBody: null;
119
- result: null;
120
- };
121
- };
122
140
  "/auth/logout": {
123
141
  get: {
124
142
  params: {};
@@ -126,31 +144,13 @@ export type Swagger = {
126
144
  result: null;
127
145
  };
128
146
  };
129
- "/auth/protegido": {
130
- get: {
131
- params: {};
132
- requestBody: null;
133
- result: null;
134
- };
135
- };
136
- "/Authentication": {
147
+ "/billing/webhooks/asaas": {
137
148
  post: {
138
- params: {};
139
- requestBody: UsuarioLoginDto;
140
- result: LoginResult;
141
- };
142
- };
143
- "/Users/me": {
144
- get: {
145
- params: {};
146
- requestBody: null;
147
- result: null;
148
- };
149
- };
150
- "/Users/Invoices": {
151
- get: {
152
- params: {};
153
- requestBody: null;
149
+ params: {
150
+ clientName: string | undefined;
151
+ providerType: string | undefined;
152
+ };
153
+ requestBody: AsaasWebhookEvent;
154
154
  result: null;
155
155
  };
156
156
  };
@@ -160,7 +160,7 @@ export type Swagger = {
160
160
  category: string | undefined;
161
161
  search: string | undefined;
162
162
  tags: string | undefined;
163
- page: number;
163
+ page: number | undefined;
164
164
  };
165
165
  requestBody: null;
166
166
  result: BlogPage;
@@ -178,7 +178,7 @@ export type Swagger = {
178
178
  "/Blog/destaques": {
179
179
  get: {
180
180
  params: {
181
- page: number;
181
+ page: number | undefined;
182
182
  };
183
183
  requestBody: null;
184
184
  result: null;
@@ -194,18 +194,44 @@ export type Swagger = {
194
194
  "/admin/contents/blog/paginated": {
195
195
  get: {
196
196
  params: {
197
- Url: any | undefined;
197
+ Url: string[] | undefined;
198
198
  Destaque: boolean | undefined;
199
199
  OrderBy: string | undefined;
200
+ IsOnHold: boolean | undefined;
201
+ DirectoyId: number | undefined;
200
202
  EntityKey: string | undefined;
201
203
  Search: string | undefined;
202
204
  CreatedFrom: string | undefined;
203
205
  CreatedTo: string | undefined;
204
206
  Include: string | undefined;
205
- page: number;
206
- pageSize: number;
207
- Filters: object | undefined;
208
- SourceFilters: any | undefined;
207
+ page: number | undefined;
208
+ pageSize: number | undefined;
209
+ Filters: Record<string, string> | undefined;
210
+ SourceFilters: any[] | undefined;
211
+ Target: string | undefined;
212
+ OnlyActives: boolean | undefined;
213
+ };
214
+ requestBody: null;
215
+ result: BlogResponsePaginatedResponse;
216
+ };
217
+ };
218
+ "/admin/contents/blog/app/paginated": {
219
+ get: {
220
+ params: {
221
+ Url: string[] | undefined;
222
+ Destaque: boolean | undefined;
223
+ OrderBy: string | undefined;
224
+ IsOnHold: boolean | undefined;
225
+ DirectoyId: number | undefined;
226
+ EntityKey: string | undefined;
227
+ Search: string | undefined;
228
+ CreatedFrom: string | undefined;
229
+ CreatedTo: string | undefined;
230
+ Include: string | undefined;
231
+ page: number | undefined;
232
+ pageSize: number | undefined;
233
+ Filters: Record<string, string> | undefined;
234
+ SourceFilters: any[] | undefined;
209
235
  Target: string | undefined;
210
236
  OnlyActives: boolean | undefined;
211
237
  };
@@ -255,7 +281,7 @@ export type Swagger = {
255
281
  "/admin/features/jobopportunities/Candidato/paginated": {
256
282
  get: {
257
283
  params: {
258
- Url: any | undefined;
284
+ Url: string[] | undefined;
259
285
  Destaque: boolean | undefined;
260
286
  EntityKey: string | undefined;
261
287
  Search: string | undefined;
@@ -263,10 +289,10 @@ export type Swagger = {
263
289
  CreatedTo: string | undefined;
264
290
  OrderBy: string | undefined;
265
291
  Include: string | undefined;
266
- page: number;
267
- pageSize: number;
268
- Filters: object | undefined;
269
- SourceFilters: any | undefined;
292
+ page: number | undefined;
293
+ pageSize: number | undefined;
294
+ Filters: Record<string, string> | undefined;
295
+ SourceFilters: any[] | undefined;
270
296
  Target: string | undefined;
271
297
  OnlyActives: boolean | undefined;
272
298
  };
@@ -316,16 +342,17 @@ export type Swagger = {
316
342
  "/admin/catalogs/Cargo/paginated": {
317
343
  get: {
318
344
  params: {
345
+ setorId: number | undefined;
319
346
  EntityKey: string | undefined;
320
347
  Search: string | undefined;
321
348
  CreatedFrom: string | undefined;
322
349
  CreatedTo: string | undefined;
323
350
  OrderBy: string | undefined;
324
351
  Include: string | undefined;
325
- page: number;
326
- pageSize: number;
327
- Filters: object | undefined;
328
- SourceFilters: any | undefined;
352
+ page: number | undefined;
353
+ pageSize: number | undefined;
354
+ Filters: Record<string, string> | undefined;
355
+ SourceFilters: any[] | undefined;
329
356
  Target: string | undefined;
330
357
  OnlyActives: boolean | undefined;
331
358
  };
@@ -336,16 +363,17 @@ export type Swagger = {
336
363
  "/admin/catalogs/Cargo/paginated-by-user": {
337
364
  get: {
338
365
  params: {
366
+ setorId: number | undefined;
339
367
  EntityKey: string | undefined;
340
368
  Search: string | undefined;
341
369
  CreatedFrom: string | undefined;
342
370
  CreatedTo: string | undefined;
343
371
  OrderBy: string | undefined;
344
372
  Include: string | undefined;
345
- page: number;
346
- pageSize: number;
347
- Filters: object | undefined;
348
- SourceFilters: any | undefined;
373
+ page: number | undefined;
374
+ pageSize: number | undefined;
375
+ Filters: Record<string, string> | undefined;
376
+ SourceFilters: any[] | undefined;
349
377
  Target: string | undefined;
350
378
  OnlyActives: boolean | undefined;
351
379
  };
@@ -392,10 +420,74 @@ export type Swagger = {
392
420
  result: null;
393
421
  };
394
422
  };
423
+ "/billing/cart/create": {
424
+ post: {
425
+ params: {};
426
+ requestBody: CartRequest;
427
+ result: CartResponseSharedApiResponse;
428
+ };
429
+ };
430
+ "/billing/cart/addItem": {
431
+ post: {
432
+ params: {};
433
+ requestBody: CartItemRequest;
434
+ result: CartItemResponseSharedApiResponse;
435
+ };
436
+ };
437
+ "/billing/cart/plus": {
438
+ put: {
439
+ params: {};
440
+ requestBody: QtyChangeResult;
441
+ result: QtyChangeResultSharedApiResponse;
442
+ };
443
+ };
444
+ "/billing/cart/minus": {
445
+ put: {
446
+ params: {};
447
+ requestBody: QtyChangeResult;
448
+ result: QtyChangeResultSharedApiResponse;
449
+ };
450
+ };
451
+ "/billing/cart/remove": {
452
+ put: {
453
+ params: {
454
+ guid: string | undefined;
455
+ };
456
+ requestBody: null;
457
+ result: ObjectSharedApiResponse;
458
+ };
459
+ };
460
+ "/billing/cart/clear": {
461
+ delete: {
462
+ params: {
463
+ guid: string | undefined;
464
+ };
465
+ requestBody: null;
466
+ result: ObjectSharedApiResponse;
467
+ };
468
+ };
469
+ "/billing/cart/{guid}": {
470
+ get: {
471
+ params: {
472
+ guid: string;
473
+ };
474
+ requestBody: null;
475
+ result: CartResponseSharedApiResponse;
476
+ };
477
+ };
478
+ "/billing/cart/item/{guid}": {
479
+ get: {
480
+ params: {
481
+ guid: string;
482
+ };
483
+ requestBody: null;
484
+ result: CartItemResponseSharedApiResponse;
485
+ };
486
+ };
395
487
  "/admin/properties/Categoria/blog/listCategories": {
396
488
  get: {
397
489
  params: {
398
- BlogSize: number;
490
+ BlogSize: number | undefined;
399
491
  Url: string | undefined;
400
492
  EntityKey: string | undefined;
401
493
  Search: string | undefined;
@@ -403,10 +495,10 @@ export type Swagger = {
403
495
  CreatedTo: string | undefined;
404
496
  OrderBy: string | undefined;
405
497
  Include: string | undefined;
406
- page: number;
407
- pageSize: number;
408
- Filters: object | undefined;
409
- SourceFilters: any | undefined;
498
+ page: number | undefined;
499
+ pageSize: number | undefined;
500
+ Filters: Record<string, string> | undefined;
501
+ SourceFilters: any[] | undefined;
410
502
  Target: string | undefined;
411
503
  OnlyActives: boolean | undefined;
412
504
  };
@@ -417,7 +509,7 @@ export type Swagger = {
417
509
  "/admin/properties/Categoria/paginated": {
418
510
  get: {
419
511
  params: {
420
- BlogSize: number;
512
+ BlogSize: number | undefined;
421
513
  Url: string | undefined;
422
514
  EntityKey: string | undefined;
423
515
  Search: string | undefined;
@@ -425,10 +517,10 @@ export type Swagger = {
425
517
  CreatedTo: string | undefined;
426
518
  OrderBy: string | undefined;
427
519
  Include: string | undefined;
428
- page: number;
429
- pageSize: number;
430
- Filters: object | undefined;
431
- SourceFilters: any | undefined;
520
+ page: number | undefined;
521
+ pageSize: number | undefined;
522
+ Filters: Record<string, string> | undefined;
523
+ SourceFilters: any[] | undefined;
432
524
  Target: string | undefined;
433
525
  OnlyActives: boolean | undefined;
434
526
  };
@@ -501,46 +593,336 @@ export type Swagger = {
501
593
  result: ChatIAMessageResponse;
502
594
  };
503
595
  };
504
- "/api/Chat/{chatId}/messages": {
596
+ "/api/Chat/{chatId}/messages": {
597
+ get: {
598
+ params: {
599
+ chatId: number;
600
+ };
601
+ requestBody: null;
602
+ result: ChatIAListMessagesResponse;
603
+ };
604
+ };
605
+ "/api/Chat/{chatId}/delete": {
606
+ get: {
607
+ params: {
608
+ chatId: number;
609
+ };
610
+ requestBody: null;
611
+ result: null;
612
+ };
613
+ };
614
+ "/api/Chat/list/messages": {
615
+ get: {
616
+ params: {};
617
+ requestBody: null;
618
+ result: ChatListResponse;
619
+ };
620
+ };
621
+ "/admin/collaborators": {
622
+ get: {
623
+ params: {
624
+ Role: string[] | undefined;
625
+ Name: string | undefined;
626
+ Sector: string | undefined;
627
+ Position: string | undefined;
628
+ ManagerId: number | undefined;
629
+ ManagerSecondaryId: number | undefined;
630
+ DirectorId: number | undefined;
631
+ PdiId: number | undefined;
632
+ HasAnsweredPdi: boolean | undefined;
633
+ EntityKey: string | undefined;
634
+ Search: string | undefined;
635
+ CreatedFrom: string | undefined;
636
+ CreatedTo: string | undefined;
637
+ OrderBy: string | undefined;
638
+ Include: string | undefined;
639
+ page: number | undefined;
640
+ pageSize: number | undefined;
641
+ Filters: Record<string, string> | undefined;
642
+ SourceFilters: any[] | undefined;
643
+ Target: string | undefined;
644
+ OnlyActives: boolean | undefined;
645
+ };
646
+ requestBody: null;
647
+ result: CollaboratorDtoPaginatedResponse;
648
+ };
649
+ post: {
650
+ params: {};
651
+ requestBody: CollaboratorCreateOrUpdateRequest;
652
+ result: null;
653
+ };
654
+ };
655
+ "/admin/collaborators/{id}": {
656
+ get: {
657
+ params: {
658
+ id: number;
659
+ };
660
+ requestBody: null;
661
+ result: CollaboratorDtoApiResponse;
662
+ };
663
+ put: {
664
+ params: {
665
+ id: number;
666
+ };
667
+ requestBody: CollaboratorCreateOrUpdateRequest;
668
+ result: CollaboratorDtoApiResponse;
669
+ };
670
+ delete: {
671
+ params: {
672
+ id: number;
673
+ };
674
+ requestBody: null;
675
+ result: null;
676
+ };
677
+ };
678
+ "/admin/collaborators/export-collaborators": {
679
+ get: {
680
+ params: {
681
+ Role: string[] | undefined;
682
+ Name: string | undefined;
683
+ Sector: string | undefined;
684
+ Position: string | undefined;
685
+ ManagerId: number | undefined;
686
+ ManagerSecondaryId: number | undefined;
687
+ DirectorId: number | undefined;
688
+ PdiId: number | undefined;
689
+ HasAnsweredPdi: boolean | undefined;
690
+ EntityKey: string | undefined;
691
+ Search: string | undefined;
692
+ CreatedFrom: string | undefined;
693
+ CreatedTo: string | undefined;
694
+ OrderBy: string | undefined;
695
+ Include: string | undefined;
696
+ page: number | undefined;
697
+ pageSize: number | undefined;
698
+ Filters: Record<string, string> | undefined;
699
+ SourceFilters: any[] | undefined;
700
+ Target: string | undefined;
701
+ OnlyActives: boolean | undefined;
702
+ };
703
+ requestBody: null;
704
+ result: null;
705
+ };
706
+ };
707
+ "/admin/collaborators/export-manager": {
708
+ get: {
709
+ params: {
710
+ Role: string[] | undefined;
711
+ Name: string | undefined;
712
+ Sector: string | undefined;
713
+ Position: string | undefined;
714
+ ManagerId: number | undefined;
715
+ ManagerSecondaryId: number | undefined;
716
+ DirectorId: number | undefined;
717
+ PdiId: number | undefined;
718
+ HasAnsweredPdi: boolean | undefined;
719
+ EntityKey: string | undefined;
720
+ Search: string | undefined;
721
+ CreatedFrom: string | undefined;
722
+ CreatedTo: string | undefined;
723
+ OrderBy: string | undefined;
724
+ Include: string | undefined;
725
+ page: number | undefined;
726
+ pageSize: number | undefined;
727
+ Filters: Record<string, string> | undefined;
728
+ SourceFilters: any[] | undefined;
729
+ Target: string | undefined;
730
+ OnlyActives: boolean | undefined;
731
+ };
732
+ requestBody: null;
733
+ result: null;
734
+ };
735
+ };
736
+ "/admin/collaborators/my-evaluations": {
737
+ get: {
738
+ params: {
739
+ page: number | undefined;
740
+ pageSize: number | undefined;
741
+ HasResponded: boolean | undefined;
742
+ };
743
+ requestBody: null;
744
+ result: MyEvaluationResponseDtoPaginatedResponse;
745
+ };
746
+ };
747
+ "/Configs": {
748
+ get: {
749
+ params: {};
750
+ requestBody: null;
751
+ result: null;
752
+ };
753
+ };
754
+ "/admin/configuration-settings/paginated": {
755
+ get: {
756
+ params: {
757
+ Scope: string | undefined;
758
+ Key: string | undefined;
759
+ SeedVersion: string | undefined;
760
+ EntityKey: string | undefined;
761
+ Search: string | undefined;
762
+ CreatedFrom: string | undefined;
763
+ CreatedTo: string | undefined;
764
+ OrderBy: string | undefined;
765
+ Include: string | undefined;
766
+ page: number | undefined;
767
+ pageSize: number | undefined;
768
+ Filters: Record<string, string> | undefined;
769
+ SourceFilters: any[] | undefined;
770
+ Target: string | undefined;
771
+ OnlyActives: boolean | undefined;
772
+ };
773
+ requestBody: null;
774
+ result: ConfigurationSettingResponsePaginatedResponse;
775
+ };
776
+ };
777
+ "/admin/configuration-settings/{id}": {
778
+ get: {
779
+ params: {
780
+ id: number;
781
+ };
782
+ requestBody: null;
783
+ result: ConfigurationSettingResponseSharedApiResponse;
784
+ };
785
+ put: {
786
+ params: {
787
+ id: number;
788
+ };
789
+ requestBody: ConfigurationSettingRequest;
790
+ result: ConfigurationSettingResponseSharedApiResponse;
791
+ };
792
+ delete: {
793
+ params: {
794
+ id: number;
795
+ };
796
+ requestBody: null;
797
+ result: null;
798
+ };
799
+ };
800
+ "/admin/configuration-settings/key/{key}": {
801
+ get: {
802
+ params: {
803
+ key: string;
804
+ };
805
+ requestBody: null;
806
+ result: ConfigurationSettingResponseSharedApiResponse;
807
+ };
808
+ };
809
+ "/admin/configuration-settings": {
810
+ post: {
811
+ params: {};
812
+ requestBody: ConfigurationSettingRequest;
813
+ result: null;
814
+ };
815
+ };
816
+ "/admin/configuration-tokens/paginated": {
817
+ get: {
818
+ params: {
819
+ Key: string | undefined;
820
+ Provider: string | undefined;
821
+ IsSeed: boolean | undefined;
822
+ IsVisible: boolean | undefined;
823
+ EntityKey: string | undefined;
824
+ Search: string | undefined;
825
+ CreatedFrom: string | undefined;
826
+ CreatedTo: string | undefined;
827
+ OrderBy: string | undefined;
828
+ Include: string | undefined;
829
+ page: number | undefined;
830
+ pageSize: number | undefined;
831
+ Filters: Record<string, string> | undefined;
832
+ SourceFilters: any[] | undefined;
833
+ Target: string | undefined;
834
+ OnlyActives: boolean | undefined;
835
+ };
836
+ requestBody: null;
837
+ result: ConfigurationTokenResponsePaginatedResponse;
838
+ };
839
+ };
840
+ "/admin/configuration-tokens/{id}": {
841
+ get: {
842
+ params: {
843
+ id: number;
844
+ };
845
+ requestBody: null;
846
+ result: ConfigurationTokenResponseSharedApiResponse;
847
+ };
848
+ put: {
849
+ params: {
850
+ id: number;
851
+ };
852
+ requestBody: ConfigurationTokenRequest;
853
+ result: ConfigurationTokenResponseSharedApiResponse;
854
+ };
855
+ delete: {
856
+ params: {
857
+ id: number;
858
+ };
859
+ requestBody: null;
860
+ result: null;
861
+ };
862
+ };
863
+ "/admin/configuration-tokens/key/{key}": {
864
+ get: {
865
+ params: {
866
+ key: string;
867
+ };
868
+ requestBody: null;
869
+ result: ConfigurationTokenResponseSharedApiResponse;
870
+ };
871
+ };
872
+ "/admin/configuration-tokens": {
873
+ post: {
874
+ params: {};
875
+ requestBody: ConfigurationTokenRequest;
876
+ result: null;
877
+ };
878
+ };
879
+ "/admin/constants/sectors": {
505
880
  get: {
506
881
  params: {
507
- chatId: number;
882
+ position: string | undefined;
508
883
  };
509
884
  requestBody: null;
510
- result: ChatIAListMessagesResponse;
885
+ result: null;
511
886
  };
512
887
  };
513
- "/api/Chat/{chatId}/delete": {
888
+ "/admin/constants/positions": {
514
889
  get: {
515
890
  params: {
516
- chatId: number;
891
+ sector: string | undefined;
517
892
  };
518
893
  requestBody: null;
519
894
  result: null;
520
895
  };
521
896
  };
522
- "/api/Chat/list/messages": {
897
+ "/constants/educationconstants/lesson-status": {
523
898
  get: {
524
899
  params: {};
525
900
  requestBody: null;
526
- result: ChatListResponse;
901
+ result: null;
527
902
  };
528
903
  };
529
- "/Configs": {
904
+ "/constants/educationconstants/lesson-types": {
530
905
  get: {
531
906
  params: {};
532
907
  requestBody: null;
533
908
  result: null;
534
909
  };
535
910
  };
536
- "/admin/constants/sectors": {
911
+ "/constants/educationconstants/video-sources": {
537
912
  get: {
538
913
  params: {};
539
914
  requestBody: null;
540
915
  result: null;
541
916
  };
542
917
  };
543
- "/admin/constants/positions": {
918
+ "/constants/educationconstants/lessons-level": {
919
+ get: {
920
+ params: {};
921
+ requestBody: null;
922
+ result: null;
923
+ };
924
+ };
925
+ "/constants/educationconstants/module-types": {
544
926
  get: {
545
927
  params: {};
546
928
  requestBody: null;
@@ -556,10 +938,10 @@ export type Swagger = {
556
938
  CreatedTo: string | undefined;
557
939
  OrderBy: string | undefined;
558
940
  Include: string | undefined;
559
- page: number;
560
- pageSize: number;
561
- Filters: object | undefined;
562
- SourceFilters: any | undefined;
941
+ page: number | undefined;
942
+ pageSize: number | undefined;
943
+ Filters: Record<string, string> | undefined;
944
+ SourceFilters: any[] | undefined;
563
945
  Target: string | undefined;
564
946
  OnlyActives: boolean | undefined;
565
947
  };
@@ -615,10 +997,10 @@ export type Swagger = {
615
997
  CreatedTo: string | undefined;
616
998
  OrderBy: string | undefined;
617
999
  Include: string | undefined;
618
- page: number;
619
- pageSize: number;
620
- Filters: object | undefined;
621
- SourceFilters: any | undefined;
1000
+ page: number | undefined;
1001
+ pageSize: number | undefined;
1002
+ Filters: Record<string, string> | undefined;
1003
+ SourceFilters: any[] | undefined;
622
1004
  Target: string | undefined;
623
1005
  OnlyActives: boolean | undefined;
624
1006
  };
@@ -665,10 +1047,10 @@ export type Swagger = {
665
1047
  CreatedTo: string | undefined;
666
1048
  OrderBy: string | undefined;
667
1049
  Include: string | undefined;
668
- page: number;
669
- pageSize: number;
670
- Filters: object | undefined;
671
- SourceFilters: any | undefined;
1050
+ page: number | undefined;
1051
+ pageSize: number | undefined;
1052
+ Filters: Record<string, string> | undefined;
1053
+ SourceFilters: any[] | undefined;
672
1054
  Target: string | undefined;
673
1055
  OnlyActives: boolean | undefined;
674
1056
  };
@@ -724,10 +1106,10 @@ export type Swagger = {
724
1106
  CreatedTo: string | undefined;
725
1107
  OrderBy: string | undefined;
726
1108
  Include: string | undefined;
727
- page: number;
728
- pageSize: number;
729
- Filters: object | undefined;
730
- SourceFilters: any | undefined;
1109
+ page: number | undefined;
1110
+ pageSize: number | undefined;
1111
+ Filters: Record<string, string> | undefined;
1112
+ SourceFilters: any[] | undefined;
731
1113
  Target: string | undefined;
732
1114
  OnlyActives: boolean | undefined;
733
1115
  };
@@ -795,10 +1177,10 @@ export type Swagger = {
795
1177
  CreatedTo: string | undefined;
796
1178
  OrderBy: string | undefined;
797
1179
  Include: string | undefined;
798
- page: number;
799
- pageSize: number;
800
- Filters: object | undefined;
801
- SourceFilters: any | undefined;
1180
+ page: number | undefined;
1181
+ pageSize: number | undefined;
1182
+ Filters: Record<string, string> | undefined;
1183
+ SourceFilters: any[] | undefined;
802
1184
  Target: string | undefined;
803
1185
  OnlyActives: boolean | undefined;
804
1186
  };
@@ -886,7 +1268,7 @@ export type Swagger = {
886
1268
  get: {
887
1269
  params: {
888
1270
  url: string;
889
- entityKey: any | undefined;
1271
+ entityKey: string[] | undefined;
890
1272
  };
891
1273
  requestBody: null;
892
1274
  result: DirectoryResponseSharedApiResponse;
@@ -968,10 +1350,10 @@ export type Swagger = {
968
1350
  CreatedTo: string | undefined;
969
1351
  OrderBy: string | undefined;
970
1352
  Include: string | undefined;
971
- page: number;
972
- pageSize: number;
973
- Filters: object | undefined;
974
- SourceFilters: any | undefined;
1353
+ page: number | undefined;
1354
+ pageSize: number | undefined;
1355
+ Filters: Record<string, string> | undefined;
1356
+ SourceFilters: any[] | undefined;
975
1357
  Target: string | undefined;
976
1358
  };
977
1359
  requestBody: null;
@@ -1058,18 +1440,18 @@ export type Swagger = {
1058
1440
  EntityKey: string | undefined;
1059
1441
  Url: string | undefined;
1060
1442
  SourceTable: string | undefined;
1061
- SourceId: number;
1443
+ SourceId: number | undefined;
1062
1444
  TargetTable: string | undefined;
1063
- TargetId: number;
1445
+ TargetId: number | undefined;
1064
1446
  Search: string | undefined;
1065
1447
  CreatedFrom: string | undefined;
1066
1448
  CreatedTo: string | undefined;
1067
1449
  OrderBy: string | undefined;
1068
1450
  Include: string | undefined;
1069
- page: number;
1070
- pageSize: number;
1071
- Filters: object | undefined;
1072
- SourceFilters: any | undefined;
1451
+ page: number | undefined;
1452
+ pageSize: number | undefined;
1453
+ Filters: Record<string, string> | undefined;
1454
+ SourceFilters: any[] | undefined;
1073
1455
  Target: string | undefined;
1074
1456
  OnlyActives: boolean | undefined;
1075
1457
  };
@@ -1077,6 +1459,13 @@ export type Swagger = {
1077
1459
  result: EntityRelationResponsePaginatedResponse;
1078
1460
  };
1079
1461
  };
1462
+ "/admin/dynamic/entityrelation/GetRelations": {
1463
+ post: {
1464
+ params: {};
1465
+ requestBody: RelatedParams;
1466
+ result: EntityRelationResponsePaginatedResponse;
1467
+ };
1468
+ };
1080
1469
  "/admin/dynamic/entityrelation/url/{url}": {
1081
1470
  get: {
1082
1471
  params: {
@@ -1116,22 +1505,6 @@ export type Swagger = {
1116
1505
  result: null;
1117
1506
  };
1118
1507
  };
1119
- "/admin/dynamic/entityrelation/create/publisher": {
1120
- post: {
1121
- params: {};
1122
- requestBody: EntityRelationRequest;
1123
- result: null;
1124
- };
1125
- };
1126
- "/admin/dynamic/entityrelation/update/publisher/{id}": {
1127
- put: {
1128
- params: {
1129
- id: number;
1130
- };
1131
- requestBody: EntityRelationRequest;
1132
- result: EntityRelationResponseSharedApiResponse;
1133
- };
1134
- };
1135
1508
  "/admin/dynamic/entityrelation/delete/publisher/{id}": {
1136
1509
  delete: {
1137
1510
  params: {
@@ -1151,11 +1524,11 @@ export type Swagger = {
1151
1524
  "/admin/dynamic/entitytree/available-services": {
1152
1525
  get: {
1153
1526
  params: {
1154
- targetId: number;
1527
+ targetId: number | undefined;
1155
1528
  targetTable: string | undefined;
1156
1529
  entityKeyA: string | undefined;
1157
1530
  entityKeyB: string | undefined;
1158
- professionIds: any | undefined;
1531
+ professionIds: number[] | undefined;
1159
1532
  };
1160
1533
  requestBody: null;
1161
1534
  result: CategoriaResponseIEnumerableApiResponse;
@@ -1177,10 +1550,10 @@ export type Swagger = {
1177
1550
  CreatedTo: string | undefined;
1178
1551
  OrderBy: string | undefined;
1179
1552
  Include: string | undefined;
1180
- page: number;
1181
- pageSize: number;
1182
- Filters: object | undefined;
1183
- SourceFilters: any | undefined;
1553
+ page: number | undefined;
1554
+ pageSize: number | undefined;
1555
+ Filters: Record<string, string> | undefined;
1556
+ SourceFilters: any[] | undefined;
1184
1557
  Target: string | undefined;
1185
1558
  OnlyActives: boolean | undefined;
1186
1559
  };
@@ -1236,10 +1609,10 @@ export type Swagger = {
1236
1609
  CreatedTo: string | undefined;
1237
1610
  OrderBy: string | undefined;
1238
1611
  Include: string | undefined;
1239
- page: number;
1240
- pageSize: number;
1241
- Filters: object | undefined;
1242
- SourceFilters: any | undefined;
1612
+ page: number | undefined;
1613
+ pageSize: number | undefined;
1614
+ Filters: Record<string, string> | undefined;
1615
+ SourceFilters: any[] | undefined;
1243
1616
  Target: string | undefined;
1244
1617
  OnlyActives: boolean | undefined;
1245
1618
  };
@@ -1295,10 +1668,10 @@ export type Swagger = {
1295
1668
  CreatedTo: string | undefined;
1296
1669
  OrderBy: string | undefined;
1297
1670
  Include: string | undefined;
1298
- page: number;
1299
- pageSize: number;
1300
- Filters: object | undefined;
1301
- SourceFilters: any | undefined;
1671
+ page: number | undefined;
1672
+ pageSize: number | undefined;
1673
+ Filters: Record<string, string> | undefined;
1674
+ SourceFilters: any[] | undefined;
1302
1675
  Target: string | undefined;
1303
1676
  OnlyActives: boolean | undefined;
1304
1677
  };
@@ -1389,10 +1762,10 @@ export type Swagger = {
1389
1762
  CreatedTo: string | undefined;
1390
1763
  OrderBy: string | undefined;
1391
1764
  Include: string | undefined;
1392
- page: number;
1393
- pageSize: number;
1394
- Filters: object | undefined;
1395
- SourceFilters: any | undefined;
1765
+ page: number | undefined;
1766
+ pageSize: number | undefined;
1767
+ Filters: Record<string, string> | undefined;
1768
+ SourceFilters: any[] | undefined;
1396
1769
  Target: string | undefined;
1397
1770
  OnlyActives: boolean | undefined;
1398
1771
  };
@@ -1439,6 +1812,65 @@ export type Swagger = {
1439
1812
  result: null;
1440
1813
  };
1441
1814
  };
1815
+ "/Forum/paginated": {
1816
+ get: {
1817
+ params: {
1818
+ EntityKey: string | undefined;
1819
+ Search: string | undefined;
1820
+ CreatedFrom: string | undefined;
1821
+ CreatedTo: string | undefined;
1822
+ OrderBy: string | undefined;
1823
+ Include: string | undefined;
1824
+ page: number | undefined;
1825
+ pageSize: number | undefined;
1826
+ Filters: Record<string, string> | undefined;
1827
+ SourceFilters: any[] | undefined;
1828
+ Target: string | undefined;
1829
+ OnlyActives: boolean | undefined;
1830
+ };
1831
+ requestBody: null;
1832
+ result: ForumResponsePaginatedResponse;
1833
+ };
1834
+ };
1835
+ "/Forum/{id}": {
1836
+ get: {
1837
+ params: {
1838
+ id: number;
1839
+ };
1840
+ requestBody: null;
1841
+ result: ForumResponse;
1842
+ };
1843
+ put: {
1844
+ params: {
1845
+ id: number;
1846
+ };
1847
+ requestBody: ForumRequest;
1848
+ result: ForumResponse;
1849
+ };
1850
+ delete: {
1851
+ params: {
1852
+ id: number;
1853
+ };
1854
+ requestBody: null;
1855
+ result: null;
1856
+ };
1857
+ };
1858
+ "/Forum/by-url/{url}": {
1859
+ get: {
1860
+ params: {
1861
+ url: string;
1862
+ };
1863
+ requestBody: null;
1864
+ result: ForumResponse;
1865
+ };
1866
+ };
1867
+ "/Forum": {
1868
+ post: {
1869
+ params: {};
1870
+ requestBody: ForumRequest;
1871
+ result: null;
1872
+ };
1873
+ };
1442
1874
  "/api/GoogleAuth/google": {
1443
1875
  post: {
1444
1876
  params: {};
@@ -1455,10 +1887,10 @@ export type Swagger = {
1455
1887
  CreatedTo: string | undefined;
1456
1888
  OrderBy: string | undefined;
1457
1889
  Include: string | undefined;
1458
- page: number;
1459
- pageSize: number;
1460
- Filters: object | undefined;
1461
- SourceFilters: any | undefined;
1890
+ page: number | undefined;
1891
+ pageSize: number | undefined;
1892
+ Filters: Record<string, string> | undefined;
1893
+ SourceFilters: any[] | undefined;
1462
1894
  Target: string | undefined;
1463
1895
  OnlyActives: boolean | undefined;
1464
1896
  };
@@ -1505,10 +1937,10 @@ export type Swagger = {
1505
1937
  CreatedTo: string | undefined;
1506
1938
  OrderBy: string | undefined;
1507
1939
  Include: string | undefined;
1508
- page: number;
1509
- pageSize: number;
1510
- Filters: object | undefined;
1511
- SourceFilters: any | undefined;
1940
+ page: number | undefined;
1941
+ pageSize: number | undefined;
1942
+ Filters: Record<string, string> | undefined;
1943
+ SourceFilters: any[] | undefined;
1512
1944
  Target: string | undefined;
1513
1945
  OnlyActives: boolean | undefined;
1514
1946
  };
@@ -1546,6 +1978,113 @@ export type Swagger = {
1546
1978
  result: null;
1547
1979
  };
1548
1980
  };
1981
+ "/api/infraction-users": {
1982
+ get: {
1983
+ params: {
1984
+ UserId: number | undefined;
1985
+ InfractionId: number | undefined;
1986
+ EntityKey: string | undefined;
1987
+ Search: string | undefined;
1988
+ CreatedFrom: string | undefined;
1989
+ CreatedTo: string | undefined;
1990
+ OrderBy: string | undefined;
1991
+ Include: string | undefined;
1992
+ page: number | undefined;
1993
+ pageSize: number | undefined;
1994
+ Filters: Record<string, string> | undefined;
1995
+ SourceFilters: any[] | undefined;
1996
+ Target: string | undefined;
1997
+ OnlyActives: boolean | undefined;
1998
+ };
1999
+ requestBody: null;
2000
+ result: InfractionUserResponsePaginatedResponse;
2001
+ };
2002
+ post: {
2003
+ params: {};
2004
+ requestBody: InfractionUserCreateOrUpdateRequest;
2005
+ result: null;
2006
+ };
2007
+ };
2008
+ "/api/infraction-users/{id}": {
2009
+ get: {
2010
+ params: {
2011
+ id: number;
2012
+ };
2013
+ requestBody: null;
2014
+ result: InfractionUserResponseApiResponse;
2015
+ };
2016
+ delete: {
2017
+ params: {
2018
+ id: number;
2019
+ };
2020
+ requestBody: null;
2021
+ result: StringApiResponse;
2022
+ };
2023
+ };
2024
+ "/api/infraction-users/me": {
2025
+ get: {
2026
+ params: {};
2027
+ requestBody: null;
2028
+ result: InfractionUserResponseListApiResponse;
2029
+ };
2030
+ };
2031
+ "/api/infraction-users/me/total": {
2032
+ get: {
2033
+ params: {};
2034
+ requestBody: null;
2035
+ result: Int32ApiResponse;
2036
+ };
2037
+ };
2038
+ "/api/infraction-users/total": {
2039
+ get: {
2040
+ params: {
2041
+ StartDate: string | undefined;
2042
+ EndDate: string | undefined;
2043
+ EntityKey: string | undefined;
2044
+ Search: string | undefined;
2045
+ CreatedFrom: string | undefined;
2046
+ CreatedTo: string | undefined;
2047
+ OrderBy: string | undefined;
2048
+ Include: string | undefined;
2049
+ page: number | undefined;
2050
+ pageSize: number | undefined;
2051
+ Filters: Record<string, string> | undefined;
2052
+ SourceFilters: any[] | undefined;
2053
+ Target: string | undefined;
2054
+ OnlyActives: boolean | undefined;
2055
+ };
2056
+ requestBody: null;
2057
+ result: InfractionTotalResponsePaginatedResponse;
2058
+ };
2059
+ };
2060
+ "/utils/instagram/posts": {
2061
+ get: {
2062
+ params: {
2063
+ max: number | undefined;
2064
+ };
2065
+ requestBody: null;
2066
+ result: null;
2067
+ };
2068
+ };
2069
+ "/api/Instagram/latest-posts": {
2070
+ get: {
2071
+ params: {
2072
+ accessToken: string | undefined;
2073
+ limit: number | undefined;
2074
+ };
2075
+ requestBody: null;
2076
+ result: null;
2077
+ };
2078
+ };
2079
+ "/api/Instagram/test-connection": {
2080
+ get: {
2081
+ params: {
2082
+ accessToken: string | undefined;
2083
+ };
2084
+ requestBody: null;
2085
+ result: null;
2086
+ };
2087
+ };
1549
2088
  "/features/interaction/config/{sourceTable}/{entityKey}": {
1550
2089
  get: {
1551
2090
  params: {
@@ -1553,7 +2092,7 @@ export type Swagger = {
1553
2092
  entityKey: string;
1554
2093
  };
1555
2094
  requestBody: null;
1556
- result: InteractionConfigResponseApiResponse;
2095
+ result: InteractionConfigResponseSharedApiResponse;
1557
2096
  };
1558
2097
  };
1559
2098
  "/features/interaction/list/{sourceTable}/{sourceGUID}": {
@@ -1563,7 +2102,7 @@ export type Swagger = {
1563
2102
  sourceGUID: string;
1564
2103
  };
1565
2104
  requestBody: null;
1566
- result: InteractionDetailResponseApiResponse;
2105
+ result: InteractionDetailResponseSharedApiResponse;
1567
2106
  };
1568
2107
  };
1569
2108
  "/features/interaction/send": {
@@ -1584,7 +2123,7 @@ export type Swagger = {
1584
2123
  get: {
1585
2124
  params: {
1586
2125
  SourceTable: string | undefined;
1587
- SourceId: number;
2126
+ SourceId: number | undefined;
1588
2127
  Status: string | undefined;
1589
2128
  EntityKey: string | undefined;
1590
2129
  Search: string | undefined;
@@ -1592,11 +2131,12 @@ export type Swagger = {
1592
2131
  CreatedTo: string | undefined;
1593
2132
  OrderBy: string | undefined;
1594
2133
  Include: string | undefined;
1595
- page: number;
1596
- pageSize: number;
1597
- Filters: object | undefined;
1598
- SourceFilters: any | undefined;
2134
+ page: number | undefined;
2135
+ pageSize: number | undefined;
2136
+ Filters: Record<string, string> | undefined;
2137
+ SourceFilters: any[] | undefined;
1599
2138
  Target: string | undefined;
2139
+ OnlyActives: boolean | undefined;
1600
2140
  };
1601
2141
  requestBody: null;
1602
2142
  result: InteractionItemResponsePaginatedResponse;
@@ -1624,7 +2164,7 @@ export type Swagger = {
1624
2164
  id: number;
1625
2165
  };
1626
2166
  requestBody: null;
1627
- result: null;
2167
+ result: StringApiResponse;
1628
2168
  };
1629
2169
  };
1630
2170
  "/admin/features/interaction/{id}/reject": {
@@ -1633,7 +2173,7 @@ export type Swagger = {
1633
2173
  id: number;
1634
2174
  };
1635
2175
  requestBody: null;
1636
- result: null;
2176
+ result: StringApiResponse;
1637
2177
  };
1638
2178
  };
1639
2179
  "/admin/features/interactionconfig/paginated": {
@@ -1646,11 +2186,12 @@ export type Swagger = {
1646
2186
  CreatedTo: string | undefined;
1647
2187
  OrderBy: string | undefined;
1648
2188
  Include: string | undefined;
1649
- page: number;
1650
- pageSize: number;
1651
- Filters: object | undefined;
1652
- SourceFilters: any | undefined;
2189
+ page: number | undefined;
2190
+ pageSize: number | undefined;
2191
+ Filters: Record<string, string> | undefined;
2192
+ SourceFilters: any[] | undefined;
1653
2193
  Target: string | undefined;
2194
+ OnlyActives: boolean | undefined;
1654
2195
  };
1655
2196
  requestBody: null;
1656
2197
  result: InteractionConfigResponsePaginatedResponse;
@@ -1662,14 +2203,14 @@ export type Swagger = {
1662
2203
  id: number;
1663
2204
  };
1664
2205
  requestBody: null;
1665
- result: InteractionConfigResponseApiResponse;
2206
+ result: InteractionConfigResponseSharedApiResponse;
1666
2207
  };
1667
2208
  put: {
1668
2209
  params: {
1669
2210
  id: number;
1670
2211
  };
1671
2212
  requestBody: InteractionConfigRequest;
1672
- result: InteractionConfigResponseApiResponse;
2213
+ result: InteractionConfigResponseSharedApiResponse;
1673
2214
  };
1674
2215
  delete: {
1675
2216
  params: {
@@ -1711,10 +2252,10 @@ export type Swagger = {
1711
2252
  CreatedTo: string | undefined;
1712
2253
  OrderBy: string | undefined;
1713
2254
  Include: string | undefined;
1714
- page: number;
1715
- pageSize: number;
1716
- Filters: object | undefined;
1717
- SourceFilters: any | undefined;
2255
+ page: number | undefined;
2256
+ pageSize: number | undefined;
2257
+ Filters: Record<string, string> | undefined;
2258
+ SourceFilters: any[] | undefined;
1718
2259
  Target: string | undefined;
1719
2260
  OnlyActives: boolean | undefined;
1720
2261
  };
@@ -1725,19 +2266,19 @@ export type Swagger = {
1725
2266
  "/admin/features/jobopportunities/JobOpportunity/paginated-by-user": {
1726
2267
  get: {
1727
2268
  params: {
1728
- SetorIds: any | undefined;
1729
- CargosIds: any | undefined;
1730
- LojasIds: any | undefined;
2269
+ SetorIds: number[] | undefined;
2270
+ CargosIds: number[] | undefined;
2271
+ LojasIds: number[] | undefined;
1731
2272
  EntityKey: string | undefined;
1732
2273
  Search: string | undefined;
1733
2274
  CreatedFrom: string | undefined;
1734
2275
  CreatedTo: string | undefined;
1735
2276
  OrderBy: string | undefined;
1736
2277
  Include: string | undefined;
1737
- page: number;
1738
- pageSize: number;
1739
- Filters: object | undefined;
1740
- SourceFilters: any | undefined;
2278
+ page: number | undefined;
2279
+ pageSize: number | undefined;
2280
+ Filters: Record<string, string> | undefined;
2281
+ SourceFilters: any[] | undefined;
1741
2282
  Target: string | undefined;
1742
2283
  OnlyActives: boolean | undefined;
1743
2284
  };
@@ -1793,10 +2334,10 @@ export type Swagger = {
1793
2334
  CreatedTo: string | undefined;
1794
2335
  OrderBy: string | undefined;
1795
2336
  Include: string | undefined;
1796
- page: number;
1797
- pageSize: number;
1798
- Filters: object | undefined;
1799
- SourceFilters: any | undefined;
2337
+ page: number | undefined;
2338
+ pageSize: number | undefined;
2339
+ Filters: Record<string, string> | undefined;
2340
+ SourceFilters: any[] | undefined;
1800
2341
  Target: string | undefined;
1801
2342
  OnlyActives: boolean | undefined;
1802
2343
  };
@@ -1807,19 +2348,20 @@ export type Swagger = {
1807
2348
  "/admin/features/jobopportunities/JobOpportunityXCandidato/paginated-by-user": {
1808
2349
  get: {
1809
2350
  params: {
1810
- SetorIds: any | undefined;
1811
- CargosIds: any | undefined;
1812
- LojasIds: any | undefined;
2351
+ SetorIds: number[] | undefined;
2352
+ CargosIds: number[] | undefined;
2353
+ LojasIds: number[] | undefined;
2354
+ JobId: number | undefined;
1813
2355
  EntityKey: string | undefined;
1814
2356
  Search: string | undefined;
1815
2357
  CreatedFrom: string | undefined;
1816
2358
  CreatedTo: string | undefined;
1817
2359
  OrderBy: string | undefined;
1818
2360
  Include: string | undefined;
1819
- page: number;
1820
- pageSize: number;
1821
- Filters: object | undefined;
1822
- SourceFilters: any | undefined;
2361
+ page: number | undefined;
2362
+ pageSize: number | undefined;
2363
+ Filters: Record<string, string> | undefined;
2364
+ SourceFilters: any[] | undefined;
1823
2365
  Target: string | undefined;
1824
2366
  OnlyActives: boolean | undefined;
1825
2367
  };
@@ -1889,10 +2431,10 @@ export type Swagger = {
1889
2431
  CreatedTo: string | undefined;
1890
2432
  OrderBy: string | undefined;
1891
2433
  Include: string | undefined;
1892
- page: number;
1893
- pageSize: number;
1894
- Filters: object | undefined;
1895
- SourceFilters: any | undefined;
2434
+ page: number | undefined;
2435
+ pageSize: number | undefined;
2436
+ Filters: Record<string, string> | undefined;
2437
+ SourceFilters: any[] | undefined;
1896
2438
  Target: string | undefined;
1897
2439
  OnlyActives: boolean | undefined;
1898
2440
  };
@@ -1939,6 +2481,22 @@ export type Swagger = {
1939
2481
  result: null;
1940
2482
  };
1941
2483
  };
2484
+ "/educations/Lesson/modules/{lessonId}": {
2485
+ get: {
2486
+ params: {
2487
+ lessonId: number;
2488
+ };
2489
+ requestBody: null;
2490
+ result: ModuleAssociationsResponseSharedApiResponse;
2491
+ };
2492
+ };
2493
+ "/educations/Lesson/modules/order": {
2494
+ put: {
2495
+ params: {};
2496
+ requestBody: any[];
2497
+ result: ObjectSharedApiResponse;
2498
+ };
2499
+ };
1942
2500
  "/admin/catalogs/loja/paginated": {
1943
2501
  get: {
1944
2502
  params: {
@@ -1948,10 +2506,10 @@ export type Swagger = {
1948
2506
  CreatedTo: string | undefined;
1949
2507
  OrderBy: string | undefined;
1950
2508
  Include: string | undefined;
1951
- page: number;
1952
- pageSize: number;
1953
- Filters: object | undefined;
1954
- SourceFilters: any | undefined;
2509
+ page: number | undefined;
2510
+ pageSize: number | undefined;
2511
+ Filters: Record<string, string> | undefined;
2512
+ SourceFilters: any[] | undefined;
1955
2513
  Target: string | undefined;
1956
2514
  OnlyActives: boolean | undefined;
1957
2515
  };
@@ -1962,17 +2520,17 @@ export type Swagger = {
1962
2520
  "/admin/catalogs/loja/paginated-by-user": {
1963
2521
  get: {
1964
2522
  params: {
1965
- Ids: any | undefined;
2523
+ Ids: number[] | undefined;
1966
2524
  EntityKey: string | undefined;
1967
2525
  Search: string | undefined;
1968
2526
  CreatedFrom: string | undefined;
1969
2527
  CreatedTo: string | undefined;
1970
2528
  OrderBy: string | undefined;
1971
2529
  Include: string | undefined;
1972
- page: number;
1973
- pageSize: number;
1974
- Filters: object | undefined;
1975
- SourceFilters: any | undefined;
2530
+ page: number | undefined;
2531
+ pageSize: number | undefined;
2532
+ Filters: Record<string, string> | undefined;
2533
+ SourceFilters: any[] | undefined;
1976
2534
  Target: string | undefined;
1977
2535
  OnlyActives: boolean | undefined;
1978
2536
  };
@@ -2028,10 +2586,10 @@ export type Swagger = {
2028
2586
  CreatedTo: string | undefined;
2029
2587
  OrderBy: string | undefined;
2030
2588
  Include: string | undefined;
2031
- page: number;
2032
- pageSize: number;
2033
- Filters: object | undefined;
2034
- SourceFilters: any | undefined;
2589
+ page: number | undefined;
2590
+ pageSize: number | undefined;
2591
+ Filters: Record<string, string> | undefined;
2592
+ SourceFilters: any[] | undefined;
2035
2593
  Target: string | undefined;
2036
2594
  OnlyActives: boolean | undefined;
2037
2595
  };
@@ -2078,6 +2636,13 @@ export type Swagger = {
2078
2636
  result: null;
2079
2637
  };
2080
2638
  };
2639
+ "/Metadata/open": {
2640
+ post: {
2641
+ params: {};
2642
+ requestBody: null;
2643
+ result: null;
2644
+ };
2645
+ };
2081
2646
  "/Metadata": {
2082
2647
  post: {
2083
2648
  params: {};
@@ -2110,10 +2675,10 @@ export type Swagger = {
2110
2675
  CreatedTo: string | undefined;
2111
2676
  OrderBy: string | undefined;
2112
2677
  Include: string | undefined;
2113
- page: number;
2114
- pageSize: number;
2115
- Filters: object | undefined;
2116
- SourceFilters: any | undefined;
2678
+ page: number | undefined;
2679
+ pageSize: number | undefined;
2680
+ Filters: Record<string, string> | undefined;
2681
+ SourceFilters: any[] | undefined;
2117
2682
  Target: string | undefined;
2118
2683
  OnlyActives: boolean | undefined;
2119
2684
  };
@@ -2160,10 +2725,10 @@ export type Swagger = {
2160
2725
  CreatedTo: string | undefined;
2161
2726
  OrderBy: string | undefined;
2162
2727
  Include: string | undefined;
2163
- page: number;
2164
- pageSize: number;
2165
- Filters: object | undefined;
2166
- SourceFilters: any | undefined;
2728
+ page: number | undefined;
2729
+ pageSize: number | undefined;
2730
+ Filters: Record<string, string> | undefined;
2731
+ SourceFilters: any[] | undefined;
2167
2732
  Target: string | undefined;
2168
2733
  OnlyActives: boolean | undefined;
2169
2734
  };
@@ -2219,10 +2784,10 @@ export type Swagger = {
2219
2784
  CreatedTo: string | undefined;
2220
2785
  OrderBy: string | undefined;
2221
2786
  Include: string | undefined;
2222
- page: number;
2223
- pageSize: number;
2224
- Filters: object | undefined;
2225
- SourceFilters: any | undefined;
2787
+ page: number | undefined;
2788
+ pageSize: number | undefined;
2789
+ Filters: Record<string, string> | undefined;
2790
+ SourceFilters: any[] | undefined;
2226
2791
  Target: string | undefined;
2227
2792
  OnlyActives: boolean | undefined;
2228
2793
  };
@@ -2278,10 +2843,10 @@ export type Swagger = {
2278
2843
  CreatedTo: string | undefined;
2279
2844
  OrderBy: string | undefined;
2280
2845
  Include: string | undefined;
2281
- page: number;
2282
- pageSize: number;
2283
- Filters: object | undefined;
2284
- SourceFilters: any | undefined;
2846
+ page: number | undefined;
2847
+ pageSize: number | undefined;
2848
+ Filters: Record<string, string> | undefined;
2849
+ SourceFilters: any[] | undefined;
2285
2850
  Target: string | undefined;
2286
2851
  OnlyActives: boolean | undefined;
2287
2852
  };
@@ -2328,42 +2893,23 @@ export type Swagger = {
2328
2893
  result: null;
2329
2894
  };
2330
2895
  };
2331
- "/webhook/pagarme": {
2896
+ "/billing/order": {
2332
2897
  post: {
2333
2898
  params: {};
2334
- requestBody: null;
2899
+ requestBody: OrderCheckoutRequest;
2335
2900
  result: null;
2336
2901
  };
2337
2902
  };
2338
- "/Pages/{url}": {
2339
- get: {
2340
- params: {
2341
- url: string;
2342
- };
2343
- requestBody: null;
2344
- result: PageDTO;
2345
- };
2346
- };
2347
- "/Pages/{entityKey}/listing": {
2348
- get: {
2349
- params: {
2350
- entityKey: string;
2351
- category: string | undefined;
2352
- search: string | undefined;
2353
- tags: string | undefined;
2354
- page: number;
2355
- pageSize: number;
2356
- destaque: boolean | undefined;
2357
- destaqueVitrine: boolean | undefined;
2358
- };
2359
- requestBody: null;
2360
- result: ListPageDTO;
2903
+ "/billing/order/cart/checkout": {
2904
+ post: {
2905
+ params: {};
2906
+ requestBody: OrderByCartCheckoutRequest;
2907
+ result: CheckoutResponseResultDto;
2361
2908
  };
2362
2909
  };
2363
- "/Pages/detail/{entityKey}/{url}": {
2910
+ "/Pages/{url}": {
2364
2911
  get: {
2365
2912
  params: {
2366
- entityKey: string;
2367
2913
  url: string;
2368
2914
  };
2369
2915
  requestBody: null;
@@ -2386,10 +2932,10 @@ export type Swagger = {
2386
2932
  CreatedTo: string | undefined;
2387
2933
  OrderBy: string | undefined;
2388
2934
  Include: string | undefined;
2389
- page: number;
2390
- pageSize: number;
2391
- Filters: object | undefined;
2392
- SourceFilters: any | undefined;
2935
+ page: number | undefined;
2936
+ pageSize: number | undefined;
2937
+ Filters: Record<string, string> | undefined;
2938
+ SourceFilters: any[] | undefined;
2393
2939
  Target: string | undefined;
2394
2940
  OnlyActives: boolean | undefined;
2395
2941
  };
@@ -2420,10 +2966,11 @@ export type Swagger = {
2420
2966
  result: null;
2421
2967
  };
2422
2968
  };
2423
- "/admin/system/pages/url": {
2969
+ "/admin/system/pages/url-entityKey": {
2424
2970
  get: {
2425
2971
  params: {
2426
2972
  route: string | undefined;
2973
+ entityKey: string | undefined;
2427
2974
  };
2428
2975
  requestBody: null;
2429
2976
  result: PageResponse;
@@ -2445,10 +2992,10 @@ export type Swagger = {
2445
2992
  CreatedTo: string | undefined;
2446
2993
  OrderBy: string | undefined;
2447
2994
  Include: string | undefined;
2448
- page: number;
2449
- pageSize: number;
2450
- Filters: object | undefined;
2451
- SourceFilters: any | undefined;
2995
+ page: number | undefined;
2996
+ pageSize: number | undefined;
2997
+ Filters: Record<string, string> | undefined;
2998
+ SourceFilters: any[] | undefined;
2452
2999
  Target: string | undefined;
2453
3000
  OnlyActives: boolean | undefined;
2454
3001
  };
@@ -2471,37 +3018,114 @@ export type Swagger = {
2471
3018
  id: number;
2472
3019
  };
2473
3020
  requestBody: null;
2474
- result: PaginaResponseSharedApiResponse;
3021
+ result: PaginaResponseSharedApiResponse;
3022
+ };
3023
+ put: {
3024
+ params: {
3025
+ id: number;
3026
+ };
3027
+ requestBody: PaginaRequest;
3028
+ result: PaginaResponseSharedApiResponse;
3029
+ };
3030
+ delete: {
3031
+ params: {
3032
+ id: number;
3033
+ };
3034
+ requestBody: null;
3035
+ result: null;
3036
+ };
3037
+ };
3038
+ "/admin/contents/page": {
3039
+ post: {
3040
+ params: {};
3041
+ requestBody: PaginaRequest;
3042
+ result: null;
3043
+ };
3044
+ };
3045
+ "/api/pdis": {
3046
+ get: {
3047
+ params: {
3048
+ Title: string | undefined;
3049
+ Description: string | undefined;
3050
+ Status: string | undefined;
3051
+ IncludeSketch: boolean | undefined;
3052
+ EntityKey: string | undefined;
3053
+ Search: string | undefined;
3054
+ CreatedFrom: string | undefined;
3055
+ CreatedTo: string | undefined;
3056
+ OrderBy: string | undefined;
3057
+ Include: string | undefined;
3058
+ page: number | undefined;
3059
+ pageSize: number | undefined;
3060
+ Filters: Record<string, string> | undefined;
3061
+ SourceFilters: any[] | undefined;
3062
+ Target: string | undefined;
3063
+ OnlyActives: boolean | undefined;
3064
+ };
3065
+ requestBody: null;
3066
+ result: PdiResponsePaginatedResponse;
3067
+ };
3068
+ post: {
3069
+ params: {};
3070
+ requestBody: PdiCreateOrUpdateRequest;
3071
+ result: null;
3072
+ };
3073
+ };
3074
+ "/api/pdis/{id}": {
3075
+ get: {
3076
+ params: {
3077
+ id: number;
3078
+ };
3079
+ requestBody: null;
3080
+ result: PdiResponseApiResponse;
2475
3081
  };
2476
3082
  put: {
2477
3083
  params: {
2478
3084
  id: number;
2479
3085
  };
2480
- requestBody: PaginaRequest;
2481
- result: PaginaResponseSharedApiResponse;
3086
+ requestBody: PdiCreateOrUpdateRequest;
3087
+ result: PdiResponseApiResponse;
2482
3088
  };
2483
3089
  delete: {
2484
3090
  params: {
2485
3091
  id: number;
2486
3092
  };
2487
3093
  requestBody: null;
2488
- result: null;
3094
+ result: StringApiResponse;
2489
3095
  };
2490
3096
  };
2491
- "/admin/contents/page": {
3097
+ "/api/pdis/responder": {
2492
3098
  post: {
2493
3099
  params: {};
2494
- requestBody: PaginaRequest;
2495
- result: null;
3100
+ requestBody: PdiSubmitResponseRequest;
3101
+ result: StringApiResponse;
3102
+ };
3103
+ };
3104
+ "/api/pdis/{pdiId}/minha-resposta": {
3105
+ get: {
3106
+ params: {
3107
+ pdiId: number;
3108
+ };
3109
+ requestBody: null;
3110
+ result: PdiUserResponseDtoApiResponse;
2496
3111
  };
2497
3112
  };
2498
- "/Platform/configs": {
3113
+ "/api/pdis/{pdiId}/respostas": {
2499
3114
  get: {
2500
3115
  params: {
2501
- tenantId: string | undefined;
3116
+ pdiId: number;
3117
+ };
3118
+ requestBody: null;
3119
+ result: PdiUserDetailResponseDtoIEnumerableApiResponse;
3120
+ };
3121
+ };
3122
+ "/api/pdis/{pdiId}/start": {
3123
+ post: {
3124
+ params: {
3125
+ pdiId: number;
2502
3126
  };
2503
3127
  requestBody: null;
2504
- result: Configs;
3128
+ result: StringApiResponse;
2505
3129
  };
2506
3130
  };
2507
3131
  "/admin/catalogs/Portfolio/paginated": {
@@ -2513,10 +3137,10 @@ export type Swagger = {
2513
3137
  CreatedTo: string | undefined;
2514
3138
  OrderBy: string | undefined;
2515
3139
  Include: string | undefined;
2516
- page: number;
2517
- pageSize: number;
2518
- Filters: object | undefined;
2519
- SourceFilters: any | undefined;
3140
+ page: number | undefined;
3141
+ pageSize: number | undefined;
3142
+ Filters: Record<string, string> | undefined;
3143
+ SourceFilters: any[] | undefined;
2520
3144
  Target: string | undefined;
2521
3145
  OnlyActives: boolean | undefined;
2522
3146
  };
@@ -2572,10 +3196,10 @@ export type Swagger = {
2572
3196
  CreatedTo: string | undefined;
2573
3197
  OrderBy: string | undefined;
2574
3198
  Include: string | undefined;
2575
- page: number;
2576
- pageSize: number;
2577
- Filters: object | undefined;
2578
- SourceFilters: any | undefined;
3199
+ page: number | undefined;
3200
+ pageSize: number | undefined;
3201
+ Filters: Record<string, string> | undefined;
3202
+ SourceFilters: any[] | undefined;
2579
3203
  Target: string | undefined;
2580
3204
  OnlyActives: boolean | undefined;
2581
3205
  };
@@ -2622,6 +3246,74 @@ export type Swagger = {
2622
3246
  result: null;
2623
3247
  };
2624
3248
  };
3249
+ "/api/quick-surveys": {
3250
+ get: {
3251
+ params: {
3252
+ Title: string | undefined;
3253
+ Indicator: string | undefined;
3254
+ OrderBy: string | undefined;
3255
+ EntityKey: string | undefined;
3256
+ Search: string | undefined;
3257
+ CreatedFrom: string | undefined;
3258
+ CreatedTo: string | undefined;
3259
+ Include: string | undefined;
3260
+ page: number | undefined;
3261
+ pageSize: number | undefined;
3262
+ Filters: Record<string, string> | undefined;
3263
+ SourceFilters: any[] | undefined;
3264
+ Target: string | undefined;
3265
+ OnlyActives: boolean | undefined;
3266
+ };
3267
+ requestBody: null;
3268
+ result: QuickSurveyResponsePaginatedResponse;
3269
+ };
3270
+ post: {
3271
+ params: {};
3272
+ requestBody: QuickSurveyCreateOrUpdateRequest;
3273
+ result: null;
3274
+ };
3275
+ };
3276
+ "/api/quick-surveys/{id}": {
3277
+ get: {
3278
+ params: {
3279
+ id: number;
3280
+ };
3281
+ requestBody: null;
3282
+ result: QuickSurveyResponseApiResponse;
3283
+ };
3284
+ put: {
3285
+ params: {
3286
+ id: number;
3287
+ };
3288
+ requestBody: QuickSurveyCreateOrUpdateRequest;
3289
+ result: QuickSurveyResponseApiResponse;
3290
+ };
3291
+ delete: {
3292
+ params: {
3293
+ id: number;
3294
+ };
3295
+ requestBody: null;
3296
+ result: StringApiResponse;
3297
+ };
3298
+ };
3299
+ "/api/quick-surveys/{id}/send": {
3300
+ post: {
3301
+ params: {
3302
+ id: number;
3303
+ };
3304
+ requestBody: null;
3305
+ result: null;
3306
+ };
3307
+ };
3308
+ "/api/quick-surveys/my-surveys/{id}/response": {
3309
+ post: {
3310
+ params: {
3311
+ id: number;
3312
+ };
3313
+ requestBody: QuickSurveyUserResponseRequest;
3314
+ result: null;
3315
+ };
3316
+ };
2625
3317
  "/admin/Roles/Role/paginated": {
2626
3318
  get: {
2627
3319
  params: {
@@ -2631,10 +3323,10 @@ export type Swagger = {
2631
3323
  CreatedTo: string | undefined;
2632
3324
  OrderBy: string | undefined;
2633
3325
  Include: string | undefined;
2634
- page: number;
2635
- pageSize: number;
2636
- Filters: object | undefined;
2637
- SourceFilters: any | undefined;
3326
+ page: number | undefined;
3327
+ pageSize: number | undefined;
3328
+ Filters: Record<string, string> | undefined;
3329
+ SourceFilters: any[] | undefined;
2638
3330
  Target: string | undefined;
2639
3331
  OnlyActives: boolean | undefined;
2640
3332
  };
@@ -2675,7 +3367,7 @@ export type Swagger = {
2675
3367
  "/admin/Roles/Role/UserByListRoles": {
2676
3368
  get: {
2677
3369
  params: {
2678
- ids: any | undefined;
3370
+ ids: number[] | undefined;
2679
3371
  };
2680
3372
  requestBody: null;
2681
3373
  result: UsuarioResponseSharedApiResponse;
@@ -2704,6 +3396,20 @@ export type Swagger = {
2704
3396
  result: null;
2705
3397
  };
2706
3398
  };
3399
+ "/sender/send-email-resend": {
3400
+ post: {
3401
+ params: {};
3402
+ requestBody: EmailRequest;
3403
+ result: null;
3404
+ };
3405
+ };
3406
+ "/sender/send-brevo-email": {
3407
+ post: {
3408
+ params: {};
3409
+ requestBody: EmailBrevoRequest;
3410
+ result: null;
3411
+ };
3412
+ };
2707
3413
  "/admin/catalogs/servico/paginated": {
2708
3414
  get: {
2709
3415
  params: {
@@ -2713,10 +3419,10 @@ export type Swagger = {
2713
3419
  CreatedTo: string | undefined;
2714
3420
  OrderBy: string | undefined;
2715
3421
  Include: string | undefined;
2716
- page: number;
2717
- pageSize: number;
2718
- Filters: object | undefined;
2719
- SourceFilters: any | undefined;
3422
+ page: number | undefined;
3423
+ pageSize: number | undefined;
3424
+ Filters: Record<string, string> | undefined;
3425
+ SourceFilters: any[] | undefined;
2720
3426
  Target: string | undefined;
2721
3427
  OnlyActives: boolean | undefined;
2722
3428
  };
@@ -2772,10 +3478,10 @@ export type Swagger = {
2772
3478
  CreatedTo: string | undefined;
2773
3479
  OrderBy: string | undefined;
2774
3480
  Include: string | undefined;
2775
- page: number;
2776
- pageSize: number;
2777
- Filters: object | undefined;
2778
- SourceFilters: any | undefined;
3481
+ page: number | undefined;
3482
+ pageSize: number | undefined;
3483
+ Filters: Record<string, string> | undefined;
3484
+ SourceFilters: any[] | undefined;
2779
3485
  Target: string | undefined;
2780
3486
  OnlyActives: boolean | undefined;
2781
3487
  };
@@ -2786,17 +3492,17 @@ export type Swagger = {
2786
3492
  "/admin/catalogs/Setor/paginated-by-user": {
2787
3493
  get: {
2788
3494
  params: {
2789
- Ids: any | undefined;
3495
+ ids: number[] | undefined;
2790
3496
  EntityKey: string | undefined;
2791
3497
  Search: string | undefined;
2792
3498
  CreatedFrom: string | undefined;
2793
3499
  CreatedTo: string | undefined;
2794
3500
  OrderBy: string | undefined;
2795
3501
  Include: string | undefined;
2796
- page: number;
2797
- pageSize: number;
2798
- Filters: object | undefined;
2799
- SourceFilters: any | undefined;
3502
+ page: number | undefined;
3503
+ pageSize: number | undefined;
3504
+ Filters: Record<string, string> | undefined;
3505
+ SourceFilters: any[] | undefined;
2800
3506
  Target: string | undefined;
2801
3507
  OnlyActives: boolean | undefined;
2802
3508
  };
@@ -2866,10 +3572,10 @@ export type Swagger = {
2866
3572
  CreatedTo: string | undefined;
2867
3573
  OrderBy: string | undefined;
2868
3574
  Include: string | undefined;
2869
- page: number;
2870
- pageSize: number;
2871
- Filters: object | undefined;
2872
- SourceFilters: any | undefined;
3575
+ page: number | undefined;
3576
+ pageSize: number | undefined;
3577
+ Filters: Record<string, string> | undefined;
3578
+ SourceFilters: any[] | undefined;
2873
3579
  Target: string | undefined;
2874
3580
  OnlyActives: boolean | undefined;
2875
3581
  };
@@ -2916,42 +3622,199 @@ export type Swagger = {
2916
3622
  result: null;
2917
3623
  };
2918
3624
  };
2919
- "/api/Subscriptions/verify-order": {
3625
+ "/billing/subscription-feature-access/{planId}": {
3626
+ get: {
3627
+ params: {
3628
+ planId: number;
3629
+ };
3630
+ requestBody: null;
3631
+ result: null;
3632
+ };
3633
+ };
3634
+ "/billing/subscription-feature-access/{planId}/action/{action}": {
3635
+ get: {
3636
+ params: {
3637
+ planId: number;
3638
+ action: string;
3639
+ };
3640
+ requestBody: null;
3641
+ result: null;
3642
+ };
3643
+ };
3644
+ "/billing/subscription-feature-access/{planId}/check": {
3645
+ get: {
3646
+ params: {
3647
+ planId: number;
3648
+ tableAction: string | undefined;
3649
+ tableId: number | undefined;
3650
+ };
3651
+ requestBody: null;
3652
+ result: null;
3653
+ };
3654
+ };
3655
+ "/billing/subscriptionplans": {
2920
3656
  post: {
2921
3657
  params: {};
2922
- requestBody: VerifyOrderRequest;
2923
- result: PaymentOrderResponse;
3658
+ requestBody: SubscriptionPlanRequest;
3659
+ result: null;
3660
+ };
3661
+ };
3662
+ "/billing/subscriptionplans/plan/paginated": {
3663
+ get: {
3664
+ params: {
3665
+ EntityKey: string | undefined;
3666
+ Search: string | undefined;
3667
+ CreatedFrom: string | undefined;
3668
+ CreatedTo: string | undefined;
3669
+ OrderBy: string | undefined;
3670
+ Include: string | undefined;
3671
+ page: number | undefined;
3672
+ pageSize: number | undefined;
3673
+ Filters: Record<string, string> | undefined;
3674
+ SourceFilters: any[] | undefined;
3675
+ Target: string | undefined;
3676
+ OnlyActives: boolean | undefined;
3677
+ };
3678
+ requestBody: null;
3679
+ result: SubscriptionPlanResponsePaginatedResponse;
3680
+ };
3681
+ };
3682
+ "/billing/subscriptionplans/plan/{id}": {
3683
+ get: {
3684
+ params: {
3685
+ id: number;
3686
+ };
3687
+ requestBody: null;
3688
+ result: SubscriptionResponsePaginatedResponse;
3689
+ };
3690
+ };
3691
+ "/billing/subscriptionplans/plan/update": {
3692
+ put: {
3693
+ params: {
3694
+ id: number | undefined;
3695
+ };
3696
+ requestBody: SubscriptionPlanRequest;
3697
+ result: SubscriptionResponse;
3698
+ };
3699
+ };
3700
+ "/billing/subscriptionplans/plan/delete": {
3701
+ delete: {
3702
+ params: {
3703
+ id: number | undefined;
3704
+ };
3705
+ requestBody: null;
3706
+ result: null;
3707
+ };
3708
+ };
3709
+ "/billing/subscriptionplans/order/internal/{id}": {
3710
+ get: {
3711
+ params: {
3712
+ id: number;
3713
+ };
3714
+ requestBody: null;
3715
+ result: SubscriptionPlanOrderResponsePaginatedResponse;
3716
+ };
3717
+ };
3718
+ "/billing/subscriptionplans/order/internal/userid/{id}": {
3719
+ get: {
3720
+ params: {
3721
+ id: number;
3722
+ };
3723
+ requestBody: null;
3724
+ result: SubscriptionPlanOrderResponsePaginatedResponse;
3725
+ };
3726
+ };
3727
+ "/billing/subscriptionplans/order/internal/paginated": {
3728
+ get: {
3729
+ params: {
3730
+ UsuarioId: number | undefined;
3731
+ EntityKey: string | undefined;
3732
+ Search: string | undefined;
3733
+ CreatedFrom: string | undefined;
3734
+ CreatedTo: string | undefined;
3735
+ OrderBy: string | undefined;
3736
+ Include: string | undefined;
3737
+ page: number | undefined;
3738
+ pageSize: number | undefined;
3739
+ Filters: Record<string, string> | undefined;
3740
+ SourceFilters: any[] | undefined;
3741
+ Target: string | undefined;
3742
+ OnlyActives: boolean | undefined;
3743
+ };
3744
+ requestBody: null;
3745
+ result: SubscriptionPlanOrderResponsePaginatedResponse;
3746
+ };
3747
+ };
3748
+ "/billing/subscriptionplans/order/provider/{id}": {
3749
+ get: {
3750
+ params: {
3751
+ id: string;
3752
+ };
3753
+ requestBody: null;
3754
+ result: SubscriptionResponsePaginatedResponse;
3755
+ };
3756
+ };
3757
+ "/billing/subscriptionplans/order/provider/paginated": {
3758
+ get: {
3759
+ params: {
3760
+ Customer: string | undefined;
3761
+ BillingType: string | undefined;
3762
+ Status: string | undefined;
3763
+ Page: number | undefined;
3764
+ PageSize: number | undefined;
3765
+ ApiKey: string | undefined;
3766
+ BaseUrl: string | undefined;
3767
+ ProviderType: any | undefined;
3768
+ };
3769
+ requestBody: null;
3770
+ result: SubscriptionResponsePaginatedResponse;
3771
+ };
3772
+ };
3773
+ "/billing/subscriptionplans/order/credit-card": {
3774
+ put: {
3775
+ params: {};
3776
+ requestBody: CreditDto;
3777
+ result: null;
3778
+ };
3779
+ };
3780
+ "/billing/subscriptionplans/order/cancel": {
3781
+ delete: {
3782
+ params: {
3783
+ id: string | undefined;
3784
+ };
3785
+ requestBody: null;
3786
+ result: null;
2924
3787
  };
2925
3788
  };
2926
- "/api/Subscriptions/create-order": {
3789
+ "/billing/subscriptionplans/checkout": {
2927
3790
  post: {
2928
3791
  params: {};
2929
- requestBody: PaymentOrderRequest;
2930
- result: PaymentOrderResponse;
3792
+ requestBody: SubscriptionCheckoutRequest;
3793
+ result: CheckoutResponseResultDto;
2931
3794
  };
2932
3795
  };
2933
- "/api/Subscriptions/user-subscription": {
3796
+ "/billing/subscriptionplans/billing-type": {
2934
3797
  get: {
2935
3798
  params: {};
2936
3799
  requestBody: null;
2937
- result: SubscriptionResultDto;
3800
+ result: null;
2938
3801
  };
2939
3802
  };
2940
- "/api/Subscriptions/create": {
2941
- post: {
3803
+ "/billing/subscriptionplans/billing-interval": {
3804
+ get: {
2942
3805
  params: {};
2943
- requestBody: SubscriptionRequest;
3806
+ requestBody: null;
2944
3807
  result: null;
2945
3808
  };
2946
3809
  };
2947
- "/api/Subscriptions/webhooks/pagarme": {
2948
- post: {
3810
+ "/billing/subscriptionplans/payment-status": {
3811
+ get: {
2949
3812
  params: {};
2950
- requestBody: {};
3813
+ requestBody: null;
2951
3814
  result: null;
2952
3815
  };
2953
3816
  };
2954
- "/api/Subscriptions/GetSubscriptions": {
3817
+ "/billing/subscriptionplans/subscription-status": {
2955
3818
  get: {
2956
3819
  params: {};
2957
3820
  requestBody: null;
@@ -2967,10 +3830,10 @@ export type Swagger = {
2967
3830
  CreatedTo: string | undefined;
2968
3831
  OrderBy: string | undefined;
2969
3832
  Include: string | undefined;
2970
- page: number;
2971
- pageSize: number;
2972
- Filters: object | undefined;
2973
- SourceFilters: any | undefined;
3833
+ page: number | undefined;
3834
+ pageSize: number | undefined;
3835
+ Filters: Record<string, string> | undefined;
3836
+ SourceFilters: any[] | undefined;
2974
3837
  Target: string | undefined;
2975
3838
  OnlyActives: boolean | undefined;
2976
3839
  };
@@ -3061,10 +3924,10 @@ export type Swagger = {
3061
3924
  CreatedTo: string | undefined;
3062
3925
  OrderBy: string | undefined;
3063
3926
  Include: string | undefined;
3064
- page: number;
3065
- pageSize: number;
3066
- Filters: object | undefined;
3067
- SourceFilters: any | undefined;
3927
+ page: number | undefined;
3928
+ pageSize: number | undefined;
3929
+ Filters: Record<string, string> | undefined;
3930
+ SourceFilters: any[] | undefined;
3068
3931
  Target: string | undefined;
3069
3932
  OnlyActives: boolean | undefined;
3070
3933
  };
@@ -3136,10 +3999,10 @@ export type Swagger = {
3136
3999
  CreatedTo: string | undefined;
3137
4000
  OrderBy: string | undefined;
3138
4001
  Include: string | undefined;
3139
- page: number;
3140
- pageSize: number;
3141
- Filters: object | undefined;
3142
- SourceFilters: any | undefined;
4002
+ page: number | undefined;
4003
+ pageSize: number | undefined;
4004
+ Filters: Record<string, string> | undefined;
4005
+ SourceFilters: any[] | undefined;
3143
4006
  Target: string | undefined;
3144
4007
  OnlyActives: boolean | undefined;
3145
4008
  };
@@ -3283,8 +4146,52 @@ export interface ArtigoResponseSharedApiResponse {
3283
4146
  message?: string;
3284
4147
  item?: ArtigoResponse;
3285
4148
  }
4149
+ export interface AsaasPayment {
4150
+ id?: string;
4151
+ status?: string;
4152
+ subscription?: string;
4153
+ customer?: string;
4154
+ value?: number;
4155
+ dueDate?: string;
4156
+ externalReference?: string;
4157
+ }
4158
+ export interface AsaasSubscription {
4159
+ id?: string;
4160
+ status?: string;
4161
+ customer?: string;
4162
+ externalReference?: string;
4163
+ }
4164
+ export interface AsaasWebhookEvent {
4165
+ event?: string;
4166
+ payment?: AsaasPayment;
4167
+ subscription?: AsaasSubscription;
4168
+ }
4169
+ export interface Assembly {
4170
+ definedTypes?: TypeInfo[];
4171
+ exportedTypes?: Type[];
4172
+ codeBase?: string;
4173
+ entryPoint?: MethodInfo;
4174
+ fullName?: string;
4175
+ imageRuntimeVersion?: string;
4176
+ isDynamic?: boolean;
4177
+ location?: string;
4178
+ reflectionOnly?: boolean;
4179
+ isCollectible?: boolean;
4180
+ isFullyTrusted?: boolean;
4181
+ customAttributes?: CustomAttributeData[];
4182
+ escapedCodeBase?: string;
4183
+ manifestModule?: Module;
4184
+ modules?: Module[];
4185
+ globalAssemblyCache?: boolean;
4186
+ hostContext?: number;
4187
+ securityRuleSet?: SecurityRuleSet;
4188
+ }
4189
+ export interface BillingInterval {
4190
+ }
3286
4191
  export interface BillingPeriod {
3287
4192
  }
4193
+ export interface BillingType {
4194
+ }
3288
4195
  export interface Blog {
3289
4196
  id?: number;
3290
4197
  ativo?: boolean;
@@ -3305,6 +4212,7 @@ export interface Blog {
3305
4212
  categoria?: Categoria;
3306
4213
  directoryId?: number;
3307
4214
  directory?: DirectoryEntity;
4215
+ isOnHold?: boolean;
3308
4216
  }
3309
4217
  export interface BlogPage {
3310
4218
  head?: Head;
@@ -3334,6 +4242,7 @@ export interface BlogRequest {
3334
4242
  categoria?: CategoriaDto;
3335
4243
  categoriaId?: number;
3336
4244
  directoryId?: number;
4245
+ isOnHold?: boolean;
3337
4246
  }
3338
4247
  export interface BlogResponse {
3339
4248
  id?: number;
@@ -3354,6 +4263,8 @@ export interface BlogResponse {
3354
4263
  categoria?: CategoriaDto;
3355
4264
  categoriaId?: number;
3356
4265
  directoryId?: number;
4266
+ isOnHold?: boolean;
4267
+ directory?: DirectoryDto;
3357
4268
  }
3358
4269
  export interface BlogResponsePaginatedResponse {
3359
4270
  success?: boolean;
@@ -3376,6 +4287,8 @@ export interface Body {
3376
4287
  nossaHistoria?: string;
3377
4288
  solucoesPersonalizadas?: string;
3378
4289
  }
4290
+ export interface CallingConventions {
4291
+ }
3379
4292
  export interface Candidato {
3380
4293
  id?: number;
3381
4294
  ativo?: boolean;
@@ -3507,17 +4420,89 @@ export interface CargoResponse {
3507
4420
  jsonContent?: string;
3508
4421
  setorId?: number;
3509
4422
  }
3510
- export interface CargoResponsePaginatedResponse {
3511
- success?: boolean;
3512
- message?: string;
3513
- item?: CargoResponse[];
3514
- pagination?: SharedPaginatedJson;
3515
- items?: CargoResponse[];
4423
+ export interface CargoResponsePaginatedResponse {
4424
+ success?: boolean;
4425
+ message?: string;
4426
+ item?: CargoResponse[];
4427
+ pagination?: SharedPaginatedJson;
4428
+ items?: CargoResponse[];
4429
+ }
4430
+ export interface CargoResponseSharedApiResponse {
4431
+ success?: boolean;
4432
+ message?: string;
4433
+ item?: CargoResponse;
4434
+ }
4435
+ export interface Cart {
4436
+ id?: number;
4437
+ guid?: string;
4438
+ usuarioId?: number;
4439
+ createdAt?: string;
4440
+ updatedAt?: string;
4441
+ isFinalized?: boolean;
4442
+ finalizedAt?: string;
4443
+ usuario?: Usuario;
4444
+ items?: CartItem[];
4445
+ }
4446
+ export interface CartItem {
4447
+ id?: number;
4448
+ guid?: string;
4449
+ cartId?: number;
4450
+ tableAction?: string;
4451
+ tableId?: number;
4452
+ name?: string;
4453
+ imageUrl?: string;
4454
+ url?: string;
4455
+ sku?: string;
4456
+ pricePerUnit?: number;
4457
+ qty?: number;
4458
+ totalPrice?: number;
4459
+ cart?: Cart;
4460
+ }
4461
+ export interface CartItemRequest {
4462
+ usuarioId?: number;
4463
+ guid?: string;
4464
+ tableAction?: string;
4465
+ tableId?: number;
4466
+ name?: string;
4467
+ imageUrl?: string;
4468
+ url?: string;
4469
+ sku?: string;
4470
+ qty?: number;
4471
+ pricePerUnit?: number;
4472
+ }
4473
+ export interface CartItemResponse {
4474
+ id?: number;
4475
+ guid?: string;
4476
+ usuarioId?: number;
4477
+ tableAction?: string;
4478
+ tableId?: number;
4479
+ name?: string;
4480
+ imageUrl?: string;
4481
+ pricePerUnit?: number;
4482
+ qty?: number;
4483
+ totalPrice?: number;
4484
+ }
4485
+ export interface CartItemResponseSharedApiResponse {
4486
+ success?: boolean;
4487
+ message?: string;
4488
+ item?: CartItemResponse;
4489
+ }
4490
+ export interface CartRequest {
4491
+ usuarioId?: number;
4492
+ tableAction?: string;
4493
+ guid?: string;
4494
+ tableId?: number;
4495
+ }
4496
+ export interface CartResponse {
4497
+ id?: number;
4498
+ guid?: string;
4499
+ usuarioId?: number;
4500
+ items?: CartItemResponse[];
3516
4501
  }
3517
- export interface CargoResponseSharedApiResponse {
4502
+ export interface CartResponseSharedApiResponse {
3518
4503
  success?: boolean;
3519
4504
  message?: string;
3520
- item?: CargoResponse;
4505
+ item?: CartResponse;
3521
4506
  }
3522
4507
  export interface Categoria {
3523
4508
  id?: number;
@@ -3655,6 +4640,152 @@ export interface ChatListResponse {
3655
4640
  export interface ChatNewResponse {
3656
4641
  title?: string;
3657
4642
  }
4643
+ export interface CheckoutDto {
4644
+ providerType?: ProviderType;
4645
+ apiKey?: string;
4646
+ baseUrl?: string;
4647
+ customerName?: string;
4648
+ customerCpfCnpj?: string;
4649
+ customerEmail?: string;
4650
+ customerPhone?: string;
4651
+ customerObservations?: string;
4652
+ customerStreet?: string;
4653
+ customerNumber?: string;
4654
+ customerComplement?: string;
4655
+ customerDistrict?: string;
4656
+ customerCity?: string;
4657
+ customerState?: string;
4658
+ customerPostalCode?: string;
4659
+ customerCountry?: string;
4660
+ paymentDueDate?: string;
4661
+ paymentDescription?: string;
4662
+ paymentDaysAfterDueDateToRegistrationCancellation?: number;
4663
+ paymentExternalReference?: string;
4664
+ paymentInstallmentCount?: number;
4665
+ paymentTotalValue?: number;
4666
+ paymentInstallmentValue?: number;
4667
+ paymentPostalService?: boolean;
4668
+ paymentBillingType?: BillingType;
4669
+ paymentValue?: number;
4670
+ paymentCustomer?: string;
4671
+ paymentDiscountType?: string;
4672
+ paymentDiscountValue?: number;
4673
+ paymentDiscountDueDateLimitDays?: number;
4674
+ paymentInterestValue?: number;
4675
+ paymentFineValue?: number;
4676
+ paymentFineType?: string;
4677
+ paymentSplitWalletId?: string;
4678
+ paymentSplitFixedValue?: number;
4679
+ paymentSplitPercentualValue?: number;
4680
+ paymentSplitExternalReference?: string;
4681
+ paymentSplitDescription?: string;
4682
+ paymentCallbackSuccess?: string;
4683
+ paymentCallbackExpired?: string;
4684
+ paymentCallbackReceived?: string;
4685
+ paymentCallbackPaymentConfirmed?: string;
4686
+ paymentCreditCardToken?: string;
4687
+ subscriptionCycle?: BillingInterval;
4688
+ subscriptionNextDueDate?: string;
4689
+ subscriptionDescription?: string;
4690
+ subscriptionUpdatePendingPayments?: boolean;
4691
+ subscriptionBillingType?: BillingType;
4692
+ subscriptionValue?: number;
4693
+ subscriptionCustomer?: string;
4694
+ subscriptionDiscountType?: string;
4695
+ subscriptionDiscountValue?: number;
4696
+ subscriptionDiscountDueDateLimitDays?: number;
4697
+ subscriptionInterestValue?: number;
4698
+ subscriptionFineValue?: number;
4699
+ subscriptionCreditCardToken?: string;
4700
+ subscriptionFineType?: string;
4701
+ subscriptionSplitWalletId?: string;
4702
+ subscriptionSplitFixedValue?: number;
4703
+ subscriptionSplitPercentualValue?: number;
4704
+ subscriptionSplitExternalReference?: string;
4705
+ subscriptionSplitDescription?: string;
4706
+ subscriptionCallbackSuccess?: string;
4707
+ subscriptionCallbackExpired?: string;
4708
+ subscriptionCallbackReceived?: string;
4709
+ subscriptionCallbackPaymentConfirmed?: string;
4710
+ creditCardHolderName?: string;
4711
+ creditCardNumber?: string;
4712
+ creditCardExpiryMonth?: string;
4713
+ creditCardExpiryYear?: string;
4714
+ creditCardCCV?: string;
4715
+ remoteIp?: string;
4716
+ creditCardHolderInfoName?: string;
4717
+ creditCardHolderInfoEmail?: string;
4718
+ creditCardHolderInfoCpfCnpj?: string;
4719
+ creditCardHolderInfoPostalCode?: string;
4720
+ creditCardHolderInfoAddressNumber?: string;
4721
+ creditCardHolderInfoPhone?: string;
4722
+ creditCardHolderInfoAddressComplement?: string;
4723
+ creditCardHolderInfoMobilePhone?: string;
4724
+ }
4725
+ export interface CheckoutResponse {
4726
+ paymentId?: string;
4727
+ subscriptionId?: string;
4728
+ paymentStatus?: PaymentStatus;
4729
+ subscriptionStatus?: SubscriptionStatus;
4730
+ invoiceUrl?: string;
4731
+ bankSlipUrl?: string;
4732
+ pixQrCode?: string;
4733
+ pixQrCodeImage?: string;
4734
+ transactionReceiptUrl?: string;
4735
+ paymentDate?: string;
4736
+ billingType?: BillingType;
4737
+ statusPaymentSubscription?: PaymentStatus;
4738
+ }
4739
+ export interface CheckoutResponseResultDto {
4740
+ success?: boolean;
4741
+ errors?: PayHubException[];
4742
+ errorMessage?: string;
4743
+ result?: CheckoutResponse;
4744
+ }
4745
+ export interface CollaboratorCreateOrUpdateRequest {
4746
+ name: string;
4747
+ email: string;
4748
+ phone?: string;
4749
+ cpf: string;
4750
+ sector?: string;
4751
+ position?: string;
4752
+ role: string;
4753
+ managerId?: number;
4754
+ managerSecundaryId?: number;
4755
+ directorId?: number;
4756
+ startDateUtc?: string;
4757
+ endDateUtc?: string;
4758
+ ativo?: boolean;
4759
+ excluido?: boolean;
4760
+ }
4761
+ export interface CollaboratorDto {
4762
+ id?: number;
4763
+ name?: string;
4764
+ email?: string;
4765
+ cpf?: string;
4766
+ phone?: string;
4767
+ sector?: string;
4768
+ position?: string;
4769
+ role?: string;
4770
+ managerId?: number;
4771
+ managerName?: string;
4772
+ managerSecundaryId?: number;
4773
+ managerSecundaryName?: string;
4774
+ directorId?: number;
4775
+ directorName?: string;
4776
+ }
4777
+ export interface CollaboratorDtoApiResponse {
4778
+ success?: boolean;
4779
+ message?: string;
4780
+ item?: CollaboratorDto;
4781
+ }
4782
+ export interface CollaboratorDtoPaginatedResponse {
4783
+ success?: boolean;
4784
+ message?: string;
4785
+ item?: CollaboratorDto[];
4786
+ pagination?: PaginatedJson;
4787
+ items?: CollaboratorDto[];
4788
+ }
3658
4789
  export interface Commodity {
3659
4790
  id?: number;
3660
4791
  title: string;
@@ -3662,18 +4793,115 @@ export interface Commodity {
3662
4793
  iconType?: IconType;
3663
4794
  directoryCommodities?: DirectoryCommodity[];
3664
4795
  }
3665
- export interface Configs {
3666
- workspaces?: WorkspaceItems[];
3667
- configurations?: Configurations;
3668
- contents?: Contents;
4796
+ export interface ConfigurationSettingRequest {
4797
+ scope?: string;
4798
+ key?: string;
4799
+ value?: string;
4800
+ valueType?: string;
4801
+ isActive?: boolean;
4802
+ description?: string;
4803
+ seedVersion?: string;
4804
+ jsonContent?: string;
4805
+ }
4806
+ export interface ConfigurationSettingResponse {
4807
+ scope?: string;
4808
+ key?: string;
4809
+ value?: string;
4810
+ valueType?: string;
4811
+ isActive?: boolean;
4812
+ description?: string;
4813
+ seedVersion?: string;
4814
+ jsonContent?: string;
4815
+ id?: number;
4816
+ createdAt?: string;
4817
+ updatedAt?: string;
4818
+ }
4819
+ export interface ConfigurationSettingResponsePaginatedResponse {
4820
+ success?: boolean;
4821
+ message?: string;
4822
+ item?: ConfigurationSettingResponse[];
4823
+ pagination?: SharedPaginatedJson;
4824
+ items?: ConfigurationSettingResponse[];
4825
+ }
4826
+ export interface ConfigurationSettingResponseSharedApiResponse {
4827
+ success?: boolean;
4828
+ message?: string;
4829
+ item?: ConfigurationSettingResponse;
4830
+ }
4831
+ export interface ConfigurationTokenRequest {
4832
+ key?: string;
4833
+ provider?: string;
4834
+ token?: string;
4835
+ refreshToken?: string;
4836
+ tokenType?: string;
4837
+ expiresAt?: string;
4838
+ isSeed?: boolean;
4839
+ isActive?: boolean;
4840
+ isVisible?: boolean;
4841
+ description?: string;
4842
+ jsonContent?: string;
4843
+ }
4844
+ export interface ConfigurationTokenResponse {
4845
+ key?: string;
4846
+ provider?: string;
4847
+ token?: string;
4848
+ refreshToken?: string;
4849
+ tokenType?: string;
4850
+ expiresAt?: string;
4851
+ isSeed?: boolean;
4852
+ isActive?: boolean;
4853
+ isVisible?: boolean;
4854
+ description?: string;
4855
+ jsonContent?: string;
4856
+ id?: number;
4857
+ createdAt?: string;
4858
+ updatedAt?: string;
4859
+ }
4860
+ export interface ConfigurationTokenResponsePaginatedResponse {
4861
+ success?: boolean;
4862
+ message?: string;
4863
+ item?: ConfigurationTokenResponse[];
4864
+ pagination?: SharedPaginatedJson;
4865
+ items?: ConfigurationTokenResponse[];
4866
+ }
4867
+ export interface ConfigurationTokenResponseSharedApiResponse {
4868
+ success?: boolean;
4869
+ message?: string;
4870
+ item?: ConfigurationTokenResponse;
3669
4871
  }
3670
- export interface Configurations {
3671
- logo?: string;
3672
- primaryColor?: string;
3673
- secondaryColor?: string;
3674
- tertiaryColor?: string;
3675
- subscriptionModel?: string;
3676
- subscriptionPrice?: string;
4872
+ export interface ConstructorInfo {
4873
+ name?: string;
4874
+ declaringType?: Type;
4875
+ reflectedType?: Type;
4876
+ module?: Module;
4877
+ customAttributes?: CustomAttributeData[];
4878
+ isCollectible?: boolean;
4879
+ metadataToken?: number;
4880
+ attributes?: MethodAttributes;
4881
+ methodImplementationFlags?: MethodImplAttributes;
4882
+ callingConvention?: CallingConventions;
4883
+ isAbstract?: boolean;
4884
+ isConstructor?: boolean;
4885
+ isFinal?: boolean;
4886
+ isHideBySig?: boolean;
4887
+ isSpecialName?: boolean;
4888
+ isStatic?: boolean;
4889
+ isVirtual?: boolean;
4890
+ isAssembly?: boolean;
4891
+ isFamily?: boolean;
4892
+ isFamilyAndAssembly?: boolean;
4893
+ isFamilyOrAssembly?: boolean;
4894
+ isPrivate?: boolean;
4895
+ isPublic?: boolean;
4896
+ isConstructedGenericMethod?: boolean;
4897
+ isGenericMethod?: boolean;
4898
+ isGenericMethodDefinition?: boolean;
4899
+ containsGenericParameters?: boolean;
4900
+ methodHandle?: RuntimeMethodHandle;
4901
+ isSecurityCritical?: boolean;
4902
+ isSecuritySafeCritical?: boolean;
4903
+ isSecurityTransparent?: boolean;
4904
+ memberType?: MemberTypes;
3677
4905
  }
3678
4906
  export interface ContactDTO {
3679
4907
  name?: string;
@@ -3746,9 +4974,6 @@ export interface ContactResponseSharedApiResponse {
3746
4974
  message?: string;
3747
4975
  item?: ContactResponse;
3748
4976
  }
3749
- export interface Contents {
3750
- methodology?: string;
3751
- }
3752
4977
  export interface CourseModuleRequest {
3753
4978
  id?: number;
3754
4979
  courseId?: number;
@@ -3799,6 +5024,7 @@ export interface CourseRequest {
3799
5024
  }
3800
5025
  export interface CourseResponse {
3801
5026
  id?: number;
5027
+ guid?: string;
3802
5028
  title?: string;
3803
5029
  description?: string;
3804
5030
  coverImageUrl?: string;
@@ -3856,14 +5082,40 @@ export interface CreateAccountResult {
3856
5082
  status?: number;
3857
5083
  title?: string;
3858
5084
  message?: string;
3859
- validationErrors?: Record<string, any>;
5085
+ validationErrors?: Record<string, KeyString>;
3860
5086
  }
3861
5087
  export interface CreateAccountShortResponse {
3862
5088
  type?: string;
3863
5089
  phone?: string;
5090
+ name?: string;
3864
5091
  email: string;
3865
5092
  password: string;
3866
5093
  }
5094
+ export interface CreditCardInfoResponse {
5095
+ creditCardNumber?: string;
5096
+ creditCardBrand?: string;
5097
+ creditCardToken?: string;
5098
+ }
5099
+ export interface CreditDto {
5100
+ providerType?: ProviderType;
5101
+ apiKey?: string;
5102
+ baseUrl?: string;
5103
+ subscriptionId?: string;
5104
+ holderName?: string;
5105
+ number?: string;
5106
+ expiryMonth?: string;
5107
+ expiryYear?: string;
5108
+ ccv?: string;
5109
+ remoteIp?: string;
5110
+ holderInfoName?: string;
5111
+ holderInfoEmail?: string;
5112
+ holderInfoCpfCnpj?: string;
5113
+ holderInfoPostalCode?: string;
5114
+ holderInfoAddressNumber?: string;
5115
+ holderInfoPhone?: string;
5116
+ holderInfoAddressComplement?: string;
5117
+ holderInfoMobilePhone?: string;
5118
+ }
3867
5119
  export interface CursoRequest {
3868
5120
  id?: number;
3869
5121
  ativo?: boolean;
@@ -3910,9 +5162,28 @@ export interface CursoResponseSharedApiResponse {
3910
5162
  message?: string;
3911
5163
  item?: CursoResponse;
3912
5164
  }
5165
+ export interface CustomAttributeData {
5166
+ attributeType?: Type;
5167
+ constructor?: ConstructorInfo;
5168
+ constructorArguments?: CustomAttributeTypedArgument[];
5169
+ namedArguments?: CustomAttributeNamedArgument[];
5170
+ }
5171
+ export interface CustomAttributeNamedArgument {
5172
+ memberInfo?: MemberInfo;
5173
+ typedValue?: CustomAttributeTypedArgument;
5174
+ memberName?: string;
5175
+ isField?: boolean;
5176
+ }
5177
+ export interface CustomAttributeTypedArgument {
5178
+ argumentType?: Type;
5179
+ value?: any;
5180
+ }
3913
5181
  export interface DataResult {
3914
5182
  token?: string;
3915
5183
  }
5184
+ export interface DependsOnResponse {
5185
+ entitykey?: string;
5186
+ }
3916
5187
  export interface DepoimentoRequest {
3917
5188
  id?: number;
3918
5189
  ativo?: boolean;
@@ -4010,6 +5281,45 @@ export interface DirectoryDetail {
4010
5281
  additionalInfo?: string;
4011
5282
  directory?: DirectoryEntity;
4012
5283
  }
5284
+ export interface DirectoryDto {
5285
+ id?: number;
5286
+ ativo?: boolean;
5287
+ excluido?: boolean;
5288
+ destaque?: boolean;
5289
+ ordem?: number;
5290
+ dataCriacao?: string;
5291
+ dataEdicao?: string;
5292
+ titulo?: string;
5293
+ subtitulo?: string;
5294
+ descricao?: string;
5295
+ slug?: string;
5296
+ name?: string;
5297
+ categoriaId?: number;
5298
+ categoria?: CategoriaResponse;
5299
+ description?: string;
5300
+ url?: string;
5301
+ sku?: string;
5302
+ tags?: string;
5303
+ priceIndicator?: string;
5304
+ priceBRL?: string;
5305
+ priceBRLDecimal?: number;
5306
+ position?: number;
5307
+ isActive?: boolean;
5308
+ isDeleted?: boolean;
5309
+ isHighlighted?: boolean;
5310
+ isOnHold?: boolean;
5311
+ hasAccessibility?: boolean;
5312
+ entityKey?: string;
5313
+ jsonContent?: string;
5314
+ createdAt?: string;
5315
+ updatedAt?: string;
5316
+ guid?: string;
5317
+ address?: AddressResponse;
5318
+ lat?: string;
5319
+ lng?: string;
5320
+ uf?: string;
5321
+ localidade?: string;
5322
+ }
4013
5323
  export interface DirectoryEntity {
4014
5324
  id?: number;
4015
5325
  name: string;
@@ -4123,7 +5433,6 @@ export interface DirectoryResponse {
4123
5433
  isActive?: boolean;
4124
5434
  isDeleted?: boolean;
4125
5435
  isHighlighted?: boolean;
4126
- isOnHold?: boolean;
4127
5436
  hasAccessibility?: boolean;
4128
5437
  entityKey?: string;
4129
5438
  jsonContent?: string;
@@ -4135,8 +5444,9 @@ export interface DirectoryResponse {
4135
5444
  lng?: string;
4136
5445
  uf?: string;
4137
5446
  localidade?: string;
4138
- entityRelation?: Record<string, any>;
5447
+ entityRelation?: Record<string, Record<string, DynamicEntityGroup>>;
4139
5448
  blogs?: BlogResponse[];
5449
+ isOnHold?: boolean;
4140
5450
  }
4141
5451
  export interface DirectoryResponsePaginatedResponse {
4142
5452
  success?: boolean;
@@ -4159,7 +5469,7 @@ export interface DirectorySearchRequest {
4159
5469
  include?: string;
4160
5470
  page?: number;
4161
5471
  pageSize?: number;
4162
- filters?: Record<string, any>;
5472
+ filters?: Record<string, string>;
4163
5473
  sourceFilters?: SharedSourceFilter[];
4164
5474
  target?: string;
4165
5475
  onlyActives?: boolean;
@@ -4175,6 +5485,9 @@ export interface DirectorySearchRequest {
4175
5485
  sourceTable?: string;
4176
5486
  targetTable?: string;
4177
5487
  keys?: string;
5488
+ minRating?: number;
5489
+ maxRating?: number;
5490
+ isOnHold?: boolean;
4178
5491
  }
4179
5492
  export interface DirectoryUpdateRequest {
4180
5493
  id?: number;
@@ -4216,6 +5529,11 @@ export interface DirectoryUpdateRequest {
4216
5529
  localidade?: string;
4217
5530
  blogs?: BlogResponse[];
4218
5531
  }
5532
+ export interface DiscountDto {
5533
+ type?: string;
5534
+ value?: number;
5535
+ dueDateLimitDays?: number;
5536
+ }
4219
5537
  export interface DriveFileCreateRequest {
4220
5538
  folderId: string;
4221
5539
  jsonContent?: string;
@@ -4327,53 +5645,43 @@ export interface DrivePermissionUserResponseListApiResponse {
4327
5645
  export interface DynamicEntityGroup {
4328
5646
  items?: any[];
4329
5647
  }
5648
+ export interface EmailBrevoRequest {
5649
+ from?: string;
5650
+ to?: string[];
5651
+ subject?: string;
5652
+ htmlContent?: string;
5653
+ provider?: string;
5654
+ }
5655
+ export interface EmailRequest {
5656
+ provider?: string;
5657
+ from?: string;
5658
+ to?: string[];
5659
+ subject?: string;
5660
+ htmlContent?: string;
5661
+ metadata?: Record<string, string>;
5662
+ }
4330
5663
  export interface EntityRelationRequest {
4331
- titulo?: string;
4332
- subtitulo?: string;
4333
- descricao?: string;
4334
- url?: string;
4335
- slug?: string;
4336
- tags?: string;
4337
- jsonContent?: string;
4338
- relationType?: string;
4339
- entityKey?: string;
4340
- ordem?: number;
4341
- destaque?: boolean;
4342
- sourceTable?: string;
5664
+ entityKeySource?: string;
5665
+ entityKeyTarget?: string;
4343
5666
  sourceId?: number;
4344
- targetTable?: string;
4345
5667
  targetId?: number;
4346
- component?: string;
4347
- tenantId?: string;
4348
- lang?: string;
4349
- groupId?: string;
4350
5668
  ativo?: boolean;
5669
+ jsonContent?: string;
5670
+ titulo?: string;
4351
5671
  }
4352
5672
  export interface EntityRelationResponse {
4353
- titulo?: string;
4354
- subtitulo?: string;
4355
- descricao?: string;
4356
- url?: string;
4357
- slug?: string;
4358
- tags?: string;
4359
- jsonContent?: string;
4360
- relationType?: string;
4361
- entityKey?: string;
4362
- ordem?: number;
4363
- destaque?: boolean;
4364
- sourceTable?: string;
5673
+ entityKeySource?: string;
5674
+ entityKeyTarget?: string;
4365
5675
  sourceId?: number;
4366
- targetTable?: string;
4367
5676
  targetId?: number;
4368
- component?: string;
4369
- tenantId?: string;
4370
- lang?: string;
4371
- groupId?: string;
5677
+ jsonContent?: string;
5678
+ titulo?: string;
4372
5679
  id?: number;
4373
5680
  ativo?: boolean;
4374
5681
  excluido?: boolean;
4375
5682
  dataCriacao?: string;
4376
5683
  dataEdicao?: string;
5684
+ related?: EntityRelationResponse;
4377
5685
  }
4378
5686
  export interface EntityRelationResponsePaginatedResponse {
4379
5687
  success?: boolean;
@@ -4467,7 +5775,36 @@ export interface ErrorResult {
4467
5775
  status?: number;
4468
5776
  title?: string;
4469
5777
  message?: string;
4470
- validationErrors?: Record<string, any>;
5778
+ validationErrors?: Record<string, ErrorKeyString>;
5779
+ }
5780
+ export interface EventAttributes {
5781
+ }
5782
+ export interface EventInfo {
5783
+ name?: string;
5784
+ declaringType?: Type;
5785
+ reflectedType?: Type;
5786
+ module?: Module;
5787
+ customAttributes?: CustomAttributeData[];
5788
+ isCollectible?: boolean;
5789
+ metadataToken?: number;
5790
+ memberType?: MemberTypes;
5791
+ attributes?: EventAttributes;
5792
+ isSpecialName?: boolean;
5793
+ addMethod?: MethodInfo;
5794
+ removeMethod?: MethodInfo;
5795
+ raiseMethod?: MethodInfo;
5796
+ isMulticast?: boolean;
5797
+ eventHandlerType?: Type;
5798
+ }
5799
+ export interface Exception {
5800
+ targetSite?: MethodBase;
5801
+ message?: string;
5802
+ data?: Record<string, any>;
5803
+ innerException?: Exception;
5804
+ helpLink?: string;
5805
+ source?: string;
5806
+ hResult?: number;
5807
+ stackTrace?: string;
4471
5808
  }
4472
5809
  export interface FaqRequest {
4473
5810
  id?: number;
@@ -4569,6 +5906,36 @@ export interface FeatureResponseSharedApiResponse {
4569
5906
  message?: string;
4570
5907
  item?: FeatureResponse;
4571
5908
  }
5909
+ export interface FieldAttributes {
5910
+ }
5911
+ export interface FieldInfo {
5912
+ name?: string;
5913
+ declaringType?: Type;
5914
+ reflectedType?: Type;
5915
+ module?: Module;
5916
+ customAttributes?: CustomAttributeData[];
5917
+ isCollectible?: boolean;
5918
+ metadataToken?: number;
5919
+ memberType?: MemberTypes;
5920
+ attributes?: FieldAttributes;
5921
+ fieldType?: Type;
5922
+ isInitOnly?: boolean;
5923
+ isLiteral?: boolean;
5924
+ isNotSerialized?: boolean;
5925
+ isPinvokeImpl?: boolean;
5926
+ isSpecialName?: boolean;
5927
+ isStatic?: boolean;
5928
+ isAssembly?: boolean;
5929
+ isFamily?: boolean;
5930
+ isFamilyAndAssembly?: boolean;
5931
+ isFamilyOrAssembly?: boolean;
5932
+ isPrivate?: boolean;
5933
+ isPublic?: boolean;
5934
+ isSecurityCritical?: boolean;
5935
+ isSecuritySafeCritical?: boolean;
5936
+ isSecurityTransparent?: boolean;
5937
+ fieldHandle?: RuntimeFieldHandle;
5938
+ }
4572
5939
  export interface FilterItem {
4573
5940
  id?: number;
4574
5941
  name?: string;
@@ -4578,6 +5945,7 @@ export interface FilterItem {
4578
5945
  export interface FilterRequest {
4579
5946
  routes?: string[];
4580
5947
  entityRoutes?: string[];
5948
+ onlyActives?: boolean;
4581
5949
  }
4582
5950
  export interface FilterResponse {
4583
5951
  label?: string;
@@ -4586,6 +5954,10 @@ export interface FilterResponse {
4586
5954
  component?: string;
4587
5955
  items?: FilterItem[];
4588
5956
  }
5957
+ export interface FineDto {
5958
+ value?: number;
5959
+ type?: string;
5960
+ }
4589
5961
  export interface FornecedorRequest {
4590
5962
  id?: number;
4591
5963
  ativo?: boolean;
@@ -4658,10 +6030,65 @@ export interface FornecedorResponseSharedApiResponse {
4658
6030
  message?: string;
4659
6031
  item?: FornecedorResponse;
4660
6032
  }
6033
+ export interface ForumRequest {
6034
+ id?: number;
6035
+ ativo?: boolean;
6036
+ excluido?: boolean;
6037
+ destaque?: boolean;
6038
+ ordem?: number;
6039
+ dataCriacao?: string;
6040
+ dataEdicao?: string;
6041
+ titulo?: string;
6042
+ subtitulo?: string;
6043
+ descricao?: string;
6044
+ tags?: string;
6045
+ url?: string;
6046
+ slug?: string;
6047
+ jsonContent?: string;
6048
+ autorId?: number;
6049
+ }
6050
+ export interface ForumResponse {
6051
+ id?: number;
6052
+ ativo?: boolean;
6053
+ excluido?: boolean;
6054
+ destaque?: boolean;
6055
+ ordem?: number;
6056
+ dataCriacao?: string;
6057
+ dataEdicao?: string;
6058
+ titulo?: string;
6059
+ subtitulo?: string;
6060
+ descricao?: string;
6061
+ tags?: string;
6062
+ url?: string;
6063
+ slug?: string;
6064
+ jsonContent?: string;
6065
+ autorId?: number;
6066
+ autor?: Usuario;
6067
+ quantidadeComentarios?: number;
6068
+ guid?: string;
6069
+ }
6070
+ export interface ForumResponsePaginatedResponse {
6071
+ success?: boolean;
6072
+ message?: string;
6073
+ item?: ForumResponse[];
6074
+ pagination?: SharedPaginatedJson;
6075
+ items?: ForumResponse[];
6076
+ }
6077
+ export interface GenericParameterAttributes {
6078
+ }
4661
6079
  export interface GoogleLoginRequest {
4662
6080
  token?: string;
4663
6081
  type?: string;
4664
6082
  }
6083
+ export interface GrantAccessRequest {
6084
+ usuarioId?: number;
6085
+ tableAction?: string;
6086
+ tableId?: number;
6087
+ accessType?: string;
6088
+ grantedBy?: number;
6089
+ note?: string;
6090
+ endDate?: string;
6091
+ }
4665
6092
  export interface Head {
4666
6093
  pageTitle?: string;
4667
6094
  metaDescription?: string;
@@ -4774,11 +6201,61 @@ export interface HostServerResponseSharedApiResponse {
4774
6201
  message?: string;
4775
6202
  item?: HostServerResponse;
4776
6203
  }
6204
+ export interface ICustomAttributeProvider {
6205
+ }
4777
6206
  export interface IconType {
4778
6207
  id?: number;
4779
6208
  name: string;
4780
6209
  iconUrl?: string;
4781
6210
  }
6211
+ export interface InfractionTotalResponse {
6212
+ userId?: number;
6213
+ userName?: string;
6214
+ totalPoints?: number;
6215
+ }
6216
+ export interface InfractionTotalResponsePaginatedResponse {
6217
+ success?: boolean;
6218
+ message?: string;
6219
+ item?: InfractionTotalResponse[];
6220
+ pagination?: PaginatedJson;
6221
+ items?: InfractionTotalResponse[];
6222
+ }
6223
+ export interface InfractionUserCreateOrUpdateRequest {
6224
+ userId?: number;
6225
+ infractionId?: number;
6226
+ }
6227
+ export interface InfractionUserResponse {
6228
+ id?: number;
6229
+ infractionId?: number;
6230
+ infractionName?: string;
6231
+ point?: number;
6232
+ userId?: number;
6233
+ createdAt?: string;
6234
+ }
6235
+ export interface InfractionUserResponseApiResponse {
6236
+ success?: boolean;
6237
+ message?: string;
6238
+ item?: InfractionUserResponse;
6239
+ }
6240
+ export interface InfractionUserResponseListApiResponse {
6241
+ success?: boolean;
6242
+ message?: string;
6243
+ item?: InfractionUserResponse[];
6244
+ }
6245
+ export interface InfractionUserResponsePaginatedResponse {
6246
+ success?: boolean;
6247
+ message?: string;
6248
+ item?: InfractionUserResponse[];
6249
+ pagination?: PaginatedJson;
6250
+ items?: InfractionUserResponse[];
6251
+ }
6252
+ export interface Int32ApiResponse {
6253
+ success?: boolean;
6254
+ message?: string;
6255
+ item?: number;
6256
+ }
6257
+ export interface IntPtr {
6258
+ }
4782
6259
  export interface InteractionCategoryRatingRequest {
4783
6260
  categoryName?: string;
4784
6261
  rating?: number;
@@ -4797,6 +6274,8 @@ export interface InteractionConfigRequest {
4797
6274
  allowedReactions?: string;
4798
6275
  showCategories?: boolean;
4799
6276
  categories?: string;
6277
+ autoApprove?: boolean;
6278
+ bannedWords?: string;
4800
6279
  }
4801
6280
  export interface InteractionConfigResponse {
4802
6281
  id?: number;
@@ -4810,11 +6289,8 @@ export interface InteractionConfigResponse {
4810
6289
  allowedReactions?: string;
4811
6290
  showCategories?: boolean;
4812
6291
  categories?: string;
4813
- }
4814
- export interface InteractionConfigResponseApiResponse {
4815
- success?: boolean;
4816
- message?: string;
4817
- item?: InteractionConfigResponse;
6292
+ bannedWords?: string;
6293
+ autoApprove?: boolean;
4818
6294
  }
4819
6295
  export interface InteractionConfigResponsePaginatedResponse {
4820
6296
  success?: boolean;
@@ -4823,12 +6299,17 @@ export interface InteractionConfigResponsePaginatedResponse {
4823
6299
  pagination?: PaginatedJson;
4824
6300
  items?: InteractionConfigResponse[];
4825
6301
  }
6302
+ export interface InteractionConfigResponseSharedApiResponse {
6303
+ success?: boolean;
6304
+ message?: string;
6305
+ item?: InteractionConfigResponse;
6306
+ }
4826
6307
  export interface InteractionDetailResponse {
4827
6308
  rate?: RateInteraction;
4828
6309
  items?: InteractionItemResponse[];
4829
6310
  reactions?: InteractionReactionResponse[];
4830
6311
  }
4831
- export interface InteractionDetailResponseApiResponse {
6312
+ export interface InteractionDetailResponseSharedApiResponse {
4832
6313
  success?: boolean;
4833
6314
  message?: string;
4834
6315
  item?: InteractionDetailResponse;
@@ -4884,12 +6365,16 @@ export interface InteractionReactionRequest {
4884
6365
  export interface InteractionReactionResponse {
4885
6366
  reactionType?: string;
4886
6367
  count?: number;
6368
+ id?: number;
4887
6369
  }
4888
6370
  export interface InteractionReactionResponseApiResponse {
4889
6371
  success?: boolean;
4890
6372
  message?: string;
4891
6373
  item?: InteractionReactionResponse;
4892
6374
  }
6375
+ export interface InterestDto {
6376
+ value?: number;
6377
+ }
4893
6378
  export interface Item {
4894
6379
  id?: number;
4895
6380
  ordem?: number;
@@ -5075,6 +6560,8 @@ export interface JobOpportunityXCandidato {
5075
6560
  export interface KeyString {
5076
6561
  errors?: string[];
5077
6562
  }
6563
+ export interface LayoutKind {
6564
+ }
5078
6565
  export interface LessonRequest {
5079
6566
  id?: number;
5080
6567
  moduleId?: number;
@@ -5094,6 +6581,10 @@ export interface LessonRequest {
5094
6581
  description?: string;
5095
6582
  isFeatured?: boolean;
5096
6583
  updatedBy?: number;
6584
+ status?: LessonStatusEnum;
6585
+ lessonType?: LessonTypeEnum;
6586
+ videoSource?: VideoSourceEnum;
6587
+ difficulty?: string;
5097
6588
  }
5098
6589
  export interface LessonResponse {
5099
6590
  id?: number;
@@ -5115,6 +6606,15 @@ export interface LessonResponse {
5115
6606
  description?: string;
5116
6607
  isFeatured?: boolean;
5117
6608
  updatedBy?: number;
6609
+ moduleNames?: string[];
6610
+ viewsCount?: number;
6611
+ status?: LessonStatusEnum;
6612
+ statusName?: string;
6613
+ lessonType?: LessonTypeEnum;
6614
+ lessonTypeName?: string;
6615
+ videoSource?: VideoSourceEnum;
6616
+ videoSourceName?: string;
6617
+ difficulty?: string;
5118
6618
  }
5119
6619
  export interface LessonResponsePaginatedResponse {
5120
6620
  success?: boolean;
@@ -5128,11 +6628,9 @@ export interface LessonResponseSharedApiResponse {
5128
6628
  message?: string;
5129
6629
  item?: LessonResponse;
5130
6630
  }
5131
- export interface ListPageDTO {
5132
- page?: Item;
5133
- pages?: Item[];
5134
- categorias?: Item[];
5135
- pagination?: Pagination;
6631
+ export interface LessonStatusEnum {
6632
+ }
6633
+ export interface LessonTypeEnum {
5136
6634
  }
5137
6635
  export interface LoginResult {
5138
6636
  data?: DataResult;
@@ -5260,6 +6758,10 @@ export interface LojaXUsuario {
5260
6758
  usuarioId?: number;
5261
6759
  usuario?: Usuario;
5262
6760
  }
6761
+ export interface LojasResponse {
6762
+ titulo?: string;
6763
+ id?: number;
6764
+ }
5263
6765
  export interface MarcaRequest {
5264
6766
  id?: number;
5265
6767
  ativo?: boolean;
@@ -5306,11 +6808,127 @@ export interface MarcaResponseSharedApiResponse {
5306
6808
  message?: string;
5307
6809
  item?: MarcaResponse;
5308
6810
  }
6811
+ export interface MemberInfo {
6812
+ memberType?: MemberTypes;
6813
+ name?: string;
6814
+ declaringType?: Type;
6815
+ reflectedType?: Type;
6816
+ module?: Module;
6817
+ customAttributes?: CustomAttributeData[];
6818
+ isCollectible?: boolean;
6819
+ metadataToken?: number;
6820
+ }
6821
+ export interface MemberTypes {
6822
+ }
5309
6823
  export interface MessageChatResponse {
5310
6824
  message?: string;
5311
6825
  isChatAnswer?: boolean;
5312
6826
  time?: string;
5313
6827
  }
6828
+ export interface MethodAttributes {
6829
+ }
6830
+ export interface MethodBase {
6831
+ memberType?: MemberTypes;
6832
+ name?: string;
6833
+ declaringType?: Type;
6834
+ reflectedType?: Type;
6835
+ module?: Module;
6836
+ customAttributes?: CustomAttributeData[];
6837
+ isCollectible?: boolean;
6838
+ metadataToken?: number;
6839
+ attributes?: MethodAttributes;
6840
+ methodImplementationFlags?: MethodImplAttributes;
6841
+ callingConvention?: CallingConventions;
6842
+ isAbstract?: boolean;
6843
+ isConstructor?: boolean;
6844
+ isFinal?: boolean;
6845
+ isHideBySig?: boolean;
6846
+ isSpecialName?: boolean;
6847
+ isStatic?: boolean;
6848
+ isVirtual?: boolean;
6849
+ isAssembly?: boolean;
6850
+ isFamily?: boolean;
6851
+ isFamilyAndAssembly?: boolean;
6852
+ isFamilyOrAssembly?: boolean;
6853
+ isPrivate?: boolean;
6854
+ isPublic?: boolean;
6855
+ isConstructedGenericMethod?: boolean;
6856
+ isGenericMethod?: boolean;
6857
+ isGenericMethodDefinition?: boolean;
6858
+ containsGenericParameters?: boolean;
6859
+ methodHandle?: RuntimeMethodHandle;
6860
+ isSecurityCritical?: boolean;
6861
+ isSecuritySafeCritical?: boolean;
6862
+ isSecurityTransparent?: boolean;
6863
+ }
6864
+ export interface MethodImplAttributes {
6865
+ }
6866
+ export interface MethodInfo {
6867
+ name?: string;
6868
+ declaringType?: Type;
6869
+ reflectedType?: Type;
6870
+ module?: Module;
6871
+ customAttributes?: CustomAttributeData[];
6872
+ isCollectible?: boolean;
6873
+ metadataToken?: number;
6874
+ attributes?: MethodAttributes;
6875
+ methodImplementationFlags?: MethodImplAttributes;
6876
+ callingConvention?: CallingConventions;
6877
+ isAbstract?: boolean;
6878
+ isConstructor?: boolean;
6879
+ isFinal?: boolean;
6880
+ isHideBySig?: boolean;
6881
+ isSpecialName?: boolean;
6882
+ isStatic?: boolean;
6883
+ isVirtual?: boolean;
6884
+ isAssembly?: boolean;
6885
+ isFamily?: boolean;
6886
+ isFamilyAndAssembly?: boolean;
6887
+ isFamilyOrAssembly?: boolean;
6888
+ isPrivate?: boolean;
6889
+ isPublic?: boolean;
6890
+ isConstructedGenericMethod?: boolean;
6891
+ isGenericMethod?: boolean;
6892
+ isGenericMethodDefinition?: boolean;
6893
+ containsGenericParameters?: boolean;
6894
+ methodHandle?: RuntimeMethodHandle;
6895
+ isSecurityCritical?: boolean;
6896
+ isSecuritySafeCritical?: boolean;
6897
+ isSecurityTransparent?: boolean;
6898
+ memberType?: MemberTypes;
6899
+ returnParameter?: ParameterInfo;
6900
+ returnType?: Type;
6901
+ returnTypeCustomAttributes?: ICustomAttributeProvider;
6902
+ }
6903
+ export interface Module {
6904
+ assembly?: Assembly;
6905
+ fullyQualifiedName?: string;
6906
+ name?: string;
6907
+ mdStreamVersion?: number;
6908
+ moduleVersionId?: string;
6909
+ scopeName?: string;
6910
+ moduleHandle?: ModuleHandle;
6911
+ customAttributes?: CustomAttributeData[];
6912
+ metadataToken?: number;
6913
+ }
6914
+ export interface ModuleAssociationItemDto {
6915
+ moduleId?: number;
6916
+ nomeModule?: string;
6917
+ order?: number;
6918
+ idModuleLessons?: number;
6919
+ }
6920
+ export interface ModuleAssociationsResponse {
6921
+ vinculados?: ModuleAssociationItemDto[];
6922
+ disponiveis?: ModuleAssociationItemDto[];
6923
+ }
6924
+ export interface ModuleAssociationsResponseSharedApiResponse {
6925
+ success?: boolean;
6926
+ message?: string;
6927
+ item?: ModuleAssociationsResponse;
6928
+ }
6929
+ export interface ModuleHandle {
6930
+ mdStreamVersion?: number;
6931
+ }
5314
6932
  export interface ModuleLessonRequest {
5315
6933
  id?: number;
5316
6934
  moduleId?: number;
@@ -5387,6 +7005,24 @@ export interface ModuleResponseSharedApiResponse {
5387
7005
  message?: string;
5388
7006
  item?: ModuleResponse;
5389
7007
  }
7008
+ export interface MyEvaluationResponseDto {
7009
+ type?: string;
7010
+ id?: number;
7011
+ title?: string;
7012
+ userName?: string;
7013
+ managerName?: string;
7014
+ hasResponded?: boolean;
7015
+ submittedAt?: string;
7016
+ startDateUtc?: string;
7017
+ endDateUtc?: string;
7018
+ }
7019
+ export interface MyEvaluationResponseDtoPaginatedResponse {
7020
+ success?: boolean;
7021
+ message?: string;
7022
+ item?: MyEvaluationResponseDto[];
7023
+ pagination?: PaginatedJson;
7024
+ items?: MyEvaluationResponseDto[];
7025
+ }
5390
7026
  export interface NoticiaRequest {
5391
7027
  id?: number;
5392
7028
  ativo?: boolean;
@@ -5433,6 +7069,11 @@ export interface NoticiaResponseSharedApiResponse {
5433
7069
  message?: string;
5434
7070
  item?: NoticiaResponse;
5435
7071
  }
7072
+ export interface ObjectSharedApiResponse {
7073
+ success?: boolean;
7074
+ message?: string;
7075
+ item?: any;
7076
+ }
5436
7077
  export interface ObjetoRequest {
5437
7078
  id?: number;
5438
7079
  ativo?: boolean;
@@ -5479,6 +7120,61 @@ export interface ObjetoResponseSharedApiResponse {
5479
7120
  message?: string;
5480
7121
  item?: ObjetoResponse;
5481
7122
  }
7123
+ export interface Order {
7124
+ id?: number;
7125
+ usuarioId?: number;
7126
+ usuario?: Usuario;
7127
+ status?: OrderStatusEnum;
7128
+ total?: number;
7129
+ createdAt?: string;
7130
+ items?: OrderItem[];
7131
+ cartGuid?: string;
7132
+ orderNumber?: string;
7133
+ paymentProviderId?: string;
7134
+ }
7135
+ export interface OrderByCartCheckoutRequest {
7136
+ checkout?: CheckoutDto;
7137
+ cartOrder?: OrderByCartRequest;
7138
+ }
7139
+ export interface OrderByCartRequest {
7140
+ usuarioId?: number;
7141
+ cartGuid?: string;
7142
+ }
7143
+ export interface OrderCheckoutRequest {
7144
+ checkout?: CheckoutDto;
7145
+ order?: OrderRequest;
7146
+ }
7147
+ export interface OrderItem {
7148
+ id?: number;
7149
+ orderId?: number;
7150
+ tableAction?: string;
7151
+ tableId?: number;
7152
+ name?: string;
7153
+ imageUrl?: string;
7154
+ isBonus?: boolean;
7155
+ sku?: string;
7156
+ pricePerUnit?: number;
7157
+ qty?: number;
7158
+ totalPrice?: number;
7159
+ order?: Order;
7160
+ }
7161
+ export interface OrderItemDto {
7162
+ tableAction?: string;
7163
+ tableId?: number;
7164
+ name?: string;
7165
+ imageUrl?: string;
7166
+ sku?: string;
7167
+ pricePerUnit?: number;
7168
+ qty?: number;
7169
+ totalPrice?: number;
7170
+ isBonus?: boolean;
7171
+ }
7172
+ export interface OrderRequest {
7173
+ usuarioId?: number;
7174
+ items?: OrderItemDto[];
7175
+ }
7176
+ export interface OrderStatusEnum {
7177
+ }
5482
7178
  export interface PageDTO {
5483
7179
  page?: Item;
5484
7180
  paginas?: Item[];
@@ -5620,25 +7316,101 @@ export interface Pagination {
5620
7316
  totalItems?: number;
5621
7317
  pages?: number[];
5622
7318
  }
5623
- export interface PaymentOrderRequest {
5624
- paymentType?: string;
5625
- productId?: string;
5626
- cardToken?: string;
5627
- installments?: number;
5628
- }
5629
- export interface PaymentOrderResponse {
5630
- order?: string;
5631
- transactionId?: string;
5632
- isOk?: boolean;
5633
- qrCode?: string;
5634
- qrCodeUrl?: string;
5635
- expiresIn?: number;
5636
- amount?: number;
5637
- payId?: string;
5638
- isPaid?: boolean;
5639
- message?: string;
5640
- qrCodeCheckin?: string;
5641
- courseId?: number;
7319
+ export interface ParameterAttributes {
7320
+ }
7321
+ export interface ParameterInfo {
7322
+ attributes?: ParameterAttributes;
7323
+ member?: MemberInfo;
7324
+ name?: string;
7325
+ parameterType?: Type;
7326
+ position?: number;
7327
+ isIn?: boolean;
7328
+ isLcid?: boolean;
7329
+ isOptional?: boolean;
7330
+ isOut?: boolean;
7331
+ isRetval?: boolean;
7332
+ defaultValue?: any;
7333
+ rawDefaultValue?: any;
7334
+ hasDefaultValue?: boolean;
7335
+ customAttributes?: CustomAttributeData[];
7336
+ metadataToken?: number;
7337
+ }
7338
+ export interface PayHubException {
7339
+ message?: string;
7340
+ code?: string;
7341
+ field?: string;
7342
+ innerException?: Exception;
7343
+ }
7344
+ export interface PaymentStatus {
7345
+ }
7346
+ export interface PdiCreateOrUpdateRequest {
7347
+ title?: string;
7348
+ description?: string;
7349
+ startDateUtc?: string;
7350
+ endDateUtc?: string;
7351
+ jsonQuestions?: string;
7352
+ sector?: string;
7353
+ status?: string;
7354
+ integrationType?: PdiIntegrationType;
7355
+ }
7356
+ export interface PdiIntegrationType {
7357
+ }
7358
+ export interface PdiResponse {
7359
+ id?: number;
7360
+ title?: string;
7361
+ description?: string;
7362
+ status?: string;
7363
+ percentageCompleted?: number;
7364
+ usersCompleted?: number;
7365
+ usersTotal?: number;
7366
+ startDateUtc?: string;
7367
+ endDateUtc?: string;
7368
+ jsonQuestions?: string;
7369
+ sector?: string;
7370
+ integrationTypeName?: string;
7371
+ isIntegration?: boolean;
7372
+ }
7373
+ export interface PdiResponseApiResponse {
7374
+ success?: boolean;
7375
+ message?: string;
7376
+ item?: PdiResponse;
7377
+ }
7378
+ export interface PdiResponsePaginatedResponse {
7379
+ success?: boolean;
7380
+ message?: string;
7381
+ item?: PdiResponse[];
7382
+ pagination?: SharedPaginatedJson;
7383
+ items?: PdiResponse[];
7384
+ }
7385
+ export interface PdiSubmitResponseRequest {
7386
+ pdiId?: number;
7387
+ jsonAnswers?: string;
7388
+ integrationType?: PdiIntegrationType;
7389
+ }
7390
+ export interface PdiUserDetailResponseDto {
7391
+ id?: number;
7392
+ userName?: string;
7393
+ jsonAnswers?: string;
7394
+ submittedAt?: string;
7395
+ }
7396
+ export interface PdiUserDetailResponseDtoIEnumerableApiResponse {
7397
+ success?: boolean;
7398
+ message?: string;
7399
+ item?: PdiUserDetailResponseDto[];
7400
+ }
7401
+ export interface PdiUserResponseDto {
7402
+ id?: number;
7403
+ userName?: string;
7404
+ position?: string;
7405
+ manager?: string;
7406
+ role?: string;
7407
+ jsonAnswers?: string;
7408
+ submittedAt?: string;
7409
+ }
7410
+ export interface PdiUserResponseDtoApiResponse {
7411
+ success?: boolean;
7412
+ message?: string;
7413
+ item?: PdiUserResponseDto;
5642
7414
  }
5643
7415
  export interface Permission {
5644
7416
  id?: number;
@@ -5649,7 +7421,11 @@ export interface Permission {
5649
7421
  createdAt?: string;
5650
7422
  updatedAt?: string;
5651
7423
  rolePermissions?: RolePermission[];
5652
- subscriptionPlanPermissions?: SubscriptionPlanPermission[];
7424
+ }
7425
+ export interface PixTransactionResponse {
7426
+ encodedImage?: string;
7427
+ payload?: string;
7428
+ expirationDate?: string;
5653
7429
  }
5654
7430
  export interface PortfolioRequest {
5655
7431
  id?: number;
@@ -5756,6 +7532,69 @@ export interface ProdutoResponseSharedApiResponse {
5756
7532
  message?: string;
5757
7533
  item?: ProdutoResponse;
5758
7534
  }
7535
+ export interface PropertyAttributes {
7536
+ }
7537
+ export interface PropertyInfo {
7538
+ name?: string;
7539
+ declaringType?: Type;
7540
+ reflectedType?: Type;
7541
+ module?: Module;
7542
+ customAttributes?: CustomAttributeData[];
7543
+ isCollectible?: boolean;
7544
+ metadataToken?: number;
7545
+ memberType?: MemberTypes;
7546
+ propertyType?: Type;
7547
+ attributes?: PropertyAttributes;
7548
+ isSpecialName?: boolean;
7549
+ canRead?: boolean;
7550
+ canWrite?: boolean;
7551
+ getMethod?: MethodInfo;
7552
+ setMethod?: MethodInfo;
7553
+ }
7554
+ export interface ProviderType {
7555
+ }
7556
+ export interface QtyChangeResult {
7557
+ itemGuid?: string;
7558
+ qty?: number;
7559
+ }
7560
+ export interface QtyChangeResultSharedApiResponse {
7561
+ success?: boolean;
7562
+ message?: string;
7563
+ item?: QtyChangeResult;
7564
+ }
7565
+ export interface QuickSurveyCreateOrUpdateRequest {
7566
+ title?: string;
7567
+ description?: string;
7568
+ indicator?: string;
7569
+ jsonQuestions?: string;
7570
+ sector?: string;
7571
+ status?: string;
7572
+ }
7573
+ export interface QuickSurveyResponse {
7574
+ id?: number;
7575
+ title?: string;
7576
+ description?: string;
7577
+ indicator?: string;
7578
+ createdAt?: string;
7579
+ jsonQuestions?: string;
7580
+ sector?: string;
7581
+ status?: string;
7582
+ }
7583
+ export interface QuickSurveyResponseApiResponse {
7584
+ success?: boolean;
7585
+ message?: string;
7586
+ item?: QuickSurveyResponse;
7587
+ }
7588
+ export interface QuickSurveyResponsePaginatedResponse {
7589
+ success?: boolean;
7590
+ message?: string;
7591
+ item?: QuickSurveyResponse[];
7592
+ pagination?: PaginatedJson;
7593
+ items?: QuickSurveyResponse[];
7594
+ }
7595
+ export interface QuickSurveyUserResponseRequest {
7596
+ jsonAnswers?: string;
7597
+ }
5759
7598
  export interface RateInteraction {
5760
7599
  rating?: number;
5761
7600
  respondents?: number;
@@ -5767,6 +7606,21 @@ export interface RateInteractionItem {
5767
7606
  rating?: string;
5768
7607
  respondents?: number;
5769
7608
  }
7609
+ export interface RelatedParams {
7610
+ entityKey?: string;
7611
+ search?: string;
7612
+ createdFrom?: string;
7613
+ createdTo?: string;
7614
+ orderBy?: string;
7615
+ include?: string;
7616
+ page?: number;
7617
+ pageSize?: number;
7618
+ filters?: Record<string, string>;
7619
+ sourceFilters?: SharedSourceFilter[];
7620
+ target?: TargetResponse;
7621
+ onlyActives?: boolean;
7622
+ source?: SourceResponse;
7623
+ }
5770
7624
  export interface RelationNodeResponse {
5771
7625
  table: string;
5772
7626
  id: number;
@@ -5825,6 +7679,15 @@ export interface RolesResponseSharedApiResponse {
5825
7679
  message?: string;
5826
7680
  item?: RolesResponse;
5827
7681
  }
7682
+ export interface RuntimeFieldHandle {
7683
+ value?: IntPtr;
7684
+ }
7685
+ export interface RuntimeMethodHandle {
7686
+ value?: IntPtr;
7687
+ }
7688
+ export interface RuntimeTypeHandle {
7689
+ value?: IntPtr;
7690
+ }
5828
7691
  export interface SectionRequest {
5829
7692
  id?: number;
5830
7693
  ref?: string;
@@ -5832,7 +7695,13 @@ export interface SectionRequest {
5832
7695
  videoUrl?: string;
5833
7696
  jsonContent?: string;
5834
7697
  enabled?: boolean;
5835
- i18n?: Record<string, any>;
7698
+ i18n?: Record<string, TranslationDto>;
7699
+ title?: string;
7700
+ subtitle?: string;
7701
+ description?: string;
7702
+ linkText?: string;
7703
+ }
7704
+ export interface SecurityRuleSet {
5836
7705
  }
5837
7706
  export interface SelectionProcessRequest {
5838
7707
  ativo?: boolean;
@@ -5886,6 +7755,9 @@ export interface SelectionProcessResponse {
5886
7755
  status?: string;
5887
7756
  statusColor?: string;
5888
7757
  curriculum?: string;
7758
+ mensagem?: string;
7759
+ jobId?: number;
7760
+ jobName?: string;
5889
7761
  }
5890
7762
  export interface SelectionProcessResponsePaginatedResponse {
5891
7763
  success?: boolean;
@@ -6057,6 +7929,10 @@ export interface SetorResponseSharedApiResponse {
6057
7929
  message?: string;
6058
7930
  item?: SetorResponse;
6059
7931
  }
7932
+ export interface SetoresResponse {
7933
+ titulo?: string;
7934
+ id?: number;
7935
+ }
6060
7936
  export interface SharedPaginatedJson {
6061
7937
  totalItems?: number;
6062
7938
  totalPages?: number;
@@ -6080,6 +7956,17 @@ export interface SourceFilter {
6080
7956
  sourceUrls?: string[];
6081
7957
  keyValues?: string[];
6082
7958
  }
7959
+ export interface SourceResponse {
7960
+ entityKey?: string;
7961
+ dependsOn?: DependsOnResponse;
7962
+ }
7963
+ export interface SplitDto {
7964
+ walletId?: string;
7965
+ fixedValue?: number;
7966
+ percentualValue?: number;
7967
+ externalReference?: string;
7968
+ description?: string;
7969
+ }
6083
7970
  export interface Status {
6084
7971
  id?: number;
6085
7972
  ativo?: boolean;
@@ -6096,6 +7983,7 @@ export interface Status {
6096
7983
  slug?: string;
6097
7984
  jsonContent?: string;
6098
7985
  entityKey?: string;
7986
+ color?: string;
6099
7987
  }
6100
7988
  export interface StatusRequest {
6101
7989
  id?: number;
@@ -6157,11 +8045,22 @@ export interface StringApiResponse {
6157
8045
  message?: string;
6158
8046
  item?: string;
6159
8047
  }
8048
+ export interface StringPaginatedResponse {
8049
+ success?: boolean;
8050
+ message?: string;
8051
+ item?: string[];
8052
+ pagination?: SharedPaginatedJson;
8053
+ items?: string[];
8054
+ }
6160
8055
  export interface StringSharedApiResponse {
6161
8056
  success?: boolean;
6162
8057
  message?: string;
6163
8058
  item?: string;
6164
8059
  }
8060
+ export interface StructLayoutAttribute {
8061
+ typeId?: any;
8062
+ value?: LayoutKind;
8063
+ }
6165
8064
  export interface SubCategoria {
6166
8065
  id?: number;
6167
8066
  ativo?: boolean;
@@ -6182,43 +8081,163 @@ export interface SubCategoria {
6182
8081
  categoria?: Categoria;
6183
8082
  tipoCategoria?: TipoCategoria;
6184
8083
  }
8084
+ export interface SubscriptionCheckoutRequest {
8085
+ checkout?: CheckoutDto;
8086
+ subscriptionPlanOrder?: SubscriptionPlanOrderRequest;
8087
+ }
6185
8088
  export interface SubscriptionPlan {
6186
8089
  id?: number;
6187
- guid?: string;
6188
- planName: string;
8090
+ isActive?: boolean;
8091
+ isDeleted?: boolean;
8092
+ createdAt?: string;
8093
+ updatedAt?: string;
8094
+ name?: string;
6189
8095
  description?: string;
6190
- price?: number;
8096
+ priceMonthly?: number;
8097
+ priceYearly?: number;
8098
+ trialDays?: number;
8099
+ isFree?: boolean;
8100
+ isDefault?: boolean;
8101
+ isHighlighted?: boolean;
8102
+ maxUsers?: number;
8103
+ maxStorageMb?: number;
6191
8104
  durationInDays?: number;
8105
+ }
8106
+ export interface SubscriptionPlanDto {
8107
+ id?: number;
6192
8108
  isActive?: boolean;
6193
8109
  isDeleted?: boolean;
6194
8110
  createdAt?: string;
6195
8111
  updatedAt?: string;
6196
- subscriptionPlanPermissions?: SubscriptionPlanPermission[];
6197
- userSubscriptions?: UserSubscription[];
8112
+ name?: string;
8113
+ description?: string;
8114
+ priceMonthly?: number;
8115
+ priceYearly?: number;
8116
+ trialDays?: number;
8117
+ isFree?: boolean;
8118
+ isDefault?: boolean;
8119
+ isHighlighted?: boolean;
8120
+ maxUsers?: number;
8121
+ maxStorageMb?: number;
8122
+ }
8123
+ export interface SubscriptionPlanOrderRequest {
8124
+ id?: number;
8125
+ usuarioId?: number;
8126
+ subscriptionPlanId?: number;
8127
+ subscriptionPlanProviderId?: string;
8128
+ orderNumber?: string;
8129
+ subscriptionStatus?: SubscriptionStatusEnum;
8130
+ orderStatus?: OrderStatusEnum;
8131
+ createdAt?: string;
8132
+ updatedAt?: string;
8133
+ isActive?: boolean;
6198
8134
  }
6199
- export interface SubscriptionPlanPermission {
8135
+ export interface SubscriptionPlanOrderResponse {
8136
+ id?: number;
8137
+ usuarioId?: number;
6200
8138
  subscriptionPlanId?: number;
6201
- permissionId?: number;
6202
- subscriptionPlan?: SubscriptionPlan;
6203
- permission?: Permission;
8139
+ subscriptionPlanProviderId?: string;
8140
+ orderNumber?: string;
8141
+ subscriptionStatus?: SubscriptionStatusEnum;
8142
+ orderStatus?: OrderStatusEnum;
8143
+ createdAt?: string;
8144
+ updatedAt?: string;
8145
+ isActive?: boolean;
8146
+ subscriptionPlan?: SubscriptionPlanDto;
8147
+ usuario?: UsuarioDto;
8148
+ subscriptionStatusName?: string;
8149
+ orderStatusName?: string;
8150
+ }
8151
+ export interface SubscriptionPlanOrderResponsePaginatedResponse {
8152
+ success?: boolean;
8153
+ message?: string;
8154
+ item?: SubscriptionPlanOrderResponse[];
8155
+ pagination?: SharedPaginatedJson;
8156
+ items?: SubscriptionPlanOrderResponse[];
6204
8157
  }
6205
- export interface SubscriptionRequest {
6206
- cardNumber?: string;
6207
- cardHolderName?: string;
6208
- holderDocument?: string;
6209
- expMonth?: number;
6210
- expYear?: number;
6211
- cvv?: string;
8158
+ export interface SubscriptionPlanRequest {
8159
+ id?: number;
8160
+ isActive?: boolean;
8161
+ isDeleted?: boolean;
8162
+ createdAt?: string;
8163
+ updatedAt?: string;
8164
+ name?: string;
8165
+ description?: string;
8166
+ priceMonthly?: number;
8167
+ priceYearly?: number;
8168
+ trialDays?: number;
8169
+ isFree?: boolean;
8170
+ isDefault?: boolean;
8171
+ isHighlighted?: boolean;
8172
+ maxUsers?: number;
8173
+ maxStorageMb?: number;
6212
8174
  }
6213
- export interface SubscriptionResultDto {
6214
- subscriptionId?: string;
8175
+ export interface SubscriptionPlanResponse {
8176
+ id?: number;
8177
+ isActive?: boolean;
8178
+ isDeleted?: boolean;
8179
+ createdAt?: string;
8180
+ updatedAt?: string;
8181
+ name?: string;
8182
+ description?: string;
8183
+ priceMonthly?: number;
8184
+ priceYearly?: number;
8185
+ trialDays?: number;
8186
+ isFree?: boolean;
8187
+ isDefault?: boolean;
8188
+ isHighlighted?: boolean;
8189
+ maxUsers?: number;
8190
+ maxStorageMb?: number;
8191
+ }
8192
+ export interface SubscriptionPlanResponsePaginatedResponse {
8193
+ success?: boolean;
8194
+ message?: string;
8195
+ item?: SubscriptionPlanResponse[];
8196
+ pagination?: SharedPaginatedJson;
8197
+ items?: SubscriptionPlanResponse[];
8198
+ }
8199
+ export interface SubscriptionPlanResponseSharedApiResponse {
8200
+ success?: boolean;
8201
+ message?: string;
8202
+ item?: SubscriptionPlanResponse;
8203
+ }
8204
+ export interface SubscriptionResponse {
8205
+ discount?: DiscountDto;
8206
+ interest?: InterestDto;
8207
+ fine?: FineDto;
8208
+ split?: SplitDto;
8209
+ creditCard?: CreditCardInfoResponse;
8210
+ invoiceUrl?: string;
8211
+ bankSlipUrl?: string;
8212
+ pixTransaction?: PixTransactionResponse;
8213
+ transactionReceiptUrl?: string;
8214
+ confirmedDate?: string;
8215
+ paymentDate?: string;
8216
+ id?: string;
8217
+ customer?: string;
8218
+ value?: number;
8219
+ billingType?: string;
8220
+ cycle?: string;
8221
+ nextDueDate?: string;
8222
+ description?: string;
8223
+ deleted?: boolean;
6215
8224
  status?: string;
6216
- nextBillingAt?: string;
6217
- cardLastFourDigits?: string;
6218
- cardBrand?: string;
6219
- cardHolderName?: string;
6220
- planDescription?: string;
6221
- planPrice?: number;
8225
+ }
8226
+ export interface SubscriptionResponsePaginatedResponse {
8227
+ success?: boolean;
8228
+ message?: string;
8229
+ item?: SubscriptionResponse[];
8230
+ pagination?: SharedPaginatedJson;
8231
+ items?: SubscriptionResponse[];
8232
+ }
8233
+ export interface SubscriptionStatus {
8234
+ }
8235
+ export interface SubscriptionStatusEnum {
8236
+ }
8237
+ export interface TargetResponse {
8238
+ id?: number;
8239
+ tableName?: string;
8240
+ entityKey?: string;
6222
8241
  }
6223
8242
  export interface TipoCategoria {
6224
8243
  id?: number;
@@ -6297,12 +8316,173 @@ export interface TripResponse {
6297
8316
  thumbnail?: string;
6298
8317
  isBookmarked?: boolean;
6299
8318
  }
8319
+ export interface Type {
8320
+ name?: string;
8321
+ customAttributes?: CustomAttributeData[];
8322
+ isCollectible?: boolean;
8323
+ metadataToken?: number;
8324
+ isInterface?: boolean;
8325
+ memberType?: MemberTypes;
8326
+ namespace?: string;
8327
+ assemblyQualifiedName?: string;
8328
+ fullName?: string;
8329
+ assembly?: Assembly;
8330
+ module?: Module;
8331
+ isNested?: boolean;
8332
+ declaringType?: Type;
8333
+ declaringMethod?: MethodBase;
8334
+ reflectedType?: Type;
8335
+ underlyingSystemType?: Type;
8336
+ isTypeDefinition?: boolean;
8337
+ isArray?: boolean;
8338
+ isByRef?: boolean;
8339
+ isPointer?: boolean;
8340
+ isConstructedGenericType?: boolean;
8341
+ isGenericParameter?: boolean;
8342
+ isGenericTypeParameter?: boolean;
8343
+ isGenericMethodParameter?: boolean;
8344
+ isGenericType?: boolean;
8345
+ isGenericTypeDefinition?: boolean;
8346
+ isSZArray?: boolean;
8347
+ isVariableBoundArray?: boolean;
8348
+ isByRefLike?: boolean;
8349
+ isFunctionPointer?: boolean;
8350
+ isUnmanagedFunctionPointer?: boolean;
8351
+ hasElementType?: boolean;
8352
+ genericTypeArguments?: Type[];
8353
+ genericParameterPosition?: number;
8354
+ genericParameterAttributes?: GenericParameterAttributes;
8355
+ attributes?: TypeAttributes;
8356
+ isAbstract?: boolean;
8357
+ isImport?: boolean;
8358
+ isSealed?: boolean;
8359
+ isSpecialName?: boolean;
8360
+ isClass?: boolean;
8361
+ isNestedAssembly?: boolean;
8362
+ isNestedFamANDAssem?: boolean;
8363
+ isNestedFamily?: boolean;
8364
+ isNestedFamORAssem?: boolean;
8365
+ isNestedPrivate?: boolean;
8366
+ isNestedPublic?: boolean;
8367
+ isNotPublic?: boolean;
8368
+ isPublic?: boolean;
8369
+ isAutoLayout?: boolean;
8370
+ isExplicitLayout?: boolean;
8371
+ isLayoutSequential?: boolean;
8372
+ isAnsiClass?: boolean;
8373
+ isAutoClass?: boolean;
8374
+ isUnicodeClass?: boolean;
8375
+ isCOMObject?: boolean;
8376
+ isContextful?: boolean;
8377
+ isEnum?: boolean;
8378
+ isMarshalByRef?: boolean;
8379
+ isPrimitive?: boolean;
8380
+ isValueType?: boolean;
8381
+ isSignatureType?: boolean;
8382
+ isSecurityCritical?: boolean;
8383
+ isSecuritySafeCritical?: boolean;
8384
+ isSecurityTransparent?: boolean;
8385
+ structLayoutAttribute?: StructLayoutAttribute;
8386
+ typeInitializer?: ConstructorInfo;
8387
+ typeHandle?: RuntimeTypeHandle;
8388
+ guid?: string;
8389
+ baseType?: Type;
8390
+ isSerializable?: boolean;
8391
+ containsGenericParameters?: boolean;
8392
+ isVisible?: boolean;
8393
+ }
8394
+ export interface TypeAttributes {
8395
+ }
6300
8396
  export interface TypeCategory {
6301
8397
  id?: number;
6302
8398
  name: string;
6303
8399
  description?: string;
6304
8400
  directoryCategories?: DirectoryCategory[];
6305
8401
  }
8402
+ export interface TypeInfo {
8403
+ name?: string;
8404
+ customAttributes?: CustomAttributeData[];
8405
+ isCollectible?: boolean;
8406
+ metadataToken?: number;
8407
+ isInterface?: boolean;
8408
+ memberType?: MemberTypes;
8409
+ namespace?: string;
8410
+ assemblyQualifiedName?: string;
8411
+ fullName?: string;
8412
+ assembly?: Assembly;
8413
+ module?: Module;
8414
+ isNested?: boolean;
8415
+ declaringType?: Type;
8416
+ declaringMethod?: MethodBase;
8417
+ reflectedType?: Type;
8418
+ underlyingSystemType?: Type;
8419
+ isTypeDefinition?: boolean;
8420
+ isArray?: boolean;
8421
+ isByRef?: boolean;
8422
+ isPointer?: boolean;
8423
+ isConstructedGenericType?: boolean;
8424
+ isGenericParameter?: boolean;
8425
+ isGenericTypeParameter?: boolean;
8426
+ isGenericMethodParameter?: boolean;
8427
+ isGenericType?: boolean;
8428
+ isGenericTypeDefinition?: boolean;
8429
+ isSZArray?: boolean;
8430
+ isVariableBoundArray?: boolean;
8431
+ isByRefLike?: boolean;
8432
+ isFunctionPointer?: boolean;
8433
+ isUnmanagedFunctionPointer?: boolean;
8434
+ hasElementType?: boolean;
8435
+ genericTypeArguments?: Type[];
8436
+ genericParameterPosition?: number;
8437
+ genericParameterAttributes?: GenericParameterAttributes;
8438
+ attributes?: TypeAttributes;
8439
+ isAbstract?: boolean;
8440
+ isImport?: boolean;
8441
+ isSealed?: boolean;
8442
+ isSpecialName?: boolean;
8443
+ isClass?: boolean;
8444
+ isNestedAssembly?: boolean;
8445
+ isNestedFamANDAssem?: boolean;
8446
+ isNestedFamily?: boolean;
8447
+ isNestedFamORAssem?: boolean;
8448
+ isNestedPrivate?: boolean;
8449
+ isNestedPublic?: boolean;
8450
+ isNotPublic?: boolean;
8451
+ isPublic?: boolean;
8452
+ isAutoLayout?: boolean;
8453
+ isExplicitLayout?: boolean;
8454
+ isLayoutSequential?: boolean;
8455
+ isAnsiClass?: boolean;
8456
+ isAutoClass?: boolean;
8457
+ isUnicodeClass?: boolean;
8458
+ isCOMObject?: boolean;
8459
+ isContextful?: boolean;
8460
+ isEnum?: boolean;
8461
+ isMarshalByRef?: boolean;
8462
+ isPrimitive?: boolean;
8463
+ isValueType?: boolean;
8464
+ isSignatureType?: boolean;
8465
+ isSecurityCritical?: boolean;
8466
+ isSecuritySafeCritical?: boolean;
8467
+ isSecurityTransparent?: boolean;
8468
+ structLayoutAttribute?: StructLayoutAttribute;
8469
+ typeInitializer?: ConstructorInfo;
8470
+ typeHandle?: RuntimeTypeHandle;
8471
+ guid?: string;
8472
+ baseType?: Type;
8473
+ isSerializable?: boolean;
8474
+ containsGenericParameters?: boolean;
8475
+ isVisible?: boolean;
8476
+ genericTypeParameters?: Type[];
8477
+ declaredConstructors?: ConstructorInfo[];
8478
+ declaredEvents?: EventInfo[];
8479
+ declaredFields?: FieldInfo[];
8480
+ declaredMembers?: MemberInfo[];
8481
+ declaredMethods?: MethodInfo[];
8482
+ declaredNestedTypes?: TypeInfo[];
8483
+ declaredProperties?: PropertyInfo[];
8484
+ implementedInterfaces?: Type[];
8485
+ }
6306
8486
  export interface UpdateAccountPasswordRequest {
6307
8487
  password?: string;
6308
8488
  confirmNewPassword?: string;
@@ -6323,6 +8503,8 @@ export interface UpdateAccountResponse {
6323
8503
  bairro?: string;
6324
8504
  complemento?: string;
6325
8505
  numero?: string;
8506
+ jsonContent?: string;
8507
+ cpf?: string;
6326
8508
  }
6327
8509
  export interface UpdateAccountResult {
6328
8510
  success?: boolean;
@@ -6350,6 +8532,18 @@ export interface User {
6350
8532
  address?: Address;
6351
8533
  userRoles?: UserRole[];
6352
8534
  }
8535
+ export interface UserAccess {
8536
+ id?: number;
8537
+ usuarioId?: number;
8538
+ tableAction?: string;
8539
+ tableId?: number;
8540
+ accessType?: string;
8541
+ startDate?: string;
8542
+ endDate?: string;
8543
+ grantedBy?: number;
8544
+ note?: string;
8545
+ createdAt?: string;
8546
+ }
6353
8547
  export interface UserClaim {
6354
8548
  id?: number;
6355
8549
  usuarioId: number;
@@ -6370,14 +8564,15 @@ export interface UserSubscription {
6370
8564
  id?: number;
6371
8565
  usuarioId?: number;
6372
8566
  subscriptionPlanId?: number;
8567
+ subscriptionPlan?: SubscriptionPlan;
6373
8568
  startDate?: string;
6374
8569
  endDate?: string;
6375
8570
  isActive?: boolean;
6376
8571
  isDeleted?: boolean;
8572
+ isLifetime?: boolean;
6377
8573
  createdAt?: string;
6378
8574
  updatedAt?: string;
6379
8575
  usuario?: Usuario;
6380
- subscriptionPlan?: SubscriptionPlan;
6381
8576
  subscriptionId?: string;
6382
8577
  status?: string;
6383
8578
  }
@@ -6399,8 +8594,6 @@ export interface Usuario {
6399
8594
  passwordToken?: string;
6400
8595
  passwordTokenExpiry?: string;
6401
8596
  userClaims?: UserClaim[];
6402
- subscriptionId?: number;
6403
- journeyId?: number;
6404
8597
  guid?: string;
6405
8598
  token?: string;
6406
8599
  dataNascimento?: string;
@@ -6416,8 +8609,13 @@ export interface Usuario {
6416
8609
  cpf?: string;
6417
8610
  customerId?: string;
6418
8611
  externalRef?: string;
8612
+ jsonContent?: string;
6419
8613
  lojaXUsuario?: LojaXUsuario[];
6420
8614
  usuarioXSetor?: UsuarioXSetor[];
8615
+ carts?: Cart[];
8616
+ orders?: Order[];
8617
+ accesses?: UserAccess[];
8618
+ subscriptions?: UserSubscription[];
6421
8619
  }
6422
8620
  export interface UsuarioDirectory {
6423
8621
  id?: number;
@@ -6426,6 +8624,20 @@ export interface UsuarioDirectory {
6426
8624
  usuario?: Usuario;
6427
8625
  directory?: DirectoryEntity;
6428
8626
  }
8627
+ export interface UsuarioDto {
8628
+ id?: number;
8629
+ nome?: string;
8630
+ login?: string;
8631
+ email?: string;
8632
+ password?: string;
8633
+ roleGate?: string;
8634
+ dataNascimento?: string;
8635
+ cpf?: string;
8636
+ genero?: string;
8637
+ phone?: string;
8638
+ address?: AddressResponse;
8639
+ jsonContent?: string;
8640
+ }
6429
8641
  export interface UsuarioLoginDto {
6430
8642
  emailAddress?: string;
6431
8643
  password?: string;
@@ -6438,6 +8650,11 @@ export interface UsuarioRequest {
6438
8650
  password?: string;
6439
8651
  roleGate?: string;
6440
8652
  dataNascimento?: string;
8653
+ cpf?: string;
8654
+ genero?: string;
8655
+ phone?: string;
8656
+ address?: AddressResponse;
8657
+ jsonContent?: string;
6441
8658
  roles?: number[];
6442
8659
  lojas?: number[];
6443
8660
  setores?: number[];
@@ -6450,6 +8667,14 @@ export interface UsuarioResponse {
6450
8667
  password?: string;
6451
8668
  roleGate?: string;
6452
8669
  dataNascimento?: string;
8670
+ cpf?: string;
8671
+ genero?: string;
8672
+ phone?: string;
8673
+ address?: AddressResponse;
8674
+ jsonContent?: string;
8675
+ lojas?: LojasResponse[];
8676
+ setores?: SetoresResponse[];
8677
+ roles?: string[];
6453
8678
  }
6454
8679
  export interface UsuarioResponsePaginatedResponse {
6455
8680
  success?: boolean;
@@ -6519,9 +8744,6 @@ export interface UsuarioXSetor {
6519
8744
  usuarioId?: number;
6520
8745
  usuario?: Usuario;
6521
8746
  }
6522
- export interface VerifyOrderRequest {
6523
- payId?: string;
6524
- }
6525
8747
  export interface VideoRequest {
6526
8748
  id?: number;
6527
8749
  ativo?: boolean;
@@ -6568,5 +8790,5 @@ export interface VideoResponseSharedApiResponse {
6568
8790
  message?: string;
6569
8791
  item?: VideoResponse;
6570
8792
  }
6571
- export interface WorkspaceItems {
8793
+ export interface VideoSourceEnum {
6572
8794
  }