expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.3 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -20
  9. package/dist/src/i18n/es.d.ts +5 -19
  10. package/dist/src/i18n/es.js +5 -19
  11. package/dist/src/i18n/es.js.map +1 -1
  12. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  13. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  14. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  15. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  16. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  17. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  18. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
  22. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
  27. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  29. package/dist/src/schema/profile.schema.d.ts +5 -5
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  32. package/dist/src/ticket/constants.d.ts +14 -95
  33. package/dist/src/ticket/constants.js +222 -254
  34. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +728 -0
  35. package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
  36. package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
  37. package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
  38. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
  39. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
  40. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
  41. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
  42. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
  43. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
  44. package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
  45. package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
  46. package/dist/src/ticket/dto/ticket.dto.js +0 -2
  47. package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
  48. package/dist/types/prisma-schema/edge.js +5 -7
  49. package/dist/types/prisma-schema/index-browser.js +2 -4
  50. package/dist/types/prisma-schema/index.d.ts +65 -193
  51. package/dist/types/prisma-schema/index.js +5 -7
  52. package/dist/types/prisma-schema/package.json +1 -1
  53. package/dist/types/prisma-schema/schema.prisma +1 -5
  54. package/dist/types/prisma-schema/wasm.js +2 -4
  55. package/dist/types/schema.d.ts +118 -100
  56. package/package.json +6 -6
  57. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  58. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -0,0 +1,728 @@
