expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.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 (51) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -0
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
  4. package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
  5. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
  6. package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
  7. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
  8. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
  9. package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
  10. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
  11. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
  12. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
  13. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
  14. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
  15. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
  16. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
  17. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
  18. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
  19. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
  20. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
  21. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
  22. package/dist/src/profile/dto/profile.dto.d.ts +3 -0
  23. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
  24. package/dist/src/schema/profile.schema.d.ts +3 -0
  25. package/dist/src/schema/profile.schema.js +1 -0
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
  28. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +7 -0
  29. package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
  30. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
  31. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
  32. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
  33. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
  34. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
  35. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
  36. package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
  37. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
  38. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
  39. package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
  40. package/dist/src/ticket/dto/ticket.dto.js +1 -0
  41. package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
  42. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
  43. package/dist/types/prisma-schema/edge.js +6 -3
  44. package/dist/types/prisma-schema/index-browser.js +3 -0
  45. package/dist/types/prisma-schema/index.d.ts +167 -3
  46. package/dist/types/prisma-schema/index.js +6 -3
  47. package/dist/types/prisma-schema/package.json +1 -1
  48. package/dist/types/prisma-schema/schema.prisma +6 -0
  49. package/dist/types/prisma-schema/wasm.js +3 -0
  50. package/dist/types/schema.d.ts +33 -0
  51. package/package.json +1 -1
@@ -15,6 +15,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
15
15
  scanned: z.ZodBoolean;
16
16
  scannedAt: z.ZodNullable<z.ZodDate>;
17
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
18
+ referralCode: z.ZodNullable<z.ZodString>;
18
19
  created_at: z.ZodDate;
19
20
  updated_at: z.ZodDate;
20
21
  }, {
@@ -75,6 +76,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
75
76
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
76
77
  created_at: z.ZodDate;
77
78
  updated_at: z.ZodDate;
79
+ referralCode: z.ZodNullable<z.ZodString>;
78
80
  }, "strip", z.ZodTypeAny, {
79
81
  id: string;
80
82
  username: string | null;
@@ -100,6 +102,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
100
102
  residenceLocationId: string | null;
101
103
  isInTrash: boolean;
102
104
  movedToTrashDate: Date | null;
105
+ referralCode: string | null;
103
106
  }, {
104
107
  id: string;
105
108
  username: string | null;
@@ -124,6 +127,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
124
127
  residenceLocationId: string | null;
125
128
  isInTrash: boolean;
126
129
  movedToTrashDate: Date | null;
130
+ referralCode: string | null;
127
131
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
128
132
  }>>;
129
133
  }>, "strip", z.ZodTypeAny, {
@@ -157,6 +161,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
157
161
  residenceLocationId: string | null;
158
162
  isInTrash: boolean;
159
163
  movedToTrashDate: Date | null;
164
+ referralCode: string | null;
160
165
  } | null;
161
166
  id: string;
162
167
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -167,6 +172,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
167
172
  seat: number | null;
168
173
  created_at: Date;
169
174
  updated_at: Date;
175
+ referralCode: string | null;
170
176
  scanned: boolean;
171
177
  scannedAt: Date | null;
172
178
  ticketGroupId: string | null;
@@ -200,6 +206,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
200
206
  residenceLocationId: string | null;
201
207
  isInTrash: boolean;
202
208
  movedToTrashDate: Date | null;
209
+ referralCode: string | null;
203
210
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
204
211
  } | null;
205
212
  id: string;
@@ -211,6 +218,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
211
218
  seat: number | null;
212
219
  created_at: Date;
213
220
  updated_at: Date;
221
+ referralCode: string | null;
214
222
  scanned: boolean;
215
223
  scannedAt: Date | null;
216
224
  ticketGroupId: string | null;
@@ -247,6 +255,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
247
255
  residenceLocationId: string | null;
248
256
  isInTrash: boolean;
249
257
  movedToTrashDate: Date | null;
