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