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
@@ -13,6 +13,9 @@ exports.createTicketSchema = ticket_dto_1.ticketSchema
13
13
  fullName: true,
14
14
  mail: true,
15
15
  dni: true,
16
+ phoneNumber: true,
17
+ instagrams: true,
18
+ whoToWatch: true,
16
19
  })
17
20
  .extend({
18
21
  profileId: profile_schema_1.profileSchema.shape.id.optional(),
@@ -9,6 +9,9 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
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>;
@@ -18,6 +21,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
18
21
  }, "strip", import("zod").ZodTypeAny, {
19
22
  id: string;
20
23
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
24
+ phoneNumber: string;
21
25
  fullName: string;
22
26
  mail: string;
23
27
  eventId: string;
@@ -25,12 +29,15 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
25
29
  seat: number | null;
26
30
  created_at: Date;
27
31
  updated_at: Date;
32
+ instagrams: string[];
33
+ whoToWatch: string | null;
28
34
  scanned: boolean;
29
35
  scannedAt: Date | null;
30
36
  ticketGroupId: string | null;
31
37
  }, {
32
38
  id: string;
33
39
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
40
+ phoneNumber: string;
34
41
  fullName: string;
35
42
  mail: string;
36
43
  eventId: string;
@@ -38,6 +45,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
38
45
  seat: number | null;
39
46
  created_at: Date;
40
47
  updated_at: Date;
48
+ instagrams: string[];
49
+ whoToWatch: string | null;
41
50
  scanned: boolean;
42
51
  scannedAt: Date | null;
43
52
  ticketGroupId: string | null;
@@ -53,6 +62,9 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
53
62
  fullName: import("zod").ZodString;
54
63
  mail: import("zod").ZodString;
55
64
  dni: import("zod").ZodString;
65
+ phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
66
+ instagrams: import("zod").ZodArray<import("zod").ZodString, "many">;
67
+ whoToWatch: import("zod").ZodNullable<import("zod").ZodString>;
56
68
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
57
69
  scanned: import("zod").ZodBoolean;
58
70
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
@@ -62,6 +74,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
62
74
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
63
75
  id: string;
64
76
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
77
+ phoneNumber: string;
65
78
  fullName: string;
66
79
  mail: string;
67
80
  eventId: string;
@@ -69,12 +82,15 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
69
82
  seat: number | null;
70
83
  created_at: string;
71
84
  updated_at: string;
85
+ instagrams: string[];
86
+ whoToWatch: string | null;
72
87
  scanned: boolean;
73
88
  scannedAt: string | null;
74
89
  ticketGroupId: string | null;
75
90
  }, {
76
91
  id: string;
77
92
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
93
+ phoneNumber: string;
78
94
  fullName: string;
79
95
  mail: string;
80
96
  eventId: string;
@@ -82,6 +98,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
82
98
  seat: number | null;
83
99
  created_at: string;
84
100
  updated_at: string;
101
+ instagrams: string[];
102
+ whoToWatch: string | null;
85
103
  scanned: boolean;
86
104
  scannedAt: string | null;
87
105
  ticketGroupId: string | null;
@@ -11,6 +11,9 @@ export declare const findAllTicketsResponseSchema: 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>;
@@ -52,6 +55,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
52
55
  };
53
56
  id: string;
54
57
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
58
+ phoneNumber: string;
55
59
  fullName: string;
56
60
  mail: string;
57
61
  eventId: string;
@@ -59,6 +63,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
59
63
  seat: number | null;
60
64
  created_at: Date;
61
65
  updated_at: Date;
66
+ instagrams: string[];
67
+ whoToWatch: string | null;
62
68
  scanned: boolean;
63
69
  scannedAt: Date | null;
64
70
  ticketGroupId: string | null;
@@ -70,6 +76,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
70
76
  };
71
77
  id: string;
72
78
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
79
+ phoneNumber: string;
73
80
  fullName: string;
74
81
  mail: string;
75
82
  eventId: string;
@@ -77,6 +84,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
77
84
  seat: number | null;
78
85
  created_at: Date;
79
86
  updated_at: Date;
87
+ instagrams: string[];
88
+ whoToWatch: string | null;
80
89
  scanned: boolean;
81
90
  scannedAt: Date | null;
82
91
  ticketGroupId: string | null;
@@ -90,6 +99,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
90
99
  };
91
100
  id: string;
92
101
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
102
+ phoneNumber: string;
93
103
  fullName: string;
94
104
  mail: string;
95
105
  eventId: string;
@@ -97,6 +107,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
97
107
  seat: number | null;
