expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.2 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,23 +1,24 @@
1
- export declare const createManyTicketSchema: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
2
- id: import("zod").ZodString;
3
- eventId: import("zod").ZodString;
4
- type: import("zod").ZodNativeEnum<{
1
+ import z from 'zod';
2
+ export declare const createManyTicketSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
3
+ id: z.ZodString;
4
+ eventId: z.ZodString;
5
+ type: z.ZodNativeEnum<{
5
6
  PARTICIPANT: "PARTICIPANT";
6
7
  STAFF: "STAFF";
7
8
  SPECTATOR: "SPECTATOR";
8
9
  }>;
9
- status: import("zod").ZodNativeEnum<{
10
+ status: z.ZodNativeEnum<{
10
11
  BOOKED: "BOOKED";
11
12
  PAID: "PAID";
12
13
  FREE: "FREE";
13
14
  }>;
14
- fullName: import("zod").ZodString;
15
- mail: import("zod").ZodString;
16
- created_at: import("zod").ZodDate;
17
- updated_at: import("zod").ZodDate;
15
+ fullName: z.ZodString;
16
+ mail: z.ZodString;
17
+ created_at: z.ZodDate;
18
+ updated_at: z.ZodDate;
18
19
  }, "type" | "fullName" | "mail" | "eventId" | "status">, {
19
- profileId: import("zod").ZodOptional<import("zod").ZodString>;
20
- }>, "strip", import("zod").ZodTypeAny, {
20
+ profileId: z.ZodOptional<z.ZodString>;
21
+ }>, "strip", z.ZodTypeAny, {
21
22
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
22
23
  fullName: string;
23
24
  mail: string;
@@ -32,22 +33,22 @@ export declare const createManyTicketSchema: import("zod").ZodArray<import("zod"
32
33
  status: "BOOKED" | "PAID" | "FREE";
33
34
  profileId?: string | undefined;
34
35
  }>, "many">;
35
- declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodArray<import("zod").ZodObject<{
36
- type: import("zod").ZodNativeEnum<{
36
+ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
37
+ type: z.ZodNativeEnum<{
37
38
  PARTICIPANT: "PARTICIPANT";
38
39
  STAFF: "STAFF";
39
40
  SPECTATOR: "SPECTATOR";
40
41
  }>;
41
- fullName: import("zod").ZodString;
42
- mail: import("zod").ZodString;
43
- eventId: import("zod").ZodString;
44
- status: import("zod").ZodNativeEnum<{
42
+ fullName: z.ZodString;
43
+ mail: z.ZodString;
44
+ eventId: z.ZodString;
45
+ status: z.ZodNativeEnum<{
45
46
  BOOKED: "BOOKED";
46
47
  PAID: "PAID";
47
48
  FREE: "FREE";
48
49
  }>;
49
- profileId: import("zod").ZodOptional<import("zod").ZodString>;
50
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
50
+ profileId: z.ZodOptional<z.ZodString>;
51
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
51
52
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
52
53
  fullName: string;
53
54
  mail: string;
@@ -64,39 +65,73 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
64
65
  }>, "many">>;
65
66
  export declare class CreateManyTicketDto extends CreateManyTicketDto_base {
66
67
  }
67
- export declare const createManyTicketResponseSchema: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
68
- id: import("zod").ZodString;
69
- eventId: import("zod").ZodString;
70
- type: import("zod").ZodNativeEnum<{
68
+ export declare const generateMultiplePdfTicketsSchema: z.ZodArray<z.ZodObject<{
69
+ ticketId: z.ZodString;
70
+ pdf: z.ZodType<Blob, z.ZodTypeDef, Blob>;
71
+ }, "strip", z.ZodTypeAny, {
72
+ pdf: Blob;
73
+ ticketId: string;
74
+ }, {
75
+ pdf: Blob;
76
+ ticketId: string;
77
+ }>, "many">;
78
+ declare const GenerateMultiplePdfTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
79
+ ticketId: z.ZodString;
80
+ pdf: z.ZodType<Blob, z.ZodTypeDef, Blob>;
81
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
82
+ pdf: Blob;
83
+ ticketId: string;
84
+ }, {
85
+ pdf: Blob;
86
+ ticketId: string;
87
+ }>, "many">>;
88
+ export declare class GenerateMultiplePdfTicketsResponseDto extends GenerateMultiplePdfTicketsResponseDto_base {
89
+ }
90
+ declare const GenerateMultiplePdfTicketsDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
91
+ ticketId: z.ZodString;
92
+ pdf: z.ZodType<Blob, z.ZodTypeDef, Blob>;
93
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
94
+ pdf: Blob;
95
+ ticketId: string;
96
+ }, {
97
+ pdf: Blob;
98
+ ticketId: string;
99
+ }>, "many">>;
100
+ export declare class GenerateMultiplePdfTicketsDto extends GenerateMultiplePdfTicketsDto_base {
101
+ }
102
+ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
103
+ id: z.ZodString;
104
+ eventId: z.ZodString;
105
+ type: z.ZodNativeEnum<{
71
106
  PARTICIPANT: "PARTICIPANT";
72
107
  STAFF: "STAFF";
73
108
  SPECTATOR: "SPECTATOR";
74
109
  }>;
75
- status: import("zod").ZodNativeEnum<{
110
+ status: z.ZodNativeEnum<{
76
111
  BOOKED: "BOOKED";
77
112
  PAID: "PAID";
78
113
  FREE: "FREE";
79
114
  }>;
80
- fullName: import("zod").ZodString;
81
- mail: import("zod").ZodString;
82
- created_at: import("zod").ZodDate;
83
- updated_at: import("zod").ZodDate;
115
+ fullName: z.ZodString;
116
+ mail: z.ZodString;
117
+ created_at: z.ZodDate;
118
+ updated_at: z.ZodDate;
84
119
  }, {
85
- event: import("zod").ZodObject<{
86
- id: import("zod").ZodString;
87
- name: import("zod").ZodString;
88
- date: import("zod").ZodDate;
89
- startingDate: import("zod").ZodDate;
90
- endingDate: import("zod").ZodDate;
91
- location: import("zod").ZodString;
92
- folderId: import("zod").ZodNullable<import("zod").ZodString>;
93
- tagAssistedId: import("zod").ZodString;
94
- tagConfirmedId: import("zod").ZodString;
95
- active: import("zod").ZodBoolean;
96
- supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
97
- created_at: import("zod").ZodDate;
98
- updated_at: import("zod").ZodDate;
99
- }, "strip", import("zod").ZodTypeAny, {
120
+ event: z.ZodObject<{
121
+ id: z.ZodString;
122
+ name: z.ZodString;
123
+ date: z.ZodDate;
124
+ startingDate: z.ZodDate;
125
+ endingDate: z.ZodDate;
126
+ location: z.ZodString;
127
+ folderId: z.ZodNullable<z.ZodString>;
128
+ tagAssistedId: z.ZodString;
129
+ tagConfirmedId: z.ZodString;
130
+ active: z.ZodBoolean;
131
+ supraEventId: z.ZodNullable<z.ZodString>;
132
+ created_at: z.ZodDate;
133
+ updated_at: z.ZodDate;
134
+ }, "strip", z.ZodTypeAny, {
100
135
  location: string;
101
136
  id: string;
102
137
  name: string;
@@ -125,7 +160,7 @@ export declare const createManyTicketResponseSchema: import("zod").ZodArray<impo
125
160
  tagConfirmedId: string;
126
161
  supraEventId: string | null;
127
162
  }>;
128
- }>, "strip", import("zod").ZodTypeAny, {
163
+ }>, "strip", z.ZodTypeAny, {
129
164
  event: {
130
165
  location: string;
131
166
  id: string;
@@ -174,38 +209,38 @@ export declare const createManyTicketResponseSchema: import("zod").ZodArray<impo
174
209
  created_at: Date;
175
210
  updated_at: Date;
176
211
  }>, "many">;
177
- declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodArray<import("zod").ZodObject<{
178
- id: import("zod").ZodString;
179
- eventId: import("zod").ZodString;
180
- type: import("zod").ZodNativeEnum<{
212
+ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
213
+ id: z.ZodString;
214
+ eventId: z.ZodString;
215
+ type: z.ZodNativeEnum<{
181
216
  PARTICIPANT: "PARTICIPANT";
182
217
  STAFF: "STAFF";
183
218
  SPECTATOR: "SPECTATOR";
184
219
  }>;
185
- status: import("zod").ZodNativeEnum<{
220
+ status: z.ZodNativeEnum<{
186
221
  BOOKED: "BOOKED";
187
222
  PAID: "PAID";
188
223
  FREE: "FREE";
189
224
  }>;
190
- fullName: import("zod").ZodString;
191
- mail: import("zod").ZodString;
192
- created_at: import("zod").ZodString;
193
- updated_at: import("zod").ZodString;
194
- event: import("zod").ZodObject<{
195
- id: import("zod").ZodString;
196
- name: import("zod").ZodString;
197
- date: import("zod").ZodString;
198
- startingDate: import("zod").ZodString;
199
- endingDate: import("zod").ZodString;
200
- location: import("zod").ZodString;
201
- folderId: import("zod").ZodNullable<import("zod").ZodString>;
202
- tagAssistedId: import("zod").ZodString;
203
- tagConfirmedId: import("zod").ZodString;
204
- active: import("zod").ZodBoolean;
205
- supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
206
- created_at: import("zod").ZodString;
207
- updated_at: import("zod").ZodString;
208
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
225
+ fullName: z.ZodString;
226
+ mail: z.ZodString;
227
+ created_at: z.ZodString;
228
+ updated_at: z.ZodString;
229
+ event: z.ZodObject<{
230
+ id: z.ZodString;
231
+ name: z.ZodString;
232
+ date: z.ZodString;
233
+ startingDate: z.ZodString;
234
+ endingDate: z.ZodString;
235
+ location: z.ZodString;
236
+ folderId: z.ZodNullable<z.ZodString>;
237
+ tagAssistedId: z.ZodString;
238
+ tagConfirmedId: z.ZodString;
239
+ active: z.ZodBoolean;
240
+ supraEventId: z.ZodNullable<z.ZodString>;
241
+ created_at: z.ZodString;
242
+ updated_at: z.ZodString;
243
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
209
244
  location: string;
210
245
  id: string;
211
246
  name: string;
@@ -234,7 +269,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
234
269
  tagConfirmedId: string;
235
270
  supraEventId: string | null;
236
271
  }>;
237
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
272
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
238
273
  event: {
239
274
  location: string;
240
275
  id: string;
@@ -285,4 +320,369 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
285
320
  }>, "many">>;
286
321
  export declare class CreateManyTicketResponseDto extends CreateManyTicketResponseDto_base {
287
322
  }
323
+ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
324
+ tickets: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
325
+ id: z.ZodString;
326
+ eventId: z.ZodString;
327
+ type: z.ZodNativeEnum<{
328
+ PARTICIPANT: "PARTICIPANT";
329
+ STAFF: "STAFF";
330
+ SPECTATOR: "SPECTATOR";
331
+ }>;
332
+ status: z.ZodNativeEnum<{
333
+ BOOKED: "BOOKED";
334
+ PAID: "PAID";
335
+ FREE: "FREE";
336
+ }>;
337
+ fullName: z.ZodString;
338
+ mail: z.ZodString;
339
+ created_at: z.ZodDate;
340
+ updated_at: z.ZodDate;
341
+ }, {
342
+ event: z.ZodObject<{
343
+ id: z.ZodString;
344
+ name: z.ZodString;
345
+ date: z.ZodDate;
346
+ startingDate: z.ZodDate;
347
+ endingDate: z.ZodDate;
348
+ location: z.ZodString;
349
+ folderId: z.ZodNullable<z.ZodString>;
350
+ tagAssistedId: z.ZodString;
351
+ tagConfirmedId: z.ZodString;
352
+ active: z.ZodBoolean;
353
+ supraEventId: z.ZodNullable<z.ZodString>;
354
+ created_at: z.ZodDate;
355
+ updated_at: z.ZodDate;
356
+ }, "strip", z.ZodTypeAny, {
357
+ location: string;
358
+ id: string;
359
+ name: string;
360
+ date: Date;
361
+ startingDate: Date;
362
+ endingDate: Date;
363
+ created_at: Date;
364
+ updated_at: Date;
365
+ active: boolean;
366
+ folderId: string | null;
367
+ tagAssistedId: string;
368
+ tagConfirmedId: string;
369
+ supraEventId: string | null;
370
+ }, {
371
+ location: string;
372
+ id: string;
373
+ name: string;
374
+ date: Date;
375
+ startingDate: Date;
376
+ endingDate: Date;
377
+ created_at: Date;
378
+ updated_at: Date;
379
+ active: boolean;
380
+ folderId: string | null;
381
+ tagAssistedId: string;
382
+ tagConfirmedId: string;
383
+ supraEventId: string | null;
384
+ }>;
385
+ }>, "strip", z.ZodTypeAny, {
386
+ event: {
387
+ location: string;
388
+ id: string;
389
+ name: string;
390
+ date: Date;
391
+ startingDate: Date;
392
+ endingDate: Date;
393
+ created_at: Date;
394
+ updated_at: Date;
395
+ active: boolean;
396
+ folderId: string | null;
397
+ tagAssistedId: string;
398
+ tagConfirmedId: string;
399
+ supraEventId: string | null;
400
+ };
401
+ id: string;
402
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
403
+ fullName: string;
404
+ mail: string;
405
+ eventId: string;
406
+ status: "BOOKED" | "PAID" | "FREE";
407
+ created_at: Date;
408
+ updated_at: Date;
409
+ }, {
410
+ event: {
411
+ location: string;
412
+ id: string;
413
+ name: string;
414
+ date: Date;
415
+ startingDate: Date;
416
+ endingDate: Date;
417
+ created_at: Date;
418
+ updated_at: Date;
419
+ active: boolean;
420
+ folderId: string | null;
421
+ tagAssistedId: string;
422
+ tagConfirmedId: string;
423
+ supraEventId: string | null;
424
+ };
425
+ id: string;
426
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
427
+ fullName: string;
428
+ mail: string;
429
+ eventId: string;
430
+ status: "BOOKED" | "PAID" | "FREE";
431
+ created_at: Date;
432
+ updated_at: Date;
433
+ }>, "many">;
434
+ pdfs: z.ZodArray<z.ZodObject<{
435
+ ticketId: z.ZodString;
436
+ pdfBase64: z.ZodString;
437
+ }, "strip", z.ZodTypeAny, {
438
+ ticketId: string;
439
+ pdfBase64: string;
440
+ }, {
441
+ ticketId: string;
442
+ pdfBase64: string;
443
+ }>, "many">;
444
+ }, "strip", z.ZodTypeAny, {
445
+ tickets: {
446
+ event: {
447
+ location: string;
448
+ id: string;
449
+ name: string;
450
+ date: Date;
451
+ startingDate: Date;
452
+ endingDate: Date;
453
+ created_at: Date;
454
+ updated_at: Date;
455
+ active: boolean;
456
+ folderId: string | null;
457
+ tagAssistedId: string;
458
+ tagConfirmedId: string;
459
+ supraEventId: string | null;
460
+ };
461
+ id: string;
462
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
463
+ fullName: string;
464
+ mail: string;
465
+ eventId: string;
466
+ status: "BOOKED" | "PAID" | "FREE";
467
+ created_at: Date;
468
+ updated_at: Date;
469
+ }[];
470
+ pdfs: {
471
+ ticketId: string;
472
+ pdfBase64: string;
473
+ }[];
474
+ }, {
475
+ tickets: {
476
+ event: {
477
+ location: string;
478
+ id: string;
479
+ name: string;
480
+ date: Date;
481
+ startingDate: Date;
482
+ endingDate: Date;
483
+ created_at: Date;
484
+ updated_at: Date;
485
+ active: boolean;
486
+ folderId: string | null;
487
+ tagAssistedId: string;
488
+ tagConfirmedId: string;
489
+ supraEventId: string | null;
490
+ };
491
+ id: string;
492
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
493
+ fullName: string;
494
+ mail: string;
495
+ eventId: string;
496
+ status: "BOOKED" | "PAID" | "FREE";
497
+ created_at: Date;
498
+ updated_at: Date;
499
+ }[];
500
+ pdfs: {
501
+ ticketId: string;
502
+ pdfBase64: string;
503
+ }[];
504
+ }>;
505
+ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
506
+ tickets: z.ZodArray<z.ZodObject<{
507
+ id: z.ZodString;
508
+ eventId: z.ZodString;
509
+ type: z.ZodNativeEnum<{
510
+ PARTICIPANT: "PARTICIPANT";
511
+ STAFF: "STAFF";
512
+ SPECTATOR: "SPECTATOR";
513
+ }>;
514
+ status: z.ZodNativeEnum<{
515
+ BOOKED: "BOOKED";
516
+ PAID: "PAID";
517
+ FREE: "FREE";
518
+ }>;
519
+ fullName: z.ZodString;
520
+ mail: z.ZodString;
521
+ created_at: z.ZodString;
522
+ updated_at: z.ZodString;
523
+ event: z.ZodObject<{
524
+ id: z.ZodString;
525
+ name: z.ZodString;
526
+ date: z.ZodString;
527
+ startingDate: z.ZodString;
528
+ endingDate: z.ZodString;
529
+ location: z.ZodString;
530
+ folderId: z.ZodNullable<z.ZodString>;
531
+ tagAssistedId: z.ZodString;
532
+ tagConfirmedId: z.ZodString;
533
+ active: z.ZodBoolean;
534
+ supraEventId: z.ZodNullable<z.ZodString>;
535
+ created_at: z.ZodString;
536
+ updated_at: z.ZodString;
537
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
538
+ location: string;
539
+ id: string;
540
+ name: string;
541
+ date: string;
542
+ startingDate: string;
543
+ endingDate: string;
544
+ created_at: string;
545
+ updated_at: string;
546
+ active: boolean;
547
+ folderId: string | null;
548
+ tagAssistedId: string;
549
+ tagConfirmedId: string;
550
+ supraEventId: string | null;
551
+ }, {
552
+ location: string;
553
+ id: string;
554
+ name: string;
555
+ date: string;
556
+ startingDate: string;
557
+ endingDate: string;
558
+ created_at: string;
559
+ updated_at: string;
560
+ active: boolean;
561
+ folderId: string | null;
562
+ tagAssistedId: string;
563
+ tagConfirmedId: string;
564
+ supraEventId: string | null;
565
+ }>;
566
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
567
+ event: {
568
+ location: string;
569
+ id: string;
570
+ name: string;
571
+ date: string;
572
+ startingDate: string;
573
+ endingDate: string;
574
+ created_at: string;
575
+ updated_at: string;
576
+ active: boolean;
577
+ folderId: string | null;
578
+ tagAssistedId: string;
579
+ tagConfirmedId: string;
580
+ supraEventId: string | null;
581
+ };
582
+ id: string;
583
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
584
+ fullName: string;
585
+ mail: string;
586
+ eventId: string;
587
+ status: "BOOKED" | "PAID" | "FREE";
588
+ created_at: string;
589
+ updated_at: string;
590
+ }, {
591
+ event: {
592
+ location: string;
593
+ id: string;
594
+ name: string;
595
+ date: string;
596
+ startingDate: string;
597
+ endingDate: string;
598
+ created_at: string;
599
+ updated_at: string;
600
+ active: boolean;
601
+ folderId: string | null;
602
+ tagAssistedId: string;
603
+ tagConfirmedId: string;
604
+ supraEventId: string | null;
605
+ };
606
+ id: string;
607
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
608
+ fullName: string;
609
+ mail: string;
610
+ eventId: string;
611
+ status: "BOOKED" | "PAID" | "FREE";
612
+ created_at: string;
613
+ updated_at: string;
614
+ }>, "many">;
615
+ pdfs: z.ZodArray<z.ZodObject<{
616
+ ticketId: z.ZodString;
617
+ pdfBase64: z.ZodString;
618
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
619
+ ticketId: string;
620
+ pdfBase64: string;
621
+ }, {
622
+ ticketId: string;
623
+ pdfBase64: string;
624
+ }>, "many">;
625
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
626
+ tickets: {
627
+ event: {
628
+ location: string;
629
+ id: string;
630
+ name: string;
631
+ date: string;
632
+ startingDate: string;
633
+ endingDate: string;
634
+ created_at: string;
635
+ updated_at: string;
636
+ active: boolean;
637
+ folderId: string | null;
638
+ tagAssistedId: string;
639
+ tagConfirmedId: string;
640
+ supraEventId: string | null;
641
+ };
642
+ id: string;
643
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
644
+ fullName: string;
645
+ mail: string;
646
+ eventId: string;
647
+ status: "BOOKED" | "PAID" | "FREE";
648
+ created_at: string;
649
+ updated_at: string;
650
+ }[];
651
+ pdfs: {
652
+ ticketId: string;
653
+ pdfBase64: string;
654
+ }[];
655
+ }, {
656
+ tickets: {
657
+ event: {
658
+ location: string;
659
+ id: string;
660
+ name: string;
661
+ date: string;
662
+ startingDate: string;
663
+ endingDate: string;
664
+ created_at: string;
665
+ updated_at: string;
666
+ active: boolean;
667
+ folderId: string | null;
668
+ tagAssistedId: string;
669
+ tagConfirmedId: string;
670
+ supraEventId: string | null;
671
+ };
672
+ id: string;
673
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
674
+ fullName: string;
675
+ mail: string;
676
+ eventId: string;
677
+ status: "BOOKED" | "PAID" | "FREE";
678
+ created_at: string;
679
+ updated_at: string;
680
+ }[];
681
+ pdfs: {
682
+ ticketId: string;
683
+ pdfBase64: string;
684
+ }[];
685
+ }>>;
686
+ export declare class CreateManyTicketWithPdfsResponseDto extends CreateManyTicketWithPdfsResponseDto_base {
687
+ }
288
688
  export {};
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateManyTicketResponseDto = exports.createManyTicketResponseSchema = exports.CreateManyTicketDto = exports.createManyTicketSchema = void 0;
6
+ exports.CreateManyTicketWithPdfsResponseDto = exports.createManyTicketWithPdfsResponseSchema = exports.CreateManyTicketResponseDto = exports.createManyTicketResponseSchema = exports.GenerateMultiplePdfTicketsDto = exports.GenerateMultiplePdfTicketsResponseDto = exports.generateMultiplePdfTicketsSchema = exports.CreateManyTicketDto = exports.createManyTicketSchema = void 0;
4
7
  const event_dto_1 = require("../../event/dto/event.dto");
5
8
  const profile_schema_1 = require("../../schema/profile.schema");
6
9
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
10
+ const zod_1 = __importDefault(require("zod"));
7
11
  const ticket_dto_1 = require("./ticket.dto");
8
12
  exports.createManyTicketSchema = ticket_dto_1.ticketSchema
9
13
  .pick({
@@ -20,6 +24,18 @@ exports.createManyTicketSchema = ticket_dto_1.ticketSchema
20
24
  class CreateManyTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketSchema) {
21
25
  }
22
26
  exports.CreateManyTicketDto = CreateManyTicketDto;
27
+ exports.generateMultiplePdfTicketsSchema = zod_1.default
28
+ .object({
29
+ ticketId: zod_1.default.string(),
30
+ pdf: zod_1.default.instanceof(Blob),
31
+ })
32
+ .array();
33
+ class GenerateMultiplePdfTicketsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.generateMultiplePdfTicketsSchema) {
34
+ }
35
+ exports.GenerateMultiplePdfTicketsResponseDto = GenerateMultiplePdfTicketsResponseDto;
36
+ class GenerateMultiplePdfTicketsDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.generateMultiplePdfTicketsSchema) {
37
+ }
38
+ exports.GenerateMultiplePdfTicketsDto = GenerateMultiplePdfTicketsDto;
23
39
  exports.createManyTicketResponseSchema = ticket_dto_1.ticketSchema
24
40
  .extend({
25
41
  event: event_dto_1.eventSchema,
@@ -28,4 +44,14 @@ exports.createManyTicketResponseSchema = ticket_dto_1.ticketSchema
28
44
  class CreateManyTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketResponseSchema) {
29
45
  }
30
46
  exports.CreateManyTicketResponseDto = CreateManyTicketResponseDto;
47
+ exports.createManyTicketWithPdfsResponseSchema = zod_1.default.object({
48
+ tickets: exports.createManyTicketResponseSchema,
49
+ pdfs: zod_1.default.array(zod_1.default.object({
50
+ ticketId: zod_1.default.string(),
51
+ pdfBase64: zod_1.default.string(),
52
+ })),
53
+ });
54
+ class CreateManyTicketWithPdfsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketWithPdfsResponseSchema) {
55
+ }
56
+ exports.CreateManyTicketWithPdfsResponseDto = CreateManyTicketWithPdfsResponseDto;
31
57
  //# sourceMappingURL=create-many-ticket.dto.js.map
@@ -2729,31 +2729,37 @@ export interface components {
2729
2729
  mail: string;
2730
2730
  profileId?: string;
2731
2731
  }[];
2732
- CreateManyTicketResponseDto: {
2733
- id: string;
2734
- eventId: string;
2735
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2736
- status: "BOOKED" | "PAID" | "FREE";
2737
- fullName: string;
2738
- mail: string;
2739
- created_at: string;
2740
- updated_at: string;
2741
- event: {
2732
+ CreateManyTicketWithPdfsResponseDto: {
2733
+ tickets: {
2742
2734
  id: string;
2743
- name: string;
2744
- date: string;
2745
- startingDate: string;
2746
- endingDate: string;
2747
- location: string;
2748
- folderId: string | null;
2749
- tagAssistedId: string;
2750
- tagConfirmedId: string;
2751
- active: boolean;
2752
- supraEventId: string | null;
2735
+ eventId: string;
2736
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2737
+ status: "BOOKED" | "PAID" | "FREE";
2738
+ fullName: string;
2739
+ mail: string;
2753
2740
  created_at: string;
2754
2741
  updated_at: string;
2755
- };
2756
- }[];
2742
+ event: {
2743
+ id: string;
2744
+ name: string;
2745
+ date: string;
2746
+ startingDate: string;
2747
+ endingDate: string;
2748
+ location: string;
2749
+ folderId: string | null;
2750
+ tagAssistedId: string;
2751
+ tagConfirmedId: string;
2752
+ active: boolean;
2753
+ supraEventId: string | null;
2754
+ created_at: string;
2755
+ updated_at: string;
2756
+ };
2757
+ }[];
2758
+ pdfs: {
2759
+ ticketId: string;
2760
+ pdfBase64: string;
2761
+ }[];
2762
+ };
2757
2763
  FindAllTicketsResponseDto: {
2758
2764
  tickets: {
2759
2765
  id: string;
@@ -5159,7 +5165,7 @@ export interface operations {
5159
5165
  [name: string]: unknown;
5160
5166
  };
5161
5167
  content: {
5162
- "application/json": components["schemas"]["CreateManyTicketResponseDto"];
5168
+ "application/json": components["schemas"]["CreateManyTicketWithPdfsResponseDto"];
5163
5169
  };
5164
5170
  };
5165
5171
  404: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.2",
3
+ "version": "0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,