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
@@ -6,6 +6,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
6
6
  startingDate: z.ZodDate;
7
7
  endingDate: z.ZodDate;
8
8
  location: z.ZodString;
9
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
10
+ bannerUrl: z.ZodNullable<z.ZodString>;
11
+ description: z.ZodNullable<z.ZodString>;
9
12
  folderId: z.ZodNullable<z.ZodString>;
10
13
  tagAssistedId: z.ZodString;
11
14
  tagConfirmedId: z.ZodString;
@@ -21,6 +24,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
21
24
  startingDate: z.ZodDate;
22
25
  endingDate: z.ZodDate;
23
26
  location: z.ZodString;
27
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
28
+ bannerUrl: z.ZodNullable<z.ZodString>;
29
+ description: z.ZodNullable<z.ZodString>;
24
30
  folderId: z.ZodNullable<z.ZodString>;
25
31
  tagAssistedId: z.ZodString;
26
32
  tagConfirmedId: z.ZodString;
@@ -29,6 +35,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
29
35
  created_at: z.ZodDate;
30
36
  updated_at: z.ZodDate;
31
37
  }, "strip", z.ZodTypeAny, {
38
+ description: string | null;
32
39
  location: string;
33
40
  id: string;
34
41
  name: string;
@@ -38,11 +45,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
38
45
  created_at: Date;
39
46
  updated_at: Date;
40
47
  active: boolean;
48
+ mainPictureUrl: string | null;
49
+ bannerUrl: string | null;
41
50
  folderId: string | null;
42
51
  tagAssistedId: string;
43
52
  tagConfirmedId: string;
44
53
  supraEventId: string | null;
45
54
  }, {
55
+ description: string | null;
46
56
  location: string;
47
57
  id: string;
48
58
  name: string;
@@ -52,6 +62,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
52
62
  created_at: Date;
53
63
  updated_at: Date;
54
64
  active: boolean;
65
+ mainPictureUrl: string | null;
66
+ bannerUrl: string | null;
55
67
  folderId: string | null;
56
68
  tagAssistedId: string;
57
69
  tagConfirmedId: string;
@@ -64,6 +76,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
64
76
  startingDate: z.ZodDate;
65
77
  endingDate: z.ZodDate;
66
78
  location: z.ZodString;
79
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
80
+ bannerUrl: z.ZodNullable<z.ZodString>;
81
+ description: z.ZodNullable<z.ZodString>;
67
82
  folderId: z.ZodNullable<z.ZodString>;
68
83
  tagAssistedId: z.ZodString;
69
84
  tagConfirmedId: z.ZodString;
@@ -72,6 +87,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
72
87
  created_at: z.ZodDate;
73
88
  updated_at: z.ZodDate;
74
89
  }, "strip", z.ZodTypeAny, {
90
+ description: string | null;
75
91
  location: string;
76
92
  id: string;
77
93
  name: string;
@@ -81,11 +97,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
81
97
  created_at: Date;
82
98
  updated_at: Date;
83
99
  active: boolean;
100
+ mainPictureUrl: string | null;
101
+ bannerUrl: string | null;
84
102
  folderId: string | null;
85
103
  tagAssistedId: string;
86
104
  tagConfirmedId: string;
87
105
  supraEventId: string | null;
88
106
  }, {
107
+ description: string | null;
89
108
  location: string;
90
109
  id: string;
91
110
  name: string;
@@ -95,6 +114,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
95
114
  created_at: Date;
96
115
  updated_at: Date;
97
116
  active: boolean;
117
+ mainPictureUrl: string | null;
118
+ bannerUrl: string | null;
98
119
  folderId: string | null;
99
120
  tagAssistedId: string;
100
121
  tagConfirmedId: string;
@@ -363,6 +384,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
363
384
  };
364
385
  }>;
365
386
  }>, "strip", z.ZodTypeAny, {
387
+ description: string | null;
366
388
  location: string;
367
389
  id: string;
368
390
  name: string;
@@ -388,11 +410,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
388
410
  isExclusive: boolean;
389
411
  };
