expo-backend-types 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.2 → 0.46.0-EXPO-339-Testing-y-bugfixing.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 (37) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +24 -77
  2. package/dist/src/event/dto/create-event.dto.js +2 -14
  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 +17 -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/toggle-active-event.dto.d.ts +0 -9
  13. package/dist/src/event/dto/update-event.dto.d.ts +44 -31
  14. package/dist/src/event/dto/update-event.dto.js +2 -2
  15. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
  16. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
  17. package/dist/src/i18n/es.d.ts +1 -7
  18. package/dist/src/i18n/es.js +3 -7
  19. package/dist/src/i18n/es.js.map +1 -1
  20. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
  21. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
  22. package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
  23. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
  24. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
  25. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
  26. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
  27. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
  28. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
  29. package/dist/types/prisma-schema/edge.js +3 -6
  30. package/dist/types/prisma-schema/index-browser.js +0 -3
  31. package/dist/types/prisma-schema/index.d.ts +1 -214
  32. package/dist/types/prisma-schema/index.js +3 -6
  33. package/dist/types/prisma-schema/package.json +1 -1
  34. package/dist/types/prisma-schema/schema.prisma +6 -9
  35. package/dist/types/prisma-schema/wasm.js +0 -3
  36. package/dist/types/schema.d.ts +0 -66
  37. package/package.json +1 -1
@@ -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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
10
- eventBannerUrl: z.ZodNullable<z.ZodString>;
11
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
28
- eventBannerUrl: z.ZodNullable<z.ZodString>;
29
- eventDescription: z.ZodNullable<z.ZodString>;
30
24
  folderId: z.ZodNullable<z.ZodString>;
31
25
  tagAssistedId: z.ZodString;
32
26
  tagConfirmedId: z.ZodString;
@@ -41,12 +35,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
41
35
  date: Date;
42
36
  startingDate: Date;
43
37
  endingDate: Date;
44
- eventPictureUrl: string | null;
45
- eventBannerUrl: string | null;
46
38
  created_at: Date;
47
39
  updated_at: Date;
48
40
  active: boolean;
49
- eventDescription: string | null;
50
41
  folderId: string | null;
51
42
  tagAssistedId: string;
52
43
  tagConfirmedId: string;
@@ -58,12 +49,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
58
49
  date: Date;
59
50
  startingDate: Date;
60
51
  endingDate: Date;
61
- eventPictureUrl: string | null;
62
- eventBannerUrl: string | null;
63
52
  created_at: Date;
64
53
  updated_at: Date;
65
54
  active: boolean;
66
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
80
- eventBannerUrl: z.ZodNullable<z.ZodString>;
81
- eventDescription: z.ZodNullable<z.ZodString>;
82
67
  folderId: z.ZodNullable<z.ZodString>;
83
68
  tagAssistedId: z.ZodString;
84
69
  tagConfirmedId: z.ZodString;
@@ -93,12 +78,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
93
78
  date: Date;
94
79
  startingDate: Date;
95
80
  endingDate: Date;
96
- eventPictureUrl: string | null;
97
- eventBannerUrl: string | null;
98
81
  created_at: Date;
99
82
  updated_at: Date;
100
83
  active: boolean;
101
- eventDescription: string | null;
102
84
  folderId: string | null;
103
85
  tagAssistedId: string;
104
86
  tagConfirmedId: string;
@@ -110,18 +92,15 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
110
92
  date: Date;
111
93
  startingDate: Date;
112
94
  endingDate: Date;
113
- eventPictureUrl: string | null;
114
- eventBannerUrl: string | null;
115
95
  created_at: Date;
116
96
  updated_at: Date;
117
97
  active: boolean;
118
- eventDescription: 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;
@@ -390,8 +379,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
390
379
  date: Date;
391
380
  startingDate: Date;
392
381
  endingDate: Date;
393
- eventPictureUrl: string | null;
394
- eventBannerUrl: string | null;
395
382
  created_at: Date;
