expo-backend-types 0.46.0 → 0.47.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.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.
Files changed (33) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +68 -2
  2. package/dist/src/event/dto/create-event.dto.js +6 -0
  3. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/event.dto.d.ts +9 -0
  5. package/dist/src/event/dto/event.dto.js +13 -0
  6. package/dist/src/event/dto/get-active-events.dto.d.ts +30 -0
  7. package/dist/src/event/dto/get-all-event.dto.d.ts +264 -0
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
  9. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  10. package/dist/src/event/dto/update-event.dto.d.ts +24 -0
  11. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  12. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  13. package/dist/src/i18n/es.d.ts +6 -0
  14. package/dist/src/i18n/es.js +6 -0
  15. package/dist/src/i18n/es.js.map +1 -1
  16. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  17. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  18. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  19. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  20. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  21. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  22. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  23. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  24. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  25. package/dist/types/prisma-schema/edge.js +6 -3
  26. package/dist/types/prisma-schema/index-browser.js +3 -0
  27. package/dist/types/prisma-schema/index.d.ts +214 -1
  28. package/dist/types/prisma-schema/index.js +6 -3
  29. package/dist/types/prisma-schema/package.json +1 -1
  30. package/dist/types/prisma-schema/schema.prisma +9 -6
  31. package/dist/types/prisma-schema/wasm.js +3 -0
  32. package/dist/types/schema.d.ts +66 -0
  33. package/package.json +1 -1
@@ -14,6 +14,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
14
14
  startingDate: z.ZodDate;
15
15
  endingDate: z.ZodDate;
16
16
  location: z.ZodString;
17
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
18
+ bannerUrl: z.ZodNullable<z.ZodString>;
19
+ description: z.ZodNullable<z.ZodString>;
17
20
  folderId: z.ZodNullable<z.ZodString>;
18
21
  tagAssistedId: z.ZodString;
19
22
  tagConfirmedId: z.ZodString;
@@ -29,6 +32,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
29
32
  startingDate: z.ZodDate;
30
33
  endingDate: z.ZodDate;
31
34
  location: z.ZodString;
35
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
36
+ bannerUrl: z.ZodNullable<z.ZodString>;
37
+ description: z.ZodNullable<z.ZodString>;
32
38
  folderId: z.ZodNullable<z.ZodString>;
33
39
  tagAssistedId: z.ZodString;
34
40
  tagConfirmedId: z.ZodString;
@@ -37,6 +43,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
37
43
  created_at: z.ZodDate;
38
44
  updated_at: z.ZodDate;
39
45
  }, "strip", z.ZodTypeAny, {
46
+ description: string | null;
40
47
  location: string;
41
48
  id: string;
42
49
  name: string;
@@ -46,11 +53,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
46
53
  created_at: Date;
47
54
  updated_at: Date;
48
55
  active: boolean;
56
+ mainPictureUrl: string | null;
57
+ bannerUrl: string | null;
49
58
  folderId: string | null;
50
59
  tagAssistedId: string;
51
60
  tagConfirmedId: string;
52
61
  supraEventId: string | null;
53
62
  }, {
63
+ description: string | null;
54
64
  location: string;
55
65
  id: string;
56
66
  name: string;
@@ -60,6 +70,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
60
70
  created_at: Date;
61
71
  updated_at: Date;
62
72
  active: boolean;
73
+ mainPictureUrl: string | null;
74
+ bannerUrl: string | null;
63
75
  folderId: string | null;
64
76
  tagAssistedId: string;
65
77
  tagConfirmedId: string;
@@ -72,6 +84,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
72
84
  startingDate: z.ZodDate;
73
85
  endingDate: z.ZodDate;
74
86
  location: z.ZodString;
87
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
88
+ bannerUrl: z.ZodNullable<z.ZodString>;
89
+ description: z.ZodNullable<z.ZodString>;
75
90
  folderId: z.ZodNullable<z.ZodString>;
76
91
  tagAssistedId: z.ZodString;
77
92
  tagConfirmedId: z.ZodString;
@@ -80,6 +95,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
80
95
  created_at: z.ZodDate;
81
96
  updated_at: z.ZodDate;
82
97
  }, "strip", z.ZodTypeAny, {
98
+ description: string | null;
83
99
  location: string;
84
100
  id: string;
85
101
  name: string;
@@ -89,11 +105,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
89
105
  created_at: Date;
90
106
  updated_at: Date;
91
107
  active: boolean;
108
+ mainPictureUrl: string | null;
109
+ bannerUrl: string | null;
92
110
  folderId: string | null;
93
111
  tagAssistedId: string;
94
112
  tagConfirmedId: string;
95
113
  supraEventId: string | null;
96
114
  }, {
115
+ description: string | null;
97
116
  location: string;
98
117
  id: string;
99
118
  name: string;
@@ -103,6 +122,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
103
122
  created_at: Date;
104
123
  updated_at: Date;
105
124
  active: boolean;
125
+ mainPictureUrl: string | null;
126
+ bannerUrl: string | null;
106
127
  folderId: string | null;
107
128
  tagAssistedId: string;
108
129
  tagConfirmedId: string;
@@ -181,6 +202,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
181
202
  price: number | null;
182
203
  }>, "many">;
183
204
  }>, "strip", z.ZodTypeAny, {
205
+ description: string | null;
184
206
  location: string;
185
207
  id: string;
186
208
  name: string;
@@ -201,11 +223,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
201
223
  isExclusive: boolean;
202
224
  };
203
225
  }[];
226
+ mainPictureUrl: string | null;
227
+ bannerUrl: string | null;
204
228
  folderId: string | null;
205
229
  tagAssistedId: string;
206
230
  tagConfirmedId: string;
207
231
  supraEventId: string | null;
208
232
  subEvents: {
233
+ description: string | null;
209
234
  location: string;
210
235
  id: string;
211
236
  name: string;
@@ -215,6 +240,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
215
240
  created_at: Date;
216
241
  updated_at: Date;
217
242
  active: boolean;
243
+ mainPictureUrl: string | null;
244
+ bannerUrl: string | null;
218
245
  folderId: string | null;
219
246
  tagAssistedId: string;
220
247
  tagConfirmedId: string;
@@ -227,6 +254,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
227
254
  price: number | null;
228
255
  }[];