98
108
  created_at: Date;
99
109
  updated_at: Date;
110
+ instagrams: string[];
111
+ whoToWatch: string | null;
100
112
  scanned: boolean;
101
113
  scannedAt: Date | null;
102
114
  ticketGroupId: string | null;
@@ -110,6 +122,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
110
122
  };
111
123
  id: string;
112
124
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
125
+ phoneNumber: string;
113
126
  fullName: string;
114
127
  mail: string;
115
128
  eventId: string;
@@ -117,6 +130,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
117
130
  seat: number | null;
118
131
  created_at: Date;
119
132
  updated_at: Date;
133
+ instagrams: string[];
134
+ whoToWatch: string | null;
120
135
  scanned: boolean;
121
136
  scannedAt: Date | null;
122
137
  ticketGroupId: string | null;
@@ -134,6 +149,9 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
134
149
  fullName: z.ZodString;
135
150
  mail: z.ZodString;
136
151
  dni: z.ZodString;
152
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
153
+ instagrams: z.ZodArray<z.ZodString, "many">;
154
+ whoToWatch: z.ZodNullable<z.ZodString>;
137
155
  seat: z.ZodNullable<z.ZodNumber>;
138
156
  scanned: z.ZodBoolean;
139
157
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -161,6 +179,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
161
179
  };
162
180
  id: string;
163
181
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
182
+ phoneNumber: string;
164
183
  fullName: string;
165
184
  mail: string;
166
185
  eventId: string;
@@ -168,6 +187,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
168
187
  seat: number | null;
169
188
  created_at: string;
170
189
  updated_at: string;
190
+ instagrams: string[];
191
+ whoToWatch: string | null;
171
192
  scanned: boolean;
172
193
  scannedAt: string | null;
173
194
  ticketGroupId: string | null;
@@ -179,6 +200,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
179
200
  };
180
201
  id: string;
181
202
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
203
+ phoneNumber: string;
182
204
  fullName: string;
183
205
  mail: string;
184
206
  eventId: string;
@@ -186,6 +208,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
186
208
  seat: number | null;
187
209
  created_at: string;
188
210
  updated_at: string;
211
+ instagrams: string[];
212
+ whoToWatch: string | null;
189
213
  scanned: boolean;
190
214
  scannedAt: string | null;
191
215
  ticketGroupId: string | null;
@@ -199,6 +223,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
199
223
  };
200
224
  id: string;
201
225
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
226
+ phoneNumber: string;
202
227
  fullName: string;
203
228
  mail: string;
204
229
  eventId: string;
@@ -206,6 +231,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
206
231
  seat: number | null;
207
232
  created_at: string;
208
233
  updated_at: string;
234
+ instagrams: string[];
235
+ whoToWatch: string | null;
209
236
  scanned: boolean;
210
237
  scannedAt: string | null;
211
238
  ticketGroupId: string | null;
@@ -219,6 +246,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
219
246
  };
220
247
  id: string;
221
248
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
249
+ phoneNumber: string;
222
250
  fullName: string;
223
251
  mail: string;
224
252
  eventId: string;
@@ -226,6 +254,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
226
254
  seat: number | null;
227
255
  created_at: string;
228
256
  updated_at: string;
257
+ instagrams: string[];
258
+ whoToWatch: string | null;
229
259
  scanned: boolean;
230
260
  scannedAt: string | null;
231
261
  ticketGroupId: string | null;
@@ -11,6 +11,9 @@ export declare const findByEventTicketResponseSchema: 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>;
@@ -164,6 +167,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
164
167
  } | null;
165
168
  id: string;
166
169
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
170
+ phoneNumber: string;
167
171
  fullName: string;
168
172
  mail: string;
169
173
  eventId: string;
@@ -171,6 +175,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
171
175
  seat: number | null;
172
176
  created_at: Date;
173
177
  updated_at: Date;
178
+ instagrams: string[];
179
+ whoToWatch: string | null;
174
180
  scanned: boolean;
175
181
  scannedAt: Date | null;
176
182
  ticketGroupId: string | null;
@@ -209,6 +215,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
209
215
  } | null;
210
216
  id: string;
211
217
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
218
+ phoneNumber: string;
212
219
  fullName: string;
213
220
  mail: string;
214
221
  eventId: string;
@@ -216,6 +223,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
216
223
  seat: number | null;
217
224
  created_at: Date;
218
225
  updated_at: Date;
226
+ instagrams: string[];
227
+ whoToWatch: string | null;
219
228
  scanned: boolean;
220
229
  scannedAt: Date | null;
