expo-backend-types 0.49.0-EXPO-343-Quique-Wolff.2 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.1

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 (51) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +23 -72
  2. package/dist/src/event/dto/create-event.dto.js +1 -7
  3. package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
  4. package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
  5. package/dist/src/event/dto/event-tickets.dto.js +18 -8
  6. package/dist/src/event/dto/event.dto.d.ts +0 -9
  7. package/dist/src/event/dto/event.dto.js +0 -13
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +23 -33
  9. package/dist/src/event/dto/get-all-event.dto.d.ts +48 -272
  10. package/dist/src/event/dto/get-all-event.dto.js +2 -2
  11. package/dist/src/event/dto/get-by-id-event.dto.d.ts +23 -99
  12. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +8 -0
  13. package/dist/src/event/dto/get-statistics-by-id-event.dto.js +11 -0
  14. package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -9
  15. package/dist/src/event/dto/update-event.dto.d.ts +46 -75
  16. package/dist/src/event/dto/update-event.dto.js +2 -8
  17. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
  18. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
  19. package/dist/src/i18n/es.d.ts +1 -8
  20. package/dist/src/i18n/es.js +3 -8
  21. package/dist/src/i18n/es.js.map +1 -1
  22. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
  23. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
  24. package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
  25. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
  26. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
  27. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
  28. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
  29. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
  30. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
  31. package/dist/types/prisma-schema/edge.js +3 -6
  32. package/dist/types/prisma-schema/index-browser.js +0 -3
  33. package/dist/types/prisma-schema/index.d.ts +1 -214
  34. package/dist/types/prisma-schema/index.js +3 -6
  35. package/dist/types/prisma-schema/package.json +1 -1
  36. package/dist/types/prisma-schema/schema.prisma +6 -9
  37. package/dist/types/prisma-schema/wasm.js +0 -3
  38. package/dist/types/schema.d.ts +92 -377
  39. package/package.json +2 -1
  40. package/dist/src/event/dto/delete-banner-event.dto.d.ts +0 -18
  41. package/dist/src/event/dto/delete-banner-event.dto.js +0 -12
  42. package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +0 -18
  43. package/dist/src/event/dto/delete-main-picture-event.dto.js +0 -12
  44. package/dist/src/event/dto/update-banner-event.dto.d.ts +0 -33
  45. package/dist/src/event/dto/update-banner-event.dto.js +0 -18
  46. package/dist/src/event/dto/update-main-picture-event.dto.d.ts +0 -33
  47. package/dist/src/event/dto/update-main-picture-event.dto.js +0 -18
  48. package/dist/src/profile/dto/delete-image-profile.dto.d.ts +0 -18
  49. package/dist/src/profile/dto/delete-image-profile.dto.js +0 -12
  50. package/dist/src/profile/dto/update-image-profile.dto.d.ts +0 -33
  51. package/dist/src/profile/dto/update-image-profile.dto.js +0 -18
@@ -28,12 +28,12 @@ const eventWithAllThings = event_dto_1.eventSchema.merge(zod_1.default.object({
28
28
  isExclusive: true,
29
29
  }),
30
30
  })),
31
- eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema.pick({
31
+ eventTickets: zod_1.default.array((0, event_tickets_dto_1.addEventTicketRefinements)(event_tickets_dto_1.baseEventTicketsSchema.pick({
32
32
  id: true,
33
33
  amount: true,
34
34
  type: true,
35
35
  price: true,
36
- })),
36
+ }))),
37
37
  }));
