expo-backend-types 0.48.0 → 0.49.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.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 +72 -23
- package/dist/src/event/dto/create-event.dto.js +7 -1
- package/dist/src/event/dto/delete-banner-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-banner-event.dto.js +12 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-main-picture-event.dto.js +12 -0
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -33
- package/dist/src/event/dto/event-tickets.dto.js +8 -18
- 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 +33 -23
- package/dist/src/event/dto/get-all-event.dto.d.ts +272 -48
- package/dist/src/event/dto/get-all-event.dto.js +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +99 -23
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
- package/dist/src/event/dto/update-banner-event.dto.d.ts +33 -0
- package/dist/src/event/dto/update-banner-event.dto.js +18 -0
- package/dist/src/event/dto/update-event.dto.d.ts +75 -46
- package/dist/src/event/dto/update-event.dto.js +8 -2
- package/dist/src/event/dto/update-main-picture-event.dto.d.ts +33 -0
- package/dist/src/event/dto/update-main-picture-event.dto.js +18 -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 +7 -1
- package/dist/src/i18n/es.js +7 -3
- 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/profile/dto/delete-image-profile.dto.d.ts +18 -0
- package/dist/src/profile/dto/delete-image-profile.dto.js +12 -0
- package/dist/src/profile/dto/update-image-profile.dto.d.ts +33 -0
- package/dist/src/profile/dto/update-image-profile.dto.js +18 -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 +383 -63
- package/package.json +1 -2
@@ -14,6 +14,9 @@ export declare const getAllEventsResponseSchema: 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>;
|
17
20
|
folderId: z.ZodNullable<z.ZodString>;
|
18
21
|
tagAssistedId: z.ZodString;
|
19
22
|
tagConfirmedId: z.ZodString;
|
@@ -29,6 +32,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
29
32
|
startingDate: z.ZodDate;
|
30
33
|
endingDate: z.ZodDate;
|
31
34
|
location: z.ZodString;
|
35
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
36
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
37
|
+
description: z.ZodNullable<z.ZodString>;
|
32
38
|
folderId: z.ZodNullable<z.ZodString>;
|
33
39
|
tagAssistedId: z.ZodString;
|
34
40
|
tagConfirmedId: z.ZodString;
|
@@ -37,6 +43,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
37
43
|
created_at: z.ZodDate;
|
38
44
|
updated_at: z.ZodDate;
|
39
45
|
}, "strip", z.ZodTypeAny, {
|
46
|
+
description: string | null;
|
40
47
|
location: string;
|
41
48
|
id: string;
|
42
49
|
name: string;
|
@@ -46,11 +53,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
46
53
|
created_at: Date;
|
47
54
|
updated_at: Date;
|
48
55
|
active: boolean;
|
56
|
+
mainPictureUrl: string | null;
|
57
|
+
bannerUrl: string | null;
|
49
58
|
folderId: string | null;
|
50
59
|
tagAssistedId: string;
|
51
60
|
tagConfirmedId: string;
|
52
61
|
supraEventId: string | null;
|
53
62
|
}, {
|
63
|
+
description: string | null;
|
54
64
|
location: string;
|
55
65
|
id: string;
|
56
66
|
name: string;
|
@@ -60,6 +70,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
60
70
|
created_at: Date;
|
61
71
|
updated_at: Date;
|
62
72
|
active: boolean;
|
73
|
+
mainPictureUrl: string | null;
|
74
|
+
bannerUrl: string | null;
|
63
75
|
folderId: string | null;
|
64
76
|
tagAssistedId: string;
|
65
77
|
tagConfirmedId: string;
|
@@ -72,6 +84,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
72
84
|
startingDate: z.ZodDate;
|
73
85
|
endingDate: z.ZodDate;
|
74
86
|
location: z.ZodString;
|
87
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
88
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
89
|
+
description: z.ZodNullable<z.ZodString>;
|
75
90
|
folderId: z.ZodNullable<z.ZodString>;
|
76
91
|
tagAssistedId: z.ZodString;
|
77
92
|
tagConfirmedId: z.ZodString;
|
@@ -80,6 +95,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
80
95
|
created_at: z.ZodDate;
|
81
96
|
updated_at: z.ZodDate;
|
82
97
|
}, "strip", z.ZodTypeAny, {
|
98
|
+
description: string | null;
|
83
99
|
location: string;
|
84
100
|
id: string;
|
85
101
|
name: string;
|
@@ -89,11 +105,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
89
105
|
created_at: Date;
|
90
106
|
updated_at: Date;
|
91
107
|
active: boolean;
|
108
|
+
mainPictureUrl: string | null;
|
109
|
+
bannerUrl: string | null;
|
92
110
|
folderId: string | null;
|
93
111
|
tagAssistedId: string;
|
94
112
|
tagConfirmedId: string;
|
95
113
|
supraEventId: string | null;
|
96
114
|
}, {
|
115
|
+
description: string | null;
|
97
116
|
location: string;
|
98
117
|
id: string;
|
99
118
|
name: string;
|
@@ -103,6 +122,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
103
122
|
created_at: Date;
|
104
123
|
updated_at: Date;
|
105
124
|
active: boolean;
|
125
|
+
mainPictureUrl: string | null;
|
126
|
+
bannerUrl: string | null;
|
106
127
|
folderId: string | null;
|
107
128
|
tagAssistedId: string;
|
108
129
|
tagConfirmedId: string;
|
@@ -160,7 +181,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
160
181
|
isExclusive: boolean;
|
161
182
|
};
|
162
183
|
}>, "many">;
|
163
|
-
eventTickets: z.ZodArray<z.
|
184
|
+
eventTickets: z.ZodArray<z.ZodObject<Pick<{
|
164
185
|
id: z.ZodString;
|
165
186
|
amount: z.ZodNullable<z.ZodNumber>;
|
166
187
|
type: z.ZodNativeEnum<{
|
@@ -179,18 +200,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
179
200
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
180
201
|
amount: number | null;
|
181
202
|
price: number | null;
|
182
|
-
}>, {
|
183
|
-
id: string;
|
184
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
185
|
-
amount: number | null;
|
186
|
-
price: number | null;
|
187
|
-
}, {
|
188
|
-
id: string;
|
189
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
190
|
-
amount: number | null;
|
191
|
-
price: number | null;
|
192
203
|
}>, "many">;
|
193
204
|
}>, "strip", z.ZodTypeAny, {
|
205
|
+
description: string | null;
|
194
206
|
location: string;
|
195
207
|
id: string;
|
196
208
|
name: string;
|
@@ -211,11 +223,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
211
223
|
isExclusive: boolean;
|
212
224
|
};
|
213
225
|
}[];
|
226
|
+
mainPictureUrl: string | null;
|
227
|
+
bannerUrl: string | null;
|
214
228
|
folderId: string | null;
|
215
229
|
tagAssistedId: string;
|
216
230
|
tagConfirmedId: string;
|
217
231
|
supraEventId: string | null;
|
218
232
|
subEvents: {
|
233
|
+
description: string | null;
|
219
234
|
location: string;
|
220
235
|
id: string;
|
221
236
|
name: string;
|
@@ -225,6 +240,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
225
240
|
created_at: Date;
|
226
241
|
updated_at: Date;
|
227
242
|
active: boolean;
|
243
|
+
mainPictureUrl: string | null;
|
244
|
+
bannerUrl: string | null;
|
228
245
|
folderId: string | null;
|
229
246
|
tagAssistedId: string;
|
230
247
|
tagConfirmedId: string;
|
@@ -237,6 +254,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
237
254
|
price: number | null;
|
238
255
|
}[];
|
239
256
|
supraEvent: {
|
257
|
+
description: string | null;
|
240
258
|
location: string;
|
241
259
|
id: string;
|
242
260
|
name: string;
|
@@ -246,12 +264,15 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
246
264
|
created_at: Date;
|
247
265
|
updated_at: Date;
|
248
266
|
active: boolean;
|
267
|
+
mainPictureUrl: string | null;
|
268
|
+
bannerUrl: string | null;
|
249
269
|
folderId: string | null;
|
250
270
|
tagAssistedId: string;
|
251
271
|
tagConfirmedId: string;
|
252
272
|
supraEventId: string | null;
|
253
273
|
} | null;
|
254
274
|
}, {
|
275
|
+
description: string | null;
|
255
276
|
location: string;
|
256
277
|
id: string;
|
257
278
|
name: string;
|
@@ -272,11 +293,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
272
293
|
isExclusive: boolean;
|
273
294
|
};
|
274
295
|
}[];
|
296
|
+
mainPictureUrl: string | null;
|
297
|
+
bannerUrl: string | null;
|
275
298
|
folderId: string | null;
|
276
299
|
tagAssistedId: string;
|
277
300
|
tagConfirmedId: string;
|
278
301
|
supraEventId: string | null;
|
279
302
|
subEvents: {
|
303
|
+
description: string | null;
|
280
304
|
location: string;
|
281
305
|
id: string;
|
282
306
|
name: string;
|
@@ -286,6 +310,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
286
310
|
created_at: Date;
|
287
311
|
updated_at: Date;
|
288
312
|
active: boolean;
|
313
|
+
mainPictureUrl: string | null;
|
314
|
+
bannerUrl: string | null;
|
289
315
|
folderId: string | null;
|
290
316
|
tagAssistedId: string;
|
291
317
|
tagConfirmedId: string;
|
@@ -298,6 +324,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
298
324
|
price: number | null;
|
299
325
|
}[];
|
300
326
|
supraEvent: {
|
327
|
+
description: string | null;
|
301
328
|
location: string;
|
302
329
|
id: string;
|
303
330
|
name: string;
|
@@ -307,6 +334,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
307
334
|
created_at: Date;
|
308
335
|
updated_at: Date;
|
309
336
|
active: boolean;
|
337
|
+
mainPictureUrl: string | null;
|
338
|
+
bannerUrl: string | null;
|
310
339
|
folderId: string | null;
|
311
340
|
tagAssistedId: string;
|
312
341
|
tagConfirmedId: string;
|
@@ -320,6 +349,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
320
349
|
created_at: Date;
|
321
350
|
updated_at: Date;
|
322
351
|
events: {
|
352
|
+
description: string | null;
|
323
353
|
location: string;
|
324
354
|
id: string;
|
325
355
|
name: string;
|
@@ -340,11 +370,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
340
370
|
isExclusive: boolean;
|
341
371
|
};
|
342
372
|
}[];
|
373
|
+
mainPictureUrl: string | null;
|
374
|
+
bannerUrl: string | null;
|
343
375
|
folderId: string | null;
|
344
376
|
tagAssistedId: string;
|
345
377
|
tagConfirmedId: string;
|
346
378
|
supraEventId: string | null;
|
347
379
|
subEvents: {
|
380
|
+
description: string | null;
|
348
381
|
location: string;
|
349
382
|
id: string;
|
350
383
|
name: string;
|
@@ -354,6 +387,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
354
387
|
created_at: Date;
|
355
388
|
updated_at: Date;
|
356
389
|
active: boolean;
|
390
|
+
mainPictureUrl: string | null;
|
391
|
+
bannerUrl: string | null;
|
357
392
|
folderId: string | null;
|
358
393
|
tagAssistedId: string;
|
359
394
|
tagConfirmedId: string;
|
@@ -366,6 +401,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
366
401
|
price: number | null;
|
367
402
|
}[];
|
368
403
|
supraEvent: {
|
404
|
+
description: string | null;
|
369
405
|
location: string;
|
370
406
|
id: string;
|
371
407
|
name: string;
|
@@ -375,6 +411,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
375
411
|
created_at: Date;
|
376
412
|
updated_at: Date;
|
377
413
|
active: boolean;
|
414
|
+
mainPictureUrl: string | null;
|
415
|
+
bannerUrl: string | null;
|
378
416
|
folderId: string | null;
|
379
417
|
tagAssistedId: string;
|
380
418
|
tagConfirmedId: string;
|
@@ -388,6 +426,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
388
426
|
created_at: Date;
|
389
427
|
updated_at: Date;
|
390
428
|
events: {
|
429
|
+
description: string | null;
|
391
430
|
location: string;
|
392
431
|
id: string;
|
393
432
|
name: string;
|
@@ -408,11 +447,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
408
447
|
isExclusive: boolean;
|
409
448
|
};
|
410
449
|
}[];
|
450
|
+
mainPictureUrl: string | null;
|
451
|
+
bannerUrl: string | null;
|
411
452
|
folderId: string | null;
|
412
453
|
tagAssistedId: string;
|
413
454
|
tagConfirmedId: string;
|
414
455
|
supraEventId: string | null;
|
415
456
|
subEvents: {
|
457
|
+
description: string | null;
|
416
458
|
location: string;
|
417
459
|
id: string;
|
418
460
|
name: string;
|
@@ -422,6 +464,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
422
464
|
created_at: Date;
|
423
465
|
updated_at: Date;
|
424
466
|
active: boolean;
|
467
|
+
mainPictureUrl: string | null;
|
468
|
+
bannerUrl: string | null;
|
425
469
|
folderId: string | null;
|
426
470
|
tagAssistedId: string;
|
427
471
|
tagConfirmedId: string;
|
@@ -434,6 +478,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
434
478
|
price: number | null;
|
435
479
|
}[];
|
436
480
|
supraEvent: {
|
481
|
+
description: string | null;
|
437
482
|
location: string;
|
438
483
|
id: string;
|
439
484
|
name: string;
|
@@ -443,6 +488,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
443
488
|
created_at: Date;
|
444
489
|
updated_at: Date;
|
445
490
|
active: boolean;
|
491
|
+
mainPictureUrl: string | null;
|
492
|
+
bannerUrl: string | null;
|
446
493
|
folderId: string | null;
|
447
494
|
tagAssistedId: string;
|
448
495
|
tagConfirmedId: string;
|
@@ -457,6 +504,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
457
504
|
startingDate: z.ZodDate;
|
458
505
|
endingDate: z.ZodDate;
|
459
506
|
location: z.ZodString;
|
507
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
508
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
509
|
+
description: z.ZodNullable<z.ZodString>;
|
460
510
|
folderId: z.ZodNullable<z.ZodString>;
|
461
511
|
tagAssistedId: z.ZodString;
|
462
512
|
tagConfirmedId: z.ZodString;
|
@@ -472,6 +522,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
472
522
|
startingDate: z.ZodDate;
|
473
523
|
endingDate: z.ZodDate;
|
474
524
|
location: z.ZodString;
|
525
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
526
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
527
|
+
description: z.ZodNullable<z.ZodString>;
|
475
528
|
folderId: z.ZodNullable<z.ZodString>;
|
476
529
|
tagAssistedId: z.ZodString;
|
477
530
|
tagConfirmedId: z.ZodString;
|
@@ -480,6 +533,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
480
533
|
created_at: z.ZodDate;
|
481
534
|
updated_at: z.ZodDate;
|
482
535
|
}, "strip", z.ZodTypeAny, {
|
536
|
+
description: string | null;
|
483
537
|
location: string;
|
484
538
|
id: string;
|
485
539
|
name: string;
|
@@ -489,11 +543,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
489
543
|
created_at: Date;
|
490
544
|
updated_at: Date;
|
491
545
|
active: boolean;
|
546
|
+
mainPictureUrl: string | null;
|
547
|
+
bannerUrl: string | null;
|
492
548
|
folderId: string | null;
|
493
549
|
tagAssistedId: string;
|
494
550
|
tagConfirmedId: string;
|
495
551
|
supraEventId: string | null;
|
496
552
|
}, {
|
553
|
+
description: string | null;
|
497
554
|
location: string;
|
498
555
|
id: string;
|
499
556
|
name: string;
|
@@ -503,6 +560,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
503
560
|
created_at: Date;
|
504
561
|
updated_at: Date;
|
505
562
|
active: boolean;
|
563
|
+
mainPictureUrl: string | null;
|
564
|
+
bannerUrl: string | null;
|
506
565
|
folderId: string | null;
|
507
566
|
tagAssistedId: string;
|
508
567
|
tagConfirmedId: string;
|
@@ -515,6 +574,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
515
574
|
startingDate: z.ZodDate;
|
516
575
|
endingDate: z.ZodDate;
|
517
576
|
location: z.ZodString;
|
577
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
578
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
579
|
+
description: z.ZodNullable<z.ZodString>;
|
518
580
|
folderId: z.ZodNullable<z.ZodString>;
|
519
581
|
tagAssistedId: z.ZodString;
|
520
582
|
tagConfirmedId: z.ZodString;
|
@@ -523,6 +585,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
523
585
|
created_at: z.ZodDate;
|
524
586
|
updated_at: z.ZodDate;
|
525
587
|
}, "strip", z.ZodTypeAny, {
|
588
|
+
description: string | null;
|
526
589
|
location: string;
|
527
590
|
id: string;
|
528
591
|
name: string;
|
@@ -532,11 +595,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
532
595
|
created_at: Date;
|
533
596
|
updated_at: Date;
|
534
597
|
active: boolean;
|
598
|
+
mainPictureUrl: string | null;
|
599
|
+
bannerUrl: string | null;
|
535
600
|
folderId: string | null;
|
536
601
|
tagAssistedId: string;
|
537
602
|
tagConfirmedId: string;
|
538
603
|
supraEventId: string | null;
|
539
604
|
}, {
|
605
|
+
description: string | null;
|
540
606
|
location: string;
|
541
607
|
id: string;
|
542
608
|
name: string;
|
@@ -546,6 +612,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
546
612
|
created_at: Date;
|
547
613
|
updated_at: Date;
|
548
614
|
active: boolean;
|
615
|
+
mainPictureUrl: string | null;
|
616
|
+
bannerUrl: string | null;
|
549
617
|
folderId: string | null;
|
550
618
|
tagAssistedId: string;
|
551
619
|
tagConfirmedId: string;
|
@@ -603,7 +671,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
603
671
|
isExclusive: boolean;
|
604
672
|
};
|
605
673
|
}>, "many">;
|
606
|
-
eventTickets: z.ZodArray<z.
|
674
|
+
eventTickets: z.ZodArray<z.ZodObject<Pick<{
|
607
675
|
id: z.ZodString;
|
608
676
|
amount: z.ZodNullable<z.ZodNumber>;
|
609
677
|
type: z.ZodNativeEnum<{
|
@@ -622,18 +690,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
622
690
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
623
691
|
amount: number | null;
|
624
692
|
price: number | null;
|
625
|
-
}>, {
|
626
|
-
id: string;
|
627
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
628
|
-
amount: number | null;
|
629
|
-
price: number | null;
|
630
|
-
}, {
|
631
|
-
id: string;
|
632
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
633
|
-
amount: number | null;
|
634
|
-
price: number | null;
|
635
693
|
}>, "many">;
|
636
694
|
}>, "strip", z.ZodTypeAny, {
|
695
|
+
description: string | null;
|
637
696
|
location: string;
|
638
697
|
id: string;
|
639
698
|
name: string;
|
@@ -654,11 +713,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
654
713
|
isExclusive: boolean;
|
655
714
|
};
|
656
715
|
}[];
|
716
|
+
mainPictureUrl: string | null;
|
717
|
+
bannerUrl: string | null;
|
657
718
|
folderId: string | null;
|
658
719
|
tagAssistedId: string;
|
659
720
|
tagConfirmedId: string;
|
660
721
|
supraEventId: string | null;
|
661
722
|
subEvents: {
|
723
|
+
description: string | null;
|
662
724
|
location: string;
|
663
725
|
id: string;
|
664
726
|
name: string;
|
@@ -668,6 +730,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
668
730
|
created_at: Date;
|
669
731
|
updated_at: Date;
|
670
732
|
active: boolean;
|
733
|
+
mainPictureUrl: string | null;
|
734
|
+
bannerUrl: string | null;
|
671
735
|
folderId: string | null;
|
672
736
|
tagAssistedId: string;
|
673
737
|
tagConfirmedId: string;
|
@@ -680,6 +744,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
680
744
|
price: number | null;
|
681
745
|
}[];
|
682
746
|
supraEvent: {
|
747
|
+
description: string | null;
|
683
748
|
location: string;
|
684
749
|
id: string;
|
685
750
|
name: string;
|
@@ -689,12 +754,15 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
689
754
|
created_at: Date;
|
690
755
|
updated_at: Date;
|
691
756
|
active: boolean;
|
757
|
+
mainPictureUrl: string | null;
|
758
|
+
bannerUrl: string | null;
|
692
759
|
folderId: string | null;
|
693
760
|
tagAssistedId: string;
|
694
761
|
tagConfirmedId: string;
|
695
762
|
supraEventId: string | null;
|
696
763
|
} | null;
|
697
764
|
}, {
|
765
|
+
description: string | null;
|
698
766
|
location: string;
|
699
767
|
id: string;
|
700
768
|
name: string;
|
@@ -715,11 +783,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
715
783
|
isExclusive: boolean;
|
716
784
|
};
|
717
785
|
}[];
|
786
|
+
mainPictureUrl: string | null;
|
787
|
+
bannerUrl: string | null;
|
718
788
|
folderId: string | null;
|
719
789
|
tagAssistedId: string;
|
720
790
|
tagConfirmedId: string;
|
721
791
|
supraEventId: string | null;
|
722
792
|
subEvents: {
|
793
|
+
description: string | null;
|
723
794
|
location: string;
|
724
795
|
id: string;
|
725
796
|
name: string;
|
@@ -729,6 +800,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
729
800
|
created_at: Date;
|
730
801
|
updated_at: Date;
|
731
802
|
active: boolean;
|
803
|
+
mainPictureUrl: string | null;
|
804
|
+
bannerUrl: string | null;
|
732
805
|
folderId: string | null;
|
733
806
|
tagAssistedId: string;
|
734
807
|
tagConfirmedId: string;
|
@@ -741,6 +814,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
741
814
|
price: number | null;
|
742
815
|
}[];
|
743
816
|
supraEvent: {
|
817
|
+
description: string | null;
|
744
818
|
location: string;
|
745
819
|
id: string;
|
746
820
|
name: string;
|
@@ -750,6 +824,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
750
824
|
created_at: Date;
|
751
825
|
updated_at: Date;
|
752
826
|
active: boolean;
|
827
|
+
mainPictureUrl: string | null;
|
828
|
+
bannerUrl: string | null;
|
753
829
|
folderId: string | null;
|
754
830
|
tagAssistedId: string;
|
755
831
|
tagConfirmedId: string;
|
@@ -764,6 +840,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
764
840
|
created_at: Date;
|
765
841
|
updated_at: Date;
|
766
842
|
events: {
|
843
|
+
description: string | null;
|
767
844
|
location: string;
|
768
845
|
id: string;
|
769
846
|
name: string;
|
@@ -784,11 +861,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
784
861
|
isExclusive: boolean;
|
785
862
|
};
|
786
863
|
}[];
|
864
|
+
mainPictureUrl: string | null;
|
865
|
+
bannerUrl: string | null;
|
787
866
|
folderId: string | null;
|
788
867
|
tagAssistedId: string;
|
789
868
|
tagConfirmedId: string;
|
790
869
|
supraEventId: string | null;
|
791
870
|
subEvents: {
|
871
|
+
description: string | null;
|
792
872
|
location: string;
|
793
873
|
id: string;
|
794
874
|
name: string;
|
@@ -798,6 +878,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
798
878
|
created_at: Date;
|
799
879
|
updated_at: Date;
|
800
880
|
active: boolean;
|
881
|
+
mainPictureUrl: string | null;
|
882
|
+
bannerUrl: string | null;
|
801
883
|
folderId: string | null;
|
802
884
|
tagAssistedId: string;
|
803
885
|
tagConfirmedId: string;
|
@@ -810,6 +892,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
810
892
|
price: number | null;
|
811
893
|
}[];
|
812
894
|
supraEvent: {
|
895
|
+
description: string | null;
|
813
896
|
location: string;
|
814
897
|
id: string;
|
815
898
|
name: string;
|
@@ -819,6 +902,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
819
902
|
created_at: Date;
|
820
903
|
updated_at: Date;
|
821
904
|
active: boolean;
|
905
|
+
mainPictureUrl: string | null;
|
906
|
+
bannerUrl: string | null;
|
822
907
|
folderId: string | null;
|
823
908
|
tagAssistedId: string;
|
824
909
|
tagConfirmedId: string;
|
@@ -827,6 +912,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
827
912
|
}[];
|
828
913
|
}[];
|
829
914
|
withoutFolder: {
|
915
|
+
description: string | null;
|
830
916
|
location: string;
|
831
917
|
id: string;
|
832
918
|
name: string;
|
@@ -847,11 +933,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
847
933
|
isExclusive: boolean;
|
848
934
|
};
|
849
935
|
}[];
|
936
|
+
mainPictureUrl: string | null;
|
937
|
+
bannerUrl: string | null;
|
850
938
|
folderId: string | null;
|
851
939
|
tagAssistedId: string;
|
852
940
|
tagConfirmedId: string;
|
853
941
|
supraEventId: string | null;
|
854
942
|
subEvents: {
|
943
|
+
description: string | null;
|
855
944
|
location: string;
|
856
945
|
id: string;
|
857
946
|
name: string;
|
@@ -861,6 +950,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
861
950
|
created_at: Date;
|
862
951
|
updated_at: Date;
|
863
952
|
active: boolean;
|
953
|
+
mainPictureUrl: string | null;
|
954
|
+
bannerUrl: string | null;
|
864
955
|
folderId: string | null;
|
865
956
|
tagAssistedId: string;
|
866
957
|
tagConfirmedId: string;
|
@@ -873,6 +964,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
873
964
|
price: number | null;
|
874
965
|
}[];
|
875
966
|
supraEvent: {
|
967
|
+
description: string | null;
|
876
968
|
location: string;
|
877
969
|
id: string;
|
878
970
|
name: string;
|
@@ -882,6 +974,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
882
974
|
created_at: Date;
|
883
975
|
updated_at: Date;
|
884
976
|
active: boolean;
|
977
|
+
mainPictureUrl: string | null;
|
978
|
+
bannerUrl: string | null;
|
885
979
|
folderId: string | null;
|
886
980
|
tagAssistedId: string;
|
887
981
|
tagConfirmedId: string;
|
@@ -896,6 +990,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
896
990
|
created_at: Date;
|
897
991
|
updated_at: Date;
|
898
992
|
events: {
|
993
|
+
description: string | null;
|
899
994
|
location: string;
|
900
995
|
id: string;
|
901
996
|
name: string;
|
@@ -916,11 +1011,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
916
1011
|
isExclusive: boolean;
|
917
1012
|
};
|
918
1013
|
}[];
|
1014
|
+
mainPictureUrl: string | null;
|
1015
|
+
bannerUrl: string | null;
|
919
1016
|
folderId: string | null;
|
920
1017
|
tagAssistedId: string;
|
921
1018
|
tagConfirmedId: string;
|
922
1019
|
supraEventId: string | null;
|
923
1020
|
subEvents: {
|
1021
|
+
description: string | null;
|
924
1022
|
location: string;
|
925
1023
|
id: string;
|
926
1024
|
name: string;
|
@@ -930,6 +1028,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
930
1028
|
created_at: Date;
|
931
1029
|
updated_at: Date;
|
932
1030
|
active: boolean;
|
1031
|
+
mainPictureUrl: string | null;
|
1032
|
+
bannerUrl: string | null;
|
933
1033
|
folderId: string | null;
|
934
1034
|
tagAssistedId: string;
|
935
1035
|
tagConfirmedId: string;
|
@@ -942,6 +1042,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
942
1042
|
price: number | null;
|
943
1043
|
}[];
|
944
1044
|
supraEvent: {
|
1045
|
+
description: string | null;
|
945
1046
|
location: string;
|
946
1047
|
id: string;
|
947
1048
|
name: string;
|
@@ -951,6 +1052,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
951
1052
|
created_at: Date;
|
952
1053
|
updated_at: Date;
|
953
1054
|
active: boolean;
|
1055
|
+
mainPictureUrl: string | null;
|
1056
|
+
bannerUrl: string | null;
|
954
1057
|
folderId: string | null;
|
955
1058
|
tagAssistedId: string;
|
956
1059
|
tagConfirmedId: string;
|
@@ -959,6 +1062,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
959
1062
|
}[];
|
960
1063
|
}[];
|
961
1064
|
withoutFolder: {
|
1065
|
+
description: string | null;
|
962
1066
|
location: string;
|
963
1067
|
id: string;
|
964
1068
|
name: string;
|
@@ -979,11 +1083,14 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
979
1083
|
isExclusive: boolean;
|
980
1084
|
};
|
981
1085
|
}[];
|
1086
|
+
mainPictureUrl: string | null;
|
1087
|
+
bannerUrl: string | null;
|
982
1088
|
folderId: string | null;
|
983
1089
|
tagAssistedId: string;
|
984
1090
|
tagConfirmedId: string;
|
985
1091
|
supraEventId: string | null;
|
986
1092
|
subEvents: {
|
1093
|
+
description: string | null;
|
987
1094
|
location: string;
|
988
1095
|
id: string;
|
989
1096
|
name: string;
|
@@ -993,6 +1100,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
993
1100
|
created_at: Date;
|
994
1101
|
updated_at: Date;
|
995
1102
|
active: boolean;
|
1103
|
+
mainPictureUrl: string | null;
|
1104
|
+
bannerUrl: string | null;
|
996
1105
|
folderId: string | null;
|
997
1106
|
tagAssistedId: string;
|
998
1107
|
tagConfirmedId: string;
|
@@ -1005,6 +1114,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1005
1114
|
price: number | null;
|
1006
1115
|
}[];
|
1007
1116
|
supraEvent: {
|
1117
|
+
description: string | null;
|
1008
1118
|
location: string;
|
1009
1119
|
id: string;
|
1010
1120
|
name: string;
|
@@ -1014,6 +1124,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1014
1124
|
created_at: Date;
|
1015
1125
|
updated_at: Date;
|
1016
1126
|
active: boolean;
|
1127
|
+
mainPictureUrl: string | null;
|
1128
|
+
bannerUrl: string | null;
|
1017
1129
|
folderId: string | null;
|
1018
1130
|
tagAssistedId: string;
|
1019
1131
|
tagConfirmedId: string;
|
@@ -1035,6 +1147,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1035
1147
|
startingDate: z.ZodString;
|
1036
1148
|
endingDate: z.ZodString;
|
1037
1149
|
location: z.ZodString;
|
1150
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1151
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1152
|
+
description: z.ZodNullable<z.ZodString>;
|
1038
1153
|
folderId: z.ZodNullable<z.ZodString>;
|
1039
1154
|
tagAssistedId: z.ZodString;
|
1040
1155
|
tagConfirmedId: z.ZodString;
|
@@ -1049,6 +1164,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1049
1164
|
startingDate: z.ZodString;
|
1050
1165
|
endingDate: z.ZodString;
|
1051
1166
|
location: z.ZodString;
|
1167
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1168
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1169
|
+
description: z.ZodNullable<z.ZodString>;
|
1052
1170
|
folderId: z.ZodNullable<z.ZodString>;
|
1053
1171
|
tagAssistedId: z.ZodString;
|
1054
1172
|
tagConfirmedId: z.ZodString;
|
@@ -1057,6 +1175,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1057
1175
|
created_at: z.ZodString;
|
1058
1176
|
updated_at: z.ZodString;
|
1059
1177
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1178
|
+
description: string | null;
|
1060
1179
|
location: string;
|
1061
1180
|
id: string;
|
1062
1181
|
name: string;
|
@@ -1066,11 +1185,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1066
1185
|
created_at: string;
|
1067
1186
|
updated_at: string;
|
1068
1187
|
active: boolean;
|
1188
|
+
mainPictureUrl: string | null;
|
1189
|
+
bannerUrl: string | null;
|
1069
1190
|
folderId: string | null;
|
1070
1191
|
tagAssistedId: string;
|
1071
1192
|
tagConfirmedId: string;
|
1072
1193
|
supraEventId: string | null;
|
1073
1194
|
}, {
|
1195
|
+
description: string | null;
|
1074
1196
|
location: string;
|
1075
1197
|
id: string;
|
1076
1198
|
name: string;
|
@@ -1080,6 +1202,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1080
1202
|
created_at: string;
|
1081
1203
|
updated_at: string;
|
1082
1204
|
active: boolean;
|
1205
|
+
mainPictureUrl: string | null;
|
1206
|
+
bannerUrl: string | null;
|
1083
1207
|
folderId: string | null;
|
1084
1208
|
tagAssistedId: string;
|
1085
1209
|
tagConfirmedId: string;
|
@@ -1092,6 +1216,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1092
1216
|
startingDate: z.ZodString;
|
1093
1217
|
endingDate: z.ZodString;
|
1094
1218
|
location: z.ZodString;
|
1219
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1220
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1221
|
+
description: z.ZodNullable<z.ZodString>;
|
1095
1222
|
folderId: z.ZodNullable<z.ZodString>;
|
1096
1223
|
tagAssistedId: z.ZodString;
|
1097
1224
|
tagConfirmedId: z.ZodString;
|
@@ -1100,6 +1227,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1100
1227
|
created_at: z.ZodString;
|
1101
1228
|
updated_at: z.ZodString;
|
1102
1229
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1230
|
+
description: string | null;
|
1103
1231
|
location: string;
|
1104
1232
|
id: string;
|
1105
1233
|
name: string;
|
@@ -1109,11 +1237,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1109
1237
|
created_at: string;
|
1110
1238
|
updated_at: string;
|
1111
1239
|
active: boolean;
|
1240
|
+
mainPictureUrl: string | null;
|
1241
|
+
bannerUrl: string | null;
|
1112
1242
|
folderId: string | null;
|
1113
1243
|
tagAssistedId: string;
|
1114
1244
|
tagConfirmedId: string;
|
1115
1245
|
supraEventId: string | null;
|
1116
1246
|
}, {
|
1247
|
+
description: string | null;
|
1117
1248
|
location: string;
|
1118
1249
|
id: string;
|
1119
1250
|
name: string;
|
@@ -1123,6 +1254,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1123
1254
|
created_at: string;
|
1124
1255
|
updated_at: string;
|
1125
1256
|
active: boolean;
|
1257
|
+
mainPictureUrl: string | null;
|
1258
|
+
bannerUrl: string | null;
|
1126
1259
|
folderId: string | null;
|
1127
1260
|
tagAssistedId: string;
|
1128
1261
|
tagConfirmedId: string;
|
@@ -1174,26 +1307,16 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1174
1307
|
isExclusive: boolean;
|
1175
1308
|
};
|
1176
1309
|
}>, "many">;
|
1177
|
-
eventTickets: z.ZodArray<z.
|
1310
|
+
eventTickets: z.ZodArray<z.ZodObject<{
|
1178
1311
|
id: z.ZodString;
|
1179
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
1180
1312
|
type: z.ZodNativeEnum<{
|
1181
1313
|
PARTICIPANT: "PARTICIPANT";
|
1182
1314
|
STAFF: "STAFF";
|
1183
1315
|
SPECTATOR: "SPECTATOR";
|
1184
1316
|
}>;
|
1317
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
1185
1318
|
price: z.ZodNullable<z.ZodNumber>;
|
1186
|
-
},
|
1187
|
-
id: string;
|
1188
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1189
|
-
amount: number | null;
|
1190
|
-
price: number | null;
|
1191
|
-
}, {
|
1192
|
-
id: string;
|
1193
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1194
|
-
amount: number | null;
|
1195
|
-
price: number | null;
|
1196
|
-
}>, {
|
1319
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1197
1320
|
id: string;
|
1198
1321
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1199
1322
|
amount: number | null;
|
@@ -1205,6 +1328,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1205
1328
|
price: number | null;
|
1206
1329
|
}>, "many">;
|
1207
1330
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1331
|
+
description: string | null;
|
1208
1332
|
location: string;
|
1209
1333
|
id: string;
|
1210
1334
|
name: string;
|
@@ -1225,11 +1349,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1225
1349
|
isExclusive: boolean;
|
1226
1350
|
};
|
1227
1351
|
}[];
|
1352
|
+
mainPictureUrl: string | null;
|
1353
|
+
bannerUrl: string | null;
|
1228
1354
|
folderId: string | null;
|
1229
1355
|
tagAssistedId: string;
|
1230
1356
|
tagConfirmedId: string;
|
1231
1357
|
supraEventId: string | null;
|
1232
1358
|
subEvents: {
|
1359
|
+
description: string | null;
|
1233
1360
|
location: string;
|
1234
1361
|
id: string;
|
1235
1362
|
name: string;
|
@@ -1239,6 +1366,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1239
1366
|
created_at: string;
|
1240
1367
|
updated_at: string;
|
1241
1368
|
active: boolean;
|
1369
|
+
mainPictureUrl: string | null;
|
1370
|
+
bannerUrl: string | null;
|
1242
1371
|
folderId: string | null;
|
1243
1372
|
tagAssistedId: string;
|
1244
1373
|
tagConfirmedId: string;
|
@@ -1251,6 +1380,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1251
1380
|
price: number | null;
|
1252
1381
|
}[];
|
1253
1382
|
supraEvent: {
|
1383
|
+
description: string | null;
|
1254
1384
|
location: string;
|
1255
1385
|
id: string;
|
1256
1386
|
name: string;
|
@@ -1260,12 +1390,15 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1260
1390
|
created_at: string;
|
1261
1391
|
updated_at: string;
|
1262
1392
|
active: boolean;
|
1393
|
+
mainPictureUrl: string | null;
|
1394
|
+
bannerUrl: string | null;
|
1263
1395
|
folderId: string | null;
|
1264
1396
|
tagAssistedId: string;
|
1265
1397
|
tagConfirmedId: string;
|
1266
1398
|
supraEventId: string | null;
|
1267
1399
|
} | null;
|
1268
1400
|
}, {
|
1401
|
+
description: string | null;
|
1269
1402
|
location: string;
|
1270
1403
|
id: string;
|
1271
1404
|
name: string;
|
@@ -1286,11 +1419,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1286
1419
|
isExclusive: boolean;
|
1287
1420
|
};
|
1288
1421
|
}[];
|
1422
|
+
mainPictureUrl: string | null;
|
1423
|
+
bannerUrl: string | null;
|
1289
1424
|
folderId: string | null;
|
1290
1425
|
tagAssistedId: string;
|
1291
1426
|
tagConfirmedId: string;
|
1292
1427
|
supraEventId: string | null;
|
1293
1428
|
subEvents: {
|
1429
|
+
description: string | null;
|
1294
1430
|
location: string;
|
1295
1431
|
id: string;
|
1296
1432
|
name: string;
|
@@ -1300,6 +1436,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1300
1436
|
created_at: string;
|
1301
1437
|
updated_at: string;
|
1302
1438
|
active: boolean;
|
1439
|
+
mainPictureUrl: string | null;
|
1440
|
+
bannerUrl: string | null;
|
1303
1441
|
folderId: string | null;
|
1304
1442
|
tagAssistedId: string;
|
1305
1443
|
tagConfirmedId: string;
|
@@ -1312,6 +1450,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1312
1450
|
price: number | null;
|
1313
1451
|
}[];
|
1314
1452
|
supraEvent: {
|
1453
|
+
description: string | null;
|
1315
1454
|
location: string;
|
1316
1455
|
id: string;
|
1317
1456
|
name: string;
|
@@ -1321,6 +1460,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1321
1460
|
created_at: string;
|
1322
1461
|
updated_at: string;
|
1323
1462
|
active: boolean;
|
1463
|
+
mainPictureUrl: string | null;
|
1464
|
+
bannerUrl: string | null;
|
1324
1465
|
folderId: string | null;
|
1325
1466
|
tagAssistedId: string;
|
1326
1467
|
tagConfirmedId: string;
|
@@ -1334,6 +1475,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1334
1475
|
created_at: string;
|
1335
1476
|
updated_at: string;
|
1336
1477
|
events: {
|
1478
|
+
description: string | null;
|
1337
1479
|
location: string;
|
1338
1480
|
id: string;
|
1339
1481
|
name: string;
|
@@ -1354,11 +1496,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1354
1496
|
isExclusive: boolean;
|
1355
1497
|
};
|
1356
1498
|
}[];
|
1499
|
+
mainPictureUrl: string | null;
|
1500
|
+
bannerUrl: string | null;
|
1357
1501
|
folderId: string | null;
|
1358
1502
|
tagAssistedId: string;
|
1359
1503
|
tagConfirmedId: string;
|
1360
1504
|
supraEventId: string | null;
|
1361
1505
|
subEvents: {
|
1506
|
+
description: string | null;
|
1362
1507
|
location: string;
|
1363
1508
|
id: string;
|
1364
1509
|
name: string;
|
@@ -1368,6 +1513,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1368
1513
|
created_at: string;
|
1369
1514
|
updated_at: string;
|
1370
1515
|
active: boolean;
|
1516
|
+
mainPictureUrl: string | null;
|
1517
|
+
bannerUrl: string | null;
|
1371
1518
|
folderId: string | null;
|
1372
1519
|
tagAssistedId: string;
|
1373
1520
|
tagConfirmedId: string;
|
@@ -1380,6 +1527,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1380
1527
|
price: number | null;
|
1381
1528
|
}[];
|
1382
1529
|
supraEvent: {
|
1530
|
+
description: string | null;
|
1383
1531
|
location: string;
|
1384
1532
|
id: string;
|
1385
1533
|
name: string;
|
@@ -1389,6 +1537,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1389
1537
|
created_at: string;
|
1390
1538
|
updated_at: string;
|
1391
1539
|
active: boolean;
|
1540
|
+
mainPictureUrl: string | null;
|
1541
|
+
bannerUrl: string | null;
|
1392
1542
|
folderId: string | null;
|
1393
1543
|
tagAssistedId: string;
|
1394
1544
|
tagConfirmedId: string;
|
@@ -1402,6 +1552,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1402
1552
|
created_at: string;
|
1403
1553
|
updated_at: string;
|
1404
1554
|
events: {
|
1555
|
+
description: string | null;
|
1405
1556
|
location: string;
|
1406
1557
|
id: string;
|
1407
1558
|
name: string;
|
@@ -1422,11 +1573,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1422
1573
|
isExclusive: boolean;
|
1423
1574
|
};
|
1424
1575
|
}[];
|
1576
|
+
mainPictureUrl: string | null;
|
1577
|
+
bannerUrl: string | null;
|
1425
1578
|
folderId: string | null;
|
1426
1579
|
tagAssistedId: string;
|
1427
1580
|
tagConfirmedId: string;
|
1428
1581
|
supraEventId: string | null;
|
1429
1582
|
subEvents: {
|
1583
|
+
description: string | null;
|
1430
1584
|
location: string;
|
1431
1585
|
id: string;
|
1432
1586
|
name: string;
|
@@ -1436,6 +1590,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1436
1590
|
created_at: string;
|
1437
1591
|
updated_at: string;
|
1438
1592
|
active: boolean;
|
1593
|
+
mainPictureUrl: string | null;
|
1594
|
+
bannerUrl: string | null;
|
1439
1595
|
folderId: string | null;
|
1440
1596
|
tagAssistedId: string;
|
1441
1597
|
tagConfirmedId: string;
|
@@ -1448,6 +1604,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1448
1604
|
price: number | null;
|
1449
1605
|
}[];
|
1450
1606
|
supraEvent: {
|
1607
|
+
description: string | null;
|
1451
1608
|
location: string;
|
1452
1609
|
id: string;
|
1453
1610
|
name: string;
|
@@ -1457,6 +1614,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1457
1614
|
created_at: string;
|
1458
1615
|
updated_at: string;
|
1459
1616
|
active: boolean;
|
1617
|
+
mainPictureUrl: string | null;
|
1618
|
+
bannerUrl: string | null;
|
1460
1619
|
folderId: string | null;
|
1461
1620
|
tagAssistedId: string;
|
1462
1621
|
tagConfirmedId: string;
|
@@ -1471,6 +1630,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1471
1630
|
startingDate: z.ZodString;
|
1472
1631
|
endingDate: z.ZodString;
|
1473
1632
|
location: z.ZodString;
|
1633
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1634
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1635
|
+
description: z.ZodNullable<z.ZodString>;
|
1474
1636
|
folderId: z.ZodNullable<z.ZodString>;
|
1475
1637
|
tagAssistedId: z.ZodString;
|
1476
1638
|
tagConfirmedId: z.ZodString;
|
@@ -1485,6 +1647,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1485
1647
|
startingDate: z.ZodString;
|
1486
1648
|
endingDate: z.ZodString;
|
1487
1649
|
location: z.ZodString;
|
1650
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1651
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1652
|
+
description: z.ZodNullable<z.ZodString>;
|
1488
1653
|
folderId: z.ZodNullable<z.ZodString>;
|
1489
1654
|
tagAssistedId: z.ZodString;
|
1490
1655
|
tagConfirmedId: z.ZodString;
|
@@ -1493,6 +1658,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1493
1658
|
created_at: z.ZodString;
|
1494
1659
|
updated_at: z.ZodString;
|
1495
1660
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1661
|
+
description: string | null;
|
1496
1662
|
location: string;
|
1497
1663
|
id: string;
|
1498
1664
|
name: string;
|
@@ -1502,11 +1668,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1502
1668
|
created_at: string;
|
1503
1669
|
updated_at: string;
|
1504
1670
|
active: boolean;
|
1671
|
+
mainPictureUrl: string | null;
|
1672
|
+
bannerUrl: string | null;
|
1505
1673
|
folderId: string | null;
|
1506
1674
|
tagAssistedId: string;
|
1507
1675
|
tagConfirmedId: string;
|
1508
1676
|
supraEventId: string | null;
|
1509
1677
|
}, {
|
1678
|
+
description: string | null;
|
1510
1679
|
location: string;
|
1511
1680
|
id: string;
|
1512
1681
|
name: string;
|
@@ -1516,6 +1685,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1516
1685
|
created_at: string;
|
1517
1686
|
updated_at: string;
|
1518
1687
|
active: boolean;
|
1688
|
+
mainPictureUrl: string | null;
|
1689
|
+
bannerUrl: string | null;
|
1519
1690
|
folderId: string | null;
|
1520
1691
|
tagAssistedId: string;
|
1521
1692
|
tagConfirmedId: string;
|
@@ -1528,6 +1699,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1528
1699
|
startingDate: z.ZodString;
|
1529
1700
|
endingDate: z.ZodString;
|
1530
1701
|
location: z.ZodString;
|
1702
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1703
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1704
|
+
description: z.ZodNullable<z.ZodString>;
|
1531
1705
|
folderId: z.ZodNullable<z.ZodString>;
|
1532
1706
|
tagAssistedId: z.ZodString;
|
1533
1707
|
tagConfirmedId: z.ZodString;
|
@@ -1536,6 +1710,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1536
1710
|
created_at: z.ZodString;
|
1537
1711
|
updated_at: z.ZodString;
|
1538
1712
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1713
|
+
description: string | null;
|
1539
1714
|
location: string;
|
1540
1715
|
id: string;
|
1541
1716
|
name: string;
|
@@ -1545,11 +1720,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1545
1720
|
created_at: string;
|
1546
1721
|
updated_at: string;
|
1547
1722
|
active: boolean;
|
1723
|
+
mainPictureUrl: string | null;
|
1724
|
+
bannerUrl: string | null;
|
1548
1725
|
folderId: string | null;
|
1549
1726
|
tagAssistedId: string;
|
1550
1727
|
tagConfirmedId: string;
|
1551
1728
|
supraEventId: string | null;
|
1552
1729
|
}, {
|
1730
|
+
description: string | null;
|
1553
1731
|
location: string;
|
1554
1732
|
id: string;
|
1555
1733
|
name: string;
|
@@ -1559,6 +1737,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1559
1737
|
created_at: string;
|
1560
1738
|
updated_at: string;
|
1561
1739
|
active: boolean;
|
1740
|
+
mainPictureUrl: string | null;
|
1741
|
+
bannerUrl: string | null;
|
1562
1742
|
folderId: string | null;
|
1563
1743
|
tagAssistedId: string;
|
1564
1744
|
tagConfirmedId: string;
|
@@ -1610,26 +1790,16 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1610
1790
|
isExclusive: boolean;
|
1611
1791
|
};
|
1612
1792
|
}>, "many">;
|
1613
|
-
eventTickets: z.ZodArray<z.
|
1793
|
+
eventTickets: z.ZodArray<z.ZodObject<{
|
1614
1794
|
id: z.ZodString;
|
1615
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
1616
1795
|
type: z.ZodNativeEnum<{
|
1617
1796
|
PARTICIPANT: "PARTICIPANT";
|
1618
1797
|
STAFF: "STAFF";
|
1619
1798
|
SPECTATOR: "SPECTATOR";
|
1620
1799
|
}>;
|
1800
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
1621
1801
|
price: z.ZodNullable<z.ZodNumber>;
|
1622
|
-
},
|
1623
|
-
id: string;
|
1624
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1625
|
-
amount: number | null;
|
1626
|
-
price: number | null;
|
1627
|
-
}, {
|
1628
|
-
id: string;
|
1629
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1630
|
-
amount: number | null;
|
1631
|
-
price: number | null;
|
1632
|
-
}>, {
|
1802
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1633
1803
|
id: string;
|
1634
1804
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1635
1805
|
amount: number | null;
|
@@ -1641,6 +1811,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1641
1811
|
price: number | null;
|
1642
1812
|
}>, "many">;
|
1643
1813
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1814
|
+
description: string | null;
|
1644
1815
|
location: string;
|
1645
1816
|
id: string;
|
1646
1817
|
name: string;
|
@@ -1661,11 +1832,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1661
1832
|
isExclusive: boolean;
|
1662
1833
|
};
|
1663
1834
|
}[];
|
1835
|
+
mainPictureUrl: string | null;
|
1836
|
+
bannerUrl: string | null;
|
1664
1837
|
folderId: string | null;
|
1665
1838
|
tagAssistedId: string;
|
1666
1839
|
tagConfirmedId: string;
|
1667
1840
|
supraEventId: string | null;
|
1668
1841
|
subEvents: {
|
1842
|
+
description: string | null;
|
1669
1843
|
location: string;
|
1670
1844
|
id: string;
|
1671
1845
|
name: string;
|
@@ -1675,6 +1849,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1675
1849
|
created_at: string;
|
1676
1850
|
updated_at: string;
|
1677
1851
|
active: boolean;
|
1852
|
+
mainPictureUrl: string | null;
|
1853
|
+
bannerUrl: string | null;
|
1678
1854
|
folderId: string | null;
|
1679
1855
|
tagAssistedId: string;
|
1680
1856
|
tagConfirmedId: string;
|
@@ -1687,6 +1863,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1687
1863
|
price: number | null;
|
1688
1864
|
}[];
|
1689
1865
|
supraEvent: {
|
1866
|
+
description: string | null;
|
1690
1867
|
location: string;
|
1691
1868
|
id: string;
|
1692
1869
|
name: string;
|
@@ -1696,12 +1873,15 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1696
1873
|
created_at: string;
|
1697
1874
|
updated_at: string;
|
1698
1875
|
active: boolean;
|
1876
|
+
mainPictureUrl: string | null;
|
1877
|
+
bannerUrl: string | null;
|
1699
1878
|
folderId: string | null;
|
1700
1879
|
tagAssistedId: string;
|
1701
1880
|
tagConfirmedId: string;
|
1702
1881
|
supraEventId: string | null;
|
1703
1882
|
} | null;
|
1704
1883
|
}, {
|
1884
|
+
description: string | null;
|
1705
1885
|
location: string;
|
1706
1886
|
id: string;
|
1707
1887
|
name: string;
|
@@ -1722,11 +1902,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1722
1902
|
isExclusive: boolean;
|
1723
1903
|
};
|
1724
1904
|
}[];
|
1905
|
+
mainPictureUrl: string | null;
|
1906
|
+
bannerUrl: string | null;
|
1725
1907
|
folderId: string | null;
|
1726
1908
|
tagAssistedId: string;
|
1727
1909
|
tagConfirmedId: string;
|
1728
1910
|
supraEventId: string | null;
|
1729
1911
|
subEvents: {
|
1912
|
+
description: string | null;
|
1730
1913
|
location: string;
|
1731
1914
|
id: string;
|
1732
1915
|
name: string;
|
@@ -1736,6 +1919,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1736
1919
|
created_at: string;
|
1737
1920
|
updated_at: string;
|
1738
1921
|
active: boolean;
|
1922
|
+
mainPictureUrl: string | null;
|
1923
|
+
bannerUrl: string | null;
|
1739
1924
|
folderId: string | null;
|
1740
1925
|
tagAssistedId: string;
|
1741
1926
|
tagConfirmedId: string;
|
@@ -1748,6 +1933,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1748
1933
|
price: number | null;
|
1749
1934
|
}[];
|
1750
1935
|
supraEvent: {
|
1936
|
+
description: string | null;
|
1751
1937
|
location: string;
|
1752
1938
|
id: string;
|
1753
1939
|
name: string;
|
@@ -1757,6 +1943,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1757
1943
|
created_at: string;
|
1758
1944
|
updated_at: string;
|
1759
1945
|
active: boolean;
|
1946
|
+
mainPictureUrl: string | null;
|
1947
|
+
bannerUrl: string | null;
|
1760
1948
|
folderId: string | null;
|
1761
1949
|
tagAssistedId: string;
|
1762
1950
|
tagConfirmedId: string;
|
@@ -1771,6 +1959,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1771
1959
|
created_at: string;
|
1772
1960
|
updated_at: string;
|
1773
1961
|
events: {
|
1962
|
+
description: string | null;
|
1774
1963
|
location: string;
|
1775
1964
|
id: string;
|
1776
1965
|
name: string;
|
@@ -1791,11 +1980,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1791
1980
|
isExclusive: boolean;
|
1792
1981
|
};
|
1793
1982
|
}[];
|
1983
|
+
mainPictureUrl: string | null;
|
1984
|
+
bannerUrl: string | null;
|
1794
1985
|
folderId: string | null;
|
1795
1986
|
tagAssistedId: string;
|
1796
1987
|
tagConfirmedId: string;
|
1797
1988
|
supraEventId: string | null;
|
1798
1989
|
subEvents: {
|
1990
|
+
description: string | null;
|
1799
1991
|
location: string;
|
1800
1992
|
id: string;
|
1801
1993
|
name: string;
|
@@ -1805,6 +1997,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1805
1997
|
created_at: string;
|
1806
1998
|
updated_at: string;
|
1807
1999
|
active: boolean;
|
2000
|
+
mainPictureUrl: string | null;
|
2001
|
+
bannerUrl: string | null;
|
1808
2002
|
folderId: string | null;
|
1809
2003
|
tagAssistedId: string;
|
1810
2004
|
tagConfirmedId: string;
|
@@ -1817,6 +2011,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1817
2011
|
price: number | null;
|
1818
2012
|
}[];
|
1819
2013
|
supraEvent: {
|
2014
|
+
description: string | null;
|
1820
2015
|
location: string;
|
1821
2016
|
id: string;
|
1822
2017
|
name: string;
|
@@ -1826,6 +2021,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1826
2021
|
created_at: string;
|
1827
2022
|
updated_at: string;
|
1828
2023
|
active: boolean;
|
2024
|
+
mainPictureUrl: string | null;
|
2025
|
+
bannerUrl: string | null;
|
1829
2026
|
folderId: string | null;
|
1830
2027
|
tagAssistedId: string;
|
1831
2028
|
tagConfirmedId: string;
|
@@ -1834,6 +2031,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1834
2031
|
}[];
|
1835
2032
|
}[];
|
1836
2033
|
withoutFolder: {
|
2034
|
+
description: string | null;
|
1837
2035
|
location: string;
|
1838
2036
|
id: string;
|
1839
2037
|
name: string;
|
@@ -1854,11 +2052,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1854
2052
|
isExclusive: boolean;
|
1855
2053
|
};
|
1856
2054
|
}[];
|
2055
|
+
mainPictureUrl: string | null;
|
2056
|
+
bannerUrl: string | null;
|
1857
2057
|
folderId: string | null;
|
1858
2058
|
tagAssistedId: string;
|
1859
2059
|
tagConfirmedId: string;
|
1860
2060
|
supraEventId: string | null;
|
1861
2061
|
subEvents: {
|
2062
|
+
description: string | null;
|
1862
2063
|
location: string;
|
1863
2064
|
id: string;
|
1864
2065
|
name: string;
|
@@ -1868,6 +2069,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1868
2069
|
created_at: string;
|
1869
2070
|
updated_at: string;
|
1870
2071
|
active: boolean;
|
2072
|
+
mainPictureUrl: string | null;
|
2073
|
+
bannerUrl: string | null;
|
1871
2074
|
folderId: string | null;
|
1872
2075
|
tagAssistedId: string;
|
1873
2076
|
tagConfirmedId: string;
|
@@ -1880,6 +2083,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1880
2083
|
price: number | null;
|
1881
2084
|
}[];
|
1882
2085
|
supraEvent: {
|
2086
|
+
description: string | null;
|
1883
2087
|
location: string;
|
1884
2088
|
id: string;
|
1885
2089
|
name: string;
|
@@ -1889,6 +2093,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1889
2093
|
created_at: string;
|
1890
2094
|
updated_at: string;
|
1891
2095
|
active: boolean;
|
2096
|
+
mainPictureUrl: string | null;
|
2097
|
+
bannerUrl: string | null;
|
1892
2098
|
folderId: string | null;
|
1893
2099
|
tagAssistedId: string;
|
1894
2100
|
tagConfirmedId: string;
|
@@ -1903,6 +2109,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1903
2109
|
created_at: string;
|
1904
2110
|
updated_at: string;
|
1905
2111
|
events: {
|
2112
|
+
description: string | null;
|
1906
2113
|
location: string;
|
1907
2114
|
id: string;
|
1908
2115
|
name: string;
|
@@ -1923,11 +2130,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1923
2130
|
isExclusive: boolean;
|
1924
2131
|
};
|
1925
2132
|
}[];
|
2133
|
+
mainPictureUrl: string | null;
|
2134
|
+
bannerUrl: string | null;
|
1926
2135
|
folderId: string | null;
|
1927
2136
|
tagAssistedId: string;
|
1928
2137
|
tagConfirmedId: string;
|
1929
2138
|
supraEventId: string | null;
|
1930
2139
|
subEvents: {
|
2140
|
+
description: string | null;
|
1931
2141
|
location: string;
|
1932
2142
|
id: string;
|
1933
2143
|
name: string;
|
@@ -1937,6 +2147,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1937
2147
|
created_at: string;
|
1938
2148
|
updated_at: string;
|
1939
2149
|
active: boolean;
|
2150
|
+
mainPictureUrl: string | null;
|
2151
|
+
bannerUrl: string | null;
|
1940
2152
|
folderId: string | null;
|
1941
2153
|
tagAssistedId: string;
|
1942
2154
|
tagConfirmedId: string;
|
@@ -1949,6 +2161,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1949
2161
|
price: number | null;
|
1950
2162
|
}[];
|
1951
2163
|
supraEvent: {
|
2164
|
+
description: string | null;
|
1952
2165
|
location: string;
|
1953
2166
|
id: string;
|
1954
2167
|
name: string;
|
@@ -1958,6 +2171,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1958
2171
|
created_at: string;
|
1959
2172
|
updated_at: string;
|
1960
2173
|
active: boolean;
|
2174
|
+
mainPictureUrl: string | null;
|
2175
|
+
bannerUrl: string | null;
|
1961
2176
|
folderId: string | null;
|
1962
2177
|
tagAssistedId: string;
|
1963
2178
|
tagConfirmedId: string;
|
@@ -1966,6 +2181,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1966
2181
|
}[];
|
1967
2182
|
}[];
|
1968
2183
|
withoutFolder: {
|
2184
|
+
description: string | null;
|
1969
2185
|
location: string;
|
1970
2186
|
id: string;
|
1971
2187
|
name: string;
|
@@ -1986,11 +2202,14 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1986
2202
|
isExclusive: boolean;
|
1987
2203
|
};
|
1988
2204
|
}[];
|
2205
|
+
mainPictureUrl: string | null;
|
2206
|
+
bannerUrl: string | null;
|
1989
2207
|
folderId: string | null;
|
1990
2208
|
tagAssistedId: string;
|
1991
2209
|
tagConfirmedId: string;
|
1992
2210
|
supraEventId: string | null;
|
1993
2211
|
subEvents: {
|
2212
|
+
description: string | null;
|
1994
2213
|
location: string;
|
1995
2214
|
id: string;
|
1996
2215
|
name: string;
|
@@ -2000,6 +2219,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2000
2219
|
created_at: string;
|
2001
2220
|
updated_at: string;
|
2002
2221
|
active: boolean;
|
2222
|
+
mainPictureUrl: string | null;
|
2223
|
+
bannerUrl: string | null;
|
2003
2224
|
folderId: string | null;
|
2004
2225
|
tagAssistedId: string;
|
2005
2226
|
tagConfirmedId: string;
|
@@ -2012,6 +2233,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2012
2233
|
price: number | null;
|
2013
2234
|
}[];
|
2014
2235
|
supraEvent: {
|
2236
|
+
description: string | null;
|
2015
2237
|
location: string;
|
2016
2238
|
id: string;
|
2017
2239
|
name: string;
|
@@ -2021,6 +2243,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2021
2243
|
created_at: string;
|
2022
2244
|
updated_at: string;
|
2023
2245
|
active: boolean;
|
2246
|
+
mainPictureUrl: string | null;
|
2247
|
+
bannerUrl: string | null;
|
2024
2248
|
folderId: string | null;
|
2025
2249
|
tagAssistedId: string;
|
2026
2250
|
tagConfirmedId: string;
|