229
256
  supraEvent: {
257
+ description: string | null;
230
258
  location: string;
231
259
  id: string;
232
260
  name: string;
@@ -236,12 +264,15 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
236
264
  created_at: Date;
237
265
  updated_at: Date;
238
266
  active: boolean;
267
+ mainPictureUrl: string | null;
268
+ bannerUrl: string | null;
239
269
  folderId: string | null;
240
270
  tagAssistedId: string;
241
271
  tagConfirmedId: string;
242
272
  supraEventId: string | null;
243
273
  } | null;
244
274
  }, {
275
+ description: string | null;
245
276
  location: string;
246
277
  id: string;
247
278
  name: string;
@@ -262,11 +293,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
262
293
  isExclusive: boolean;
263
294
  };
264
295
  }[];
296
+ mainPictureUrl: string | null;
297
+ bannerUrl: string | null;
265
298
  folderId: string | null;
266
299
  tagAssistedId: string;
267
300
  tagConfirmedId: string;
268
301
  supraEventId: string | null;
269
302
  subEvents: {
303
+ description: string | null;
270
304
  location: string;
271
305
  id: string;
272
306
  name: string;
@@ -276,6 +310,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
276
310
  created_at: Date;
277
311
  updated_at: Date;
278
312
  active: boolean;
313
+ mainPictureUrl: string | null;
314
+ bannerUrl: string | null;
279
315
  folderId: string | null;
280
316
  tagAssistedId: string;
281
317
  tagConfirmedId: string;
@@ -288,6 +324,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
288
324
  price: number | null;
289
325
  }[];
290
326
  supraEvent: {
327
+ description: string | null;
291
328
  location: string;
292
329
  id: string;
293
330
  name: string;
@@ -297,6 +334,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
297
334
  created_at: Date;
298
335
  updated_at: Date;
299
336
  active: boolean;
337
+ mainPictureUrl: string | null;
338
+ bannerUrl: string | null;
300
339
  folderId: string | null;
301
340
  tagAssistedId: string;
302
341
  tagConfirmedId: string;
@@ -310,6 +349,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
310
349
  created_at: Date;
311
350
  updated_at: Date;
312
351
  events: {
352
+ description: string | null;
313
353
  location: string;
314
354
  id: string;
315
355
  name: string;
@@ -330,11 +370,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
330
370
  isExclusive: boolean;
331
371
  };
332
372
  }[];
373
+ mainPictureUrl: string | null;
374
+ bannerUrl: string | null;
333
375
  folderId: string | null;
334
376
  tagAssistedId: string;
335
377
  tagConfirmedId: string;
336
378
  supraEventId: string | null;
337
379
  subEvents: {
380
+ description: string | null;
338
381
  location: string;
339
382
  id: string;
340
383
  name: string;
@@ -344,6 +387,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
344
387
  created_at: Date;
345
388
  updated_at: Date;
346
389
  active: boolean;
390
+ mainPictureUrl: string | null;
391
+ bannerUrl: string | null;
347
392
  folderId: string | null;
348
393
  tagAssistedId: string;
349
394
  tagConfirmedId: string;
@@ -356,6 +401,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
356
401
  price: number | null;
357
402
  }[];
358
403
  supraEvent: {
404
+ description: string | null;
359
405
  location: string;
360
406
  id: string;
361
407
  name: string;
@@ -365,6 +411,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
365
411
  created_at: Date;
366
412
  updated_at: Date;
367
413
  active: boolean;
414
+ mainPictureUrl: string | null;
415
+ bannerUrl: string | null;
368
416
  folderId: string | null;
369
417
  tagAssistedId: string;
370
418
  tagConfirmedId: string;
@@ -378,6 +426,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
378
426
  created_at: Date;
379
427
  updated_at: Date;
380
428
  events: {
429
+ description: string | null;
381
430
  location: string;
382
431
  id: string;
383
432
  name: string;
@@ -398,11 +447,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
398
447
  isExclusive: boolean;
399
448
  };
400
449
  }[];
450
+ mainPictureUrl: string | null;
451
+ bannerUrl: string | null;
401
452
  folderId: string | null;
402
453
  tagAssistedId: string;
403
454
  tagConfirmedId: string;
404
455
  supraEventId: string | null;
405
456
  subEvents: {
457
+ description: string | null;
406
458
  location: string;
407
459
  id: string;
408
460
  name: string;
@@ -412,6 +464,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
412
464
  created_at: Date;
413
465
  updated_at: Date;
414
466
  active: boolean;
467
+ mainPictureUrl: string | null;
468
+ bannerUrl: string | null;
415
469
  folderId: string | null;
416
470
  tagAssistedId: string;
417
471
  tagConfirmedId: string;
@@ -424,6 +478,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
424
478
  price: number | null;
425
479
  }[];
