expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.9 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11
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 -5
- 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/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +9 -2
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +9 -2
- 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 +22 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- 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 -7
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -1
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +8 -8
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +496 -33
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +7 -1
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +17 -4
- package/package.json +2 -1
@@ -15,6 +15,7 @@ export declare const findAllTicketsResponseSchema: 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
|
}, {
|
@@ -59,6 +60,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
59
60
|
seat: number | null;
|
60
61
|
created_at: Date;
|
61
62
|
updated_at: Date;
|
63
|
+
referralCode: string | null;
|
62
64
|
scanned: boolean;
|
63
65
|
scannedAt: Date | null;
|
64
66
|
ticketGroupId: string | null;
|
@@ -77,6 +79,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
77
79
|
seat: number | null;
|
78
80
|
created_at: Date;
|
79
81
|
updated_at: Date;
|
82
|
+
referralCode: string | null;
|
80
83
|
scanned: boolean;
|
81
84
|
scannedAt: Date | null;
|
82
85
|
ticketGroupId: string | null;
|
@@ -97,6 +100,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
97
100
|
seat: number | null;
|
98
101
|
created_at: Date;
|
99
102
|
updated_at: Date;
|
103
|
+
referralCode: string | null;
|
100
104
|
scanned: boolean;
|
101
105
|
scannedAt: Date | null;
|
102
106
|
ticketGroupId: string | null;
|
@@ -117,6 +121,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
117
121
|
seat: number | null;
|
118
122
|
created_at: Date;
|
119
123
|
updated_at: Date;
|
124
|
+
referralCode: string | null;
|
120
125
|
scanned: boolean;
|
121
126
|
scannedAt: Date | null;
|
122
127
|
ticketGroupId: string | null;
|
@@ -138,6 +143,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
138
143
|
scanned: z.ZodBoolean;
|
139
144
|
scannedAt: z.ZodNullable<z.ZodString>;
|
140
145
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
146
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
141
147
|
created_at: z.ZodString;
|
142
148
|
updated_at: z.ZodString;
|
143
149
|
event: z.ZodObject<{
|
@@ -168,6 +174,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
168
174
|
seat: number | null;
|
169
175
|
created_at: string;
|
170
176
|
updated_at: string;
|
177
|
+
referralCode: string | null;
|
171
178
|
scanned: boolean;
|
172
179
|
scannedAt: string | null;
|
173
180
|
ticketGroupId: string | null;
|
@@ -186,6 +193,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
186
193
|
seat: number | null;
|
187
194
|
created_at: string;
|
188
195
|
updated_at: string;
|
196
|
+
referralCode: string | null;
|
189
197
|
scanned: boolean;
|
190
198
|
scannedAt: string | null;
|
191
199
|
ticketGroupId: string | null;
|
@@ -206,6 +214,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
206
214
|
seat: number | null;
|
207
215
|
created_at: string;
|
208
216
|
updated_at: string;
|
217
|
+
referralCode: string | null;
|
209
218
|
scanned: boolean;
|
210
219
|
scannedAt: string | null;
|
211
220
|
ticketGroupId: string | null;
|
@@ -226,6 +235,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
226
235
|
seat: number | null;
|
227
236
|
created_at: string;
|
228
237
|
updated_at: string;
|
238
|
+
referralCode: string | null;
|
229
239
|
scanned: boolean;
|
230
240
|
scannedAt: string | null;
|
231
241
|
ticketGroupId: string | null;
|
@@ -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
|
}, {
|
@@ -89,6 +90,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
89
90
|
dni: string | null;
|
90
91
|
created_at: Date;
|
91
92
|
updated_at: Date;
|
93
|
+
referralCode: string;
|
92
94
|
shortId: number;
|
93
95
|
firstTimeMiExpo: boolean;
|
94
96
|
isPhoneVerified: boolean;
|
@@ -101,7 +103,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
101
103
|
residenceLocationId: string | null;
|
102
104
|
isInTrash: boolean;
|
103
105
|
movedToTrashDate: Date | null;
|
104
|
-
referralCode: string;
|
105
106
|
}, {
|
106
107
|
id: string;
|
107
108
|
username: string | null;
|
@@ -114,6 +115,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
114
115
|
dni: string | null;
|
115
116
|
created_at: Date;
|
116
117
|
updated_at: Date;
|
118
|
+
referralCode: string;
|
117
119
|
shortId: number;
|
118
120
|
firstTimeMiExpo: boolean;
|
119
121
|
isPhoneVerified: boolean;
|
@@ -126,7 +128,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
126
128
|
residenceLocationId: string | null;
|
127
129
|
isInTrash: boolean;
|
128
130
|
movedToTrashDate: Date | null;
|
129
|
-
referralCode: string;
|
130
131
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
131
132
|
}>>;
|
132
133
|
}>, "strip", z.ZodTypeAny, {
|
@@ -148,6 +149,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
148
149
|
dni: string | null;
|
149
150
|
created_at: Date;
|
150
151
|
updated_at: Date;
|
152
|
+
referralCode: string;
|
151
153
|
shortId: number;
|
152
154
|
firstTimeMiExpo: boolean;
|
153
155
|
isPhoneVerified: boolean;
|
@@ -160,7 +162,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
160
162
|
residenceLocationId: string | null;
|
161
163
|
isInTrash: boolean;
|
162
164
|
movedToTrashDate: Date | null;
|
163
|
-
referralCode: string;
|
164
165
|
} | null;
|
165
166
|
id: string;
|
166
167
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -171,6 +172,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
171
172
|
seat: number | null;
|
172
173
|
created_at: Date;
|
173
174
|
updated_at: Date;
|
175
|
+
referralCode: string | null;
|
174
176
|
scanned: boolean;
|
175
177
|
scannedAt: Date | null;
|
176
178
|
ticketGroupId: string | null;
|
@@ -192,6 +194,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
192
194
|
dni: string | null;
|
193
195
|
created_at: Date;
|
194
196
|
updated_at: Date;
|
197
|
+
referralCode: string;
|
195
198
|
shortId: number;
|
196
199
|
firstTimeMiExpo: boolean;
|
197
200
|
isPhoneVerified: boolean;
|
@@ -204,7 +207,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
204
207
|
residenceLocationId: string | null;
|
205
208
|
isInTrash: boolean;
|
206
209
|
movedToTrashDate: Date | null;
|
207
|
-
referralCode: string;
|
208
210
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
209
211
|
} | null;
|
210
212
|
id: string;
|
@@ -216,6 +218,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
216
218
|
seat: number | null;
|
217
219
|
created_at: Date;
|
218
220
|
updated_at: Date;
|
221
|
+
referralCode: string | null;
|
219
222
|
scanned: boolean;
|
220
223
|
scannedAt: Date | null;
|
221
224
|
ticketGroupId: string | null;
|
@@ -240,6 +243,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
240
243
|
dni: string | null;
|
241
244
|
created_at: Date;
|
242
245
|
updated_at: Date;
|
246
|
+
referralCode: string;
|
243
247
|
shortId: number;
|
244
248
|
firstTimeMiExpo: boolean;
|
245
249
|
isPhoneVerified: boolean;
|
@@ -252,7 +256,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
252
256
|
residenceLocationId: string | null;
|
253
257
|
isInTrash: boolean;
|
254
258
|
movedToTrashDate: Date | null;
|
255
|
-
referralCode: string;
|
256
259
|
} | null;
|
257
260
|
id: string;
|
258
261
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -263,6 +266,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
263
266
|
seat: number | null;
|
264
267
|
created_at: Date;
|
265
268
|
updated_at: Date;
|
269
|
+
referralCode: string | null;
|
266
270
|
scanned: boolean;
|
267
271
|
scannedAt: Date | null;
|
268
272
|
ticketGroupId: string | null;
|
@@ -286,6 +290,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
286
290
|
dni: string | null;
|
287
291
|
created_at: Date;
|
288
292
|
updated_at: Date;
|
293
|
+
referralCode: string;
|
289
294
|
shortId: number;
|
290
295
|
firstTimeMiExpo: boolean;
|
291
296
|
isPhoneVerified: boolean;
|
@@ -298,7 +303,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
298
303
|
residenceLocationId: string | null;
|
299
304
|
isInTrash: boolean;
|
300
305
|
movedToTrashDate: Date | null;
|
301
|
-
referralCode: string;
|
302
306
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
303
307
|
} | null;
|
304
308
|
id: string;
|
@@ -310,6 +314,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
310
314
|
seat: number | null;
|
311
315
|
created_at: Date;
|
312
316
|
updated_at: Date;
|
317
|
+
referralCode: string | null;
|
313
318
|
scanned: boolean;
|
314
319
|
scannedAt: Date | null;
|
315
320
|
ticketGroupId: string | null;
|
@@ -331,6 +336,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
331
336
|
scanned: z.ZodBoolean;
|
332
337
|
scannedAt: z.ZodNullable<z.ZodString>;
|
333
338
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
339
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
334
340
|
created_at: z.ZodString;
|
335
341
|
updated_at: z.ZodString;
|
336
342
|
event: z.ZodObject<{
|
@@ -391,6 +397,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
391
397
|
dni: string | null;
|
392
398
|
created_at: string;
|
393
399
|
updated_at: string;
|
400
|
+
referralCode: string;
|
394
401
|
shortId: number;
|
395
402
|
firstTimeMiExpo: boolean;
|
396
403
|
isPhoneVerified: boolean;
|
@@ -403,7 +410,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
403
410
|
residenceLocationId: string | null;
|
404
411
|
isInTrash: boolean;
|
405
412
|
movedToTrashDate: string | null;
|
406
|
-
referralCode: string;
|
407
413
|
}, {
|
408
414
|
id: string;
|
409
415
|
username: string | null;
|
@@ -416,6 +422,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
416
422
|
dni: string | null;
|
417
423
|
created_at: string;
|
418
424
|
updated_at: string;
|
425
|
+
referralCode: string;
|
419
426
|
shortId: number;
|
420
427
|
firstTimeMiExpo: boolean;
|
421
428
|
isPhoneVerified: boolean;
|
@@ -428,7 +435,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
428
435
|
residenceLocationId: string | null;
|
429
436
|
isInTrash: boolean;
|
430
437
|
movedToTrashDate: string | null;
|
431
|
-
referralCode: string;
|
432
438
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
433
439
|
}>>;
|
434
440
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -450,6 +456,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
450
456
|
dni: string | null;
|
451
457
|
created_at: string;
|
452
458
|
updated_at: string;
|
459
|
+
referralCode: string;
|
453
460
|
shortId: number;
|
454
461
|
firstTimeMiExpo: boolean;
|
455
462
|
isPhoneVerified: boolean;
|
@@ -462,7 +469,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
462
469
|
residenceLocationId: string | null;
|
463
470
|
isInTrash: boolean;
|
464
471
|
movedToTrashDate: string | null;
|
465
|
-
referralCode: string;
|
466
472
|
} | null;
|
467
473
|
id: string;
|
468
474
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -473,6 +479,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
473
479
|
seat: number | null;
|
474
480
|
created_at: string;
|
475
481
|
updated_at: string;
|
482
|
+
referralCode: string | null;
|
476
483
|
scanned: boolean;
|
477
484
|
scannedAt: string | null;
|
478
485
|
ticketGroupId: string | null;
|
@@ -494,6 +501,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
494
501
|
dni: string | null;
|
495
502
|
created_at: string;
|
496
503
|
updated_at: string;
|
504
|
+
referralCode: string;
|
497
505
|
shortId: number;
|
498
506
|
firstTimeMiExpo: boolean;
|
499
507
|
isPhoneVerified: boolean;
|
@@ -506,7 +514,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
506
514
|
residenceLocationId: string | null;
|
507
515
|
isInTrash: boolean;
|
508
516
|
movedToTrashDate: string | null;
|
509
|
-
referralCode: string;
|
510
517
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
511
518
|
} | null;
|
512
519
|
id: string;
|
@@ -518,6 +525,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
518
525
|
seat: number | null;
|
519
526
|
created_at: string;
|
520
527
|
updated_at: string;
|
528
|
+
referralCode: string | null;
|
521
529
|
scanned: boolean;
|
522
530
|
scannedAt: string | null;
|
523
531
|
ticketGroupId: string | null;
|
@@ -542,6 +550,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
542
550
|
dni: string | null;
|
543
551
|
created_at: string;
|
544
552
|
updated_at: string;
|
553
|
+
referralCode: string;
|
545
554
|
shortId: number;
|
546
555
|
firstTimeMiExpo: boolean;
|
547
556
|
isPhoneVerified: boolean;
|
@@ -554,7 +563,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
554
563
|
residenceLocationId: string | null;
|
555
564
|
isInTrash: boolean;
|
556
565
|
movedToTrashDate: string | null;
|
557
|
-
referralCode: string;
|
558
566
|
} | null;
|
559
567
|
id: string;
|
560
568
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -565,6 +573,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
565
573
|
seat: number | null;
|
566
574
|
created_at: string;
|
567
575
|
updated_at: string;
|
576
|
+
referralCode: string | null;
|
568
577
|
scanned: boolean;
|
569
578
|
scannedAt: string | null;
|
570
579
|
ticketGroupId: string | null;
|
@@ -588,6 +597,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
588
597
|
dni: string | null;
|
589
598
|
created_at: string;
|
590
599
|
updated_at: string;
|
600
|
+
referralCode: string;
|
591
601
|
shortId: number;
|
592
602
|
firstTimeMiExpo: boolean;
|
593
603
|
isPhoneVerified: boolean;
|
@@ -600,7 +610,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
600
610
|
residenceLocationId: string | null;
|
601
611
|
isInTrash: boolean;
|
602
612
|
movedToTrashDate: string | null;
|
603
|
-
referralCode: string;
|
604
613
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
605
614
|
} | null;
|
606
615
|
id: string;
|
@@ -612,6 +621,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
612
621
|
seat: number | null;
|
613
622
|
created_at: string;
|
614
623
|
updated_at: string;
|
624
|
+
referralCode: string | null;
|
615
625
|
scanned: boolean;
|
616
626
|
scannedAt: string | null;
|
617
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
|
}, {
|
@@ -115,6 +116,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
115
116
|
dni: string | null;
|
116
117
|
created_at: Date;
|
117
118
|
updated_at: Date;
|
119
|
+
referralCode: string;
|
118
120
|
shortId: number;
|
119
121
|
firstTimeMiExpo: boolean;
|
120
122
|
isPhoneVerified: boolean;
|
@@ -127,7 +129,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
127
129
|
residenceLocationId: string | null;
|
128
130
|
isInTrash: boolean;
|
129
131
|
movedToTrashDate: Date | null;
|
130
|
-
referralCode: string;
|
131
132
|
}, {
|
132
133
|
id: string;
|
133
134
|
username: string | null;
|
@@ -140,6 +141,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
140
141
|
dni: string | null;
|
141
142
|
created_at: Date;
|
142
143
|
updated_at: Date;
|
144
|
+
referralCode: string;
|
143
145
|
shortId: number;
|
144
146
|
firstTimeMiExpo: boolean;
|
145
147
|
isPhoneVerified: boolean;
|
@@ -152,7 +154,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
152
154
|
residenceLocationId: string | null;
|
153
155
|
isInTrash: boolean;
|
154
156
|
movedToTrashDate: Date | null;
|
155
|
-
referralCode: string;
|
156
157
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
157
158
|
}>>;
|
158
159
|
profileId: z.ZodNullable<z.ZodString>;
|
@@ -188,6 +189,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
188
189
|
dni: string | null;
|
189
190
|
created_at: Date;
|
190
191
|
updated_at: Date;
|
192
|
+
referralCode: string;
|
191
193
|
shortId: number;
|
192
194
|
firstTimeMiExpo: boolean;
|
193
195
|
isPhoneVerified: boolean;
|
@@ -200,7 +202,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
200
202
|
residenceLocationId: string | null;
|
201
203
|
isInTrash: boolean;
|
202
204
|
movedToTrashDate: Date | null;
|
203
|
-
referralCode: string;
|
204
205
|
} | null;
|
205
206
|
id: string;
|
206
207
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -212,6 +213,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
212
213
|
created_at: Date;
|
213
214
|
updated_at: Date;
|
214
215
|
profileId: string | null;
|
216
|
+
referralCode: string | null;
|
215
217
|
scanned: boolean;
|
216
218
|
scannedAt: Date | null;
|
217
219
|
ticketGroupId: string | null;
|
@@ -246,6 +248,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
246
248
|
dni: string | null;
|
247
249
|
created_at: Date;
|
248
250
|
updated_at: Date;
|
251
|
+
referralCode: string;
|
249
252
|
shortId: number;
|
250
253
|
firstTimeMiExpo: boolean;
|
251
254
|
isPhoneVerified: boolean;
|
@@ -258,7 +261,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
258
261
|
residenceLocationId: string | null;
|
259
262
|
isInTrash: boolean;
|
260
263
|
movedToTrashDate: Date | null;
|
261
|
-
referralCode: string;
|
262
264
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
263
265
|
} | null;
|
264
266
|
id: string;
|
@@ -271,6 +273,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
271
273
|
created_at: Date;
|
272
274
|
updated_at: Date;
|
273
275
|
profileId: string | null;
|
276
|
+
referralCode: string | null;
|
274
277
|
scanned: boolean;
|
275
278
|
scannedAt: Date | null;
|
276
279
|
ticketGroupId: string | null;
|
@@ -308,6 +311,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
308
311
|
dni: string | null;
|
309
312
|
created_at: Date;
|
310
313
|
updated_at: Date;
|
314
|
+
referralCode: string;
|
311
315
|
shortId: number;
|
312
316
|
firstTimeMiExpo: boolean;
|
313
317
|
isPhoneVerified: boolean;
|
@@ -320,7 +324,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
320
324
|
residenceLocationId: string | null;
|
321
325
|
isInTrash: boolean;
|
322
326
|
movedToTrashDate: Date | null;
|
323
|
-
referralCode: string;
|
324
327
|
} | null;
|
325
328
|
id: string;
|
326
329
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -332,6 +335,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
332
335
|
created_at: Date;
|
333
336
|
updated_at: Date;
|
334
337
|
profileId: string | null;
|
338
|
+
referralCode: string | null;
|
335
339
|
scanned: boolean;
|
336
340
|
scannedAt: Date | null;
|
337
341
|
ticketGroupId: string | null;
|
@@ -368,6 +372,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
368
372
|
dni: string | null;
|
369
373
|
created_at: Date;
|
370
374
|
updated_at: Date;
|
375
|
+
referralCode: string;
|
371
376
|
shortId: number;
|
372
377
|
firstTimeMiExpo: boolean;
|
373
378
|
isPhoneVerified: boolean;
|
@@ -380,7 +385,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
380
385
|
residenceLocationId: string | null;
|
381
386
|
isInTrash: boolean;
|
382
387
|
movedToTrashDate: Date | null;
|
383
|
-
referralCode: string;
|
384
388
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
385
389
|
} | null;
|
386
390
|
id: string;
|
@@ -393,6 +397,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
393
397
|
created_at: Date;
|
394
398
|
updated_at: Date;
|
395
399
|
profileId: string | null;
|
400
|
+
referralCode: string | null;
|
396
401
|
scanned: boolean;
|
397
402
|
scannedAt: Date | null;
|
398
403
|
ticketGroupId: string | null;
|
@@ -414,6 +419,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
414
419
|
scanned: z.ZodBoolean;
|
415
420
|
scannedAt: z.ZodNullable<z.ZodString>;
|
416
421
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
422
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
417
423
|
created_at: z.ZodString;
|
418
424
|
updated_at: z.ZodString;
|
419
425
|
event: z.ZodObject<{
|
@@ -513,6 +519,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
513
519
|
dni: string | null;
|
514
520
|
created_at: string;
|
515
521
|
updated_at: string;
|
522
|
+
referralCode: string;
|
516
523
|
shortId: number;
|
517
524
|
firstTimeMiExpo: boolean;
|
518
525
|
isPhoneVerified: boolean;
|
@@ -525,7 +532,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
525
532
|
residenceLocationId: string | null;
|
526
533
|
isInTrash: boolean;
|
527
534
|
movedToTrashDate: string | null;
|
528
|
-
referralCode: string;
|
529
535
|
}, {
|
530
536
|
id: string;
|
531
537
|
username: string | null;
|
@@ -538,6 +544,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
538
544
|
dni: string | null;
|
539
545
|
created_at: string;
|
540
546
|
updated_at: string;
|
547
|
+
referralCode: string;
|
541
548
|
shortId: number;
|
542
549
|
firstTimeMiExpo: boolean;
|
543
550
|
isPhoneVerified: boolean;
|
@@ -550,7 +557,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
550
557
|
residenceLocationId: string | null;
|
551
558
|
isInTrash: boolean;
|
552
559
|
movedToTrashDate: string | null;
|
553
|
-
referralCode: string;
|
554
560
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
555
561
|
}>>;
|
556
562
|
profileId: z.ZodNullable<z.ZodString>;
|
@@ -586,6 +592,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
586
592
|
dni: string | null;
|
587
593
|
created_at: string;
|
588
594
|
updated_at: string;
|
595
|
+
referralCode: string;
|
589
596
|
shortId: number;
|
590
597
|
firstTimeMiExpo: boolean;
|
591
598
|
isPhoneVerified: boolean;
|
@@ -598,7 +605,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
598
605
|
residenceLocationId: string | null;
|
599
606
|
isInTrash: boolean;
|
600
607
|
movedToTrashDate: string | null;
|
601
|
-
referralCode: string;
|
602
608
|
} | null;
|
603
609
|
id: string;
|
604
610
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -610,6 +616,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
610
616
|
created_at: string;
|
611
617
|
updated_at: string;
|
612
618
|
profileId: string | null;
|
619
|
+
referralCode: string | null;
|
613
620
|
scanned: boolean;
|
614
621
|
scannedAt: string | null;
|
615
622
|
ticketGroupId: string | null;
|
@@ -644,6 +651,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
644
651
|
dni: string | null;
|
645
652
|
created_at: string;
|
646
653
|
updated_at: string;
|
654
|
+
referralCode: string;
|
647
655
|
shortId: number;
|
648
656
|
firstTimeMiExpo: boolean;
|
649
657
|
isPhoneVerified: boolean;
|
@@ -656,7 +664,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
656
664
|
residenceLocationId: string | null;
|
657
665
|
isInTrash: boolean;
|
658
666
|
movedToTrashDate: string | null;
|
659
|
-
referralCode: string;
|
660
667
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
661
668
|
} | null;
|
662
669
|
id: string;
|
@@ -669,6 +676,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
669
676
|
created_at: string;
|
670
677
|
updated_at: string;
|
671
678
|
profileId: string | null;
|
679
|
+
referralCode: string | null;
|
672
680
|
scanned: boolean;
|
673
681
|
scannedAt: string | null;
|
674
682
|
ticketGroupId: string | null;
|
@@ -706,6 +714,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
706
714
|
dni: string | null;
|
707
715
|
created_at: string;
|
708
716
|
updated_at: string;
|
717
|
+
referralCode: string;
|
709
718
|
shortId: number;
|
710
719
|
firstTimeMiExpo: boolean;
|
711
720
|
isPhoneVerified: boolean;
|
@@ -718,7 +727,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
718
727
|
residenceLocationId: string | null;
|
719
728
|
isInTrash: boolean;
|
720
729
|
movedToTrashDate: string | null;
|
721
|
-
referralCode: string;
|
722
730
|
} | null;
|
723
731
|
id: string;
|
724
732
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -730,6 +738,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
730
738
|
created_at: string;
|
731
739
|
updated_at: string;
|
732
740
|
profileId: string | null;
|
741
|
+
referralCode: string | null;
|
733
742
|
scanned: boolean;
|
734
743
|
scannedAt: string | null;
|
735
744
|
ticketGroupId: string | null;
|
@@ -766,6 +775,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
766
775
|
dni: string | null;
|
767
776
|
created_at: string;
|
768
777
|
updated_at: string;
|
778
|
+
referralCode: string;
|
769
779
|
shortId: number;
|
770
780
|
firstTimeMiExpo: boolean;
|
771
781
|
isPhoneVerified: boolean;
|
@@ -778,7 +788,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
778
788
|
residenceLocationId: string | null;
|
779
789
|
isInTrash: boolean;
|
780
790
|
movedToTrashDate: string | null;
|
781
|
-
referralCode: string;
|
782
791
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
783
792
|
} | null;
|
784
793
|
id: string;
|
@@ -791,6 +800,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
791
800
|
created_at: string;
|
792
801
|
updated_at: string;
|
793
802
|
profileId: string | null;
|
803
|
+
referralCode: string | null;
|
794
804
|
scanned: boolean;
|
795
805
|
scannedAt: string | null;
|
796
806
|
ticketGroupId: string | null;
|