expo-backend-types 0.46.0 → 0.47.0-EXPO-343-Quique-Wolff.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 createEventSchema: 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;
@@ -13,7 +16,7 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
13
16
  supraEventId: z.ZodNullable<z.ZodString>;
14
17
  created_at: z.ZodDate;
15
18
  updated_at: z.ZodDate;
16
- }, "location" | "name" | "date" | "startingDate" | "endingDate" | "folderId">, {
19
+ }, "description" | "location" | "name" | "date" | "startingDate" | "endingDate" | "mainPictureUrl" | "bannerUrl" | "folderId">, {
17
20
  subEvents: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
18
21
  id: z.ZodString;
19
22
  name: z.ZodString;
@@ -21,6 +24,9 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
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;
@@ -28,18 +34,24 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
28
34
  supraEventId: z.ZodNullable<z.ZodString>;
29
35
  created_at: z.ZodDate;
30
36
  updated_at: z.ZodDate;
31
- }, "location" | "name" | "date" | "startingDate" | "endingDate">, "strip", z.ZodTypeAny, {
37
+ }, "description" | "location" | "name" | "date" | "startingDate" | "endingDate" | "mainPictureUrl" | "bannerUrl">, "strip", z.ZodTypeAny, {
38
+ description: string | null;
32
39
  location: string;
33
40
  name: string;
34
41
  date: Date;
35
42
  startingDate: Date;
36
43
  endingDate: Date;
44
+ mainPictureUrl: string | null;
45
+ bannerUrl: string | null;
37
46
  }, {
47
+ description: string | null;
38
48
  location: string;
39
49
  name: string;
40
50
  date: Date;
41
51
  startingDate: Date;
42
52
  endingDate: Date;
53
+ mainPictureUrl: string | null;
54
+ bannerUrl: string | null;
43
55
  }>, "many">>;
44
56
  tagsId: z.ZodArray<z.ZodString, "many">;
45
57
  eventTickets: z.ZodArray<z.ZodObject<Omit<{
@@ -61,11 +73,14 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
61
73
  price: number | null;
62
74
  }>, "many">;
63
75
  }>, "strip", z.ZodTypeAny, {
76
+ description: string | null;
64
77
  location: string;
65
78
  name: string;
66
79
  date: Date;
67
80
  startingDate: Date;
68
81
  endingDate: Date;
82
+ mainPictureUrl: string | null;
83
+ bannerUrl: string | null;
69
84
  folderId: string | null;
70
85
  tagsId: string[];
71
86
  eventTickets: {
@@ -74,18 +89,24 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
74
89
  price: number | null;
75
90
  }[];
76
91
  subEvents?: {
92
+ description: string | null;
77
93
  location: string;
78
94
  name: string;
79
95
  date: Date;
80
96
  startingDate: Date;
81
97
  endingDate: Date;
98
+ mainPictureUrl: string | null;
99
+ bannerUrl: string | null;
82
100
  }[] | undefined;
83
101
  }, {
102
+ description: string | null;
84
103
  location: string;
85
104
  name: string;
86
105
  date: Date;
87
106
  startingDate: Date;
88
107
  endingDate: Date;
108
+ mainPictureUrl: string | null;
109
+ bannerUrl: string | null;
89
110
  folderId: string | null;
90
111
  tagsId: string[];
91
112
  eventTickets: {
@@ -94,38 +115,53 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
94
115
  price: number | null;
95
116
  }[];
96
117
  subEvents?: {
118
+ description: string | null;
97
119
  location: string;
98
120
  name: string;
99
121
  date: Date;
100
122
  startingDate: Date;
101
123
  endingDate: Date;
124
+ mainPictureUrl: string | null;
125
+ bannerUrl: string | null;
102
126
  }[] | undefined;
103
127
  }>;
104
128
  declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
129
+ description: z.ZodNullable<z.ZodString>;
105
130
  location: z.ZodString;
106
131
  name: z.ZodString;
107
132
  date: z.ZodString;
108
133
  startingDate: z.ZodString;
109
134
  endingDate: z.ZodString;
135
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
136
+ bannerUrl: z.ZodNullable<z.ZodString>;
110
137
  folderId: z.ZodNullable<z.ZodString>;