426
480
  supraEvent: {
481
+ description: string | null;
427
482
  location: string;
428
483
  id: string;
429
484
  name: string;
@@ -433,6 +488,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
433
488
  created_at: Date;
434
489
  updated_at: Date;
435
490
  active: boolean;
491
+ mainPictureUrl: string | null;
492
+ bannerUrl: string | null;
436
493
  folderId: string | null;
437
494
  tagAssistedId: string;
438
495
  tagConfirmedId: string;
@@ -447,6 +504,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
447
504
  startingDate: z.ZodDate;
448
505
  endingDate: z.ZodDate;
449
506
  location: z.ZodString;
507
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
508
+ bannerUrl: z.ZodNullable<z.ZodString>;
509
+ description: z.ZodNullable<z.ZodString>;
450
510
  folderId: z.ZodNullable<z.ZodString>;
451
511
  tagAssistedId: z.ZodString;
452
512
  tagConfirmedId: z.ZodString;
@@ -462,6 +522,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
462
522
  startingDate: z.ZodDate;
463
523
  endingDate: z.ZodDate;
464
524
  location: z.ZodString;
525
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
526
+ bannerUrl: z.ZodNullable<z.ZodString>;
527
+ description: z.ZodNullable<z.ZodString>;
465
528
  folderId: z.ZodNullable<z.ZodString>;
466
529
  tagAssistedId: z.ZodString;
467
530
  tagConfirmedId: z.ZodString;
@@ -470,6 +533,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
470
533
  created_at: z.ZodDate;
471
534
  updated_at: z.ZodDate;
472
535
  }, "strip", z.ZodTypeAny, {
536
+ description: string | null;
473
537
  location: string;
474
538
  id: string;
475
539
  name: string;
@@ -479,11 +543,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
479
543
  created_at: Date;
480
544
  updated_at: Date;
481
545
  active: boolean;
546
+ mainPictureUrl: string | null;
547
+ bannerUrl: string | null;
482
548
  folderId: string | null;
483
549
  tagAssistedId: string;
484
550
  tagConfirmedId: string;
485
551
  supraEventId: string | null;
486
552
  }, {
553
+ description: string | null;
487
554
  location: string;
488
555
  id: string;
489
556
  name: string;
@@ -493,6 +560,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
493
560
  created_at: Date;
494
561
  updated_at: Date;
495
562
  active: boolean;
563
+ mainPictureUrl: string | null;
564
+ bannerUrl: string | null;
496
565
  folderId: string | null;
497
566
  tagAssistedId: string;
498
567
  tagConfirmedId: string;
@@ -505,6 +574,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
505
574
  startingDate: z.ZodDate;
506
575
  endingDate: z.ZodDate;
507
576
  location: z.ZodString;
577
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
578
+ bannerUrl: z.ZodNullable<z.ZodString>;
579
+ description: z.ZodNullable<z.ZodString>;
508
580
  folderId: z.ZodNullable<z.ZodString>;
509
581
  tagAssistedId: z.ZodString;
510
582
  tagConfirmedId: z.ZodString;
@@ -513,6 +585,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
513
585
  created_at: z.ZodDate;
514
586
  updated_at: z.ZodDate;
515
587
  }, "strip", z.ZodTypeAny, {
588
+ description: string | null;
516
589
  location: string;
517
590
  id: string;
518
591
  name: string;
@@ -522,11 +595,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
522
595
  created_at: Date;
523
596
  updated_at: Date;
524
597
  active: boolean;
598
+ mainPictureUrl: string | null;
599
+ bannerUrl: string | null;
525
600
  folderId: string | null;
526
601
  tagAssistedId: string;
527
602
  tagConfirmedId: string;
528
603
  supraEventId: string | null;
529
604
  }, {
605
+ description: string | null;
530
606
  location: string;
531
607
  id: string;
532
608
  name: string;
@@ -536,6 +612,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
536
612
  created_at: Date;
537
613
  updated_at: Date;
538
614
  active: boolean;
615
+ mainPictureUrl: string | null;
616
+ bannerUrl: string | null;
539
617
  folderId: string | null;
540
618
  tagAssistedId: string;
541
619
  tagConfirmedId: string;
@@ -614,6 +692,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
614
692
  price: number | null;
615
693
  }>, "many">;
616
694
  }>, "strip", z.ZodTypeAny, {
695
+ description: string | null;
617
696
  location: string;
618
697
  id: string;
619
698
  name: string;
@@ -634,11 +713,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
634
713
  isExclusive: boolean;
635
714
  };
636
715
  }[];
716
+ mainPictureUrl: string | null;
717
+ bannerUrl: string | null;
637
718
  folderId: string | null;
638
719
  tagAssistedId: string;
639
720
  tagConfirmedId: string;
640
721
  supraEventId: string | null;
641
722
  subEvents: {
723
+ description: string | null;
642
724
  location: string;
643
725
  id: string;
644
726
  name: string;
@@ -648,6 +730,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
648
730
  created_at: Date;
649
731
  updated_at: Date;
650
732
  active: boolean;
733
+ mainPictureUrl: string | null;
734
+ bannerUrl: string | null;
651
735
  folderId: string | null;
652
736
  tagAssistedId: string;
653
737
  tagConfirmedId: string;
@@ -660,6 +744,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
660
744
  price: number | null;
661
745
  }[];
662
746
  supraEvent: {
747
+ description: string | null;
663
748
  location: string;
664
749
  id: string;
665
750
  name: string;
@@ -669,12 +754,15 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
669
754
  created_at: Date;
670
755
  updated_at: Date;
671
756
  active: boolean;
757
+ mainPictureUrl: string | null;
758
+ bannerUrl: string | null;
672
759
  folderId: string | null;
673
760
  tagAssistedId: string;
674
761
  tagConfirmedId: string;
675
762
  supraEventId: string | null;
676
763
  } | null;
677
764
  }, {
765
+ description: string | null;
678
766
  location: string;
679
767
  id: string;
680
768
  name: string;
@@ -695,11 +783,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
695
783
  isExclusive: boolean;
696
784
  };
697
785
  }[];
786
+ mainPictureUrl: string | null;
787
+ bannerUrl: string | null;
698
788
  folderId: string | null;
699
789
  tagAssistedId: string;
700
790
  tagConfirmedId: string;
701
791
  supraEventId: string | null;
702
792
  subEvents: {
793
+ description: string | null;
703
794
  location: string;
704
795
  id: string;
705
796
  name: string;
@@ -709,6 +800,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
709
800
  created_at: Date;
710
801
  updated_at: Date;
711
802
  active: boolean;
803
+ mainPictureUrl: string | null;
804
+ bannerUrl: string | null;
712
805
  folderId: string | null;
713
806
  tagAssistedId: string;
714
807
  tagConfirmedId: string;
@@ -721,6 +814,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
721
814
  price: number | null;
722
815
  }[];
723
816
  supraEvent: {
817
+ description: string | null;
724
818
  location: string;
725
819
  id: string;
726
820
  name: string;
@@ -730,6 +824,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
730
824
  created_at: Date;
731
825
  updated_at: Date;
732
826
  active: boolean;
827
+ mainPictureUrl: string | null;
828
+ bannerUrl: string | null;
733
829
  folderId: string | null;
734
830
  tagAssistedId: string;
735
831
  tagConfirmedId: string;
@@ -744,6 +840,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
744
840
  created_at: Date;
745
841
  updated_at: Date;
746
842
  events: {
843
+ description: string | null;
747
844
  location: string;
748
845
  id: string;
749
846
  name: string;
@@ -764,11 +861,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
764
861
  isExclusive: boolean;
765
862
  };
766
863
  }[];
864
+ mainPictureUrl: string | null;
865
+ bannerUrl: string | null;
767
866
  folderId: string | null;
768
867
  tagAssistedId: string;
769
868
  tagConfirmedId: string;
770
869
  supraEventId: string | null;