38
38
  exports.getAllEventsResponseSchema = zod_1.default.object({
39
39
  folders: zod_1.default.array(event_folder_dto_1.eventFolderSchema.merge(zod_1.default.object({
@@ -6,9 +6,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
6
6
  startingDate: z.ZodDate;
7
7
  endingDate: z.ZodDate;
8
8
  location: z.ZodString;
9
- mainPictureUrl: z.ZodNullable<z.ZodString>;
10
- bannerUrl: z.ZodNullable<z.ZodString>;
11
- description: z.ZodNullable<z.ZodString>;
12
9
  folderId: z.ZodNullable<z.ZodString>;
13
10
  tagAssistedId: z.ZodString;
14
11
  tagConfirmedId: z.ZodString;
@@ -24,9 +21,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
24
21
  startingDate: z.ZodDate;
25
22
  endingDate: z.ZodDate;
26
23
  location: z.ZodString;
27
- mainPictureUrl: z.ZodNullable<z.ZodString>;
28
- bannerUrl: z.ZodNullable<z.ZodString>;
29
- description: z.ZodNullable<z.ZodString>;
30
24
  folderId: z.ZodNullable<z.ZodString>;
31
25
  tagAssistedId: z.ZodString;
32
26
  tagConfirmedId: z.ZodString;
@@ -35,7 +29,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
35
29
  created_at: z.ZodDate;
36
30
  updated_at: z.ZodDate;
37
31
  }, "strip", z.ZodTypeAny, {
38
- description: string | null;
39
32
  location: string;
40
33
  id: string;
41
34
  name: string;
@@ -45,14 +38,11 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
45
38
  created_at: Date;
46
39
  updated_at: Date;
47
40
  active: boolean;
48
- mainPictureUrl: string | null;
49
- bannerUrl: string | null;
50
41
  folderId: string | null;
51
42
  tagAssistedId: string;
52
43
  tagConfirmedId: string;
53
44
  supraEventId: string | null;
54
45
  }, {
55
- description: string | null;
56
46
  location: string;
57
47
  id: string;
58
48
  name: string;
@@ -62,8 +52,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
62
52
  created_at: Date;
63
53
  updated_at: Date;
64
54
  active: boolean;
65
- mainPictureUrl: string | null;
66
- bannerUrl: string | null;
67
55
  folderId: string | null;
68
56
  tagAssistedId: string;
69
57
  tagConfirmedId: string;
@@ -76,9 +64,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
76
64
  startingDate: z.ZodDate;
77
65
  endingDate: z.ZodDate;
78
66
  location: z.ZodString;
79
- mainPictureUrl: z.ZodNullable<z.ZodString>;
80
- bannerUrl: z.ZodNullable<z.ZodString>;
81
- description: z.ZodNullable<z.ZodString>;
82
67
  folderId: z.ZodNullable<z.ZodString>;
83
68
  tagAssistedId: z.ZodString;
84
69
  tagConfirmedId: z.ZodString;
@@ -87,7 +72,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
87
72
  created_at: z.ZodDate;
88
73
  updated_at: z.ZodDate;
89
74
  }, "strip", z.ZodTypeAny, {
90
- description: string | null;
91
75
  location: string;
92
76
  id: string;
93
77
  name: string;
@@ -97,14 +81,11 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
97
81
  created_at: Date;
98
82
  updated_at: Date;
99
83
  active: boolean;
100
- mainPictureUrl: string | null;
101
- bannerUrl: string | null;
102
84
  folderId: string | null;
103
85
  tagAssistedId: string;
104
86
  tagConfirmedId: string;
105
87
  supraEventId: string | null;
106
88
  }, {
107
- description: string | null;
108
89
  location: string;
109
90
  id: string;
110
91
  name: string;
@@ -114,14 +95,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
114
95
  created_at: Date;
115
96
  updated_at: Date;
116
97
  active: boolean;
117
- mainPictureUrl: string | null;
118
- bannerUrl: string | null;
119
98
  folderId: string | null;
120
99
  tagAssistedId: string;
121
100
  tagConfirmedId: string;
122
101
  supraEventId: string | null;
123
102
  }>>;
124
- eventTickets: z.ZodArray<z.ZodObject<{
103
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
125
104
  id: z.ZodString;
126
105
  amount: z.ZodNullable<z.ZodNumber>;
127
106
  type: z.ZodNativeEnum<{
@@ -140,6 +119,16 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
140
119
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
141
120
  amount: number | null;
142
121
  price: number | null;
122
+ }>, {
123
+ id: string;
124
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
125
+ amount: number | null;
126
+ price: number | null;
127
+ }, {
128
+ id: string;
129
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
130
+ amount: number | null;
131
+ price: number | null;
143
132
  }>, "many">;
144
133
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
145
134
  id: z.ZodString;
@@ -384,7 +373,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
384
373
  };
385
374
  }>;
386
375
  }>, "strip", z.ZodTypeAny, {
387
- description: string | null;
388
376
  location: string;
389
377
  id: string;
390
378
  name: string;
@@ -410,14 +398,11 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
410
398
  isExclusive: boolean;
411
399
  };
412
400
  }[];
413
- mainPictureUrl: string | null;
414
- bannerUrl: string | null;
415
401
  folderId: string | null;
416
402
  tagAssistedId: string;
417
403
  tagConfirmedId: string;
418
404
  supraEventId: string | null;
419
405
  subEvents: {
420
- description: string | null;
421
406
  location: string;
422
407
  id: string;
423
408
  name: string;
@@ -427,8 +412,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
427
412
  created_at: Date;
428
413
  updated_at: Date;
429
414
  active: boolean;
430
- mainPictureUrl: string | null;
431
- bannerUrl: string | null;
432
415
  folderId: string | null;
433
416
  tagAssistedId: string;
434
417
  tagConfirmedId: string;
@@ -441,7 +424,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
441
424
  price: number | null;
442
425
  }[];
443
426
  supraEvent: {
444
- description: string | null;
445
427
  location: string;
446
428
  id: string;
447
429
  name: string;
@@ -451,8 +433,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
451
433
  created_at: Date;
452
434
  updated_at: Date;
453
435
  active: boolean;
454
- mainPictureUrl: string | null;
455
- bannerUrl: string | null;
456
436
  folderId: string | null;
457
437
  tagAssistedId: string;
458
438
  tagConfirmedId: string;
@@ -505,7 +485,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
505
485
  };
506
486
  };
507
487
  }, {
508
- description: string | null;
509
488
  location: string;
510
489
  id: string;
511
490
  name: string;
@@ -531,14 +510,11 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
531
510
  isExclusive: boolean;
532
511
  };
