expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.2

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 (36) hide show
  1. package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
  2. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
  3. package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
  4. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
  5. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
  6. package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
  7. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
  8. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
  9. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
  10. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
  11. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
  12. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
  13. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
  14. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
  15. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
  16. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
  17. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
  18. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
  19. package/dist/src/profile/dto/profile.dto.d.ts +3 -0
  20. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
  21. package/dist/src/schema/profile.schema.d.ts +3 -0
  22. package/dist/src/schema/profile.schema.js +1 -0
  23. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
  24. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
  25. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -0
  26. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -0
  27. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -0
  28. package/dist/types/prisma-schema/edge.js +5 -3
  29. package/dist/types/prisma-schema/index-browser.js +2 -0
  30. package/dist/types/prisma-schema/index.d.ts +118 -2
  31. package/dist/types/prisma-schema/index.js +5 -3
  32. package/dist/types/prisma-schema/package.json +1 -1
  33. package/dist/types/prisma-schema/schema.prisma +4 -0
  34. package/dist/types/prisma-schema/wasm.js +2 -0
  35. package/dist/types/schema.d.ts +20 -0
  36. package/package.json +1 -1
@@ -141,5 +141,6 @@ exports.profileSchema = zod_1.default.object({
141
141
  movedToTrashDate: zod_1.default.coerce.date().nullable(),
142
142
  created_at: zod_1.default.date(),
143
143
  updated_at: zod_1.default.date(),
144
+ referralCode: zod_1.default.string().nullable(),
144
145
  });
145
146
  //# sourceMappingURL=profile.schema.js.map
@@ -53,6 +53,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
53
53
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
54
54
  created_at: z.ZodDate;
55
55
  updated_at: z.ZodDate;
56
+ referralCode: z.ZodNullable<z.ZodString>;
56
57
  }, "strip", z.ZodTypeAny, {
57
58
  id: string;
58
59
  username: string | null;
@@ -78,6 +79,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
78
79
  residenceLocationId: string | null;
79
80
  isInTrash: boolean;
80
81
  movedToTrashDate: Date | null;
82
+ referralCode: string | null;
81
83
  }, {
82
84
  id: string;
83
85
  username: string | null;
@@ -102,6 +104,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
102
104
  residenceLocationId: string | null;
103
105
  isInTrash: boolean;
104
106
  movedToTrashDate: Date | null;
107
+ referralCode: string | null;
105
108
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
106
109
  }>, "many">;
107
110
  }, "strip", z.ZodTypeAny, {
@@ -130,6 +133,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
130
133
  residenceLocationId: string | null;
131
134
  isInTrash: boolean;
132
135
  movedToTrashDate: Date | null;
136
+ referralCode: string | null;
133
137
  }[];
134
138
  }, {
135
139
  profiles: {
@@ -156,6 +160,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
156
160
  residenceLocationId: string | null;
157
161
  isInTrash: boolean;
158
162
  movedToTrashDate: Date | null;
163
+ referralCode: string | null;
159
164
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
160
165
  }[];
161
166
  }>;
@@ -191,6 +196,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
191
196
  movedToTrashDate: z.ZodNullable<z.ZodString>;
192
197
  created_at: z.ZodString;
193
198
  updated_at: z.ZodString;
199
+ referralCode: z.ZodNullable<z.ZodString>;
194
200
  }, z.UnknownKeysParam, z.ZodTypeAny, {
195
201
  id: string;
196
202
  username: string | null;
@@ -216,6 +222,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
216
222
  residenceLocationId: string | null;
217
223
  isInTrash: boolean;
218
224
  movedToTrashDate: string | null;
225
+ referralCode: string | null;
219
226
  }, {
220
227
  id: string;
221
228
  username: string | null;
@@ -240,6 +247,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
240
247
  residenceLocationId: string | null;
241
248
  isInTrash: boolean;
242
249
  movedToTrashDate: string | null;
250
+ referralCode: string | null;
243
251
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
244
252
  }>, "many">;