771
870
  subEvents: {
871
+ description: string | null;
772
872
  location: string;
773
873
  id: string;
774
874
  name: string;
@@ -778,6 +878,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
778
878
  created_at: Date;
779
879
  updated_at: Date;
780
880
  active: boolean;
881
+ mainPictureUrl: string | null;
882
+ bannerUrl: string | null;
781
883
  folderId: string | null;
782
884
  tagAssistedId: string;
783
885
  tagConfirmedId: string;
@@ -790,6 +892,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
790
892
  price: number | null;
791
893
  }[];
792
894
  supraEvent: {
895
+ description: string | null;
793
896
  location: string;
794
897
  id: string;
795
898
  name: string;
@@ -799,6 +902,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
799
902
  created_at: Date;
800
903
  updated_at: Date;
801
904
  active: boolean;
905
+ mainPictureUrl: string | null;
906
+ bannerUrl: string | null;
802
907
  folderId: string | null;
803
908
  tagAssistedId: string;
804
909
  tagConfirmedId: string;
@@ -807,6 +912,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
807
912
  }[];
808
913
  }[];
809
914
  withoutFolder: {
915
+ description: string | null;
810
916
  location: string;
811
917
  id: string;
812
918
  name: string;
@@ -827,11 +933,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
827
933
  isExclusive: boolean;
828
934
  };
829
935
  }[];
936
+ mainPictureUrl: string | null;
937
+ bannerUrl: string | null;
830
938
  folderId: string | null;
831
939
  tagAssistedId: string;
832
940
  tagConfirmedId: string;
833
941
  supraEventId: string | null;
834
942
  subEvents: {
943
+ description: string | null;
835
944
  location: string;
836
945
  id: string;
837
946
  name: string;
@@ -841,6 +950,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
841
950
  created_at: Date;
842
951
  updated_at: Date;
843
952
  active: boolean;
953
+ mainPictureUrl: string | null;
954
+ bannerUrl: string | null;
844
955
  folderId: string | null;
845
956
  tagAssistedId: string;
846
957
  tagConfirmedId: string;
@@ -853,6 +964,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
853
964
  price: number | null;
854
965
  }[];
855
966
  supraEvent: {
967
+ description: string | null;
856
968
  location: string;
857
969
  id: string;
858
970
  name: string;
@@ -862,6 +974,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
862
974
  created_at: Date;
863
975
  updated_at: Date;
864
976
  active: boolean;
977
+ mainPictureUrl: string | null;
978
+ bannerUrl: string | null;
865
979
  folderId: string | null;
866
980
  tagAssistedId: string;
867
981
  tagConfirmedId: string;
@@ -876,6 +990,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
876
990
  created_at: Date;
877
991
  updated_at: Date;
878
992
  events: {
993
+ description: string | null;
879
994
  location: string;
880
995
  id: string;
881
996
  name: string;
@@ -896,11 +1011,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
896
1011
  isExclusive: boolean;
897
1012
  };
898
1013
  }[];
1014
+ mainPictureUrl: string | null;
1015
+ bannerUrl: string | null;
899
1016
  folderId: string | null;
900
1017
  tagAssistedId: string;
901
1018
  tagConfirmedId: string;
902
1019
  supraEventId: string | null;
903
1020
  subEvents: {
1021
+ description: string | null;
904
1022
  location: string;
905
1023
  id: string;
906
1024
  name: string;
@@ -910,6 +1028,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
910
1028
  created_at: Date;
911
1029
  updated_at: Date;
912
1030
  active: boolean;
1031
+ mainPictureUrl: string | null;
1032
+ bannerUrl: string | null;
913
1033
  folderId: string | null;
914
1034
  tagAssistedId: string;
915
1035
  tagConfirmedId: string;
@@ -922,6 +1042,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
922
1042
  price: number | null;
923
1043
  }[];
924
1044
  supraEvent: {
1045
+ description: string | null;
925
1046
  location: string;
926
1047
  id: string;
927
1048
  name: string;
@@ -931,6 +1052,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
931
1052
  created_at: Date;
932
1053
  updated_at: Date;
933
1054
  active: boolean;
1055
+ mainPictureUrl: string | null;
1056
+ bannerUrl: string | null;
934
1057
  folderId: string | null;
935
1058
  tagAssistedId: string;
936
1059
  tagConfirmedId: string;
@@ -939,6 +1062,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
939
1062
  }[];
940
1063
  }[];
941
1064
  withoutFolder: {
1065
+ description: string | null;
942
1066
  location: string;
943
1067
  id: string;
944
1068
  name: string;
@@ -959,11 +1083,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
959
1083
  isExclusive: boolean;
960
1084
  };
961
1085
  }[];
1086
+ mainPictureUrl: string | null;
1087
+ bannerUrl: string | null;
962
1088
  folderId: string | null;
963
1089
  tagAssistedId: string;
964
1090
  tagConfirmedId: string;
965
1091
  supraEventId: string | null;
966
1092
  subEvents: {
1093
+ description: string | null;
967
1094
  location: string;
968
1095
  id: string;
969
1096
  name: string;
@@ -973,6 +1100,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
973
1100
  created_at: Date;
974
1101
  updated_at: Date;
975
1102
  active: boolean;
1103
+ mainPictureUrl: string | null;
1104
+ bannerUrl: string | null;
976
1105
  folderId: string | null;
977
1106
  tagAssistedId: string;
978
1107
  tagConfirmedId: string;
@@ -985,6 +1114,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
985
1114
  price: number | null;
986
1115
  }[];
