expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5 → 0.36.0-EXPO-323-Enviar-mail-ticket.3

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 (58) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
  9. package/dist/src/i18n/es.d.ts +19 -5
  10. package/dist/src/i18n/es.js +19 -5
  11. package/dist/src/i18n/es.js.map +1 -1
  12. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  13. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  14. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  15. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  16. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  17. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  18. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
  22. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
  27. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  29. package/dist/src/schema/profile.schema.d.ts +5 -5
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  32. package/dist/src/ticket/constants.d.ts +95 -14
  33. package/dist/src/ticket/constants.js +254 -222
  34. package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
  35. package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
  36. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
  37. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
  38. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
  39. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
  40. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
  41. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
  42. package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
  43. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  44. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  45. package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
  46. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  47. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  48. package/dist/types/prisma-schema/edge.js +7 -5
  49. package/dist/types/prisma-schema/index-browser.js +4 -2
  50. package/dist/types/prisma-schema/index.d.ts +193 -65
  51. package/dist/types/prisma-schema/index.js +7 -5
  52. package/dist/types/prisma-schema/package.json +1 -1
  53. package/dist/types/prisma-schema/schema.prisma +5 -1
  54. package/dist/types/prisma-schema/wasm.js +4 -2
  55. package/dist/types/schema.d.ts +100 -116
  56. package/package.json +6 -6
  57. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -688
  58. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -57
@@ -15,6 +15,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
15
15
  }>;
16
16
  fullName: z.ZodString;
17
17
  mail: z.ZodString;
18
+ dni: z.ZodString;
19
+ seat: z.ZodNullable<z.ZodNumber>;
18
20
  created_at: z.ZodDate;
19
21
  updated_at: z.ZodDate;
20
22
  }, {
@@ -48,8 +50,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
48
50
  USER: "USER";
49
51
  ADMIN: "ADMIN";
50
52
  FORM: "FORM";
51
- TICKETS: "TICKETS";
52
53
  MI_EXPO: "MI_EXPO";
54
+ TICKETS: "TICKETS";
53
55
  }>>;
54
56
  firstTimeMiExpo: z.ZodBoolean;
55
57
  username: z.ZodNullable<z.ZodString>;
@@ -76,12 +78,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
76
78
  id: string;
77
79
  username: string | null;
78
80
  password: string | null;
79
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
81
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
80
82
  phoneNumber: string;
81
83
  secondaryPhoneNumber: string | null;
82
84
  fullName: string;
83
85
  profilePictureUrl: string | null;
84
86
  mail: string | null;
87
+ dni: string | null;
85
88
  created_at: Date;
86
89
  updated_at: Date;
87
90
  shortId: number;
@@ -91,7 +94,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
91
94
  gender: string | null;
92
95
  birthDate: Date | null;
93
96
  instagram: string | null;
94
- dni: string | null;
95
97
  alternativeNames: string[];
96
98
  birthLocationId: string | null;
97
99
  residenceLocationId: string | null;
@@ -106,6 +108,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
106
108
  fullName: string;
107
109
  profilePictureUrl: string | null;
108
110
  mail: string | null;
111
+ dni: string | null;
109
112
  created_at: Date;
110
113
  updated_at: Date;
111
114
  shortId: number;
@@ -115,13 +118,12 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
115
118
  gender: string | null;
116
119
  birthDate: string | null;
117
120
  instagram: string | null;
118
- dni: string | null;
119
121
  alternativeNames: string[];
120
122
  birthLocationId: string | null;
121
123
  residenceLocationId: string | null;
122
124
  isInTrash: boolean;
123
125
  movedToTrashDate: Date | null;
124
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
126
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
125
127
  }>>;