396
383
  updated_at: Date;
397
384
  active: boolean;
@@ -411,7 +398,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
411
398
  isExclusive: boolean;
412
399
  };
413
400
  }[];
414
- eventDescription: string | null;
415
401
  folderId: string | null;
416
402
  tagAssistedId: string;
417
403
  tagConfirmedId: string;
@@ -423,12 +409,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
423
409
  date: Date;
424
410
  startingDate: Date;
425
411
  endingDate: Date;
426
- eventPictureUrl: string | null;
427
- eventBannerUrl: string | null;
428
412
  created_at: Date;
429
413
  updated_at: Date;
430
414
  active: boolean;
431
- eventDescription: string | null;
432
415
  folderId: string | null;
433
416
  tagAssistedId: string;
434
417
  tagConfirmedId: string;
@@ -447,12 +430,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
447
430
  date: Date;
448
431
  startingDate: Date;
449
432
  endingDate: Date;
450
- eventPictureUrl: string | null;
451
- eventBannerUrl: string | null;
452
433
  created_at: Date;
453
434
  updated_at: Date;
454
435
  active: boolean;
455
- eventDescription: string | null;
456
436
  folderId: string | null;
457
437
  tagAssistedId: string;
458
438
  tagConfirmedId: string;
@@ -511,8 +491,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
511
491
  date: Date;
512
492
  startingDate: Date;
513
493
  endingDate: Date;
514
- eventPictureUrl: string | null;
515
- eventBannerUrl: string | null;
516
494
  created_at: Date;
517
495
  updated_at: Date;
518
496
  active: boolean;
@@ -532,7 +510,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
532
510
  isExclusive: boolean;
533
511
  };
534
512
  }[];
535
- eventDescription: string | null;
536
513
  folderId: string | null;
537
514
  tagAssistedId: string;
538
515
  tagConfirmedId: string;
@@ -544,12 +521,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
544
521
  date: Date;
545
522
  startingDate: Date;
546
523
  endingDate: Date;
547
- eventPictureUrl: string | null;
548
- eventBannerUrl: string | null;
549
524
  created_at: Date;
550
525
  updated_at: Date;
551
526
  active: boolean;
552
- eventDescription: string | null;
553
527
  folderId: string | null;
554
528
  tagAssistedId: string;
555
529
  tagConfirmedId: string;
@@ -568,12 +542,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
568
542
  date: Date;
569
543
  startingDate: Date;
570
544
  endingDate: Date;
571
- eventPictureUrl: string | null;
572
- eventBannerUrl: string | null;
573
545
  created_at: Date;
574
546
  updated_at: Date;
575
547
  active: boolean;
576
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
637
- eventBannerUrl: z.ZodNullable<z.ZodString>;
638
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
654
- eventBannerUrl: z.ZodNullable<z.ZodString>;
655
- eventDescription: z.ZodNullable<z.ZodString>;
656
621
  folderId: z.ZodNullable<z.ZodString>;
657
622
  tagAssistedId: z.ZodString;
658
623
  tagConfirmedId: z.ZodString;
@@ -667,12 +632,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
667
632
  date: string;
668
633
  startingDate: string;
669
634
  endingDate: string;
670
- eventPictureUrl: string | null;
671
- eventBannerUrl: string | null;
672
635
  created_at: string;
673
636
  updated_at: string;
674
637
  active: boolean;
675
- eventDescription: string | null;
676
638
  folderId: string | null;
677
639
  tagAssistedId: string;
678
640
  tagConfirmedId: string;
@@ -684,12 +646,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
684
646
  date: string;
685
647
  startingDate: string;
686
648
  endingDate: string;
687
- eventPictureUrl: string | null;
688
- eventBannerUrl: string | null;
689
649
  created_at: string;
690
650
  updated_at: string;
691
651
  active: boolean;