987
1116
  supraEvent: {
1117
+ description: string | null;
988
1118
  location: string;
989
1119
  id: string;
990
1120
  name: string;
@@ -994,6 +1124,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
994
1124
  created_at: Date;
995
1125
  updated_at: Date;
996
1126
  active: boolean;
1127
+ mainPictureUrl: string | null;
1128
+ bannerUrl: string | null;
997
1129
  folderId: string | null;
998
1130
  tagAssistedId: string;
999
1131
  tagConfirmedId: string;
@@ -1015,6 +1147,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1015
1147
  startingDate: z.ZodString;
1016
1148
  endingDate: z.ZodString;
1017
1149
  location: z.ZodString;
1150
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1151
+ bannerUrl: z.ZodNullable<z.ZodString>;
1152
+ description: z.ZodNullable<z.ZodString>;
1018
1153
  folderId: z.ZodNullable<z.ZodString>;
1019
1154
  tagAssistedId: z.ZodString;
1020
1155
  tagConfirmedId: z.ZodString;
@@ -1029,6 +1164,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1029
1164
  startingDate: z.ZodString;
1030
1165
  endingDate: z.ZodString;
1031
1166
  location: z.ZodString;
1167
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1168
+ bannerUrl: z.ZodNullable<z.ZodString>;
1169
+ description: z.ZodNullable<z.ZodString>;
1032
1170
  folderId: z.ZodNullable<z.ZodString>;
1033
1171
  tagAssistedId: z.ZodString;
1034
1172
  tagConfirmedId: z.ZodString;
@@ -1037,6 +1175,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1037
1175
  created_at: z.ZodString;
1038
1176
  updated_at: z.ZodString;
1039
1177
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1178
+ description: string | null;
1040
1179
  location: string;
1041
1180
  id: string;
1042
1181
  name: string;
@@ -1046,11 +1185,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1046
1185
  created_at: string;
1047
1186
  updated_at: string;
1048
1187
  active: boolean;
1188
+ mainPictureUrl: string | null;
1189
+ bannerUrl: string | null;
1049
1190
  folderId: string | null;
1050
1191
  tagAssistedId: string;
1051
1192
  tagConfirmedId: string;
1052
1193
  supraEventId: string | null;
1053
1194
  }, {
1195
+ description: string | null;
1054
1196
  location: string;
1055
1197
  id: string;
1056
1198
  name: string;
@@ -1060,6 +1202,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1060
1202
  created_at: string;
1061
1203
  updated_at: string;
1062
1204
  active: boolean;
1205
+ mainPictureUrl: string | null;
1206
+ bannerUrl: string | null;
1063
1207
  folderId: string | null;
1064
1208
  tagAssistedId: string;
1065
1209
  tagConfirmedId: string;
@@ -1072,6 +1216,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1072
1216
  startingDate: z.ZodString;
1073
1217
  endingDate: z.ZodString;
1074
1218
  location: z.ZodString;
1219
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1220
+ bannerUrl: z.ZodNullable<z.ZodString>;
1221
+ description: z.ZodNullable<z.ZodString>;
1075
1222
  folderId: z.ZodNullable<z.ZodString>;
1076
1223
  tagAssistedId: z.ZodString;
1077
1224
  tagConfirmedId: z.ZodString;
@@ -1080,6 +1227,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1080
1227
  created_at: z.ZodString;
1081
1228
  updated_at: z.ZodString;
1082
1229
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1230
+ description: string | null;
1083
1231
  location: string;
1084
1232
  id: string;
1085
1233
  name: string;
@@ -1089,11 +1237,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1089
1237
  created_at: string;
1090
1238
  updated_at: string;
1091
1239
  active: boolean;
1240
+ mainPictureUrl: string | null;
1241
+ bannerUrl: string | null;
1092
1242
  folderId: string | null;
1093
1243
  tagAssistedId: string;
1094
1244
  tagConfirmedId: string;
1095
1245
  supraEventId: string | null;
1096
1246
  }, {
1247
+ description: string | null;
1097
1248
  location: string;
1098
1249
  id: string;
1099
1250
  name: string;
@@ -1103,6 +1254,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1103
1254
  created_at: string;
1104
1255
  updated_at: string;
1105
1256
  active: boolean;
1257
+ mainPictureUrl: string | null;
1258
+ bannerUrl: string | null;
1106
1259
  folderId: string | null;
1107
1260
  tagAssistedId: string;
1108
1261
  tagConfirmedId: string;
@@ -1175,6 +1328,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1175
1328
  price: number | null;
1176
1329
  }>, "many">;
1177
1330
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1331
+ description: string | null;
1178
1332
  location: string;
1179
1333
  id: string;
1180
1334
  name: string;
@@ -1195,11 +1349,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1195
1349
  isExclusive: boolean;
1196
1350
  };
1197
1351
  }[];
1352
+ mainPictureUrl: string | null;
1353
+ bannerUrl: string | null;
1198
1354
  folderId: string | null;
1199
1355
  tagAssistedId: string;
1200
1356
  tagConfirmedId: string;
1201
1357
  supraEventId: string | null;
1202
1358
  subEvents: {
1359
+ description: string | null;
1203
1360
  location: string;
1204
1361
  id: string;
1205
1362
  name: string;
@@ -1209,6 +1366,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1209
1366
  created_at: string;
1210
1367
  updated_at: string;
1211
1368
  active: boolean;
1369
+ mainPictureUrl: string | null;
1370
+ bannerUrl: string | null;
1212
1371
  folderId: string | null;
1213
1372
  tagAssistedId: string;
1214
1373
  tagConfirmedId: string;
@@ -1221,6 +1380,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1221
1380
  price: number | null;
1222
1381
  }[];
1223
1382
  supraEvent: {
1383
+ description: string | null;
1224
1384
  location: string;
1225
1385
  id: string;
1226
1386
  name: string;
@@ -1230,12 +1390,15 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1230
1390
  created_at: string;
1231
1391
  updated_at: string;
1232
1392
  active: boolean;
1393
+ mainPictureUrl: string | null;
1394
+ bannerUrl: string | null;
1233
1395
  folderId: string | null;
1234
1396
  tagAssistedId: string;
1235
1397
  tagConfirmedId: string;
1236
1398
  supraEventId: string | null;
1237
1399
  } | null;
1238
1400
  }, {
1401
+ description: string | null;
1239
1402
  location: string;
1240
1403
  id: string;
1241
1404
  name: string;
@@ -1256,11 +1419,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1256
1419
  isExclusive: boolean;
1257
1420
  };
1258
1421
  }[];
1422
+ mainPictureUrl: string | null;
1423
+ bannerUrl: string | null;
1259
1424
  folderId: string | null;
1260
1425
  tagAssistedId: string;
1261
1426
  tagConfirmedId: string;
1262
1427
  supraEventId: string | null;
1263
1428
  subEvents: {
1429
+ description: string | null;
1264
1430
  location: string;
1265
1431
  id: string;
1266
1432
  name: string;
@@ -1270,6 +1436,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1270
1436
  created_at: string;
1271
1437
  updated_at: string;
1272
1438
  active: boolean;
1439
+ mainPictureUrl: string | null;
1440
+ bannerUrl: string | null;
1273
1441
  folderId: string | null;
1274
1442
  tagAssistedId: string;
1275
1443
  tagConfirmedId: string;
@@ -1282,6 +1450,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1282
1450
  price: number | null;
1283
1451
  }[];
