infinity-forge 13.0.0 → 13.0.2

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 (33) hide show
  1. package/dist/client/swagger_client.d.ts +452 -2674
  2. package/dist/test/index.js +1 -56
  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 +1 -0
  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 +2 -3
  7. package/dist/ui/components/form/select/hooks/use-select-components.js.map +1 -1
  8. package/dist/ui/components/form/select/index.js +0 -5
  9. package/dist/ui/components/form/select/index.js.map +1 -1
  10. package/dist/ui/components/index.d.ts +0 -1
  11. package/dist/ui/components/index.js +0 -1
  12. package/dist/ui/components/index.js.map +1 -1
  13. package/dist/ui/components/warning/index.js +1 -5
  14. package/dist/ui/components/warning/index.js.map +1 -1
  15. package/package.json +1 -1
  16. package/dist/ui/components/table-stories/component.d.ts +0 -8
  17. package/dist/ui/components/table-stories/component.js +0 -162
  18. package/dist/ui/components/table-stories/component.js.map +0 -1
  19. package/dist/ui/components/table-stories/index.d.ts +0 -1
  20. package/dist/ui/components/table-stories/index.js +0 -18
  21. package/dist/ui/components/table-stories/index.js.map +0 -1
  22. package/dist/ui/components/table-stories/styles.d.ts +0 -1
  23. package/dist/ui/components/table-stories/styles.js +0 -14
  24. package/dist/ui/components/table-stories/styles.js.map +0 -1
  25. package/dist/ui/components/table-stories/table-configurations/actions.d.ts +0 -2
  26. package/dist/ui/components/table-stories/table-configurations/actions.js +0 -197
  27. package/dist/ui/components/table-stories/table-configurations/actions.js.map +0 -1
  28. package/dist/ui/components/table-stories/table-configurations/columns.d.ts +0 -10
  29. package/dist/ui/components/table-stories/table-configurations/columns.js +0 -37
  30. package/dist/ui/components/table-stories/table-configurations/columns.js.map +0 -1
  31. package/dist/ui/components/table-stories/table-configurations/index.d.ts +0 -2
  32. package/dist/ui/components/table-stories/table-configurations/index.js +0 -19
  33. package/dist/ui/components/table-stories/table-configurations/index.js.map +0 -1