692
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
706
- eventBannerUrl: z.ZodNullable<z.ZodString>;
707
- eventDescription: z.ZodNullable<z.ZodString>;
708
664
  folderId: z.ZodNullable<z.ZodString>;
709
665
  tagAssistedId: z.ZodString;
710
666
  tagConfirmedId: z.ZodString;
@@ -719,12 +675,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
719
675
  date: string;
720
676
  startingDate: string;
721
677
  endingDate: string;
722
- eventPictureUrl: string | null;
723
- eventBannerUrl: string | null;
724
678
  created_at: string;
725
679
  updated_at: string;
726
680
  active: boolean;
727
- eventDescription: string | null;
728
681
  folderId: string | null;
729
682
  tagAssistedId: string;
730
683
  tagConfirmedId: string;
@@ -736,18 +689,15 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
736
689
  date: string;
737
690
  startingDate: string;
738
691
  endingDate: string;
739
- eventPictureUrl: string | null;
740
- eventBannerUrl: string | null;
741
692
  created_at: string;
742
693
  updated_at: string;
743
694
  active: boolean;
744
- eventDescription: 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;
@@ -1013,8 +973,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1013
973
  date: string;
1014
974
  startingDate: string;
1015
975
  endingDate: string;
1016
- eventPictureUrl: string | null;
1017
- eventBannerUrl: string | null;
1018
976
  created_at: string;
1019
977
  updated_at: string;
1020
978
  active: boolean;
@@ -1034,7 +992,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1034
992
  isExclusive: boolean;
1035
993
  };
1036
994
  }[];
1037
- eventDescription: string | null;
1038
995
  folderId: string | null;
1039
996
  tagAssistedId: string;
1040
997
  tagConfirmedId: string;
@@ -1046,12 +1003,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1046
1003
  date: string;
1047
1004
  startingDate: string;
1048
1005
  endingDate: string;
1049
- eventPictureUrl: string | null;
1050
- eventBannerUrl: string | null;
1051
1006
  created_at: string;
1052
1007
  updated_at: string;
1053
1008
  active: boolean;
1054
- eventDescription: string | null;
1055
1009
  folderId: string | null;
1056
1010
  tagAssistedId: string;
1057
1011
  tagConfirmedId: string;
@@ -1070,12 +1024,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1070
1024
  date: string;
1071
1025
  startingDate: string;
1072
1026
  endingDate: string;
1073
- eventPictureUrl: string | null;
1074
- eventBannerUrl: string | null;
1075
1027
  created_at: string;
1076
1028
  updated_at: string;
1077
1029
  active: boolean;
1078
- eventDescription: string | null;
1079
1030
  folderId: string | null;
1080
1031
  tagAssistedId: string;
1081
1032
  tagConfirmedId: string;
@@ -1134,8 +1085,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1134
1085
  date: string;
1135
1086
  startingDate: string;
1136
1087
  endingDate: string;
1137
- eventPictureUrl: string | null;
1138
- eventBannerUrl: string | null;
1139
1088
  created_at: string;
1140
1089
  updated_at: string;
1141
1090
  active: boolean;
@@ -1155,7 +1104,6 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1155
1104
  isExclusive: boolean;
1156
1105
  };
1157
1106
  }[];
1158
- eventDescription: string | null;
1159
1107
  folderId: string | null;
1160
1108
  tagAssistedId: string;
1161
1109
  tagConfirmedId: string;
@@ -1167,12 +1115,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1167
1115
  date: string;
1168
1116
  startingDate: string;
1169
1117
  endingDate: string;
1170
- eventPictureUrl: string | null;
1171
- eventBannerUrl: string | null;
1172
1118
  created_at: string;
1173
1119
  updated_at: string;
1174
1120
  active: boolean;
1175
- eventDescription: string | null;
1176
1121
  folderId: string | null;
1177
1122
  tagAssistedId: string;
1178
1123
  tagConfirmedId: string;
@@ -1191,12 +1136,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1191
1136
  date: string;
1192
1137
  startingDate: string;
1193
1138
  endingDate: string;