1284
1452
  supraEvent: {
1453
+ description: string | null;
1285
1454
  location: string;
1286
1455
  id: string;
1287
1456
  name: string;
@@ -1291,6 +1460,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1291
1460
  created_at: string;
1292
1461
  updated_at: string;
1293
1462
  active: boolean;
1463
+ mainPictureUrl: string | null;
1464
+ bannerUrl: string | null;
1294
1465
  folderId: string | null;
1295
1466
  tagAssistedId: string;
1296
1467
  tagConfirmedId: string;
@@ -1304,6 +1475,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1304
1475
  created_at: string;
1305
1476
  updated_at: string;
1306
1477
  events: {
1478
+ description: string | null;
1307
1479
  location: string;
1308
1480
  id: string;
1309
1481
  name: string;
@@ -1324,11 +1496,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1324
1496
  isExclusive: boolean;
1325
1497
  };
1326
1498
  }[];
1499
+ mainPictureUrl: string | null;
1500
+ bannerUrl: string | null;
1327
1501
  folderId: string | null;
1328
1502
  tagAssistedId: string;
1329
1503
  tagConfirmedId: string;
1330
1504
  supraEventId: string | null;
1331
1505
  subEvents: {
1506
+ description: string | null;
1332
1507
  location: string;
1333
1508
  id: string;
1334
1509
  name: string;
@@ -1338,6 +1513,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1338
1513
  created_at: string;
1339
1514
  updated_at: string;
1340
1515
  active: boolean;
1516
+ mainPictureUrl: string | null;
1517
+ bannerUrl: string | null;
1341
1518
  folderId: string | null;
1342
1519
  tagAssistedId: string;
1343
1520
  tagConfirmedId: string;
@@ -1350,6 +1527,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1350
1527
  price: number | null;
1351
1528
  }[];
1352
1529
  supraEvent: {
1530
+ description: string | null;
1353
1531
  location: string;
1354
1532
  id: string;
1355
1533
  name: string;
@@ -1359,6 +1537,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1359
1537
  created_at: string;
1360
1538
  updated_at: string;
1361
1539
  active: boolean;
1540
+ mainPictureUrl: string | null;
1541
+ bannerUrl: string | null;
1362
1542
  folderId: string | null;
1363
1543
  tagAssistedId: string;
1364
1544
  tagConfirmedId: string;
@@ -1372,6 +1552,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1372
1552
  created_at: string;
1373
1553
  updated_at: string;
1374
1554
  events: {
1555
+ description: string | null;
1375
1556
  location: string;
1376
1557
  id: string;
1377
1558
  name: string;
@@ -1392,11 +1573,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1392
1573
  isExclusive: boolean;
1393
1574
  };
1394
1575
  }[];
1576
+ mainPictureUrl: string | null;
1577
+ bannerUrl: string | null;
1395
1578
  folderId: string | null;
1396
1579
  tagAssistedId: string;
1397
1580
  tagConfirmedId: string;
1398
1581
  supraEventId: string | null;
1399
1582
  subEvents: {
1583
+ description: string | null;
1400
1584
  location: string;
1401
1585
  id: string;
1402
1586
  name: string;
@@ -1406,6 +1590,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1406
1590
  created_at: string;
1407
1591
  updated_at: string;
1408
1592
  active: boolean;
1593
+ mainPictureUrl: string | null;
1594
+ bannerUrl: string | null;
1409
1595
  folderId: string | null;
1410
1596
  tagAssistedId: string;
1411
1597
  tagConfirmedId: string;
@@ -1418,6 +1604,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1418
1604
  price: number | null;
1419
1605
  }[];
1420
1606
  supraEvent: {
1607
+ description: string | null;
1421
1608
  location: string;
1422
1609
  id: string;
1423
1610
  name: string;
@@ -1427,6 +1614,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1427
1614
  created_at: string;
1428
1615
  updated_at: string;
1429
1616
  active: boolean;
1617
+ mainPictureUrl: string | null;
1618
+ bannerUrl: string | null;
1430
1619
  folderId: string | null;
1431
1620
  tagAssistedId: string;
1432
1621
  tagConfirmedId: string;
@@ -1441,6 +1630,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1441
1630
  startingDate: z.ZodString;
1442
1631
  endingDate: z.ZodString;
1443
1632
  location: z.ZodString;
1633
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1634
+ bannerUrl: z.ZodNullable<z.ZodString>;
1635
+ description: z.ZodNullable<z.ZodString>;
1444
1636
  folderId: z.ZodNullable<z.ZodString>;
1445
1637
  tagAssistedId: z.ZodString;
1446
1638
  tagConfirmedId: z.ZodString;
@@ -1455,6 +1647,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1455
1647
  startingDate: z.ZodString;
1456
1648
  endingDate: z.ZodString;
1457
1649
  location: z.ZodString;
1650
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1651
+ bannerUrl: z.ZodNullable<z.ZodString>;
1652
+ description: z.ZodNullable<z.ZodString>;
1458
1653
  folderId: z.ZodNullable<z.ZodString>;
1459
1654
  tagAssistedId: z.ZodString;
1460
1655
  tagConfirmedId: z.ZodString;
@@ -1463,6 +1658,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1463
1658
  created_at: z.ZodString;
1464
1659
  updated_at: z.ZodString;
1465
1660
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1661
+ description: string | null;
1466
1662
  location: string;
1467
1663
  id: string;
1468
1664
  name: string;
@@ -1472,11 +1668,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1472
1668
  created_at: string;
1473
1669
  updated_at: string;
1474
1670
  active: boolean;
1671
+ mainPictureUrl: string | null;
1672
+ bannerUrl: string | null;
1475
1673
  folderId: string | null;
1476
1674
  tagAssistedId: string;
1477
1675
  tagConfirmedId: string;
1478
1676
  supraEventId: string | null;
1479
1677
  }, {
1678
+ description: string | null;
1480
1679
  location: string;
1481
1680
  id: string;
1482
1681
  name: string;
@@ -1486,6 +1685,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1486
1685
  created_at: string;
1487
1686
  updated_at: string;
1488
1687
  active: boolean;
1688
+ mainPictureUrl: string | null;
1689
+ bannerUrl: string | null;
1489
1690
  folderId: string | null;
1490
1691
  tagAssistedId: string;
1491
1692
  tagConfirmedId: string;
@@ -1498,6 +1699,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1498
1699
  startingDate: z.ZodString;
1499
1700
  endingDate: z.ZodString;
1500
1701
  location: z.ZodString;
1702
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1703
+ bannerUrl: z.ZodNullable<z.ZodString>;
1704
+ description: z.ZodNullable<z.ZodString>;
1501
1705
  folderId: z.ZodNullable<z.ZodString>;
1502
1706
  tagAssistedId: z.ZodString;
1503
1707
  tagConfirmedId: z.ZodString;
@@ -1506,6 +1710,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1506
1710
  created_at: z.ZodString;
1507
1711
  updated_at: z.ZodString;
1508
1712
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1713
+ description: string | null;
1509
1714
  location: string;
1510
1715
  id: string;
1511
1716
  name: string;
@@ -1515,11 +1720,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1515
1720
  created_at: string;
1516
1721
  updated_at: string;
1517
1722
  active: boolean;
1723
+ mainPictureUrl: string | null;
1724
+ bannerUrl: string | null;
1518
1725
  folderId: string | null;
1519
1726
  tagAssistedId: string;
1520
1727
  tagConfirmedId: string;
1521
1728
  supraEventId: string | null;
1522
1729
  }, {
1730
+ description: string | null;
1523
1731
  location: string;
1524
1732
  id: string;
1525
1733
  name: string;
@@ -1529,6 +1737,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1529
1737
  created_at: string;
1530
1738
  updated_at: string;
1531
1739
  active: boolean;
1740
+ mainPictureUrl: string | null;
1741
+ bannerUrl: string | null;
1532
1742
  folderId: string | null;
1533
1743
  tagAssistedId: string;
1534
1744
  tagConfirmedId: string;
@@ -1601,6 +1811,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1601
1811
  price: number | null;
1602
1812
  }>, "many">;