126
128
  }>, "strip", z.ZodTypeAny, {
127
129
  event: {
@@ -133,12 +135,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
133
135
  id: string;
134
136
  username: string | null;
135
137
  password: string | null;
136
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
138
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
137
139
  phoneNumber: string;
138
140
  secondaryPhoneNumber: string | null;
139
141
  fullName: string;
140
142
  profilePictureUrl: string | null;
141
143
  mail: string | null;
144
+ dni: string | null;
142
145
  created_at: Date;
143
146
  updated_at: Date;
144
147
  shortId: number;
@@ -148,7 +151,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
148
151
  gender: string | null;
149
152
  birthDate: Date | null;
150
153
  instagram: string | null;
151
- dni: string | null;
152
154
  alternativeNames: string[];
153
155
  birthLocationId: string | null;
154
156
  residenceLocationId: string | null;
@@ -161,6 +163,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
161
163
  mail: string;
162
164
  eventId: string;
163
165
  status: "BOOKED" | "PAID" | "FREE";
166
+ seat: number | null;
167
+ dni: string;
164
168
  created_at: Date;
165
169
  updated_at: Date;
166
170
  }, {
@@ -178,6 +182,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
178
182
  fullName: string;
179
183
  profilePictureUrl: string | null;
180
184
  mail: string | null;
185
+ dni: string | null;
181
186
  created_at: Date;
182
187
  updated_at: Date;
183
188
  shortId: number;
@@ -187,13 +192,12 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
187
192
  gender: string | null;
188
193
  birthDate: string | null;
189
194
  instagram: string | null;
190
- dni: string | null;
191
195
  alternativeNames: string[];
192
196
  birthLocationId: string | null;
193
197
  residenceLocationId: string | null;
194
198
  isInTrash: boolean;
195
199
  movedToTrashDate: Date | null;
196
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
200
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
197
201
  } | null;
198
202
  id: string;
199
203
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -201,6 +205,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
201
205
  mail: string;
202
206
  eventId: string;
203
207
  status: "BOOKED" | "PAID" | "FREE";
208
+ seat: number | null;
209
+ dni: string;
204
210
  created_at: Date;
205
211
  updated_at: Date;
206
212
  }>, "many">;
@@ -215,12 +221,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
215
221
  id: string;
216
222
  username: string | null;
217
223
  password: string | null;
218
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
224
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
219
225
  phoneNumber: string;
220
226
  secondaryPhoneNumber: string | null;
221
227
  fullName: string;
222
228
  profilePictureUrl: string | null;
223
229
  mail: string | null;
230
+ dni: string | null;
224
231
  created_at: Date;
225
232
  updated_at: Date;
226
233
  shortId: number;
@@ -230,7 +237,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
230
237
  gender: string | null;
231
238
  birthDate: Date | null;
232
239
  instagram: string | null;
233
- dni: string | null;
234
240
  alternativeNames: string[];
235
241
  birthLocationId: string | null;
236
242
  residenceLocationId: string | null;
@@ -243,6 +249,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
243
249
  mail: string;
244
250
  eventId: string;
245
251
  status: "BOOKED" | "PAID" | "FREE";
252
+ seat: number | null;
253
+ dni: string;
246
254
  created_at: Date;
247
255
  updated_at: Date;
248
256
  }[];
@@ -262,6 +270,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
262
270
  fullName: string;
263
271
  profilePictureUrl: string | null;
264
272
  mail: string | null;
273
+ dni: string | null;
265
274
  created_at: Date;
266
275
  updated_at: Date;
267
276
  shortId: number;
@@ -271,13 +280,12 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
271
280
  gender: string | null;
272
281
  birthDate: string | null;
273
282
  instagram: string | null;
274
- dni: string | null;
275
283
  alternativeNames: string[];
276
284
  birthLocationId: string | null;
277
285
  residenceLocationId: string | null;
278
286
  isInTrash: boolean;
279
287
  movedToTrashDate: Date | null;
280
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
288
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
281
289
  } | null;
282
290
  id: string;
283
291
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -285,6 +293,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
285
293
  mail: string;
286
294
  eventId: string;
287
295
  status: "BOOKED" | "PAID" | "FREE";
296
+ seat: number | null;
297
+ dni: string;
288
298
  created_at: Date;
289
299
  updated_at: Date;
290
300
  }[];
@@ -305,6 +315,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
305
315
  }>;
306
316
  fullName: z.ZodString;
307
317
  mail: z.ZodString;
318
+ dni: z.ZodString;
319
+ seat: z.ZodNullable<z.ZodNumber>;
308
320
  created_at: z.ZodString;
309
321
  updated_at: z.ZodString;
310
322
  event: z.ZodObject<{
@@ -327,8 +339,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
327
339
  USER: "USER";
328
340
  ADMIN: "ADMIN";
329
341
  FORM: "FORM";
330
- TICKETS: "TICKETS";
331
342
  MI_EXPO: "MI_EXPO";
343
+ TICKETS: "TICKETS";
332
344
  }>>;