245
253
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -268,6 +276,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
268
276
  residenceLocationId: string | null;
269
277
  isInTrash: boolean;
270
278
  movedToTrashDate: string | null;
279
+ referralCode: string | null;
271
280
  }[];
272
281
  }, {
273
282
  profiles: {
@@ -294,6 +303,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
294
303
  residenceLocationId: string | null;
295
304
  isInTrash: boolean;
296
305
  movedToTrashDate: string | null;
306
+ referralCode: string | null;
297
307
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
298
308
  }[];
299
309
  }>>;
@@ -53,6 +53,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
53
53
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
54
54
  created_at: z.ZodDate;
55
55
  updated_at: z.ZodDate;
56
+ referralCode: z.ZodNullable<z.ZodString>;
56
57
  }, "strip", z.ZodTypeAny, {
57
58
  id: string;
58
59
  username: string | null;
@@ -78,6 +79,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
78
79
  residenceLocationId: string | null;
79
80
  isInTrash: boolean;
80
81
  movedToTrashDate: Date | null;
82
+ referralCode: string | null;
81
83
  }, {
82
84
  id: string;
83
85
  username: string | null;
@@ -102,6 +104,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
102
104
  residenceLocationId: string | null;
103
105
  isInTrash: boolean;
104
106
  movedToTrashDate: Date | null;
107
+ referralCode: string | null;
105
108
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
106
109
  }>, "many">;
107
110
  }, "strip", z.ZodTypeAny, {
@@ -130,6 +133,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
130
133
  residenceLocationId: string | null;
131
134
  isInTrash: boolean;
132
135
  movedToTrashDate: Date | null;
136
+ referralCode: string | null;
133
137
  }[];
134
138
  }, {
135
139
  profiles: {
@@ -156,6 +160,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
156
160
  residenceLocationId: string | null;
157
161
  isInTrash: boolean;
158
162
  movedToTrashDate: Date | null;
163
+ referralCode: string | null;
159
164
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
160
165
  }[];
161
166
  }>;
@@ -191,6 +196,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
191
196
  movedToTrashDate: z.ZodNullable<z.ZodString>;
192
197
  created_at: z.ZodString;
193
198
  updated_at: z.ZodString;
199
+ referralCode: z.ZodNullable<z.ZodString>;
194
200
  }, z.UnknownKeysParam, z.ZodTypeAny, {
195
201
  id: string;
196
202
  username: string | null;
@@ -216,6 +222,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
216
222
  residenceLocationId: string | null;
217
223
  isInTrash: boolean;
218
224
  movedToTrashDate: string | null;
225
+ referralCode: string | null;
219
226
  }, {
220
227
  id: string;
221
228
  username: string | null;
@@ -240,6 +247,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
240
247
  residenceLocationId: string | null;
241
248
  isInTrash: boolean;
242
249
  movedToTrashDate: string | null;
250
+ referralCode: string | null;
243
251
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
244
252
  }>, "many">;
245
253
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -268,6 +276,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
268
276
  residenceLocationId: string | null;
269
277
  isInTrash: boolean;
270
278
  movedToTrashDate: string | null;
279
+ referralCode: string | null;
271
280
  }[];
272
281
  }, {
273
282
  profiles: {
@@ -294,6 +303,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
294
303
  residenceLocationId: string | null;
295
304
  isInTrash: boolean;
296
305
  movedToTrashDate: string | null;
306
+ referralCode: string | null;
297
307
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
298
308
  }[];
299
309
  }>>;
@@ -75,6 +75,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
75
75
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
76
76
  created_at: z.ZodDate;
77
77
  updated_at: z.ZodDate;
