expo-backend-types 0.59.0-EXPO-404-Etapa-4-Paquete-02.5.4 → 0.60.0-feat-desfile-12-octubre.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 (29) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +15 -0
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +30 -0
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +15 -0
  4. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +49 -1
  5. package/dist/src/ticket/dto/create-many-ticket.dto.js +3 -0
  6. package/dist/src/ticket/dto/create-ticket.dto.d.ts +37 -1
  7. package/dist/src/ticket/dto/create-ticket.dto.js +3 -0
  8. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +18 -0
  9. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +30 -0
  10. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -0
  11. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -0
  12. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -0
  13. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +30 -0
  14. package/dist/src/ticket/dto/find-ticket.dto.d.ts +18 -0
  15. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +15 -0
  16. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +18 -0
  17. package/dist/src/ticket/dto/ticket.dto.d.ts +18 -0
  18. package/dist/src/ticket/dto/ticket.dto.js +4 -0
  19. package/dist/src/ticket/dto/update-ticket.dto.d.ts +18 -0
  20. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  21. package/dist/types/prisma-schema/edge.js +6 -3
  22. package/dist/types/prisma-schema/index-browser.js +3 -0
  23. package/dist/types/prisma-schema/index.d.ts +148 -1
  24. package/dist/types/prisma-schema/index.js +6 -3
  25. package/dist/types/prisma-schema/package.json +1 -1
  26. package/dist/types/prisma-schema/schema.prisma +6 -0
  27. package/dist/types/prisma-schema/wasm.js +3 -0
  28. package/dist/types/schema.d.ts +45 -0
  29. package/package.json +1 -1
@@ -28,6 +28,9 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
28
28
  fullName: z.ZodString;
29
29
  mail: z.ZodString;
30
30
  dni: z.ZodString;
31
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
32
+ instagrams: z.ZodArray<z.ZodString, "many">;
33
+ whoToWatch: z.ZodNullable<z.ZodString>;
31
34
  seat: z.ZodNullable<z.ZodNumber>;
32
35
  scanned: z.ZodBoolean;
