expo-backend-types 0.49.0-EXPO-343-Quique-Wolff.2 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.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 +23 -72
- package/dist/src/event/dto/create-event.dto.js +1 -7
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
- package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
- package/dist/src/event/dto/event-tickets.dto.js +18 -8
- package/dist/src/event/dto/event.dto.d.ts +0 -9
- package/dist/src/event/dto/event.dto.js +0 -13
- package/dist/src/event/dto/get-active-events.dto.d.ts +23 -33
- package/dist/src/event/dto/get-all-event.dto.d.ts +48 -272
- package/dist/src/event/dto/get-all-event.dto.js +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +23 -99
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +8 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.js +11 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -9
- package/dist/src/event/dto/update-event.dto.d.ts +46 -75
- package/dist/src/event/dto/update-event.dto.js +2 -8
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
- package/dist/src/i18n/es.d.ts +1 -8
- package/dist/src/i18n/es.js +3 -8
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
- package/dist/types/prisma-schema/edge.js +3 -6
- package/dist/types/prisma-schema/index-browser.js +0 -3
- package/dist/types/prisma-schema/index.d.ts +1 -214
- package/dist/types/prisma-schema/index.js +3 -6
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -9
- package/dist/types/prisma-schema/wasm.js +0 -3
- package/dist/types/schema.d.ts +92 -377
- package/package.json +2 -1
- package/dist/src/event/dto/delete-banner-event.dto.d.ts +0 -18
- package/dist/src/event/dto/delete-banner-event.dto.js +0 -12
- package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +0 -18
- package/dist/src/event/dto/delete-main-picture-event.dto.js +0 -12
- package/dist/src/event/dto/update-banner-event.dto.d.ts +0 -33
- package/dist/src/event/dto/update-banner-event.dto.js +0 -18
- package/dist/src/event/dto/update-main-picture-event.dto.d.ts +0 -33
- package/dist/src/event/dto/update-main-picture-event.dto.js +0 -18
- package/dist/src/profile/dto/delete-image-profile.dto.d.ts +0 -18
- package/dist/src/profile/dto/delete-image-profile.dto.js +0 -12
- package/dist/src/profile/dto/update-image-profile.dto.d.ts +0 -33
- package/dist/src/profile/dto/update-image-profile.dto.js +0 -18
@@ -6,9 +6,6 @@ export declare const updateEventSchema: 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>;
|
12
9
|
folderId: z.ZodNullable<z.ZodString>;
|
13
10
|
tagAssistedId: z.ZodString;
|
14
11
|
tagConfirmedId: z.ZodString;
|
@@ -16,7 +13,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
16
13
|
supraEventId: z.ZodNullable<z.ZodString>;
|
17
14
|
created_at: z.ZodDate;
|
18
15
|
updated_at: z.ZodDate;
|
19
|
-
}, "
|
16
|
+
}, "location" | "name" | "date" | "startingDate" | "endingDate" | "folderId">, {
|
20
17
|
tagsId: z.ZodArray<z.ZodString, "many">;
|
21
18
|
subEvents: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
22
19
|
id: z.ZodString;
|
@@ -25,9 +22,6 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
25
22
|
startingDate: z.ZodDate;
|
26
23
|
endingDate: z.ZodDate;
|
27
24
|
location: z.ZodString;
|
28
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
-
description: z.ZodNullable<z.ZodString>;
|
31
25
|
folderId: z.ZodNullable<z.ZodString>;
|
32
26
|
tagAssistedId: z.ZodString;
|
33
27
|
tagConfirmedId: z.ZodString;
|
@@ -35,30 +29,24 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
35
29
|
supraEventId: z.ZodNullable<z.ZodString>;
|
36
30
|
created_at: z.ZodDate;
|
37
31
|
updated_at: z.ZodDate;
|
38
|
-
}, "
|
32
|
+
}, "location" | "name" | "date" | "startingDate" | "endingDate">, {
|
39
33
|
id: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
|
40
34
|
}>, "strip", z.ZodTypeAny, {
|
41
|
-
description: string | null;
|
42
35
|
location: string;
|
43
36
|
id: string;
|
44
37
|
name: string;
|
45
38
|
date: Date;
|
46
39
|
startingDate: Date;
|
47
40
|
endingDate: Date;
|
48
|
-
mainPictureUrl: string | null;
|
49
|
-
bannerUrl: string | null;
|
50
41
|
}, {
|
51
|
-
description: string | null;
|
52
42
|
location: string;
|
53
43
|
id: string;
|
54
44
|
name: string;
|
55
45
|
date: Date;
|
56
46
|
startingDate: Date;
|
57
47
|
endingDate: Date;
|
58
|
-
mainPictureUrl: string | null;
|
59
|
-
bannerUrl: string | null;
|
60
48
|
}>, "many">;
|
61
|
-
eventTickets: z.ZodArray<z.ZodObject<Omit<{
|
49
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Omit<{
|
62
50
|
id: z.ZodString;
|
63
51
|
amount: z.ZodNullable<z.ZodNumber>;
|
64
52
|
type: z.ZodNativeEnum<{
|
@@ -75,27 +63,29 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
75
63
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
76
64
|
amount: number | null;
|
77
65
|
price: number | null;
|
66
|
+
}>, {
|
67
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
68
|
+
amount: number | null;
|
69
|
+
price: number | null;
|
70
|
+
}, {
|
71
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
72
|
+
amount: number | null;
|
73
|
+
price: number | null;
|
78
74
|
}>, "many">;
|
79
75
|
}>, "strip", z.ZodTypeAny, {
|
80
|
-
description: string | null;
|
81
76
|
location: string;
|
82
77
|
name: string;
|
83
78
|
date: Date;
|
84
79
|
startingDate: Date;
|
85
80
|
endingDate: Date;
|
86
|
-
mainPictureUrl: string | null;
|
87
|
-
bannerUrl: string | null;
|
88
81
|
folderId: string | null;
|
89
82
|
subEvents: {
|
90
|
-
description: string | null;
|
91
83
|
location: string;
|
92
84
|
id: string;
|
93
85
|
name: string;
|
94
86
|
date: Date;
|
95
87
|
startingDate: Date;
|
96
88
|
endingDate: Date;
|
97
|
-
mainPictureUrl: string | null;
|
98
|
-
bannerUrl: string | null;
|
99
89
|
}[];
|
100
90
|
tagsId: string[];
|
101
91
|
eventTickets: {
|
@@ -104,25 +94,19 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
104
94
|
price: number | null;
|
105
95
|
}[];
|
106
96
|
}, {
|
107
|
-
description: string | null;
|
108
97
|
location: string;
|
109
98
|
name: string;
|
110
99
|
date: Date;
|
111
100
|
startingDate: Date;
|
112
101
|
endingDate: Date;
|
113
|
-
mainPictureUrl: string | null;
|
114
|
-
bannerUrl: string | null;
|
115
102
|
folderId: string | null;
|
116
103
|
subEvents: {
|
117
|
-
description: string | null;
|
118
104
|
location: string;
|
119
105
|
id: string;
|
120
106
|
name: string;
|
121
107
|
date: Date;
|
122
108
|
startingDate: Date;
|
123
109
|
endingDate: Date;
|
124
|
-
mainPictureUrl: string | null;
|
125
|
-
bannerUrl: string | null;
|
126
110
|
}[];
|
127
111
|
tagsId: string[];
|
128
112
|
eventTickets: {
|
@@ -132,56 +116,53 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
132
116
|
}[];
|
133
117
|
}>;
|
134
118
|
declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
135
|
-
description: z.ZodNullable<z.ZodString>;
|
136
119
|
location: z.ZodString;
|
137
120
|
name: z.ZodString;
|
138
121
|
date: z.ZodString;
|
139
122
|
startingDate: z.ZodString;
|
140
123
|
endingDate: z.ZodString;
|
141
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
142
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
143
124
|
folderId: z.ZodNullable<z.ZodString>;
|
144
125
|
tagsId: z.ZodArray<z.ZodString, "many">;
|
145
126
|
subEvents: z.ZodArray<z.ZodObject<{
|
146
|
-
description: z.ZodNullable<z.ZodString>;
|
147
127
|
location: z.ZodString;
|
148
128
|
name: z.ZodString;
|
149
129
|
date: z.ZodString;
|
150
130
|
startingDate: z.ZodString;
|
151
131
|
endingDate: z.ZodString;
|
152
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
153
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
154
132
|
id: z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>;
|
155
133
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
156
|
-
description: string | null;
|
157
134
|
location: string;
|
158
135
|
id: string;
|
159
136
|
name: string;
|
160
137
|
date: string;
|
161
138
|
startingDate: string;
|
162
139
|
endingDate: string;
|
163
|
-
mainPictureUrl: string | null;
|
164
|
-
bannerUrl: string | null;
|
165
140
|
}, {
|
166
|
-
description: string | null;
|
167
141
|
location: string;
|
168
142
|
id: string;
|
169
143
|
name: string;
|
170
144
|
date: string;
|
171
145
|
startingDate: string;
|
172
146
|
endingDate: string;
|
173
|
-
mainPictureUrl: string | null;
|
174
|
-
bannerUrl: string | null;
|
175
147
|
}>, "many">;
|
176
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
148
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Omit<{
|
149
|
+
id: z.ZodString;
|
150
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
177
151
|
type: z.ZodNativeEnum<{
|
178
152
|
PARTICIPANT: "PARTICIPANT";
|
179
153
|
STAFF: "STAFF";
|
180
154
|
SPECTATOR: "SPECTATOR";
|
181
155
|
}>;
|
182
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
183
156
|
price: z.ZodNullable<z.ZodNumber>;
|
184
|
-
},
|
157
|
+
}, "id">, "strip", z.ZodTypeAny, {
|
158
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
159
|
+
amount: number | null;
|
160
|
+
price: number | null;
|
161
|
+
}, {
|
162
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
163
|
+
amount: number | null;
|
164
|
+
price: number | null;
|
165
|
+
}>, {
|
185
166
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
186
167
|
amount: number | null;
|
187
168
|
price: number | null;
|
@@ -191,25 +172,19 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
191
172
|
price: number | null;
|
192
173
|
}>, "many">;
|
193
174
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
194
|
-
description: string | null;
|
195
175
|
location: string;
|
196
176
|
name: string;
|
197
177
|
date: string;
|
198
178
|
startingDate: string;
|
199
179
|
endingDate: string;
|
200
|
-
mainPictureUrl: string | null;
|
201
|
-
bannerUrl: string | null;
|
202
180
|
folderId: string | null;
|
203
181
|
subEvents: {
|
204
|
-
description: string | null;
|
205
182
|
location: string;
|
206
183
|
id: string;
|
207
184
|
name: string;
|
208
185
|
date: string;
|
209
186
|
startingDate: string;
|
210
187
|
endingDate: string;
|
211
|
-
mainPictureUrl: string | null;
|
212
|
-
bannerUrl: string | null;
|
213
188
|
}[];
|
214
189
|
tagsId: string[];
|
215
190
|
eventTickets: {
|
@@ -218,25 +193,19 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
218
193
|
price: number | null;
|
219
194
|
}[];
|
220
195
|
}, {
|
221
|
-
description: string | null;
|
222
196
|
location: string;
|
223
197
|
name: string;
|
224
198
|
date: string;
|
225
199
|
startingDate: string;
|
226
200
|
endingDate: string;
|
227
|
-
mainPictureUrl: string | null;
|
228
|
-
bannerUrl: string | null;
|
229
201
|
folderId: string | null;
|
230
202
|
subEvents: {
|
231
|
-
description: string | null;
|
232
203
|
location: string;
|
233
204
|
id: string;
|
234
205
|
name: string;
|
235
206
|
date: string;
|
236
207
|
startingDate: string;
|
237
208
|
endingDate: string;
|
238
|
-
mainPictureUrl: string | null;
|
239
|
-
bannerUrl: string | null;
|
240
209
|
}[];
|
241
210
|
tagsId: string[];
|
242
211
|
eventTickets: {
|
@@ -254,9 +223,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
254
223
|
startingDate: z.ZodDate;
|
255
224
|
endingDate: z.ZodDate;
|
256
225
|
location: z.ZodString;
|
257
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
258
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
259
|
-
description: z.ZodNullable<z.ZodString>;
|
260
226
|
folderId: z.ZodNullable<z.ZodString>;
|
261
227
|
tagAssistedId: z.ZodString;
|
262
228
|
tagConfirmedId: z.ZodString;
|
@@ -331,7 +297,7 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
331
297
|
isExclusive: boolean;
|
332
298
|
};
|
333
299
|
}>;
|
334
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
300
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
335
301
|
id: z.ZodString;
|
336
302
|
amount: z.ZodNullable<z.ZodNumber>;
|
337
303
|
type: z.ZodNativeEnum<{
|
@@ -350,9 +316,18 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
350
316
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
351
317
|
amount: number | null;
|
352
318
|
price: number | null;
|
319
|
+
}>, {
|
320
|
+
id: string;
|
321
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
322
|
+
amount: number | null;
|
323
|
+
price: number | null;
|
324
|
+
}, {
|
325
|
+
id: string;
|
326
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
327
|
+
amount: number | null;
|
328
|
+
price: number | null;
|
353
329
|
}>, "many">;
|
354
330
|
}>, "strip", z.ZodTypeAny, {
|
355
|
-
description: string | null;
|
356
331
|
location: string;
|
357
332
|
id: string;
|
358
333
|
name: string;
|
@@ -362,8 +337,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
362
337
|
created_at: Date;
|
363
338
|
updated_at: Date;
|
364
339
|
active: boolean;
|
365
|
-
mainPictureUrl: string | null;
|
366
|
-
bannerUrl: string | null;
|
367
340
|
folderId: string | null;
|
368
341
|
tagAssistedId: string;
|
369
342
|
tagConfirmedId: string;
|
@@ -391,7 +364,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
391
364
|
};
|
392
365
|
};
|
393
366
|
}, {
|
394
|
-
description: string | null;
|
395
367
|
location: string;
|
396
368
|
id: string;
|
397
369
|
name: string;
|
@@ -401,8 +373,6 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
401
373
|
created_at: Date;
|
402
374
|
updated_at: Date;
|
403
375
|
active: boolean;
|
404
|
-
mainPictureUrl: string | null;
|
405
|
-
bannerUrl: string | null;
|
406
376
|
folderId: string | null;
|
407
377
|
tagAssistedId: string;
|
408
378
|
tagConfirmedId: string;
|
@@ -437,9 +407,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
437
407
|
startingDate: z.ZodString;
|
438
408
|
endingDate: z.ZodString;
|
439
409
|
location: z.ZodString;
|
440
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
441
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
442
|
-
description: z.ZodNullable<z.ZodString>;
|
443
410
|
folderId: z.ZodNullable<z.ZodString>;
|
444
411
|
tagAssistedId: z.ZodString;
|
445
412
|
tagConfirmedId: z.ZodString;
|
@@ -512,7 +479,7 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
512
479
|
isExclusive: boolean;
|
513
480
|
};
|
514
481
|
}>;
|
515
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
482
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
516
483
|
id: z.ZodString;
|
517
484
|
amount: z.ZodNullable<z.ZodNumber>;
|
518
485
|
type: z.ZodNativeEnum<{
|
@@ -521,7 +488,17 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
521
488
|
SPECTATOR: "SPECTATOR";
|
522
489
|
}>;
|
523
490
|
price: z.ZodNullable<z.ZodNumber>;
|
524
|
-
},
|
491
|
+
}, "strip", z.ZodTypeAny, {
|
492
|
+
id: string;
|
493
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
494
|
+
amount: number | null;
|
495
|
+
price: number | null;
|
496
|
+
}, {
|
497
|
+
id: string;
|
498
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
499
|
+
amount: number | null;
|
500
|
+
price: number | null;
|
501
|
+
}>, {
|
525
502
|
id: string;
|
526
503
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
527
504
|
amount: number | null;
|
@@ -533,7 +510,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
533
510
|
price: number | null;
|
534
511
|
}>, "many">;
|
535
512
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
536
|
-
description: string | null;
|
537
513
|
location: string;
|
538
514
|
id: string;
|
539
515
|
name: string;
|
@@ -543,8 +519,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
543
519
|
created_at: string;
|
544
520
|
updated_at: string;
|
545
521
|
active: boolean;
|
546
|
-
mainPictureUrl: string | null;
|
547
|
-
bannerUrl: string | null;
|
548
522
|
folderId: string | null;
|
549
523
|
tagAssistedId: string;
|
550
524
|
tagConfirmedId: string;
|
@@ -572,7 +546,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
572
546
|
};
|
573
547
|
};
|
574
548
|
}, {
|
575
|
-
description: string | null;
|
576
549
|
location: string;
|
577
550
|
id: string;
|
578
551
|
name: string;
|
@@ -582,8 +555,6 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
582
555
|
created_at: string;
|
583
556
|
updated_at: string;
|
584
557
|
active: boolean;
|
585
|
-
mainPictureUrl: string | null;
|
586
|
-
bannerUrl: string | null;
|
587
558
|
folderId: string | null;
|
588
559
|
tagAssistedId: string;
|
589
560
|
tagConfirmedId: string;
|
@@ -18,9 +18,6 @@ exports.updateEventSchema = event_dto_1.eventSchema
|
|
18
18
|
location: true,
|
19
19
|
startingDate: true,
|
20
20
|
endingDate: true,
|
21
|
-
bannerUrl: true,
|
22
|
-
mainPictureUrl: true,
|
23
|
-
description: true,
|
24
21
|
})
|
25
22
|
.merge(zod_1.default.object({
|
26
23
|
tagsId: zod_1.default.array(tag_dto_1.tagSchema.shape.id),
|
@@ -31,16 +28,13 @@ exports.updateEventSchema = event_dto_1.eventSchema
|
|
31
28
|
date: true,
|
32
29
|
startingDate: true,
|
33
30
|
endingDate: true,
|
34
|
-
bannerUrl: true,
|
35
|
-
mainPictureUrl: true,
|
36
|
-
description: true,
|
37
31
|
})
|
38
32
|
.extend({
|
39
33
|
id: event_dto_1.eventSchema.shape.id.or(zod_1.default.literal('')),
|
40
34
|
})),
|
41
|
-
eventTickets: zod_1.default.array(event_tickets_dto_1.
|
35
|
+
eventTickets: zod_1.default.array((0, event_tickets_dto_1.addEventTicketRefinements)(event_tickets_dto_1.baseEventTicketsSchema.omit({
|
42
36
|
id: true,
|
43
|
-
})),
|
37
|
+
}))),
|
44
38
|
}));
|
45
39
|
class UpdateEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventSchema) {
|
46
40
|
}
|
@@ -14,9 +14,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
14
14
|
startingDate: z.ZodDate;
|
15
15
|
endingDate: z.ZodDate;
|
16
16
|
location: z.ZodString;
|
17
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
18
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
19
|
-
description: z.ZodNullable<z.ZodString>;
|
20
17
|
folderId: z.ZodNullable<z.ZodString>;
|
21
18
|
tagAssistedId: z.ZodString;
|
22
19
|
tagConfirmedId: z.ZodString;
|
@@ -25,7 +22,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
25
22
|
created_at: z.ZodDate;
|
26
23
|
updated_at: z.ZodDate;
|
27
24
|
}, "strip", z.ZodTypeAny, {
|
28
|
-
description: string | null;
|
29
25
|
location: string;
|
30
26
|
id: string;
|
31
27
|
name: string;
|
@@ -35,14 +31,11 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
35
31
|
created_at: Date;
|
36
32
|
updated_at: Date;
|
37
33
|
active: boolean;
|
38
|
-
mainPictureUrl: string | null;
|
39
|
-
bannerUrl: string | null;
|
40
34
|
folderId: string | null;
|
41
35
|
tagAssistedId: string;
|
42
36
|
tagConfirmedId: string;
|
43
37
|
supraEventId: string | null;
|
44
38
|
}, {
|
45
|
-
description: string | null;
|
46
39
|
location: string;
|
47
40
|
id: string;
|
48
41
|
name: string;
|
@@ -52,8 +45,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
52
45
|
created_at: Date;
|
53
46
|
updated_at: Date;
|
54
47
|
active: boolean;
|
55
|
-
mainPictureUrl: string | null;
|
56
|
-
bannerUrl: string | null;
|
57
48
|
folderId: string | null;
|
58
49
|
tagAssistedId: string;
|
59
50
|
tagConfirmedId: string;
|
@@ -66,7 +57,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
66
57
|
created_at: Date;
|
67
58
|
updated_at: Date;
|
68
59
|
events: {
|
69
|
-
description: string | null;
|
70
60
|
location: string;
|
71
61
|
id: string;
|
72
62
|
name: string;
|
@@ -76,8 +66,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
76
66
|
created_at: Date;
|
77
67
|
updated_at: Date;
|
78
68
|
active: boolean;
|
79
|
-
mainPictureUrl: string | null;
|
80
|
-
bannerUrl: string | null;
|
81
69
|
folderId: string | null;
|
82
70
|
tagAssistedId: string;
|
83
71
|
tagConfirmedId: string;
|
@@ -90,7 +78,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
90
78
|
created_at: Date;
|
91
79
|
updated_at: Date;
|
92
80
|
events: {
|
93
|
-
description: string | null;
|
94
81
|
location: string;
|
95
82
|
id: string;
|
96
83
|
name: string;
|
@@ -100,8 +87,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
100
87
|
created_at: Date;
|
101
88
|
updated_at: Date;
|
102
89
|
active: boolean;
|
103
|
-
mainPictureUrl: string | null;
|
104
|
-
bannerUrl: string | null;
|
105
90
|
folderId: string | null;
|
106
91
|
tagAssistedId: string;
|
107
92
|
tagConfirmedId: string;
|
@@ -116,7 +101,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
116
101
|
created_at: Date;
|
117
102
|
updated_at: Date;
|
118
103
|
events: {
|
119
|
-
description: string | null;
|
120
104
|
location: string;
|
121
105
|
id: string;
|
122
106
|
name: string;
|
@@ -126,8 +110,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
126
110
|
created_at: Date;
|
127
111
|
updated_at: Date;
|
128
112
|
active: boolean;
|
129
|
-
mainPictureUrl: string | null;
|
130
|
-
bannerUrl: string | null;
|
131
113
|
folderId: string | null;
|
132
114
|
tagAssistedId: string;
|
133
115
|
tagConfirmedId: string;
|
@@ -142,7 +124,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
142
124
|
created_at: Date;
|
143
125
|
updated_at: Date;
|
144
126
|
events: {
|
145
|
-
description: string | null;
|
146
127
|
location: string;
|
147
128
|
id: string;
|
148
129
|
name: string;
|
@@ -152,8 +133,6 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
|
|
152
133
|
created_at: Date;
|
153
134
|
updated_at: Date;
|
154
135
|
active: boolean;
|
155
|
-
mainPictureUrl: string | null;
|
156
|
-
bannerUrl: string | null;
|
157
136
|
folderId: string | null;
|
158
137
|
tagAssistedId: string;
|
159
138
|
tagConfirmedId: string;
|
@@ -175,9 +154,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
175
154
|
startingDate: z.ZodString;
|
176
155
|
endingDate: z.ZodString;
|
177
156
|
location: z.ZodString;
|
178
|
-
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
179
|
-
bannerUrl: z.ZodNullable<z.ZodString>;
|
180
|
-
description: z.ZodNullable<z.ZodString>;
|
181
157
|
folderId: z.ZodNullable<z.ZodString>;
|
182
158
|
tagAssistedId: z.ZodString;
|
183
159
|
tagConfirmedId: z.ZodString;
|
@@ -186,7 +162,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
186
162
|
created_at: z.ZodString;
|
187
163
|
updated_at: z.ZodString;
|
188
164
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
189
|
-
description: string | null;
|
190
165
|
location: string;
|
191
166
|
id: string;
|
192
167
|
name: string;
|
@@ -196,14 +171,11 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
196
171
|
created_at: string;
|
197
172
|
updated_at: string;
|
198
173
|
active: boolean;
|
199
|
-
mainPictureUrl: string | null;
|
200
|
-
bannerUrl: string | null;
|
201
174
|
folderId: string | null;
|
202
175
|
tagAssistedId: string;
|
203
176
|
tagConfirmedId: string;
|
204
177
|
supraEventId: string | null;
|
205
178
|
}, {
|
206
|
-
description: string | null;
|
207
179
|
location: string;
|
208
180
|
id: string;
|
209
181
|
name: string;
|
@@ -213,8 +185,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
213
185
|
created_at: string;
|
214
186
|
updated_at: string;
|
215
187
|
active: boolean;
|
216
|
-
mainPictureUrl: string | null;
|
217
|
-
bannerUrl: string | null;
|
218
188
|
folderId: string | null;
|
219
189
|
tagAssistedId: string;
|
220
190
|
tagConfirmedId: string;
|
@@ -227,7 +197,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
227
197
|
created_at: string;
|
228
198
|
updated_at: string;
|
229
199
|
events: {
|
230
|
-
description: string | null;
|
231
200
|
location: string;
|
232
201
|
id: string;
|
233
202
|
name: string;
|
@@ -237,8 +206,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
237
206
|
created_at: string;
|
238
207
|
updated_at: string;
|
239
208
|
active: boolean;
|
240
|
-
mainPictureUrl: string | null;
|
241
|
-
bannerUrl: string | null;
|
242
209
|
folderId: string | null;
|
243
210
|
tagAssistedId: string;
|
244
211
|
tagConfirmedId: string;
|
@@ -251,7 +218,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
251
218
|
created_at: string;
|
252
219
|
updated_at: string;
|
253
220
|
events: {
|
254
|
-
description: string | null;
|
255
221
|
location: string;
|
256
222
|
id: string;
|
257
223
|
name: string;
|
@@ -261,8 +227,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
261
227
|
created_at: string;
|
262
228
|
updated_at: string;
|
263
229
|
active: boolean;
|
264
|
-
mainPictureUrl: string | null;
|
265
|
-
bannerUrl: string | null;
|
266
230
|
folderId: string | null;
|
267
231
|
tagAssistedId: string;
|
268
232
|
tagConfirmedId: string;
|
@@ -277,7 +241,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
277
241
|
created_at: string;
|
278
242
|
updated_at: string;
|
279
243
|
events: {
|
280
|
-
description: string | null;
|
281
244
|
location: string;
|
282
245
|
id: string;
|
283
246
|
name: string;
|
@@ -287,8 +250,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
287
250
|
created_at: string;
|
288
251
|
updated_at: string;
|
289
252
|
active: boolean;
|
290
|
-
mainPictureUrl: string | null;
|
291
|
-
bannerUrl: string | null;
|
292
253
|
folderId: string | null;
|
293
254
|
tagAssistedId: string;
|
294
255
|
tagConfirmedId: string;
|
@@ -303,7 +264,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
303
264
|
created_at: string;
|
304
265
|
updated_at: string;
|
305
266
|
events: {
|
306
|
-
description: string | null;
|
307
267
|
location: string;
|
308
268
|
id: string;
|
309
269
|
name: string;
|
@@ -313,8 +273,6 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
313
273
|
created_at: string;
|
314
274
|
updated_at: string;
|
315
275
|
active: boolean;
|
316
|
-
mainPictureUrl: string | null;
|
317
|
-
bannerUrl: string | null;
|
318
276
|
folderId: string | null;
|
319
277
|
tagAssistedId: string;
|
320
278
|
tagConfirmedId: string;
|