111
138
  subEvents: z.ZodOptional<z.ZodArray<z.ZodObject<{
139
+ description: z.ZodNullable<z.ZodString>;
112
140
  location: z.ZodString;
113
141
  name: z.ZodString;
114
142
  date: z.ZodString;
115
143
  startingDate: z.ZodString;
116
144
  endingDate: z.ZodString;
145
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
146
+ bannerUrl: z.ZodNullable<z.ZodString>;
117
147
  }, z.UnknownKeysParam, z.ZodTypeAny, {
148
+ description: string | null;
118
149
  location: string;
119
150
  name: string;
120
151
  date: string;
121
152
  startingDate: string;
122
153
  endingDate: string;
154
+ mainPictureUrl: string | null;
155
+ bannerUrl: string | null;
123
156
  }, {
157
+ description: string | null;
124
158
  location: string;
125
159
  name: string;
126
160
  date: string;
127
161
  startingDate: string;
128
162
  endingDate: string;
163
+ mainPictureUrl: string | null;
164
+ bannerUrl: string | null;
129
165
  }>, "many">>;
130
166
  tagsId: z.ZodArray<z.ZodString, "many">;
131
167
  eventTickets: z.ZodArray<z.ZodObject<{
@@ -146,11 +182,14 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
146
182
  price: number | null;
147
183
  }>, "many">;
148
184
  }, z.UnknownKeysParam, z.ZodTypeAny, {
185
+ description: string | null;
149
186
  location: string;
150
187
  name: string;
151
188
  date: string;
152
189
  startingDate: string;
153
190
  endingDate: string;
191
+ mainPictureUrl: string | null;
192
+ bannerUrl: string | null;
154
193
  folderId: string | null;
155
194
  tagsId: string[];
156
195
  eventTickets: {
@@ -159,18 +198,24 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
159
198
  price: number | null;
160
199
  }[];
161
200
  subEvents?: {
201
+ description: string | null;
162
202
  location: string;
163
203
  name: string;
164
204
  date: string;
165
205
  startingDate: string;
166
206
  endingDate: string;
207
+ mainPictureUrl: string | null;
208
+ bannerUrl: string | null;
167
209
  }[] | undefined;
168
210
  }, {
211
+ description: string | null;
169
212
  location: string;
170
213
  name: string;
171
214
  date: string;
172
215
  startingDate: string;
173
216
  endingDate: string;
217
+ mainPictureUrl: string | null;
218
+ bannerUrl: string | null;
174
219
  folderId: string | null;
175
220
  tagsId: string[];
176
221
  eventTickets: {
@@ -179,11 +224,14 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
179
224
  price: number | null;
180
225
  }[];
181
226
  subEvents?: {
227
+ description: string | null;
182
228
  location: string;
183
229
  name: string;
184
230
  date: string;
185
231
  startingDate: string;
186
232
  endingDate: string;
233
+ mainPictureUrl: string | null;
234
+ bannerUrl: string | null;
187
235
  }[] | undefined;
188
236
  }>>;