1194
- eventPictureUrl: string | null;
1195
- eventBannerUrl: string | null;
1196
1139
  created_at: string;
1197
1140
  updated_at: string;
1198
1141
  active: boolean;
1199
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
1262
- eventBannerUrl: z.ZodNullable<z.ZodString>;
1263
- eventDescription: z.ZodNullable<z.ZodString>;
1264
1203
  folderId: z.ZodNullable<z.ZodString>;
1265
1204
  tagAssistedId: z.ZodString;
1266
1205
  tagConfirmedId: z.ZodString;
@@ -1330,12 +1269,9 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1330
1269
  date: Date;
1331
1270
  startingDate: Date;
1332
1271
  endingDate: Date;
1333
- eventPictureUrl: string | null;
1334
- eventBannerUrl: string | null;
1335
1272
  created_at: Date;
1336
1273
  updated_at: Date;
1337
1274
  active: boolean;
1338
- eventDescription: string | null;
1339
1275
  folderId: string | null;
1340
1276
  tagAssistedId: string;
1341
1277
  tagConfirmedId: string;
@@ -1363,12 +1299,9 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1363
1299
  date: Date;
1364
1300
  startingDate: Date;
1365
1301
  endingDate: Date;
1366
- eventPictureUrl: string | null;
1367
- eventBannerUrl: string | null;
1368
1302
  created_at: Date;
1369
1303
  updated_at: Date;
1370
1304
  active: boolean;
1371
- eventDescription: 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
- eventPictureUrl: z.ZodNullable<z.ZodString>;
1401
- eventBannerUrl: z.ZodNullable<z.ZodString>;
1402
- eventDescription: z.ZodNullable<z.ZodString>;
1403
1333
  folderId: z.ZodNullable<z.ZodString>;
1404
1334
  tagAssistedId: z.ZodString;
1405
1335
  tagConfirmedId: z.ZodString;
@@ -1468,12 +1398,9 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1468
1398
  date: string;
1469
1399
  startingDate: string;
1470
1400
  endingDate: string;
1471
- eventPictureUrl: string | null;
1472
- eventBannerUrl: string | null;
1473
1401
  created_at: string;
1474
1402
  updated_at: string;
1475
1403
  active: boolean;
1476
- eventDescription: string | null;
1477
1404
  folderId: string | null;
1478
1405
  tagAssistedId: string;
1479
1406
  tagConfirmedId: string;
@@ -1501,12 +1428,9 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1501
1428
  date: string;
1502
1429
  startingDate: string;
1503
1430
  endingDate: string;
1504
- eventPictureUrl: string | null;
1505
- eventBannerUrl: string | null;
1506
1431
  created_at: string;
1507
1432
  updated_at: string;
1508
1433
  active: boolean;
1509
- eventDescription: string | null;
1510
1434
  folderId: string | null;
1511
1435
  tagAssistedId: string;
1512
1436
  tagConfirmedId: string;
@@ -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
- eventPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
9
- eventBannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
10
- eventDescription: 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;
@@ -22,12 +19,9 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
22
19
  date: Date;
23
20
  startingDate: Date;
24
21
  endingDate: Date;
25
- eventPictureUrl: string | null;
26
- eventBannerUrl: string | null;
27
22
  created_at: Date;
28
23
  updated_at: Date;
29
24
  active: boolean;
30
- eventDescription: string | null;
31
25
  folderId: string | null;
32
26
  tagAssistedId: string;
33
27
  tagConfirmedId: string;
@@ -39,12 +33,9 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
39
33
  date: Date;
40
34
  startingDate: Date;
41
35
  endingDate: Date;
42
- eventPictureUrl: string | null;
43
- eventBannerUrl: string | null;
44
36
  created_at: Date;
45
37
  updated_at: Date;
46
38
  active: boolean;
47
- eventDescription: string | null;
48
39
  folderId: string | null;
49
40
  tagAssistedId: string;
