expo-backend-types 0.46.0-EXPO-343-Quique-Wolff.1 → 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.2
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.
- package/dist/src/event/dto/create-event.dto.d.ts +73 -3
- package/dist/src/event/dto/create-event.dto.js +13 -1
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/event.dto.d.ts +9 -0
- package/dist/src/event/dto/event.dto.js +13 -0
- package/dist/src/event/dto/get-active-events.dto.d.ts +30 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +264 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
- package/dist/src/event/dto/update-event.dto.d.ts +24 -0
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
- package/dist/src/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +214 -1
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +9 -6
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +66 -0
- 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
10
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
11
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
28
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
29
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
24
30
|
folderId: z.ZodNullable<z.ZodString>;
|
25
31
|
tagAssistedId: z.ZodString;
|
26
32
|
tagConfirmedId: z.ZodString;
|
@@ -35,9 +41,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
35
41
|
date: Date;
|
36
42
|
startingDate: Date;
|
37
43
|
endingDate: Date;
|
44
|
+
eventPictureUrl: string | null;
|
45
|
+
eventBannerUrl: string | null;
|
38
46
|
created_at: Date;
|
39
47
|
updated_at: Date;
|
40
48
|
active: boolean;
|
49
|
+
eventDescription: string | null;
|
41
50
|
folderId: string | null;
|
42
51
|
tagAssistedId: string;
|
43
52
|
tagConfirmedId: string;
|
@@ -49,9 +58,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
49
58
|
date: Date;
|
50
59
|
startingDate: Date;
|
51
60
|
endingDate: Date;
|
61
|
+
eventPictureUrl: string | null;
|
62
|
+
eventBannerUrl: string | null;
|
52
63
|
created_at: Date;
|
53
64
|
updated_at: Date;
|
54
65
|
active: boolean;
|
66
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
80
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
81
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
67
82
|
folderId: z.ZodNullable<z.ZodString>;
|
68
83
|
tagAssistedId: z.ZodString;
|
69
84
|
tagConfirmedId: z.ZodString;
|
@@ -78,9 +93,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
78
93
|
date: Date;
|
79
94
|
startingDate: Date;
|
80
95
|
endingDate: Date;
|
96
|
+
eventPictureUrl: string | null;
|
97
|
+
eventBannerUrl: string | null;
|
81
98
|
created_at: Date;
|
82
99
|
updated_at: Date;
|
83
100
|
active: boolean;
|
101
|
+
eventDescription: string | null;
|
84
102
|
folderId: string | null;
|
85
103
|
tagAssistedId: string;
|
86
104
|
tagConfirmedId: string;
|
@@ -92,9 +110,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
92
110
|
date: Date;
|
93
111
|
startingDate: Date;
|
94
112
|
endingDate: Date;
|
113
|
+
eventPictureUrl: string | null;
|
114
|
+
eventBannerUrl: string | null;
|
95
115
|
created_at: Date;
|
96
116
|
updated_at: Date;
|
97
117
|
active: boolean;
|
118
|
+
eventDescription: string | null;
|
98
119
|
folderId: string | null;
|
99
120
|
tagAssistedId: string;
|
100
121
|
tagConfirmedId: string;
|
@@ -369,6 +390,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
369
390
|
date: Date;
|
370
391
|
startingDate: Date;
|
371
392
|
endingDate: Date;
|
393
|
+
eventPictureUrl: string | null;
|
394
|
+
eventBannerUrl: string | null;
|
372
395
|
created_at: Date;
|
373
396
|
updated_at: Date;
|
374
397
|
active: boolean;
|
@@ -388,6 +411,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
388
411
|
isExclusive: boolean;
|
389
412
|
};
|
390
413
|
}[];
|
414
|
+
eventDescription: string | null;
|
391
415
|
folderId: string | null;
|
392
416
|
tagAssistedId: string;
|
393
417
|
tagConfirmedId: string;
|
@@ -399,9 +423,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
399
423
|
date: Date;
|
400
424
|
startingDate: Date;
|
401
425
|
endingDate: Date;
|
426
|
+
eventPictureUrl: string | null;
|
427
|
+
eventBannerUrl: string | null;
|
402
428
|
created_at: Date;
|
403
429
|
updated_at: Date;
|
404
430
|
active: boolean;
|
431
|
+
eventDescription: string | null;
|
405
432
|
folderId: string | null;
|
406
433
|
tagAssistedId: string;
|
407
434
|
tagConfirmedId: string;
|
@@ -420,9 +447,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
420
447
|
date: Date;
|
421
448
|
startingDate: Date;
|
422
449
|
endingDate: Date;
|
450
|
+
eventPictureUrl: string | null;
|
451
|
+
eventBannerUrl: string | null;
|
423
452
|
created_at: Date;
|
424
453
|
updated_at: Date;
|
425
454
|
active: boolean;
|
455
|
+
eventDescription: string | null;
|
426
456
|
folderId: string | null;
|
427
457
|
tagAssistedId: string;
|
428
458
|
tagConfirmedId: string;
|
@@ -481,6 +511,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
481
511
|
date: Date;
|
482
512
|
startingDate: Date;
|
483
513
|
endingDate: Date;
|
514
|
+
eventPictureUrl: string | null;
|
515
|
+
eventBannerUrl: string | null;
|
484
516
|
created_at: Date;
|
485
517
|
updated_at: Date;
|
486
518
|
active: boolean;
|
@@ -500,6 +532,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
500
532
|
isExclusive: boolean;
|
501
533
|
};
|
502
534
|
}[];
|
535
|
+
eventDescription: string | null;
|
503
536
|
folderId: string | null;
|
504
537
|
tagAssistedId: string;
|
505
538
|
tagConfirmedId: string;
|
@@ -511,9 +544,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
511
544
|
date: Date;
|
512
545
|
startingDate: Date;
|
513
546
|
endingDate: Date;
|
547
|
+
eventPictureUrl: string | null;
|
548
|
+
eventBannerUrl: string | null;
|
514
549
|
created_at: Date;
|
515
550
|
updated_at: Date;
|
516
551
|
active: boolean;
|
552
|
+
eventDescription: string | null;
|
517
553
|
folderId: string | null;
|
518
554
|
tagAssistedId: string;
|
519
555
|
tagConfirmedId: string;
|
@@ -532,9 +568,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
532
568
|
date: Date;
|
533
569
|
startingDate: Date;
|
534
570
|
endingDate: Date;
|
571
|
+
eventPictureUrl: string | null;
|
572
|
+
eventBannerUrl: string | null;
|
535
573
|
created_at: Date;
|
536
574
|
updated_at: Date;
|
537
575
|
active: boolean;
|
576
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
637
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
638
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
654
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
655
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
611
656
|
folderId: z.ZodNullable<z.ZodString>;
|
612
657
|
tagAssistedId: z.ZodString;
|
613
658
|
tagConfirmedId: z.ZodString;
|
@@ -622,9 +667,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
622
667
|
date: string;
|
623
668
|
startingDate: string;
|
624
669
|
endingDate: string;
|
670
|
+
eventPictureUrl: string | null;
|
671
|
+
eventBannerUrl: string | null;
|
625
672
|
created_at: string;
|
626
673
|
updated_at: string;
|
627
674
|
active: boolean;
|
675
|
+
eventDescription: string | null;
|
628
676
|
folderId: string | null;
|
629
677
|
tagAssistedId: string;
|
630
678
|
tagConfirmedId: string;
|
@@ -636,9 +684,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
636
684
|
date: string;
|
637
685
|
startingDate: string;
|
638
686
|
endingDate: string;
|
687
|
+
eventPictureUrl: string | null;
|
688
|
+
eventBannerUrl: string | null;
|
639
689
|
created_at: string;
|
640
690
|
updated_at: string;
|
641
691
|
active: boolean;
|
692
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
706
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
707
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
654
708
|
folderId: z.ZodNullable<z.ZodString>;
|
655
709
|
tagAssistedId: z.ZodString;
|
656
710
|
tagConfirmedId: z.ZodString;
|
@@ -665,9 +719,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
665
719
|
date: string;
|
666
720
|
startingDate: string;
|
667
721
|
endingDate: string;
|
722
|
+
eventPictureUrl: string | null;
|
723
|
+
eventBannerUrl: string | null;
|
668
724
|
created_at: string;
|
669
725
|
updated_at: string;
|
670
726
|
active: boolean;
|
727
|
+
eventDescription: string | null;
|
671
728
|
folderId: string | null;
|
672
729
|
tagAssistedId: string;
|
673
730
|
tagConfirmedId: string;
|
@@ -679,9 +736,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
679
736
|
date: string;
|
680
737
|
startingDate: string;
|
681
738
|
endingDate: string;
|
739
|
+
eventPictureUrl: string | null;
|
740
|
+
eventBannerUrl: string | null;
|
682
741
|
created_at: string;
|
683
742
|
updated_at: string;
|
684
743
|
active: boolean;
|
744
|
+
eventDescription: string | null;
|
685
745
|
folderId: string | null;
|
686
746
|
tagAssistedId: string;
|
687
747
|
tagConfirmedId: string;
|
@@ -953,6 +1013,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
953
1013
|
date: string;
|
954
1014
|
startingDate: string;
|
955
1015
|
endingDate: string;
|
1016
|
+
eventPictureUrl: string | null;
|
1017
|
+
eventBannerUrl: string | null;
|
956
1018
|
created_at: string;
|
957
1019
|
updated_at: string;
|
958
1020
|
active: boolean;
|
@@ -972,6 +1034,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
972
1034
|
isExclusive: boolean;
|
973
1035
|
};
|
974
1036
|
}[];
|
1037
|
+
eventDescription: string | null;
|
975
1038
|
folderId: string | null;
|
976
1039
|
tagAssistedId: string;
|
977
1040
|
tagConfirmedId: string;
|
@@ -983,9 +1046,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
983
1046
|
date: string;
|
984
1047
|
startingDate: string;
|
985
1048
|
endingDate: string;
|
1049
|
+
eventPictureUrl: string | null;
|
1050
|
+
eventBannerUrl: string | null;
|
986
1051
|
created_at: string;
|
987
1052
|
updated_at: string;
|
988
1053
|
active: boolean;
|
1054
|
+
eventDescription: string | null;
|
989
1055
|
folderId: string | null;
|
990
1056
|
tagAssistedId: string;
|
991
1057
|
tagConfirmedId: string;
|
@@ -1004,9 +1070,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1004
1070
|
date: string;
|
1005
1071
|
startingDate: string;
|
1006
1072
|
endingDate: string;
|
1073
|
+
eventPictureUrl: string | null;
|
1074
|
+
eventBannerUrl: string | null;
|
1007
1075
|
created_at: string;
|
1008
1076
|
updated_at: string;
|
1009
1077
|
active: boolean;
|
1078
|
+
eventDescription: string | null;
|
1010
1079
|
folderId: string | null;
|
1011
1080
|
tagAssistedId: string;
|
1012
1081
|
tagConfirmedId: string;
|
@@ -1065,6 +1134,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1065
1134
|
date: string;
|
1066
1135
|
startingDate: string;
|
1067
1136
|
endingDate: string;
|
1137
|
+
eventPictureUrl: string | null;
|
1138
|
+
eventBannerUrl: string | null;
|
1068
1139
|
created_at: string;
|
1069
1140
|
updated_at: string;
|
1070
1141
|
active: boolean;
|
@@ -1084,6 +1155,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1084
1155
|
isExclusive: boolean;
|
1085
1156
|
};
|
1086
1157
|
}[];
|
1158
|
+
eventDescription: string | null;
|
1087
1159
|
folderId: string | null;
|
1088
1160
|
tagAssistedId: string;
|
1089
1161
|
tagConfirmedId: string;
|
@@ -1095,9 +1167,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1095
1167
|
date: string;
|
1096
1168
|
startingDate: string;
|
1097
1169
|
endingDate: string;
|
1170
|
+
eventPictureUrl: string | null;
|
1171
|
+
eventBannerUrl: string | null;
|
1098
1172
|
created_at: string;
|
1099
1173
|
updated_at: string;
|
1100
1174
|
active: boolean;
|
1175
|
+
eventDescription: string | null;
|
1101
1176
|
folderId: string | null;
|
1102
1177
|
tagAssistedId: string;
|
1103
1178
|
tagConfirmedId: string;
|
@@ -1116,9 +1191,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1116
1191
|
date: string;
|
1117
1192
|
startingDate: string;
|
1118
1193
|
endingDate: string;
|
1194
|
+
eventPictureUrl: string | null;
|
1195
|
+
eventBannerUrl: string | null;
|
1119
1196
|
created_at: string;
|
1120
1197
|
updated_at: string;
|
1121
1198
|
active: boolean;
|
1199
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1262
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1263
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1183
1264
|
folderId: z.ZodNullable<z.ZodString>;
|
1184
1265
|
tagAssistedId: z.ZodString;
|
1185
1266
|
tagConfirmedId: z.ZodString;
|
@@ -1249,9 +1330,12 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1249
1330
|
date: Date;
|
1250
1331
|
startingDate: Date;
|
1251
1332
|
endingDate: Date;
|
1333
|
+
eventPictureUrl: string | null;
|
1334
|
+
eventBannerUrl: string | null;
|
1252
1335
|
created_at: Date;
|
1253
1336
|
updated_at: Date;
|
1254
1337
|
active: boolean;
|
1338
|
+
eventDescription: string | null;
|
1255
1339
|
folderId: string | null;
|
1256
1340
|
tagAssistedId: string;
|
1257
1341
|
tagConfirmedId: string;
|
@@ -1279,9 +1363,12 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1279
1363
|
date: Date;
|
1280
1364
|
startingDate: Date;
|
1281
1365
|
endingDate: Date;
|
1366
|
+
eventPictureUrl: string | null;
|
1367
|
+
eventBannerUrl: string | null;
|
1282
1368
|
created_at: Date;
|
1283
1369
|
updated_at: Date;
|
1284
1370
|
active: boolean;
|
1371
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1401
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1402
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1313
1403
|
folderId: z.ZodNullable<z.ZodString>;
|
1314
1404
|
tagAssistedId: z.ZodString;
|
1315
1405
|
tagConfirmedId: z.ZodString;
|
@@ -1378,9 +1468,12 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1378
1468
|
date: string;
|
1379
1469
|
startingDate: string;
|
1380
1470
|
endingDate: string;
|
1471
|
+
eventPictureUrl: string | null;
|
1472
|
+
eventBannerUrl: string | null;
|
1381
1473
|
created_at: string;
|
1382
1474
|
updated_at: string;
|
1383
1475
|
active: boolean;
|
1476
|
+
eventDescription: string | null;
|
1384
1477
|
folderId: string | null;
|
1385
1478
|
tagAssistedId: string;
|
1386
1479
|
tagConfirmedId: string;
|
@@ -1408,9 +1501,12 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1408
1501
|
date: string;
|
1409
1502
|
startingDate: string;
|
1410
1503
|
endingDate: string;
|
1504
|
+
eventPictureUrl: string | null;
|
1505
|
+
eventBannerUrl: string | null;
|
1411
1506
|
created_at: string;
|
1412
1507
|
updated_at: string;
|
1413
1508
|
active: boolean;
|
1509
|
+
eventDescription: 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
|
+
eventPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
9
|
+
eventBannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
10
|
+
eventDescription: 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;
|
@@ -19,9 +22,12 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
|
|
19
22
|
date: Date;
|
20
23
|
startingDate: Date;
|
21
24
|
endingDate: Date;
|
25
|
+
eventPictureUrl: string | null;
|
26
|
+
eventBannerUrl: string | null;
|
22
27
|
created_at: Date;
|
23
28
|
updated_at: Date;
|
24
29
|
active: boolean;
|
30
|
+
eventDescription: string | null;
|
25
31
|
folderId: string | null;
|
26
32
|
tagAssistedId: string;
|
27
33
|
tagConfirmedId: string;
|
@@ -33,9 +39,12 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
|
|
33
39
|
date: Date;
|
34
40
|
startingDate: Date;
|
35
41
|
endingDate: Date;
|
42
|
+
eventPictureUrl: string | null;
|
43
|
+
eventBannerUrl: string | null;
|
36
44
|
created_at: Date;
|
37
45
|
updated_at: Date;
|
38
46
|
active: boolean;
|
47
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
10
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
11
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
216
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
217
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
209
218
|
folderId: z.ZodNullable<z.ZodString>;
|
210
219
|
tagAssistedId: z.ZodString;
|
211
220
|
tagConfirmedId: z.ZodString;
|
@@ -307,9 +316,12 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
307
316
|
date: Date;
|
308
317
|
startingDate: Date;
|
309
318
|
endingDate: Date;
|
319
|
+
eventPictureUrl: string | null;
|
320
|
+
eventBannerUrl: string | null;
|
310
321
|
created_at: Date;
|
311
322
|
updated_at: Date;
|
312
323
|
active: boolean;
|
324
|
+
eventDescription: string | null;
|
313
325
|
folderId: string | null;
|
314
326
|
tagAssistedId: string;
|
315
327
|
tagConfirmedId: string;
|
@@ -343,9 +355,12 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
343
355
|
date: Date;
|
344
356
|
startingDate: Date;
|
345
357
|
endingDate: Date;
|
358
|
+
eventPictureUrl: string | null;
|
359
|
+
eventBannerUrl: string | null;
|
346
360
|
created_at: Date;
|
347
361
|
updated_at: Date;
|
348
362
|
active: boolean;
|
363
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
399
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
400
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
383
401
|
folderId: z.ZodNullable<z.ZodString>;
|
384
402
|
tagAssistedId: z.ZodString;
|
385
403
|
tagConfirmedId: z.ZodString;
|
@@ -479,9 +497,12 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
479
497
|
date: string;
|
480
498
|
startingDate: string;
|
481
499
|
endingDate: string;
|
500
|
+
eventPictureUrl: string | null;
|
501
|
+
eventBannerUrl: string | null;
|
482
502
|
created_at: string;
|
483
503
|
updated_at: string;
|
484
504
|
active: boolean;
|
505
|
+
eventDescription: string | null;
|
485
506
|
folderId: string | null;
|
486
507
|
tagAssistedId: string;
|
487
508
|
tagConfirmedId: string;
|
@@ -515,9 +536,12 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
515
536
|
date: string;
|
516
537
|
startingDate: string;
|
517
538
|
endingDate: string;
|
539
|
+
eventPictureUrl: string | null;
|
540
|
+
eventBannerUrl: string | null;
|
518
541
|
created_at: string;
|
519
542
|
updated_at: string;
|
520
543
|
active: boolean;
|
544
|
+
eventDescription: string | null;
|
521
545
|
folderId: string | null;
|
522
546
|
tagAssistedId: string;
|
523
547
|
tagConfirmedId: string;
|
@@ -14,6 +14,9 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
14
14
|
startingDate: z.ZodDate;
|
15
15
|
endingDate: z.ZodDate;
|
16
16
|
location: z.ZodString;
|
17
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
18
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
19
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
17
20
|
folderId: z.ZodNullable<z.ZodString>;
|
18
21
|
tagAssistedId: z.ZodString;
|
19
22
|
tagConfirmedId: z.ZodString;
|
@@ -28,9 +31,12 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
28
31
|
date: Date;
|
29
32
|
startingDate: Date;
|
30
33
|
endingDate: Date;
|
34
|
+
eventPictureUrl: string | null;
|
35
|
+
eventBannerUrl: string | null;
|
31
36
|
created_at: Date;
|
32
37
|
updated_at: Date;
|
33
38
|
active: boolean;
|
39
|
+
eventDescription: string | null;
|
34
40
|
folderId: string | null;
|
35
41
|
tagAssistedId: string;
|
36
42
|
tagConfirmedId: string;
|
@@ -42,9 +48,12 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
42
48
|
date: Date;
|
43
49
|
startingDate: Date;
|
44
50
|
endingDate: Date;
|
51
|
+
eventPictureUrl: string | null;
|
52
|
+
eventBannerUrl: string | null;
|
45
53
|
created_at: Date;
|
46
54
|
updated_at: Date;
|
47
55
|
active: boolean;
|
56
|
+
eventDescription: string | null;
|
48
57
|
folderId: string | null;
|
49
58
|
tagAssistedId: string;
|
50
59
|
tagConfirmedId: string;
|
@@ -63,9 +72,12 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
63
72
|
date: Date;
|
64
73
|
startingDate: Date;
|
65
74
|
endingDate: Date;
|
75
|
+
eventPictureUrl: string | null;
|
76
|
+
eventBannerUrl: string | null;
|
66
77
|
created_at: Date;
|
67
78
|
updated_at: Date;
|
68
79
|
active: boolean;
|
80
|
+
eventDescription: string | null;
|
69
81
|
folderId: string | null;
|
70
82
|
tagAssistedId: string;
|
71
83
|
tagConfirmedId: string;
|
@@ -84,9 +96,12 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
84
96
|
date: Date;
|
85
97
|
startingDate: Date;
|
86
98
|
endingDate: Date;
|
99
|
+
eventPictureUrl: string | null;
|
100
|
+
eventBannerUrl: string | null;
|
87
101
|
created_at: Date;
|
88
102
|
updated_at: Date;
|
89
103
|
active: boolean;
|
104
|
+
eventDescription: string | null;
|
90
105
|
folderId: string | null;
|
91
106
|
tagAssistedId: string;
|
92
107
|
tagConfirmedId: string;
|
@@ -107,9 +122,12 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
107
122
|
date: Date;
|
108
123
|
startingDate: Date;
|
109
124
|
endingDate: Date;
|
125
|
+
eventPictureUrl: string | null;
|
126
|
+
eventBannerUrl: string | null;
|
110
127
|
created_at: Date;
|
111
128
|
updated_at: Date;
|
112
129
|
active: boolean;
|
130
|
+
eventDescription: string | null;
|
113
131
|
folderId: string | null;
|
114
132
|
tagAssistedId: string;
|
115
133
|
tagConfirmedId: string;
|
@@ -130,9 +148,12 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
130
148
|
date: Date;
|
131
149
|
startingDate: Date;
|
132
150
|
endingDate: Date;
|
151
|
+
eventPictureUrl: string | null;
|
152
|
+
eventBannerUrl: string | null;
|
133
153
|
created_at: Date;
|
134
154
|
updated_at: Date;
|
135
155
|
active: boolean;
|
156
|
+
eventDescription: string | null;
|
136
157
|
folderId: string | null;
|
137
158
|
tagAssistedId: string;
|
138
159
|
tagConfirmedId: string;
|
@@ -154,6 +175,9 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
154
175
|
startingDate: z.ZodString;
|
155
176
|
endingDate: z.ZodString;
|
156
177
|
location: z.ZodString;
|
178
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
179
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
180
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
157
181
|
folderId: z.ZodNullable<z.ZodString>;
|
158
182
|
tagAssistedId: z.ZodString;
|
159
183
|
tagConfirmedId: z.ZodString;
|
@@ -168,9 +192,12 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
168
192
|
date: string;
|
169
193
|
startingDate: string;
|
170
194
|
endingDate: string;
|
195
|
+
eventPictureUrl: string | null;
|
196
|
+
eventBannerUrl: string | null;
|
171
197
|
created_at: string;
|
172
198
|
updated_at: string;
|
173
199
|
active: boolean;
|
200
|
+
eventDescription: string | null;
|
174
201
|
folderId: string | null;
|
175
202
|
tagAssistedId: string;
|
176
203
|
tagConfirmedId: string;
|
@@ -182,9 +209,12 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
182
209
|
date: string;
|
183
210
|
startingDate: string;
|
184
211
|
endingDate: string;
|
212
|
+
eventPictureUrl: string | null;
|
213
|
+
eventBannerUrl: string | null;
|
185
214
|
created_at: string;
|
186
215
|
updated_at: string;
|
187
216
|
active: boolean;
|
217
|
+
eventDescription: string | null;
|
188
218
|
folderId: string | null;
|
189
219
|
tagAssistedId: string;
|
190
220
|
tagConfirmedId: string;
|
@@ -203,9 +233,12 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
203
233
|
date: string;
|
204
234
|
startingDate: string;
|
205
235
|
endingDate: string;
|
236
|
+
eventPictureUrl: string | null;
|
237
|
+
eventBannerUrl: string | null;
|
206
238
|
created_at: string;
|
207
239
|
updated_at: string;
|
208
240
|
active: boolean;
|
241
|
+
eventDescription: string | null;
|
209
242
|
folderId: string | null;
|
210
243
|
tagAssistedId: string;
|
211
244
|
tagConfirmedId: string;
|
@@ -224,9 +257,12 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
224
257
|
date: string;
|
225
258
|
startingDate: string;
|
226
259
|
endingDate: string;
|
260
|
+
eventPictureUrl: string | null;
|
261
|
+
eventBannerUrl: string | null;
|
227
262
|
created_at: string;
|
228
263
|
updated_at: string;
|
229
264
|
active: boolean;
|
265
|
+
eventDescription: string | null;
|
230
266
|
folderId: string | null;
|
231
267
|
tagAssistedId: string;
|
232
268
|
tagConfirmedId: string;
|
@@ -247,9 +283,12 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
247
283
|
date: string;
|
248
284
|
startingDate: string;
|
249
285
|
endingDate: string;
|
286
|
+
eventPictureUrl: string | null;
|
287
|
+
eventBannerUrl: string | null;
|
250
288
|
created_at: string;
|
251
289
|
updated_at: string;
|
252
290
|
active: boolean;
|
291
|
+
eventDescription: string | null;
|
253
292
|
folderId: string | null;
|
254
293
|
tagAssistedId: string;
|
255
294
|
tagConfirmedId: string;
|
@@ -270,9 +309,12 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
270
309
|
date: string;
|
271
310
|
startingDate: string;
|
272
311
|
endingDate: string;
|
312
|
+
eventPictureUrl: string | null;
|
313
|
+
eventBannerUrl: string | null;
|
273
314
|
created_at: string;
|
274
315
|
updated_at: string;
|
275
316
|
active: boolean;
|
317
|
+
eventDescription: string | null;
|
276
318
|
folderId: string | null;
|
277
319
|
tagAssistedId: string;
|
278
320
|
tagConfirmedId: string;
|