78
+ referralCode: z.ZodNullable<z.ZodString>;
78
79
  }, "strip", z.ZodTypeAny, {
79
80
  id: string;
80
81
  username: string | null;
@@ -100,6 +101,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
100
101
  residenceLocationId: string | null;
101
102
  isInTrash: boolean;
102
103
  movedToTrashDate: Date | null;
104
+ referralCode: string | null;
103
105
  }, {
104
106
  id: string;
105
107
  username: string | null;
@@ -124,6 +126,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
124
126
  residenceLocationId: string | null;
125
127
  isInTrash: boolean;
126
128
  movedToTrashDate: Date | null;
129
+ referralCode: string | null;
127
130
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
128
131
  }>>;
129
132
  }>, "strip", z.ZodTypeAny, {
@@ -157,6 +160,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
157
160
  residenceLocationId: string | null;
158
161
  isInTrash: boolean;
159
162
  movedToTrashDate: Date | null;
163
+ referralCode: string | null;
160
164
  } | null;
161
165
  id: string;
162
166
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -200,6 +204,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
200
204
  residenceLocationId: string | null;
201
205
  isInTrash: boolean;
202
206
  movedToTrashDate: Date | null;
207
+ referralCode: string | null;
203
208
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
204
209
  } | null;
205
210
  id: string;
@@ -247,6 +252,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
247
252
  residenceLocationId: string | null;
248
253
  isInTrash: boolean;
249
254
  movedToTrashDate: Date | null;
255
+ referralCode: string | null;
250
256
  } | null;
251
257
  id: string;
252
258
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -292,6 +298,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
292
298
  residenceLocationId: string | null;
293
299
  isInTrash: boolean;
294
300
  movedToTrashDate: Date | null;
301
+ referralCode: string | null;
295
302
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
296
303
  } | null;
297
304
  id: string;
@@ -370,6 +377,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
370
377
  movedToTrashDate: z.ZodNullable<z.ZodString>;
371
378
  created_at: z.ZodString;
372
379
  updated_at: z.ZodString;
380
+ referralCode: z.ZodNullable<z.ZodString>;
373
381
  }, z.UnknownKeysParam, z.ZodTypeAny, {
374
382
  id: string;
375
383
  username: string | null;
@@ -395,6 +403,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
395
403
  residenceLocationId: string | null;
396
404
  isInTrash: boolean;
397
405
  movedToTrashDate: string | null;
406
+ referralCode: string | null;
398
407
  }, {
399
408
  id: string;
400
409
  username: string | null;
@@ -419,6 +428,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
419
428
  residenceLocationId: string | null;
420
429
  isInTrash: boolean;
421
430
  movedToTrashDate: string | null;
431
+ referralCode: string | null;
422
432
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
423
433
  }>>;
424
434
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -452,6 +462,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
452
462
  residenceLocationId: string | null;
453
463
  isInTrash: boolean;
454
464
  movedToTrashDate: string | null;
465
+ referralCode: string | null;
455
466
  } | null;
456
467
  id: string;
457
468
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -495,6 +506,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
495
506
  residenceLocationId: string | null;
496
507
  isInTrash: boolean;
497
508
  movedToTrashDate: string | null;
509
+ referralCode: string | null;
498
510
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
499
511
  } | null;
500
512
  id: string;
@@ -542,6 +554,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
542
554
  residenceLocationId: string | null;
543
555
  isInTrash: boolean;
544
556
  movedToTrashDate: string | null;
557
+ referralCode: string | null;
545
558
  } | null;
546
559
  id: string;
547
560
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -587,6 +600,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
587
600
  residenceLocationId: string | null;
588
601
  isInTrash: boolean;
589
602
  movedToTrashDate: string | null;
603
+ referralCode: string | null;
590
604
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
591
605
  } | null;
592
606
  id: string;
@@ -101,6 +101,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
101
101
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
102
102
  created_at: z.ZodDate;
103
103
  updated_at: z.ZodDate;