1603
1813
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1814
+ description: string | null;
1604
1815
  location: string;
1605
1816
  id: string;
1606
1817
  name: string;
@@ -1621,11 +1832,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1621
1832
  isExclusive: boolean;
1622
1833
  };
1623
1834
  }[];
1835
+ mainPictureUrl: string | null;
1836
+ bannerUrl: string | null;
1624
1837
  folderId: string | null;
1625
1838
  tagAssistedId: string;
1626
1839
  tagConfirmedId: string;
1627
1840
  supraEventId: string | null;
1628
1841
  subEvents: {
1842
+ description: string | null;
1629
1843
  location: string;
1630
1844
  id: string;
1631
1845
  name: string;
@@ -1635,6 +1849,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1635
1849
  created_at: string;
1636
1850
  updated_at: string;
1637
1851
  active: boolean;
1852
+ mainPictureUrl: string | null;
1853
+ bannerUrl: string | null;
1638
1854
  folderId: string | null;
1639
1855
  tagAssistedId: string;
1640
1856
  tagConfirmedId: string;
@@ -1647,6 +1863,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1647
1863
  price: number | null;
1648
1864
  }[];
1649
1865
  supraEvent: {
1866
+ description: string | null;
1650
1867
  location: string;
1651
1868
  id: string;
1652
1869
  name: string;
@@ -1656,12 +1873,15 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1656
1873
  created_at: string;
1657
1874
  updated_at: string;
1658
1875
  active: boolean;
1876
+ mainPictureUrl: string | null;
1877
+ bannerUrl: string | null;
1659
1878
  folderId: string | null;
1660
1879
  tagAssistedId: string;
1661
1880
  tagConfirmedId: string;
1662
1881
  supraEventId: string | null;
1663
1882
  } | null;
1664
1883
  }, {
1884
+ description: string | null;
1665
1885
  location: string;
1666
1886
  id: string;
1667
1887
  name: string;
@@ -1682,11 +1902,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1682
1902
  isExclusive: boolean;
1683
1903
  };
1684
1904
  }[];
1905
+ mainPictureUrl: string | null;
1906
+ bannerUrl: string | null;
1685
1907
  folderId: string | null;
1686
1908
  tagAssistedId: string;
1687
1909
  tagConfirmedId: string;
1688
1910
  supraEventId: string | null;
1689
1911
  subEvents: {
1912
+ description: string | null;
1690
1913
  location: string;
1691
1914
  id: string;
1692
1915
  name: string;
@@ -1696,6 +1919,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1696
1919
  created_at: string;
1697
1920
  updated_at: string;
1698
1921
  active: boolean;
1922
+ mainPictureUrl: string | null;
1923
+ bannerUrl: string | null;
1699
1924
  folderId: string | null;
1700
1925
  tagAssistedId: string;
1701
1926
  tagConfirmedId: string;
@@ -1708,6 +1933,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1708
1933
  price: number | null;
1709
1934
  }[];
1710
1935
  supraEvent: {
1936
+ description: string | null;
1711
1937
  location: string;
1712
1938
  id: string;
1713
1939
  name: string;
@@ -1717,6 +1943,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1717
1943
  created_at: string;
1718
1944
  updated_at: string;
1719
1945
  active: boolean;
1946
+ mainPictureUrl: string | null;
1947
+ bannerUrl: string | null;
1720
1948
  folderId: string | null;
1721
1949
  tagAssistedId: string;
1722
1950
  tagConfirmedId: string;
@@ -1731,6 +1959,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1731
1959
  created_at: string;
1732
1960
  updated_at: string;
1733
1961
  events: {
1962
+ description: string | null;
1734
1963
  location: string;
1735
1964
  id: string;
1736
1965
  name: string;
@@ -1751,11 +1980,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1751
1980
  isExclusive: boolean;
1752
1981
  };
1753
1982
  }[];
1983
+ mainPictureUrl: string | null;
1984
+ bannerUrl: string | null;
1754
1985
  folderId: string | null;
1755
1986
  tagAssistedId: string;
1756
1987
  tagConfirmedId: string;
1757
1988
  supraEventId: string | null;