221
230
  ticketGroupId: string | null;
@@ -256,6 +265,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
256
265
  } | null;
257
266
  id: string;
258
267
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
268
+ phoneNumber: string;
259
269
  fullName: string;
260
270
  mail: string;
261
271
  eventId: string;
@@ -263,6 +273,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
263
273
  seat: number | null;
264
274
  created_at: Date;
265
275
  updated_at: Date;
276
+ instagrams: string[];
277
+ whoToWatch: string | null;
266
278
  scanned: boolean;
267
279
  scannedAt: Date | null;
268
280
  ticketGroupId: string | null;
@@ -303,6 +315,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
303
315
  } | null;
304
316
  id: string;
305
317
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
318
+ phoneNumber: string;
306
319
  fullName: string;
307
320
  mail: string;
308
321
  eventId: string;
@@ -310,6 +323,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
310
323
  seat: number | null;
311
324
  created_at: Date;
312
325
  updated_at: Date;
326
+ instagrams: string[];
327
+ whoToWatch: string | null;
313
328
  scanned: boolean;
314
329
  scannedAt: Date | null;
315
330
  ticketGroupId: string | null;
@@ -327,6 +342,9 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
327
342
  fullName: z.ZodString;
328
343
  mail: z.ZodString;
329
344
  dni: z.ZodString;
345
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
346
+ instagrams: z.ZodArray<z.ZodString, "many">;
347
+ whoToWatch: z.ZodNullable<z.ZodString>;
330
348
  seat: z.ZodNullable<z.ZodNumber>;
331
349
  scanned: z.ZodBoolean;
332
350
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -466,6 +484,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
466
484
  } | null;
467
485
  id: string;
468
486
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
487
+ phoneNumber: string;
469
488
  fullName: string;
470
489
  mail: string;
471
490
  eventId: string;
@@ -473,6 +492,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
473
492
  seat: number | null;
474
493
  created_at: string;
475
494
  updated_at: string;
495
+ instagrams: string[];
496
+ whoToWatch: string | null;
476
497
  scanned: boolean;
477
498
  scannedAt: string | null;
478
499
  ticketGroupId: string | null;
@@ -511,6 +532,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
511
532
  } | null;
512
533
  id: string;
513
534
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
535
+ phoneNumber: string;
514
536
  fullName: string;
515
537
  mail: string;
516
538
  eventId: string;
@@ -518,6 +540,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
518
540
  seat: number | null;
519
541
  created_at: string;
520
542
  updated_at: string;
543
+ instagrams: string[];
544
+ whoToWatch: string | null;
521
545
  scanned: boolean;
522
546
  scannedAt: string | null;
523
547
  ticketGroupId: string | null;
@@ -558,6 +582,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
558
582
  } | null;
559
583
  id: string;
560
584
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
585
+ phoneNumber: string;
561
586
  fullName: string;
562
587
  mail: string;
563
588
  eventId: string;
@@ -565,6 +590,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
565
590
  seat: number | null;
566
591
  created_at: string;
567
592
  updated_at: string;
593
+ instagrams: string[];
594
+ whoToWatch: string | null;
568
595
  scanned: boolean;
569
596
  scannedAt: string | null;
570
597
  ticketGroupId: string | null;
@@ -605,6 +632,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
605
632
  } | null;
606
633
  id: string;
607
634
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
635
+ phoneNumber: string;
608
636
  fullName: string;
609
637
  mail: string;
610
638
  eventId: string;
@@ -612,6 +640,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
612
640
  seat: number | null;
613
641
  created_at: string;
614
642
  updated_at: string;
643
+ instagrams: string[];
644
+ whoToWatch: string | null;
615
645
  scanned: boolean;
616
646
  scannedAt: string | null;
617
647
  ticketGroupId: string | null;
@@ -11,6 +11,9 @@ export declare const findByIdTicketResponseSchema: 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>;
@@ -204,6 +207,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
204
207
  } | null;
205
208
  id: string;
206
209
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
210
+ phoneNumber: string;
207
211
  fullName: string;
208
212
  mail: string;
209
213
  eventId: string;
@@ -212,6 +216,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
212
216
  created_at: Date;
213
217
  updated_at: Date;
214
218
  profileId: string | null;
219
+ instagrams: string[];
220
+ whoToWatch: string | null;
215
221
  scanned: boolean;
216
222
  scannedAt: Date | null;
217
223
  ticketGroupId: string | null;
@@ -263,6 +269,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
263
269
  } | null;
264
270
  id: string;
265
271
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
272
+ phoneNumber: string;
266
273
  fullName: string;