33
36
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -37,6 +40,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
37
40
  }, "strip", z.ZodTypeAny, {
38
41
  id: string;
39
42
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
43
+ phoneNumber: string;
40
44
  fullName: string;
41
45
  mail: string;
42
46
  eventId: string;
@@ -44,12 +48,15 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
44
48
  seat: number | null;
45
49
  created_at: Date;
46
50
  updated_at: Date;
51
+ instagrams: string[];
52
+ whoToWatch: string | null;
47
53
  scanned: boolean;
48
54
  scannedAt: Date | null;
49
55
  ticketGroupId: string | null;
50
56
  }, {
51
57
  id: string;
52
58
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
59
+ phoneNumber: string;
53
60
  fullName: string;
54
61
  mail: string;
55
62
  eventId: string;
@@ -57,6 +64,8 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
57
64
  seat: number | null;
58
65
  created_at: Date;
59
66
  updated_at: Date;
67
+ instagrams: string[];
68
+ whoToWatch: string | null;
60
69
  scanned: boolean;
61
70
  scannedAt: Date | null;
62
71
  ticketGroupId: string | null;
@@ -134,6 +143,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
134
143
  tickets: {
135
144
  id: string;
136
145
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
146
+ phoneNumber: string;
137
147
  fullName: string;
138
148
  mail: string;
139
149
  eventId: string;
@@ -141,6 +151,8 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
141
151
  seat: number | null;
142
152
  created_at: Date;
143
153
  updated_at: Date;
154
+ instagrams: string[];
155
+ whoToWatch: string | null;
144
156
  scanned: boolean;
145
157
  scannedAt: Date | null;
146
158
  ticketGroupId: string | null;
@@ -180,6 +192,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
180
192
  tickets: {
181
193
  id: string;
182
194
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
195
+ phoneNumber: string;
183
196
  fullName: string;
184
197
  mail: string;
185
198
  eventId: string;
@@ -187,6 +200,8 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
187
200
  seat: number | null;
188
201
  created_at: Date;
189
202
  updated_at: Date;
203
+ instagrams: string[];
204
+ whoToWatch: string | null;
190
205
  scanned: boolean;
191
206
  scannedAt: Date | null;
192
207
  ticketGroupId: string | null;
@@ -231,6 +231,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
231
231
  fullName: z.ZodString;
232
232
  mail: z.ZodString;
233
233
  dni: z.ZodString;
234
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
235
+ instagrams: z.ZodArray<z.ZodString, "many">;
236
+ whoToWatch: z.ZodNullable<z.ZodString>;
234
237
  seat: z.ZodNullable<z.ZodNumber>;
235
238
  scanned: z.ZodBoolean;
236
239
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -240,6 +243,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
240
243
  }, "strip", z.ZodTypeAny, {
241
244
  id: string;
242
245
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
246
+ phoneNumber: string;
243
247
  fullName: string;
244
248
  mail: string;
245
249
  eventId: string;
@@ -247,12 +251,15 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
247
251
  seat: number | null;
248
252
  created_at: Date;
249
253
  updated_at: Date;
254
+ instagrams: string[];
255
+ whoToWatch: string | null;
250
256
  scanned: boolean;
251
257
  scannedAt: Date | null;
252
258
  ticketGroupId: string | null;
253
259
  }, {
254
260
  id: string;
255
261
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
262
+ phoneNumber: string;
256
263
  fullName: string;
257
264
  mail: string;
258
265
  eventId: string;
@@ -260,6 +267,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
260
267
  seat: number | null;
261
268
  created_at: Date;
262
269
  updated_at: Date;
270
+ instagrams: string[];
271
+ whoToWatch: string | null;
263
272
  scanned: boolean;
264
273
  scannedAt: Date | null;
265
274
  ticketGroupId: string | null;
@@ -416,6 +425,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
416
425
  tickets: {
417
426
  id: string;
418
427
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
428
+ phoneNumber: string;
419
429
  fullName: string;
420
430
  mail: string;
421
431
  eventId: string;
@@ -423,6 +433,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
423
433
  seat: number | null;
424
434
  created_at: Date;
425
435
  updated_at: Date;
436
+ instagrams: string[];
437
+ whoToWatch: string | null;
426
438
  scanned: boolean;
427
439
  scannedAt: Date | null;
428
440
  ticketGroupId: string | null;
@@ -537,6 +549,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
537
549
  tickets: {
538
550
  id: string;
539
551
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
552
+ phoneNumber: string;
540
553
  fullName: string;
541
554
  mail: string;
542
555
  eventId: string;
@@ -544,6 +557,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
544
557
  seat: number | null;
545
558
  created_at: Date;
546
559
  updated_at: Date;
560
+ instagrams: string[];
561
+ whoToWatch: string | null;
547
562
  scanned: boolean;
548
563
  scannedAt: Date | null;
549
564
  ticketGroupId: string | null;
@@ -875,6 +890,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
875
890
  fullName: z.ZodString;
876
891
  mail: z.ZodString;
877
892
  dni: z.ZodString;
893
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
894
+ instagrams: z.ZodArray<z.ZodString, "many">;
895
+ whoToWatch: z.ZodNullable<z.ZodString>;
878
896
  seat: z.ZodNullable<z.ZodNumber>;
879
897
  scanned: z.ZodBoolean;
880
898
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -884,6 +902,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
884
902
  }, z.UnknownKeysParam, z.ZodTypeAny, {
885
903
  id: string;
886
904
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
905
+ phoneNumber: string;
887
906
  fullName: string;
888
907
  mail: string;
889
908
  eventId: string;
@@ -891,12 +910,15 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
891
910
  seat: number | null;
892
911
  created_at: string;
893
912
  updated_at: string;
913
+ instagrams: string[];
914
+ whoToWatch: string | null;
894
915
  scanned: boolean;
895
916
  scannedAt: string | null;
896
917
  ticketGroupId: string | null;
897
918
  }, {
898
919
  id: string;
899
920
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
921
+ phoneNumber: string;
900
922
  fullName: string;
901
923
  mail: string;
902
924
  eventId: string;
@@ -904,6 +926,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
904
926
  seat: number | null;
905
927
  created_at: string;
906
928
  updated_at: string;
929
+ instagrams: string[];
930
+ whoToWatch: string | null;
907
931
  scanned: boolean;
908
932
  scannedAt: string | null;
909
933
  ticketGroupId: string | null;
@@ -1058,6 +1082,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1058
1082
  tickets: {
1059
1083
  id: string;
1060
1084
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
1085
+ phoneNumber: string;
1061
1086
  fullName: string;
1062
1087
  mail: string;
1063
1088
  eventId: string;
@@ -1065,6 +1090,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1065
1090
  seat: number | null;
1066
1091
  created_at: string;
1067
1092
  updated_at: string;
1093
+ instagrams: string[];
1094
+ whoToWatch: string | null;
1068
1095
  scanned: boolean;
1069
1096
  scannedAt: string | null;
1070
1097
  ticketGroupId: string | null;
@@ -1179,6 +1206,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1179
1206
  tickets: {
1180
1207
  id: string;
1181
1208
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
1209
+ phoneNumber: string;
1182
1210
  fullName: string;
1183
1211
  mail: string;
1184
1212
  eventId: string;
@@ -1186,6 +1214,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1186
1214
  seat: number | null;
1187
1215
  created_at: string;
1188
1216
  updated_at: string;
1217
+ instagrams: string[];
1218
+ whoToWatch: string | null;
1189
1219
  scanned: boolean;
1190
1220
  scannedAt: string | null;
1191
1221
  ticketGroupId: string | null;
@@ -28,6 +28,9 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
28
28
  fullName: z.ZodString;
29
29
  mail: z.ZodString;
30
30
  dni: z.ZodString;
31
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
32
+ instagrams: z.ZodArray<z.ZodString, "many">;
33
+ whoToWatch: z.ZodNullable<z.ZodString>;
31
34
  seat: z.ZodNullable<z.ZodNumber>;
32
35
  scanned: z.ZodBoolean;
33
36
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -37,6 +40,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
37
40
  }, "strip", z.ZodTypeAny, {
38
41
  id: string;
39
42
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
43
+ phoneNumber: string;
40
44
  fullName: string;
41
45
  mail: string;
42
46
  eventId: string;
@@ -44,12 +48,15 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
44
48
  seat: number | null;
45
49
  created_at: Date;
46
50
  updated_at: Date;
51
+ instagrams: string[];
52
+ whoToWatch: string | null;
47
53
  scanned: boolean;
48
54
  scannedAt: Date | null;
49
55
  ticketGroupId: string | null;
50
56
  }, {
51
57
  id: string;
52
58
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
59
+ phoneNumber: string;
53
60
  fullName: string;
54
61
  mail: string;
55
62
  eventId: string;
@@ -57,6 +64,8 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
57
64
  seat: number | null;
58
65
  created_at: Date;
59
66
  updated_at: Date;
67
+ instagrams: string[];
68
+ whoToWatch: string | null;
60
69
  scanned: boolean;
61
70
  scannedAt: Date | null;
62
71
  ticketGroupId: string | null;
@@ -105,6 +114,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
105
114
  tickets: {
106
115
  id: string;
107
116
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
117
+ phoneNumber: string;
108
118
  fullName: string;
109
119
  mail: string;
110
120
  eventId: string;
@@ -112,6 +122,8 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
112
122
  seat: number | null;
113
123
  created_at: Date;
114
124
  updated_at: Date;
125
+ instagrams: string[];
126
+ whoToWatch: string | null;
115
127
  scanned: boolean;
116
128
  scannedAt: Date | null;
117
129
  ticketGroupId: string | null;
@@ -142,6 +154,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
142
154
  tickets: {
143
155
  id: string;
144
156
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
157
+ phoneNumber: string;
145
158
  fullName: string;
146
159
  mail: string;
147
160
  eventId: string;
@@ -149,6 +162,8 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
149
162
  seat: number | null;
150
163
  created_at: Date;
151
164
  updated_at: Date;
165
+ instagrams: string[];
166
+ whoToWatch: string | null;
152
167
  scanned: boolean;
153
168
  scannedAt: Date | null;
154
169
  ticketGroupId: string | null;
@@ -11,28 +11,37 @@ export declare const createManyTicketSchema: z.ZodObject<{
11
11
  fullName: z.ZodString;
12
12
  mail: z.ZodString;
13
13
  dni: z.ZodString;
14
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
15
+ instagrams: z.ZodArray<z.ZodString, "many">;
16
+ whoToWatch: z.ZodNullable<z.ZodString>;
14
17
  seat: z.ZodNullable<z.ZodNumber>;
15
18
  scanned: z.ZodBoolean;
16
19
  scannedAt: z.ZodNullable<z.ZodDate>;
17
20
  ticketGroupId: z.ZodNullable<z.ZodString>;
18
21
  created_at: z.ZodDate;
19
22
  updated_at: z.ZodDate;
20
- }, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
23
+ }, "type" | "phoneNumber" | "fullName" | "mail" | "eventId" | "dni" | "instagrams" | "whoToWatch" | "ticketGroupId">, {
21
24
  profileId: z.ZodOptional<z.ZodString>;
22
25
  }>, "strip", z.ZodTypeAny, {
23
26
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
27
+ phoneNumber: string;
24
28
  fullName: string;
25
29
  mail: string;
26
30
  eventId: string;
27
31
  dni: string;
32
+ instagrams: string[];
33
+ whoToWatch: string | null;
28
34
  ticketGroupId: string | null;
29
35
  profileId?: string | undefined;
30
36
  }, {
31
37
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
38
+ phoneNumber: string;
32
39
  fullName: string;
33
40
  mail: string;
34
41
  eventId: string;
35
42
  dni: string;
43
+ instagrams: string[];
44
+ whoToWatch: string | null;
36
45
  ticketGroupId: string | null;
37
46
  profileId?: string | undefined;
38
47
  }>, "many">;
@@ -40,10 +49,13 @@ export declare const createManyTicketSchema: z.ZodObject<{
40
49
  }, "strip", z.ZodTypeAny, {
41
50
  tickets: {
42
51
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
52
+ phoneNumber: string;
43
53
  fullName: string;
44
54
  mail: string;
45
55
  eventId: string;
46
56
  dni: string;
57
+ instagrams: string[];
58
+ whoToWatch: string | null;
47
59
  ticketGroupId: string | null;
48
60
  profileId?: string | undefined;
49
61
  }[];
@@ -51,10 +63,13 @@ export declare const createManyTicketSchema: z.ZodObject<{
51
63
  }, {
52
64
  tickets: {
53
65
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
66
+ phoneNumber: string;
54
67
  fullName: string;
55
68
  mail: string;
56
69
  eventId: string;
57
70
  dni: string;
71
+ instagrams: string[];
72
+ whoToWatch: string | null;
58
73
  ticketGroupId: string | null;
59
74
  profileId?: string | undefined;
60
75
  }[];
@@ -67,26 +82,35 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
67
82
  STAFF: "STAFF";
68
83
  SPECTATOR: "SPECTATOR";
69
84
  }>;
85
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
70
86
  fullName: z.ZodString;
71
87
  mail: z.ZodString;
72
88
  eventId: z.ZodString;
73
89
  dni: z.ZodString;
90
+ instagrams: z.ZodArray<z.ZodString, "many">;
91
+ whoToWatch: z.ZodNullable<z.ZodString>;
74
92
  ticketGroupId: z.ZodNullable<z.ZodString>;
75
93
  profileId: z.ZodOptional<z.ZodString>;
76
94
  }, z.UnknownKeysParam, z.ZodTypeAny, {
77
95
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
96
+ phoneNumber: string;
78
97
  fullName: string;
79
98
  mail: string;
80
99
  eventId: string;
81
100
  dni: string;
101
+ instagrams: string[];
102
+ whoToWatch: string | null;
82
103
  ticketGroupId: string | null;
83
104
  profileId?: string | undefined;
84
105
  }, {
85
106
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
107
+ phoneNumber: string;
86
108
  fullName: string;
87
109
  mail: string;
88
110
  eventId: string;
89
111
  dni: string;
112
+ instagrams: string[];
113
+ whoToWatch: string | null;
90
114
  ticketGroupId: string | null;
91
115
  profileId?: string | undefined;
92
116
  }>, "many">;
@@ -94,10 +118,13 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
94
118
  }, z.UnknownKeysParam, z.ZodTypeAny, {
95
119
  tickets: {
96
120
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
121
+ phoneNumber: string;
97
122
  fullName: string;
98
123
  mail: string;
99
124
  eventId: string;
100
125
  dni: string;
126
+ instagrams: string[];
127
+ whoToWatch: string | null;
101
128
  ticketGroupId: string | null;
102
129
  profileId?: string | undefined;
103
130
  }[];
@@ -105,10 +132,13 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
105
132
  }, {
106
133
  tickets: {
107
134
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
135
+ phoneNumber: string;
108
136
  fullName: string;
109
137
  mail: string;
110
138
  eventId: string;
111
139
  dni: string;
140
+ instagrams: string[];
141
+ whoToWatch: string | null;
112
142
  ticketGroupId: string | null;
113
143
  profileId?: string | undefined;
114
144
  }[];
@@ -137,6 +167,9 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
137
167
  fullName: z.ZodString;
138
168
  mail: z.ZodString;
139
169
  dni: z.ZodString;
170
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
171
+ instagrams: z.ZodArray<z.ZodString, "many">;
172
+ whoToWatch: z.ZodNullable<z.ZodString>;
140
173
  seat: z.ZodNullable<z.ZodNumber>;
141
174
  scanned: z.ZodBoolean;
142
175
  scannedAt: z.ZodNullable<z.ZodDate>;
@@ -217,6 +250,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
217
250
  };
218
251
  id: string;
219
252
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
253
+ phoneNumber: string;
220
254
  fullName: string;
221
255
  mail: string;
222
256
  eventId: string;
@@ -224,6 +258,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
224
258
  seat: number | null;
225
259
  created_at: Date;
226
260
  updated_at: Date;
261
+ instagrams: string[];
262
+ whoToWatch: string | null;
227
263
  scanned: boolean;
228
264
  scannedAt: Date | null;
229
265
  ticketGroupId: string | null;
@@ -248,6 +284,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
248
284
  };
249
285
  id: string;
250
286
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
287
+ phoneNumber: string;
251
288
  fullName: string;
252
289
  mail: string;
253
290
  eventId: string;
@@ -255,6 +292,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
255
292
  seat: number | null;
256
293
  created_at: Date;
257
294
  updated_at: Date;
295
+ instagrams: string[];
296
+ whoToWatch: string | null;
258
297
  scanned: boolean;
259
298
  scannedAt: Date | null;
260
299
  ticketGroupId: string | null;
@@ -270,6 +309,9 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
270
309
  fullName: z.ZodString;
271
310
  mail: z.ZodString;
272
311
  dni: z.ZodString;
312
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
313
+ instagrams: z.ZodArray<z.ZodString, "many">;
314
+ whoToWatch: z.ZodNullable<z.ZodString>;
273
315
  seat: z.ZodNullable<z.ZodNumber>;
274
316
  scanned: z.ZodBoolean;
275
317
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -349,6 +391,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
349
391
  };
350
392
  id: string;
351
393
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
394
+ phoneNumber: string;
352
395
  fullName: string;
353
396
  mail: string;
354
397
  eventId: string;
@@ -356,6 +399,8 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
356
399
  seat: number | null;
357
400
  created_at: string;
358
401
  updated_at: string;
402
+ instagrams: string[];
403
+ whoToWatch: string | null;
359
404
  scanned: boolean;
360
405
  scannedAt: string | null;
361
406
  ticketGroupId: string | null;
@@ -380,6 +425,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
380
425
  };
381
426
  id: string;
382
427
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
428
+ phoneNumber: string;
383
429
  fullName: string;
384
430
  mail: string;
385
431
  eventId: string;
@@ -387,6 +433,8 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
387
433
  seat: number | null;
388
434
  created_at: string;
389
435
  updated_at: string;
436
+ instagrams: string[];
437
+ whoToWatch: string | null;
390
438
  scanned: boolean;
391
439
  scannedAt: string | null;
392
440
  ticketGroupId: string | null;
@@ -19,6 +19,9 @@ exports.createManyTicketSchema = zod_1.default.object({
19
19
  mail: true,
20
20
  dni: true,
21
21
  ticketGroupId: true,
22
+ phoneNumber: true,
23
+ instagrams: true,
24
+ whoToWatch: true,
22
25
  })
23
26
  .extend({
24
27
  profileId: profile_schema_1.profileSchema.shape.id.optional(),
@@ -9,29 +9,38 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
9
9
  fullName: import("zod").ZodString;
10
10
  mail: import("zod").ZodString;
11
11
  dni: import("zod").ZodString;
12
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
13
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
14
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
12
15
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
13
16
  scanned: import("zod").ZodBoolean;
14
17
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
15
18
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
16
19
  created_at: import("zod").ZodDate;
17
20
  updated_at: import("zod").ZodDate;
18
- }, "type" | "fullName" | "mail" | "eventId" | "dni">, {
21
+ }, "type" | "phoneNumber" | "fullName" | "mail" | "eventId" | "dni" | "instagrams" | "whoToWatch">, {
19
22
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
20
23
  ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
21
24
  }>, "strip", import("zod").ZodTypeAny, {
22
25
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
26
+ phoneNumber: string;
23
27
  fullName: string;
24
28
  mail: string;
25
29
  eventId: string;
26
30
  dni: string;
31
+ instagrams: string[];
32
+ whoToWatch: string | null;
27
33
  profileId?: string | undefined;
28
34
  ticketGroupId?: string | undefined;
29
35
  }, {
30
36
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
37
+ phoneNumber: string;
31
38
  fullName: string;
32
39
  mail: string;
33
40
  eventId: string;
34
41
  dni: string;
42
+ instagrams: string[];
43
+ whoToWatch: string | null;
35
44
  profileId?: string | undefined;
36
45
  ticketGroupId?: string | undefined;
37
46
  }>;
@@ -41,26 +50,35 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
41
50
  STAFF: "STAFF";
42
51
  SPECTATOR: "SPECTATOR";
43
52
  }>;
53
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
44
54
  fullName: import("zod").ZodString;
45
55
  mail: import("zod").ZodString;
46
56
  eventId: import("zod").ZodString;
47
57
  dni: import("zod").ZodString;
58
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
59
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
48
60
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
49
61
  ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
50
62
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
51
63
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
64
+ phoneNumber: string;
52
65
  fullName: string;
53
66
  mail: string;
54
67
  eventId: string;
55
68
  dni: string;
69
+ instagrams: string[];
70
+ whoToWatch: string | null;
56
71
  profileId?: string | undefined;
57
72
  ticketGroupId?: string | undefined;
58
73
  }, {
59
74
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
75
+ phoneNumber: string;
60
76
  fullName: string;
61
77
  mail: string;
62
78
  eventId: string;
63
79
  dni: string;
80
+ instagrams: string[];
81
+ whoToWatch: string | null;
64
82
  profileId?: string | undefined;
65
83
  ticketGroupId?: string | undefined;
66
84
  }>>;
@@ -77,6 +95,9 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
77
95
  fullName: import("zod").ZodString;
78
96
  mail: import("zod").ZodString;
79
97
  dni: import("zod").ZodString;
98
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
99
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
100
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
80
101
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
81
102
  scanned: import("zod").ZodBoolean;
82
103
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
@@ -157,6 +178,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
157
178
  };
158
179
  id: string;
159
180
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
181
+ phoneNumber: string;
160
182
  fullName: string;
161
183
  mail: string;
162
184
  eventId: string;
@@ -164,6 +186,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
164
186
  seat: number | null;
165
187
  created_at: Date;
166
188
  updated_at: Date;
189
+ instagrams: string[];
190
+ whoToWatch: string | null;
167
191
  scanned: boolean;
168
192
  scannedAt: Date | null;
169
193
  ticketGroupId: string | null;
@@ -188,6 +212,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
188
212
  };
189
213
  id: string;
190
214
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
215
+ phoneNumber: string;
191
216
  fullName: string;
192
217
  mail: string;
193
218
  eventId: string;
@@ -195,6 +220,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
195
220
  seat: number | null;
196
221
  created_at: Date;
197
222
  updated_at: Date;
223
+ instagrams: string[];
224
+ whoToWatch: string | null;
198
225
  scanned: boolean;
199
226
  scannedAt: Date | null;
200
227
  ticketGroupId: string | null;
@@ -210,6 +237,9 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
210
237
  fullName: import("zod").ZodString;
211
238
  mail: import("zod").ZodString;
212
239
  dni: import("zod").ZodString;
240
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
241
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
242
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
213
243
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
214
244
  scanned: import("zod").ZodBoolean;
215
245
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
@@ -289,6 +319,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
289
319
  };
290
320
  id: string;
291
321
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
322
+ phoneNumber: string;
292
323
  fullName: string;
293
324
  mail: string;
294
325
  eventId: string;
@@ -296,6 +327,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
296
327
  seat: number | null;
297
328
  created_at: string;
298
329
  updated_at: string;
330
+ instagrams: string[];
331
+ whoToWatch: string | null;
299
332
  scanned: boolean;
300
333
  scannedAt: string | null;
301
334
  ticketGroupId: string | null;
@@ -320,6 +353,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
320
353
  };
321
354
  id: string;
322
355
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
356
+ phoneNumber: string;
323
357
  fullName: string;
324
358
  mail: string;
325
359
  eventId: string;
@@ -327,6 +361,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
327
361
  seat: number | null;
328
362
  created_at: string;
329
363
  updated_at: string;
364
+ instagrams: string[];
365
+ whoToWatch: string | null;
330
366
  scanned: boolean;
331
367
  scannedAt: string | null;
332
368
  ticketGroupId: string | null;