258
+ referralCode: string | null;
250
259
  } | null;
251
260
  id: string;
252
261
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -257,6 +266,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
257
266
  seat: number | null;
258
267
  created_at: Date;
259
268
  updated_at: Date;
269
+ referralCode: string | null;
260
270
  scanned: boolean;
261
271
  scannedAt: Date | null;
262
272
  ticketGroupId: string | null;
@@ -292,6 +302,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
292
302
  residenceLocationId: string | null;
293
303
  isInTrash: boolean;
294
304
  movedToTrashDate: Date | null;
305
+ referralCode: string | null;
295
306
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
296
307
  } | null;
297
308
  id: string;
@@ -303,6 +314,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
303
314
  seat: number | null;
304
315
  created_at: Date;
305
316
  updated_at: Date;
317
+ referralCode: string | null;
306
318
  scanned: boolean;
307
319
  scannedAt: Date | null;
308
320
  ticketGroupId: string | null;
@@ -324,6 +336,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
324
336
  scanned: z.ZodBoolean;
325
337
  scannedAt: z.ZodNullable<z.ZodString>;
326
338
  ticketGroupId: z.ZodNullable<z.ZodString>;
339
+ referralCode: z.ZodNullable<z.ZodString>;
327
340
  created_at: z.ZodString;
328
341
  updated_at: z.ZodString;
329
342
  event: z.ZodObject<{
@@ -370,6 +383,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
370
383
  movedToTrashDate: z.ZodNullable<z.ZodString>;
371
384
  created_at: z.ZodString;
372
385
  updated_at: z.ZodString;
386
+ referralCode: z.ZodNullable<z.ZodString>;
373
387
  }, z.UnknownKeysParam, z.ZodTypeAny, {
374
388
  id: string;
375
389
  username: string | null;
@@ -395,6 +409,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
395
409
  residenceLocationId: string | null;
396
410
  isInTrash: boolean;
397
411
  movedToTrashDate: string | null;
412
+ referralCode: string | null;
398
413
  }, {
399
414
  id: string;
400
415
  username: string | null;
@@ -419,6 +434,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
419
434
  residenceLocationId: string | null;
420
435
  isInTrash: boolean;
421
436
  movedToTrashDate: string | null;
437
+ referralCode: string | null;
422
438
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
423
439
  }>>;
424
440
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -452,6 +468,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
452
468
  residenceLocationId: string | null;
453
469
  isInTrash: boolean;
454
470
  movedToTrashDate: string | null;
471
+ referralCode: string | null;
455
472
  } | null;
456
473
  id: string;
457
474
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -462,6 +479,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
462
479
  seat: number | null;
463
480
  created_at: string;
464
481
  updated_at: string;
482
+ referralCode: string | null;
465
483
  scanned: boolean;
466
484
  scannedAt: string | null;
467
485
  ticketGroupId: string | null;
@@ -495,6 +513,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
495
513
  residenceLocationId: string | null;
496
514
  isInTrash: boolean;
497
515
  movedToTrashDate: string | null;
516
+ referralCode: string | null;
498
517
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
499
518
  } | null;
500
519
  id: string;
@@ -506,6 +525,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
506
525
  seat: number | null;
507
526
  created_at: string;
508
527
  updated_at: string;
528
+ referralCode: string | null;
509
529
  scanned: boolean;
510
530
  scannedAt: string | null;
511
531
  ticketGroupId: string | null;
@@ -542,6 +562,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
542
562
  residenceLocationId: string | null;
543
563
  isInTrash: boolean;
544
564
  movedToTrashDate: string | null;
565
+ referralCode: string | null;
545
566
  } | null;
546
567
  id: string;
547
568
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -552,6 +573,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
552
573
  seat: number | null;
553
574
  created_at: string;
554
575
  updated_at: string;
576
+ referralCode: string | null;
555
577
  scanned: boolean;
556
578
  scannedAt: string | null;
557
579
  ticketGroupId: string | null;