189
237
  export declare class CreateEventDto extends CreateEventDto_base {
@@ -195,6 +243,9 @@ export declare const createEventResponseSchema: z.ZodObject<{
195
243
  startingDate: z.ZodDate;
196
244
  endingDate: z.ZodDate;
197
245
  location: z.ZodString;
246
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
247
+ bannerUrl: z.ZodNullable<z.ZodString>;
248
+ description: z.ZodNullable<z.ZodString>;
198
249
  folderId: z.ZodNullable<z.ZodString>;
199
250
  tagAssistedId: z.ZodString;
200
251
  tagConfirmedId: z.ZodString;
@@ -203,6 +254,7 @@ export declare const createEventResponseSchema: z.ZodObject<{
203
254
  created_at: z.ZodDate;
204
255
  updated_at: z.ZodDate;
205
256
  }, "strip", z.ZodTypeAny, {
257
+ description: string | null;
206
258
  location: string;
207
259
  id: string;
208
260
  name: string;
@@ -212,11 +264,14 @@ export declare const createEventResponseSchema: z.ZodObject<{
212
264
  created_at: Date;
213
265
  updated_at: Date;
214
266
  active: boolean;
267
+ mainPictureUrl: string | null;
268
+ bannerUrl: string | null;
215
269
  folderId: string | null;
216
270
  tagAssistedId: string;
217
271
  tagConfirmedId: string;
218
272
  supraEventId: string | null;
219
273
  }, {
274
+ description: string | null;
220
275
  location: string;
221
276
  id: string;
222
277
  name: string;
@@ -226,6 +281,8 @@ export declare const createEventResponseSchema: z.ZodObject<{
226
281
  created_at: Date;
227
282
  updated_at: Date;
228
283
  active: boolean;
284
+ mainPictureUrl: string | null;
285
+ bannerUrl: string | null;
229
286
  folderId: string | null;
230
287
  tagAssistedId: string;
231
288
  tagConfirmedId: string;
@@ -238,6 +295,9 @@ declare const CreateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
238
295
  startingDate: z.ZodString;
239
296
  endingDate: z.ZodString;
240
297
  location: z.ZodString;
298
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
299
+ bannerUrl: z.ZodNullable<z.ZodString>;
300
+ description: z.ZodNullable<z.ZodString>;
241
301
  folderId: z.ZodNullable<z.ZodString>;
242
302
  tagAssistedId: z.ZodString;
243
303
  tagConfirmedId: z.ZodString;
@@ -246,6 +306,7 @@ declare const CreateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
246
306
  created_at: z.ZodString;
247
307
  updated_at: z.ZodString;
248
308
  }, z.UnknownKeysParam, z.ZodTypeAny, {
309
+ description: string | null;
249
310
  location: string;
250
311
  id: string;
251
312
  name: string;
@@ -255,11 +316,14 @@ declare const CreateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
255
316
  created_at: string;
256
317
  updated_at: string;
257
318
  active: boolean;
319
+ mainPictureUrl: string | null;
320
+ bannerUrl: string | null;
258
321
  folderId: string | null;
259
322
  tagAssistedId: string;
260
323
  tagConfirmedId: string;
261
324
  supraEventId: string | null;
262
325
  }, {
326
+ description: string | null;
263
327
  location: string;
264
328
  id: string;
265
329
  name: string;
@@ -269,6 +333,8 @@ declare const CreateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
269
333
  created_at: string;
270
334
  updated_at: string;
271
335
  active: boolean;
336
+ mainPictureUrl: string | null;
337
+ bannerUrl: string | null;
272
338
  folderId: string | null;
273
339
  tagAssistedId: string;
274
340
  tagConfirmedId: string;
@@ -17,6 +17,9 @@ exports.createEventSchema = event_dto_1.eventSchema
17
17
  endingDate: true,
18
18
  location: true,
19
19
  folderId: true,
20
+ mainPictureUrl: true,
21
+ bannerUrl: true,
22
+ description: true,
20
23
  })
21
24
  .merge(zod_1.default.object({
22
25
  subEvents: zod_1.default
@@ -26,6 +29,9 @@ exports.createEventSchema = event_dto_1.eventSchema
26
29
  startingDate: true,
27
30
  endingDate: true,
28
31
  location: true,
32
+ mainPictureUrl: true,
33
+ bannerUrl: true,
34
+ description: true,
29
35
  }))
30
36
  .optional(),
31
37
  tagsId: zod_1.default.array(tag_dto_1.tagSchema.shape.id),
@@ -5,6 +5,9 @@ export declare const deleteEventResponseSchema: 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 deleteEventResponseSchema: 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 deleteEventResponseSchema: 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 deleteEventResponseSchema: 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;
@@ -48,6 +57,9 @@ declare const DeleteEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
48
57
  startingDate: import("zod").ZodString;
49
58
  endingDate: import("zod").ZodString;
50
59
  location: import("zod").ZodString;
60
+ mainPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
61
+ bannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
62
+ description: import("zod").ZodNullable<import("zod").ZodString>;
51
63
  folderId: import("zod").ZodNullable<import("zod").ZodString>;
52
64
  tagAssistedId: import("zod").ZodString;
53
65
  tagConfirmedId: import("zod").ZodString;
@@ -56,6 +68,7 @@ declare const DeleteEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
56
68
  created_at: import("zod").ZodString;
57
69
  updated_at: import("zod").ZodString;
58
70
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
71
+ description: string | null;
59
72
  location: string;
60
73
  id: string;
61
74
  name: string;
@@ -65,11 +78,14 @@ declare const DeleteEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
65
78
  created_at: string;
66
79
  updated_at: string;
67
80
  active: boolean;
81
+ mainPictureUrl: string | null;
82
+ bannerUrl: string | null;
68
83
  folderId: string | null;
69
84
  tagAssistedId: string;
70
85
  tagConfirmedId: string;
71
86
  supraEventId: string | null;
72
87
  }, {
88
+ description: string | null;
73
89
  location: string;
74
90
  id: string;
75
91
  name: string;
@@ -79,6 +95,8 @@ declare const DeleteEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
79
95
  created_at: string;
80
96
  updated_at: string;
81
97
  active: boolean;
98
+ mainPictureUrl: string | null;
99
+ bannerUrl: string | null;
82
100
  folderId: string | null;
83
101
  tagAssistedId: string;
84
102
  tagConfirmedId: string;
@@ -6,6 +6,9 @@ export declare const eventSchema: z.ZodObject<{
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;
@@ -14,6 +17,7 @@ export declare const eventSchema: z.ZodObject<{
14
17
  created_at: z.ZodDate;
15
18
  updated_at: z.ZodDate;
16
19
  }, "strip", z.ZodTypeAny, {
20
+ description: string | null;
17
21
  location: string;
18
22
  id: string;
19
23
  name: string;
@@ -23,11 +27,14 @@ export declare const eventSchema: z.ZodObject<{
23
27
  created_at: Date;
24
28
  updated_at: Date;
25
29
  active: boolean;
30
+ mainPictureUrl: string | null;
31
+ bannerUrl: string | null;
26
32
  folderId: string | null;
27
33
  tagAssistedId: string;
28
34
  tagConfirmedId: string;
29
35
  supraEventId: string | null;
30
36
  }, {
37
+ description: string | null;
31
38
  location: string;
32
39
  id: string;
33
40
  name: string;
@@ -37,6 +44,8 @@ export declare const eventSchema: z.ZodObject<{
37
44
  created_at: Date;
38
45
  updated_at: Date;
39
46
  active: boolean;
47
+ mainPictureUrl: string | null;
48
+ bannerUrl: string | null;
40
49
  folderId: string | null;
41
50
  tagAssistedId: string;
42
51
  tagConfirmedId: string;
@@ -21,6 +21,19 @@ exports.eventSchema = zod_1.z.object({
21
21
  invalid_type_error: (0, translate_1.translate)('model.event.endingDate.invalid'),
22
22
  }),
23
23
  location: zod_1.z.string().min(1, (0, translate_1.translate)('model.event.location.required')),
24
+ mainPictureUrl: zod_1.z
25
+ .string()
26
+ .url({
27
+ message: (0, translate_1.translate)('model.event.eventPictureUrl.invalid'),
28
+ })
29
+ .nullable(),
30
+ bannerUrl: zod_1.z
31
+ .string()
32
+ .url({
33
+ message: (0, translate_1.translate)('model.event.eventBannerUrl.invalid'),
34
+ })
35
+ .nullable(),
36
+ description: zod_1.z.string().nullable(),
24
37
  folderId: event_folder_dto_1.eventFolderSchema.shape.id.nullable(),
25
38
  tagAssistedId: tag_dto_1.tagSchema.shape.id,
26
39
  tagConfirmedId: tag_dto_1.tagSchema.shape.id,
@@ -7,6 +7,9 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
7
7
  startingDate: z.ZodDate;
8
8
  endingDate: z.ZodDate;
9
9
  location: z.ZodString;
10
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
11
+ bannerUrl: z.ZodNullable<z.ZodString>;
12
+ description: z.ZodNullable<z.ZodString>;
10
13
  folderId: z.ZodNullable<z.ZodString>;
11
14
  tagAssistedId: z.ZodString;
12
15
  tagConfirmedId: z.ZodString;
@@ -36,6 +39,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
36
39
  price: number | null;
37
40
  }>, "many">;
38
41
  }>, "strip", z.ZodTypeAny, {
42
+ description: string | null;
39
43
  location: string;
40
44
  id: string;
41
45
  name: string;
@@ -45,6 +49,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
45
49
  created_at: Date;
46
50
  updated_at: Date;
47
51
  active: boolean;
52
+ mainPictureUrl: string | null;
53
+ bannerUrl: string | null;
48
54
  folderId: string | null;
49
55
  tagAssistedId: string;
50
56
  tagConfirmedId: string;
@@ -56,6 +62,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
56
62
  price: number | null;
57
63
  }[];
58
64
  }, {
65
+ description: string | null;
59
66
  location: string;
60
67
  id: string;
61
68
  name: string;
@@ -65,6 +72,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
65
72
  created_at: Date;
66
73
  updated_at: Date;
67
74
  active: boolean;
75
+ mainPictureUrl: string | null;
76
+ bannerUrl: string | null;
68
77
  folderId: string | null;
69
78
  tagAssistedId: string;
70
79
  tagConfirmedId: string;
@@ -78,6 +87,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
78
87
  }>, "many">;
79
88
  }, "strip", z.ZodTypeAny, {
80
89
  events: {
90
+ description: string | null;
81
91
  location: string;
82
92
  id: string;
83
93
  name: string;
@@ -87,6 +97,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
87
97
  created_at: Date;
88
98
  updated_at: Date;
89
99
  active: boolean;
100
+ mainPictureUrl: string | null;
101
+ bannerUrl: string | null;
90
102
  folderId: string | null;
91
103
  tagAssistedId: string;
92
104
  tagConfirmedId: string;
@@ -100,6 +112,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
100
112
  }[];
101
113
  }, {
102
114
  events: {
115
+ description: string | null;
103
116
  location: string;
104
117
  id: string;
105
118
  name: string;
@@ -109,6 +122,8 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
109
122
  created_at: Date;
110
123
  updated_at: Date;
111
124
  active: boolean;
125
+ mainPictureUrl: string | null;
126
+ bannerUrl: string | null;
112
127
  folderId: string | null;
113
128
  tagAssistedId: string;
114
129
  tagConfirmedId: string;
@@ -129,6 +144,9 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
129
144
  startingDate: z.ZodString;
130
145
  endingDate: z.ZodString;
131
146
  location: z.ZodString;
147
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
148
+ bannerUrl: z.ZodNullable<z.ZodString>;
149
+ description: z.ZodNullable<z.ZodString>;
132
150
  folderId: z.ZodNullable<z.ZodString>;
133
151
  tagAssistedId: z.ZodString;
134
152
  tagConfirmedId: z.ZodString;
@@ -157,6 +175,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
157
175
  price: number | null;
158
176
  }>, "many">;
159
177
  }, z.UnknownKeysParam, z.ZodTypeAny, {
178
+ description: string | null;
160
179
  location: string;
161
180
  id: string;
162
181
  name: string;
@@ -166,6 +185,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
166
185
  created_at: string;
167
186
  updated_at: string;
168
187
  active: boolean;
188
+ mainPictureUrl: string | null;
189
+ bannerUrl: string | null;
169
190
  folderId: string | null;
170
191
  tagAssistedId: string;
171
192
  tagConfirmedId: string;
@@ -177,6 +198,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
177
198
  price: number | null;
178
199
  }[];
179
200
  }, {
201
+ description: string | null;
180
202
  location: string;
181
203
  id: string;
182
204
  name: string;
@@ -186,6 +208,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
186
208
  created_at: string;
187
209
  updated_at: string;
188
210
  active: boolean;
211
+ mainPictureUrl: string | null;
212
+ bannerUrl: string | null;
189
213
  folderId: string | null;
190
214
  tagAssistedId: string;
191
215
  tagConfirmedId: string;
@@ -199,6 +223,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
199
223
  }>, "many">;
200
224
  }, z.UnknownKeysParam, z.ZodTypeAny, {
201
225
  events: {
226
+ description: string | null;
202
227
  location: string;
203
228
  id: string;
204
229
  name: string;
@@ -208,6 +233,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
208
233
  created_at: string;
209
234
  updated_at: string;
210
235
  active: boolean;
236
+ mainPictureUrl: string | null;
237
+ bannerUrl: string | null;
211
238
  folderId: string | null;
212
239
  tagAssistedId: string;
213
240
  tagConfirmedId: string;
@@ -221,6 +248,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
221
248
  }[];
222
249
  }, {
223
250
  events: {
251
+ description: string | null;
224
252
  location: string;
225
253
  id: string;
226
254
  name: string;
@@ -230,6 +258,8 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
230
258
  created_at: string;
231
259
  updated_at: string;
232
260
  active: boolean;
261
+ mainPictureUrl: string | null;
262
+ bannerUrl: string | null;
233
263
  folderId: string | null;
234
264
  tagAssistedId: string;
235
265
  tagConfirmedId: string;