390
412
  }[];
413
+ mainPictureUrl: string | null;
414
+ bannerUrl: string | null;
391
415
  folderId: string | null;
392
416
  tagAssistedId: string;
393
417
  tagConfirmedId: string;
394
418
  supraEventId: string | null;
395
419
  subEvents: {
420
+ description: string | null;
396
421
  location: string;
397
422
  id: string;
398
423
  name: string;
@@ -402,6 +427,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
402
427
  created_at: Date;
403
428
  updated_at: Date;
404
429
  active: boolean;
430
+ mainPictureUrl: string | null;
431
+ bannerUrl: string | null;
405
432
  folderId: string | null;
406
433
  tagAssistedId: string;
407
434
  tagConfirmedId: string;
@@ -414,6 +441,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
414
441
  price: number | null;
415
442
  }[];
416
443
  supraEvent: {
444
+ description: string | null;
417
445
  location: string;
418
446
  id: string;
419
447
  name: string;
@@ -423,6 +451,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
423
451
  created_at: Date;
424
452
  updated_at: Date;
425
453
  active: boolean;
454
+ mainPictureUrl: string | null;
455
+ bannerUrl: string | null;
426
456
  folderId: string | null;
427
457
  tagAssistedId: string;
428
458
  tagConfirmedId: string;
@@ -475,6 +505,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
475
505
  };
476
506
  };
477
507
  }, {
508
+ description: string | null;
478
509
  location: string;
479
510
  id: string;
480
511
  name: string;
@@ -500,11 +531,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
500
531
  isExclusive: boolean;
501
532
  };
502
533
  }[];
534
+ mainPictureUrl: string | null;
535
+ bannerUrl: string | null;
503
536
  folderId: string | null;
504
537
  tagAssistedId: string;
505
538
  tagConfirmedId: string;
506
539
  supraEventId: string | null;
507
540
  subEvents: {
541
+ description: string | null;
508
542
  location: string;
509
543
  id: string;
510
544
  name: string;
@@ -514,6 +548,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
514
548
  created_at: Date;
515
549
  updated_at: Date;
516
550
  active: boolean;
551
+ mainPictureUrl: string | null;
552
+ bannerUrl: string | null;
517
553
  folderId: string | null;
518
554
  tagAssistedId: string;
519
555
  tagConfirmedId: string;
@@ -526,6 +562,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
526
562
  price: number | null;
527
563
  }[];