533
512
  }[];
534
- mainPictureUrl: string | null;
535
- bannerUrl: string | null;
536
513
  folderId: string | null;
537
514
  tagAssistedId: string;
538
515
  tagConfirmedId: string;
539
516
  supraEventId: string | null;
540
517
  subEvents: {
541
- description: string | null;
542
518
  location: string;
543
519
  id: string;
544
520
  name: string;
@@ -548,8 +524,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
548
524
  created_at: Date;
549
525
  updated_at: Date;
550
526
  active: boolean;
551
- mainPictureUrl: string | null;
552
- bannerUrl: string | null;
553
527
  folderId: string | null;
554
528
  tagAssistedId: string;
555
529
  tagConfirmedId: string;
@@ -562,7 +536,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
562
536
  price: number | null;
563
537
  }[];
564
538
  supraEvent: {
565
- description: string | null;
566
539
  location: string;
567
540
  id: string;
568
541
  name: string;
@@ -572,8 +545,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
572
545
  created_at: Date;
573
546
  updated_at: Date;
574
547
  active: boolean;
575
- mainPictureUrl: string | null;
576
- bannerUrl: string | null;
577
548
  folderId: string | null;
578
549
  tagAssistedId: string;
579
550
  tagConfirmedId: string;
@@ -633,9 +604,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
633
604
  startingDate: z.ZodString;
634
605
  endingDate: z.ZodString;
635
606
  location: z.ZodString;
636
- mainPictureUrl: z.ZodNullable<z.ZodString>;
637
- bannerUrl: z.ZodNullable<z.ZodString>;
638
- description: z.ZodNullable<z.ZodString>;
639
607
  folderId: z.ZodNullable<z.ZodString>;
640
608
  tagAssistedId: z.ZodString;
641
609
  tagConfirmedId: z.ZodString;
@@ -650,9 +618,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
650
618
  startingDate: z.ZodString;
651
619
  endingDate: z.ZodString;
652
620
  location: z.ZodString;
653
- mainPictureUrl: z.ZodNullable<z.ZodString>;
654
- bannerUrl: z.ZodNullable<z.ZodString>;
655
- description: z.ZodNullable<z.ZodString>;
656
621
  folderId: z.ZodNullable<z.ZodString>;
657
622
  tagAssistedId: z.ZodString;
658
623
  tagConfirmedId: z.ZodString;
@@ -661,7 +626,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
661
626
  created_at: z.ZodString;
662
627
  updated_at: z.ZodString;
663
628
  }, z.UnknownKeysParam, z.ZodTypeAny, {
664
- description: string | null;
665
629
  location: string;
666
630
  id: string;
667
631
  name: string;
@@ -671,14 +635,11 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
671
635
  created_at: string;
672
636
  updated_at: string;
673
637
  active: boolean;
674
- mainPictureUrl: string | null;
675
- bannerUrl: string | null;
676
638
  folderId: string | null;
677
639
  tagAssistedId: string;
678
640
  tagConfirmedId: string;
679
641
  supraEventId: string | null;
680
642
  }, {
681
- description: string | null;
682
643
  location: string;
683
644
  id: string;
684
645
  name: string;
@@ -688,8 +649,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
688
649
  created_at: string;
689
650
  updated_at: string;
690
651
  active: boolean;
691
- mainPictureUrl: string | null;
692
- bannerUrl: string | null;
693
652
  folderId: string | null;
694
653
  tagAssistedId: string;
695
654
  tagConfirmedId: string;
@@ -702,9 +661,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
702
661
  startingDate: z.ZodString;
703
662
  endingDate: z.ZodString;
704
663
  location: z.ZodString;
705
- mainPictureUrl: z.ZodNullable<z.ZodString>;
706
- bannerUrl: z.ZodNullable<z.ZodString>;
707
- description: z.ZodNullable<z.ZodString>;
708
664
  folderId: z.ZodNullable<z.ZodString>;
709
665
  tagAssistedId: z.ZodString;
710
666
  tagConfirmedId: z.ZodString;
@@ -713,7 +669,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
713
669
  created_at: z.ZodString;
714
670
  updated_at: z.ZodString;
715
671
  }, z.UnknownKeysParam, z.ZodTypeAny, {
716
- description: string | null;
717
672
  location: string;
718
673
  id: string;
719
674
  name: string;
@@ -723,14 +678,11 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
723
678
  created_at: string;
724
679
  updated_at: string;
725
680
  active: boolean;
726
- mainPictureUrl: string | null;
727
- bannerUrl: string | null;
728
681
  folderId: string | null;
729
682
  tagAssistedId: string;
730
683
  tagConfirmedId: string;
731
684
  supraEventId: string | null;
732
685
  }, {
733
- description: string | null;
734
686
  location: string;
735
687
  id: string;
736
688
  name: string;
@@ -740,14 +692,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
740
692
  created_at: string;
741
693
  updated_at: string;
742
694
  active: boolean;
743
- mainPictureUrl: string | null;
744
- bannerUrl: string | null;
745
695
  folderId: string | null;
746
696
  tagAssistedId: string;
747
697
  tagConfirmedId: string;
748
698
  supraEventId: string | null;
749
699
  }>>;