@@ -587,6 +609,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
587
609
  residenceLocationId: string | null;
588
610
  isInTrash: boolean;
589
611
  movedToTrashDate: string | null;
612
+ referralCode: string | null;
590
613
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
591
614
  } | null;
592
615
  id: string;
@@ -598,6 +621,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
598
621
  seat: number | null;
599
622
  created_at: string;
600
623
  updated_at: string;
624
+ referralCode: string | null;
601
625
  scanned: boolean;
602
626
  scannedAt: string | null;
603
627
  ticketGroupId: string | null;
@@ -15,6 +15,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
15
15
  scanned: z.ZodBoolean;
16
16
  scannedAt: z.ZodNullable<z.ZodDate>;
17
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
18
+ referralCode: z.ZodNullable<z.ZodString>;
18
19
  created_at: z.ZodDate;
19
20
  updated_at: z.ZodDate;
20
21
  }, {
@@ -101,6 +102,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
101
102
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
102
103
  created_at: z.ZodDate;
103
104
  updated_at: z.ZodDate;
105
+ referralCode: z.ZodNullable<z.ZodString>;
104
106
  }, "strip", z.ZodTypeAny, {
105
107
  id: string;
106
108
  username: string | null;
@@ -126,6 +128,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
126
128
  residenceLocationId: string | null;
127
129
  isInTrash: boolean;
128
130
  movedToTrashDate: Date | null;
131
+ referralCode: string | null;
129
132
  }, {
130
133
  id: string;
131
134
  username: string | null;
@@ -150,6 +153,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
150
153
  residenceLocationId: string | null;
151
154
  isInTrash: boolean;
152
155
  movedToTrashDate: Date | null;
156
+ referralCode: string | null;
153
157
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
154
158
  }>>;
155
159
  profileId: z.ZodNullable<z.ZodString>;
@@ -197,6 +201,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
197
201
  residenceLocationId: string | null;
198
202
  isInTrash: boolean;
199
203
  movedToTrashDate: Date | null;
204
+ referralCode: string | null;
200
205
  } | null;
201
206
  id: string;
202
207
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -208,6 +213,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
208
213
  created_at: Date;
209
214
  updated_at: Date;
210
215
  profileId: string | null;
216
+ referralCode: string | null;
211
217
  scanned: boolean;
212
218
  scannedAt: Date | null;
213
219
  ticketGroupId: string | null;
@@ -254,6 +260,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
254
260
  residenceLocationId: string | null;
255
261
  isInTrash: boolean;
256
262
  movedToTrashDate: Date | null;
263
+ referralCode: string | null;
257
264
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
258
265
  } | null;
259
266
  id: string;
@@ -266,6 +273,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
266
273
  created_at: Date;
267
274
  updated_at: Date;
268
275
  profileId: string | null;
276
+ referralCode: string | null;
269
277
  scanned: boolean;
270
278
  scannedAt: Date | null;
271
279
  ticketGroupId: string | null;
@@ -315,6 +323,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
315
323
  residenceLocationId: string | null;
316
324
  isInTrash: boolean;
317
325
  movedToTrashDate: Date | null;
326
+ referralCode: string | null;
318
327
  } | null;
319
328
  id: string;
320
329
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -326,6 +335,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
326
335
  created_at: Date;
327
336
  updated_at: Date;
328
337
  profileId: string | null;
338
+ referralCode: string | null;
329
339
  scanned: boolean;
330
340
  scannedAt: Date | null;
331
341
  ticketGroupId: string | null;
@@ -374,6 +384,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
374
384
  residenceLocationId: string | null;
375
385
  isInTrash: boolean;
376
386
  movedToTrashDate: Date | null;
387
+ referralCode: string | null;
377
388
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
378
389
  } | null;
379
390
  id: string;
@@ -386,6 +397,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
386
397
  created_at: Date;
387
398
  updated_at: Date;
388
399
  profileId: string | null;