267
274
  mail: string;
268
275
  eventId: string;
@@ -271,6 +278,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
271
278
  created_at: Date;
272
279
  updated_at: Date;
273
280
  profileId: string | null;
281
+ instagrams: string[];
282
+ whoToWatch: string | null;
274
283
  scanned: boolean;
275
284
  scannedAt: Date | null;
276
285
  ticketGroupId: string | null;
@@ -324,6 +333,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
324
333
  } | null;
325
334
  id: string;
326
335
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
336
+ phoneNumber: string;
327
337
  fullName: string;
328
338
  mail: string;
329
339
  eventId: string;
@@ -332,6 +342,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
332
342
  created_at: Date;
333
343
  updated_at: Date;
334
344
  profileId: string | null;
345
+ instagrams: string[];
346
+ whoToWatch: string | null;
335
347
  scanned: boolean;
336
348
  scannedAt: Date | null;
337
349
  ticketGroupId: string | null;
@@ -385,6 +397,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
385
397
  } | null;
386
398
  id: string;
387
399
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
400
+ phoneNumber: string;
388
401
  fullName: string;
389
402
  mail: string;
390
403
  eventId: string;
@@ -393,6 +406,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
393
406
  created_at: Date;
394
407
  updated_at: Date;
395
408
  profileId: string | null;
409
+ instagrams: string[];
410
+ whoToWatch: string | null;
396
411
  scanned: boolean;
397
412
  scannedAt: Date | null;
398
413
  ticketGroupId: string | null;
@@ -410,6 +425,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
410
425
  fullName: z.ZodString;
411
426
  mail: z.ZodString;
412
427
  dni: z.ZodString;
428
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
429
+ instagrams: z.ZodArray<z.ZodString, "many">;
430
+ whoToWatch: z.ZodNullable<z.ZodString>;
413
431
  seat: z.ZodNullable<z.ZodNumber>;
414
432
  scanned: z.ZodBoolean;
415
433
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -602,6 +620,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
602
620
  } | null;
603
621
  id: string;
604
622
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
623
+ phoneNumber: string;
605
624
  fullName: string;
606
625
  mail: string;
607
626
  eventId: string;
@@ -610,6 +629,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
610
629
  created_at: string;
611
630
  updated_at: string;
612
631
  profileId: string | null;
632
+ instagrams: string[];
633
+ whoToWatch: string | null;
613
634
  scanned: boolean;
614
635
  scannedAt: string | null;
615
636
  ticketGroupId: string | null;
@@ -661,6 +682,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
661
682
  } | null;
662
683
  id: string;
663
684
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
685
+ phoneNumber: string;
664
686
  fullName: string;
665
687
  mail: string;
666
688
  eventId: string;
@@ -669,6 +691,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
669
691
  created_at: string;
670
692
  updated_at: string;
671
693
  profileId: string | null;
694
+ instagrams: string[];
695
+ whoToWatch: string | null;
672
696
  scanned: boolean;
673
697
  scannedAt: string | null;
674
698
  ticketGroupId: string | null;
@@ -722,6 +746,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
722
746
  } | null;
723
747
  id: string;
724
748
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
749
+ phoneNumber: string;
725
750
  fullName: string;
726
751
  mail: string;
727
752
  eventId: string;
@@ -730,6 +755,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
730
755
  created_at: string;
731
756
  updated_at: string;
732
757
  profileId: string | null;
758
+ instagrams: string[];
759
+ whoToWatch: string | null;
733
760
  scanned: boolean;
734
761
  scannedAt: string | null;
735
762
  ticketGroupId: string | null;
@@ -783,6 +810,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
783
810
  } | null;
784
811
  id: string;
785
812
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
813
+ phoneNumber: string;
786
814
  fullName: string;
787
815
  mail: string;
788
816
  eventId: string;
@@ -791,6 +819,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
791
819
  created_at: string;
792
820
  updated_at: string;
793
821
  profileId: string | null;
822
+ instagrams: string[];
823
+ whoToWatch: string | null;
794
824
  scanned: boolean;
795
825
  scannedAt: string | null;
796
826
  ticketGroupId: string | null;
@@ -11,6 +11,9 @@ export declare const findByMailTicketResponseSchema: 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>;
@@ -164,6 +167,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
164
167
  } | null;
165
168
  id: string;
166
169
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
170
+ phoneNumber: string;
167
171
  fullName: string;
168
172
  mail: string;
169
173
  eventId: string;
@@ -171,6 +175,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
171
175
  seat: number | null;
172
176
  created_at: Date;
