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;
@@ -20,6 +20,7 @@ exports.updateEventSchema = event_dto_1.eventSchema
20
20
  endingDate: true,
21
21
  })
22
22
  .merge(zod_1.default.object({
23
+ tagsId: zod_1.default.array(tag_dto_1.tagSchema.shape.id),
23
24
  subEvents: zod_1.default.array(event_dto_1.eventSchema
24
25
  .pick({
25
26
  name: true,
@@ -2031,6 +2031,7 @@ export interface components {
2031
2031
  location: string;
2032
2032
  startingDate: string;
2033
2033
  endingDate: string;
2034
+ tagsId: string[];
2034
2035
  subEvents: {
2035
2036
  name: string;
2036
2037
  location: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.34.0-EXPO-319-ver-eventos-disponibles.3",
3
+ "version": "0.34.0-EXPO-319-ver-eventos-disponibles.4",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,