400
+ referralCode: string | null;
389
401
  scanned: boolean;
390
402
  scannedAt: Date | null;
391
403
  ticketGroupId: string | null;
@@ -407,6 +419,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
407
419
  scanned: z.ZodBoolean;
408
420
  scannedAt: z.ZodNullable<z.ZodString>;
409
421
  ticketGroupId: z.ZodNullable<z.ZodString>;
422
+ referralCode: z.ZodNullable<z.ZodString>;
410
423
  created_at: z.ZodString;
411
424
  updated_at: z.ZodString;
412
425
  event: z.ZodObject<{
@@ -492,6 +505,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
492
505
  movedToTrashDate: z.ZodNullable<z.ZodString>;
493
506
  created_at: z.ZodString;
494
507
  updated_at: z.ZodString;
508
+ referralCode: z.ZodNullable<z.ZodString>;
495
509
  }, z.UnknownKeysParam, z.ZodTypeAny, {
496
510
  id: string;
497
511
  username: string | null;
@@ -517,6 +531,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
517
531
  residenceLocationId: string | null;
518
532
  isInTrash: boolean;
519
533
  movedToTrashDate: string | null;
534
+ referralCode: string | null;
520
535
  }, {
521
536
  id: string;
522
537
  username: string | null;
@@ -541,6 +556,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
541
556
  residenceLocationId: string | null;
542
557
  isInTrash: boolean;
543
558
  movedToTrashDate: string | null;
559
+ referralCode: string | null;
544
560
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
545
561
  }>>;
546
562
  profileId: z.ZodNullable<z.ZodString>;
@@ -588,6 +604,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
588
604
  residenceLocationId: string | null;
589
605
  isInTrash: boolean;
590
606
  movedToTrashDate: string | null;
607
+ referralCode: string | null;
591
608
  } | null;
592
609
  id: string;
593
610
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -599,6 +616,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
599
616
  created_at: string;
600
617
  updated_at: string;
601
618
  profileId: string | null;
619
+ referralCode: string | null;
602
620
  scanned: boolean;
603
621
  scannedAt: string | null;
604
622
  ticketGroupId: string | null;
@@ -645,6 +663,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
645
663
  residenceLocationId: string | null;
646
664
  isInTrash: boolean;
647
665
  movedToTrashDate: string | null;
666
+ referralCode: string | null;
648
667
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
649
668
  } | null;
650
669
  id: string;
@@ -657,6 +676,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
657
676
  created_at: string;
658
677
  updated_at: string;
659
678
  profileId: string | null;
679
+ referralCode: string | null;
660
680
  scanned: boolean;
661
681
  scannedAt: string | null;
662
682
  ticketGroupId: string | null;
@@ -706,6 +726,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
706
726
  residenceLocationId: string | null;
707
727
  isInTrash: boolean;
708
728
  movedToTrashDate: string | null;
729
+ referralCode: string | null;
709
730
  } | null;
710
731
  id: string;
711
732
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -717,6 +738,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
717
738
  created_at: string;
718
739
  updated_at: string;
719
740
  profileId: string | null;
741
+ referralCode: string | null;
720
742
  scanned: boolean;
721
743
  scannedAt: string | null;
722
744
  ticketGroupId: string | null;
@@ -765,6 +787,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
765
787
  residenceLocationId: string | null;
766
788
  isInTrash: boolean;
767
789
  movedToTrashDate: string | null;
790
+ referralCode: string | null;
768
791
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
769
792
  } | null;
770
793
  id: string;
@@ -777,6 +800,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
777
800
  created_at: string;
778
801
  updated_at: string;
779
802
  profileId: string | null;
803
+ referralCode: string | null;
780
804
  scanned: boolean;
781
805
  scannedAt: string | null;
782
806
  ticketGroupId: string | null;
@@ -15,6 +15,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
15
15
  scanned: z.ZodBoolean;
16
16
  scannedAt: z.ZodNullable<z.ZodDate>;