333
345
  firstTimeMiExpo: z.ZodBoolean;
334
346
  username: z.ZodNullable<z.ZodString>;
@@ -355,12 +367,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
355
367
  id: string;
356
368
  username: string | null;
357
369
  password: string | null;
358
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
370
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
359
371
  phoneNumber: string;
360
372
  secondaryPhoneNumber: string | null;
361
373
  fullName: string;
362
374
  profilePictureUrl: string | null;
363
375
  mail: string | null;
376
+ dni: string | null;
364
377
  created_at: string;
365
378
  updated_at: string;
366
379
  shortId: number;
@@ -370,7 +383,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
370
383
  gender: string | null;
371
384
  birthDate: string | null;
372
385
  instagram: string | null;
373
- dni: string | null;
374
386
  alternativeNames: string[];
375
387
  birthLocationId: string | null;
376
388
  residenceLocationId: string | null;
@@ -385,6 +397,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
385
397
  fullName: string;
386
398
  profilePictureUrl: string | null;
387
399
  mail: string | null;
400
+ dni: string | null;
388
401
  created_at: string;
389
402
  updated_at: string;
390
403
  shortId: number;
@@ -394,13 +407,12 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
394
407
  gender: string | null;
395
408
  birthDate: string | null;
396
409
  instagram: string | null;
397
- dni: string | null;
398
410
  alternativeNames: string[];
399
411
  birthLocationId: string | null;
400
412
  residenceLocationId: string | null;
401
413
  isInTrash: boolean;
402
414
  movedToTrashDate: string | null;
403
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
415
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
404
416
  }>>;
405
417
  }, z.UnknownKeysParam, z.ZodTypeAny, {
406
418
  event: {
@@ -412,12 +424,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
412
424
  id: string;
413
425
  username: string | null;
414
426
  password: string | null;
415
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
427
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
416
428
  phoneNumber: string;
417
429
  secondaryPhoneNumber: string | null;
418
430
  fullName: string;
419
431
  profilePictureUrl: string | null;
420
432
  mail: string | null;
433
+ dni: string | null;
421
434
  created_at: string;
422
435
  updated_at: string;
423
436
  shortId: number;
@@ -427,7 +440,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
427
440
  gender: string | null;
428
441
  birthDate: string | null;
429
442
  instagram: string | null;
430
- dni: string | null;
431
443
  alternativeNames: string[];
432
444
  birthLocationId: string | null;
433
445
  residenceLocationId: string | null;
@@ -440,6 +452,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
440
452
  mail: string;
441
453
  eventId: string;
442
454
  status: "BOOKED" | "PAID" | "FREE";
455
+ seat: number | null;
456
+ dni: string;
443
457
  created_at: string;
444
458
  updated_at: string;
445
459
  }, {
@@ -457,6 +471,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
457
471
  fullName: string;
458
472
  profilePictureUrl: string | null;
459
473
  mail: string | null;
474
+ dni: string | null;
460
475
  created_at: string;
461
476
  updated_at: string;
462
477
  shortId: number;
@@ -466,13 +481,12 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
466
481
  gender: string | null;
467
482
  birthDate: string | null;
468
483
  instagram: string | null;
469
- dni: string | null;
470
484
  alternativeNames: string[];
471
485
  birthLocationId: string | null;
472
486
  residenceLocationId: string | null;
473
487
  isInTrash: boolean;
474
488
  movedToTrashDate: string | null;
475
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
489
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
476
490
  } | null;
477
491
  id: string;
478
492
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -480,6 +494,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
480
494
  mail: string;
481
495
  eventId: string;
482
496
  status: "BOOKED" | "PAID" | "FREE";
497
+ seat: number | null;
498
+ dni: string;
483
499
  created_at: string;
484
500
  updated_at: string;
485
501
  }>, "many">;
@@ -494,12 +510,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
494
510
  id: string;
495
511
  username: string | null;
496
512
  password: string | null;
497
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
513
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
498
514
  phoneNumber: string;
499
515
  secondaryPhoneNumber: string | null;
500
516
  fullName: string;
501
517
  profilePictureUrl: string | null;
502
518
  mail: string | null;
