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.
- package/dist/src/event/dto/create-event.dto.d.ts +68 -2
- package/dist/src/event/dto/create-event.dto.js +6 -0
- package/dist/src/event/dto/delete-banner-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-banner-event.dto.js +12 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-main-picture-event.dto.js +12 -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-all-statistics.dto.d.ts +9 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +9 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
- package/dist/src/event/dto/update-banner-event.dto.d.ts +33 -0
- package/dist/src/event/dto/update-banner-event.dto.js +18 -0
- package/dist/src/event/dto/update-event.dto.d.ts +185 -135
- package/dist/src/event/dto/update-event.dto.js +9 -1
- package/dist/src/event/dto/update-main-picture-event.dto.d.ts +33 -0
- package/dist/src/event/dto/update-main-picture-event.dto.js +18 -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 +7 -0
- package/dist/src/i18n/es.js +7 -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/profile/dto/delete-image-profile.dto.d.ts +18 -0
- package/dist/src/profile/dto/delete-image-profile.dto.js +12 -0
- package/dist/src/profile/dto/update-image-profile.dto.d.ts +33 -0
- package/dist/src/profile/dto/update-image-profile.dto.js +18 -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 +244 -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 +397 -77
- package/package.json +1 -1
@@ -6,6 +6,9 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
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;
|
@@ -115,6 +118,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
115
118
|
updated_at: Date;
|
116
119
|
}>, "many">;
|
117
120
|
}>, "strip", z.ZodTypeAny, {
|
121
|
+
description: string | null;
|
118
122
|
location: string;
|
119
123
|
id: string;
|
120
124
|
name: string;
|
@@ -138,6 +142,8 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
138
142
|
scannedAt: Date | null;
|
139
143
|
ticketGroupId: string | null;
|
140
144
|
}[];
|
145
|
+
mainPictureUrl: string | null;
|
146
|
+
bannerUrl: string | null;
|
141
147
|
folderId: string | null;
|
142
148
|
tagAssistedId: string;
|
143
149
|
tagConfirmedId: string;
|
@@ -157,6 +163,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
157
163
|
updated_at: Date;
|
158
164
|
}[];
|
159
165
|
}, {
|
166
|
+
description: string | null;
|
160
167
|
location: string;
|
161
168
|
id: string;
|
162
169
|
name: string;
|
@@ -180,6 +187,8 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
180
187
|
scannedAt: Date | null;
|
181
188
|
ticketGroupId: string | null;
|
182
189
|
}[];
|
190
|
+
mainPictureUrl: string | null;
|
191
|
+
bannerUrl: string | null;
|
183
192
|
folderId: string | null;
|
184
193
|
tagAssistedId: string;
|
185
194
|
tagConfirmedId: string;
|
@@ -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;
|
@@ -376,6 +397,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
376
397
|
};
|
377
398
|
}>;
|
378
399
|
}>, "strip", z.ZodTypeAny, {
|
400
|
+
description: string | null;
|
379
401
|
location: string;
|
380
402
|
id: string;
|
381
403
|
name: string;
|
@@ -399,11 +421,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
399
421
|
scannedAt: Date | null;
|
400
422
|
ticketGroupId: string | null;
|
401
423
|
}[];
|
424
|
+
mainPictureUrl: string | null;
|
425
|
+
bannerUrl: string | null;
|
402
426
|
folderId: string | null;
|
403
427
|
tagAssistedId: string;
|
404
428
|
tagConfirmedId: string;
|
405
429
|
supraEventId: string | null;
|
406
430
|
subEvents: {
|
431
|
+
description: string | null;
|
407
432
|
location: string;
|
408
433
|
id: string;
|
409
434
|
name: string;
|
@@ -413,6 +438,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
413
438
|
created_at: Date;
|
414
439
|
updated_at: Date;
|
415
440
|
active: boolean;
|
441
|
+
mainPictureUrl: string | null;
|
442
|
+
bannerUrl: string | null;
|
416
443
|
folderId: string | null;
|
417
444
|
tagAssistedId: string;
|
418
445
|
tagConfirmedId: string;
|
@@ -425,6 +452,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
425
452
|
price: number | null;
|
426
453
|
}[];
|
427
454
|
supraEvent: {
|
455
|
+
description: string | null;
|
428
456
|
location: string;
|
429
457
|
id: string;
|
430
458
|
name: string;
|
@@ -434,6 +462,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
434
462
|
created_at: Date;
|
435
463
|
updated_at: Date;
|
436
464
|
active: boolean;
|
465
|
+
mainPictureUrl: string | null;
|
466
|
+
bannerUrl: string | null;
|
437
467
|
folderId: string | null;
|
438
468
|
tagAssistedId: string;
|
439
469
|
tagConfirmedId: string;
|
@@ -488,6 +518,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
488
518
|
};
|
489
519
|
};
|
490
520
|
}, {
|
521
|
+
description: string | null;
|
491
522
|
location: string;
|
492
523
|
id: string;
|
493
524
|
name: string;
|
@@ -511,11 +542,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
511
542
|
scannedAt: Date | null;
|
512
543
|
ticketGroupId: string | null;
|
513
544
|
}[];
|
545
|
+
mainPictureUrl: string | null;
|
546
|
+
bannerUrl: string | null;
|
514
547
|
folderId: string | null;
|
515
548
|
tagAssistedId: string;
|
516
549
|
tagConfirmedId: string;
|
517
550
|
supraEventId: string | null;
|
518
551
|
subEvents: {
|
552
|
+
description: string | null;
|
519
553
|
location: string;
|
520
554
|
id: string;
|
521
555
|
name: string;
|
@@ -525,6 +559,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
525
559
|
created_at: Date;
|
526
560
|
updated_at: Date;
|
527
561
|
active: boolean;
|
562
|
+
mainPictureUrl: string | null;
|
563
|
+
bannerUrl: string | null;
|
528
564
|
folderId: string | null;
|
529
565
|
tagAssistedId: string;
|
530
566
|
tagConfirmedId: string;
|
@@ -537,6 +573,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
537
573
|
price: number | null;
|
538
574
|
}[];
|
539
575
|
supraEvent: {
|
576
|
+
description: string | null;
|
540
577
|
location: string;
|
541
578
|
id: string;
|
542
579
|
name: string;
|
@@ -546,6 +583,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
546
583
|
created_at: Date;
|
547
584
|
updated_at: Date;
|
548
585
|
active: boolean;
|
586
|
+
mainPictureUrl: string | null;
|
587
|
+
bannerUrl: string | null;
|
549
588
|
folderId: string | null;
|
550
589
|
tagAssistedId: string;
|
551
590
|
tagConfirmedId: string;
|
@@ -607,6 +646,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
607
646
|
startingDate: z.ZodString;
|
608
647
|
endingDate: z.ZodString;
|
609
648
|
location: z.ZodString;
|
649
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
650
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
651
|
+
description: z.ZodNullable<z.ZodString>;
|
610
652
|
folderId: z.ZodNullable<z.ZodString>;
|
611
653
|
tagAssistedId: z.ZodString;
|
612
654
|
tagConfirmedId: z.ZodString;
|
@@ -621,6 +663,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
621
663
|
startingDate: z.ZodString;
|
622
664
|
endingDate: z.ZodString;
|
623
665
|
location: z.ZodString;
|
666
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
667
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
668
|
+
description: z.ZodNullable<z.ZodString>;
|
624
669
|
folderId: z.ZodNullable<z.ZodString>;
|
625
670
|
tagAssistedId: z.ZodString;
|
626
671
|
tagConfirmedId: z.ZodString;
|
@@ -629,6 +674,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
629
674
|
created_at: z.ZodString;
|
630
675
|
updated_at: z.ZodString;
|
631
676
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
677
|
+
description: string | null;
|
632
678
|
location: string;
|
633
679
|
id: string;
|
634
680
|
name: string;
|
@@ -638,11 +684,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
638
684
|
created_at: string;
|
639
685
|
updated_at: string;
|
640
686
|
active: boolean;
|
687
|
+
mainPictureUrl: string | null;
|
688
|
+
bannerUrl: string | null;
|
641
689
|
folderId: string | null;
|
642
690
|
tagAssistedId: string;
|
643
691
|
tagConfirmedId: string;
|
644
692
|
supraEventId: string | null;
|
645
693
|
}, {
|
694
|
+
description: string | null;
|
646
695
|
location: string;
|
647
696
|
id: string;
|
648
697
|
name: string;
|
@@ -652,6 +701,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
652
701
|
created_at: string;
|
653
702
|
updated_at: string;
|
654
703
|
active: boolean;
|
704
|
+
mainPictureUrl: string | null;
|
705
|
+
bannerUrl: string | null;
|
655
706
|
folderId: string | null;
|
656
707
|
tagAssistedId: string;
|
657
708
|
tagConfirmedId: string;
|
@@ -664,6 +715,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
664
715
|
startingDate: z.ZodString;
|
665
716
|
endingDate: z.ZodString;
|
666
717
|
location: z.ZodString;
|
718
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
719
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
720
|
+
description: z.ZodNullable<z.ZodString>;
|
667
721
|
folderId: z.ZodNullable<z.ZodString>;
|
668
722
|
tagAssistedId: z.ZodString;
|
669
723
|
tagConfirmedId: z.ZodString;
|
@@ -672,6 +726,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
672
726
|
created_at: z.ZodString;
|
673
727
|
updated_at: z.ZodString;
|
674
728
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
729
|
+
description: string | null;
|
675
730
|
location: string;
|
676
731
|
id: string;
|
677
732
|
name: string;
|
@@ -681,11 +736,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
681
736
|
created_at: string;
|
682
737
|
updated_at: string;
|
683
738
|
active: boolean;
|
739
|
+
mainPictureUrl: string | null;
|
740
|
+
bannerUrl: string | null;
|
684
741
|
folderId: string | null;
|
685
742
|
tagAssistedId: string;
|
686
743
|
tagConfirmedId: string;
|
687
744
|
supraEventId: string | null;
|
688
745
|
}, {
|
746
|
+
description: string | null;
|
689
747
|
location: string;
|
690
748
|
id: string;
|
691
749
|
name: string;
|
@@ -695,6 +753,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
695
753
|
created_at: string;
|
696
754
|
updated_at: string;
|
697
755
|
active: boolean;
|
756
|
+
mainPictureUrl: string | null;
|
757
|
+
bannerUrl: string | null;
|
698
758
|
folderId: string | null;
|
699
759
|
tagAssistedId: string;
|
700
760
|
tagConfirmedId: string;
|
@@ -973,6 +1033,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
973
1033
|
};
|
974
1034
|
}>;
|
975
1035
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1036
|
+
description: string | null;
|
976
1037
|
location: string;
|
977
1038
|
id: string;
|
978
1039
|
name: string;
|
@@ -996,11 +1057,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
996
1057
|
scannedAt: string | null;
|
997
1058
|
ticketGroupId: string | null;
|
998
1059
|
}[];
|
1060
|
+
mainPictureUrl: string | null;
|
1061
|
+
bannerUrl: string | null;
|
999
1062
|
folderId: string | null;
|
1000
1063
|
tagAssistedId: string;
|
1001
1064
|
tagConfirmedId: string;
|
1002
1065
|
supraEventId: string | null;
|
1003
1066
|
subEvents: {
|
1067
|
+
description: string | null;
|
1004
1068
|
location: string;
|
1005
1069
|
id: string;
|
1006
1070
|
name: string;
|
@@ -1010,6 +1074,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1010
1074
|
created_at: string;
|
1011
1075
|
updated_at: string;
|
1012
1076
|
active: boolean;
|
1077
|
+
mainPictureUrl: string | null;
|
1078
|
+
bannerUrl: string | null;
|
1013
1079
|
folderId: string | null;
|
1014
1080
|
tagAssistedId: string;
|
1015
1081
|
tagConfirmedId: string;
|
@@ -1022,6 +1088,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1022
1088
|
price: number | null;
|
1023
1089
|
}[];
|
1024
1090
|
supraEvent: {
|
1091
|
+
description: string | null;
|
1025
1092
|
location: string;
|
1026
1093
|
id: string;
|
1027
1094
|
name: string;
|
@@ -1031,6 +1098,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1031
1098
|
created_at: string;
|
1032
1099
|
updated_at: string;
|
1033
1100
|
active: boolean;
|
1101
|
+
mainPictureUrl: string | null;
|
1102
|
+
bannerUrl: string | null;
|
1034
1103
|
folderId: string | null;
|
1035
1104
|
tagAssistedId: string;
|
1036
1105
|
tagConfirmedId: string;
|
@@ -1085,6 +1154,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1085
1154
|
};
|
1086
1155
|
};
|
1087
1156
|
}, {
|
1157
|
+
description: string | null;
|
1088
1158
|
location: string;
|
1089
1159
|
id: string;
|
1090
1160
|
name: string;
|
@@ -1108,11 +1178,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1108
1178
|
scannedAt: string | null;
|
1109
1179
|
ticketGroupId: string | null;
|
1110
1180
|
}[];
|
1181
|
+
mainPictureUrl: string | null;
|
1182
|
+
bannerUrl: string | null;
|
1111
1183
|
folderId: string | null;
|
1112
1184
|
tagAssistedId: string;
|
1113
1185
|
tagConfirmedId: string;
|
1114
1186
|
supraEventId: string | null;
|
1115
1187
|
subEvents: {
|
1188
|
+
description: string | null;
|
1116
1189
|
location: string;
|
1117
1190
|
id: string;
|
1118
1191
|
name: string;
|
@@ -1122,6 +1195,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1122
1195
|
created_at: string;
|
1123
1196
|
updated_at: string;
|
1124
1197
|
active: boolean;
|
1198
|
+
mainPictureUrl: string | null;
|
1199
|
+
bannerUrl: string | null;
|
1125
1200
|
folderId: string | null;
|
1126
1201
|
tagAssistedId: string;
|
1127
1202
|
tagConfirmedId: string;
|
@@ -1134,6 +1209,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1134
1209
|
price: number | null;
|
1135
1210
|
}[];
|
1136
1211
|
supraEvent: {
|
1212
|
+
description: string | null;
|
1137
1213
|
location: string;
|
1138
1214
|
id: string;
|
1139
1215
|
name: string;
|
@@ -1143,6 +1219,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1143
1219
|
created_at: string;
|
1144
1220
|
updated_at: string;
|
1145
1221
|
active: boolean;
|
1222
|
+
mainPictureUrl: string | null;
|
1223
|
+
bannerUrl: string | null;
|
1146
1224
|
folderId: string | null;
|
1147
1225
|
tagAssistedId: string;
|
1148
1226
|
tagConfirmedId: string;
|
@@ -1206,6 +1284,9 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1206
1284
|
startingDate: z.ZodDate;
|
1207
1285
|
endingDate: z.ZodDate;
|
1208
1286
|
location: z.ZodString;
|
1287
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1288
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1289
|
+
description: z.ZodNullable<z.ZodString>;
|
1209
1290
|
folderId: z.ZodNullable<z.ZodString>;
|
1210
1291
|
tagAssistedId: z.ZodString;
|
1211
1292
|
tagConfirmedId: z.ZodString;
|
@@ -1271,6 +1352,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1271
1352
|
groupId: string;
|
1272
1353
|
}>;
|
1273
1354
|
}>, "strip", z.ZodTypeAny, {
|
1355
|
+
description: string | null;
|
1274
1356
|
location: string;
|
1275
1357
|
id: string;
|
1276
1358
|
name: string;
|
@@ -1280,6 +1362,8 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1280
1362
|
created_at: Date;
|
1281
1363
|
updated_at: Date;
|
1282
1364
|
active: boolean;
|
1365
|
+
mainPictureUrl: string | null;
|
1366
|
+
bannerUrl: string | null;
|
1283
1367
|
folderId: string | null;
|
1284
1368
|
tagAssistedId: string;
|
1285
1369
|
tagConfirmedId: string;
|
@@ -1301,6 +1385,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1301
1385
|
groupId: string;
|
1302
1386
|
};
|
1303
1387
|
}, {
|
1388
|
+
description: string | null;
|
1304
1389
|
location: string;
|
1305
1390
|
id: string;
|
1306
1391
|
name: string;
|
@@ -1310,6 +1395,8 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1310
1395
|
created_at: Date;
|
1311
1396
|
updated_at: Date;
|
1312
1397
|
active: boolean;
|
1398
|
+
mainPictureUrl: string | null;
|
1399
|
+
bannerUrl: string | null;
|
1313
1400
|
folderId: string | null;
|
1314
1401
|
tagAssistedId: string;
|
1315
1402
|
tagConfirmedId: string;
|
@@ -1338,6 +1425,9 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1338
1425
|
startingDate: z.ZodString;
|
1339
1426
|
endingDate: z.ZodString;
|
1340
1427
|
location: z.ZodString;
|
1428
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1429
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1430
|
+
description: z.ZodNullable<z.ZodString>;
|
1341
1431
|
folderId: z.ZodNullable<z.ZodString>;
|
1342
1432
|
tagAssistedId: z.ZodString;
|
1343
1433
|
tagConfirmedId: z.ZodString;
|
@@ -1402,6 +1492,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1402
1492
|
groupId: string;
|
1403
1493
|
}>;
|
1404
1494
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1495
|
+
description: string | null;
|
1405
1496
|
location: string;
|
1406
1497
|
id: string;
|
1407
1498
|
name: string;
|
@@ -1411,6 +1502,8 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1411
1502
|
created_at: string;
|
1412
1503
|
updated_at: string;
|
1413
1504
|
active: boolean;
|
1505
|
+
mainPictureUrl: string | null;
|
1506
|
+
bannerUrl: string | null;
|
1414
1507
|
folderId: string | null;
|
1415
1508
|
tagAssistedId: string;
|
1416
1509
|
tagConfirmedId: string;
|
@@ -1432,6 +1525,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1432
1525
|
groupId: string;
|
1433
1526
|
};
|
1434
1527
|
}, {
|
1528
|
+
description: string | null;
|
1435
1529
|
location: string;
|
1436
1530
|
id: string;
|
1437
1531
|
name: string;
|
@@ -1441,6 +1535,8 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1441
1535
|
created_at: string;
|
1442
1536
|
updated_at: string;
|
1443
1537
|
active: boolean;
|
1538
|
+
mainPictureUrl: string | null;
|
1539
|
+
bannerUrl: string | null;
|
1444
1540
|
folderId: string | null;
|
1445
1541
|
tagAssistedId: string;
|
1446
1542
|
tagConfirmedId: string;
|
@@ -6,6 +6,9 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
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;
|
@@ -89,6 +92,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
89
92
|
price: number | null;
|
90
93
|
}>, "many">;
|
91
94
|
}>, "strip", z.ZodTypeAny, {
|
95
|
+
description: string | null;
|
92
96
|
location: string;
|
93
97
|
id: string;
|
94
98
|
name: string;
|
@@ -112,6 +116,8 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
112
116
|
scannedAt: Date | null;
|
113
117
|
ticketGroupId: string | null;
|
114
118
|
}[];
|
119
|
+
mainPictureUrl: string | null;
|
120
|
+
bannerUrl: string | null;
|
115
121
|
folderId: string | null;
|
116
122
|
tagAssistedId: string;
|
117
123
|
tagConfirmedId: string;
|
@@ -123,6 +129,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
123
129
|
price: number | null;
|
124
130
|
}[];
|
125
131
|
}, {
|
132
|
+
description: string | null;
|
126
133
|
location: string;
|
127
134
|
id: string;
|
128
135
|
name: string;
|
@@ -146,6 +153,8 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
146
153
|
scannedAt: Date | null;
|
147
154
|
ticketGroupId: string | null;
|
148
155
|
}[];
|
156
|
+
mainPictureUrl: string | null;
|
157
|
+
bannerUrl: string | null;
|
149
158
|
folderId: string | null;
|
150
159
|
tagAssistedId: string;
|
151
160
|
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;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
export declare const updateBannerEventSchema: import("zod").ZodObject<Pick<{
|
2
|
+
image: import("zod").ZodType<Express.Multer.File, import("zod").ZodTypeDef, Express.Multer.File>;
|
3
|
+
}, "image">, "strip", import("zod").ZodTypeAny, {
|
4
|
+
image: Express.Multer.File;
|
5
|
+
}, {
|
6
|
+
image: Express.Multer.File;
|
7
|
+
}>;
|
8
|
+
declare const UpdateBannerEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
9
|
+
image: import("zod").ZodType<Express.Multer.File, import("zod").ZodTypeDef, Express.Multer.File>;
|
10
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
11
|
+
image: Express.Multer.File;
|
12
|
+
}, {
|
13
|
+
image: Express.Multer.File;
|
14
|
+
}>>;
|
15
|
+
export declare class UpdateBannerEventDto extends UpdateBannerEventDto_base {
|
16
|
+
}
|
17
|
+
export declare const updateBannerEventResponseSchema: import("zod").ZodObject<Pick<{
|
18
|
+
message: import("zod").ZodString;
|
19
|
+
}, "message">, "strip", import("zod").ZodTypeAny, {
|
20
|
+
message: string;
|
21
|
+
}, {
|
22
|
+
message: string;
|
23
|
+
}>;
|
24
|
+
declare const UpdateBannerEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
25
|
+
message: import("zod").ZodString;
|
26
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
27
|
+
message: string;
|
28
|
+
}, {
|
29
|
+
message: string;
|
30
|
+
}>>;
|
31
|
+
export declare class UpdateBannerEventResponseDto extends UpdateBannerEventResponseDto_base {
|
32
|
+
}
|
33
|
+
export {};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.UpdateBannerEventResponseDto = exports.updateBannerEventResponseSchema = exports.UpdateBannerEventDto = exports.updateBannerEventSchema = void 0;
|
4
|
+
const update_image_dto_1 = require("../../image/dto/update-image.dto");
|
5
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
|
+
exports.updateBannerEventSchema = update_image_dto_1.updateImageSchema.pick({
|
7
|
+
image: true,
|
8
|
+
});
|
9
|
+
class UpdateBannerEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateBannerEventSchema) {
|
10
|
+
}
|
11
|
+
exports.UpdateBannerEventDto = UpdateBannerEventDto;
|
12
|
+
exports.updateBannerEventResponseSchema = update_image_dto_1.updateImageResponseSchema.pick({
|
13
|
+
message: true,
|
14
|
+
});
|
15
|
+
class UpdateBannerEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateBannerEventResponseSchema) {
|
16
|
+
}
|
17
|
+
exports.UpdateBannerEventResponseDto = UpdateBannerEventResponseDto;
|
18
|
+
//# sourceMappingURL=update-banner-event.dto.js.map
|