17
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
18
+ referralCode: z.ZodNullable<z.ZodString>;
18
19
  created_at: z.ZodDate;
19
20
  updated_at: z.ZodDate;
20
21
  }, {
@@ -75,6 +76,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
75
76
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
76
77
  created_at: z.ZodDate;
77
78
  updated_at: z.ZodDate;
79
+ referralCode: z.ZodNullable<z.ZodString>;
78
80
  }, "strip", z.ZodTypeAny, {
79
81
  id: string;
80
82
  username: string | null;
@@ -100,6 +102,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
100
102
  residenceLocationId: string | null;
101
103
  isInTrash: boolean;
102
104
  movedToTrashDate: Date | null;
105
+ referralCode: string | null;
103
106
  }, {
104
107
  id: string;
105
108
  username: string | null;
@@ -124,6 +127,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
124
127
  residenceLocationId: string | null;
125
128
  isInTrash: boolean;
126
129
  movedToTrashDate: Date | null;
130
+ referralCode: string | null;
127
131
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
128
132
  }>>;
129
133
  }>, "strip", z.ZodTypeAny, {
@@ -157,6 +161,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
157
161
  residenceLocationId: string | null;
158
162
  isInTrash: boolean;
159
163
  movedToTrashDate: Date | null;
164
+ referralCode: string | null;
160
165
  } | null;
161
166
  id: string;
162
167
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -167,6 +172,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
167
172
  seat: number | null;
168
173
  created_at: Date;
169
174
  updated_at: Date;
175
+ referralCode: string | null;
170
176
  scanned: boolean;
171
177
  scannedAt: Date | null;
172
178
  ticketGroupId: string | null;
@@ -200,6 +206,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
200
206
  residenceLocationId: string | null;
201
207
  isInTrash: boolean;
202
208
  movedToTrashDate: Date | null;
209
+ referralCode: string | null;
203
210
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
204
211
  } | null;
205
212
  id: string;
@@ -211,6 +218,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
211
218
  seat: number | null;
212
219
  created_at: Date;
213
220
  updated_at: Date;
221
+ referralCode: string | null;
214
222
  scanned: boolean;
215
223
  scannedAt: Date | null;
216
224
  ticketGroupId: string | null;
@@ -247,6 +255,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
247
255
  residenceLocationId: string | null;
248
256
  isInTrash: boolean;
249
257
  movedToTrashDate: Date | null;
258
+ referralCode: string | null;
250
259
  } | null;
251
260
  id: string;
252
261
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -257,6 +266,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
257
266
  seat: number | null;
258
267
  created_at: Date;
259
268
  updated_at: Date;
269
+ referralCode: string | null;
260
270
  scanned: boolean;
261
271
  scannedAt: Date | null;
262
272
  ticketGroupId: string | null;
@@ -292,6 +302,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
292
302
  residenceLocationId: string | null;
293
303
  isInTrash: boolean;
294
304
  movedToTrashDate: Date | null;
305
+ referralCode: string | null;
295
306
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
296
307
  } | null;
297
308
  id: string;
@@ -303,6 +314,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
303
314
  seat: number | null;
304
315
  created_at: Date;
305
316
  updated_at: Date;
317
+ referralCode: string | null;
306
318
  scanned: boolean;
307
319
  scannedAt: Date | null;
308
320
  ticketGroupId: string | null;
@@ -324,6 +336,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
324
336
  scanned: z.ZodBoolean;
325
337
  scannedAt: z.ZodNullable<z.ZodString>;
326
338
  ticketGroupId: z.ZodNullable<z.ZodString>;
339
+ referralCode: z.ZodNullable<z.ZodString>;
327
340
  created_at: z.ZodString;
328
341
  updated_at: z.ZodString;