519
+ dni: string | null;
503
520
  created_at: string;
504
521
  updated_at: string;
505
522
  shortId: number;
@@ -509,7 +526,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
509
526
  gender: string | null;
510
527
  birthDate: string | null;
511
528
  instagram: string | null;
512
- dni: string | null;
513
529
  alternativeNames: string[];
514
530
  birthLocationId: string | null;
515
531
  residenceLocationId: string | null;
@@ -522,6 +538,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
522
538
  mail: string;
523
539
  eventId: string;
524
540
  status: "BOOKED" | "PAID" | "FREE";
541
+ seat: number | null;
542
+ dni: string;
525
543
  created_at: string;
526
544
  updated_at: string;
527
545
  }[];
@@ -541,6 +559,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
541
559
  fullName: string;
542
560
  profilePictureUrl: string | null;
543
561
  mail: string | null;
562
+ dni: string | null;
544
563
  created_at: string;
545
564
  updated_at: string;
546
565
  shortId: number;
@@ -550,13 +569,12 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
550
569
  gender: string | null;
551
570
  birthDate: string | null;
552
571
  instagram: string | null;
553
- dni: string | null;
554
572
  alternativeNames: string[];
555
573
  birthLocationId: string | null;
556
574
  residenceLocationId: string | null;
557
575
  isInTrash: boolean;
558
576
  movedToTrashDate: string | null;
559
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
577
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
560
578
  } | null;
561
579
  id: string;
562
580
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
@@ -564,6 +582,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
564
582
  mail: string;
565
583
  eventId: string;
566
584
  status: "BOOKED" | "PAID" | "FREE";
585
+ seat: number | null;
586
+ dni: string;
567
587
  created_at: string;
568
588
  updated_at: string;
569
589
  }[];
@@ -15,6 +15,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
15
15
  }>;
16
16
  fullName: z.ZodString;
17
17
  mail: z.ZodString;
18
+ dni: z.ZodString;
19
+ seat: z.ZodNullable<z.ZodNumber>;
18
20
  created_at: z.ZodDate;
19
21
  updated_at: z.ZodDate;
20
22
  }, {
@@ -83,6 +85,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
83
85
  mail: string;
84
86
  eventId: string;
85
87
  status: "BOOKED" | "PAID" | "FREE";
88
+ seat: number | null;
89
+ dni: string;
86
90
  created_at: Date;
87
91
  updated_at: Date;
88
92
  }, {
@@ -107,6 +111,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
107
111
  mail: string;
108
112
  eventId: string;
109
113
  status: "BOOKED" | "PAID" | "FREE";
114
+ seat: number | null;
115
+ dni: string;
110
116
  created_at: Date;
111
117
  updated_at: Date;
112
118
  }>, "many">;
@@ -133,6 +139,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
133
139
  mail: string;
134
140
  eventId: string;
135
141
  status: "BOOKED" | "PAID" | "FREE";
142
+ seat: number | null;
143
+ dni: string;
136
144
  created_at: Date;
137
145
  updated_at: Date;
138
146
  }[];
@@ -159,6 +167,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
159
167
  mail: string;
160
168
  eventId: string;
161
169
  status: "BOOKED" | "PAID" | "FREE";
170
+ seat: number | null;
171
+ dni: string;
162
172
  created_at: Date;
163
173
  updated_at: Date;
164
174
  }[];
@@ -179,6 +189,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
179
189
  }>;
180
190
  fullName: z.ZodString;
181
191
  mail: z.ZodString;
192
+ dni: z.ZodString;
193
+ seat: z.ZodNullable<z.ZodNumber>;
182
194
  created_at: z.ZodString;
183
195
  updated_at: z.ZodString;
184
196
  event: z.ZodObject<{
@@ -246,6 +258,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
246
258
  mail: string;
247
259
  eventId: string;
248
260
  status: "BOOKED" | "PAID" | "FREE";
261
+ seat: number | null;
262
+ dni: string;
249
263
  created_at: string;
250
264
  updated_at: string;
251
265
  }, {
@@ -270,6 +284,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
270
284
  mail: string;
271
285
  eventId: string;
272
286
  status: "BOOKED" | "PAID" | "FREE";
287
+ seat: number | null;
288
+ dni: string;
273
289
  created_at: string;
274
290
  updated_at: string;
275
291
  }>, "many">;