104
+ referralCode: z.ZodNullable<z.ZodString>;
104
105
  }, "strip", z.ZodTypeAny, {
105
106
  id: string;
106
107
  username: string | null;
@@ -126,6 +127,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
126
127
  residenceLocationId: string | null;
127
128
  isInTrash: boolean;
128
129
  movedToTrashDate: Date | null;
130
+ referralCode: string | null;
129
131
  }, {
130
132
  id: string;
131
133
  username: string | null;
@@ -150,6 +152,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
150
152
  residenceLocationId: string | null;
151
153
  isInTrash: boolean;
152
154
  movedToTrashDate: Date | null;
155
+ referralCode: string | null;
153
156
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
154
157
  }>>;
155
158
  profileId: z.ZodNullable<z.ZodString>;
@@ -197,6 +200,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
197
200
  residenceLocationId: string | null;
198
201
  isInTrash: boolean;
199
202
  movedToTrashDate: Date | null;
203
+ referralCode: string | null;
200
204
  } | null;
201
205
  id: string;
202
206
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -254,6 +258,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
254
258
  residenceLocationId: string | null;
255
259
  isInTrash: boolean;
256
260
  movedToTrashDate: Date | null;
261
+ referralCode: string | null;
257
262
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
258
263
  } | null;
259
264
  id: string;
@@ -315,6 +320,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
315
320
  residenceLocationId: string | null;
316
321
  isInTrash: boolean;
317
322
  movedToTrashDate: Date | null;
323
+ referralCode: string | null;
318
324
  } | null;
319
325
  id: string;
320
326
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -374,6 +380,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
374
380
  residenceLocationId: string | null;
375
381
  isInTrash: boolean;
376
382
  movedToTrashDate: Date | null;
383
+ referralCode: string | null;
377
384
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
378
385
  } | null;
379
386
  id: string;
@@ -492,6 +499,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
492
499
  movedToTrashDate: z.ZodNullable<z.ZodString>;
493
500
  created_at: z.ZodString;
494
501
  updated_at: z.ZodString;
502
+ referralCode: z.ZodNullable<z.ZodString>;
495
503
  }, z.UnknownKeysParam, z.ZodTypeAny, {
496
504
  id: string;
497
505
  username: string | null;
@@ -517,6 +525,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
517
525
  residenceLocationId: string | null;
518
526
  isInTrash: boolean;
519
527
  movedToTrashDate: string | null;
528
+ referralCode: string | null;
520
529
  }, {
521
530
  id: string;
522
531
  username: string | null;
@@ -541,6 +550,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
541
550
  residenceLocationId: string | null;
542
551
  isInTrash: boolean;
543
552
  movedToTrashDate: string | null;
553
+ referralCode: string | null;
544
554
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
545
555
  }>>;
546
556
  profileId: z.ZodNullable<z.ZodString>;
@@ -588,6 +598,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
588
598
  residenceLocationId: string | null;
589
599
  isInTrash: boolean;
590
600
  movedToTrashDate: string | null;
601
+ referralCode: string | null;
591
602
  } | null;
592
603
  id: string;
593
604
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -645,6 +656,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
645
656
  residenceLocationId: string | null;
646
657
  isInTrash: boolean;
647
658
  movedToTrashDate: string | null;
659
+ referralCode: string | null;
648
660
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
649
661
  } | null;
650
662
  id: string;
@@ -706,6 +718,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
706
718
  residenceLocationId: string | null;
707
719
  isInTrash: boolean;
708
720
  movedToTrashDate: string | null;
721
+ referralCode: string | null;
709
722
  } | null;
710
723
  id: string;
711
724
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -765,6 +778,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
765
778
  residenceLocationId: string | null;
766
779
  isInTrash: boolean;
767
780
  movedToTrashDate: string | null;
781
+ referralCode: string | null;
768
782
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
769
783
  } | null;
770
784
  id: string;
@@ -75,6 +75,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
75
75
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
76
76
  created_at: z.ZodDate;
