expo-backend-types 0.39.0-EXPO-326-Oscar-Ruggeri.1 → 0.40.0-EXPO-330-ExpoBackend-MercadoPago.1
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/csv/dto/download-all-tables.dto.d.ts +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +408 -26
- package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +39 -2
- package/dist/src/i18n/es.js +64 -9
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +638 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +18 -33
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -1
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -18
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -26
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -26
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +161 -29
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -5
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -26
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -26
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -18
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +2 -2
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -18
- package/dist/src/ticket/dto/ticket.dto.js +2 -3
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +22 -32
- package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +386 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +21 -11
- package/dist/types/prisma-schema/index-browser.js +16 -6
- package/dist/types/prisma-schema/index.d.ts +2427 -407
- package/dist/types/prisma-schema/index.js +21 -11
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +2 -2
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
- package/dist/types/prisma-schema/runtime/library.js +56 -56
- package/dist/types/prisma-schema/runtime/react-native.js +25 -25
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +22 -3
- package/dist/types/prisma-schema/wasm.js +16 -6
- package/dist/types/schema.d.ts +416 -13
- package/package.json +3 -2
@@ -8,21 +8,17 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
8
8
|
STAFF: "STAFF";
|
9
9
|
SPECTATOR: "SPECTATOR";
|
10
10
|
}>;
|
11
|
-
status: z.ZodNativeEnum<{
|
12
|
-
BOOKED: "BOOKED";
|
13
|
-
PAID: "PAID";
|
14
|
-
FREE: "FREE";
|
15
|
-
}>;
|
16
11
|
fullName: z.ZodString;
|
17
12
|
mail: z.ZodString;
|
18
13
|
dni: z.ZodString;
|
19
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
15
|
scanned: z.ZodBoolean;
|
21
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
|
+
ticketGroupId: z.ZodNullable<z.ZodString>;
|
22
18
|
created_at: z.ZodDate;
|
23
19
|
updated_at: z.ZodDate;
|
24
20
|
}, {
|
25
|
-
event: z.ZodObject<
|
21
|
+
event: z.ZodObject<{
|
26
22
|
id: z.ZodString;
|
27
23
|
name: z.ZodString;
|
28
24
|
date: z.ZodDate;
|
@@ -36,14 +32,34 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
36
32
|
supraEventId: z.ZodNullable<z.ZodString>;
|
37
33
|
created_at: z.ZodDate;
|
38
34
|
updated_at: z.ZodDate;
|
39
|
-
}, "
|
35
|
+
}, "strip", z.ZodTypeAny, {
|
40
36
|
location: string;
|
37
|
+
id: string;
|
41
38
|
name: string;
|
42
39
|
date: Date;
|
40
|
+
startingDate: Date;
|
41
|
+
endingDate: Date;
|
42
|
+
created_at: Date;
|
43
|
+
updated_at: Date;
|
44
|
+
active: boolean;
|
45
|
+
folderId: string | null;
|
46
|
+
tagAssistedId: string;
|
47
|
+
tagConfirmedId: string;
|
48
|
+
supraEventId: string | null;
|
43
49
|
}, {
|
44
50
|
location: string;
|
51
|
+
id: string;
|
45
52
|
name: string;
|
46
53
|
date: Date;
|
54
|
+
startingDate: Date;
|
55
|
+
endingDate: Date;
|
56
|
+
created_at: Date;
|
57
|
+
updated_at: Date;
|
58
|
+
active: boolean;
|
59
|
+
folderId: string | null;
|
60
|
+
tagAssistedId: string;
|
61
|
+
tagConfirmedId: string;
|
62
|
+
supraEventId: string | null;
|
47
63
|
}>;
|
48
64
|
profile: z.ZodNullable<z.ZodObject<{
|
49
65
|
id: z.ZodString;
|
@@ -127,11 +143,22 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
127
143
|
movedToTrashDate: Date | null;
|
128
144
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
129
145
|
}>>;
|
146
|
+
profileId: z.ZodNullable<z.ZodString>;
|
130
147
|
}>, "strip", z.ZodTypeAny, {
|
131
148
|
event: {
|
132
149
|
location: string;
|
150
|
+
id: string;
|
133
151
|
name: string;
|
134
152
|
date: Date;
|
153
|
+
startingDate: Date;
|
154
|
+
endingDate: Date;
|
155
|
+
created_at: Date;
|
156
|
+
updated_at: Date;
|
157
|
+
active: boolean;
|
158
|
+
folderId: string | null;
|
159
|
+
tagAssistedId: string;
|
160
|
+
tagConfirmedId: string;
|
161
|
+
supraEventId: string | null;
|
135
162
|
};
|
136
163
|
profile: {
|
137
164
|
id: string;
|
@@ -164,18 +191,29 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
164
191
|
fullName: string;
|
165
192
|
mail: string;
|
166
193
|
eventId: string;
|
167
|
-
status: "BOOKED" | "PAID" | "FREE";
|
168
|
-
seat: number | null;
|
169
194
|
dni: string;
|
195
|
+
seat: number | null;
|
170
196
|
created_at: Date;
|
171
197
|
updated_at: Date;
|
198
|
+
profileId: string | null;
|
172
199
|
scanned: boolean;
|
173
200
|
scannedAt: Date | null;
|
201
|
+
ticketGroupId: string | null;
|
174
202
|
}, {
|
175
203
|
event: {
|
176
204
|
location: string;
|
205
|
+
id: string;
|
177
206
|
name: string;
|
178
207
|
date: Date;
|
208
|
+
startingDate: Date;
|
209
|
+
endingDate: Date;
|
210
|
+
created_at: Date;
|
211
|
+
updated_at: Date;
|
212
|
+
active: boolean;
|
213
|
+
folderId: string | null;
|
214
|
+
tagAssistedId: string;
|
215
|
+
tagConfirmedId: string;
|
216
|
+
supraEventId: string | null;
|
179
217
|
};
|
180
218
|
profile: {
|
181
219
|
id: string;
|
@@ -208,20 +246,31 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
208
246
|
fullName: string;
|
209
247
|
mail: string;
|
210
248
|
eventId: string;
|
211
|
-
status: "BOOKED" | "PAID" | "FREE";
|
212
|
-
seat: number | null;
|
213
249
|
dni: string;
|
250
|
+
seat: number | null;
|
214
251
|
created_at: Date;
|
215
252
|
updated_at: Date;
|
253
|
+
profileId: string | null;
|
216
254
|
scanned: boolean;
|
217
255
|
scannedAt: Date | null;
|
256
|
+
ticketGroupId: string | null;
|
218
257
|
}>;
|
219
258
|
}, "strip", z.ZodTypeAny, {
|
220
259
|
ticket: {
|
221
260
|
event: {
|
222
261
|
location: string;
|
262
|
+
id: string;
|
223
263
|
name: string;
|
224
264
|
date: Date;
|
265
|
+
startingDate: Date;
|
266
|
+
endingDate: Date;
|
267
|
+
created_at: Date;
|
268
|
+
updated_at: Date;
|
269
|
+
active: boolean;
|
270
|
+
folderId: string | null;
|
271
|
+
tagAssistedId: string;
|
272
|
+
tagConfirmedId: string;
|
273
|
+
supraEventId: string | null;
|
225
274
|
};
|
226
275
|
profile: {
|
227
276
|
id: string;
|
@@ -254,20 +303,31 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
254
303
|
fullName: string;
|
255
304
|
mail: string;
|
256
305
|
eventId: string;
|
257
|
-
status: "BOOKED" | "PAID" | "FREE";
|
258
|
-
seat: number | null;
|
259
306
|
dni: string;
|
307
|
+
seat: number | null;
|
260
308
|
created_at: Date;
|
261
309
|
updated_at: Date;
|
310
|
+
profileId: string | null;
|
262
311
|
scanned: boolean;
|
263
312
|
scannedAt: Date | null;
|
313
|
+
ticketGroupId: string | null;
|
264
314
|
};
|
265
315
|
}, {
|
266
316
|
ticket: {
|
267
317
|
event: {
|
268
318
|
location: string;
|
319
|
+
id: string;
|
269
320
|
name: string;
|
270
321
|
date: Date;
|
322
|
+
startingDate: Date;
|
323
|
+
endingDate: Date;
|
324
|
+
created_at: Date;
|
325
|
+
updated_at: Date;
|
326
|
+
active: boolean;
|
327
|
+
folderId: string | null;
|
328
|
+
tagAssistedId: string;
|
329
|
+
tagConfirmedId: string;
|
330
|
+
supraEventId: string | null;
|
271
331
|
};
|
272
332
|
profile: {
|
273
333
|
id: string;
|
@@ -300,13 +360,14 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
300
360
|
fullName: string;
|
301
361
|
mail: string;
|
302
362
|
eventId: string;
|
303
|
-
status: "BOOKED" | "PAID" | "FREE";
|
304
|
-
seat: number | null;
|
305
363
|
dni: string;
|
364
|
+
seat: number | null;
|
306
365
|
created_at: Date;
|
307
366
|
updated_at: Date;
|
367
|
+
profileId: string | null;
|
308
368
|
scanned: boolean;
|
309
369
|
scannedAt: Date | null;
|
370
|
+
ticketGroupId: string | null;
|
310
371
|
};
|
311
372
|
}>;
|
312
373
|
declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -318,31 +379,57 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
318
379
|
STAFF: "STAFF";
|
319
380
|
SPECTATOR: "SPECTATOR";
|
320
381
|
}>;
|
321
|
-
status: z.ZodNativeEnum<{
|
322
|
-
BOOKED: "BOOKED";
|
323
|
-
PAID: "PAID";
|
324
|
-
FREE: "FREE";
|
325
|
-
}>;
|
326
382
|
fullName: z.ZodString;
|
327
383
|
mail: z.ZodString;
|
328
384
|
dni: z.ZodString;
|
329
385
|
seat: z.ZodNullable<z.ZodNumber>;
|
330
386
|
scanned: z.ZodBoolean;
|
331
387
|
scannedAt: z.ZodNullable<z.ZodString>;
|
388
|
+
ticketGroupId: z.ZodNullable<z.ZodString>;
|
332
389
|
created_at: z.ZodString;
|
333
390
|
updated_at: z.ZodString;
|
334
391
|
event: z.ZodObject<{
|
335
|
-
|
392
|
+
id: z.ZodString;
|
336
393
|
name: z.ZodString;
|
337
394
|
date: z.ZodString;
|
395
|
+
startingDate: z.ZodString;
|
396
|
+
endingDate: z.ZodString;
|
397
|
+
location: z.ZodString;
|
398
|
+
folderId: z.ZodNullable<z.ZodString>;
|
399
|
+
tagAssistedId: z.ZodString;
|
400
|
+
tagConfirmedId: z.ZodString;
|
401
|
+
active: z.ZodBoolean;
|
402
|
+
supraEventId: z.ZodNullable<z.ZodString>;
|
403
|
+
created_at: z.ZodString;
|
404
|
+
updated_at: z.ZodString;
|
338
405
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
339
406
|
location: string;
|
407
|
+
id: string;
|
340
408
|
name: string;
|
341
409
|
date: string;
|
410
|
+
startingDate: string;
|
411
|
+
endingDate: string;
|
412
|
+
created_at: string;
|
413
|
+
updated_at: string;
|
414
|
+
active: boolean;
|
415
|
+
folderId: string | null;
|
416
|
+
tagAssistedId: string;
|
417
|
+
tagConfirmedId: string;
|
418
|
+
supraEventId: string | null;
|
342
419
|
}, {
|
343
420
|
location: string;
|
421
|
+
id: string;
|
344
422
|
name: string;
|
345
423
|
date: string;
|
424
|
+
startingDate: string;
|
425
|
+
endingDate: string;
|
426
|
+
created_at: string;
|
427
|
+
updated_at: string;
|
428
|
+
active: boolean;
|
429
|
+
folderId: string | null;
|
430
|
+
tagAssistedId: string;
|
431
|
+
tagConfirmedId: string;
|
432
|
+
supraEventId: string | null;
|
346
433
|
}>;
|
347
434
|
profile: z.ZodNullable<z.ZodObject<{
|
348
435
|
id: z.ZodString;
|
@@ -426,11 +513,22 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
426
513
|
movedToTrashDate: string | null;
|
427
514
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
428
515
|
}>>;
|
516
|
+
profileId: z.ZodNullable<z.ZodString>;
|
429
517
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
430
518
|
event: {
|
431
519
|
location: string;
|
520
|
+
id: string;
|
432
521
|
name: string;
|
433
522
|
date: string;
|
523
|
+
startingDate: string;
|
524
|
+
endingDate: string;
|
525
|
+
created_at: string;
|
526
|
+
updated_at: string;
|
527
|
+
active: boolean;
|
528
|
+
folderId: string | null;
|
529
|
+
tagAssistedId: string;
|
530
|
+
tagConfirmedId: string;
|
531
|
+
supraEventId: string | null;
|
434
532
|
};
|
435
533
|
profile: {
|
436
534
|
id: string;
|
@@ -463,18 +561,29 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
463
561
|
fullName: string;
|
464
562
|
mail: string;
|
465
563
|
eventId: string;
|
466
|
-
status: "BOOKED" | "PAID" | "FREE";
|
467
|
-
seat: number | null;
|
468
564
|
dni: string;
|
565
|
+
seat: number | null;
|
469
566
|
created_at: string;
|
470
567
|
updated_at: string;
|
568
|
+
profileId: string | null;
|
471
569
|
scanned: boolean;
|
472
570
|
scannedAt: string | null;
|
571
|
+
ticketGroupId: string | null;
|
473
572
|
}, {
|
474
573
|
event: {
|
475
574
|
location: string;
|
575
|
+
id: string;
|
476
576
|
name: string;
|
477
577
|
date: string;
|
578
|
+
startingDate: string;
|
579
|
+
endingDate: string;
|
580
|
+
created_at: string;
|
581
|
+
updated_at: string;
|
582
|
+
active: boolean;
|
583
|
+
folderId: string | null;
|
584
|
+
tagAssistedId: string;
|
585
|
+
tagConfirmedId: string;
|
586
|
+
supraEventId: string | null;
|
478
587
|
};
|
479
588
|
profile: {
|
480
589
|
id: string;
|
@@ -507,20 +616,31 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
507
616
|
fullName: string;
|
508
617
|
mail: string;
|
509
618
|
eventId: string;
|
510
|
-
status: "BOOKED" | "PAID" | "FREE";
|
511
|
-
seat: number | null;
|
512
619
|
dni: string;
|
620
|
+
seat: number | null;
|
513
621
|
created_at: string;
|
514
622
|
updated_at: string;
|
623
|
+
profileId: string | null;
|
515
624
|
scanned: boolean;
|
516
625
|
scannedAt: string | null;
|
626
|
+
ticketGroupId: string | null;
|
517
627
|
}>;
|
518
628
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
519
629
|
ticket: {
|
520
630
|
event: {
|
521
631
|
location: string;
|
632
|
+
id: string;
|
522
633
|
name: string;
|
523
634
|
date: string;
|
635
|
+
startingDate: string;
|
636
|
+
endingDate: string;
|
637
|
+
created_at: string;
|
638
|
+
updated_at: string;
|
639
|
+
active: boolean;
|
640
|
+
folderId: string | null;
|
641
|
+
tagAssistedId: string;
|
642
|
+
tagConfirmedId: string;
|
643
|
+
supraEventId: string | null;
|
524
644
|
};
|
525
645
|
profile: {
|
526
646
|
id: string;
|
@@ -553,20 +673,31 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
553
673
|
fullName: string;
|
554
674
|
mail: string;
|
555
675
|
eventId: string;
|
556
|
-
status: "BOOKED" | "PAID" | "FREE";
|
557
|
-
seat: number | null;
|
558
676
|
dni: string;
|
677
|
+
seat: number | null;
|
559
678
|
created_at: string;
|
560
679
|
updated_at: string;
|
680
|
+
profileId: string | null;
|
561
681
|
scanned: boolean;
|
562
682
|
scannedAt: string | null;
|
683
|
+
ticketGroupId: string | null;
|
563
684
|
};
|
564
685
|
}, {
|
565
686
|
ticket: {
|
566
687
|
event: {
|
567
688
|
location: string;
|
689
|
+
id: string;
|
568
690
|
name: string;
|
569
691
|
date: string;
|
692
|
+
startingDate: string;
|
693
|
+
endingDate: string;
|
694
|
+
created_at: string;
|
695
|
+
updated_at: string;
|
696
|
+
active: boolean;
|
697
|
+
folderId: string | null;
|
698
|
+
tagAssistedId: string;
|
699
|
+
tagConfirmedId: string;
|
700
|
+
supraEventId: string | null;
|
570
701
|
};
|
571
702
|
profile: {
|
572
703
|
id: string;
|
@@ -599,13 +730,14 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
599
730
|
fullName: string;
|
600
731
|
mail: string;
|
601
732
|
eventId: string;
|
602
|
-
status: "BOOKED" | "PAID" | "FREE";
|
603
|
-
seat: number | null;
|
604
733
|
dni: string;
|
734
|
+
seat: number | null;
|
605
735
|
created_at: string;
|
606
736
|
updated_at: string;
|
737
|
+
profileId: string | null;
|
607
738
|
scanned: boolean;
|
608
739
|
scannedAt: string | null;
|
740
|
+
ticketGroupId: string | null;
|
609
741
|
};
|
610
742
|
}>>;
|
611
743
|
export declare class FindByIdTicketResponseDto extends FindByIdTicketResponseDto_base {
|
@@ -8,12 +8,9 @@ const zod_1 = require("zod");
|
|
8
8
|
const ticket_dto_1 = require("./ticket.dto");
|
9
9
|
exports.findByIdTicketResponseSchema = zod_1.z.object({
|
10
10
|
ticket: ticket_dto_1.ticketSchema.merge(zod_1.z.object({
|
11
|
-
event: event_dto_1.eventSchema
|
12
|
-
name: true,
|
13
|
-
date: true,
|
14
|
-
location: true,
|
15
|
-
}),
|
11
|
+
event: event_dto_1.eventSchema,
|
16
12
|
profile: profile_schema_1.profileSchema.nullable(),
|
13
|
+
profileId: profile_schema_1.profileSchema.shape.id.nullable(),
|
17
14
|
})),
|
18
15
|
});
|
19
16
|
class FindByIdTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByIdTicketResponseSchema) {
|
@@ -8,17 +8,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
8
8
|
STAFF: "STAFF";
|
9
9
|
SPECTATOR: "SPECTATOR";
|
10
10
|
}>;
|
11
|
-
status: z.ZodNativeEnum<{
|
12
|
-
BOOKED: "BOOKED";
|
13
|
-
PAID: "PAID";
|
14
|
-
FREE: "FREE";
|
15
|
-
}>;
|
16
11
|
fullName: z.ZodString;
|
17
12
|
mail: z.ZodString;
|
18
13
|
dni: z.ZodString;
|
19
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
15
|
scanned: z.ZodBoolean;
|
21
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
|
+
ticketGroupId: z.ZodNullable<z.ZodString>;
|
22
18
|
created_at: z.ZodDate;
|
23
19
|
updated_at: z.ZodDate;
|
24
20
|
}, {
|
@@ -164,13 +160,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
164
160
|
fullName: string;
|
165
161
|
mail: string;
|
166
162
|
eventId: string;
|
167
|
-
status: "BOOKED" | "PAID" | "FREE";
|
168
|
-
seat: number | null;
|
169
163
|
dni: string;
|
164
|
+
seat: number | null;
|
170
165
|
created_at: Date;
|
171
166
|
updated_at: Date;
|
172
167
|
scanned: boolean;
|
173
168
|
scannedAt: Date | null;
|
169
|
+
ticketGroupId: string | null;
|
174
170
|
}, {
|
175
171
|
event: {
|
176
172
|
location: string;
|
@@ -208,13 +204,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
208
204
|
fullName: string;
|
209
205
|
mail: string;
|
210
206
|
eventId: string;
|
211
|
-
status: "BOOKED" | "PAID" | "FREE";
|
212
|
-
seat: number | null;
|
213
207
|
dni: string;
|
208
|
+
seat: number | null;
|
214
209
|
created_at: Date;
|
215
210
|
updated_at: Date;
|
216
211
|
scanned: boolean;
|
217
212
|
scannedAt: Date | null;
|
213
|
+
ticketGroupId: string | null;
|
218
214
|
}>, "many">;
|
219
215
|
}, "strip", z.ZodTypeAny, {
|
220
216
|
tickets: {
|
@@ -254,13 +250,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
254
250
|
fullName: string;
|
255
251
|
mail: string;
|
256
252
|
eventId: string;
|
257
|
-
status: "BOOKED" | "PAID" | "FREE";
|
258
|
-
seat: number | null;
|
259
253
|
dni: string;
|
254
|
+
seat: number | null;
|
260
255
|
created_at: Date;
|
261
256
|
updated_at: Date;
|
262
257
|
scanned: boolean;
|
263
258
|
scannedAt: Date | null;
|
259
|
+
ticketGroupId: string | null;
|
264
260
|
}[];
|
265
261
|
}, {
|
266
262
|
tickets: {
|
@@ -300,13 +296,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
300
296
|
fullName: string;
|
301
297
|
mail: string;
|
302
298
|
eventId: string;
|
303
|
-
status: "BOOKED" | "PAID" | "FREE";
|
304
|
-
seat: number | null;
|
305
299
|
dni: string;
|
300
|
+
seat: number | null;
|
306
301
|
created_at: Date;
|
307
302
|
updated_at: Date;
|
308
303
|
scanned: boolean;
|
309
304
|
scannedAt: Date | null;
|
305
|
+
ticketGroupId: string | null;
|
310
306
|
}[];
|
311
307
|
}>;
|
312
308
|
declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -318,17 +314,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
318
314
|
STAFF: "STAFF";
|
319
315
|
SPECTATOR: "SPECTATOR";
|
320
316
|
}>;
|
321
|
-
status: z.ZodNativeEnum<{
|
322
|
-
BOOKED: "BOOKED";
|
323
|
-
PAID: "PAID";
|
324
|
-
FREE: "FREE";
|
325
|
-
}>;
|
326
317
|
fullName: z.ZodString;
|
327
318
|
mail: z.ZodString;
|
328
319
|
dni: z.ZodString;
|
329
320
|
seat: z.ZodNullable<z.ZodNumber>;
|
330
321
|
scanned: z.ZodBoolean;
|
331
322
|
scannedAt: z.ZodNullable<z.ZodString>;
|
323
|
+
ticketGroupId: z.ZodNullable<z.ZodString>;
|
332
324
|
created_at: z.ZodString;
|
333
325
|
updated_at: z.ZodString;
|
334
326
|
event: z.ZodObject<{
|
@@ -463,13 +455,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
463
455
|
fullName: string;
|
464
456
|
mail: string;
|
465
457
|
eventId: string;
|
466
|
-
status: "BOOKED" | "PAID" | "FREE";
|
467
|
-
seat: number | null;
|
468
458
|
dni: string;
|
459
|
+
seat: number | null;
|
469
460
|
created_at: string;
|
470
461
|
updated_at: string;
|
471
462
|
scanned: boolean;
|
472
463
|
scannedAt: string | null;
|
464
|
+
ticketGroupId: string | null;
|
473
465
|
}, {
|
474
466
|
event: {
|
475
467
|
location: string;
|
@@ -507,13 +499,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
507
499
|
fullName: string;
|
508
500
|
mail: string;
|
509
501
|
eventId: string;
|
510
|
-
status: "BOOKED" | "PAID" | "FREE";
|
511
|
-
seat: number | null;
|
512
502
|
dni: string;
|
503
|
+
seat: number | null;
|
513
504
|
created_at: string;
|
514
505
|
updated_at: string;
|
515
506
|
scanned: boolean;
|
516
507
|
scannedAt: string | null;
|
508
|
+
ticketGroupId: string | null;
|
517
509
|
}>, "many">;
|
518
510
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
519
511
|
tickets: {
|
@@ -553,13 +545,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
553
545
|
fullName: string;
|
554
546
|
mail: string;
|
555
547
|
eventId: string;
|
556
|
-
status: "BOOKED" | "PAID" | "FREE";
|
557
|
-
seat: number | null;
|
558
548
|
dni: string;
|
549
|
+
seat: number | null;
|
559
550
|
created_at: string;
|
560
551
|
updated_at: string;
|
561
552
|
scanned: boolean;
|
562
553
|
scannedAt: string | null;
|
554
|
+
ticketGroupId: string | null;
|
563
555
|
}[];
|
564
556
|
}, {
|
565
557
|
tickets: {
|
@@ -599,13 +591,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
599
591
|
fullName: string;
|
600
592
|
mail: string;
|
601
593
|
eventId: string;
|
602
|
-
status: "BOOKED" | "PAID" | "FREE";
|
603
|
-
seat: number | null;
|
604
594
|
dni: string;
|
595
|
+
seat: number | null;
|
605
596
|
created_at: string;
|
606
597
|
updated_at: string;
|
607
598
|
scanned: boolean;
|
608
599
|
scannedAt: string | null;
|
600
|
+
ticketGroupId: string | null;
|
609
601
|
}[];
|
610
602
|
}>>;
|
611
603
|
export declare class FindByMailTicketResponseDto extends FindByMailTicketResponseDto_base {
|