329
342
  event: z.ZodObject<{
@@ -370,6 +383,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
370
383
  movedToTrashDate: z.ZodNullable<z.ZodString>;
371
384
  created_at: z.ZodString;
372
385
  updated_at: z.ZodString;
386
+ referralCode: z.ZodNullable<z.ZodString>;
373
387
  }, z.UnknownKeysParam, z.ZodTypeAny, {
374
388
  id: string;
375
389
  username: string | null;
@@ -395,6 +409,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
395
409
  residenceLocationId: string | null;
396
410
  isInTrash: boolean;
397
411
  movedToTrashDate: string | null;
412
+ referralCode: string | null;
398
413
  }, {
399
414
  id: string;
400
415
  username: string | null;
@@ -419,6 +434,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
419
434
  residenceLocationId: string | null;
420
435
  isInTrash: boolean;
421
436
  movedToTrashDate: string | null;
437
+ referralCode: string | null;
422
438
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
423
439
  }>>;
424
440
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -452,6 +468,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
452
468
  residenceLocationId: string | null;
453
469
  isInTrash: boolean;
454
470
  movedToTrashDate: string | null;
471
+ referralCode: string | null;
455
472
  } | null;
456
473
  id: string;
457
474
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -462,6 +479,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
462
479
  seat: number | null;
463
480
  created_at: string;
464
481
  updated_at: string;
482
+ referralCode: string | null;
465
483
  scanned: boolean;
466
484
  scannedAt: string | null;
467
485
  ticketGroupId: string | null;
@@ -495,6 +513,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
495
513
  residenceLocationId: string | null;
496
514
  isInTrash: boolean;
497
515
  movedToTrashDate: string | null;
516
+ referralCode: string | null;
498
517
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
499
518
  } | null;
500
519
  id: string;
@@ -506,6 +525,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
506
525
  seat: number | null;
507
526
  created_at: string;
508
527
  updated_at: string;
528
+ referralCode: string | null;
509
529
  scanned: boolean;
510
530
  scannedAt: string | null;
511
531
  ticketGroupId: string | null;
@@ -542,6 +562,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
542
562
  residenceLocationId: string | null;
543
563
  isInTrash: boolean;
544
564
  movedToTrashDate: string | null;
565
+ referralCode: string | null;
545
566
  } | null;
546
567
  id: string;
547
568
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -552,6 +573,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
552
573
  seat: number | null;
553
574
  created_at: string;
554
575
  updated_at: string;
576
+ referralCode: string | null;
555
577
  scanned: boolean;
556
578
  scannedAt: string | null;
557
579
  ticketGroupId: string | null;
@@ -587,6 +609,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
587
609
  residenceLocationId: string | null;
588
610
  isInTrash: boolean;
589
611
  movedToTrashDate: string | null;
612
+ referralCode: string | null;
590
613
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
591
614
  } | null;
592
615
  id: string;
@@ -598,6 +621,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
598
621
  seat: number | null;
599
622
  created_at: string;
600
623
  updated_at: string;
624
+ referralCode: string | null;
601
625
  scanned: boolean;
602
626
  scannedAt: string | null;
603
627
  ticketGroupId: string | null;
@@ -15,6 +15,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
15
15
  scanned: z.ZodBoolean;
16
16
  scannedAt: z.ZodNullable<z.ZodDate>;
17
17
  ticketGroupId: z.ZodNullable<z.ZodString>;
18
+ referralCode: z.ZodNullable<z.ZodString>;
18
19
  created_at: z.ZodDate;
19
20
  updated_at: z.ZodDate;