750
- eventTickets: z.ZodArray<z.ZodObject<{
700
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
751
701
  id: z.ZodString;
752
702
  amount: z.ZodNullable<z.ZodNumber>;
753
703
  type: z.ZodNativeEnum<{
@@ -756,7 +706,17 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
756
706
  SPECTATOR: "SPECTATOR";
757
707
  }>;
758
708
  price: z.ZodNullable<z.ZodNumber>;
759
- }, z.UnknownKeysParam, z.ZodTypeAny, {
709
+ }, "strip", z.ZodTypeAny, {
710
+ id: string;
711
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
712
+ amount: number | null;
713
+ price: number | null;
714
+ }, {
715
+ id: string;
716
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
717
+ amount: number | null;
718
+ price: number | null;
719
+ }>, {
760
720
  id: string;
761
721
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
762
722
  amount: number | null;
@@ -1007,7 +967,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1007
967
  };
1008
968
  }>;
1009
969
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1010
- description: string | null;
1011
970
  location: string;
1012
971
  id: string;
1013
972
  name: string;
@@ -1033,14 +992,11 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1033
992
  isExclusive: boolean;
1034
993
  };
1035
994
  }[];
1036
- mainPictureUrl: string | null;
1037
- bannerUrl: string | null;
1038
995
  folderId: string | null;
1039
996
  tagAssistedId: string;
1040
997
  tagConfirmedId: string;
1041
998
  supraEventId: string | null;