77
77
  updated_at: z.ZodDate;
78
+ referralCode: z.ZodNullable<z.ZodString>;
78
79
  }, "strip", z.ZodTypeAny, {
79
80
  id: string;
80
81
  username: string | null;
@@ -100,6 +101,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
100
101
  residenceLocationId: string | null;
101
102
  isInTrash: boolean;
102
103
  movedToTrashDate: Date | null;
104
+ referralCode: string | null;
103
105
  }, {
104
106
  id: string;
105
107
  username: string | null;
@@ -124,6 +126,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
124
126
  residenceLocationId: string | null;
125
127
  isInTrash: boolean;
126
128
  movedToTrashDate: Date | null;
129
+ referralCode: string | null;
127
130
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
128
131
  }>>;
129
132
  }>, "strip", z.ZodTypeAny, {
@@ -157,6 +160,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
157
160
  residenceLocationId: string | null;
158
161
  isInTrash: boolean;
159
162
  movedToTrashDate: Date | null;
163
+ referralCode: string | null;
160
164
  } | null;
161
165
  id: string;
162
166
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -200,6 +204,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
200
204
  residenceLocationId: string | null;
201
205
  isInTrash: boolean;
202
206
  movedToTrashDate: Date | null;
207
+ referralCode: string | null;
203
208
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
204
209
  } | null;
205
210
  id: string;
@@ -247,6 +252,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
247
252
  residenceLocationId: string | null;
248
253
  isInTrash: boolean;
249
254
  movedToTrashDate: Date | null;
255
+ referralCode: string | null;
250
256
  } | null;
251
257
  id: string;
252
258
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -292,6 +298,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
292
298
  residenceLocationId: string | null;
293
299
  isInTrash: boolean;
294
300
  movedToTrashDate: Date | null;
301
+ referralCode: string | null;
295
302
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
296
303
  } | null;
297
304
  id: string;
@@ -370,6 +377,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
370
377
  movedToTrashDate: z.ZodNullable<z.ZodString>;
371
378
  created_at: z.ZodString;
372
379
  updated_at: z.ZodString;
380
+ referralCode: z.ZodNullable<z.ZodString>;
373
381
  }, z.UnknownKeysParam, z.ZodTypeAny, {
374
382
  id: string;
375
383
  username: string | null;
@@ -395,6 +403,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
395
403
  residenceLocationId: string | null;
396
404
  isInTrash: boolean;
397
405
  movedToTrashDate: string | null;
406
+ referralCode: string | null;
398
407
  }, {
399
408
  id: string;
400
409
  username: string | null;
@@ -419,6 +428,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
419
428
  residenceLocationId: string | null;
420
429
  isInTrash: boolean;
421
430
  movedToTrashDate: string | null;
431
+ referralCode: string | null;
422
432
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
423
433
  }>>;
424
434
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -452,6 +462,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
452
462
  residenceLocationId: string | null;
453
463
  isInTrash: boolean;
454
464
  movedToTrashDate: string | null;
465
+ referralCode: string | null;
455
466
  } | null;
456
467
  id: string;
457
468
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -495,6 +506,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
495
506
  residenceLocationId: string | null;
496
507
  isInTrash: boolean;
497
508
  movedToTrashDate: string | null;
509
+ referralCode: string | null;
498
510
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
499
511
  } | null;
500
512
  id: string;
@@ -542,6 +554,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
542
554
  residenceLocationId: string | null;
543
555
  isInTrash: boolean;
544
556
  movedToTrashDate: string | null;
557
+ referralCode: string | null;
545
558
  } | null;
546
559
  id: string;
547
560
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
@@ -587,6 +600,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
587
600
  residenceLocationId: string | null;
588
601
  isInTrash: boolean;
589
602
  movedToTrashDate: string | null;
603
+ referralCode: string | null;
590
604
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
591
605
  } | null;
592
606
  id: string;