528
564
  supraEvent: {
565
+ description: string | null;
529
566
  location: string;
530
567
  id: string;
531
568
  name: string;
@@ -535,6 +572,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
535
572
  created_at: Date;
536
573
  updated_at: Date;
537
574
  active: boolean;
575
+ mainPictureUrl: string | null;
576
+ bannerUrl: string | null;
538
577
  folderId: string | null;
539
578
  tagAssistedId: string;
540
579
  tagConfirmedId: string;
@@ -594,6 +633,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
594
633
  startingDate: z.ZodString;
595
634
  endingDate: z.ZodString;
596
635
  location: z.ZodString;
636
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
637
+ bannerUrl: z.ZodNullable<z.ZodString>;
638
+ description: z.ZodNullable<z.ZodString>;
597
639
  folderId: z.ZodNullable<z.ZodString>;
598
640
  tagAssistedId: z.ZodString;
599
641
  tagConfirmedId: z.ZodString;
@@ -608,6 +650,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
608
650
  startingDate: z.ZodString;
609
651
  endingDate: z.ZodString;
610
652
  location: z.ZodString;
653
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
654
+ bannerUrl: z.ZodNullable<z.ZodString>;
655
+ description: z.ZodNullable<z.ZodString>;
611
656
  folderId: z.ZodNullable<z.ZodString>;
612
657
  tagAssistedId: z.ZodString;
613
658
  tagConfirmedId: z.ZodString;
@@ -616,6 +661,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
616
661
  created_at: z.ZodString;
617
662
  updated_at: z.ZodString;
618
663
  }, z.UnknownKeysParam, z.ZodTypeAny, {
664
+ description: string | null;
619
665
  location: string;
620
666
  id: string;
621
667
  name: string;
@@ -625,11 +671,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
625
671
  created_at: string;
626
672
  updated_at: string;
627
673
  active: boolean;
674
+ mainPictureUrl: string | null;
675
+ bannerUrl: string | null;
628
676
  folderId: string | null;
629
677
  tagAssistedId: string;
630
678
  tagConfirmedId: string;
631
679
  supraEventId: string | null;
632
680
  }, {
681
+ description: string | null;
633
682
  location: string;
634
683
  id: string;
635
684
  name: string;
@@ -639,6 +688,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
639
688
  created_at: string;
640
689
  updated_at: string;
641
690
  active: boolean;
691
+ mainPictureUrl: string | null;
692
+ bannerUrl: string | null;
642
693
  folderId: string | null;
643
694
  tagAssistedId: string;
644
695
  tagConfirmedId: string;
@@ -651,6 +702,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
651
702
  startingDate: z.ZodString;
652
703
  endingDate: z.ZodString;
653
704
  location: z.ZodString;
705
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
706
+ bannerUrl: z.ZodNullable<z.ZodString>;
707
+ description: z.ZodNullable<z.ZodString>;
654
708
  folderId: z.ZodNullable<z.ZodString>;
655
709
  tagAssistedId: z.ZodString;
656
710
  tagConfirmedId: z.ZodString;
@@ -659,6 +713,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
659
713
  created_at: z.ZodString;
660
714
  updated_at: z.ZodString;
661
715
  }, z.UnknownKeysParam, z.ZodTypeAny, {
716
+ description: string | null;
662
717
  location: string;
663
718
  id: string;
664
719
  name: string;
@@ -668,11 +723,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
668
723
  created_at: string;
669
724
  updated_at: string;
670
725
  active: boolean;
726
+ mainPictureUrl: string | null;
727
+ bannerUrl: string | null;
671
728
  folderId: string | null;
672
729
  tagAssistedId: string;
673
730
  tagConfirmedId: string;
674
731
  supraEventId: string | null;
675
732
  }, {
733
+ description: string | null;
676
734
  location: string;
677
735
  id: string;
678
736
  name: string;
@@ -682,6 +740,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
682
740
  created_at: string;
683
741
  updated_at: string;
684
742
  active: boolean;
743
+ mainPictureUrl: string | null;
744
+ bannerUrl: string | null;
685
745
  folderId: string | null;
686
746
  tagAssistedId: string;
687
747
  tagConfirmedId: string;
@@ -947,6 +1007,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
947
1007
  };
948
1008
  }>;
949
1009
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1010
+ description: string | null;
950
1011
  location: string;
951
1012
  id: string;
952
1013
  name: string;
@@ -972,11 +1033,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
972
1033
  isExclusive: boolean;
973
1034
  };
974
1035
  }[];
1036
+ mainPictureUrl: string | null;
1037
+ bannerUrl: string | null;
975
1038
  folderId: string | null;
976
1039
  tagAssistedId: string;
977
1040
  tagConfirmedId: string;
978
1041
  supraEventId: string | null;
979
1042
  subEvents: {
1043
+ description: string | null;
980
1044
  location: string;
981
1045
  id: string;
982
1046
  name: string;
@@ -986,6 +1050,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
986
1050
  created_at: string;
987
1051
  updated_at: string;
988
1052
  active: boolean;
1053
+ mainPictureUrl: string | null;
1054
+ bannerUrl: string | null;
989
1055
  folderId: string | null;
990
1056
  tagAssistedId: string;
991
1057
  tagConfirmedId: string;
@@ -998,6 +1064,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
998
1064
  price: number | null;
999
1065
  }[];
