expo-backend-types 0.52.0 → 0.53.0-EXPO-360-Tato-Bores.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 (48) 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-banner-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/delete-banner-event.dto.js +12 -0
  5. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  6. package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +18 -0
  7. package/dist/src/event/dto/delete-main-picture-event.dto.js +12 -0
  8. package/dist/src/event/dto/event.dto.d.ts +9 -0
  9. package/dist/src/event/dto/event.dto.js +13 -0
  10. package/dist/src/event/dto/get-active-events.dto.d.ts +30 -0
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +264 -0
  12. package/dist/src/event/dto/get-all-statistics.dto.d.ts +9 -0
  13. package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
  14. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +9 -0
  15. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  16. package/dist/src/event/dto/update-banner-event.dto.d.ts +33 -0
  17. package/dist/src/event/dto/update-banner-event.dto.js +18 -0
  18. package/dist/src/event/dto/update-event.dto.d.ts +185 -135
  19. package/dist/src/event/dto/update-event.dto.js +9 -1
  20. package/dist/src/event/dto/update-main-picture-event.dto.d.ts +33 -0
  21. package/dist/src/event/dto/update-main-picture-event.dto.js +18 -0
  22. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  23. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  24. package/dist/src/i18n/es.d.ts +7 -0
  25. package/dist/src/i18n/es.js +7 -0
  26. package/dist/src/i18n/es.js.map +1 -1
  27. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  28. package/dist/src/profile/dto/delete-image-profile.dto.d.ts +18 -0
  29. package/dist/src/profile/dto/delete-image-profile.dto.js +12 -0
  30. package/dist/src/profile/dto/update-image-profile.dto.d.ts +33 -0
  31. package/dist/src/profile/dto/update-image-profile.dto.js +18 -0
  32. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  33. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  34. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  35. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  36. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  37. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  38. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  39. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  40. package/dist/types/prisma-schema/edge.js +6 -3
  41. package/dist/types/prisma-schema/index-browser.js +3 -0
  42. package/dist/types/prisma-schema/index.d.ts +244 -1
  43. package/dist/types/prisma-schema/index.js +6 -3
  44. package/dist/types/prisma-schema/package.json +1 -1
  45. package/dist/types/prisma-schema/schema.prisma +9 -6
  46. package/dist/types/prisma-schema/wasm.js +3 -0
  47. package/dist/types/schema.d.ts +397 -77
  48. 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;
@@ -192,6 +213,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
192
213
  price: number | null;
193
214
  }>, "many">;
194
215
  }>, "strip", z.ZodTypeAny, {
216
+ description: string | null;
195
217
  location: string;
196
218
  id: string;
197
219
  name: string;
@@ -201,11 +223,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
201
223
  created_at: Date;
202
224
  updated_at: Date;
203
225
  active: boolean;
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,6 +264,8 @@ 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;
@@ -253,6 +283,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
253
283
  };
254
284
  }[];