1042
999
  subEvents: {
1043
- description: string | null;
1044
1000
  location: string;
1045
1001
  id: string;
1046
1002
  name: string;
@@ -1050,8 +1006,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1050
1006
  created_at: string;
1051
1007
  updated_at: string;
1052
1008
  active: boolean;
1053
- mainPictureUrl: string | null;
1054
- bannerUrl: string | null;
1055
1009
  folderId: string | null;
1056
1010
  tagAssistedId: string;
1057
1011
  tagConfirmedId: string;
@@ -1064,7 +1018,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1064
1018
  price: number | null;
1065
1019
  }[];
1066
1020
  supraEvent: {
1067
- description: string | null;
1068
1021
  location: string;
1069
1022
  id: string;
1070
1023
  name: string;
@@ -1074,8 +1027,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1074
1027
  created_at: string;
1075
1028
  updated_at: string;
1076
1029
  active: boolean;
1077
- mainPictureUrl: string | null;
1078
- bannerUrl: string | null;
1079
1030
  folderId: string | null;
1080
1031
  tagAssistedId: string;
1081
1032
  tagConfirmedId: string;
@@ -1128,7 +1079,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1128
1079
  };
1129
1080
  };
1130
1081
  }, {
1131
- description: string | null;
1132
1082
  location: string;
1133
1083
  id: string;
1134
1084
  name: string;
@@ -1154,14 +1104,11 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1154
1104
  isExclusive: boolean;
1155
1105
  };
1156
1106
  }[];
1157
- mainPictureUrl: string | null;
1158
- bannerUrl: string | null;
1159
1107
  folderId: string | null;
1160
1108
  tagAssistedId: string;
1161
1109
  tagConfirmedId: string;
1162
1110
  supraEventId: string | null;
1163
1111
  subEvents: {
1164
- description: string | null;
1165
1112
  location: string;
1166
1113
  id: string;
1167
1114
  name: string;
@@ -1171,8 +1118,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1171
1118
  created_at: string;
1172
1119
  updated_at: string;
1173
1120
  active: boolean;
1174
- mainPictureUrl: string | null;
1175
- bannerUrl: string | null;
1176
1121
  folderId: string | null;
1177
1122
  tagAssistedId: string;
1178
1123
  tagConfirmedId: string;
@@ -1185,7 +1130,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1185
1130
  price: number | null;
1186
1131
  }[];
1187
1132
  supraEvent: {
1188
- description: string | null;
1189
1133
  location: string;
1190
1134
  id: string;
1191
1135
  name: string;
@@ -1195,8 +1139,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1195
1139
  created_at: string;
1196
1140
  updated_at: string;
1197
1141
  active: boolean;
1198
- mainPictureUrl: string | null;
1199
- bannerUrl: string | null;
1200
1142
  folderId: string | null;
1201
1143
  tagAssistedId: string;
1202
1144
  tagConfirmedId: string;
@@ -1258,9 +1200,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1258
1200
  startingDate: z.ZodDate;
1259
1201
  endingDate: z.ZodDate;
1260
1202
  location: z.ZodString;
1261
- mainPictureUrl: z.ZodNullable<z.ZodString>;
1262
- bannerUrl: z.ZodNullable<z.ZodString>;
1263
- description: z.ZodNullable<z.ZodString>;
1264
1203
  folderId: z.ZodNullable<z.ZodString>;
1265
1204
  tagAssistedId: z.ZodString;
1266
1205
  tagConfirmedId: z.ZodString;
@@ -1324,7 +1263,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1324
1263
  groupId: string;
1325
1264
  }>;
1326
1265
  }>, "strip", z.ZodTypeAny, {
1327
- description: string | null;
1328
1266
  location: string;
1329
1267
  id: string;
1330
1268
  name: string;
@@ -1334,8 +1272,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1334
1272
  created_at: Date;
1335
1273
  updated_at: Date;
1336
1274
  active: boolean;
1337
- mainPictureUrl: string | null;
1338
- bannerUrl: string | null;
1339
1275
  folderId: string | null;
1340
1276
  tagAssistedId: string;
1341
1277
  tagConfirmedId: string;
@@ -1357,7 +1293,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1357
1293
  groupId: string;
1358
1294
  };