50
41
  tagConfirmedId: string;
@@ -6,9 +6,6 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
6
6
  startingDate: z.ZodDate;
7
7
  endingDate: z.ZodDate;
8
8
  location: z.ZodString;
9
- eventPictureUrl: z.ZodNullable<z.ZodString>;
10
- eventBannerUrl: z.ZodNullable<z.ZodString>;
11
- eventDescription: z.ZodNullable<z.ZodString>;
12
9
  folderId: z.ZodNullable<z.ZodString>;
13
10
  tagAssistedId: z.ZodString;
14
11
  tagConfirmedId: z.ZodString;
@@ -25,9 +22,6 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
25
22
  startingDate: z.ZodDate;
26
23
  endingDate: z.ZodDate;
27
24
  location: z.ZodString;
28
- eventPictureUrl: z.ZodNullable<z.ZodString>;
29
- eventBannerUrl: z.ZodNullable<z.ZodString>;
30
- eventDescription: z.ZodNullable<z.ZodString>;
31
25
  folderId: z.ZodNullable<z.ZodString>;
32
26
  tagAssistedId: z.ZodString;
33
27
  tagConfirmedId: z.ZodString;
@@ -52,7 +46,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
52
46
  startingDate: Date;
53
47
  endingDate: Date;
54
48
  }>, "many">;
55
- eventTickets: z.ZodArray<z.ZodObject<Omit<{
49
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Omit<{
56
50
  id: z.ZodString;
57
51
  amount: z.ZodNullable<z.ZodNumber>;
58
52
  type: z.ZodNativeEnum<{
@@ -69,6 +63,14 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
69
63
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
70
64
  amount: number | null;
71
65
  price: number | null;
66
+ }>, {
67
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
68
+ amount: number | null;
69
+ price: number | null;
70
+ }, {
71
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
72
+ amount: number | null;
73
+ price: number | null;
72
74
  }>, "many">;
73
75
  }>, "strip", z.ZodTypeAny, {
74
76
  location: string;
@@ -143,15 +145,24 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
143
145
  startingDate: string;
144
146
  endingDate: string;
145
147
  }>, "many">;
146
- eventTickets: z.ZodArray<z.ZodObject<{
148
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Omit<{
149
+ id: z.ZodString;
150
+ amount: z.ZodNullable<z.ZodNumber>;
147
151
  type: z.ZodNativeEnum<{
148
152
  PARTICIPANT: "PARTICIPANT";
149
153
  STAFF: "STAFF";
150
154
  SPECTATOR: "SPECTATOR";
151
155
  }>;
152
- amount: z.ZodNullable<z.ZodNumber>;
153
156
  price: z.ZodNullable<z.ZodNumber>;
154
- }, z.UnknownKeysParam, z.ZodTypeAny, {
157
+ }, "id">, "strip", z.ZodTypeAny, {
158
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
159
+ amount: number | null;
160
+ price: number | null;
161
+ }, {
162
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
163
+ amount: number | null;
164
+ price: number | null;
165
+ }>, {
155
166
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
156
167
  amount: number | null;
157
168
  price: number | null;
@@ -212,9 +223,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
212
223
  startingDate: z.ZodDate;
213
224
  endingDate: z.ZodDate;
214
225
  location: z.ZodString;
215
- eventPictureUrl: z.ZodNullable<z.ZodString>;
216
- eventBannerUrl: z.ZodNullable<z.ZodString>;
217
- eventDescription: z.ZodNullable<z.ZodString>;
218
226
  folderId: z.ZodNullable<z.ZodString>;
219
227
  tagAssistedId: z.ZodString;
220
228
  tagConfirmedId: z.ZodString;
@@ -289,7 +297,7 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
289
297
  isExclusive: boolean;
290
298
  };
291
299
  }>;
292
- eventTickets: z.ZodArray<z.ZodObject<{
300
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
293
301
  id: z.ZodString;
294
302
  amount: z.ZodNullable<z.ZodNumber>;
295
303
  type: z.ZodNativeEnum<{
@@ -308,6 +316,16 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
308
316
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
309
317
  amount: number | null;
310
318
  price: number | null;
319
+ }>, {
320
+ id: string;
321
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
322
+ amount: number | null;
323
+ price: number | null;
324
+ }, {
325
+ id: string;
326
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
327
+ amount: number | null;
328
+ price: number | null;
311
329
  }>, "many">;
312
330
  }>, "strip", z.ZodTypeAny, {
313
331
  location: string;
@@ -316,12 +334,9 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
316
334
  date: Date;
317
335
  startingDate: Date;
318
336
  endingDate: Date;
319
- eventPictureUrl: string | null;
320
- eventBannerUrl: string | null;
321
337
  created_at: Date;
322
338
  updated_at: Date;
323
339
  active: boolean;
324
- eventDescription: string | null;
325
340
  folderId: string | null;
326
341
  tagAssistedId: string;
327
342
  tagConfirmedId: string;
@@ -355,12 +370,9 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
355
370
  date: Date;
356
371
  startingDate: Date;
357
372
  endingDate: Date;
358
- eventPictureUrl: string | null;
359
- eventBannerUrl: string | null;
360
373
  created_at: Date;
361
374
  updated_at: Date;
362
375
  active: boolean;
363
- eventDescription: string | null;
364
376
  folderId: string | null;
365
377
  tagAssistedId: string;
366
378
  tagConfirmedId: string;
@@ -395,9 +407,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
395
407
  startingDate: z.ZodString;
396
408
  endingDate: z.ZodString;
397
409
  location: z.ZodString;
398
- eventPictureUrl: z.ZodNullable<z.ZodString>;
399
- eventBannerUrl: z.ZodNullable<z.ZodString>;
400
- eventDescription: z.ZodNullable<z.ZodString>;
401
410
  folderId: z.ZodNullable<z.ZodString>;
402
411
  tagAssistedId: z.ZodString;
403
412
  tagConfirmedId: z.ZodString;
@@ -470,7 +479,7 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
470
479
  isExclusive: boolean;
471
480
  };
472
481
  }>;