255
285
  }, {
286
+ description: string | null;
256
287
  location: string;
257
288
  id: string;
258
289
  name: string;
@@ -262,11 +293,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
262
293
  created_at: Date;
263
294
  updated_at: Date;
264
295
  active: boolean;
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;
@@ -321,6 +360,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
321
360
  created_at: Date;
322
361
  updated_at: Date;
323
362
  events: {
363
+ description: string | null;
324
364
  location: string;
325
365
  id: string;
326
366
  name: string;
@@ -330,11 +370,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
330
370
  created_at: Date;
331
371
  updated_at: Date;
332
372
  active: boolean;
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;
@@ -389,6 +437,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
389
437
  created_at: Date;
390
438
  updated_at: Date;
391
439
  events: {
440
+ description: string | null;
392
441
  location: string;
393
442
  id: string;
394
443
  name: string;
@@ -398,11 +447,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
398
447
  created_at: Date;
399
448
  updated_at: Date;
400
449
  active: boolean;
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;
@@ -458,6 +515,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
458
515
  startingDate: z.ZodDate;
459
516
  endingDate: z.ZodDate;
460
517
  location: z.ZodString;
518
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
519
+ bannerUrl: z.ZodNullable<z.ZodString>;
520
+ description: z.ZodNullable<z.ZodString>;
461
521
  folderId: z.ZodNullable<z.ZodString>;
462
522
  tagAssistedId: z.ZodString;
463
523
  tagConfirmedId: z.ZodString;
@@ -473,6 +533,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
473
533
  startingDate: z.ZodDate;
474
534
  endingDate: z.ZodDate;
475
535
  location: z.ZodString;
536
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
537
+ bannerUrl: z.ZodNullable<z.ZodString>;
538
+ description: z.ZodNullable<z.ZodString>;
476
539
  folderId: z.ZodNullable<z.ZodString>;
477
540
  tagAssistedId: z.ZodString;
478
541
  tagConfirmedId: z.ZodString;
@@ -481,6 +544,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
481
544
  created_at: z.ZodDate;
482
545
  updated_at: z.ZodDate;
483
546
  }, "strip", z.ZodTypeAny, {
547
+ description: string | null;
484
548
  location: string;
485
549
  id: string;
486
550
  name: string;
@@ -490,11 +554,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
490
554
  created_at: Date;
491
555
  updated_at: Date;
492
556
  active: boolean;
557
+ mainPictureUrl: string | null;
558
+ bannerUrl: string | null;
493
559
  folderId: string | null;
494
560
  tagAssistedId: string;
495
561
  tagConfirmedId: string;
496
562
  supraEventId: string | null;
497
563
  }, {
564
+ description: string | null;
498
565
  location: string;
499
566
  id: string;
500
567
  name: string;
@@ -504,6 +571,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
504
571
  created_at: Date;
505
572
  updated_at: Date;
506
573
  active: boolean;
574
+ mainPictureUrl: string | null;
575
+ bannerUrl: string | null;
507
576
  folderId: string | null;
508
577
  tagAssistedId: string;
509
578
  tagConfirmedId: string;
@@ -516,6 +585,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
516
585
  startingDate: z.ZodDate;
517
586
  endingDate: z.ZodDate;
518
587
  location: z.ZodString;
588
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
589
+ bannerUrl: z.ZodNullable<z.ZodString>;
590
+ description: z.ZodNullable<z.ZodString>;
519
591
  folderId: z.ZodNullable<z.ZodString>;
520
592
  tagAssistedId: z.ZodString;
521
593
  tagConfirmedId: z.ZodString;
@@ -524,6 +596,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
524
596
  created_at: z.ZodDate;
525
597
  updated_at: z.ZodDate;
526
598
  }, "strip", z.ZodTypeAny, {
599
+ description: string | null;
527
600
  location: string;
528
601
  id: string;
529
602
  name: string;
@@ -533,11 +606,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
533
606
  created_at: Date;
534
607
  updated_at: Date;
535
608
  active: boolean;
609
+ mainPictureUrl: string | null;
610
+ bannerUrl: string | null;
536
611
  folderId: string | null;
537
612
  tagAssistedId: string;
538
613
  tagConfirmedId: string;
539
614
  supraEventId: string | null;
540
615
  }, {
616
+ description: string | null;
541
617
  location: string;
542
618
  id: string;
543
619
  name: string;
@@ -547,6 +623,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
547
623
  created_at: Date;
548
624
  updated_at: Date;
549
625
  active: boolean;
626
+ mainPictureUrl: string | null;
627
+ bannerUrl: string | null;
550
628
  folderId: string | null;
551
629
  tagAssistedId: string;
552
630
  tagConfirmedId: string;
@@ -636,6 +714,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
636
714
  price: number | null;
637
715
  }>, "many">;
638
716
  }>, "strip", z.ZodTypeAny, {
717
+ description: string | null;
639
718
  location: string;
640
719
  id: string;
641
720
  name: string;
@@ -645,11 +724,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
645
724
  created_at: Date;
646
725
  updated_at: Date;
647
726
  active: boolean;
727
+ mainPictureUrl: string | null;
728
+ bannerUrl: string | null;
648
729
  folderId: string | null;
649
730
  tagAssistedId: string;
650
731
  tagConfirmedId: string;
651
732
  supraEventId: string | null;
652
733
  subEvents: {
734
+ description: string | null;
653
735
  location: string;
654
736
  id: string;
655
737
  name: string;
@@ -659,6 +741,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
659
741
  created_at: Date;
660
742
  updated_at: Date;
661
743
  active: boolean;
744
+ mainPictureUrl: string | null;
745
+ bannerUrl: string | null;
662
746
  folderId: string | null;
663
747
  tagAssistedId: string;
664
748
  tagConfirmedId: string;
@@ -671,6 +755,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
671
755
  price: number | null;
672
756
  }[];
673
757
  supraEvent: {
758
+ description: string | null;
674
759
  location: string;
675
760
  id: string;
676
761
  name: string;
@@ -680,6 +765,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
680
765
  created_at: Date;
681
766
  updated_at: Date;
682
767
  active: boolean;
768
+ mainPictureUrl: string | null;
769
+ bannerUrl: string | null;
683
770
  folderId: string | null;
684
771
  tagAssistedId: string;
685
772
  tagConfirmedId: string;
@@ -697,6 +784,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
697
784
  };
698
785
  }[];
699
786
  }, {
787
+ description: string | null;
700
788
  location: string;
701
789
  id: string;
702
790
  name: string;
@@ -706,11 +794,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
706
794
  created_at: Date;
707
795
  updated_at: Date;
708
796
  active: boolean;
797
+ mainPictureUrl: string | null;
798
+ bannerUrl: string | null;
709
799
  folderId: string | null;
710
800
  tagAssistedId: string;
711
801
  tagConfirmedId: string;
712
802
  supraEventId: string | null;
713
803
  subEvents: {
804
+ description: string | null;
714
805
  location: string;
715
806
  id: string;
716
807
  name: string;
@@ -720,6 +811,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
720
811
  created_at: Date;
721
812
  updated_at: Date;
722
813
  active: boolean;
814
+ mainPictureUrl: string | null;
815
+ bannerUrl: string | null;
723
816
  folderId: string | null;
724
817
  tagAssistedId: string;
725
818
  tagConfirmedId: string;
@@ -732,6 +825,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
732
825
  price: number | null;
733
826
  }[];
734
827
  supraEvent: {
828
+ description: string | null;
735
829
  location: string;
736
830
  id: string;
737
831
  name: string;
@@ -741,6 +835,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
741
835
  created_at: Date;
742
836
  updated_at: Date;
743
837
  active: boolean;
838
+ mainPictureUrl: string | null;
839
+ bannerUrl: string | null;
744
840
  folderId: string | null;
745
841
  tagAssistedId: string;
746
842
  tagConfirmedId: string;
@@ -766,6 +862,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
766
862
  created_at: Date;
767
863
  updated_at: Date;
768
864
  events: {
865
+ description: string | null;
769
866
  location: string;
770
867
  id: string;
771
868
  name: string;
@@ -775,11 +872,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
775
872
  created_at: Date;
776
873
  updated_at: Date;
777
874
  active: boolean;
875
+ mainPictureUrl: string | null;
876
+ bannerUrl: string | null;
778
877
  folderId: string | null;
779
878
  tagAssistedId: string;
780
879
  tagConfirmedId: string;
781
880
  supraEventId: string | null;
782
881
  subEvents: {
882
+ description: string | null;
783
883
  location: string;
784
884
  id: string;
785
885
  name: string;
@@ -789,6 +889,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
789
889
  created_at: Date;
790
890
  updated_at: Date;
791
891
  active: boolean;
892
+ mainPictureUrl: string | null;
893
+ bannerUrl: string | null;
792
894
  folderId: string | null;
793
895
  tagAssistedId: string;
794
896
  tagConfirmedId: string;
@@ -801,6 +903,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
801
903
  price: number | null;
802
904
  }[];
803
905
  supraEvent: {
906
+ description: string | null;
804
907
  location: string;
805
908
  id: string;
806
909
  name: string;
@@ -810,6 +913,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
810
913
  created_at: Date;
811
914
  updated_at: Date;
812
915
  active: boolean;
916
+ mainPictureUrl: string | null;
917
+ bannerUrl: string | null;
813
918
  folderId: string | null;
814
919
  tagAssistedId: string;
815
920
  tagConfirmedId: string;
@@ -829,6 +934,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
829
934
  }[];
830
935
  }[];
831
936
  withoutFolder: {
937
+ description: string | null;
832
938
  location: string;
833
939
  id: string;
834
940
  name: string;
@@ -838,11 +944,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
838
944
  created_at: Date;
839
945
  updated_at: Date;
840
946
  active: boolean;
947
+ mainPictureUrl: string | null;
948
+ bannerUrl: string | null;
841
949
  folderId: string | null;
842
950
  tagAssistedId: string;
843
951
  tagConfirmedId: string;
844
952
  supraEventId: string | null;
845
953
  subEvents: {
954
+ description: string | null;
846
955
  location: string;
847
956
  id: string;
848
957
  name: string;
@@ -852,6 +961,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
852
961
  created_at: Date;
853
962
  updated_at: Date;
854
963
  active: boolean;
964
+ mainPictureUrl: string | null;
965
+ bannerUrl: string | null;
855
966
  folderId: string | null;
856
967
  tagAssistedId: string;
857
968
  tagConfirmedId: string;
@@ -864,6 +975,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
864
975
  price: number | null;
865
976
  }[];
866
977
  supraEvent: {
978
+ description: string | null;
867
979
  location: string;
868
980
  id: string;
869
981
  name: string;
@@ -873,6 +985,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
873
985
  created_at: Date;
874
986
  updated_at: Date;
875
987
  active: boolean;
988
+ mainPictureUrl: string | null;
989
+ bannerUrl: string | null;
876
990
  folderId: string | null;
877
991
  tagAssistedId: string;
878
992
  tagConfirmedId: string;
@@ -898,6 +1012,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
898
1012
  created_at: Date;
899
1013
  updated_at: Date;
900
1014
  events: {
1015
+ description: string | null;
901
1016
  location: string;
902
1017
  id: string;
903
1018
  name: string;
@@ -907,11 +1022,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
907
1022
  created_at: Date;
908
1023
  updated_at: Date;
909
1024
  active: boolean;
1025
+ mainPictureUrl: string | null;
1026
+ bannerUrl: string | null;
910
1027
  folderId: string | null;
911
1028
  tagAssistedId: string;
912
1029
  tagConfirmedId: string;
913
1030
  supraEventId: string | null;
914
1031
  subEvents: {
1032
+ description: string | null;
915
1033
  location: string;
916
1034
  id: string;
917
1035
  name: string;
@@ -921,6 +1039,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
921
1039
  created_at: Date;
922
1040
  updated_at: Date;
923
1041
  active: boolean;
1042
+ mainPictureUrl: string | null;
1043
+ bannerUrl: string | null;
924
1044
  folderId: string | null;
925
1045
  tagAssistedId: string;
926
1046
  tagConfirmedId: string;
@@ -933,6 +1053,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
933
1053
  price: number | null;
934
1054
  }[];
935
1055
  supraEvent: {
1056
+ description: string | null;
936
1057
  location: string;
937
1058
  id: string;
938
1059
  name: string;
@@ -942,6 +1063,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
942
1063
  created_at: Date;
943
1064
  updated_at: Date;
944
1065
  active: boolean;
1066
+ mainPictureUrl: string | null;
1067
+ bannerUrl: string | null;
945
1068
  folderId: string | null;
946
1069
  tagAssistedId: string;
947
1070
  tagConfirmedId: string;
@@ -961,6 +1084,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
961
1084
  }[];
962
1085
  }[];
963
1086
  withoutFolder: {
1087
+ description: string | null;
964
1088
  location: string;
965
1089
  id: string;
966
1090
  name: string;
@@ -970,11 +1094,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
970
1094
  created_at: Date;
971
1095
  updated_at: Date;
972
1096
  active: boolean;
1097
+ mainPictureUrl: string | null;
1098
+ bannerUrl: string | null;
973
1099
  folderId: string | null;
974
1100
  tagAssistedId: string;
975
1101
  tagConfirmedId: string;
976
1102
  supraEventId: string | null;
977
1103
  subEvents: {
1104
+ description: string | null;
978
1105
  location: string;
979
1106
  id: string;
980
1107
  name: string;
@@ -984,6 +1111,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
984
1111
  created_at: Date;
985
1112
  updated_at: Date;
986
1113
  active: boolean;
1114
+ mainPictureUrl: string | null;
1115
+ bannerUrl: string | null;
987
1116
  folderId: string | null;
988
1117
  tagAssistedId: string;
989
1118
  tagConfirmedId: string;
@@ -996,6 +1125,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
996
1125
  price: number | null;
997
1126
  }[];
998
1127
  supraEvent: {
1128
+ description: string | null;
999
1129
  location: string;
1000
1130
  id: string;
1001
1131
  name: string;
@@ -1005,6 +1135,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
1005
1135
  created_at: Date;
1006
1136
  updated_at: Date;
1007
1137
  active: boolean;
1138
+ mainPictureUrl: string | null;
1139
+ bannerUrl: string | null;
1008
1140
  folderId: string | null;
1009
1141
  tagAssistedId: string;
1010
1142
  tagConfirmedId: string;
@@ -1037,6 +1169,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1037
1169
  startingDate: z.ZodString;
1038
1170
  endingDate: z.ZodString;
1039
1171
  location: z.ZodString;
1172
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1173
+ bannerUrl: z.ZodNullable<z.ZodString>;
1174
+ description: z.ZodNullable<z.ZodString>;
1040
1175
  folderId: z.ZodNullable<z.ZodString>;
1041
1176
  tagAssistedId: z.ZodString;
1042
1177
  tagConfirmedId: z.ZodString;
@@ -1051,6 +1186,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1051
1186
  startingDate: z.ZodString;
1052
1187
  endingDate: z.ZodString;
1053
1188
  location: z.ZodString;
1189
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1190
+ bannerUrl: z.ZodNullable<z.ZodString>;
1191
+ description: z.ZodNullable<z.ZodString>;
1054
1192
  folderId: z.ZodNullable<z.ZodString>;
1055
1193
  tagAssistedId: z.ZodString;
1056
1194
  tagConfirmedId: z.ZodString;
@@ -1059,6 +1197,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1059
1197
  created_at: z.ZodString;
1060
1198
  updated_at: z.ZodString;
1061
1199
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1200
+ description: string | null;
1062
1201
  location: string;
1063
1202
  id: string;
1064
1203
  name: string;
@@ -1068,11 +1207,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1068
1207
  created_at: string;
1069
1208
  updated_at: string;
1070
1209
  active: boolean;
1210
+ mainPictureUrl: string | null;
1211
+ bannerUrl: string | null;
1071
1212
  folderId: string | null;
1072
1213
  tagAssistedId: string;
1073
1214
  tagConfirmedId: string;
1074
1215
  supraEventId: string | null;
1075
1216
  }, {
1217
+ description: string | null;
1076
1218
  location: string;
1077
1219
  id: string;
1078
1220
  name: string;
@@ -1082,6 +1224,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1082
1224
  created_at: string;
1083
1225
  updated_at: string;
1084
1226
  active: boolean;
1227
+ mainPictureUrl: string | null;
1228
+ bannerUrl: string | null;
1085
1229
  folderId: string | null;
1086
1230
  tagAssistedId: string;
1087
1231
  tagConfirmedId: string;
@@ -1094,6 +1238,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1094
1238
  startingDate: z.ZodString;
1095
1239
  endingDate: z.ZodString;
1096
1240
  location: z.ZodString;
1241
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1242
+ bannerUrl: z.ZodNullable<z.ZodString>;
1243
+ description: z.ZodNullable<z.ZodString>;
1097
1244
  folderId: z.ZodNullable<z.ZodString>;
1098
1245
  tagAssistedId: z.ZodString;
1099
1246
  tagConfirmedId: z.ZodString;
@@ -1102,6 +1249,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1102
1249
  created_at: z.ZodString;
1103
1250
  updated_at: z.ZodString;
1104
1251
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1252
+ description: string | null;
1105
1253
  location: string;
1106
1254
  id: string;
1107
1255
  name: string;
@@ -1111,11 +1259,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1111
1259
  created_at: string;
1112
1260
  updated_at: string;
1113
1261
  active: boolean;
1262
+ mainPictureUrl: string | null;
1263
+ bannerUrl: string | null;
1114
1264
  folderId: string | null;
1115
1265
  tagAssistedId: string;
1116
1266
  tagConfirmedId: string;
1117
1267
  supraEventId: string | null;
1118
1268
  }, {
1269
+ description: string | null;
1119
1270
  location: string;
1120
1271
  id: string;
1121
1272
  name: string;
@@ -1125,6 +1276,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1125
1276
  created_at: string;
1126
1277
  updated_at: string;
1127
1278
  active: boolean;
1279
+ mainPictureUrl: string | null;
1280
+ bannerUrl: string | null;
1128
1281
  folderId: string | null;
1129
1282
  tagAssistedId: string;
1130
1283
  tagConfirmedId: string;
@@ -1208,6 +1361,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1208
1361
  price: number | null;
1209
1362
  }>, "many">;
1210
1363
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1364
+ description: string | null;
1211
1365
  location: string;
1212
1366
  id: string;
1213
1367
  name: string;
@@ -1217,11 +1371,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1217
1371
  created_at: string;
1218
1372
  updated_at: string;
1219
1373
  active: boolean;
1374
+ mainPictureUrl: string | null;
1375
+ bannerUrl: string | null;
1220
1376
  folderId: string | null;
1221
1377
  tagAssistedId: string;
1222
1378
  tagConfirmedId: string;
1223
1379
  supraEventId: string | null;
1224
1380
  subEvents: {
1381
+ description: string | null;
1225
1382
  location: string;
1226
1383
  id: string;
1227
1384
  name: string;
@@ -1231,6 +1388,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1231
1388
  created_at: string;
1232
1389
  updated_at: string;
1233
1390
  active: boolean;
1391
+ mainPictureUrl: string | null;
1392
+ bannerUrl: string | null;
1234
1393
  folderId: string | null;
1235
1394
  tagAssistedId: string;
1236
1395
  tagConfirmedId: string;
@@ -1243,6 +1402,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1243
1402
  price: number | null;
1244
1403
  }[];
1245
1404
  supraEvent: {
1405
+ description: string | null;
1246
1406
  location: string;
1247
1407
  id: string;
1248
1408
  name: string;
@@ -1252,6 +1412,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1252
1412
  created_at: string;
1253
1413
  updated_at: string;
1254
1414
  active: boolean;
1415
+ mainPictureUrl: string | null;
1416
+ bannerUrl: string | null;
1255
1417
  folderId: string | null;
1256
1418
  tagAssistedId: string;
1257
1419
  tagConfirmedId: string;
@@ -1269,6 +1431,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1269
1431
  };
1270
1432
  }[];
1271
1433
  }, {
1434
+ description: string | null;
1272
1435
  location: string;
1273
1436
  id: string;
1274
1437
  name: string;
@@ -1278,11 +1441,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1278
1441
  created_at: string;
1279
1442
  updated_at: string;
1280
1443
  active: boolean;
1444
+ mainPictureUrl: string | null;
1445
+ bannerUrl: string | null;
1281
1446
  folderId: string | null;
1282
1447
  tagAssistedId: string;
1283
1448
  tagConfirmedId: string;
1284
1449
  supraEventId: string | null;
1285
1450
  subEvents: {
1451
+ description: string | null;
1286
1452
  location: string;
1287
1453
  id: string;
1288
1454
  name: string;
@@ -1292,6 +1458,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1292
1458
  created_at: string;
1293
1459
  updated_at: string;
1294
1460
  active: boolean;
1461
+ mainPictureUrl: string | null;
1462
+ bannerUrl: string | null;
1295
1463
  folderId: string | null;
1296
1464
  tagAssistedId: string;
1297
1465
  tagConfirmedId: string;
@@ -1304,6 +1472,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1304
1472
  price: number | null;
1305
1473
  }[];
1306
1474
  supraEvent: {
1475
+ description: string | null;
1307
1476
  location: string;
1308
1477
  id: string;
1309
1478
  name: string;
@@ -1313,6 +1482,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1313
1482
  created_at: string;
1314
1483
  updated_at: string;
1315
1484
  active: boolean;
1485
+ mainPictureUrl: string | null;
1486
+ bannerUrl: string | null;
1316
1487
  folderId: string | null;
1317
1488
  tagAssistedId: string;
1318
1489
  tagConfirmedId: string;
@@ -1337,6 +1508,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1337
1508
  created_at: string;
1338
1509
  updated_at: string;
1339
1510
  events: {
1511
+ description: string | null;
1340
1512
  location: string;
1341
1513
  id: string;
1342
1514
  name: string;
@@ -1346,11 +1518,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1346
1518
  created_at: string;
1347
1519
  updated_at: string;
1348
1520
  active: boolean;
1521
+ mainPictureUrl: string | null;
1522
+ bannerUrl: string | null;
1349
1523
  folderId: string | null;
1350
1524
  tagAssistedId: string;
1351
1525
  tagConfirmedId: string;
1352
1526
  supraEventId: string | null;
1353
1527
  subEvents: {
1528
+ description: string | null;
1354
1529
  location: string;
1355
1530
  id: string;
1356
1531
  name: string;
@@ -1360,6 +1535,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1360
1535
  created_at: string;
1361
1536
  updated_at: string;
1362
1537
  active: boolean;
1538
+ mainPictureUrl: string | null;
1539
+ bannerUrl: string | null;
1363
1540
  folderId: string | null;
1364
1541
  tagAssistedId: string;
1365
1542
  tagConfirmedId: string;
@@ -1372,6 +1549,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1372
1549
  price: number | null;
1373
1550
  }[];
1374
1551
  supraEvent: {
1552
+ description: string | null;
1375
1553
  location: string;
1376
1554
  id: string;
1377
1555
  name: string;
@@ -1381,6 +1559,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1381
1559
  created_at: string;
1382
1560
  updated_at: string;
1383
1561
  active: boolean;
1562
+ mainPictureUrl: string | null;
1563
+ bannerUrl: string | null;
1384
1564
  folderId: string | null;
1385
1565
  tagAssistedId: string;
1386
1566
  tagConfirmedId: string;
@@ -1405,6 +1585,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1405
1585
  created_at: string;
1406
1586
  updated_at: string;
1407
1587
  events: {
1588
+ description: string | null;
1408
1589
  location: string;
1409
1590
  id: string;
1410
1591
  name: string;
@@ -1414,11 +1595,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1414
1595
  created_at: string;
1415
1596
  updated_at: string;
1416
1597
  active: boolean;
1598
+ mainPictureUrl: string | null;
1599
+ bannerUrl: string | null;
1417
1600
  folderId: string | null;
1418
1601
  tagAssistedId: string;
1419
1602
  tagConfirmedId: string;
1420
1603
  supraEventId: string | null;
1421
1604
  subEvents: {
1605
+ description: string | null;
1422
1606
  location: string;
1423
1607
  id: string;
1424
1608
  name: string;
@@ -1428,6 +1612,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1428
1612
  created_at: string;
1429
1613
  updated_at: string;
1430
1614
  active: boolean;
1615
+ mainPictureUrl: string | null;
1616
+ bannerUrl: string | null;
1431
1617
  folderId: string | null;
1432
1618
  tagAssistedId: string;
1433
1619
  tagConfirmedId: string;
@@ -1440,6 +1626,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1440
1626
  price: number | null;
1441
1627
  }[];
1442
1628
  supraEvent: {
1629
+ description: string | null;
1443
1630
  location: string;
1444
1631
  id: string;
1445
1632
  name: string;
@@ -1449,6 +1636,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1449
1636
  created_at: string;
1450
1637
  updated_at: string;
1451
1638
  active: boolean;
1639
+ mainPictureUrl: string | null;
1640
+ bannerUrl: string | null;
1452
1641
  folderId: string | null;
1453
1642
  tagAssistedId: string;
1454
1643
  tagConfirmedId: string;
@@ -1474,6 +1663,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1474
1663
  startingDate: z.ZodString;
1475
1664
  endingDate: z.ZodString;
1476
1665
  location: z.ZodString;
1666
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1667
+ bannerUrl: z.ZodNullable<z.ZodString>;
1668
+ description: z.ZodNullable<z.ZodString>;
1477
1669
  folderId: z.ZodNullable<z.ZodString>;
1478
1670
  tagAssistedId: z.ZodString;
1479
1671
  tagConfirmedId: z.ZodString;
@@ -1488,6 +1680,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1488
1680
  startingDate: z.ZodString;
1489
1681
  endingDate: z.ZodString;
1490
1682
  location: z.ZodString;
1683
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1684
+ bannerUrl: z.ZodNullable<z.ZodString>;
1685
+ description: z.ZodNullable<z.ZodString>;
1491
1686
  folderId: z.ZodNullable<z.ZodString>;
1492
1687
  tagAssistedId: z.ZodString;
1493
1688
  tagConfirmedId: z.ZodString;
@@ -1496,6 +1691,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1496
1691
  created_at: z.ZodString;
1497
1692
  updated_at: z.ZodString;
1498
1693
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1694
+ description: string | null;
1499
1695
  location: string;
1500
1696
  id: string;
1501
1697
  name: string;
@@ -1505,11 +1701,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1505
1701
  created_at: string;
1506
1702
  updated_at: string;
1507
1703
  active: boolean;
1704
+ mainPictureUrl: string | null;
1705
+ bannerUrl: string | null;
1508
1706
  folderId: string | null;
1509
1707
  tagAssistedId: string;
1510
1708
  tagConfirmedId: string;
1511
1709
  supraEventId: string | null;
1512
1710
  }, {
1711
+ description: string | null;
1513
1712
  location: string;
1514
1713
  id: string;
1515
1714
  name: string;
@@ -1519,6 +1718,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1519
1718
  created_at: string;
1520
1719
  updated_at: string;
1521
1720
  active: boolean;
1721
+ mainPictureUrl: string | null;
1722
+ bannerUrl: string | null;
1522
1723
  folderId: string | null;
1523
1724
  tagAssistedId: string;
1524
1725
  tagConfirmedId: string;
@@ -1531,6 +1732,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1531
1732
  startingDate: z.ZodString;
1532
1733
  endingDate: z.ZodString;
1533
1734
  location: z.ZodString;
1735
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1736
+ bannerUrl: z.ZodNullable<z.ZodString>;
1737
+ description: z.ZodNullable<z.ZodString>;
1534
1738
  folderId: z.ZodNullable<z.ZodString>;
1535
1739
  tagAssistedId: z.ZodString;
1536
1740
  tagConfirmedId: z.ZodString;
@@ -1539,6 +1743,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1539
1743
  created_at: z.ZodString;
1540
1744
  updated_at: z.ZodString;
1541
1745
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1746
+ description: string | null;
1542
1747
  location: string;
1543
1748
  id: string;
1544
1749
  name: string;
@@ -1548,11 +1753,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1548
1753
  created_at: string;
1549
1754
  updated_at: string;
1550
1755
  active: boolean;
1756
+ mainPictureUrl: string | null;
1757
+ bannerUrl: string | null;
1551
1758
  folderId: string | null;
1552
1759
  tagAssistedId: string;
1553
1760
  tagConfirmedId: string;
1554
1761
  supraEventId: string | null;
1555
1762
  }, {
1763
+ description: string | null;
1556
1764
  location: string;
1557
1765
  id: string;
1558
1766
  name: string;
@@ -1562,6 +1770,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1562
1770
  created_at: string;
1563
1771
  updated_at: string;
1564
1772
  active: boolean;
1773
+ mainPictureUrl: string | null;
1774
+ bannerUrl: string | null;
1565
1775
  folderId: string | null;
1566
1776
  tagAssistedId: string;
1567
1777
  tagConfirmedId: string;
@@ -1645,6 +1855,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1645
1855
  price: number | null;
1646
1856
  }>, "many">;
1647
1857
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1858
+ description: string | null;
1648
1859
  location: string;
1649
1860
  id: string;
1650
1861
  name: string;
@@ -1654,11 +1865,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1654
1865
  created_at: string;
1655
1866
  updated_at: string;
1656
1867
  active: boolean;
1868
+ mainPictureUrl: string | null;
1869
+ bannerUrl: string | null;
1657
1870
  folderId: string | null;
1658
1871
  tagAssistedId: string;
1659
1872
  tagConfirmedId: string;
1660
1873
  supraEventId: string | null;
1661
1874
  subEvents: {
1875
+ description: string | null;
1662
1876
  location: string;
1663
1877
  id: string;
1664
1878
  name: string;
@@ -1668,6 +1882,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1668
1882
  created_at: string;
1669
1883
  updated_at: string;
1670
1884
  active: boolean;
1885
+ mainPictureUrl: string | null;
1886
+ bannerUrl: string | null;
1671
1887
  folderId: string | null;
1672
1888
  tagAssistedId: string;
1673
1889
  tagConfirmedId: string;
@@ -1680,6 +1896,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1680
1896
  price: number | null;
1681
1897
  }[];
1682
1898
  supraEvent: {
1899
+ description: string | null;
1683
1900
  location: string;
1684
1901
  id: string;
1685
1902
  name: string;
@@ -1689,6 +1906,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1689
1906
  created_at: string;
1690
1907
  updated_at: string;
1691
1908
  active: boolean;
1909
+ mainPictureUrl: string | null;
1910
+ bannerUrl: string | null;
1692
1911
  folderId: string | null;
1693
1912
  tagAssistedId: string;
1694
1913
  tagConfirmedId: string;
@@ -1706,6 +1925,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1706
1925
  };
1707
1926
  }[];
1708
1927
  }, {
1928
+ description: string | null;
1709
1929
  location: string;
1710
1930
  id: string;
1711
1931
  name: string;
@@ -1715,11 +1935,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1715
1935
  created_at: string;
1716
1936
  updated_at: string;
1717
1937
  active: boolean;
1938
+ mainPictureUrl: string | null;
1939
+ bannerUrl: string | null;
1718
1940
  folderId: string | null;
1719
1941
  tagAssistedId: string;
1720
1942
  tagConfirmedId: string;
1721
1943
  supraEventId: string | null;
1722
1944
  subEvents: {
1945
+ description: string | null;
1723
1946
  location: string;
1724
1947
  id: string;
1725
1948
  name: string;
@@ -1729,6 +1952,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1729
1952
  created_at: string;
1730
1953
  updated_at: string;
1731
1954
  active: boolean;
1955
+ mainPictureUrl: string | null;
1956
+ bannerUrl: string | null;
1732
1957
  folderId: string | null;
1733
1958
  tagAssistedId: string;
1734
1959
  tagConfirmedId: string;
@@ -1741,6 +1966,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1741
1966
  price: number | null;
1742
1967
  }[];
1743
1968
  supraEvent: {
1969
+ description: string | null;
1744
1970
  location: string;
1745
1971
  id: string;
1746
1972
  name: string;
@@ -1750,6 +1976,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1750
1976
  created_at: string;
1751
1977
  updated_at: string;
1752
1978
  active: boolean;
1979
+ mainPictureUrl: string | null;
1980
+ bannerUrl: string | null;
1753
1981
  folderId: string | null;
1754
1982
  tagAssistedId: string;
1755
1983
  tagConfirmedId: string;
@@ -1775,6 +2003,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1775
2003
  created_at: string;
1776
2004
  updated_at: string;
1777
2005
  events: {
2006
+ description: string | null;
1778
2007
  location: string;
1779
2008
  id: string;
1780
2009
  name: string;
@@ -1784,11 +2013,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1784
2013
  created_at: string;
1785
2014
  updated_at: string;
1786
2015
  active: boolean;
2016
+ mainPictureUrl: string | null;
2017
+ bannerUrl: string | null;
1787
2018
  folderId: string | null;
1788
2019
  tagAssistedId: string;
1789
2020
  tagConfirmedId: string;
1790
2021
  supraEventId: string | null;
1791
2022
  subEvents: {
2023
+ description: string | null;
1792
2024
  location: string;
1793
2025
  id: string;
1794
2026
  name: string;
@@ -1798,6 +2030,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1798
2030
  created_at: string;
1799
2031
  updated_at: string;
1800
2032
  active: boolean;
2033
+ mainPictureUrl: string | null;
2034
+ bannerUrl: string | null;
1801
2035
  folderId: string | null;
1802
2036
  tagAssistedId: string;
1803
2037
  tagConfirmedId: string;
@@ -1810,6 +2044,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1810
2044
  price: number | null;
1811
2045
  }[];
1812
2046
  supraEvent: {
2047
+ description: string | null;
1813
2048
  location: string;
1814
2049
  id: string;
1815
2050
  name: string;
@@ -1819,6 +2054,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1819
2054
  created_at: string;
1820
2055
  updated_at: string;
1821
2056
  active: boolean;
2057
+ mainPictureUrl: string | null;
2058
+ bannerUrl: string | null;
1822
2059
  folderId: string | null;
1823
2060
  tagAssistedId: string;
1824
2061
  tagConfirmedId: string;
@@ -1838,6 +2075,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1838
2075
  }[];
1839
2076
  }[];
1840
2077
  withoutFolder: {
2078
+ description: string | null;
1841
2079
  location: string;
1842
2080
  id: string;
1843
2081
  name: string;
@@ -1847,11 +2085,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1847
2085
  created_at: string;
1848
2086
  updated_at: string;
1849
2087
  active: boolean;
2088
+ mainPictureUrl: string | null;
2089
+ bannerUrl: string | null;
1850
2090
  folderId: string | null;
1851
2091
  tagAssistedId: string;
1852
2092
  tagConfirmedId: string;
1853
2093
  supraEventId: string | null;
1854
2094
  subEvents: {
2095
+ description: string | null;
1855
2096
  location: string;
1856
2097
  id: string;
1857
2098
  name: string;
@@ -1861,6 +2102,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1861
2102
  created_at: string;
1862
2103
  updated_at: string;
1863
2104
  active: boolean;
2105
+ mainPictureUrl: string | null;
2106
+ bannerUrl: string | null;
1864
2107
  folderId: string | null;
1865
2108
  tagAssistedId: string;
1866
2109
  tagConfirmedId: string;
@@ -1873,6 +2116,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1873
2116
  price: number | null;
1874
2117
  }[];
1875
2118
  supraEvent: {
2119
+ description: string | null;
1876
2120
  location: string;
1877
2121
  id: string;
1878
2122
  name: string;
@@ -1882,6 +2126,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1882
2126
  created_at: string;
1883
2127
  updated_at: string;
1884
2128
  active: boolean;
2129
+ mainPictureUrl: string | null;
2130
+ bannerUrl: string | null;
1885
2131
  folderId: string | null;
1886
2132
  tagAssistedId: string;
1887
2133
  tagConfirmedId: string;
@@ -1907,6 +2153,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1907
2153
  created_at: string;
1908
2154
  updated_at: string;
1909
2155
  events: {
2156
+ description: string | null;
1910
2157
  location: string;
1911
2158
  id: string;
1912
2159
  name: string;
@@ -1916,11 +2163,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1916
2163
  created_at: string;
1917
2164
  updated_at: string;
1918
2165
  active: boolean;
2166
+ mainPictureUrl: string | null;
2167
+ bannerUrl: string | null;
1919
2168
  folderId: string | null;
1920
2169
  tagAssistedId: string;
1921
2170
  tagConfirmedId: string;
1922
2171
  supraEventId: string | null;
1923
2172
  subEvents: {
2173
+ description: string | null;
1924
2174
  location: string;
1925
2175
  id: string;
1926
2176
  name: string;
@@ -1930,6 +2180,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1930
2180
  created_at: string;
1931
2181
  updated_at: string;
1932
2182
  active: boolean;
2183
+ mainPictureUrl: string | null;
2184
+ bannerUrl: string | null;
1933
2185
  folderId: string | null;
1934
2186
  tagAssistedId: string;
1935
2187
  tagConfirmedId: string;
@@ -1942,6 +2194,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1942
2194
  price: number | null;
1943
2195
  }[];
1944
2196
  supraEvent: {
2197
+ description: string | null;
1945
2198
  location: string;
1946
2199
  id: string;
1947
2200
  name: string;
@@ -1951,6 +2204,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1951
2204
  created_at: string;
1952
2205
  updated_at: string;
1953
2206
  active: boolean;
2207
+ mainPictureUrl: string | null;
2208
+ bannerUrl: string | null;
1954
2209
  folderId: string | null;
1955
2210
  tagAssistedId: string;
1956
2211
  tagConfirmedId: string;
@@ -1970,6 +2225,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1970
2225
  }[];
1971
2226
  }[];
1972
2227
  withoutFolder: {
2228
+ description: string | null;
1973
2229
  location: string;
1974
2230
  id: string;
1975
2231
  name: string;
@@ -1979,11 +2235,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1979
2235
  created_at: string;
1980
2236
  updated_at: string;
1981
2237
  active: boolean;
2238
+ mainPictureUrl: string | null;
2239
+ bannerUrl: string | null;
1982
2240
  folderId: string | null;
1983
2241
  tagAssistedId: string;
1984
2242
  tagConfirmedId: string;
1985
2243
  supraEventId: string | null;
1986
2244
  subEvents: {
2245
+ description: string | null;
1987
2246
  location: string;
1988
2247
  id: string;
1989
2248
  name: string;
@@ -1993,6 +2252,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1993
2252
  created_at: string;
1994
2253
  updated_at: string;
1995
2254
  active: boolean;
2255
+ mainPictureUrl: string | null;
2256
+ bannerUrl: string | null;
1996
2257
  folderId: string | null;
1997
2258
  tagAssistedId: string;
1998
2259
  tagConfirmedId: string;
@@ -2005,6 +2266,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
2005
2266
  price: number | null;
2006
2267
  }[];
2007
2268
  supraEvent: {
2269
+ description: string | null;
2008
2270
  location: string;
2009
2271
  id: string;
2010
2272
  name: string;
@@ -2014,6 +2276,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
2014
2276
  created_at: string;
2015
2277
  updated_at: string;
2016
2278
  active: boolean;
2279
+ mainPictureUrl: string | null;
2280
+ bannerUrl: string | null;
2017
2281
  folderId: string | null;
2018
2282
  tagAssistedId: string;
2019
2283
  tagConfirmedId: string;