1000
1066
  supraEvent: {
1067
+ description: string | null;
1001
1068
  location: string;
1002
1069
  id: string;
1003
1070
  name: string;
@@ -1007,6 +1074,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1007
1074
  created_at: string;
1008
1075
  updated_at: string;
1009
1076
  active: boolean;
1077
+ mainPictureUrl: string | null;
1078
+ bannerUrl: string | null;
1010
1079
  folderId: string | null;
1011
1080
  tagAssistedId: string;
1012
1081
  tagConfirmedId: string;
@@ -1059,6 +1128,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1059
1128
  };
1060
1129
  };
1061
1130
  }, {
1131
+ description: string | null;
1062
1132
  location: string;
1063
1133
  id: string;
1064
1134
  name: string;
@@ -1084,11 +1154,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1084
1154
  isExclusive: boolean;
1085
1155
  };
1086
1156
  }[];
1157
+ mainPictureUrl: string | null;
1158
+ bannerUrl: string | null;
1087
1159
  folderId: string | null;
1088
1160
  tagAssistedId: string;
1089
1161
  tagConfirmedId: string;
1090
1162
  supraEventId: string | null;
1091
1163
  subEvents: {
1164
+ description: string | null;
1092
1165
  location: string;
1093
1166
  id: string;
1094
1167
  name: string;
@@ -1098,6 +1171,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1098
1171
  created_at: string;
1099
1172
  updated_at: string;
1100
1173
  active: boolean;
1174
+ mainPictureUrl: string | null;
1175
+ bannerUrl: string | null;
1101
1176
  folderId: string | null;
1102
1177
  tagAssistedId: string;
1103
1178
  tagConfirmedId: string;
@@ -1110,6 +1185,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1110
1185
  price: number | null;
1111
1186
  }[];
1112
1187
  supraEvent: {
1188
+ description: string | null;
1113
1189
  location: string;
1114
1190
  id: string;
1115
1191
  name: string;
@@ -1119,6 +1195,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1119
1195
  created_at: string;
1120
1196
  updated_at: string;
1121
1197
  active: boolean;
1198
+ mainPictureUrl: string | null;
1199
+ bannerUrl: string | null;
1122
1200
  folderId: string | null;
1123
1201
  tagAssistedId: string;
1124
1202
  tagConfirmedId: string;
@@ -1180,6 +1258,9 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1180
1258
  startingDate: z.ZodDate;
1181
1259
  endingDate: z.ZodDate;
1182
1260
  location: z.ZodString;
1261
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1262
+ bannerUrl: z.ZodNullable<z.ZodString>;
1263
+ description: z.ZodNullable<z.ZodString>;
1183
1264
  folderId: z.ZodNullable<z.ZodString>;
1184
1265
  tagAssistedId: z.ZodString;
1185
1266
  tagConfirmedId: z.ZodString;
@@ -1243,6 +1324,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1243
1324
  groupId: string;
1244
1325
  }>;
1245
1326
  }>, "strip", z.ZodTypeAny, {
1327
+ description: string | null;
1246
1328
  location: string;
1247
1329
  id: string;
1248
1330
  name: string;
@@ -1252,6 +1334,8 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1252
1334
  created_at: Date;
1253
1335
  updated_at: Date;
1254
1336
  active: boolean;
1337
+ mainPictureUrl: string | null;
1338
+ bannerUrl: string | null;
1255
1339
  folderId: string | null;
1256
1340
  tagAssistedId: string;
1257
1341
  tagConfirmedId: string;
@@ -1273,6 +1357,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1273
1357
  groupId: string;
1274
1358
  };
