expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.3 → 0.34.0-EXPO-319-ver-eventos-disponibles.4
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.
@@ -14,6 +14,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
14
14
|
created_at: z.ZodDate;
|
15
15
|
updated_at: z.ZodDate;
|
16
16
|
}, "location" | "name" | "date" | "startingDate" | "endingDate" | "folderId">, {
|
17
|
+
tagsId: z.ZodArray<z.ZodString, "many">;
|
17
18
|
subEvents: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
18
19
|
id: z.ZodString;
|
19
20
|
name: z.ZodString;
|
@@ -78,6 +79,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
78
79
|
startingDate: Date;
|
79
80
|
endingDate: Date;
|
80
81
|
}[];
|
82
|
+
tagsId: string[];
|
81
83
|
eventTickets: {
|
82
84
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
83
85
|
amount: number;
|
@@ -98,6 +100,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
98
100
|
startingDate: Date;
|
99
101
|
endingDate: Date;
|
100
102
|
}[];
|
103
|
+
tagsId: string[];
|
101
104
|
eventTickets: {
|
102
105
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
103
106
|
amount: number;
|
@@ -111,6 +114,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
111
114
|
startingDate: z.ZodString;
|
112
115
|
endingDate: z.ZodString;
|
113
116
|
folderId: z.ZodNullable<z.ZodString>;
|
117
|
+
tagsId: z.ZodArray<z.ZodString, "many">;
|
114
118
|
subEvents: z.ZodArray<z.ZodObject<{
|
115
119
|
location: z.ZodString;
|
116
120
|
name: z.ZodString;
|
@@ -165,6 +169,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
165
169
|
startingDate: string;
|
166
170
|
endingDate: string;
|
167
171
|
}[];
|
172
|
+
tagsId: string[];
|
168
173
|
eventTickets: {
|
169
174
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
170
175
|
amount: number;
|
@@ -185,6 +190,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
185
190
|
startingDate: string;
|
186
191
|
endingDate: string;
|
187
192
|
}[];
|
193
|
+
tagsId: string[];
|
188
194
|
eventTickets: {
|
189
195
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
190
196
|
amount: number;
|
package/dist/types/schema.d.ts
CHANGED