1359
1295
  }, {
1360
- description: string | null;
1361
1296
  location: string;
1362
1297
  id: string;
1363
1298
  name: string;
@@ -1367,8 +1302,6 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1367
1302
  created_at: Date;
1368
1303
  updated_at: Date;
1369
1304
  active: boolean;
1370
- mainPictureUrl: string | null;
1371
- bannerUrl: string | null;
1372
1305
  folderId: string | null;
1373
1306
  tagAssistedId: string;
1374
1307
  tagConfirmedId: string;
@@ -1397,9 +1330,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1397
1330
  startingDate: z.ZodString;
1398
1331
  endingDate: z.ZodString;
1399
1332
  location: z.ZodString;
1400
- mainPictureUrl: z.ZodNullable<z.ZodString>;
1401
- bannerUrl: z.ZodNullable<z.ZodString>;
1402
- description: z.ZodNullable<z.ZodString>;
1403
1333
  folderId: z.ZodNullable<z.ZodString>;
1404
1334
  tagAssistedId: z.ZodString;
1405
1335
  tagConfirmedId: z.ZodString;
@@ -1462,7 +1392,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1462
1392
  groupId: string;
1463
1393
  }>;
1464
1394
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1465
- description: string | null;
1466
1395
  location: string;
1467
1396
  id: string;
1468
1397
  name: string;
@@ -1472,8 +1401,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1472
1401
  created_at: string;
1473
1402
  updated_at: string;
1474
1403
  active: boolean;
1475
- mainPictureUrl: string | null;
1476
- bannerUrl: string | null;
1477
1404
  folderId: string | null;
1478
1405
  tagAssistedId: string;
1479
1406
  tagConfirmedId: string;
@@ -1495,7 +1422,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1495
1422
  groupId: string;
1496
1423
  };
1497
1424
  }, {
1498
- description: string | null;
1499
1425
  location: string;
1500
1426
  id: string;
1501
1427
  name: string;
@@ -1505,8 +1431,6 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1505
1431
  created_at: string;
1506
1432
  updated_at: string;
1507
1433
  active: boolean;
1508
- mainPictureUrl: string | null;
1509
- bannerUrl: string | null;
1510
1434
  folderId: string | null;
1511
1435
  tagAssistedId: string;
1512
1436
  tagConfirmedId: string;
@@ -0,0 +1,8 @@
1
+ import z from 'zod';
2
+ export declare const getStatisticsByIdResponseSchema: z.ZodObject<{
3
+ test: z.ZodString;
4
+ }, "strip", z.ZodTypeAny, {
5
+ test: string;
6
+ }, {
7
+ test: string;
8
+ }>;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getStatisticsByIdResponseSchema = void 0;
7
+ const zod_1 = __importDefault(require("zod"));
8
+ exports.getStatisticsByIdResponseSchema = zod_1.default.object({
9
+ test: zod_1.default.string(),
10
+ });
11
+ //# sourceMappingURL=get-statistics-by-id-event.dto.js.map
@@ -5,9 +5,6 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
5
5
  startingDate: import("zod").ZodDate;
6
6
  endingDate: import("zod").ZodDate;
7
7
  location: import("zod").ZodString;
8
- mainPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
9
- bannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
10
- description: import("zod").ZodNullable<import("zod").ZodString>;
11
8
  folderId: import("zod").ZodNullable<import("zod").ZodString>;
12
9
  tagAssistedId: import("zod").ZodString;
13
10
  tagConfirmedId: import("zod").ZodString;
@@ -16,7 +13,6 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
16
13
  created_at: import("zod").ZodDate;
17
14
  updated_at: import("zod").ZodDate;
18
15
  }, "strip", import("zod").ZodTypeAny, {
19
- description: string | null;
20
16
  location: string;
21
17
  id: string;
22
18
  name: string;
@@ -26,14 +22,11 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
26
22
  created_at: Date;
27
23
  updated_at: Date;
28
24
  active: boolean;
29
- mainPictureUrl: string | null;
30
- bannerUrl: string | null;
31
25
  folderId: string | null;
32
26
  tagAssistedId: string;
33
27
  tagConfirmedId: string;
34
28
  supraEventId: string | null;
35
29
  }, {
36
- description: string | null;
37
30
  location: string;
38
31
  id: string;
39
32
  name: string;
@@ -43,8 +36,6 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
43
36
  created_at: Date;
44
37
  updated_at: Date;
45
38
  active: boolean;
46
- mainPictureUrl: string | null;
47
- bannerUrl: string | null;
48
39
  folderId: string | null;
49
40
  tagAssistedId: string;
50
41
  tagConfirmedId: string;