1275
1359
  }, {
1360
+ description: string | null;
1276
1361
  location: string;
1277
1362
  id: string;
1278
1363
  name: string;
@@ -1282,6 +1367,8 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
1282
1367
  created_at: Date;
1283
1368
  updated_at: Date;
1284
1369
  active: boolean;
1370
+ mainPictureUrl: string | null;
1371
+ bannerUrl: string | null;
1285
1372
  folderId: string | null;
1286
1373
  tagAssistedId: string;
1287
1374
  tagConfirmedId: string;
@@ -1310,6 +1397,9 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1310
1397
  startingDate: z.ZodString;
1311
1398
  endingDate: z.ZodString;
1312
1399
  location: z.ZodString;
1400
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
1401
+ bannerUrl: z.ZodNullable<z.ZodString>;
1402
+ description: z.ZodNullable<z.ZodString>;
1313
1403
  folderId: z.ZodNullable<z.ZodString>;
1314
1404
  tagAssistedId: z.ZodString;
1315
1405
  tagConfirmedId: z.ZodString;
@@ -1372,6 +1462,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1372
1462
  groupId: string;
1373
1463
  }>;
1374
1464
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1465
+ description: string | null;
1375
1466
  location: string;
1376
1467
  id: string;
1377
1468
  name: string;
@@ -1381,6 +1472,8 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1381
1472
  created_at: string;
1382
1473
  updated_at: string;
1383
1474
  active: boolean;
1475
+ mainPictureUrl: string | null;
1476
+ bannerUrl: string | null;
1384
1477
  folderId: string | null;
1385
1478
  tagAssistedId: string;
1386
1479
  tagConfirmedId: string;
@@ -1402,6 +1495,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1402
1495
  groupId: string;
1403
1496
  };
1404
1497
  }, {
1498
+ description: string | null;
1405
1499
  location: string;
1406
1500
  id: string;
1407
1501
  name: string;
@@ -1411,6 +1505,8 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
1411
1505
  created_at: string;
1412
1506
  updated_at: string;
1413
1507
  active: boolean;
1508
+ mainPictureUrl: string | null;
1509
+ bannerUrl: string | null;
1414
1510
  folderId: string | null;
1415
1511
  tagAssistedId: string;
1416
1512
  tagConfirmedId: string;
@@ -5,6 +5,9 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
5
5
  startingDate: import("zod").ZodDate;
6
6
  endingDate: import("zod").ZodDate;
7
7
  location: import("zod").ZodString;
8
+ mainPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
9
+ bannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
10
+ description: import("zod").ZodNullable<import("zod").ZodString>;
8
11
  folderId: import("zod").ZodNullable<import("zod").ZodString>;
9
12
  tagAssistedId: import("zod").ZodString;
10
13
  tagConfirmedId: import("zod").ZodString;
@@ -13,6 +16,7 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
13
16
  created_at: import("zod").ZodDate;
14
17
  updated_at: import("zod").ZodDate;
15
18
  }, "strip", import("zod").ZodTypeAny, {
19
+ description: string | null;
16
20
  location: string;
17
21
  id: string;
18
22
  name: string;
@@ -22,11 +26,14 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
22
26
  created_at: Date;
23
27
  updated_at: Date;
24
28
  active: boolean;
29
+ mainPictureUrl: string | null;
30
+ bannerUrl: string | null;
25
31
  folderId: string | null;
26
32
  tagAssistedId: string;
27
33
  tagConfirmedId: string;
28
34
  supraEventId: string | null;
29
35
  }, {
36
+ description: string | null;
30
37
  location: string;
31
38
  id: string;
32
39
  name: string;
@@ -36,6 +43,8 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
36
43
  created_at: Date;
37
44
  updated_at: Date;
38
45
  active: boolean;
46
+ mainPictureUrl: string | null;
47
+ bannerUrl: string | null;
39
48
  folderId: string | null;
40
49
  tagAssistedId: string;
41
50
  tagConfirmedId: string;
@@ -6,6 +6,9 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
6
6
  startingDate: z.ZodDate;
7
7
  endingDate: z.ZodDate;
8
8
  location: z.ZodString;
9
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
10
+ bannerUrl: z.ZodNullable<z.ZodString>;
11
+ description: z.ZodNullable<z.ZodString>;
9
12
  folderId: z.ZodNullable<z.ZodString>;
10
13
  tagAssistedId: z.ZodString;
11
14
  tagConfirmedId: z.ZodString;
@@ -22,6 +25,9 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
22
25
  startingDate: z.ZodDate;
23
26
  endingDate: z.ZodDate;
24
27
  location: z.ZodString;
28
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
29
+ bannerUrl: z.ZodNullable<z.ZodString>;
30
+ description: z.ZodNullable<z.ZodString>;
25
31
  folderId: z.ZodNullable<z.ZodString>;
26
32
  tagAssistedId: z.ZodString;
27
33
  tagConfirmedId: z.ZodString;
@@ -206,6 +212,9 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
206
212
  startingDate: z.ZodDate;
207
213
  endingDate: z.ZodDate;
208
214
  location: z.ZodString;
215
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
216
+ bannerUrl: z.ZodNullable<z.ZodString>;
217
+ description: z.ZodNullable<z.ZodString>;
209
218
  folderId: z.ZodNullable<z.ZodString>;
210
219
  tagAssistedId: z.ZodString;
211
220
  tagConfirmedId: z.ZodString;
@@ -301,6 +310,7 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
301
310
  price: number | null;
302
311
  }>, "many">;