173
177
  updated_at: Date;
178
+ instagrams: string[];
179
+ whoToWatch: string | null;
174
180
  scanned: boolean;
175
181
  scannedAt: Date | null;
176
182
  ticketGroupId: string | null;
@@ -209,6 +215,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
209
215
  } | null;
210
216
  id: string;
211
217
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
218
+ phoneNumber: string;
212
219
  fullName: string;
213
220
  mail: string;
214
221
  eventId: string;
@@ -216,6 +223,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
216
223
  seat: number | null;
217
224
  created_at: Date;
218
225
  updated_at: Date;
226
+ instagrams: string[];
227
+ whoToWatch: string | null;
219
228
  scanned: boolean;
220
229
  scannedAt: Date | null;
221
230
  ticketGroupId: string | null;
@@ -256,6 +265,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
256
265
  } | null;
257
266
  id: string;
258
267
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
268
+ phoneNumber: string;
259
269
  fullName: string;
260
270
  mail: string;
261
271
  eventId: string;
@@ -263,6 +273,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
263
273
  seat: number | null;
264
274
  created_at: Date;
265
275
  updated_at: Date;
276
+ instagrams: string[];
277
+ whoToWatch: string | null;
266
278
  scanned: boolean;
267
279
  scannedAt: Date | null;
268
280
  ticketGroupId: string | null;
@@ -303,6 +315,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
303
315
  } | null;
304
316
  id: string;
305
317
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
318
+ phoneNumber: string;
306
319
  fullName: string;
307
320
  mail: string;
308
321
  eventId: string;
@@ -310,6 +323,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
310
323
  seat: number | null;
311
324
  created_at: Date;
312
325
  updated_at: Date;
326
+ instagrams: string[];
327
+ whoToWatch: string | null;
313
328
  scanned: boolean;
314
329
  scannedAt: Date | null;
315
330
  ticketGroupId: string | null;
@@ -327,6 +342,9 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
327
342
  fullName: z.ZodString;
328
343
  mail: z.ZodString;
329
344
  dni: z.ZodString;
345
+ phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
346
+ instagrams: z.ZodArray<z.ZodString, "many">;
347
+ whoToWatch: z.ZodNullable<z.ZodString>;
330
348
  seat: z.ZodNullable<z.ZodNumber>;
331
349
  scanned: z.ZodBoolean;
332
350
  scannedAt: z.ZodNullable<z.ZodString>;
@@ -466,6 +484,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
466
484
  } | null;
467
485
  id: string;
468
486
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
487
+ phoneNumber: string;
469
488
  fullName: string;
470
489
  mail: string;
471
490
  eventId: string;
@@ -473,6 +492,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
473
492
  seat: number | null;
474
493
  created_at: string;
475
494
  updated_at: string;
495
+ instagrams: string[];
496
+ whoToWatch: string | null;
476
497
  scanned: boolean;
477
498
  scannedAt: string | null;
478
499
  ticketGroupId: string | null;
@@ -511,6 +532,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
511
532
  } | null;
512
533
  id: string;
513
534
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
535
+ phoneNumber: string;
514
536
  fullName: string;
515
537
  mail: string;
516
538
  eventId: string;
@@ -518,6 +540,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
518
540
  seat: number | null;
519
541
  created_at: string;
520
542
  updated_at: string;
543
+ instagrams: string[];
544
+ whoToWatch: string | null;
521
545
  scanned: boolean;
522
546
  scannedAt: string | null;
523
547
  ticketGroupId: string | null;
@@ -558,6 +582,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
558
582
  } | null;
559
583
  id: string;
560
584
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
585
+ phoneNumber: string;
561
586
  fullName: string;
562
587
  mail: string;
563
588
  eventId: string;
@@ -565,6 +590,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
565
590
  seat: number | null;
566
591
  created_at: string;
567
592
  updated_at: string;
593
+ instagrams: string[];
594
+ whoToWatch: string | null;
568
595
  scanned: boolean;
569
596
  scannedAt: string | null;
570
597
  ticketGroupId: string | null;
@@ -605,6 +632,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
605
632
  } | null;
606
633
  id: string;
607
634
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
635
+ phoneNumber: string;
608
636
  fullName: string;
609
637
  mail: string;
610
638
  eventId: string;
@@ -612,6 +640,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
612
640
  seat: number | null;
613
641
  created_at: string;
614
642
  updated_at: string;
643
+ instagrams: string[];
644
+ whoToWatch: string | null;
615
645
  scanned: boolean;
616
646
  scannedAt: string | null;
617
647
  ticketGroupId: string | null;