@@ -296,6 +312,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
296
312
  mail: string;
297
313
  eventId: string;
298
314
  status: "BOOKED" | "PAID" | "FREE";
315
+ seat: number | null;
316
+ dni: string;
299
317
  created_at: string;
300
318
  updated_at: string;
301
319
  }[];
@@ -322,6 +340,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
322
340
  mail: string;
323
341
  eventId: string;
324
342
  status: "BOOKED" | "PAID" | "FREE";
343
+ seat: number | null;
344
+ dni: string;
325
345
  created_at: string;
326
346
  updated_at: string;
327
347
  }[];
@@ -13,6 +13,8 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
13
13
  }>;
14
14
  fullName: import("zod").ZodString;
15
15
  mail: import("zod").ZodString;
16
+ dni: import("zod").ZodString;
17
+ seat: import("zod").ZodNullable<import("zod").ZodNumber>;
16
18
  created_at: import("zod").ZodDate;
17
19
  updated_at: import("zod").ZodDate;
18
20
  }, "strip", import("zod").ZodTypeAny, {
@@ -22,6 +24,8 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
22
24
  mail: string;
23
25
  eventId: string;
24
26
  status: "BOOKED" | "PAID" | "FREE";
27
+ seat: number | null;
28
+ dni: string;
25
29
  created_at: Date;
26
30
  updated_at: Date;
27
31
  }, {
@@ -31,6 +35,8 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
31
35
  mail: string;
32
36
  eventId: string;
33
37
  status: "BOOKED" | "PAID" | "FREE";
38
+ seat: number | null;
39
+ dni: string;
34
40
  created_at: Date;
35
41
  updated_at: Date;
36
42
  }>;
@@ -49,6 +55,8 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
49
55
  }>;
50
56
  fullName: import("zod").ZodString;
51
57
  mail: import("zod").ZodString;
58
+ dni: import("zod").ZodString;
59
+ seat: import("zod").ZodNullable<import("zod").ZodNumber>;
52
60
  created_at: import("zod").ZodString;
53
61
  updated_at: import("zod").ZodString;
54
62
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -58,6 +66,8 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
58
66
  mail: string;
59
67
  eventId: string;
60
68
  status: "BOOKED" | "PAID" | "FREE";
69
+ seat: number | null;
70
+ dni: string;
61
71
  created_at: string;
62
72
  updated_at: string;
63
73
  }, {
@@ -67,6 +77,8 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
67
77
  mail: string;
68
78
  eventId: string;
69
79
  status: "BOOKED" | "PAID" | "FREE";
80
+ seat: number | null;
81
+ dni: string;
70
82
  created_at: string;
71
83
  updated_at: string;
72
84
  }>>;
@@ -0,0 +1,18 @@
1
+ import z from 'zod';
2
+ export declare const sendEmailResponseSchema: z.ZodObject<{
3
+ mailId: z.ZodString;
4
+ }, "strip", z.ZodTypeAny, {
5
+ mailId: string;
6
+ }, {
7
+ mailId: string;
8
+ }>;
9
+ declare const SendEmailResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
10
+ mailId: z.ZodString;
11
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
12
+ mailId: string;
13
+ }, {
14
+ mailId: string;
15
+ }>>;
16
+ export declare class SendEmailResponseDto extends SendEmailResponseDto_base {
17
+ }
18
+ export {};
@@ -0,0 +1,15 @@
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.SendEmailResponseDto = exports.sendEmailResponseSchema = void 0;
7
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
+ const zod_1 = __importDefault(require("zod"));
9
+ exports.sendEmailResponseSchema = zod_1.default.object({
10
+ mailId: zod_1.default.string(),
11
+ });
12
+ class SendEmailResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendEmailResponseSchema) {
13
+ }
14
+ exports.SendEmailResponseDto = SendEmailResponseDto;
15
+ //# sourceMappingURL=send-email.dto.js.map
@@ -14,6 +14,8 @@ export declare const ticketSchema: z.ZodObject<{
14
14
  }>;
15
15
  fullName: z.ZodString;
16
16
  mail: z.ZodString;
17
+ dni: z.ZodString;
18
+ seat: z.ZodNullable<z.ZodNumber>;
17
19
  created_at: z.ZodDate;
18
20
  updated_at: z.ZodDate;