303
312
  }>, "strip", z.ZodTypeAny, {
313
+ description: string | null;
304
314
  location: string;
305
315
  id: string;
306
316
  name: string;
@@ -310,6 +320,8 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
310
320
  created_at: Date;
311
321
  updated_at: Date;
312
322
  active: boolean;
323
+ mainPictureUrl: string | null;
324
+ bannerUrl: string | null;
313
325
  folderId: string | null;
314
326
  tagAssistedId: string;
315
327
  tagConfirmedId: string;
@@ -337,6 +349,7 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
337
349
  };
338
350
  };
339
351
  }, {
352
+ description: string | null;
340
353
  location: string;
341
354
  id: string;
342
355
  name: string;
@@ -346,6 +359,8 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
346
359
  created_at: Date;
347
360
  updated_at: Date;
348
361
  active: boolean;
362
+ mainPictureUrl: string | null;
363
+ bannerUrl: string | null;
349
364
  folderId: string | null;
350
365
  tagAssistedId: string;
351
366
  tagConfirmedId: string;
@@ -380,6 +395,9 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
380
395
  startingDate: z.ZodString;
381
396
  endingDate: z.ZodString;
382
397
  location: z.ZodString;
398
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
399
+ bannerUrl: z.ZodNullable<z.ZodString>;
400
+ description: z.ZodNullable<z.ZodString>;
383
401
  folderId: z.ZodNullable<z.ZodString>;
384
402
  tagAssistedId: z.ZodString;
385
403
  tagConfirmedId: z.ZodString;
@@ -473,6 +491,7 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
473
491
  price: number | null;
474
492
  }>, "many">;
475
493
  }, z.UnknownKeysParam, z.ZodTypeAny, {
494
+ description: string | null;
476
495
  location: string;
477
496
  id: string;
478
497
  name: string;
@@ -482,6 +501,8 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
482
501
  created_at: string;
483
502
  updated_at: string;
484
503
  active: boolean;
504
+ mainPictureUrl: string | null;
505
+ bannerUrl: string | null;
485
506
  folderId: string | null;
486
507
  tagAssistedId: string;
487
508
  tagConfirmedId: string;
@@ -509,6 +530,7 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
509
530
  };
510
531
  };
511
532
  }, {
533
+ description: string | null;
512
534
  location: string;
513
535
  id: string;
514
536
  name: string;
@@ -518,6 +540,8 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
518
540
  created_at: string;
519
541
  updated_at: string;
520
542
  active: boolean;
543
+ mainPictureUrl: string | null;
544
+ bannerUrl: string | null;
521
545
  folderId: string | null;
522
546
  tagAssistedId: string;
523
547
  tagConfirmedId: string;