1
+ import z from 'zod';
2
+ export declare const createManyTicketSchema: z.ZodObject<{
3
+ tickets: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
4
+ id: z.ZodString;
5
+ eventId: z.ZodString;
6
+ type: z.ZodNativeEnum<{
7
+ PARTICIPANT: "PARTICIPANT";
8
+ STAFF: "STAFF";
9
+ SPECTATOR: "SPECTATOR";
10
+ }>;
11
+ status: z.ZodNativeEnum<{
12
+ BOOKED: "BOOKED";
13
+ PAID: "PAID";
14
+ FREE: "FREE";
15
+ }>;
16
+ fullName: z.ZodString;
17
+ mail: z.ZodString;
18
+ created_at: z.ZodDate;
19
+ updated_at: z.ZodDate;
20
+ }, "type" | "fullName" | "mail" | "eventId" | "status">, {
21
+ profileId: z.ZodOptional<z.ZodString>;
22
+ }>, "strip", z.ZodTypeAny, {
23
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
24
+ fullName: string;
25
+ mail: string;
26
+ eventId: string;
27
+ status: "BOOKED" | "PAID" | "FREE";
28
+ profileId?: string | undefined;
29
+ }, {
30
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
31
+ fullName: string;
32
+ mail: string;
33
+ eventId: string;
34
+ status: "BOOKED" | "PAID" | "FREE";
35
+ profileId?: string | undefined;
36
+ }>, "many">;
37
+ }, "strip", z.ZodTypeAny, {
38
+ tickets: {
39
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
40
+ fullName: string;
41
+ mail: string;
42
+ eventId: string;
43
+ status: "BOOKED" | "PAID" | "FREE";
44
+ profileId?: string | undefined;
45
+ }[];
46
+ }, {
47
+ tickets: {
48
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
49
+ fullName: string;
50
+ mail: string;
51
+ eventId: string;
52
+ status: "BOOKED" | "PAID" | "FREE";
53
+ profileId?: string | undefined;
54
+ }[];
55
+ }>;
56
+ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
57
+ tickets: z.ZodArray<z.ZodObject<{
58
+ type: z.ZodNativeEnum<{
59
+ PARTICIPANT: "PARTICIPANT";
60
+ STAFF: "STAFF";
61
+ SPECTATOR: "SPECTATOR";
62
+ }>;
63
+ fullName: z.ZodString;
64
+ mail: z.ZodString;
65
+ eventId: z.ZodString;
66
+ status: z.ZodNativeEnum<{
67
+ BOOKED: "BOOKED";
68
+ PAID: "PAID";
69
+ FREE: "FREE";
70
+ }>;
71
+ profileId: z.ZodOptional<z.ZodString>;
72
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
73
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
74
+ fullName: string;
75
+ mail: string;
76
+ eventId: string;
77
+ status: "BOOKED" | "PAID" | "FREE";
78
+ profileId?: string | undefined;
79
+ }, {
80
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
81
+ fullName: string;
82
+ mail: string;
83
+ eventId: string;
84
+ status: "BOOKED" | "PAID" | "FREE";
85
+ profileId?: string | undefined;
86
+ }>, "many">;
87
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
88
+ tickets: {
89
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
90
+ fullName: string;
91
+ mail: string;
92
+ eventId: string;
93
+ status: "BOOKED" | "PAID" | "FREE";
94
+ profileId?: string | undefined;
95
+ }[];
96
+ }, {
97
+ tickets: {
98
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
99
+ fullName: string;
100
+ mail: string;
101
+ eventId: string;
102
+ status: "BOOKED" | "PAID" | "FREE";
103
+ profileId?: string | undefined;
104
+ }[];
105
+ }>>;
106
+ export declare class CreateManyTicketDto extends CreateManyTicketDto_base {
107
+ }
108
+ export declare const generateMultiplePdfTicketsSchema: z.ZodArray<z.ZodObject<{
109
+ ticketId: z.ZodString;
110
+ pdf: z.ZodType<Blob, z.ZodTypeDef, Blob>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ pdf: Blob;
113
+ ticketId: string;
114
+ }, {
115
+ pdf: Blob;
116
+ ticketId: string;
117
+ }>, "many">;
118
+ declare const GenerateMultiplePdfTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
119
+ ticketId: z.ZodString;
120
+ pdf: z.ZodType<Blob, z.ZodTypeDef, Blob>;
121
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
122
+ pdf: Blob;
123
+ ticketId: string;
124
+ }, {
125
+ pdf: Blob;
126
+ ticketId: string;
127
+ }>, "many">>;
128
+ export declare class GenerateMultiplePdfTicketsResponseDto extends GenerateMultiplePdfTicketsResponseDto_base {
129
+ }
130
+ declare const GenerateMultiplePdfTicketsDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
131
+ ticketId: z.ZodString;
132
+ pdf: z.ZodType<Blob, z.ZodTypeDef, Blob>;
133
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
134
+ pdf: Blob;
135
+ ticketId: string;
136
+ }, {
137
+ pdf: Blob;
138
+ ticketId: string;
139
+ }>, "many">>;
140
+ export declare class GenerateMultiplePdfTicketsDto extends GenerateMultiplePdfTicketsDto_base {
141
+ }
142
+ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
143
+ id: z.ZodString;
144
+ eventId: z.ZodString;
145
+ type: z.ZodNativeEnum<{
146
+ PARTICIPANT: "PARTICIPANT";
147
+ STAFF: "STAFF";
148
+ SPECTATOR: "SPECTATOR";
149
+ }>;
150
+ status: z.ZodNativeEnum<{
151
+ BOOKED: "BOOKED";
152
+ PAID: "PAID";
153
+ FREE: "FREE";
154
+ }>;
155
+ fullName: z.ZodString;
156
+ mail: z.ZodString;
157
+ created_at: z.ZodDate;
158
+ updated_at: z.ZodDate;
159
+ }, {
160
+ event: z.ZodObject<{
161
+ id: z.ZodString;
162
+ name: z.ZodString;
163
+ date: z.ZodDate;
164
+ startingDate: z.ZodDate;
165
+ endingDate: z.ZodDate;
166
+ location: z.ZodString;
167
+ folderId: z.ZodNullable<z.ZodString>;
168
+ tagAssistedId: z.ZodString;
169
+ tagConfirmedId: z.ZodString;
170
+ active: z.ZodBoolean;
171
+ supraEventId: z.ZodNullable<z.ZodString>;
172
+ created_at: z.ZodDate;
173
+ updated_at: z.ZodDate;
174
+ }, "strip", z.ZodTypeAny, {
175
+ location: string;
176
+ id: string;
177
+ name: string;
178
+ date: Date;
179
+ startingDate: Date;
180
+ endingDate: Date;
181
+ created_at: Date;
182
+ updated_at: Date;
183
+ active: boolean;
184
+ folderId: string | null;
185
+ tagAssistedId: string;
186
+ tagConfirmedId: string;
187
+ supraEventId: string | null;
188
+ }, {
189
+ location: string;
190
+ id: string;
191
+ name: string;
192
+ date: Date;
193
+ startingDate: Date;
194
+ endingDate: Date;
195
+ created_at: Date;
196
+ updated_at: Date;
197
+ active: boolean;
198
+ folderId: string | null;
199
+ tagAssistedId: string;
200
+ tagConfirmedId: string;
201
+ supraEventId: string | null;
202
+ }>;
203
+ }>, "strip", z.ZodTypeAny, {
204
+ event: {
205
+ location: string;
206
+ id: string;
207
+ name: string;
208
+ date: Date;
209
+ startingDate: Date;
210
+ endingDate: Date;
211
+ created_at: Date;
212
+ updated_at: Date;
213
+ active: boolean;
214
+ folderId: string | null;
215
+ tagAssistedId: string;
216
+ tagConfirmedId: string;
217
+ supraEventId: string | null;
218
+ };
219
+ id: string;
220
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
221
+ fullName: string;
222
+ mail: string;
223
+ eventId: string;
224
+ status: "BOOKED" | "PAID" | "FREE";
225
+ created_at: Date;
226
+ updated_at: Date;
227
+ }, {
228
+ event: {
229
+ location: string;
230
+ id: string;
231
+ name: string;
232
+ date: Date;
233
+ startingDate: Date;
234
+ endingDate: Date;
235
+ created_at: Date;
236
+ updated_at: Date;
237
+ active: boolean;
238
+ folderId: string | null;
239
+ tagAssistedId: string;
240
+ tagConfirmedId: string;
241
+ supraEventId: string | null;
242
+ };
243
+ id: string;
244
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
245
+ fullName: string;
246
+ mail: string;
247
+ eventId: string;
248
+ status: "BOOKED" | "PAID" | "FREE";
249
+ created_at: Date;
250
+ updated_at: Date;
251
+ }>, "many">;
252
+ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
253
+ id: z.ZodString;
254
+ eventId: z.ZodString;
255
+ type: z.ZodNativeEnum<{
256
+ PARTICIPANT: "PARTICIPANT";
257
+ STAFF: "STAFF";
258
+ SPECTATOR: "SPECTATOR";
259
+ }>;
260
+ status: z.ZodNativeEnum<{
261
+ BOOKED: "BOOKED";
262
+ PAID: "PAID";
263
+ FREE: "FREE";
264
+ }>;
265
+ fullName: z.ZodString;
266
+ mail: z.ZodString;
267
+ created_at: z.ZodString;
268
+ updated_at: z.ZodString;
269
+ event: z.ZodObject<{
270
+ id: z.ZodString;
271
+ name: z.ZodString;
272
+ date: z.ZodString;
273
+ startingDate: z.ZodString;
274
+ endingDate: z.ZodString;
275
+ location: z.ZodString;
276
+ folderId: z.ZodNullable<z.ZodString>;
277
+ tagAssistedId: z.ZodString;
278
+ tagConfirmedId: z.ZodString;
279
+ active: z.ZodBoolean;
280
+ supraEventId: z.ZodNullable<z.ZodString>;
281
+ created_at: z.ZodString;
282
+ updated_at: z.ZodString;
283
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
284
+ location: string;
285
+ id: string;
286
+ name: string;
287
+ date: string;
288
+ startingDate: string;
289
+ endingDate: string;
290
+ created_at: string;
291
+ updated_at: string;
292
+ active: boolean;
293
+ folderId: string | null;
294
+ tagAssistedId: string;
295
+ tagConfirmedId: string;
296
+ supraEventId: string | null;
297
+ }, {
298
+ location: string;
299
+ id: string;
300
+ name: string;
301
+ date: string;
302
+ startingDate: string;
303
+ endingDate: string;
304
+ created_at: string;
305
+ updated_at: string;
306
+ active: boolean;
307
+ folderId: string | null;
308
+ tagAssistedId: string;
309
+ tagConfirmedId: string;
310
+ supraEventId: string | null;
311
+ }>;
312
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
313
+ event: {
314
+ location: string;
315
+ id: string;
316
+ name: string;
317
+ date: string;
318
+ startingDate: string;
319
+ endingDate: string;
320
+ created_at: string;
321
+ updated_at: string;
322
+ active: boolean;
323
+ folderId: string | null;
324
+ tagAssistedId: string;
325
+ tagConfirmedId: string;
326
+ supraEventId: string | null;
327
+ };
328
+ id: string;
329
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
330
+ fullName: string;
331
+ mail: string;
332
+ eventId: string;
333
+ status: "BOOKED" | "PAID" | "FREE";
334
+ created_at: string;
335
+ updated_at: string;
336
+ }, {
337
+ event: {
338
+ location: string;
339
+ id: string;
340
+ name: string;
341
+ date: string;
342
+ startingDate: string;
343
+ endingDate: string;
344
+ created_at: string;
345
+ updated_at: string;
346
+ active: boolean;
347
+ folderId: string | null;
348
+ tagAssistedId: string;
349
+ tagConfirmedId: string;
350
+ supraEventId: string | null;
351
+ };
352
+ id: string;
353
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
354
+ fullName: string;
355
+ mail: string;
356
+ eventId: string;
357
+ status: "BOOKED" | "PAID" | "FREE";
358
+ created_at: string;
359
+ updated_at: string;
360
+ }>, "many">>;
361
+ export declare class CreateManyTicketResponseDto extends CreateManyTicketResponseDto_base {
362
+ }
363
+ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
364
+ tickets: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
365
+ id: z.ZodString;
366
+ eventId: z.ZodString;
367
+ type: z.ZodNativeEnum<{
368
+ PARTICIPANT: "PARTICIPANT";
369
+ STAFF: "STAFF";
370
+ SPECTATOR: "SPECTATOR";
371
+ }>;
372
+ status: z.ZodNativeEnum<{
373
+ BOOKED: "BOOKED";
374
+ PAID: "PAID";
375
+ FREE: "FREE";
376
+ }>;
377
+ fullName: z.ZodString;
378
+ mail: z.ZodString;
379
+ created_at: z.ZodDate;
380
+ updated_at: z.ZodDate;
381
+ }, {
382
+ event: z.ZodObject<{
383
+ id: z.ZodString;
384
+ name: z.ZodString;
385
+ date: z.ZodDate;
386
+ startingDate: z.ZodDate;
387
+ endingDate: z.ZodDate;
388
+ location: z.ZodString;
389
+ folderId: z.ZodNullable<z.ZodString>;
390
+ tagAssistedId: z.ZodString;
391
+ tagConfirmedId: z.ZodString;
392
+ active: z.ZodBoolean;
393
+ supraEventId: z.ZodNullable<z.ZodString>;
394
+ created_at: z.ZodDate;
395
+ updated_at: z.ZodDate;
396
+ }, "strip", z.ZodTypeAny, {
397
+ location: string;
398
+ id: string;
399
+ name: string;
400
+ date: Date;
401
+ startingDate: Date;
402
+ endingDate: Date;
403
+ created_at: Date;
404
+ updated_at: Date;
405
+ active: boolean;
406
+ folderId: string | null;
407
+ tagAssistedId: string;
408
+ tagConfirmedId: string;
409
+ supraEventId: string | null;
410
+ }, {
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
+ }>, "strip", z.ZodTypeAny, {
426
+ event: {
427
+ location: string;
428
+ id: string;
429
+ name: string;
430
+ date: Date;
431
+ startingDate: Date;
432
+ endingDate: Date;
433
+ created_at: Date;
434
+ updated_at: Date;
435
+ active: boolean;
436
+ folderId: string | null;
437
+ tagAssistedId: string;
438
+ tagConfirmedId: string;
439
+ supraEventId: string | null;
440
+ };
441
+ id: string;
442
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
443
+ fullName: string;
444
+ mail: string;
445
+ eventId: string;
446
+ status: "BOOKED" | "PAID" | "FREE";
447
+ created_at: Date;
448
+ updated_at: Date;
449
+ }, {
450
+ event: {
451
+ location: string;
452
+ id: string;
453
+ name: string;
454
+ date: Date;
455
+ startingDate: Date;
456
+ endingDate: Date;
457
+ created_at: Date;
458
+ updated_at: Date;
459
+ active: boolean;
460
+ folderId: string | null;
461
+ tagAssistedId: string;
462
+ tagConfirmedId: string;
463
+ supraEventId: string | null;
464
+ };
465
+ id: string;
466
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
467
+ fullName: string;
468
+ mail: string;
469
+ eventId: string;
470
+ status: "BOOKED" | "PAID" | "FREE";
471
+ created_at: Date;
472
+ updated_at: Date;
473
+ }>, "many">;
474
+ pdfs: z.ZodArray<z.ZodObject<{
475
+ ticketId: z.ZodString;
476
+ pdfBase64: z.ZodString;
477
+ }, "strip", z.ZodTypeAny, {
478
+ ticketId: string;
479
+ pdfBase64: string;
480
+ }, {
481
+ ticketId: string;
482
+ pdfBase64: string;
483
+ }>, "many">;
484
+ }, "strip", z.ZodTypeAny, {
485
+ tickets: {
486
+ event: {
487
+ location: string;
488
+ id: string;
489
+ name: string;
490
+ date: Date;
491
+ startingDate: Date;
492
+ endingDate: Date;
493
+ created_at: Date;
494
+ updated_at: Date;
495
+ active: boolean;
496
+ folderId: string | null;
497
+ tagAssistedId: string;
498
+ tagConfirmedId: string;
499
+ supraEventId: string | null;
500
+ };
501
+ id: string;
502
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
503
+ fullName: string;
504
+ mail: string;
505
+ eventId: string;
506
+ status: "BOOKED" | "PAID" | "FREE";
507
+ created_at: Date;
508
+ updated_at: Date;
509
+ }[];
510
+ pdfs: {
511
+ ticketId: string;
512
+ pdfBase64: string;
513
+ }[];
514
+ }, {
515
+ tickets: {
516
+ event: {
517
+ location: string;
518
+ id: string;
519
+ name: string;
520
+ date: Date;
521
+ startingDate: Date;
522
+ endingDate: Date;
523
+ created_at: Date;
524
+ updated_at: Date;
525
+ active: boolean;
526
+ folderId: string | null;
527
+ tagAssistedId: string;
528
+ tagConfirmedId: string;
529
+ supraEventId: string | null;
530
+ };
531
+ id: string;
532
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
533
+ fullName: string;
534
+ mail: string;
535
+ eventId: string;
536
+ status: "BOOKED" | "PAID" | "FREE";
537
+ created_at: Date;
538
+ updated_at: Date;
539
+ }[];
540
+ pdfs: {
541
+ ticketId: string;
542
+ pdfBase64: string;
543
+ }[];
544
+ }>;
545
+ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
546
+ tickets: z.ZodArray<z.ZodObject<{
547
+ id: z.ZodString;
548
+ eventId: z.ZodString;
549
+ type: z.ZodNativeEnum<{
550
+ PARTICIPANT: "PARTICIPANT";
551
+ STAFF: "STAFF";
552
+ SPECTATOR: "SPECTATOR";
553
+ }>;
554
+ status: z.ZodNativeEnum<{
555
+ BOOKED: "BOOKED";
556
+ PAID: "PAID";
557
+ FREE: "FREE";
558
+ }>;
559
+ fullName: z.ZodString;
560
+ mail: z.ZodString;
561
+ created_at: z.ZodString;
562
+ updated_at: z.ZodString;
563
+ event: z.ZodObject<{
564
+ id: z.ZodString;
565
+ name: z.ZodString;
566
+ date: z.ZodString;
567
+ startingDate: z.ZodString;
568
+ endingDate: z.ZodString;
569
+ location: z.ZodString;
570
+ folderId: z.ZodNullable<z.ZodString>;
571
+ tagAssistedId: z.ZodString;
572
+ tagConfirmedId: z.ZodString;
573
+ active: z.ZodBoolean;
574
+ supraEventId: z.ZodNullable<z.ZodString>;
575
+ created_at: z.ZodString;
576
+ updated_at: z.ZodString;
577
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
578
+ location: string;
579
+ id: string;
580
+ name: string;
581
+ date: string;
582
+ startingDate: string;
583
+ endingDate: string;
584
+ created_at: string;
585
+ updated_at: string;
586
+ active: boolean;
587
+ folderId: string | null;
588
+ tagAssistedId: string;
589
+ tagConfirmedId: string;
590
+ supraEventId: string | null;
591
+ }, {
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
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
607
+ event: {
608
+ location: string;
609
+ id: string;
610
+ name: string;
611
+ date: string;
612
+ startingDate: string;
613
+ endingDate: string;
614
+ created_at: string;
615
+ updated_at: string;
616
+ active: boolean;
617
+ folderId: string | null;
618
+ tagAssistedId: string;
619
+ tagConfirmedId: string;
620
+ supraEventId: string | null;
621
+ };
622
+ id: string;
623
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
624
+ fullName: string;
625
+ mail: string;
626
+ eventId: string;
627
+ status: "BOOKED" | "PAID" | "FREE";
628
+ created_at: string;
629
+ updated_at: string;
630
+ }, {
631
+ event: {
632
+ location: string;
633
+ id: string;
634
+ name: string;
635
+ date: string;
636
+ startingDate: string;
637
+ endingDate: string;
638
+ created_at: string;
639
+ updated_at: string;
640
+ active: boolean;
641
+ folderId: string | null;
642
+ tagAssistedId: string;
643
+ tagConfirmedId: string;
644
+ supraEventId: string | null;
645
+ };
646
+ id: string;
647
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
648
+ fullName: string;
649
+ mail: string;
650
+ eventId: string;
651
+ status: "BOOKED" | "PAID" | "FREE";
652
+ created_at: string;
653
+ updated_at: string;
654
+ }>, "many">;
655
+ pdfs: z.ZodArray<z.ZodObject<{
656
+ ticketId: z.ZodString;
657
+ pdfBase64: z.ZodString;
658
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
659
+ ticketId: string;
660
+ pdfBase64: string;
661
+ }, {
662
+ ticketId: string;
663
+ pdfBase64: string;
664
+ }>, "many">;
665
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
666
+ tickets: {
667
+ event: {
668
+ location: string;
669
+ id: string;
670
+ name: string;
671
+ date: string;
672
+ startingDate: string;
673
+ endingDate: string;
674
+ created_at: string;
675
+ updated_at: string;
676
+ active: boolean;
677
+ folderId: string | null;
678
+ tagAssistedId: string;
679
+ tagConfirmedId: string;
680
+ supraEventId: string | null;
681
+ };
682
+ id: string;
683
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
684
+ fullName: string;
685
+ mail: string;
686
+ eventId: string;
687
+ status: "BOOKED" | "PAID" | "FREE";
688
+ created_at: string;
689
+ updated_at: string;
690
+ }[];
691
+ pdfs: {
692
+ ticketId: string;
693
+ pdfBase64: string;
694
+ }[];
695
+ }, {
696
+ tickets: {
697
+ event: {
698
+ location: string;
699
+ id: string;
700
+ name: string;
701
+ date: string;
702
+ startingDate: string;
703
+ endingDate: string;
704
+ created_at: string;
705
+ updated_at: string;
706
+ active: boolean;
707
+ folderId: string | null;
708
+ tagAssistedId: string;
709
+ tagConfirmedId: string;
710
+ supraEventId: string | null;
711
+ };
712
+ id: string;
713
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
714
+ fullName: string;
715
+ mail: string;
716
+ eventId: string;
717
+ status: "BOOKED" | "PAID" | "FREE";
718
+ created_at: string;
719
+ updated_at: string;
720
+ }[];
721
+ pdfs: {
722
+ ticketId: string;
723
+ pdfBase64: string;
724
+ }[];
725
+ }>>;
726
+ export declare class CreateManyTicketWithPdfsResponseDto extends CreateManyTicketWithPdfsResponseDto_base {
727
+ }
728
+ export {};