19
21
  }, "strip", z.ZodTypeAny, {
@@ -23,6 +25,8 @@ export declare const ticketSchema: z.ZodObject<{
23
25
  mail: string;
24
26
  eventId: string;
25
27
  status: "BOOKED" | "PAID" | "FREE";
28
+ seat: number | null;
29
+ dni: string;
26
30
  created_at: Date;
27
31
  updated_at: Date;
28
32
  }, {
@@ -32,6 +36,8 @@ export declare const ticketSchema: z.ZodObject<{
32
36
  mail: string;
33
37
  eventId: string;
34
38
  status: "BOOKED" | "PAID" | "FREE";
39
+ seat: number | null;
40
+ dni: string;
35
41
  created_at: Date;
36
42
  updated_at: Date;
37
43
  }>;
@@ -50,6 +56,8 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
50
56
  }>;
51
57
  fullName: z.ZodString;
52
58
  mail: z.ZodString;
59
+ dni: z.ZodString;
60
+ seat: z.ZodNullable<z.ZodNumber>;
53
61
  created_at: z.ZodString;
54
62
  updated_at: z.ZodString;
55
63
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -59,6 +67,8 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
59
67
  mail: string;
60
68
  eventId: string;
61
69
  status: "BOOKED" | "PAID" | "FREE";
70
+ seat: number | null;
71
+ dni: string;
62
72
  created_at: string;
63
73
  updated_at: string;
64
74
  }, {
@@ -68,6 +78,8 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
68
78
  mail: string;
69
79
  eventId: string;
70
80
  status: "BOOKED" | "PAID" | "FREE";
81
+ seat: number | null;
82
+ dni: string;
71
83
  created_at: string;
72
84
  updated_at: string;
73
85
  }>>;
@@ -20,6 +20,8 @@ exports.ticketSchema = zod_1.default.object({
20
20
  }),
21
21
  fullName: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.fullName.required')),
22
22
  mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
23
+ dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
24
+ seat: zod_1.default.number().min(1, (0, translate_1.translate)('model.ticket.seat.required')).nullable(),
23
25
  created_at: zod_1.default.date(),
24
26
  updated_at: zod_1.default.date(),
25
27
  });
@@ -63,6 +63,8 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
63
63
  }>;
64
64
  fullName: import("zod").ZodString;
65
65
  mail: import("zod").ZodString;
66
+ dni: import("zod").ZodString;
67
+ seat: import("zod").ZodNullable<import("zod").ZodNumber>;
66
68
  created_at: import("zod").ZodDate;
67
69
  updated_at: import("zod").ZodDate;
68
70
  }, "strip", import("zod").ZodTypeAny, {
@@ -72,6 +74,8 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
72
74
  mail: string;
73
75
  eventId: string;
74
76
  status: "BOOKED" | "PAID" | "FREE";
77
+ seat: number | null;
78
+ dni: string;
75
79
  created_at: Date;
76
80
  updated_at: Date;
77
81
  }, {
@@ -81,6 +85,8 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
81
85
  mail: string;
82
86
  eventId: string;
83
87
  status: "BOOKED" | "PAID" | "FREE";
88
+ seat: number | null;
89
+ dni: string;
84
90
  created_at: Date;
85
91
  updated_at: Date;
86
92
  }>;
@@ -99,6 +105,8 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
99
105
  }>;
100
106
  fullName: import("zod").ZodString;
101
107
  mail: import("zod").ZodString;
108
+ dni: import("zod").ZodString;
109
+ seat: import("zod").ZodNullable<import("zod").ZodNumber>;
102
110
  created_at: import("zod").ZodString;
103
111
  updated_at: import("zod").ZodString;
104
112
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -108,6 +116,8 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
108
116
  mail: string;
109
117
  eventId: string;
110
118
  status: "BOOKED" | "PAID" | "FREE";
119
+ seat: number | null;
120
+ dni: string;
111
121
  created_at: string;
112
122
  updated_at: string;
113
123
  }, {
@@ -117,6 +127,8 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
117
127
  mail: string;
118
128
  eventId: string;
119
129
  status: "BOOKED" | "PAID" | "FREE";
130
+ seat: number | null;
131
+ dni: string;
120
132
  created_at: string;
121
133
  updated_at: string;
122
134
  }>>;