expo-backend-types 0.53.0 → 0.54.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.
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +10 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.js +15 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.js +15 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +17 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +17 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +605 -26
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +10 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +120 -0
- package/package.json +2 -1
@@ -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.ZodString;
|
104
106
|
}, "strip", z.ZodTypeAny, {
|
105
107
|
id: string;
|
106
108
|
username: string | null;
|
@@ -114,6 +116,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
114
116
|
dni: string | null;
|
115
117
|
created_at: Date;
|
116
118
|
updated_at: Date;
|
119
|
+
referralCode: string;
|
117
120
|
shortId: number;
|
118
121
|
firstTimeMiExpo: boolean;
|
119
122
|
isPhoneVerified: boolean;
|
@@ -138,6 +141,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
138
141
|
dni: string | null;
|
139
142
|
created_at: Date;
|
140
143
|
updated_at: Date;
|
144
|
+
referralCode: string;
|
141
145
|
shortId: number;
|
142
146
|
firstTimeMiExpo: boolean;
|
143
147
|
isPhoneVerified: boolean;
|
@@ -185,6 +189,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
185
189
|
dni: string | null;
|
186
190
|
created_at: Date;
|
187
191
|
updated_at: Date;
|
192
|
+
referralCode: string;
|
188
193
|
shortId: number;
|
189
194
|
firstTimeMiExpo: boolean;
|
190
195
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -242,6 +248,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
242
248
|
dni: string | null;
|
243
249
|
created_at: Date;
|
244
250
|
updated_at: Date;
|
251
|
+
referralCode: string;
|
245
252
|
shortId: number;
|
246
253
|
firstTimeMiExpo: boolean;
|
247
254
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -303,6 +311,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
303
311
|
dni: string | null;
|
304
312
|
created_at: Date;
|
305
313
|
updated_at: Date;
|
314
|
+
referralCode: string;
|
306
315
|
shortId: number;
|
307
316
|
firstTimeMiExpo: boolean;
|
308
317
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -362,6 +372,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
362
372
|
dni: string | null;
|
363
373
|
created_at: Date;
|
364
374
|
updated_at: Date;
|
375
|
+
referralCode: string;
|
365
376
|
shortId: number;
|
366
377
|
firstTimeMiExpo: boolean;
|
367
378
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
495
509
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
496
510
|
id: string;
|
497
511
|
username: string | null;
|
@@ -505,6 +519,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
505
519
|
dni: string | null;
|
506
520
|
created_at: string;
|
507
521
|
updated_at: string;
|
522
|
+
referralCode: string;
|
508
523
|
shortId: number;
|
509
524
|
firstTimeMiExpo: boolean;
|
510
525
|
isPhoneVerified: boolean;
|
@@ -529,6 +544,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
529
544
|
dni: string | null;
|
530
545
|
created_at: string;
|
531
546
|
updated_at: string;
|
547
|
+
referralCode: string;
|
532
548
|
shortId: number;
|
533
549
|
firstTimeMiExpo: boolean;
|
534
550
|
isPhoneVerified: boolean;
|
@@ -576,6 +592,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
576
592
|
dni: string | null;
|
577
593
|
created_at: string;
|
578
594
|
updated_at: string;
|
595
|
+
referralCode: string;
|
579
596
|
shortId: number;
|
580
597
|
firstTimeMiExpo: boolean;
|
581
598
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -633,6 +651,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
633
651
|
dni: string | null;
|
634
652
|
created_at: string;
|
635
653
|
updated_at: string;
|
654
|
+
referralCode: string;
|
636
655
|
shortId: number;
|
637
656
|
firstTimeMiExpo: boolean;
|
638
657
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -694,6 +714,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
694
714
|
dni: string | null;
|
695
715
|
created_at: string;
|
696
716
|
updated_at: string;
|
717
|
+
referralCode: string;
|
697
718
|
shortId: number;
|
698
719
|
firstTimeMiExpo: boolean;
|
699
720
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -753,6 +775,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
753
775
|
dni: string | null;
|
754
776
|
created_at: string;
|
755
777
|
updated_at: string;
|
778
|
+
referralCode: string;
|
756
779
|
shortId: number;
|
757
780
|
firstTimeMiExpo: boolean;
|
758
781
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
78
80
|
}, "strip", z.ZodTypeAny, {
|
79
81
|
id: string;
|
80
82
|
username: string | null;
|
@@ -88,6 +90,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
88
90
|
dni: string | null;
|
89
91
|
created_at: Date;
|
90
92
|
updated_at: Date;
|
93
|
+
referralCode: string;
|
91
94
|
shortId: number;
|
92
95
|
firstTimeMiExpo: boolean;
|
93
96
|
isPhoneVerified: boolean;
|
@@ -112,6 +115,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
112
115
|
dni: string | null;
|
113
116
|
created_at: Date;
|
114
117
|
updated_at: Date;
|
118
|
+
referralCode: string;
|
115
119
|
shortId: number;
|
116
120
|
firstTimeMiExpo: boolean;
|
117
121
|
isPhoneVerified: boolean;
|
@@ -145,6 +149,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
145
149
|
dni: string | null;
|
146
150
|
created_at: Date;
|
147
151
|
updated_at: Date;
|
152
|
+
referralCode: string;
|
148
153
|
shortId: number;
|
149
154
|
firstTimeMiExpo: boolean;
|
150
155
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -188,6 +194,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
188
194
|
dni: string | null;
|
189
195
|
created_at: Date;
|
190
196
|
updated_at: Date;
|
197
|
+
referralCode: string;
|
191
198
|
shortId: number;
|
192
199
|
firstTimeMiExpo: boolean;
|
193
200
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -235,6 +243,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
235
243
|
dni: string | null;
|
236
244
|
created_at: Date;
|
237
245
|
updated_at: Date;
|
246
|
+
referralCode: string;
|
238
247
|
shortId: number;
|
239
248
|
firstTimeMiExpo: boolean;
|
240
249
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -280,6 +290,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
280
290
|
dni: string | null;
|
281
291
|
created_at: Date;
|
282
292
|
updated_at: Date;
|
293
|
+
referralCode: string;
|
283
294
|
shortId: number;
|
284
295
|
firstTimeMiExpo: boolean;
|
285
296
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
373
387
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
374
388
|
id: string;
|
375
389
|
username: string | null;
|
@@ -383,6 +397,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
383
397
|
dni: string | null;
|
384
398
|
created_at: string;
|
385
399
|
updated_at: string;
|
400
|
+
referralCode: string;
|
386
401
|
shortId: number;
|
387
402
|
firstTimeMiExpo: boolean;
|
388
403
|
isPhoneVerified: boolean;
|
@@ -407,6 +422,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
407
422
|
dni: string | null;
|
408
423
|
created_at: string;
|
409
424
|
updated_at: string;
|
425
|
+
referralCode: string;
|
410
426
|
shortId: number;
|
411
427
|
firstTimeMiExpo: boolean;
|
412
428
|
isPhoneVerified: boolean;
|
@@ -440,6 +456,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
440
456
|
dni: string | null;
|
441
457
|
created_at: string;
|
442
458
|
updated_at: string;
|
459
|
+
referralCode: string;
|
443
460
|
shortId: number;
|
444
461
|
firstTimeMiExpo: boolean;
|
445
462
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -483,6 +501,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
483
501
|
dni: string | null;
|
484
502
|
created_at: string;
|
485
503
|
updated_at: string;
|
504
|
+
referralCode: string;
|
486
505
|
shortId: number;
|
487
506
|
firstTimeMiExpo: boolean;
|
488
507
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -530,6 +550,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
530
550
|
dni: string | null;
|
531
551
|
created_at: string;
|
532
552
|
updated_at: string;
|
553
|
+
referralCode: string;
|
533
554
|
shortId: number;
|
534
555
|
firstTimeMiExpo: boolean;
|
535
556
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -575,6 +597,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
575
597
|
dni: string | null;
|
576
598
|
created_at: string;
|
577
599
|
updated_at: string;
|
600
|
+
referralCode: string;
|
578
601
|
shortId: number;
|
579
602
|
firstTimeMiExpo: boolean;
|
580
603
|
isPhoneVerified: boolean;
|
@@ -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;
|
@@ -15,6 +15,7 @@ export declare const findByTicketGroupTicketResponseSchema: 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
|
}, "strip", z.ZodTypeAny, {
|
@@ -27,6 +28,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
27
28
|
seat: number | null;
|
28
29
|
created_at: Date;
|
29
30
|
updated_at: Date;
|
31
|
+
referralCode: string | null;
|
30
32
|
scanned: boolean;
|
31
33
|
scannedAt: Date | null;
|
32
34
|
ticketGroupId: string | null;
|
@@ -40,6 +42,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
40
42
|
seat: number | null;
|
41
43
|
created_at: Date;
|
42
44
|
updated_at: Date;
|
45
|
+
referralCode: string | null;
|
43
46
|
scanned: boolean;
|
44
47
|
scannedAt: Date | null;
|
45
48
|
ticketGroupId: string | null;
|
@@ -55,6 +58,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
55
58
|
seat: number | null;
|
56
59
|
created_at: Date;
|
57
60
|
updated_at: Date;
|
61
|
+
referralCode: string | null;
|
58
62
|
scanned: boolean;
|
59
63
|
scannedAt: Date | null;
|
60
64
|
ticketGroupId: string | null;
|
@@ -70,6 +74,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: Date;
|
72
76
|
updated_at: Date;
|
77
|
+
referralCode: string | null;
|
73
78
|
scanned: boolean;
|
74
79
|
scannedAt: Date | null;
|
75
80
|
ticketGroupId: string | null;
|
@@ -36,6 +36,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
36
36
|
scanned: z.ZodBoolean;
|
37
37
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
38
38
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
39
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
39
40
|
created_at: z.ZodDate;
|
40
41
|
updated_at: z.ZodDate;
|
41
42
|
}, "strip", z.ZodTypeAny, {
|
@@ -48,6 +49,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
48
49
|
seat: number | null;
|
49
50
|
created_at: Date;
|
50
51
|
updated_at: Date;
|
52
|
+
referralCode: string | null;
|
51
53
|
scanned: boolean;
|
52
54
|
scannedAt: Date | null;
|
53
55
|
ticketGroupId: string | null;
|
@@ -61,6 +63,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
61
63
|
seat: number | null;
|
62
64
|
created_at: Date;
|
63
65
|
updated_at: Date;
|
66
|
+
referralCode: string | null;
|
64
67
|
scanned: boolean;
|
65
68
|
scannedAt: Date | null;
|
66
69
|
ticketGroupId: string | null;
|
@@ -80,6 +83,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
80
83
|
scanned: z.ZodBoolean;
|
81
84
|
scannedAt: z.ZodNullable<z.ZodString>;
|
82
85
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
86
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
83
87
|
created_at: z.ZodString;
|
84
88
|
updated_at: z.ZodString;
|
85
89
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -92,6 +96,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
92
96
|
seat: number | null;
|
93
97
|
created_at: string;
|
94
98
|
updated_at: string;
|
99
|
+
referralCode: string | null;
|
95
100
|
scanned: boolean;
|
96
101
|
scannedAt: string | null;
|
97
102
|
ticketGroupId: string | null;
|
@@ -105,6 +110,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
105
110
|
seat: number | null;
|
106
111
|
created_at: string;
|
107
112
|
updated_at: string;
|
113
|
+
referralCode: string | null;
|
108
114
|
scanned: boolean;
|
109
115
|
scannedAt: string | null;
|
110
116
|
ticketGroupId: string | null;
|
@@ -14,6 +14,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
14
14
|
scanned: z.ZodBoolean;
|
15
15
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
16
16
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
17
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
17
18
|
created_at: z.ZodDate;
|
18
19
|
updated_at: z.ZodDate;
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
@@ -26,6 +27,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
26
27
|
seat: number | null;
|
27
28
|
created_at: Date;
|
28
29
|
updated_at: Date;
|
30
|
+
referralCode: string | null;
|
29
31
|
scanned: boolean;
|
30
32
|
scannedAt: Date | null;
|
31
33
|
ticketGroupId: string | null;
|
@@ -39,6 +41,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
39
41
|
seat: number | null;
|
40
42
|
created_at: Date;
|
41
43
|
updated_at: Date;
|
44
|
+
referralCode: string | null;
|
42
45
|
scanned: boolean;
|
43
46
|
scannedAt: Date | null;
|
44
47
|
ticketGroupId: string | null;
|
@@ -58,6 +61,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
58
61
|
scanned: z.ZodBoolean;
|
59
62
|
scannedAt: z.ZodNullable<z.ZodString>;
|
60
63
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
64
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
61
65
|
created_at: z.ZodString;
|
62
66
|
updated_at: z.ZodString;
|
63
67
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -70,6 +74,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: string;
|
72
76
|
updated_at: string;
|
77
|
+
referralCode: string | null;
|
73
78
|
scanned: boolean;
|
74
79
|
scannedAt: string | null;
|
75
80
|
ticketGroupId: string | null;
|
@@ -83,6 +88,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
83
88
|
seat: number | null;
|
84
89
|
created_at: string;
|
85
90
|
updated_at: string;
|
91
|
+
referralCode: string | null;
|
86
92
|
scanned: boolean;
|
87
93
|
scannedAt: string | null;
|
88
94
|
ticketGroupId: string | null;
|
@@ -23,6 +23,7 @@ exports.ticketSchema = zod_1.default.object({
|
|
23
23
|
scanned: zod_1.default.boolean(),
|
24
24
|
scannedAt: zod_1.default.date().nullable(),
|
25
25
|
ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.nullable(),
|
26
|
+
referralCode: ticket_group_dto_1.ticketGroupSchema.shape.referralCode,
|
26
27
|
created_at: zod_1.default.date(),
|
27
28
|
updated_at: zod_1.default.date(),
|
28
29
|
});
|
@@ -61,6 +61,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
61
61
|
scanned: import("zod").ZodBoolean;
|
62
62
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
63
63
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
64
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
64
65
|
created_at: import("zod").ZodDate;
|
65
66
|
updated_at: import("zod").ZodDate;
|
66
67
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -73,6 +74,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
73
74
|
seat: number | null;
|
74
75
|
created_at: Date;
|
75
76
|
updated_at: Date;
|
77
|
+
referralCode: string | null;
|
76
78
|
scanned: boolean;
|
77
79
|
scannedAt: Date | null;
|
78
80
|
ticketGroupId: string | null;
|
@@ -86,6 +88,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
86
88
|
seat: number | null;
|
87
89
|
created_at: Date;
|
88
90
|
updated_at: Date;
|
91
|
+
referralCode: string | null;
|
89
92
|
scanned: boolean;
|
90
93
|
scannedAt: Date | null;
|
91
94
|
ticketGroupId: string | null;
|
@@ -105,6 +108,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
105
108
|
scanned: import("zod").ZodBoolean;
|
106
109
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
107
110
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
111
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
108
112
|
created_at: import("zod").ZodString;
|
109
113
|
updated_at: import("zod").ZodString;
|
110
114
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -117,6 +121,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
117
121
|
seat: number | null;
|
118
122
|
created_at: string;
|
119
123
|
updated_at: string;
|
124
|
+
referralCode: string | null;
|
120
125
|
scanned: boolean;
|
121
126
|
scannedAt: string | null;
|
122
127
|
ticketGroupId: string | null;
|
@@ -130,6 +135,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
130
135
|
seat: number | null;
|
131
136
|
created_at: string;
|
132
137
|
updated_at: string;
|
138
|
+
referralCode: string | null;
|
133
139
|
scanned: boolean;
|
134
140
|
scannedAt: string | null;
|
135
141
|
ticketGroupId: string | null;
|