1758
1989
  subEvents: {
1990
+ description: string | null;
1759
1991
  location: string;
1760
1992
  id: string;
1761
1993
  name: string;
@@ -1765,6 +1997,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1765
1997
  created_at: string;
1766
1998
  updated_at: string;
1767
1999
  active: boolean;
2000
+ mainPictureUrl: string | null;
2001
+ bannerUrl: string | null;
1768
2002
  folderId: string | null;
1769
2003
  tagAssistedId: string;
1770
2004
  tagConfirmedId: string;
@@ -1777,6 +2011,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1777
2011
  price: number | null;
1778
2012
  }[];
1779
2013
  supraEvent: {
2014
+ description: string | null;
1780
2015
  location: string;
1781
2016
  id: string;
1782
2017
  name: string;
@@ -1786,6 +2021,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1786
2021
  created_at: string;
1787
2022
  updated_at: string;
1788
2023
  active: boolean;
2024
+ mainPictureUrl: string | null;
2025
+ bannerUrl: string | null;
1789
2026
  folderId: string | null;
1790
2027
  tagAssistedId: string;
1791
2028
  tagConfirmedId: string;
@@ -1794,6 +2031,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1794
2031
  }[];
1795
2032
  }[];
1796
2033
  withoutFolder: {
2034
+ description: string | null;
1797
2035
  location: string;
1798
2036
  id: string;
1799
2037
  name: string;
@@ -1814,11 +2052,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1814
2052
  isExclusive: boolean;
1815
2053
  };
1816
2054
  }[];
2055
+ mainPictureUrl: string | null;
2056
+ bannerUrl: string | null;
1817
2057
  folderId: string | null;
1818
2058
  tagAssistedId: string;
1819
2059
  tagConfirmedId: string;
1820
2060
  supraEventId: string | null;
1821
2061
  subEvents: {
2062
+ description: string | null;
1822
2063
  location: string;
1823
2064
  id: string;
1824
2065
  name: string;
@@ -1828,6 +2069,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1828
2069
  created_at: string;
1829
2070
  updated_at: string;
1830
2071
  active: boolean;
2072
+ mainPictureUrl: string | null;
2073
+ bannerUrl: string | null;
1831
2074
  folderId: string | null;
1832
2075
  tagAssistedId: string;
1833
2076
  tagConfirmedId: string;
@@ -1840,6 +2083,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1840
2083
  price: number | null;
1841
2084
  }[];
1842
2085
  supraEvent: {
2086
+ description: string | null;
1843
2087
  location: string;
1844
2088
  id: string;
1845
2089
  name: string;
@@ -1849,6 +2093,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1849
2093
  created_at: string;
1850
2094
  updated_at: string;
1851
2095
  active: boolean;
2096
+ mainPictureUrl: string | null;
2097
+ bannerUrl: string | null;
1852
2098
  folderId: string | null;
1853
2099
  tagAssistedId: string;
1854
2100
  tagConfirmedId: string;
@@ -1863,6 +2109,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1863
2109
  created_at: string;
1864
2110
  updated_at: string;
1865
2111
  events: {
2112
+ description: string | null;
1866
2113
  location: string;
1867
2114
  id: string;
1868
2115
  name: string;
@@ -1883,11 +2130,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1883
2130
  isExclusive: boolean;
1884
2131
  };
1885
2132
  }[];
2133
+ mainPictureUrl: string | null;
2134
+ bannerUrl: string | null;
1886
2135
  folderId: string | null;
1887
2136
  tagAssistedId: string;
1888
2137
  tagConfirmedId: string;
1889
2138
  supraEventId: string | null;
1890
2139
  subEvents: {
2140
+ description: string | null;
1891
2141
  location: string;
1892
2142
  id: string;
1893
2143
  name: string;
@@ -1897,6 +2147,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1897
2147
  created_at: string;
1898
2148
  updated_at: string;
1899
2149
  active: boolean;
2150
+ mainPictureUrl: string | null;
2151
+ bannerUrl: string | null;
1900
2152
  folderId: string | null;
1901
2153
  tagAssistedId: string;
1902
2154
  tagConfirmedId: string;
@@ -1909,6 +2161,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1909
2161
  price: number | null;
1910
2162
  }[];
1911
2163
  supraEvent: {
2164
+ description: string | null;
1912
2165
  location: string;
1913
2166
  id: string;
1914
2167
  name: string;
@@ -1918,6 +2171,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1918
2171
  created_at: string;
1919
2172
  updated_at: string;
1920
2173
  active: boolean;
2174
+ mainPictureUrl: string | null;
2175
+ bannerUrl: string | null;
1921
2176
  folderId: string | null;
1922
2177
  tagAssistedId: string;
1923
2178
  tagConfirmedId: string;
@@ -1926,6 +2181,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1926
2181
  }[];
1927
2182
  }[];
1928
2183
  withoutFolder: {
2184
+ description: string | null;
1929
2185
  location: string;
1930
2186
  id: string;
1931
2187
  name: string;
@@ -1946,11 +2202,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1946
2202
  isExclusive: boolean;
1947
2203
  };
1948
2204
  }[];
2205
+ mainPictureUrl: string | null;
2206
+ bannerUrl: string | null;
1949
2207
  folderId: string | null;
1950
2208
  tagAssistedId: string;
1951
2209
  tagConfirmedId: string;
1952
2210
  supraEventId: string | null;
1953
2211
  subEvents: {
2212
+ description: string | null;
1954
2213
  location: string;
1955
2214
  id: string;
1956
2215
  name: string;
@@ -1960,6 +2219,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1960
2219
  created_at: string;
1961
2220
  updated_at: string;
1962
2221
  active: boolean;
2222
+ mainPictureUrl: string | null;
2223
+ bannerUrl: string | null;
1963
2224
  folderId: string | null;
1964
2225
  tagAssistedId: string;
1965
2226
  tagConfirmedId: string;
@@ -1972,6 +2233,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1972
2233
  price: number | null;
1973
2234
  }[];
1974
2235
  supraEvent: {
2236
+ description: string | null;
1975
2237
  location: string;
1976
2238
  id: string;
1977
2239
  name: string;
@@ -1981,6 +2243,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1981
2243
  created_at: string;
1982
2244
  updated_at: string;
1983
2245
  active: boolean;
2246
+ mainPictureUrl: string | null;
2247
+ bannerUrl: string | null;
1984
2248
  folderId: string | null;
1985
2249
  tagAssistedId: string;
1986
2250
  tagConfirmedId: string;