473
- eventTickets: z.ZodArray<z.ZodObject<{
482
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
474
483
  id: z.ZodString;
475
484
  amount: z.ZodNullable<z.ZodNumber>;
476
485
  type: z.ZodNativeEnum<{
@@ -479,7 +488,17 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
479
488
  SPECTATOR: "SPECTATOR";
480
489
  }>;
481
490
  price: z.ZodNullable<z.ZodNumber>;
482
- }, z.UnknownKeysParam, z.ZodTypeAny, {
491
+ }, "strip", z.ZodTypeAny, {
492
+ id: string;
493
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
494
+ amount: number | null;
495
+ price: number | null;
496
+ }, {
497
+ id: string;
498
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
499
+ amount: number | null;
500
+ price: number | null;
501
+ }>, {
483
502
  id: string;
484
503
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
485
504
  amount: number | null;
@@ -497,12 +516,9 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
497
516
  date: string;
498
517
  startingDate: string;
499
518
  endingDate: string;
500
- eventPictureUrl: string | null;
501
- eventBannerUrl: string | null;
502
519
  created_at: string;
503
520
  updated_at: string;
504
521
  active: boolean;
505
- eventDescription: string | null;
506
522
  folderId: string | null;
507
523
  tagAssistedId: string;
508
524
  tagConfirmedId: string;
@@ -536,12 +552,9 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
536
552
  date: string;
537
553
  startingDate: string;
538
554
  endingDate: string;
539
- eventPictureUrl: string | null;
540
- eventBannerUrl: string | null;
541
555
  created_at: string;
542
556
  updated_at: string;
543
557
  active: boolean;
544
- eventDescription: string | null;
545
558
  folderId: string | null;
546
559
  tagAssistedId: string;
547
560
  tagConfirmedId: string;