@@ -1,22 +1,4 @@
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
- };
20
2
  "/Account/user/create/short": {
21
3
  post: {
22
4
  params: {};
@@ -64,10 +46,10 @@ export type Swagger = {
64
46
  CreatedTo: string | undefined;
65
47
  OrderBy: string | undefined;
66
48
  Include: string | undefined;
67
- page: number | undefined;
68
- pageSize: number | undefined;
69
- Filters: Record<string, string> | undefined;
70
- SourceFilters: any[] | undefined;
49
+ page: number;
50
+ pageSize: number;
51
+ Filters: object | undefined;
52
+ SourceFilters: any | undefined;
71
53
  Target: string | undefined;
72
54
  OnlyActives: boolean | undefined;
73
55
  };
@@ -114,14 +96,7 @@ export type Swagger = {
114
96
  result: null;
115
97
  };
116
98
  };
117
- "/Authentication": {
118
- post: {
119
- params: {};
120
- requestBody: UsuarioLoginDto;
121
- result: LoginResult;
122
- };
123
- };
124
- "/Users/me": {
99
+ "/auth/login": {
125
100
  get: {
126
101
  params: {};
127
102
  requestBody: null;
@@ -137,6 +112,13 @@ export type Swagger = {
137
112
  result: null;
138
113
  };
139
114
  };
115
+ "/auth/google": {
116
+ get: {
117
+ params: {};
118
+ requestBody: null;
119
+ result: null;
120
+ };
121
+ };
140
122
  "/auth/logout": {
141
123
  get: {
142
124
  params: {};
@@ -144,13 +126,31 @@ export type Swagger = {
144
126
  result: null;
145
127
  };
146
128
  };
147
- "/billing/webhooks/asaas": {
129
+ "/auth/protegido": {
130
+ get: {
131
+ params: {};
132
+ requestBody: null;
133
+ result: null;
134
+ };
135
+ };
136
+ "/Authentication": {
148
137
  post: {
149
- params: {
150
- clientName: string | undefined;
151
- providerType: string | undefined;
152
- };
153
- requestBody: AsaasWebhookEvent;
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;
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 | undefined;
163
+ page: number;
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 | undefined;
181
+ page: number;
182
182
  };
183
183
  requestBody: null;
184
184
  result: null;
@@ -194,44 +194,18 @@ export type Swagger = {
194
194
  "/admin/contents/blog/paginated": {
195
195
  get: {
196
196
  params: {
197
- Url: string[] | undefined;
198
- Destaque: boolean | undefined;
199
- OrderBy: string | undefined;
200
- IsOnHold: boolean | undefined;
201
- DirectoyId: number | undefined;
202
- EntityKey: string | undefined;
203
- Search: string | undefined;
204
- CreatedFrom: string | undefined;
205
- CreatedTo: string | undefined;
206
- Include: string | 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;
197
+ Url: any | undefined;
222
198
  Destaque: boolean | undefined;
223
199
  OrderBy: string | undefined;
224
- IsOnHold: boolean | undefined;
225
- DirectoyId: number | undefined;
226
200
  EntityKey: string | undefined;
227
201
  Search: string | undefined;
228
202
  CreatedFrom: string | undefined;
229
203
  CreatedTo: string | undefined;
230
204
  Include: string | undefined;
231
- page: number | undefined;
232
- pageSize: number | undefined;
233
- Filters: Record<string, string> | undefined;
234
- SourceFilters: any[] | undefined;
205
+ page: number;
206
+ pageSize: number;
207
+ Filters: object | undefined;
208
+ SourceFilters: any | undefined;
235
209
  Target: string | undefined;
236
210
  OnlyActives: boolean | undefined;
237
211
  };
@@ -281,7 +255,7 @@ export type Swagger = {
281
255
  "/admin/features/jobopportunities/Candidato/paginated": {
282
256
  get: {
283
257
  params: {
284
- Url: string[] | undefined;
258
+ Url: any | undefined;
285
259
  Destaque: boolean | undefined;
286
260
  EntityKey: string | undefined;
287
261
  Search: string | undefined;
@@ -289,10 +263,10 @@ export type Swagger = {
289
263
  CreatedTo: string | undefined;
290
264
  OrderBy: string | undefined;
291
265
  Include: string | undefined;
292
- page: number | undefined;
293
- pageSize: number | undefined;
294
- Filters: Record<string, string> | undefined;
295
- SourceFilters: any[] | undefined;
266
+ page: number;
267
+ pageSize: number;
268
+ Filters: object | undefined;
269
+ SourceFilters: any | undefined;
296
270
  Target: string | undefined;
297
271
  OnlyActives: boolean | undefined;
298
272
  };
@@ -342,17 +316,16 @@ export type Swagger = {
342
316
  "/admin/catalogs/Cargo/paginated": {
343
317
  get: {
344
318
  params: {
345
- setorId: number | undefined;
346
319
  EntityKey: string | undefined;
347
320
  Search: string | undefined;
348
321
  CreatedFrom: string | undefined;
349
322
  CreatedTo: string | undefined;
350
323
  OrderBy: string | undefined;
351
324
  Include: string | undefined;
352
- page: number | undefined;
353
- pageSize: number | undefined;
354
- Filters: Record<string, string> | undefined;
355
- SourceFilters: any[] | undefined;
325
+ page: number;
326
+ pageSize: number;
327
+ Filters: object | undefined;
328
+ SourceFilters: any | undefined;
356
329
  Target: string | undefined;
357
330
  OnlyActives: boolean | undefined;
358
331
  };
@@ -363,17 +336,16 @@ export type Swagger = {
363
336
  "/admin/catalogs/Cargo/paginated-by-user": {
364
337
  get: {
365
338
  params: {
366
- setorId: number | undefined;
367
339
  EntityKey: string | undefined;
368
340
  Search: string | undefined;
369
341
  CreatedFrom: string | undefined;
370
342
  CreatedTo: string | undefined;
371
343
  OrderBy: string | undefined;
372
344
  Include: string | undefined;
373
- page: number | undefined;
374
- pageSize: number | undefined;
375
- Filters: Record<string, string> | undefined;
376
- SourceFilters: any[] | undefined;
345
+ page: number;
346
+ pageSize: number;
347
+ Filters: object | undefined;
348
+ SourceFilters: any | undefined;
377
349
  Target: string | undefined;
378
350
  OnlyActives: boolean | undefined;
379
351
  };
@@ -420,74 +392,10 @@ export type Swagger = {
420
392
  result: null;
421
393
  };
422
394
  };
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
- };
487
395
  "/admin/properties/Categoria/blog/listCategories": {
488
396
  get: {
489
397
  params: {
490
- BlogSize: number | undefined;
398
+ BlogSize: number;
491
399
  Url: string | undefined;
492
400
  EntityKey: string | undefined;
493
401
  Search: string | undefined;
@@ -495,10 +403,10 @@ export type Swagger = {
495
403
  CreatedTo: string | undefined;
496
404
  OrderBy: string | undefined;
497
405
  Include: string | undefined;
498
- page: number | undefined;
499
- pageSize: number | undefined;
500
- Filters: Record<string, string> | undefined;
501
- SourceFilters: any[] | undefined;
406
+ page: number;
407
+ pageSize: number;
408
+ Filters: object | undefined;
409
+ SourceFilters: any | undefined;
502
410
  Target: string | undefined;
503
411
  OnlyActives: boolean | undefined;
504
412
  };
@@ -509,7 +417,7 @@ export type Swagger = {
509
417
  "/admin/properties/Categoria/paginated": {
510
418
  get: {
511
419
  params: {
512
- BlogSize: number | undefined;
420
+ BlogSize: number;
513
421
  Url: string | undefined;
514
422
  EntityKey: string | undefined;
515
423
  Search: string | undefined;
@@ -517,10 +425,10 @@ export type Swagger = {
517
425
  CreatedTo: string | undefined;
518
426
  OrderBy: string | undefined;
519
427
  Include: string | undefined;
520
- page: number | undefined;
521
- pageSize: number | undefined;
522
- Filters: Record<string, string> | undefined;
523
- SourceFilters: any[] | undefined;
428
+ page: number;
429
+ pageSize: number;
430
+ Filters: object | undefined;
431
+ SourceFilters: any | undefined;
524
432
  Target: string | undefined;
525
433
  OnlyActives: boolean | undefined;
526
434
  };
@@ -584,345 +492,55 @@ export type Swagger = {
584
492
  result: TripCreatedResponse;
585
493
  };
586
494
  };
587
- "/api/Chat/{id}/message": {
588
- post: {
589
- params: {
590
- id: number;
591
- };
592
- requestBody: ChatIAItemDto;
593
- result: ChatIAMessageResponse;
594
- };
595
- };
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": {
880
- get: {
495
+ "/api/Chat/{id}/message": {
496
+ post: {
881
497
  params: {
882
- position: string | undefined;
498
+ id: number;
883
499
  };
884
- requestBody: null;
885
- result: null;
500
+ requestBody: ChatIAItemDto;
501
+ result: ChatIAMessageResponse;
886
502
  };
887
503
  };
888
- "/admin/constants/positions": {
504
+ "/api/Chat/{chatId}/messages": {
889
505
  get: {
890
506
  params: {
891
- sector: string | undefined;
507
+ chatId: number;
892
508
  };
893
509
  requestBody: null;
894
- result: null;
510
+ result: ChatIAListMessagesResponse;
895
511
  };
896
512
  };
897
- "/constants/educationconstants/lesson-status": {
513
+ "/api/Chat/{chatId}/delete": {
898
514
  get: {
899
- params: {};
515
+ params: {
516
+ chatId: number;
517
+ };
900
518
  requestBody: null;
901
519
  result: null;
902
520
  };
903
521
  };
904
- "/constants/educationconstants/lesson-types": {
522
+ "/api/Chat/list/messages": {
905
523
  get: {
906
524
  params: {};
907
525
  requestBody: null;
908
- result: null;
526
+ result: ChatListResponse;
909
527
  };
910
528
  };
911
- "/constants/educationconstants/video-sources": {
529
+ "/Configs": {
912
530
  get: {
913
531
  params: {};
914
532
  requestBody: null;
915
533
  result: null;
916
534
  };
917
535
  };
918
- "/constants/educationconstants/lessons-level": {
536
+ "/admin/constants/sectors": {
919
537
  get: {
920
538
  params: {};
921
539
  requestBody: null;
922
540
  result: null;
923
541
  };
924
542
  };
925
- "/constants/educationconstants/module-types": {
543
+ "/admin/constants/positions": {
926
544
  get: {
927
545
  params: {};
928
546
  requestBody: null;
@@ -938,10 +556,10 @@ export type Swagger = {
938
556
  CreatedTo: string | undefined;
939
557
  OrderBy: string | undefined;
940
558
  Include: string | undefined;
941
- page: number | undefined;
942
- pageSize: number | undefined;
943
- Filters: Record<string, string> | undefined;
944
- SourceFilters: any[] | undefined;
559
+ page: number;
560
+ pageSize: number;
561
+ Filters: object | undefined;
562
+ SourceFilters: any | undefined;
945
563
  Target: string | undefined;
946
564
  OnlyActives: boolean | undefined;
947
565
  };
@@ -997,10 +615,10 @@ export type Swagger = {
997
615
  CreatedTo: string | undefined;
998
616
  OrderBy: string | undefined;
999
617
  Include: string | undefined;
1000
- page: number | undefined;
1001
- pageSize: number | undefined;
1002
- Filters: Record<string, string> | undefined;
1003
- SourceFilters: any[] | undefined;
618
+ page: number;
619
+ pageSize: number;
620
+ Filters: object | undefined;
621
+ SourceFilters: any | undefined;
1004
622
  Target: string | undefined;
1005
623
  OnlyActives: boolean | undefined;
1006
624
  };
@@ -1047,10 +665,10 @@ export type Swagger = {
1047
665
  CreatedTo: string | undefined;
1048
666
  OrderBy: string | undefined;
1049
667
  Include: string | undefined;
1050
- page: number | undefined;
1051
- pageSize: number | undefined;
1052
- Filters: Record<string, string> | undefined;
1053
- SourceFilters: any[] | undefined;
668
+ page: number;
669
+ pageSize: number;
670
+ Filters: object | undefined;
671
+ SourceFilters: any | undefined;
1054
672
  Target: string | undefined;
1055
673
  OnlyActives: boolean | undefined;
1056
674
  };
@@ -1106,10 +724,10 @@ export type Swagger = {
1106
724
  CreatedTo: string | undefined;
1107
725
  OrderBy: string | undefined;
1108
726
  Include: string | undefined;
1109
- page: number | undefined;
1110
- pageSize: number | undefined;
1111
- Filters: Record<string, string> | undefined;
1112
- SourceFilters: any[] | undefined;
727
+ page: number;
728
+ pageSize: number;
729
+ Filters: object | undefined;
730
+ SourceFilters: any | undefined;
1113
731
  Target: string | undefined;
1114
732
  OnlyActives: boolean | undefined;
1115
733
  };
@@ -1177,10 +795,10 @@ export type Swagger = {
1177
795
  CreatedTo: string | undefined;
1178
796
  OrderBy: string | undefined;
1179
797
  Include: string | undefined;
1180
- page: number | undefined;
1181
- pageSize: number | undefined;
1182
- Filters: Record<string, string> | undefined;
1183
- SourceFilters: any[] | undefined;
798
+ page: number;
799
+ pageSize: number;
800
+ Filters: object | undefined;
801
+ SourceFilters: any | undefined;
1184
802
  Target: string | undefined;
1185
803
  OnlyActives: boolean | undefined;
1186
804
  };
@@ -1268,7 +886,7 @@ export type Swagger = {
1268
886
  get: {
1269
887
  params: {
1270
888
  url: string;
1271
- entityKey: string[] | undefined;
889
+ entityKey: any | undefined;
1272
890
  };
1273
891
  requestBody: null;
1274
892
  result: DirectoryResponseSharedApiResponse;
@@ -1350,10 +968,10 @@ export type Swagger = {
1350
968
  CreatedTo: string | undefined;
1351
969
  OrderBy: string | undefined;
1352
970
  Include: string | undefined;
1353
- page: number | undefined;
1354
- pageSize: number | undefined;
1355
- Filters: Record<string, string> | undefined;
1356
- SourceFilters: any[] | undefined;
971
+ page: number;
972
+ pageSize: number;
973
+ Filters: object | undefined;
974
+ SourceFilters: any | undefined;
1357
975
  Target: string | undefined;
1358
976
  };
1359
977
  requestBody: null;
@@ -1440,18 +1058,18 @@ export type Swagger = {
1440
1058
  EntityKey: string | undefined;
1441
1059
  Url: string | undefined;
1442
1060
  SourceTable: string | undefined;
1443
- SourceId: number | undefined;
1061
+ SourceId: number;
1444
1062
  TargetTable: string | undefined;
1445
- TargetId: number | undefined;
1063
+ TargetId: number;
1446
1064
  Search: string | undefined;
1447
1065
  CreatedFrom: string | undefined;
1448
1066
  CreatedTo: string | undefined;
1449
1067
  OrderBy: string | undefined;
1450
1068
  Include: string | undefined;
1451
- page: number | undefined;
1452
- pageSize: number | undefined;
1453
- Filters: Record<string, string> | undefined;
1454
- SourceFilters: any[] | undefined;
1069
+ page: number;
1070
+ pageSize: number;
1071
+ Filters: object | undefined;
1072
+ SourceFilters: any | undefined;
1455
1073
  Target: string | undefined;
1456
1074
  OnlyActives: boolean | undefined;
1457
1075
  };
@@ -1459,13 +1077,6 @@ export type Swagger = {
1459
1077
  result: EntityRelationResponsePaginatedResponse;
1460
1078
  };
1461
1079
  };
1462
- "/admin/dynamic/entityrelation/GetRelations": {
1463
- post: {
1464
- params: {};
1465
- requestBody: RelatedParams;
1466
- result: EntityRelationResponsePaginatedResponse;
1467
- };
1468
- };
1469
1080
  "/admin/dynamic/entityrelation/url/{url}": {
1470
1081
  get: {
1471
1082
  params: {
@@ -1505,6 +1116,22 @@ export type Swagger = {
1505
1116
  result: null;
1506
1117
  };
1507
1118
  };
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
+ };
1508
1135
  "/admin/dynamic/entityrelation/delete/publisher/{id}": {
1509
1136
  delete: {
1510
1137
  params: {
@@ -1524,11 +1151,11 @@ export type Swagger = {
1524
1151
  "/admin/dynamic/entitytree/available-services": {
1525
1152
  get: {
1526
1153
  params: {
1527
- targetId: number | undefined;
1154
+ targetId: number;
1528
1155
  targetTable: string | undefined;
1529
1156
  entityKeyA: string | undefined;
1530
1157
  entityKeyB: string | undefined;
1531
- professionIds: number[] | undefined;
1158
+ professionIds: any | undefined;
1532
1159
  };
1533
1160
  requestBody: null;
1534
1161
  result: CategoriaResponseIEnumerableApiResponse;
@@ -1550,10 +1177,10 @@ export type Swagger = {
1550
1177
  CreatedTo: string | undefined;
1551
1178
  OrderBy: string | undefined;
1552
1179
  Include: string | undefined;
1553
- page: number | undefined;
1554
- pageSize: number | undefined;
1555
- Filters: Record<string, string> | undefined;
1556
- SourceFilters: any[] | undefined;
1180
+ page: number;
1181
+ pageSize: number;
1182
+ Filters: object | undefined;
1183
+ SourceFilters: any | undefined;
1557
1184
  Target: string | undefined;
1558
1185
  OnlyActives: boolean | undefined;
1559
1186
  };
@@ -1609,10 +1236,10 @@ export type Swagger = {
1609
1236
  CreatedTo: string | undefined;
1610
1237
  OrderBy: string | undefined;
1611
1238
  Include: string | undefined;
1612
- page: number | undefined;
1613
- pageSize: number | undefined;
1614
- Filters: Record<string, string> | undefined;
1615
- SourceFilters: any[] | undefined;
1239
+ page: number;
1240
+ pageSize: number;
1241
+ Filters: object | undefined;
1242
+ SourceFilters: any | undefined;
1616
1243
  Target: string | undefined;
1617
1244
  OnlyActives: boolean | undefined;
1618
1245
  };
@@ -1668,10 +1295,10 @@ export type Swagger = {
1668
1295
  CreatedTo: string | undefined;
1669
1296
  OrderBy: string | undefined;
1670
1297
  Include: string | undefined;
1671
- page: number | undefined;
1672
- pageSize: number | undefined;
1673
- Filters: Record<string, string> | undefined;
1674
- SourceFilters: any[] | undefined;
1298
+ page: number;
1299
+ pageSize: number;
1300
+ Filters: object | undefined;
1301
+ SourceFilters: any | undefined;
1675
1302
  Target: string | undefined;
1676
1303
  OnlyActives: boolean | undefined;
1677
1304
  };
@@ -1762,10 +1389,10 @@ export type Swagger = {
1762
1389
  CreatedTo: string | undefined;
1763
1390
  OrderBy: string | undefined;
1764
1391
  Include: string | undefined;
1765
- page: number | undefined;
1766
- pageSize: number | undefined;
1767
- Filters: Record<string, string> | undefined;
1768
- SourceFilters: any[] | undefined;
1392
+ page: number;
1393
+ pageSize: number;
1394
+ Filters: object | undefined;
1395
+ SourceFilters: any | undefined;
1769
1396
  Target: string | undefined;
1770
1397
  OnlyActives: boolean | undefined;
1771
1398
  };
@@ -1812,65 +1439,6 @@ export type Swagger = {
1812
1439
  result: null;
1813
1440
  };
1814
1441
  };
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
- };
1874
1442
  "/api/GoogleAuth/google": {
1875
1443
  post: {
1876
1444
  params: {};
@@ -1887,10 +1455,10 @@ export type Swagger = {
1887
1455
  CreatedTo: string | undefined;
1888
1456
  OrderBy: string | undefined;
1889
1457
  Include: string | undefined;
1890
- page: number | undefined;
1891
- pageSize: number | undefined;
1892
- Filters: Record<string, string> | undefined;
1893
- SourceFilters: any[] | undefined;
1458
+ page: number;
1459
+ pageSize: number;
1460
+ Filters: object | undefined;
1461
+ SourceFilters: any | undefined;
1894
1462
  Target: string | undefined;
1895
1463
  OnlyActives: boolean | undefined;
1896
1464
  };
@@ -1937,10 +1505,10 @@ export type Swagger = {
1937
1505
  CreatedTo: string | undefined;
1938
1506
  OrderBy: string | undefined;
1939
1507
  Include: string | undefined;
1940
- page: number | undefined;
1941
- pageSize: number | undefined;
1942
- Filters: Record<string, string> | undefined;
1943
- SourceFilters: any[] | undefined;
1508
+ page: number;
1509
+ pageSize: number;
1510
+ Filters: object | undefined;
1511
+ SourceFilters: any | undefined;
1944
1512
  Target: string | undefined;
1945
1513
  OnlyActives: boolean | undefined;
1946
1514
  };
@@ -1978,113 +1546,6 @@ export type Swagger = {
1978
1546
  result: null;
1979
1547
  };
1980
1548
  };
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
- };
2088
1549
  "/features/interaction/config/{sourceTable}/{entityKey}": {
2089
1550
  get: {
2090
1551
  params: {
@@ -2092,7 +1553,7 @@ export type Swagger = {
2092
1553
  entityKey: string;
2093
1554
  };
2094
1555
  requestBody: null;
2095
- result: InteractionConfigResponseSharedApiResponse;
1556
+ result: InteractionConfigResponseApiResponse;
2096
1557
  };
2097
1558
  };
2098
1559
  "/features/interaction/list/{sourceTable}/{sourceGUID}": {
@@ -2102,7 +1563,7 @@ export type Swagger = {
2102
1563
  sourceGUID: string;
2103
1564
  };
2104
1565
  requestBody: null;
2105
- result: InteractionDetailResponseSharedApiResponse;
1566
+ result: InteractionDetailResponseApiResponse;
2106
1567
  };
2107
1568
  };
2108
1569
  "/features/interaction/send": {
@@ -2123,7 +1584,7 @@ export type Swagger = {
2123
1584
  get: {
2124
1585
  params: {
2125
1586
  SourceTable: string | undefined;
2126
- SourceId: number | undefined;
1587
+ SourceId: number;
2127
1588
  Status: string | undefined;
2128
1589
  EntityKey: string | undefined;
2129
1590
  Search: string | undefined;
@@ -2131,12 +1592,11 @@ export type Swagger = {
2131
1592
  CreatedTo: string | undefined;
2132
1593
  OrderBy: string | undefined;
2133
1594
  Include: string | undefined;
2134
- page: number | undefined;
2135
- pageSize: number | undefined;
2136
- Filters: Record<string, string> | undefined;
2137
- SourceFilters: any[] | undefined;
1595
+ page: number;
1596
+ pageSize: number;
1597
+ Filters: object | undefined;
1598
+ SourceFilters: any | undefined;
2138
1599
  Target: string | undefined;
2139
- OnlyActives: boolean | undefined;
2140
1600
  };
2141
1601
  requestBody: null;
2142
1602
  result: InteractionItemResponsePaginatedResponse;
@@ -2164,7 +1624,7 @@ export type Swagger = {
2164
1624
  id: number;
2165
1625
  };
2166
1626
  requestBody: null;
2167
- result: StringApiResponse;
1627
+ result: null;
2168
1628
  };
2169
1629
  };
2170
1630
  "/admin/features/interaction/{id}/reject": {
@@ -2173,7 +1633,7 @@ export type Swagger = {
2173
1633
  id: number;
2174
1634
  };
2175
1635
  requestBody: null;
2176
- result: StringApiResponse;
1636
+ result: null;
2177
1637
  };
2178
1638
  };
2179
1639
  "/admin/features/interactionconfig/paginated": {
@@ -2186,12 +1646,11 @@ export type Swagger = {
2186
1646
  CreatedTo: string | undefined;
2187
1647
  OrderBy: string | undefined;
2188
1648
  Include: string | undefined;
2189
- page: number | undefined;
2190
- pageSize: number | undefined;
2191
- Filters: Record<string, string> | undefined;
2192
- SourceFilters: any[] | undefined;
1649
+ page: number;
1650
+ pageSize: number;
1651
+ Filters: object | undefined;
1652
+ SourceFilters: any | undefined;
2193
1653
  Target: string | undefined;
2194
- OnlyActives: boolean | undefined;
2195
1654
  };
2196
1655
  requestBody: null;
2197
1656
  result: InteractionConfigResponsePaginatedResponse;
@@ -2203,14 +1662,14 @@ export type Swagger = {
2203
1662
  id: number;
2204
1663
  };
2205
1664
  requestBody: null;
2206
- result: InteractionConfigResponseSharedApiResponse;
1665
+ result: InteractionConfigResponseApiResponse;
2207
1666
  };
2208
1667
  put: {
2209
1668
  params: {
2210
1669
  id: number;
2211
1670
  };
2212
1671
  requestBody: InteractionConfigRequest;
2213
- result: InteractionConfigResponseSharedApiResponse;
1672
+ result: InteractionConfigResponseApiResponse;
2214
1673
  };
2215
1674
  delete: {
2216
1675
  params: {
@@ -2252,10 +1711,10 @@ export type Swagger = {
2252
1711
  CreatedTo: string | undefined;
2253
1712
  OrderBy: string | undefined;
2254
1713
  Include: string | undefined;
2255
- page: number | undefined;
2256
- pageSize: number | undefined;
2257
- Filters: Record<string, string> | undefined;
2258
- SourceFilters: any[] | undefined;
1714
+ page: number;
1715
+ pageSize: number;
1716
+ Filters: object | undefined;
1717
+ SourceFilters: any | undefined;
2259
1718
  Target: string | undefined;
2260
1719
  OnlyActives: boolean | undefined;
2261
1720
  };
@@ -2266,19 +1725,19 @@ export type Swagger = {
2266
1725
  "/admin/features/jobopportunities/JobOpportunity/paginated-by-user": {
2267
1726
  get: {
2268
1727
  params: {
2269
- SetorIds: number[] | undefined;
2270
- CargosIds: number[] | undefined;
2271
- LojasIds: number[] | undefined;
1728
+ SetorIds: any | undefined;
1729
+ CargosIds: any | undefined;
1730
+ LojasIds: any | undefined;
2272
1731
  EntityKey: string | undefined;
2273
1732
  Search: string | undefined;
2274
1733
  CreatedFrom: string | undefined;
2275
1734
  CreatedTo: string | undefined;
2276
1735
  OrderBy: string | undefined;
2277
1736
  Include: string | undefined;
2278
- page: number | undefined;
2279
- pageSize: number | undefined;
2280
- Filters: Record<string, string> | undefined;
2281
- SourceFilters: any[] | undefined;
1737
+ page: number;
1738
+ pageSize: number;
1739
+ Filters: object | undefined;
1740
+ SourceFilters: any | undefined;
2282
1741
  Target: string | undefined;
2283
1742
  OnlyActives: boolean | undefined;
2284
1743
  };
@@ -2334,10 +1793,10 @@ export type Swagger = {
2334
1793
  CreatedTo: string | undefined;
2335
1794
  OrderBy: string | undefined;
2336
1795
  Include: string | undefined;
2337
- page: number | undefined;
2338
- pageSize: number | undefined;
2339
- Filters: Record<string, string> | undefined;
2340
- SourceFilters: any[] | undefined;
1796
+ page: number;
1797
+ pageSize: number;
1798
+ Filters: object | undefined;
1799
+ SourceFilters: any | undefined;
2341
1800
  Target: string | undefined;
2342
1801
  OnlyActives: boolean | undefined;
2343
1802
  };
@@ -2348,20 +1807,19 @@ export type Swagger = {
2348
1807
  "/admin/features/jobopportunities/JobOpportunityXCandidato/paginated-by-user": {
2349
1808
  get: {
2350
1809
  params: {
2351
- SetorIds: number[] | undefined;
2352
- CargosIds: number[] | undefined;
2353
- LojasIds: number[] | undefined;
2354
- JobId: number | undefined;
1810
+ SetorIds: any | undefined;
1811
+ CargosIds: any | undefined;
1812
+ LojasIds: any | undefined;
2355
1813
  EntityKey: string | undefined;
2356
1814
  Search: string | undefined;
2357
1815
  CreatedFrom: string | undefined;
2358
1816
  CreatedTo: string | undefined;
2359
1817
  OrderBy: string | undefined;
2360
1818
  Include: string | undefined;
2361
- page: number | undefined;
2362
- pageSize: number | undefined;
2363
- Filters: Record<string, string> | undefined;
2364
- SourceFilters: any[] | undefined;
1819
+ page: number;
1820
+ pageSize: number;
1821
+ Filters: object | undefined;
1822
+ SourceFilters: any | undefined;
2365
1823
  Target: string | undefined;
2366
1824
  OnlyActives: boolean | undefined;
2367
1825
  };
@@ -2431,10 +1889,10 @@ export type Swagger = {
2431
1889
  CreatedTo: string | undefined;
2432
1890
  OrderBy: string | undefined;
2433
1891
  Include: string | undefined;
2434
- page: number | undefined;
2435
- pageSize: number | undefined;
2436
- Filters: Record<string, string> | undefined;
2437
- SourceFilters: any[] | undefined;
1892
+ page: number;
1893
+ pageSize: number;
1894
+ Filters: object | undefined;
1895
+ SourceFilters: any | undefined;
2438
1896
  Target: string | undefined;
2439
1897
  OnlyActives: boolean | undefined;
2440
1898
  };
@@ -2481,22 +1939,6 @@ export type Swagger = {
2481
1939
  result: null;
2482
1940
  };
2483
1941
  };
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
- };
2500
1942
  "/admin/catalogs/loja/paginated": {
2501
1943
  get: {
2502
1944
  params: {
@@ -2506,10 +1948,10 @@ export type Swagger = {
2506
1948
  CreatedTo: string | undefined;
2507
1949
  OrderBy: string | undefined;
2508
1950
  Include: string | undefined;
2509
- page: number | undefined;
2510
- pageSize: number | undefined;
2511
- Filters: Record<string, string> | undefined;
2512
- SourceFilters: any[] | undefined;
1951
+ page: number;
1952
+ pageSize: number;
1953
+ Filters: object | undefined;
1954
+ SourceFilters: any | undefined;
2513
1955
  Target: string | undefined;
2514
1956
  OnlyActives: boolean | undefined;
2515
1957
  };
@@ -2520,17 +1962,17 @@ export type Swagger = {
2520
1962
  "/admin/catalogs/loja/paginated-by-user": {
2521
1963
  get: {
2522
1964
  params: {
2523
- Ids: number[] | undefined;
1965
+ Ids: any | undefined;
2524
1966
  EntityKey: string | undefined;
2525
1967
  Search: string | undefined;
2526
1968
  CreatedFrom: string | undefined;
2527
1969
  CreatedTo: string | undefined;
2528
1970
  OrderBy: string | undefined;
2529
1971
  Include: string | undefined;
2530
- page: number | undefined;
2531
- pageSize: number | undefined;
2532
- Filters: Record<string, string> | undefined;
2533
- SourceFilters: any[] | undefined;
1972
+ page: number;
1973
+ pageSize: number;
1974
+ Filters: object | undefined;
1975
+ SourceFilters: any | undefined;
2534
1976
  Target: string | undefined;
2535
1977
  OnlyActives: boolean | undefined;
2536
1978
  };
@@ -2586,10 +2028,10 @@ export type Swagger = {
2586
2028
  CreatedTo: string | undefined;
2587
2029
  OrderBy: string | undefined;
2588
2030
  Include: string | undefined;
2589
- page: number | undefined;
2590
- pageSize: number | undefined;
2591
- Filters: Record<string, string> | undefined;
2592
- SourceFilters: any[] | undefined;
2031
+ page: number;
2032
+ pageSize: number;
2033
+ Filters: object | undefined;
2034
+ SourceFilters: any | undefined;
2593
2035
  Target: string | undefined;
2594
2036
  OnlyActives: boolean | undefined;
2595
2037
  };
@@ -2636,13 +2078,6 @@ export type Swagger = {
2636
2078
  result: null;
2637
2079
  };
2638
2080
  };
2639
- "/Metadata/open": {
2640
- post: {
2641
- params: {};
2642
- requestBody: null;
2643
- result: null;
2644
- };
2645
- };
2646
2081
  "/Metadata": {
2647
2082
  post: {
2648
2083
  params: {};
@@ -2675,10 +2110,10 @@ export type Swagger = {
2675
2110
  CreatedTo: string | undefined;
2676
2111
  OrderBy: string | undefined;
2677
2112
  Include: string | undefined;
2678
- page: number | undefined;
2679
- pageSize: number | undefined;
2680
- Filters: Record<string, string> | undefined;
2681
- SourceFilters: any[] | undefined;
2113
+ page: number;
2114
+ pageSize: number;
2115
+ Filters: object | undefined;
2116
+ SourceFilters: any | undefined;
2682
2117
  Target: string | undefined;
2683
2118
  OnlyActives: boolean | undefined;
2684
2119
  };
@@ -2725,10 +2160,10 @@ export type Swagger = {
2725
2160
  CreatedTo: string | undefined;
2726
2161
  OrderBy: string | undefined;
2727
2162
  Include: string | undefined;
2728
- page: number | undefined;
2729
- pageSize: number | undefined;
2730
- Filters: Record<string, string> | undefined;
2731
- SourceFilters: any[] | undefined;
2163
+ page: number;
2164
+ pageSize: number;
2165
+ Filters: object | undefined;
2166
+ SourceFilters: any | undefined;
2732
2167
  Target: string | undefined;
2733
2168
  OnlyActives: boolean | undefined;
2734
2169
  };
@@ -2784,10 +2219,10 @@ export type Swagger = {
2784
2219
  CreatedTo: string | undefined;
2785
2220
  OrderBy: string | undefined;
2786
2221
  Include: string | undefined;
2787
- page: number | undefined;
2788
- pageSize: number | undefined;
2789
- Filters: Record<string, string> | undefined;
2790
- SourceFilters: any[] | undefined;
2222
+ page: number;
2223
+ pageSize: number;
2224
+ Filters: object | undefined;
2225
+ SourceFilters: any | undefined;
2791
2226
  Target: string | undefined;
2792
2227
  OnlyActives: boolean | undefined;
2793
2228
  };
@@ -2843,10 +2278,10 @@ export type Swagger = {
2843
2278
  CreatedTo: string | undefined;
2844
2279
  OrderBy: string | undefined;
2845
2280
  Include: string | undefined;
2846
- page: number | undefined;
2847
- pageSize: number | undefined;
2848
- Filters: Record<string, string> | undefined;
2849
- SourceFilters: any[] | undefined;
2281
+ page: number;
2282
+ pageSize: number;
2283
+ Filters: object | undefined;
2284
+ SourceFilters: any | undefined;
2850
2285
  Target: string | undefined;
2851
2286
  OnlyActives: boolean | undefined;
2852
2287
  };
@@ -2893,23 +2328,42 @@ export type Swagger = {
2893
2328
  result: null;
2894
2329
  };
2895
2330
  };
2896
- "/billing/order": {
2331
+ "/webhook/pagarme": {
2897
2332
  post: {
2898
2333
  params: {};
2899
- requestBody: OrderCheckoutRequest;
2334
+ requestBody: null;
2900
2335
  result: null;
2901
2336
  };
2902
2337
  };
2903
- "/billing/order/cart/checkout": {
2904
- post: {
2905
- params: {};
2906
- requestBody: OrderByCartCheckoutRequest;
2907
- result: CheckoutResponseResultDto;
2338
+ "/Pages/{url}": {
2339
+ get: {
2340
+ params: {
2341
+ url: string;
2342
+ };
2343
+ requestBody: null;
2344
+ result: PageDTO;
2908
2345
  };
2909
2346
  };
2910
- "/Pages/{url}": {
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;
2361
+ };
2362
+ };
2363
+ "/Pages/detail/{entityKey}/{url}": {
2911
2364
  get: {
2912
2365
  params: {
2366
+ entityKey: string;
2913
2367
  url: string;
2914
2368
  };
2915
2369
  requestBody: null;
@@ -2932,10 +2386,10 @@ export type Swagger = {
2932
2386
  CreatedTo: string | undefined;
2933
2387
  OrderBy: string | undefined;
2934
2388
  Include: string | undefined;
2935
- page: number | undefined;
2936
- pageSize: number | undefined;
2937
- Filters: Record<string, string> | undefined;
2938
- SourceFilters: any[] | undefined;
2389
+ page: number;
2390
+ pageSize: number;
2391
+ Filters: object | undefined;
2392
+ SourceFilters: any | undefined;
2939
2393
  Target: string | undefined;
2940
2394
  OnlyActives: boolean | undefined;
2941
2395
  };
@@ -2966,11 +2420,10 @@ export type Swagger = {
2966
2420
  result: null;
2967
2421
  };
2968
2422
  };
2969
- "/admin/system/pages/url-entityKey": {
2423
+ "/admin/system/pages/url": {
2970
2424
  get: {
2971
2425
  params: {
2972
2426
  route: string | undefined;
2973
- entityKey: string | undefined;
2974
2427
  };
2975
2428
  requestBody: null;
2976
2429
  result: PageResponse;
@@ -2992,10 +2445,10 @@ export type Swagger = {
2992
2445
  CreatedTo: string | undefined;
2993
2446
  OrderBy: string | undefined;
2994
2447
  Include: string | undefined;
2995
- page: number | undefined;
2996
- pageSize: number | undefined;
2997
- Filters: Record<string, string> | undefined;
2998
- SourceFilters: any[] | undefined;
2448
+ page: number;
2449
+ pageSize: number;
2450
+ Filters: object | undefined;
2451
+ SourceFilters: any | undefined;
2999
2452
  Target: string | undefined;
3000
2453
  OnlyActives: boolean | undefined;
3001
2454
  };
@@ -3025,107 +2478,30 @@ export type Swagger = {
3025
2478
  id: number;
3026
2479
  };
3027
2480
  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;
3081
- };
3082
- put: {
3083
- params: {
3084
- id: number;
3085
- };
3086
- requestBody: PdiCreateOrUpdateRequest;
3087
- result: PdiResponseApiResponse;
2481
+ result: PaginaResponseSharedApiResponse;
3088
2482
  };
3089
2483
  delete: {
3090
2484
  params: {
3091
2485
  id: number;
3092
2486
  };
3093
2487
  requestBody: null;
3094
- result: StringApiResponse;
2488
+ result: null;
3095
2489
  };
3096
2490
  };
3097
- "/api/pdis/responder": {
2491
+ "/admin/contents/page": {
3098
2492
  post: {
3099
2493
  params: {};
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;
2494
+ requestBody: PaginaRequest;
2495
+ result: null;
3111
2496
  };
3112
2497
  };
3113
- "/api/pdis/{pdiId}/respostas": {
2498
+ "/Platform/configs": {
3114
2499
  get: {
3115
2500
  params: {
3116
- pdiId: number;
3117
- };
3118
- requestBody: null;
3119
- result: PdiUserDetailResponseDtoIEnumerableApiResponse;
3120
- };
3121
- };
3122
- "/api/pdis/{pdiId}/start": {
3123
- post: {
3124
- params: {
3125
- pdiId: number;
2501
+ tenantId: string | undefined;
3126
2502
  };
3127
2503
  requestBody: null;
3128
- result: StringApiResponse;
2504
+ result: Configs;
3129
2505
  };
3130
2506
  };
3131
2507
  "/admin/catalogs/Portfolio/paginated": {
@@ -3137,10 +2513,10 @@ export type Swagger = {
3137
2513
  CreatedTo: string | undefined;
3138
2514
  OrderBy: string | undefined;
3139
2515
  Include: string | undefined;
3140
- page: number | undefined;
3141
- pageSize: number | undefined;
3142
- Filters: Record<string, string> | undefined;
3143
- SourceFilters: any[] | undefined;
2516
+ page: number;
2517
+ pageSize: number;
2518
+ Filters: object | undefined;
2519
+ SourceFilters: any | undefined;
3144
2520
  Target: string | undefined;
3145
2521
  OnlyActives: boolean | undefined;
3146
2522
  };
@@ -3196,10 +2572,10 @@ export type Swagger = {
3196
2572
  CreatedTo: string | undefined;
3197
2573
  OrderBy: string | undefined;
3198
2574
  Include: string | undefined;
3199
- page: number | undefined;
3200
- pageSize: number | undefined;
3201
- Filters: Record<string, string> | undefined;
3202
- SourceFilters: any[] | undefined;
2575
+ page: number;
2576
+ pageSize: number;
2577
+ Filters: object | undefined;
2578
+ SourceFilters: any | undefined;
3203
2579
  Target: string | undefined;
3204
2580
  OnlyActives: boolean | undefined;
3205
2581
  };
@@ -3246,74 +2622,6 @@ export type Swagger = {
3246
2622
  result: null;
3247
2623
  };
3248
2624
  };
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
- };
3317
2625
  "/admin/Roles/Role/paginated": {
3318
2626
  get: {
3319
2627
  params: {
@@ -3323,10 +2631,10 @@ export type Swagger = {
3323
2631
  CreatedTo: string | undefined;
3324
2632
  OrderBy: string | undefined;
3325
2633
  Include: string | undefined;
3326
- page: number | undefined;
3327
- pageSize: number | undefined;
3328
- Filters: Record<string, string> | undefined;
3329
- SourceFilters: any[] | undefined;
2634
+ page: number;
2635
+ pageSize: number;
2636
+ Filters: object | undefined;
2637
+ SourceFilters: any | undefined;
3330
2638
  Target: string | undefined;
3331
2639
  OnlyActives: boolean | undefined;
3332
2640
  };
@@ -3367,7 +2675,7 @@ export type Swagger = {
3367
2675
  "/admin/Roles/Role/UserByListRoles": {
3368
2676
  get: {
3369
2677
  params: {
3370
- ids: number[] | undefined;
2678
+ ids: any | undefined;
3371
2679
  };
3372
2680
  requestBody: null;
3373
2681
  result: UsuarioResponseSharedApiResponse;
@@ -3396,20 +2704,6 @@ export type Swagger = {
3396
2704
  result: null;
3397
2705
  };
3398
2706
  };
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
- };
3413
2707
  "/admin/catalogs/servico/paginated": {
3414
2708
  get: {
3415
2709
  params: {
@@ -3419,10 +2713,10 @@ export type Swagger = {
3419
2713
  CreatedTo: string | undefined;
3420
2714
  OrderBy: string | undefined;
3421
2715
  Include: string | undefined;
3422
- page: number | undefined;
3423
- pageSize: number | undefined;
3424
- Filters: Record<string, string> | undefined;
3425
- SourceFilters: any[] | undefined;
2716
+ page: number;
2717
+ pageSize: number;
2718
+ Filters: object | undefined;
2719
+ SourceFilters: any | undefined;
3426
2720
  Target: string | undefined;
3427
2721
  OnlyActives: boolean | undefined;
3428
2722
  };
@@ -3478,10 +2772,10 @@ export type Swagger = {
3478
2772
  CreatedTo: string | undefined;
3479
2773
  OrderBy: string | undefined;
3480
2774
  Include: string | undefined;
3481
- page: number | undefined;
3482
- pageSize: number | undefined;
3483
- Filters: Record<string, string> | undefined;
3484
- SourceFilters: any[] | undefined;
2775
+ page: number;
2776
+ pageSize: number;
2777
+ Filters: object | undefined;
2778
+ SourceFilters: any | undefined;
3485
2779
  Target: string | undefined;
3486
2780
  OnlyActives: boolean | undefined;
3487
2781
  };
@@ -3492,17 +2786,17 @@ export type Swagger = {
3492
2786
  "/admin/catalogs/Setor/paginated-by-user": {
3493
2787
  get: {
3494
2788
  params: {
3495
- ids: number[] | undefined;
2789
+ Ids: any | undefined;
3496
2790
  EntityKey: string | undefined;
3497
2791
  Search: string | undefined;
3498
2792
  CreatedFrom: string | undefined;
3499
2793
  CreatedTo: string | undefined;
3500
2794
  OrderBy: string | undefined;
3501
2795
  Include: string | undefined;
3502
- page: number | undefined;
3503
- pageSize: number | undefined;
3504
- Filters: Record<string, string> | undefined;
3505
- SourceFilters: any[] | undefined;
2796
+ page: number;
2797
+ pageSize: number;
2798
+ Filters: object | undefined;
2799
+ SourceFilters: any | undefined;
3506
2800
  Target: string | undefined;
3507
2801
  OnlyActives: boolean | undefined;
3508
2802
  };
@@ -3572,10 +2866,10 @@ export type Swagger = {
3572
2866
  CreatedTo: string | undefined;
3573
2867
  OrderBy: string | undefined;
3574
2868
  Include: string | undefined;
3575
- page: number | undefined;
3576
- pageSize: number | undefined;
3577
- Filters: Record<string, string> | undefined;
3578
- SourceFilters: any[] | undefined;
2869
+ page: number;
2870
+ pageSize: number;
2871
+ Filters: object | undefined;
2872
+ SourceFilters: any | undefined;
3579
2873
  Target: string | undefined;
3580
2874
  OnlyActives: boolean | undefined;
3581
2875
  };
@@ -3622,199 +2916,42 @@ export type Swagger = {
3622
2916
  result: null;
3623
2917
  };
3624
2918
  };
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": {
2919
+ "/api/Subscriptions/verify-order": {
3656
2920
  post: {
3657
2921
  params: {};
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;
2922
+ requestBody: VerifyOrderRequest;
2923
+ result: PaymentOrderResponse;
3778
2924
  };
3779
2925
  };
3780
- "/billing/subscriptionplans/order/cancel": {
3781
- delete: {
3782
- params: {
3783
- id: string | undefined;
3784
- };
3785
- requestBody: null;
3786
- result: null;
3787
- };
3788
- };
3789
- "/billing/subscriptionplans/checkout": {
2926
+ "/api/Subscriptions/create-order": {
3790
2927
  post: {
3791
2928
  params: {};
3792
- requestBody: SubscriptionCheckoutRequest;
3793
- result: CheckoutResponseResultDto;
2929
+ requestBody: PaymentOrderRequest;
2930
+ result: PaymentOrderResponse;
3794
2931
  };
3795
2932
  };
3796
- "/billing/subscriptionplans/billing-type": {
2933
+ "/api/Subscriptions/user-subscription": {
3797
2934
  get: {
3798
2935
  params: {};
3799
2936
  requestBody: null;
3800
- result: null;
2937
+ result: SubscriptionResultDto;
3801
2938
  };
3802
2939
  };
3803
- "/billing/subscriptionplans/billing-interval": {
3804
- get: {
2940
+ "/api/Subscriptions/create": {
2941
+ post: {
3805
2942
  params: {};
3806
- requestBody: null;
2943
+ requestBody: SubscriptionRequest;
3807
2944
  result: null;
3808
2945
  };
3809
2946
  };
3810
- "/billing/subscriptionplans/payment-status": {
3811
- get: {
2947
+ "/api/Subscriptions/webhooks/pagarme": {
2948
+ post: {
3812
2949
  params: {};
3813
- requestBody: null;
2950
+ requestBody: {};
3814
2951
  result: null;
3815
2952
  };
3816
2953
  };
3817
- "/billing/subscriptionplans/subscription-status": {
2954
+ "/api/Subscriptions/GetSubscriptions": {
3818
2955
  get: {
3819
2956
  params: {};
3820
2957
  requestBody: null;
@@ -3830,10 +2967,10 @@ export type Swagger = {
3830
2967
  CreatedTo: string | undefined;
3831
2968
  OrderBy: string | undefined;
3832
2969
  Include: string | undefined;
3833
- page: number | undefined;
3834
- pageSize: number | undefined;
3835
- Filters: Record<string, string> | undefined;
3836
- SourceFilters: any[] | undefined;
2970
+ page: number;
2971
+ pageSize: number;
2972
+ Filters: object | undefined;
2973
+ SourceFilters: any | undefined;
3837
2974
  Target: string | undefined;
3838
2975
  OnlyActives: boolean | undefined;
3839
2976
  };
@@ -3924,10 +3061,10 @@ export type Swagger = {
3924
3061
  CreatedTo: string | undefined;
3925
3062
  OrderBy: string | undefined;
3926
3063
  Include: string | undefined;
3927
- page: number | undefined;
3928
- pageSize: number | undefined;
3929
- Filters: Record<string, string> | undefined;
3930
- SourceFilters: any[] | undefined;
3064
+ page: number;
3065
+ pageSize: number;
3066
+ Filters: object | undefined;
3067
+ SourceFilters: any | undefined;
3931
3068
  Target: string | undefined;
3932
3069
  OnlyActives: boolean | undefined;
3933
3070
  };
@@ -3999,10 +3136,10 @@ export type Swagger = {
3999
3136
  CreatedTo: string | undefined;
4000
3137
  OrderBy: string | undefined;
4001
3138
  Include: string | undefined;
4002
- page: number | undefined;
4003
- pageSize: number | undefined;
4004
- Filters: Record<string, string> | undefined;
4005
- SourceFilters: any[] | undefined;
3139
+ page: number;
3140
+ pageSize: number;
3141
+ Filters: object | undefined;
3142
+ SourceFilters: any | undefined;
4006
3143
  Target: string | undefined;
4007
3144
  OnlyActives: boolean | undefined;
4008
3145
  };
@@ -4146,52 +3283,8 @@ export interface ArtigoResponseSharedApiResponse {
4146
3283
  message?: string;
4147
3284
  item?: ArtigoResponse;
4148
3285
  }
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
- }
4191
3286
  export interface BillingPeriod {
4192
3287
  }
4193
- export interface BillingType {
4194
- }
4195
3288
  export interface Blog {
4196
3289
  id?: number;
4197
3290
  ativo?: boolean;
@@ -4212,7 +3305,6 @@ export interface Blog {
4212
3305
  categoria?: Categoria;
4213
3306
  directoryId?: number;
4214
3307
  directory?: DirectoryEntity;
4215
- isOnHold?: boolean;
4216
3308
  }
4217
3309
  export interface BlogPage {
4218
3310
  head?: Head;
@@ -4242,7 +3334,6 @@ export interface BlogRequest {
4242
3334
  categoria?: CategoriaDto;
4243
3335
  categoriaId?: number;
4244
3336
  directoryId?: number;
4245
- isOnHold?: boolean;
4246
3337
  }
4247
3338
  export interface BlogResponse {
4248
3339
  id?: number;
@@ -4263,8 +3354,6 @@ export interface BlogResponse {
4263
3354
  categoria?: CategoriaDto;
4264
3355
  categoriaId?: number;
4265
3356
  directoryId?: number;
4266
- isOnHold?: boolean;
4267
- directory?: DirectoryDto;
4268
3357
  }
4269
3358
  export interface BlogResponsePaginatedResponse {
4270
3359
  success?: boolean;
@@ -4287,8 +3376,6 @@ export interface Body {
4287
3376
  nossaHistoria?: string;
4288
3377
  solucoesPersonalizadas?: string;
4289
3378
  }
4290
- export interface CallingConventions {
4291
- }
4292
3379
  export interface Candidato {
4293
3380
  id?: number;
4294
3381
  ativo?: boolean;
@@ -4418,91 +3505,19 @@ export interface CargoResponse {
4418
3505
  url?: string;
4419
3506
  slug?: string;
4420
3507
  jsonContent?: string;
4421
- setorId?: number;
4422
- }
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;
3508
+ setorId?: number;
4495
3509
  }
4496
- export interface CartResponse {
4497
- id?: number;
4498
- guid?: string;
4499
- usuarioId?: number;
4500
- items?: CartItemResponse[];
3510
+ export interface CargoResponsePaginatedResponse {
3511
+ success?: boolean;
3512
+ message?: string;
3513
+ item?: CargoResponse[];
3514
+ pagination?: SharedPaginatedJson;
3515
+ items?: CargoResponse[];
4501
3516
  }
4502
- export interface CartResponseSharedApiResponse {
3517
+ export interface CargoResponseSharedApiResponse {
4503
3518
  success?: boolean;
4504
3519
  message?: string;
4505
- item?: CartResponse;
3520
+ item?: CargoResponse;
4506
3521
  }
4507
3522
  export interface Categoria {
4508
3523
  id?: number;
@@ -4640,152 +3655,6 @@ export interface ChatListResponse {
4640
3655
  export interface ChatNewResponse {
4641
3656
  title?: string;
4642
3657
  }
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
- }
4789
3658
  export interface Commodity {
4790
3659
  id?: number;
4791
3660
  title: string;
@@ -4793,115 +3662,18 @@ export interface Commodity {
4793
3662
  iconType?: IconType;
4794
3663
  directoryCommodities?: DirectoryCommodity[];
4795
3664
  }
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;
3665
+ export interface Configs {
3666
+ workspaces?: WorkspaceItems[];
3667
+ configurations?: Configurations;
3668
+ contents?: Contents;
4871
3669
  }
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;
3670
+ export interface Configurations {
3671
+ logo?: string;
3672
+ primaryColor?: string;
3673
+ secondaryColor?: string;
3674
+ tertiaryColor?: string;
3675
+ subscriptionModel?: string;
3676
+ subscriptionPrice?: string;
4905
3677
  }
4906
3678
  export interface ContactDTO {
4907
3679
  name?: string;
@@ -4974,6 +3746,9 @@ export interface ContactResponseSharedApiResponse {
4974
3746
  message?: string;
4975
3747
  item?: ContactResponse;
4976
3748
  }
3749
+ export interface Contents {
3750
+ methodology?: string;
3751
+ }
4977
3752
  export interface CourseModuleRequest {
4978
3753
  id?: number;
4979
3754
  courseId?: number;
@@ -5024,7 +3799,6 @@ export interface CourseRequest {
5024
3799
  }
5025
3800
  export interface CourseResponse {
5026
3801
  id?: number;
5027
- guid?: string;
5028
3802
  title?: string;
5029
3803
  description?: string;
5030
3804
  coverImageUrl?: string;
@@ -5082,40 +3856,14 @@ export interface CreateAccountResult {
5082
3856
  status?: number;
5083
3857
  title?: string;
5084
3858
  message?: string;
5085
- validationErrors?: Record<string, KeyString>;
3859
+ validationErrors?: Record<string, any>;
5086
3860
  }
5087
3861
  export interface CreateAccountShortResponse {
5088
3862
  type?: string;
5089
3863
  phone?: string;
5090
- name?: string;
5091
3864
  email: string;
5092
3865
  password: string;
5093
3866
  }
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
- }
5119
3867
  export interface CursoRequest {
5120
3868
  id?: number;
5121
3869
  ativo?: boolean;
@@ -5162,28 +3910,9 @@ export interface CursoResponseSharedApiResponse {
5162
3910
  message?: string;
5163
3911
  item?: CursoResponse;
5164
3912
  }
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
- }
5181
3913
  export interface DataResult {
5182
3914
  token?: string;
5183
3915
  }
5184
- export interface DependsOnResponse {
5185
- entitykey?: string;
5186
- }
5187
3916
  export interface DepoimentoRequest {
5188
3917
  id?: number;
5189
3918
  ativo?: boolean;
@@ -5281,45 +4010,6 @@ export interface DirectoryDetail {
5281
4010
  additionalInfo?: string;
5282
4011
  directory?: DirectoryEntity;
5283
4012
  }
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
- }
5323
4013
  export interface DirectoryEntity {
5324
4014
  id?: number;
5325
4015
  name: string;
@@ -5433,6 +4123,7 @@ export interface DirectoryResponse {
5433
4123
  isActive?: boolean;
5434
4124
  isDeleted?: boolean;
5435
4125
  isHighlighted?: boolean;
4126
+ isOnHold?: boolean;
5436
4127
  hasAccessibility?: boolean;
5437
4128
  entityKey?: string;
5438
4129
  jsonContent?: string;
@@ -5444,9 +4135,8 @@ export interface DirectoryResponse {
5444
4135
  lng?: string;
5445
4136
  uf?: string;
5446
4137
  localidade?: string;
5447
- entityRelation?: Record<string, Record<string, DynamicEntityGroup>>;
4138
+ entityRelation?: Record<string, any>;
5448
4139
  blogs?: BlogResponse[];
5449
- isOnHold?: boolean;
5450
4140
  }
5451
4141
  export interface DirectoryResponsePaginatedResponse {
5452
4142
  success?: boolean;
@@ -5469,7 +4159,7 @@ export interface DirectorySearchRequest {
5469
4159
  include?: string;
5470
4160
  page?: number;
5471
4161
  pageSize?: number;
5472
- filters?: Record<string, string>;
4162
+ filters?: Record<string, any>;
5473
4163
  sourceFilters?: SharedSourceFilter[];
5474
4164
  target?: string;
5475
4165
  onlyActives?: boolean;
@@ -5485,9 +4175,6 @@ export interface DirectorySearchRequest {
5485
4175
  sourceTable?: string;
5486
4176
  targetTable?: string;
5487
4177
  keys?: string;
5488
- minRating?: number;
5489
- maxRating?: number;
5490
- isOnHold?: boolean;
5491
4178
  }
5492
4179
  export interface DirectoryUpdateRequest {
5493
4180
  id?: number;
@@ -5529,11 +4216,6 @@ export interface DirectoryUpdateRequest {
5529
4216
  localidade?: string;
5530
4217
  blogs?: BlogResponse[];
5531
4218
  }
5532
- export interface DiscountDto {
5533
- type?: string;
5534
- value?: number;
5535
- dueDateLimitDays?: number;
5536
- }
5537
4219
  export interface DriveFileCreateRequest {
5538
4220
  folderId: string;
5539
4221
  jsonContent?: string;
@@ -5645,43 +4327,53 @@ export interface DrivePermissionUserResponseListApiResponse {
5645
4327
  export interface DynamicEntityGroup {
5646
4328
  items?: any[];
5647
4329
  }
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
- }
5663
4330
  export interface EntityRelationRequest {
5664
- entityKeySource?: string;
5665
- entityKeyTarget?: string;
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;
5666
4343
  sourceId?: number;
4344
+ targetTable?: string;
5667
4345
  targetId?: number;
4346
+ component?: string;
4347
+ tenantId?: string;
4348
+ lang?: string;
4349
+ groupId?: string;
5668
4350
  ativo?: boolean;
5669
- jsonContent?: string;
5670
- titulo?: string;
5671
4351
  }
5672
4352
  export interface EntityRelationResponse {
5673
- entityKeySource?: string;
5674
- entityKeyTarget?: string;
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;
5675
4365
  sourceId?: number;
4366
+ targetTable?: string;
5676
4367
  targetId?: number;
5677
- jsonContent?: string;
5678
- titulo?: string;
4368
+ component?: string;
4369
+ tenantId?: string;
4370
+ lang?: string;
4371
+ groupId?: string;
5679
4372
  id?: number;
5680
4373
  ativo?: boolean;
5681
4374
  excluido?: boolean;
5682
4375
  dataCriacao?: string;
5683
4376
  dataEdicao?: string;
5684
- related?: EntityRelationResponse;
5685
4377
  }
5686
4378
  export interface EntityRelationResponsePaginatedResponse {
5687
4379
  success?: boolean;
@@ -5775,36 +4467,7 @@ export interface ErrorResult {
5775
4467
  status?: number;
5776
4468
  title?: string;
5777
4469
  message?: string;
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;
4470
+ validationErrors?: Record<string, any>;
5808
4471
  }
5809
4472
  export interface FaqRequest {
5810
4473
  id?: number;
@@ -5906,36 +4569,6 @@ export interface FeatureResponseSharedApiResponse {
5906
4569
  message?: string;
5907
4570
  item?: FeatureResponse;
5908
4571
  }
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
- }
5939
4572
  export interface FilterItem {
5940
4573
  id?: number;
5941
4574
  name?: string;
@@ -5945,7 +4578,6 @@ export interface FilterItem {
5945
4578
  export interface FilterRequest {
5946
4579
  routes?: string[];
5947
4580
  entityRoutes?: string[];
5948
- onlyActives?: boolean;
5949
4581
  }
5950
4582
  export interface FilterResponse {
5951
4583
  label?: string;
@@ -5954,10 +4586,6 @@ export interface FilterResponse {
5954
4586
  component?: string;
5955
4587
  items?: FilterItem[];
5956
4588
  }
5957
- export interface FineDto {
5958
- value?: number;
5959
- type?: string;
5960
- }
5961
4589
  export interface FornecedorRequest {
5962
4590
  id?: number;
5963
4591
  ativo?: boolean;
@@ -6030,65 +4658,10 @@ export interface FornecedorResponseSharedApiResponse {
6030
4658
  message?: string;
6031
4659
  item?: FornecedorResponse;
6032
4660
  }
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
- }
6079
4661
  export interface GoogleLoginRequest {
6080
4662
  token?: string;
6081
4663
  type?: string;
6082
4664
  }
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
- }
6092
4665
  export interface Head {
6093
4666
  pageTitle?: string;
6094
4667
  metaDescription?: string;
@@ -6201,61 +4774,11 @@ export interface HostServerResponseSharedApiResponse {
6201
4774
  message?: string;
6202
4775
  item?: HostServerResponse;
6203
4776
  }
6204
- export interface ICustomAttributeProvider {
6205
- }
6206
4777
  export interface IconType {
6207
4778
  id?: number;
6208
4779
  name: string;
6209
4780
  iconUrl?: string;
6210
4781
  }
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
- }
6259
4782
  export interface InteractionCategoryRatingRequest {
6260
4783
  categoryName?: string;
6261
4784
  rating?: number;
@@ -6274,8 +4797,6 @@ export interface InteractionConfigRequest {
6274
4797
  allowedReactions?: string;
6275
4798
  showCategories?: boolean;
6276
4799
  categories?: string;
6277
- autoApprove?: boolean;
6278
- bannedWords?: string;
6279
4800
  }
6280
4801
  export interface InteractionConfigResponse {
6281
4802
  id?: number;
@@ -6289,8 +4810,11 @@ export interface InteractionConfigResponse {
6289
4810
  allowedReactions?: string;
6290
4811
  showCategories?: boolean;
6291
4812
  categories?: string;
6292
- bannedWords?: string;
6293
- autoApprove?: boolean;
4813
+ }
4814
+ export interface InteractionConfigResponseApiResponse {
4815
+ success?: boolean;
4816
+ message?: string;
4817
+ item?: InteractionConfigResponse;
6294
4818
  }
6295
4819
  export interface InteractionConfigResponsePaginatedResponse {
6296
4820
  success?: boolean;
@@ -6299,17 +4823,12 @@ export interface InteractionConfigResponsePaginatedResponse {
6299
4823
  pagination?: PaginatedJson;
6300
4824
  items?: InteractionConfigResponse[];
6301
4825
  }
6302
- export interface InteractionConfigResponseSharedApiResponse {
6303
- success?: boolean;
6304
- message?: string;
6305
- item?: InteractionConfigResponse;
6306
- }
6307
4826
  export interface InteractionDetailResponse {
6308
4827
  rate?: RateInteraction;
6309
4828
  items?: InteractionItemResponse[];
6310
4829
  reactions?: InteractionReactionResponse[];
6311
4830
  }
6312
- export interface InteractionDetailResponseSharedApiResponse {
4831
+ export interface InteractionDetailResponseApiResponse {
6313
4832
  success?: boolean;
6314
4833
  message?: string;
6315
4834
  item?: InteractionDetailResponse;
@@ -6365,16 +4884,12 @@ export interface InteractionReactionRequest {
6365
4884
  export interface InteractionReactionResponse {
6366
4885
  reactionType?: string;
6367
4886
  count?: number;
6368
- id?: number;
6369
4887
  }
6370
4888
  export interface InteractionReactionResponseApiResponse {
6371
4889
  success?: boolean;
6372
4890
  message?: string;
6373
4891
  item?: InteractionReactionResponse;
6374
4892
  }
6375
- export interface InterestDto {
6376
- value?: number;
6377
- }
6378
4893
  export interface Item {
6379
4894
  id?: number;
6380
4895
  ordem?: number;
@@ -6560,8 +5075,6 @@ export interface JobOpportunityXCandidato {
6560
5075
  export interface KeyString {
6561
5076
  errors?: string[];
6562
5077
  }
6563
- export interface LayoutKind {
6564
- }
6565
5078
  export interface LessonRequest {
6566
5079
  id?: number;
6567
5080
  moduleId?: number;
@@ -6581,10 +5094,6 @@ export interface LessonRequest {
6581
5094
  description?: string;
6582
5095
  isFeatured?: boolean;
6583
5096
  updatedBy?: number;
6584
- status?: LessonStatusEnum;
6585
- lessonType?: LessonTypeEnum;
6586
- videoSource?: VideoSourceEnum;
6587
- difficulty?: string;
6588
5097
  }
6589
5098
  export interface LessonResponse {
6590
5099
  id?: number;
@@ -6606,15 +5115,6 @@ export interface LessonResponse {
6606
5115
  description?: string;
6607
5116
  isFeatured?: boolean;
6608
5117
  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;
6618
5118
  }
6619
5119
  export interface LessonResponsePaginatedResponse {
6620
5120
  success?: boolean;
@@ -6628,9 +5128,11 @@ export interface LessonResponseSharedApiResponse {
6628
5128
  message?: string;
6629
5129
  item?: LessonResponse;
6630
5130
  }
6631
- export interface LessonStatusEnum {
6632
- }
6633
- export interface LessonTypeEnum {
5131
+ export interface ListPageDTO {
5132
+ page?: Item;
5133
+ pages?: Item[];
5134
+ categorias?: Item[];
5135
+ pagination?: Pagination;
6634
5136
  }
6635
5137
  export interface LoginResult {
6636
5138
  data?: DataResult;
@@ -6758,10 +5260,6 @@ export interface LojaXUsuario {
6758
5260
  usuarioId?: number;
6759
5261
  usuario?: Usuario;
6760
5262
  }
6761
- export interface LojasResponse {
6762
- titulo?: string;
6763
- id?: number;
6764
- }
6765
5263
  export interface MarcaRequest {
6766
5264
  id?: number;
6767
5265
  ativo?: boolean;
@@ -6808,127 +5306,11 @@ export interface MarcaResponseSharedApiResponse {
6808
5306
  message?: string;
6809
5307
  item?: MarcaResponse;
6810
5308
  }
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
- }
6823
5309
  export interface MessageChatResponse {
6824
5310
  message?: string;
6825
5311
  isChatAnswer?: boolean;
6826
5312
  time?: string;
6827
5313
  }
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
- }
6932
5314
  export interface ModuleLessonRequest {
6933
5315
  id?: number;
6934
5316
  moduleId?: number;
@@ -7005,24 +5387,6 @@ export interface ModuleResponseSharedApiResponse {
7005
5387
  message?: string;
7006
5388
  item?: ModuleResponse;
7007
5389
  }
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
- }
7026
5390
  export interface NoticiaRequest {
7027
5391
  id?: number;
7028
5392
  ativo?: boolean;
@@ -7069,11 +5433,6 @@ export interface NoticiaResponseSharedApiResponse {
7069
5433
  message?: string;
7070
5434
  item?: NoticiaResponse;
7071
5435
  }
7072
- export interface ObjectSharedApiResponse {
7073
- success?: boolean;
7074
- message?: string;
7075
- item?: any;
7076
- }
7077
5436
  export interface ObjetoRequest {
7078
5437
  id?: number;
7079
5438
  ativo?: boolean;
@@ -7120,61 +5479,6 @@ export interface ObjetoResponseSharedApiResponse {
7120
5479
  message?: string;
7121
5480
  item?: ObjetoResponse;
7122
5481
  }
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
- }
7178
5482
  export interface PageDTO {
7179
5483
  page?: Item;
7180
5484
  paginas?: Item[];
@@ -7316,101 +5620,25 @@ export interface Pagination {
7316
5620
  totalItems?: number;
7317
5621
  pages?: number[];
7318
5622
  }
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;
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;
7414
5642
  }
7415
5643
  export interface Permission {
7416
5644
  id?: number;
@@ -7421,11 +5649,7 @@ export interface Permission {
7421
5649
  createdAt?: string;
7422
5650
  updatedAt?: string;
7423
5651
  rolePermissions?: RolePermission[];
7424
- }
7425
- export interface PixTransactionResponse {
7426
- encodedImage?: string;
7427
- payload?: string;
7428
- expirationDate?: string;
5652
+ subscriptionPlanPermissions?: SubscriptionPlanPermission[];
7429
5653
  }
7430
5654
  export interface PortfolioRequest {
7431
5655
  id?: number;
@@ -7532,69 +5756,6 @@ export interface ProdutoResponseSharedApiResponse {
7532
5756
  message?: string;
7533
5757
  item?: ProdutoResponse;
7534
5758
  }
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
- }
7598
5759
  export interface RateInteraction {
7599
5760
  rating?: number;
7600
5761
  respondents?: number;
@@ -7606,21 +5767,6 @@ export interface RateInteractionItem {
7606
5767
  rating?: string;
7607
5768
  respondents?: number;
7608
5769
  }
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
- }
7624
5770
  export interface RelationNodeResponse {
7625
5771
  table: string;
7626
5772
  id: number;
@@ -7679,15 +5825,6 @@ export interface RolesResponseSharedApiResponse {
7679
5825
  message?: string;
7680
5826
  item?: RolesResponse;
7681
5827
  }
7682
- export interface RuntimeFieldHandle {
7683
- value?: IntPtr;
7684
- }
7685
- export interface RuntimeMethodHandle {
7686
- value?: IntPtr;
7687
- }
7688
- export interface RuntimeTypeHandle {
7689
- value?: IntPtr;
7690
- }
7691
5828
  export interface SectionRequest {
7692
5829
  id?: number;
7693
5830
  ref?: string;
@@ -7695,13 +5832,7 @@ export interface SectionRequest {
7695
5832
  videoUrl?: string;
7696
5833
  jsonContent?: string;
7697
5834
  enabled?: boolean;
7698
- i18n?: Record<string, TranslationDto>;
7699
- title?: string;
7700
- subtitle?: string;
7701
- description?: string;
7702
- linkText?: string;
7703
- }
7704
- export interface SecurityRuleSet {
5835
+ i18n?: Record<string, any>;
7705
5836
  }
7706
5837
  export interface SelectionProcessRequest {
7707
5838
  ativo?: boolean;
@@ -7755,9 +5886,6 @@ export interface SelectionProcessResponse {
7755
5886
  status?: string;
7756
5887
  statusColor?: string;
7757
5888
  curriculum?: string;
7758
- mensagem?: string;
7759
- jobId?: number;
7760
- jobName?: string;
7761
5889
  }
7762
5890
  export interface SelectionProcessResponsePaginatedResponse {
7763
5891
  success?: boolean;
@@ -7929,10 +6057,6 @@ export interface SetorResponseSharedApiResponse {
7929
6057
  message?: string;
7930
6058
  item?: SetorResponse;
7931
6059
  }
7932
- export interface SetoresResponse {
7933
- titulo?: string;
7934
- id?: number;
7935
- }
7936
6060
  export interface SharedPaginatedJson {
7937
6061
  totalItems?: number;
7938
6062
  totalPages?: number;
@@ -7956,17 +6080,6 @@ export interface SourceFilter {
7956
6080
  sourceUrls?: string[];
7957
6081
  keyValues?: string[];
7958
6082
  }
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
- }
7970
6083
  export interface Status {
7971
6084
  id?: number;
7972
6085
  ativo?: boolean;
@@ -7983,7 +6096,6 @@ export interface Status {
7983
6096
  slug?: string;
7984
6097
  jsonContent?: string;
7985
6098
  entityKey?: string;
7986
- color?: string;
7987
6099
  }
7988
6100
  export interface StatusRequest {
7989
6101
  id?: number;
@@ -8045,22 +6157,11 @@ export interface StringApiResponse {
8045
6157
  message?: string;
8046
6158
  item?: string;
8047
6159
  }
8048
- export interface StringPaginatedResponse {
8049
- success?: boolean;
8050
- message?: string;
8051
- item?: string[];
8052
- pagination?: SharedPaginatedJson;
8053
- items?: string[];
8054
- }
8055
6160
  export interface StringSharedApiResponse {
8056
6161
  success?: boolean;
8057
6162
  message?: string;
8058
6163
  item?: string;
8059
6164
  }
8060
- export interface StructLayoutAttribute {
8061
- typeId?: any;
8062
- value?: LayoutKind;
8063
- }
8064
6165
  export interface SubCategoria {
8065
6166
  id?: number;
8066
6167
  ativo?: boolean;
@@ -8081,163 +6182,43 @@ export interface SubCategoria {
8081
6182
  categoria?: Categoria;
8082
6183
  tipoCategoria?: TipoCategoria;
8083
6184
  }
8084
- export interface SubscriptionCheckoutRequest {
8085
- checkout?: CheckoutDto;
8086
- subscriptionPlanOrder?: SubscriptionPlanOrderRequest;
8087
- }
8088
6185
  export interface SubscriptionPlan {
8089
6186
  id?: number;
8090
- isActive?: boolean;
8091
- isDeleted?: boolean;
8092
- createdAt?: string;
8093
- updatedAt?: string;
8094
- name?: string;
6187
+ guid?: string;
6188
+ planName: string;
8095
6189
  description?: string;
8096
- priceMonthly?: number;
8097
- priceYearly?: number;
8098
- trialDays?: number;
8099
- isFree?: boolean;
8100
- isDefault?: boolean;
8101
- isHighlighted?: boolean;
8102
- maxUsers?: number;
8103
- maxStorageMb?: number;
6190
+ price?: number;
8104
6191
  durationInDays?: number;
8105
- }
8106
- export interface SubscriptionPlanDto {
8107
- id?: number;
8108
6192
  isActive?: boolean;
8109
6193
  isDeleted?: boolean;
8110
6194
  createdAt?: string;
8111
6195
  updatedAt?: string;
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;
6196
+ subscriptionPlanPermissions?: SubscriptionPlanPermission[];
6197
+ userSubscriptions?: UserSubscription[];
8134
6198
  }
8135
- export interface SubscriptionPlanOrderResponse {
8136
- id?: number;
8137
- usuarioId?: number;
6199
+ export interface SubscriptionPlanPermission {
8138
6200
  subscriptionPlanId?: number;
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[];
8157
- }
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;
8174
- }
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;
6201
+ permissionId?: number;
6202
+ subscriptionPlan?: SubscriptionPlan;
6203
+ permission?: Permission;
8191
6204
  }
8192
- export interface SubscriptionPlanResponsePaginatedResponse {
8193
- success?: boolean;
8194
- message?: string;
8195
- item?: SubscriptionPlanResponse[];
8196
- pagination?: SharedPaginatedJson;
8197
- items?: SubscriptionPlanResponse[];
6205
+ export interface SubscriptionRequest {
6206
+ cardNumber?: string;
6207
+ cardHolderName?: string;
6208
+ holderDocument?: string;
6209
+ expMonth?: number;
6210
+ expYear?: number;
6211
+ cvv?: string;
8198
6212
  }
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;
6213
+ export interface SubscriptionResultDto {
6214
+ subscriptionId?: string;
8224
6215
  status?: string;
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;
6216
+ nextBillingAt?: string;
6217
+ cardLastFourDigits?: string;
6218
+ cardBrand?: string;
6219
+ cardHolderName?: string;
6220
+ planDescription?: string;
6221
+ planPrice?: number;
8241
6222
  }
8242
6223
  export interface TipoCategoria {
8243
6224
  id?: number;
@@ -8316,173 +6297,12 @@ export interface TripResponse {
8316
6297
  thumbnail?: string;
8317
6298
  isBookmarked?: boolean;
8318
6299
  }
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
- }
8396
6300
  export interface TypeCategory {
8397
6301
  id?: number;
8398
6302
  name: string;
8399
6303
  description?: string;
8400
6304
  directoryCategories?: DirectoryCategory[];
8401
6305
  }
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
- }
8486
6306
  export interface UpdateAccountPasswordRequest {
8487
6307
  password?: string;
8488
6308
  confirmNewPassword?: string;
@@ -8503,8 +6323,6 @@ export interface UpdateAccountResponse {
8503
6323
  bairro?: string;
8504
6324
  complemento?: string;
8505
6325
  numero?: string;
8506
- jsonContent?: string;
8507
- cpf?: string;
8508
6326
  }
8509
6327
  export interface UpdateAccountResult {
8510
6328
  success?: boolean;
@@ -8532,18 +6350,6 @@ export interface User {
8532
6350
  address?: Address;
8533
6351
  userRoles?: UserRole[];
8534
6352
  }
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
- }
8547
6353
  export interface UserClaim {
8548
6354
  id?: number;
8549
6355
  usuarioId: number;
@@ -8564,15 +6370,14 @@ export interface UserSubscription {
8564
6370
  id?: number;
8565
6371
  usuarioId?: number;
8566
6372
  subscriptionPlanId?: number;
8567
- subscriptionPlan?: SubscriptionPlan;
8568
6373
  startDate?: string;
8569
6374
  endDate?: string;
8570
6375
  isActive?: boolean;
8571
6376
  isDeleted?: boolean;
8572
- isLifetime?: boolean;
8573
6377
  createdAt?: string;
8574
6378
  updatedAt?: string;
8575
6379
  usuario?: Usuario;
6380
+ subscriptionPlan?: SubscriptionPlan;
8576
6381
  subscriptionId?: string;
8577
6382
  status?: string;
8578
6383
  }
@@ -8594,6 +6399,8 @@ export interface Usuario {
8594
6399
  passwordToken?: string;
8595
6400
  passwordTokenExpiry?: string;
8596
6401
  userClaims?: UserClaim[];
6402
+ subscriptionId?: number;
6403
+ journeyId?: number;
8597
6404
  guid?: string;
8598
6405
  token?: string;
8599
6406
  dataNascimento?: string;
@@ -8609,13 +6416,8 @@ export interface Usuario {
8609
6416
  cpf?: string;
8610
6417
  customerId?: string;
8611
6418
  externalRef?: string;
8612
- jsonContent?: string;
8613
6419
  lojaXUsuario?: LojaXUsuario[];
8614
6420
  usuarioXSetor?: UsuarioXSetor[];
8615
- carts?: Cart[];
8616
- orders?: Order[];
8617
- accesses?: UserAccess[];
8618
- subscriptions?: UserSubscription[];
8619
6421
  }
8620
6422
  export interface UsuarioDirectory {
8621
6423
  id?: number;
@@ -8624,20 +6426,6 @@ export interface UsuarioDirectory {
8624
6426
  usuario?: Usuario;
8625
6427
  directory?: DirectoryEntity;
8626
6428
  }
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
- }
8641
6429
  export interface UsuarioLoginDto {
8642
6430
  emailAddress?: string;
8643
6431
  password?: string;
@@ -8650,11 +6438,6 @@ export interface UsuarioRequest {
8650
6438
  password?: string;
8651
6439
  roleGate?: string;
8652
6440
  dataNascimento?: string;
8653
- cpf?: string;
8654
- genero?: string;
8655
- phone?: string;
8656
- address?: AddressResponse;
8657
- jsonContent?: string;
8658
6441
  roles?: number[];
8659
6442
  lojas?: number[];
8660
6443
  setores?: number[];
@@ -8667,14 +6450,6 @@ export interface UsuarioResponse {
8667
6450
  password?: string;
8668
6451
  roleGate?: string;
8669
6452
  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[];
8678
6453
  }
8679
6454
  export interface UsuarioResponsePaginatedResponse {
8680
6455
  success?: boolean;
@@ -8744,6 +6519,9 @@ export interface UsuarioXSetor {
8744
6519
  usuarioId?: number;
8745
6520
  usuario?: Usuario;
8746
6521
  }
6522
+ export interface VerifyOrderRequest {
6523
+ payId?: string;
6524
+ }
8747
6525
  export interface VideoRequest {
8748
6526
  id?: number;
8749
6527
  ativo?: boolean;
@@ -8790,5 +6568,5 @@ export interface VideoResponseSharedApiResponse {
8790
6568
  message?: string;
8791
6569
  item?: VideoResponse;
8792
6570
  }
8793
- export interface VideoSourceEnum {
6571
+ export interface WorkspaceItems {
8794
6572
  }