20
21
  }, {
@@ -98,6 +99,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
98
99
  seat: number | null;
99
100
  created_at: Date;
100
101
  updated_at: Date;
102
+ referralCode: string | null;
101
103
  scanned: boolean;
102
104
  scannedAt: Date | null;
103
105
  ticketGroupId: string | null;
@@ -129,6 +131,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
129
131
  seat: number | null;
130
132
  created_at: Date;
131
133
  updated_at: Date;
134
+ referralCode: string | null;
132
135
  scanned: boolean;
133
136
  scannedAt: Date | null;
134
137
  ticketGroupId: string | null;
@@ -162,6 +165,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
162
165
  seat: number | null;
163
166
  created_at: Date;
164
167
  updated_at: Date;
168
+ referralCode: string | null;
165
169
  scanned: boolean;
166
170
  scannedAt: Date | null;
167
171
  ticketGroupId: string | null;
@@ -195,6 +199,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
195
199
  seat: number | null;
196
200
  created_at: Date;
197
201
  updated_at: Date;
202
+ referralCode: string | null;
198
203
  scanned: boolean;
199
204
  scannedAt: Date | null;
200
205
  ticketGroupId: string | null;
@@ -216,6 +221,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
216
221
  scanned: z.ZodBoolean;
217
222
  scannedAt: z.ZodNullable<z.ZodString>;
218
223
  ticketGroupId: z.ZodNullable<z.ZodString>;
224
+ referralCode: z.ZodNullable<z.ZodString>;
219
225
  created_at: z.ZodString;
220
226
  updated_at: z.ZodString;
221
227
  event: z.ZodObject<{
@@ -298,6 +304,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
298
304
  seat: number | null;
299
305
  created_at: string;
300
306
  updated_at: string;
307
+ referralCode: string | null;
301
308
  scanned: boolean;
302
309
  scannedAt: string | null;
303
310
  ticketGroupId: string | null;
@@ -329,6 +336,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
329
336
  seat: number | null;
330
337
  created_at: string;
331
338
  updated_at: string;
339
+ referralCode: string | null;
332
340
  scanned: boolean;
333
341
  scannedAt: string | null;
334
342
  ticketGroupId: string | null;
@@ -362,6 +370,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
362
370
  seat: number | null;
363
371
  created_at: string;
364
372
  updated_at: string;
373
+ referralCode: string | null;
365
374
  scanned: boolean;
366
375
  scannedAt: string | null;
367
376
  ticketGroupId: string | null;
@@ -395,6 +404,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
395
404
  seat: number | null;
396
405
  created_at: string;
397
406
  updated_at: string;
407
+ referralCode: string | null;
398
408
  scanned: boolean;
399
409
  scannedAt: string | null;
400
410
  ticketGroupId: string | null;
@@ -13,6 +13,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
13
13
  scanned: import("zod").ZodBoolean;
14
14
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
15
15
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
16
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
16
17
  created_at: import("zod").ZodDate;
17
18
  updated_at: import("zod").ZodDate;
18
19
  }, "strip", import("zod").ZodTypeAny, {
@@ -25,6 +26,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
25
26
  seat: number | null;
26
27
  created_at: Date;
27
28
  updated_at: Date;
29
+ referralCode: string | null;
28
30
  scanned: boolean;
29
31
  scannedAt: Date | null;
30
32
  ticketGroupId: string | null;
@@ -38,6 +40,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
38
40
  seat: number | null;
39
41
  created_at: Date;
40
42
  updated_at: Date;
43
+ referralCode: string | null;
41
44
  scanned: boolean;
42
45
  scannedAt: Date | null;
43
46
  ticketGroupId: string | null;
@@ -57,6 +60,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
57
60
  scanned: import("zod").ZodBoolean;
58
61
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
59
62
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
63
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
60
64
  created_at: import("zod").ZodString;
61
65
  updated_at: import("zod").ZodString;
62
66
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -69,6 +73,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
69
73
  seat: number | null;
70
74
  created_at: string;
71
75
  updated_at: string;
76
+ referralCode: string | null;
72
77
  scanned: boolean;
73
78
  scannedAt: string | null;
74
79
  ticketGroupId: string | null;
@@ -82,6 +87,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
82
87
  seat: number | null;
83
88
  created_at: string;
84
89
  updated_at: string;
90
+ referralCode: string | null;
85
91
  scanned: boolean;
86
92
  scannedAt: string | null;
87
93
  ticketGroupId: string | null;