expo-backend-types 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.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
@@ -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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
18
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
19
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
36
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
37
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
32
38
|
folderId: z.ZodNullable<z.ZodString>;
|
33
39
|
tagAssistedId: z.ZodString;
|
34
40
|
tagConfirmedId: z.ZodString;
|
@@ -43,9 +49,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
43
49
|
date: Date;
|
44
50
|
startingDate: Date;
|
45
51
|
endingDate: Date;
|
52
|
+
eventPictureUrl: string | null;
|
53
|
+
eventBannerUrl: string | null;
|
46
54
|
created_at: Date;
|
47
55
|
updated_at: Date;
|
48
56
|
active: boolean;
|
57
|
+
eventDescription: string | null;
|
49
58
|
folderId: string | null;
|
50
59
|
tagAssistedId: string;
|
51
60
|
tagConfirmedId: string;
|
@@ -57,9 +66,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
57
66
|
date: Date;
|
58
67
|
startingDate: Date;
|
59
68
|
endingDate: Date;
|
69
|
+
eventPictureUrl: string | null;
|
70
|
+
eventBannerUrl: string | null;
|
60
71
|
created_at: Date;
|
61
72
|
updated_at: Date;
|
62
73
|
active: boolean;
|
74
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
88
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
89
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
75
90
|
folderId: z.ZodNullable<z.ZodString>;
|
76
91
|
tagAssistedId: z.ZodString;
|
77
92
|
tagConfirmedId: z.ZodString;
|
@@ -86,9 +101,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
86
101
|
date: Date;
|
87
102
|
startingDate: Date;
|
88
103
|
endingDate: Date;
|
104
|
+
eventPictureUrl: string | null;
|
105
|
+
eventBannerUrl: string | null;
|
89
106
|
created_at: Date;
|
90
107
|
updated_at: Date;
|
91
108
|
active: boolean;
|
109
|
+
eventDescription: string | null;
|
92
110
|
folderId: string | null;
|
93
111
|
tagAssistedId: string;
|
94
112
|
tagConfirmedId: string;
|
@@ -100,9 +118,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
100
118
|
date: Date;
|
101
119
|
startingDate: Date;
|
102
120
|
endingDate: Date;
|
121
|
+
eventPictureUrl: string | null;
|
122
|
+
eventBannerUrl: string | null;
|
103
123
|
created_at: Date;
|
104
124
|
updated_at: Date;
|
105
125
|
active: boolean;
|
126
|
+
eventDescription: string | null;
|
106
127
|
folderId: string | null;
|
107
128
|
tagAssistedId: string;
|
108
129
|
tagConfirmedId: string;
|
@@ -187,6 +208,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
187
208
|
date: Date;
|
188
209
|
startingDate: Date;
|
189
210
|
endingDate: Date;
|
211
|
+
eventPictureUrl: string | null;
|
212
|
+
eventBannerUrl: string | null;
|
190
213
|
created_at: Date;
|
191
214
|
updated_at: Date;
|
192
215
|
active: boolean;
|
@@ -201,6 +224,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
201
224
|
isExclusive: boolean;
|
202
225
|
};
|
203
226
|
}[];
|
227
|
+
eventDescription: string | null;
|
204
228
|
folderId: string | null;
|
205
229
|
tagAssistedId: string;
|
206
230
|
tagConfirmedId: string;
|
@@ -212,9 +236,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
212
236
|
date: Date;
|
213
237
|
startingDate: Date;
|
214
238
|
endingDate: Date;
|
239
|
+
eventPictureUrl: string | null;
|
240
|
+
eventBannerUrl: string | null;
|
215
241
|
created_at: Date;
|
216
242
|
updated_at: Date;
|
217
243
|
active: boolean;
|
244
|
+
eventDescription: string | null;
|
218
245
|
folderId: string | null;
|
219
246
|
tagAssistedId: string;
|
220
247
|
tagConfirmedId: string;
|
@@ -233,9 +260,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
233
260
|
date: Date;
|
234
261
|
startingDate: Date;
|
235
262
|
endingDate: Date;
|
263
|
+
eventPictureUrl: string | null;
|
264
|
+
eventBannerUrl: string | null;
|
236
265
|
created_at: Date;
|
237
266
|
updated_at: Date;
|
238
267
|
active: boolean;
|
268
|
+
eventDescription: string | null;
|
239
269
|
folderId: string | null;
|
240
270
|
tagAssistedId: string;
|
241
271
|
tagConfirmedId: string;
|
@@ -248,6 +278,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
248
278
|
date: Date;
|
249
279
|
startingDate: Date;
|
250
280
|
endingDate: Date;
|
281
|
+
eventPictureUrl: string | null;
|
282
|
+
eventBannerUrl: string | null;
|
251
283
|
created_at: Date;
|
252
284
|
updated_at: Date;
|
253
285
|
active: boolean;
|
@@ -262,6 +294,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
262
294
|
isExclusive: boolean;
|
263
295
|
};
|
264
296
|
}[];
|
297
|
+
eventDescription: string | null;
|
265
298
|
folderId: string | null;
|
266
299
|
tagAssistedId: string;
|
267
300
|
tagConfirmedId: string;
|
@@ -273,9 +306,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
273
306
|
date: Date;
|
274
307
|
startingDate: Date;
|
275
308
|
endingDate: Date;
|
309
|
+
eventPictureUrl: string | null;
|
310
|
+
eventBannerUrl: string | null;
|
276
311
|
created_at: Date;
|
277
312
|
updated_at: Date;
|
278
313
|
active: boolean;
|
314
|
+
eventDescription: string | null;
|
279
315
|
folderId: string | null;
|
280
316
|
tagAssistedId: string;
|
281
317
|
tagConfirmedId: string;
|
@@ -294,9 +330,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
294
330
|
date: Date;
|
295
331
|
startingDate: Date;
|
296
332
|
endingDate: Date;
|
333
|
+
eventPictureUrl: string | null;
|
334
|
+
eventBannerUrl: string | null;
|
297
335
|
created_at: Date;
|
298
336
|
updated_at: Date;
|
299
337
|
active: boolean;
|
338
|
+
eventDescription: string | null;
|
300
339
|
folderId: string | null;
|
301
340
|
tagAssistedId: string;
|
302
341
|
tagConfirmedId: string;
|
@@ -316,6 +355,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
316
355
|
date: Date;
|
317
356
|
startingDate: Date;
|
318
357
|
endingDate: Date;
|
358
|
+
eventPictureUrl: string | null;
|
359
|
+
eventBannerUrl: string | null;
|
319
360
|
created_at: Date;
|
320
361
|
updated_at: Date;
|
321
362
|
active: boolean;
|
@@ -330,6 +371,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
330
371
|
isExclusive: boolean;
|
331
372
|
};
|
332
373
|
}[];
|
374
|
+
eventDescription: string | null;
|
333
375
|
folderId: string | null;
|
334
376
|
tagAssistedId: string;
|
335
377
|
tagConfirmedId: string;
|
@@ -341,9 +383,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
341
383
|
date: Date;
|
342
384
|
startingDate: Date;
|
343
385
|
endingDate: Date;
|
386
|
+
eventPictureUrl: string | null;
|
387
|
+
eventBannerUrl: string | null;
|
344
388
|
created_at: Date;
|
345
389
|
updated_at: Date;
|
346
390
|
active: boolean;
|
391
|
+
eventDescription: string | null;
|
347
392
|
folderId: string | null;
|
348
393
|
tagAssistedId: string;
|
349
394
|
tagConfirmedId: string;
|
@@ -362,9 +407,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
362
407
|
date: Date;
|
363
408
|
startingDate: Date;
|
364
409
|
endingDate: Date;
|
410
|
+
eventPictureUrl: string | null;
|
411
|
+
eventBannerUrl: string | null;
|
365
412
|
created_at: Date;
|
366
413
|
updated_at: Date;
|
367
414
|
active: boolean;
|
415
|
+
eventDescription: string | null;
|
368
416
|
folderId: string | null;
|
369
417
|
tagAssistedId: string;
|
370
418
|
tagConfirmedId: string;
|
@@ -384,6 +432,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
384
432
|
date: Date;
|
385
433
|
startingDate: Date;
|
386
434
|
endingDate: Date;
|
435
|
+
eventPictureUrl: string | null;
|
436
|
+
eventBannerUrl: string | null;
|
387
437
|
created_at: Date;
|
388
438
|
updated_at: Date;
|
389
439
|
active: boolean;
|
@@ -398,6 +448,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
398
448
|
isExclusive: boolean;
|
399
449
|
};
|
400
450
|
}[];
|
451
|
+
eventDescription: string | null;
|
401
452
|
folderId: string | null;
|
402
453
|
tagAssistedId: string;
|
403
454
|
tagConfirmedId: string;
|
@@ -409,9 +460,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
409
460
|
date: Date;
|
410
461
|
startingDate: Date;
|
411
462
|
endingDate: Date;
|
463
|
+
eventPictureUrl: string | null;
|
464
|
+
eventBannerUrl: string | null;
|
412
465
|
created_at: Date;
|
413
466
|
updated_at: Date;
|
414
467
|
active: boolean;
|
468
|
+
eventDescription: string | null;
|
415
469
|
folderId: string | null;
|
416
470
|
tagAssistedId: string;
|
417
471
|
tagConfirmedId: string;
|
@@ -430,9 +484,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
430
484
|
date: Date;
|
431
485
|
startingDate: Date;
|
432
486
|
endingDate: Date;
|
487
|
+
eventPictureUrl: string | null;
|
488
|
+
eventBannerUrl: string | null;
|
433
489
|
created_at: Date;
|
434
490
|
updated_at: Date;
|
435
491
|
active: boolean;
|
492
|
+
eventDescription: string | null;
|
436
493
|
folderId: string | null;
|
437
494
|
tagAssistedId: string;
|
438
495
|
tagConfirmedId: string;
|
@@ -447,6 +504,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
447
504
|
startingDate: z.ZodDate;
|
448
505
|
endingDate: z.ZodDate;
|
449
506
|
location: z.ZodString;
|
507
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
508
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
509
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
450
510
|
folderId: z.ZodNullable<z.ZodString>;
|
451
511
|
tagAssistedId: z.ZodString;
|
452
512
|
tagConfirmedId: z.ZodString;
|
@@ -462,6 +522,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
462
522
|
startingDate: z.ZodDate;
|
463
523
|
endingDate: z.ZodDate;
|
464
524
|
location: z.ZodString;
|
525
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
526
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
527
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
465
528
|
folderId: z.ZodNullable<z.ZodString>;
|
466
529
|
tagAssistedId: z.ZodString;
|
467
530
|
tagConfirmedId: z.ZodString;
|
@@ -476,9 +539,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
476
539
|
date: Date;
|
477
540
|
startingDate: Date;
|
478
541
|
endingDate: Date;
|
542
|
+
eventPictureUrl: string | null;
|
543
|
+
eventBannerUrl: string | null;
|
479
544
|
created_at: Date;
|
480
545
|
updated_at: Date;
|
481
546
|
active: boolean;
|
547
|
+
eventDescription: string | null;
|
482
548
|
folderId: string | null;
|
483
549
|
tagAssistedId: string;
|
484
550
|
tagConfirmedId: string;
|
@@ -490,9 +556,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
490
556
|
date: Date;
|
491
557
|
startingDate: Date;
|
492
558
|
endingDate: Date;
|
559
|
+
eventPictureUrl: string | null;
|
560
|
+
eventBannerUrl: string | null;
|
493
561
|
created_at: Date;
|
494
562
|
updated_at: Date;
|
495
563
|
active: boolean;
|
564
|
+
eventDescription: string | null;
|
496
565
|
folderId: string | null;
|
497
566
|
tagAssistedId: string;
|
498
567
|
tagConfirmedId: string;
|
@@ -505,6 +574,9 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
505
574
|
startingDate: z.ZodDate;
|
506
575
|
endingDate: z.ZodDate;
|
507
576
|
location: z.ZodString;
|
577
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
578
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
579
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
508
580
|
folderId: z.ZodNullable<z.ZodString>;
|
509
581
|
tagAssistedId: z.ZodString;
|
510
582
|
tagConfirmedId: z.ZodString;
|
@@ -519,9 +591,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
519
591
|
date: Date;
|
520
592
|
startingDate: Date;
|
521
593
|
endingDate: Date;
|
594
|
+
eventPictureUrl: string | null;
|
595
|
+
eventBannerUrl: string | null;
|
522
596
|
created_at: Date;
|
523
597
|
updated_at: Date;
|
524
598
|
active: boolean;
|
599
|
+
eventDescription: string | null;
|
525
600
|
folderId: string | null;
|
526
601
|
tagAssistedId: string;
|
527
602
|
tagConfirmedId: string;
|
@@ -533,9 +608,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
533
608
|
date: Date;
|
534
609
|
startingDate: Date;
|
535
610
|
endingDate: Date;
|
611
|
+
eventPictureUrl: string | null;
|
612
|
+
eventBannerUrl: string | null;
|
536
613
|
created_at: Date;
|
537
614
|
updated_at: Date;
|
538
615
|
active: boolean;
|
616
|
+
eventDescription: string | null;
|
539
617
|
folderId: string | null;
|
540
618
|
tagAssistedId: string;
|
541
619
|
tagConfirmedId: string;
|
@@ -620,6 +698,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
620
698
|
date: Date;
|
621
699
|
startingDate: Date;
|
622
700
|
endingDate: Date;
|
701
|
+
eventPictureUrl: string | null;
|
702
|
+
eventBannerUrl: string | null;
|
623
703
|
created_at: Date;
|
624
704
|
updated_at: Date;
|
625
705
|
active: boolean;
|
@@ -634,6 +714,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
634
714
|
isExclusive: boolean;
|
635
715
|
};
|
636
716
|
}[];
|
717
|
+
eventDescription: string | null;
|
637
718
|
folderId: string | null;
|
638
719
|
tagAssistedId: string;
|
639
720
|
tagConfirmedId: string;
|
@@ -645,9 +726,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
645
726
|
date: Date;
|
646
727
|
startingDate: Date;
|
647
728
|
endingDate: Date;
|
729
|
+
eventPictureUrl: string | null;
|
730
|
+
eventBannerUrl: string | null;
|
648
731
|
created_at: Date;
|
649
732
|
updated_at: Date;
|
650
733
|
active: boolean;
|
734
|
+
eventDescription: string | null;
|
651
735
|
folderId: string | null;
|
652
736
|
tagAssistedId: string;
|
653
737
|
tagConfirmedId: string;
|
@@ -666,9 +750,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
666
750
|
date: Date;
|
667
751
|
startingDate: Date;
|
668
752
|
endingDate: Date;
|
753
|
+
eventPictureUrl: string | null;
|
754
|
+
eventBannerUrl: string | null;
|
669
755
|
created_at: Date;
|
670
756
|
updated_at: Date;
|
671
757
|
active: boolean;
|
758
|
+
eventDescription: string | null;
|
672
759
|
folderId: string | null;
|
673
760
|
tagAssistedId: string;
|
674
761
|
tagConfirmedId: string;
|
@@ -681,6 +768,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
681
768
|
date: Date;
|
682
769
|
startingDate: Date;
|
683
770
|
endingDate: Date;
|
771
|
+
eventPictureUrl: string | null;
|
772
|
+
eventBannerUrl: string | null;
|
684
773
|
created_at: Date;
|
685
774
|
updated_at: Date;
|
686
775
|
active: boolean;
|
@@ -695,6 +784,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
695
784
|
isExclusive: boolean;
|
696
785
|
};
|
697
786
|
}[];
|
787
|
+
eventDescription: string | null;
|
698
788
|
folderId: string | null;
|
699
789
|
tagAssistedId: string;
|
700
790
|
tagConfirmedId: string;
|
@@ -706,9 +796,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
706
796
|
date: Date;
|
707
797
|
startingDate: Date;
|
708
798
|
endingDate: Date;
|
799
|
+
eventPictureUrl: string | null;
|
800
|
+
eventBannerUrl: string | null;
|
709
801
|
created_at: Date;
|
710
802
|
updated_at: Date;
|
711
803
|
active: boolean;
|
804
|
+
eventDescription: string | null;
|
712
805
|
folderId: string | null;
|
713
806
|
tagAssistedId: string;
|
714
807
|
tagConfirmedId: string;
|
@@ -727,9 +820,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
727
820
|
date: Date;
|
728
821
|
startingDate: Date;
|
729
822
|
endingDate: Date;
|
823
|
+
eventPictureUrl: string | null;
|
824
|
+
eventBannerUrl: string | null;
|
730
825
|
created_at: Date;
|
731
826
|
updated_at: Date;
|
732
827
|
active: boolean;
|
828
|
+
eventDescription: string | null;
|
733
829
|
folderId: string | null;
|
734
830
|
tagAssistedId: string;
|
735
831
|
tagConfirmedId: string;
|
@@ -750,6 +846,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
750
846
|
date: Date;
|
751
847
|
startingDate: Date;
|
752
848
|
endingDate: Date;
|
849
|
+
eventPictureUrl: string | null;
|
850
|
+
eventBannerUrl: string | null;
|
753
851
|
created_at: Date;
|
754
852
|
updated_at: Date;
|
755
853
|
active: boolean;
|
@@ -764,6 +862,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
764
862
|
isExclusive: boolean;
|
765
863
|
};
|
766
864
|
}[];
|
865
|
+
eventDescription: string | null;
|
767
866
|
folderId: string | null;
|
768
867
|
tagAssistedId: string;
|
769
868
|
tagConfirmedId: string;
|
@@ -775,9 +874,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
775
874
|
date: Date;
|
776
875
|
startingDate: Date;
|
777
876
|
endingDate: Date;
|
877
|
+
eventPictureUrl: string | null;
|
878
|
+
eventBannerUrl: string | null;
|
778
879
|
created_at: Date;
|
779
880
|
updated_at: Date;
|
780
881
|
active: boolean;
|
882
|
+
eventDescription: string | null;
|
781
883
|
folderId: string | null;
|
782
884
|
tagAssistedId: string;
|
783
885
|
tagConfirmedId: string;
|
@@ -796,9 +898,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
796
898
|
date: Date;
|
797
899
|
startingDate: Date;
|
798
900
|
endingDate: Date;
|
901
|
+
eventPictureUrl: string | null;
|
902
|
+
eventBannerUrl: string | null;
|
799
903
|
created_at: Date;
|
800
904
|
updated_at: Date;
|
801
905
|
active: boolean;
|
906
|
+
eventDescription: string | null;
|
802
907
|
folderId: string | null;
|
803
908
|
tagAssistedId: string;
|
804
909
|
tagConfirmedId: string;
|
@@ -813,6 +918,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
813
918
|
date: Date;
|
814
919
|
startingDate: Date;
|
815
920
|
endingDate: Date;
|
921
|
+
eventPictureUrl: string | null;
|
922
|
+
eventBannerUrl: string | null;
|
816
923
|
created_at: Date;
|
817
924
|
updated_at: Date;
|
818
925
|
active: boolean;
|
@@ -827,6 +934,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
827
934
|
isExclusive: boolean;
|
828
935
|
};
|
829
936
|
}[];
|
937
|
+
eventDescription: string | null;
|
830
938
|
folderId: string | null;
|
831
939
|
tagAssistedId: string;
|
832
940
|
tagConfirmedId: string;
|
@@ -838,9 +946,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
838
946
|
date: Date;
|
839
947
|
startingDate: Date;
|
840
948
|
endingDate: Date;
|
949
|
+
eventPictureUrl: string | null;
|
950
|
+
eventBannerUrl: string | null;
|
841
951
|
created_at: Date;
|
842
952
|
updated_at: Date;
|
843
953
|
active: boolean;
|
954
|
+
eventDescription: string | null;
|
844
955
|
folderId: string | null;
|
845
956
|
tagAssistedId: string;
|
846
957
|
tagConfirmedId: string;
|
@@ -859,9 +970,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
859
970
|
date: Date;
|
860
971
|
startingDate: Date;
|
861
972
|
endingDate: Date;
|
973
|
+
eventPictureUrl: string | null;
|
974
|
+
eventBannerUrl: string | null;
|
862
975
|
created_at: Date;
|
863
976
|
updated_at: Date;
|
864
977
|
active: boolean;
|
978
|
+
eventDescription: string | null;
|
865
979
|
folderId: string | null;
|
866
980
|
tagAssistedId: string;
|
867
981
|
tagConfirmedId: string;
|
@@ -882,6 +996,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
882
996
|
date: Date;
|
883
997
|
startingDate: Date;
|
884
998
|
endingDate: Date;
|
999
|
+
eventPictureUrl: string | null;
|
1000
|
+
eventBannerUrl: string | null;
|
885
1001
|
created_at: Date;
|
886
1002
|
updated_at: Date;
|
887
1003
|
active: boolean;
|
@@ -896,6 +1012,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
896
1012
|
isExclusive: boolean;
|
897
1013
|
};
|
898
1014
|
}[];
|
1015
|
+
eventDescription: string | null;
|
899
1016
|
folderId: string | null;
|
900
1017
|
tagAssistedId: string;
|
901
1018
|
tagConfirmedId: string;
|
@@ -907,9 +1024,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
907
1024
|
date: Date;
|
908
1025
|
startingDate: Date;
|
909
1026
|
endingDate: Date;
|
1027
|
+
eventPictureUrl: string | null;
|
1028
|
+
eventBannerUrl: string | null;
|
910
1029
|
created_at: Date;
|
911
1030
|
updated_at: Date;
|
912
1031
|
active: boolean;
|
1032
|
+
eventDescription: string | null;
|
913
1033
|
folderId: string | null;
|
914
1034
|
tagAssistedId: string;
|
915
1035
|
tagConfirmedId: string;
|
@@ -928,9 +1048,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
928
1048
|
date: Date;
|
929
1049
|
startingDate: Date;
|
930
1050
|
endingDate: Date;
|
1051
|
+
eventPictureUrl: string | null;
|
1052
|
+
eventBannerUrl: string | null;
|
931
1053
|
created_at: Date;
|
932
1054
|
updated_at: Date;
|
933
1055
|
active: boolean;
|
1056
|
+
eventDescription: string | null;
|
934
1057
|
folderId: string | null;
|
935
1058
|
tagAssistedId: string;
|
936
1059
|
tagConfirmedId: string;
|
@@ -945,6 +1068,8 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
945
1068
|
date: Date;
|
946
1069
|
startingDate: Date;
|
947
1070
|
endingDate: Date;
|
1071
|
+
eventPictureUrl: string | null;
|
1072
|
+
eventBannerUrl: string | null;
|
948
1073
|
created_at: Date;
|
949
1074
|
updated_at: Date;
|
950
1075
|
active: boolean;
|
@@ -959,6 +1084,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
959
1084
|
isExclusive: boolean;
|
960
1085
|
};
|
961
1086
|
}[];
|
1087
|
+
eventDescription: string | null;
|
962
1088
|
folderId: string | null;
|
963
1089
|
tagAssistedId: string;
|
964
1090
|
tagConfirmedId: string;
|
@@ -970,9 +1096,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
970
1096
|
date: Date;
|
971
1097
|
startingDate: Date;
|
972
1098
|
endingDate: Date;
|
1099
|
+
eventPictureUrl: string | null;
|
1100
|
+
eventBannerUrl: string | null;
|
973
1101
|
created_at: Date;
|
974
1102
|
updated_at: Date;
|
975
1103
|
active: boolean;
|
1104
|
+
eventDescription: string | null;
|
976
1105
|
folderId: string | null;
|
977
1106
|
tagAssistedId: string;
|
978
1107
|
tagConfirmedId: string;
|
@@ -991,9 +1120,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
991
1120
|
date: Date;
|
992
1121
|
startingDate: Date;
|
993
1122
|
endingDate: Date;
|
1123
|
+
eventPictureUrl: string | null;
|
1124
|
+
eventBannerUrl: string | null;
|
994
1125
|
created_at: Date;
|
995
1126
|
updated_at: Date;
|
996
1127
|
active: boolean;
|
1128
|
+
eventDescription: string | null;
|
997
1129
|
folderId: string | null;
|
998
1130
|
tagAssistedId: string;
|
999
1131
|
tagConfirmedId: string;
|
@@ -1015,6 +1147,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1015
1147
|
startingDate: z.ZodString;
|
1016
1148
|
endingDate: z.ZodString;
|
1017
1149
|
location: z.ZodString;
|
1150
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1151
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1152
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1018
1153
|
folderId: z.ZodNullable<z.ZodString>;
|
1019
1154
|
tagAssistedId: z.ZodString;
|
1020
1155
|
tagConfirmedId: z.ZodString;
|
@@ -1029,6 +1164,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1029
1164
|
startingDate: z.ZodString;
|
1030
1165
|
endingDate: z.ZodString;
|
1031
1166
|
location: z.ZodString;
|
1167
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1168
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1169
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1032
1170
|
folderId: z.ZodNullable<z.ZodString>;
|
1033
1171
|
tagAssistedId: z.ZodString;
|
1034
1172
|
tagConfirmedId: z.ZodString;
|
@@ -1043,9 +1181,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1043
1181
|
date: string;
|
1044
1182
|
startingDate: string;
|
1045
1183
|
endingDate: string;
|
1184
|
+
eventPictureUrl: string | null;
|
1185
|
+
eventBannerUrl: string | null;
|
1046
1186
|
created_at: string;
|
1047
1187
|
updated_at: string;
|
1048
1188
|
active: boolean;
|
1189
|
+
eventDescription: string | null;
|
1049
1190
|
folderId: string | null;
|
1050
1191
|
tagAssistedId: string;
|
1051
1192
|
tagConfirmedId: string;
|
@@ -1057,9 +1198,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1057
1198
|
date: string;
|
1058
1199
|
startingDate: string;
|
1059
1200
|
endingDate: string;
|
1201
|
+
eventPictureUrl: string | null;
|
1202
|
+
eventBannerUrl: string | null;
|
1060
1203
|
created_at: string;
|
1061
1204
|
updated_at: string;
|
1062
1205
|
active: boolean;
|
1206
|
+
eventDescription: string | null;
|
1063
1207
|
folderId: string | null;
|
1064
1208
|
tagAssistedId: string;
|
1065
1209
|
tagConfirmedId: string;
|
@@ -1072,6 +1216,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1072
1216
|
startingDate: z.ZodString;
|
1073
1217
|
endingDate: z.ZodString;
|
1074
1218
|
location: z.ZodString;
|
1219
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1220
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1221
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1075
1222
|
folderId: z.ZodNullable<z.ZodString>;
|
1076
1223
|
tagAssistedId: z.ZodString;
|
1077
1224
|
tagConfirmedId: z.ZodString;
|
@@ -1086,9 +1233,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1086
1233
|
date: string;
|
1087
1234
|
startingDate: string;
|
1088
1235
|
endingDate: string;
|
1236
|
+
eventPictureUrl: string | null;
|
1237
|
+
eventBannerUrl: string | null;
|
1089
1238
|
created_at: string;
|
1090
1239
|
updated_at: string;
|
1091
1240
|
active: boolean;
|
1241
|
+
eventDescription: string | null;
|
1092
1242
|
folderId: string | null;
|
1093
1243
|
tagAssistedId: string;
|
1094
1244
|
tagConfirmedId: string;
|
@@ -1100,9 +1250,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1100
1250
|
date: string;
|
1101
1251
|
startingDate: string;
|
1102
1252
|
endingDate: string;
|
1253
|
+
eventPictureUrl: string | null;
|
1254
|
+
eventBannerUrl: string | null;
|
1103
1255
|
created_at: string;
|
1104
1256
|
updated_at: string;
|
1105
1257
|
active: boolean;
|
1258
|
+
eventDescription: string | null;
|
1106
1259
|
folderId: string | null;
|
1107
1260
|
tagAssistedId: string;
|
1108
1261
|
tagConfirmedId: string;
|
@@ -1181,6 +1334,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1181
1334
|
date: string;
|
1182
1335
|
startingDate: string;
|
1183
1336
|
endingDate: string;
|
1337
|
+
eventPictureUrl: string | null;
|
1338
|
+
eventBannerUrl: string | null;
|
1184
1339
|
created_at: string;
|
1185
1340
|
updated_at: string;
|
1186
1341
|
active: boolean;
|
@@ -1195,6 +1350,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1195
1350
|
isExclusive: boolean;
|
1196
1351
|
};
|
1197
1352
|
}[];
|
1353
|
+
eventDescription: string | null;
|
1198
1354
|
folderId: string | null;
|
1199
1355
|
tagAssistedId: string;
|
1200
1356
|
tagConfirmedId: string;
|
@@ -1206,9 +1362,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1206
1362
|
date: string;
|
1207
1363
|
startingDate: string;
|
1208
1364
|
endingDate: string;
|
1365
|
+
eventPictureUrl: string | null;
|
1366
|
+
eventBannerUrl: string | null;
|
1209
1367
|
created_at: string;
|
1210
1368
|
updated_at: string;
|
1211
1369
|
active: boolean;
|
1370
|
+
eventDescription: string | null;
|
1212
1371
|
folderId: string | null;
|
1213
1372
|
tagAssistedId: string;
|
1214
1373
|
tagConfirmedId: string;
|
@@ -1227,9 +1386,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1227
1386
|
date: string;
|
1228
1387
|
startingDate: string;
|
1229
1388
|
endingDate: string;
|
1389
|
+
eventPictureUrl: string | null;
|
1390
|
+
eventBannerUrl: string | null;
|
1230
1391
|
created_at: string;
|
1231
1392
|
updated_at: string;
|
1232
1393
|
active: boolean;
|
1394
|
+
eventDescription: string | null;
|
1233
1395
|
folderId: string | null;
|
1234
1396
|
tagAssistedId: string;
|
1235
1397
|
tagConfirmedId: string;
|
@@ -1242,6 +1404,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1242
1404
|
date: string;
|
1243
1405
|
startingDate: string;
|
1244
1406
|
endingDate: string;
|
1407
|
+
eventPictureUrl: string | null;
|
1408
|
+
eventBannerUrl: string | null;
|
1245
1409
|
created_at: string;
|
1246
1410
|
updated_at: string;
|
1247
1411
|
active: boolean;
|
@@ -1256,6 +1420,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1256
1420
|
isExclusive: boolean;
|
1257
1421
|
};
|
1258
1422
|
}[];
|
1423
|
+
eventDescription: string | null;
|
1259
1424
|
folderId: string | null;
|
1260
1425
|
tagAssistedId: string;
|
1261
1426
|
tagConfirmedId: string;
|
@@ -1267,9 +1432,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1267
1432
|
date: string;
|
1268
1433
|
startingDate: string;
|
1269
1434
|
endingDate: string;
|
1435
|
+
eventPictureUrl: string | null;
|
1436
|
+
eventBannerUrl: string | null;
|
1270
1437
|
created_at: string;
|
1271
1438
|
updated_at: string;
|
1272
1439
|
active: boolean;
|
1440
|
+
eventDescription: string | null;
|
1273
1441
|
folderId: string | null;
|
1274
1442
|
tagAssistedId: string;
|
1275
1443
|
tagConfirmedId: string;
|
@@ -1288,9 +1456,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1288
1456
|
date: string;
|
1289
1457
|
startingDate: string;
|
1290
1458
|
endingDate: string;
|
1459
|
+
eventPictureUrl: string | null;
|
1460
|
+
eventBannerUrl: string | null;
|
1291
1461
|
created_at: string;
|
1292
1462
|
updated_at: string;
|
1293
1463
|
active: boolean;
|
1464
|
+
eventDescription: string | null;
|
1294
1465
|
folderId: string | null;
|
1295
1466
|
tagAssistedId: string;
|
1296
1467
|
tagConfirmedId: string;
|
@@ -1310,6 +1481,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1310
1481
|
date: string;
|
1311
1482
|
startingDate: string;
|
1312
1483
|
endingDate: string;
|
1484
|
+
eventPictureUrl: string | null;
|
1485
|
+
eventBannerUrl: string | null;
|
1313
1486
|
created_at: string;
|
1314
1487
|
updated_at: string;
|
1315
1488
|
active: boolean;
|
@@ -1324,6 +1497,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1324
1497
|
isExclusive: boolean;
|
1325
1498
|
};
|
1326
1499
|
}[];
|
1500
|
+
eventDescription: string | null;
|
1327
1501
|
folderId: string | null;
|
1328
1502
|
tagAssistedId: string;
|
1329
1503
|
tagConfirmedId: string;
|
@@ -1335,9 +1509,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1335
1509
|
date: string;
|
1336
1510
|
startingDate: string;
|
1337
1511
|
endingDate: string;
|
1512
|
+
eventPictureUrl: string | null;
|
1513
|
+
eventBannerUrl: string | null;
|
1338
1514
|
created_at: string;
|
1339
1515
|
updated_at: string;
|
1340
1516
|
active: boolean;
|
1517
|
+
eventDescription: string | null;
|
1341
1518
|
folderId: string | null;
|
1342
1519
|
tagAssistedId: string;
|
1343
1520
|
tagConfirmedId: string;
|
@@ -1356,9 +1533,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1356
1533
|
date: string;
|
1357
1534
|
startingDate: string;
|
1358
1535
|
endingDate: string;
|
1536
|
+
eventPictureUrl: string | null;
|
1537
|
+
eventBannerUrl: string | null;
|
1359
1538
|
created_at: string;
|
1360
1539
|
updated_at: string;
|
1361
1540
|
active: boolean;
|
1541
|
+
eventDescription: string | null;
|
1362
1542
|
folderId: string | null;
|
1363
1543
|
tagAssistedId: string;
|
1364
1544
|
tagConfirmedId: string;
|
@@ -1378,6 +1558,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1378
1558
|
date: string;
|
1379
1559
|
startingDate: string;
|
1380
1560
|
endingDate: string;
|
1561
|
+
eventPictureUrl: string | null;
|
1562
|
+
eventBannerUrl: string | null;
|
1381
1563
|
created_at: string;
|
1382
1564
|
updated_at: string;
|
1383
1565
|
active: boolean;
|
@@ -1392,6 +1574,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1392
1574
|
isExclusive: boolean;
|
1393
1575
|
};
|
1394
1576
|
}[];
|
1577
|
+
eventDescription: string | null;
|
1395
1578
|
folderId: string | null;
|
1396
1579
|
tagAssistedId: string;
|
1397
1580
|
tagConfirmedId: string;
|
@@ -1403,9 +1586,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1403
1586
|
date: string;
|
1404
1587
|
startingDate: string;
|
1405
1588
|
endingDate: string;
|
1589
|
+
eventPictureUrl: string | null;
|
1590
|
+
eventBannerUrl: string | null;
|
1406
1591
|
created_at: string;
|
1407
1592
|
updated_at: string;
|
1408
1593
|
active: boolean;
|
1594
|
+
eventDescription: string | null;
|
1409
1595
|
folderId: string | null;
|
1410
1596
|
tagAssistedId: string;
|
1411
1597
|
tagConfirmedId: string;
|
@@ -1424,9 +1610,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1424
1610
|
date: string;
|
1425
1611
|
startingDate: string;
|
1426
1612
|
endingDate: string;
|
1613
|
+
eventPictureUrl: string | null;
|
1614
|
+
eventBannerUrl: string | null;
|
1427
1615
|
created_at: string;
|
1428
1616
|
updated_at: string;
|
1429
1617
|
active: boolean;
|
1618
|
+
eventDescription: string | null;
|
1430
1619
|
folderId: string | null;
|
1431
1620
|
tagAssistedId: string;
|
1432
1621
|
tagConfirmedId: string;
|
@@ -1441,6 +1630,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1441
1630
|
startingDate: z.ZodString;
|
1442
1631
|
endingDate: z.ZodString;
|
1443
1632
|
location: z.ZodString;
|
1633
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1634
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1635
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1444
1636
|
folderId: z.ZodNullable<z.ZodString>;
|
1445
1637
|
tagAssistedId: z.ZodString;
|
1446
1638
|
tagConfirmedId: z.ZodString;
|
@@ -1455,6 +1647,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1455
1647
|
startingDate: z.ZodString;
|
1456
1648
|
endingDate: z.ZodString;
|
1457
1649
|
location: z.ZodString;
|
1650
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1651
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1652
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1458
1653
|
folderId: z.ZodNullable<z.ZodString>;
|
1459
1654
|
tagAssistedId: z.ZodString;
|
1460
1655
|
tagConfirmedId: z.ZodString;
|
@@ -1469,9 +1664,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1469
1664
|
date: string;
|
1470
1665
|
startingDate: string;
|
1471
1666
|
endingDate: string;
|
1667
|
+
eventPictureUrl: string | null;
|
1668
|
+
eventBannerUrl: string | null;
|
1472
1669
|
created_at: string;
|
1473
1670
|
updated_at: string;
|
1474
1671
|
active: boolean;
|
1672
|
+
eventDescription: string | null;
|
1475
1673
|
folderId: string | null;
|
1476
1674
|
tagAssistedId: string;
|
1477
1675
|
tagConfirmedId: string;
|
@@ -1483,9 +1681,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1483
1681
|
date: string;
|
1484
1682
|
startingDate: string;
|
1485
1683
|
endingDate: string;
|
1684
|
+
eventPictureUrl: string | null;
|
1685
|
+
eventBannerUrl: string | null;
|
1486
1686
|
created_at: string;
|
1487
1687
|
updated_at: string;
|
1488
1688
|
active: boolean;
|
1689
|
+
eventDescription: string | null;
|
1489
1690
|
folderId: string | null;
|
1490
1691
|
tagAssistedId: string;
|
1491
1692
|
tagConfirmedId: string;
|
@@ -1498,6 +1699,9 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1498
1699
|
startingDate: z.ZodString;
|
1499
1700
|
endingDate: z.ZodString;
|
1500
1701
|
location: z.ZodString;
|
1702
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
1703
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
1704
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
1501
1705
|
folderId: z.ZodNullable<z.ZodString>;
|
1502
1706
|
tagAssistedId: z.ZodString;
|
1503
1707
|
tagConfirmedId: z.ZodString;
|
@@ -1512,9 +1716,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1512
1716
|
date: string;
|
1513
1717
|
startingDate: string;
|
1514
1718
|
endingDate: string;
|
1719
|
+
eventPictureUrl: string | null;
|
1720
|
+
eventBannerUrl: string | null;
|
1515
1721
|
created_at: string;
|
1516
1722
|
updated_at: string;
|
1517
1723
|
active: boolean;
|
1724
|
+
eventDescription: string | null;
|
1518
1725
|
folderId: string | null;
|
1519
1726
|
tagAssistedId: string;
|
1520
1727
|
tagConfirmedId: string;
|
@@ -1526,9 +1733,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1526
1733
|
date: string;
|
1527
1734
|
startingDate: string;
|
1528
1735
|
endingDate: string;
|
1736
|
+
eventPictureUrl: string | null;
|
1737
|
+
eventBannerUrl: string | null;
|
1529
1738
|
created_at: string;
|
1530
1739
|
updated_at: string;
|
1531
1740
|
active: boolean;
|
1741
|
+
eventDescription: string | null;
|
1532
1742
|
folderId: string | null;
|
1533
1743
|
tagAssistedId: string;
|
1534
1744
|
tagConfirmedId: string;
|
@@ -1607,6 +1817,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1607
1817
|
date: string;
|
1608
1818
|
startingDate: string;
|
1609
1819
|
endingDate: string;
|
1820
|
+
eventPictureUrl: string | null;
|
1821
|
+
eventBannerUrl: string | null;
|
1610
1822
|
created_at: string;
|
1611
1823
|
updated_at: string;
|
1612
1824
|
active: boolean;
|
@@ -1621,6 +1833,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1621
1833
|
isExclusive: boolean;
|
1622
1834
|
};
|
1623
1835
|
}[];
|
1836
|
+
eventDescription: string | null;
|
1624
1837
|
folderId: string | null;
|
1625
1838
|
tagAssistedId: string;
|
1626
1839
|
tagConfirmedId: string;
|
@@ -1632,9 +1845,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1632
1845
|
date: string;
|
1633
1846
|
startingDate: string;
|
1634
1847
|
endingDate: string;
|
1848
|
+
eventPictureUrl: string | null;
|
1849
|
+
eventBannerUrl: string | null;
|
1635
1850
|
created_at: string;
|
1636
1851
|
updated_at: string;
|
1637
1852
|
active: boolean;
|
1853
|
+
eventDescription: string | null;
|
1638
1854
|
folderId: string | null;
|
1639
1855
|
tagAssistedId: string;
|
1640
1856
|
tagConfirmedId: string;
|
@@ -1653,9 +1869,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1653
1869
|
date: string;
|
1654
1870
|
startingDate: string;
|
1655
1871
|
endingDate: string;
|
1872
|
+
eventPictureUrl: string | null;
|
1873
|
+
eventBannerUrl: string | null;
|
1656
1874
|
created_at: string;
|
1657
1875
|
updated_at: string;
|
1658
1876
|
active: boolean;
|
1877
|
+
eventDescription: string | null;
|
1659
1878
|
folderId: string | null;
|
1660
1879
|
tagAssistedId: string;
|
1661
1880
|
tagConfirmedId: string;
|
@@ -1668,6 +1887,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1668
1887
|
date: string;
|
1669
1888
|
startingDate: string;
|
1670
1889
|
endingDate: string;
|
1890
|
+
eventPictureUrl: string | null;
|
1891
|
+
eventBannerUrl: string | null;
|
1671
1892
|
created_at: string;
|
1672
1893
|
updated_at: string;
|
1673
1894
|
active: boolean;
|
@@ -1682,6 +1903,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1682
1903
|
isExclusive: boolean;
|
1683
1904
|
};
|
1684
1905
|
}[];
|
1906
|
+
eventDescription: string | null;
|
1685
1907
|
folderId: string | null;
|
1686
1908
|
tagAssistedId: string;
|
1687
1909
|
tagConfirmedId: string;
|
@@ -1693,9 +1915,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1693
1915
|
date: string;
|
1694
1916
|
startingDate: string;
|
1695
1917
|
endingDate: string;
|
1918
|
+
eventPictureUrl: string | null;
|
1919
|
+
eventBannerUrl: string | null;
|
1696
1920
|
created_at: string;
|
1697
1921
|
updated_at: string;
|
1698
1922
|
active: boolean;
|
1923
|
+
eventDescription: string | null;
|
1699
1924
|
folderId: string | null;
|
1700
1925
|
tagAssistedId: string;
|
1701
1926
|
tagConfirmedId: string;
|
@@ -1714,9 +1939,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1714
1939
|
date: string;
|
1715
1940
|
startingDate: string;
|
1716
1941
|
endingDate: string;
|
1942
|
+
eventPictureUrl: string | null;
|
1943
|
+
eventBannerUrl: string | null;
|
1717
1944
|
created_at: string;
|
1718
1945
|
updated_at: string;
|
1719
1946
|
active: boolean;
|
1947
|
+
eventDescription: string | null;
|
1720
1948
|
folderId: string | null;
|
1721
1949
|
tagAssistedId: string;
|
1722
1950
|
tagConfirmedId: string;
|
@@ -1737,6 +1965,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1737
1965
|
date: string;
|
1738
1966
|
startingDate: string;
|
1739
1967
|
endingDate: string;
|
1968
|
+
eventPictureUrl: string | null;
|
1969
|
+
eventBannerUrl: string | null;
|
1740
1970
|
created_at: string;
|
1741
1971
|
updated_at: string;
|
1742
1972
|
active: boolean;
|
@@ -1751,6 +1981,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1751
1981
|
isExclusive: boolean;
|
1752
1982
|
};
|
1753
1983
|
}[];
|
1984
|
+
eventDescription: string | null;
|
1754
1985
|
folderId: string | null;
|
1755
1986
|
tagAssistedId: string;
|
1756
1987
|
tagConfirmedId: string;
|
@@ -1762,9 +1993,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1762
1993
|
date: string;
|
1763
1994
|
startingDate: string;
|
1764
1995
|
endingDate: string;
|
1996
|
+
eventPictureUrl: string | null;
|
1997
|
+
eventBannerUrl: string | null;
|
1765
1998
|
created_at: string;
|
1766
1999
|
updated_at: string;
|
1767
2000
|
active: boolean;
|
2001
|
+
eventDescription: string | null;
|
1768
2002
|
folderId: string | null;
|
1769
2003
|
tagAssistedId: string;
|
1770
2004
|
tagConfirmedId: string;
|
@@ -1783,9 +2017,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1783
2017
|
date: string;
|
1784
2018
|
startingDate: string;
|
1785
2019
|
endingDate: string;
|
2020
|
+
eventPictureUrl: string | null;
|
2021
|
+
eventBannerUrl: string | null;
|
1786
2022
|
created_at: string;
|
1787
2023
|
updated_at: string;
|
1788
2024
|
active: boolean;
|
2025
|
+
eventDescription: string | null;
|
1789
2026
|
folderId: string | null;
|
1790
2027
|
tagAssistedId: string;
|
1791
2028
|
tagConfirmedId: string;
|
@@ -1800,6 +2037,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1800
2037
|
date: string;
|
1801
2038
|
startingDate: string;
|
1802
2039
|
endingDate: string;
|
2040
|
+
eventPictureUrl: string | null;
|
2041
|
+
eventBannerUrl: string | null;
|
1803
2042
|
created_at: string;
|
1804
2043
|
updated_at: string;
|
1805
2044
|
active: boolean;
|
@@ -1814,6 +2053,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1814
2053
|
isExclusive: boolean;
|
1815
2054
|
};
|
1816
2055
|
}[];
|
2056
|
+
eventDescription: string | null;
|
1817
2057
|
folderId: string | null;
|
1818
2058
|
tagAssistedId: string;
|
1819
2059
|
tagConfirmedId: string;
|
@@ -1825,9 +2065,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1825
2065
|
date: string;
|
1826
2066
|
startingDate: string;
|
1827
2067
|
endingDate: string;
|
2068
|
+
eventPictureUrl: string | null;
|
2069
|
+
eventBannerUrl: string | null;
|
1828
2070
|
created_at: string;
|
1829
2071
|
updated_at: string;
|
1830
2072
|
active: boolean;
|
2073
|
+
eventDescription: string | null;
|
1831
2074
|
folderId: string | null;
|
1832
2075
|
tagAssistedId: string;
|
1833
2076
|
tagConfirmedId: string;
|
@@ -1846,9 +2089,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1846
2089
|
date: string;
|
1847
2090
|
startingDate: string;
|
1848
2091
|
endingDate: string;
|
2092
|
+
eventPictureUrl: string | null;
|
2093
|
+
eventBannerUrl: string | null;
|
1849
2094
|
created_at: string;
|
1850
2095
|
updated_at: string;
|
1851
2096
|
active: boolean;
|
2097
|
+
eventDescription: string | null;
|
1852
2098
|
folderId: string | null;
|
1853
2099
|
tagAssistedId: string;
|
1854
2100
|
tagConfirmedId: string;
|
@@ -1869,6 +2115,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1869
2115
|
date: string;
|
1870
2116
|
startingDate: string;
|
1871
2117
|
endingDate: string;
|
2118
|
+
eventPictureUrl: string | null;
|
2119
|
+
eventBannerUrl: string | null;
|
1872
2120
|
created_at: string;
|
1873
2121
|
updated_at: string;
|
1874
2122
|
active: boolean;
|
@@ -1883,6 +2131,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1883
2131
|
isExclusive: boolean;
|
1884
2132
|
};
|
1885
2133
|
}[];
|
2134
|
+
eventDescription: string | null;
|
1886
2135
|
folderId: string | null;
|
1887
2136
|
tagAssistedId: string;
|
1888
2137
|
tagConfirmedId: string;
|
@@ -1894,9 +2143,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1894
2143
|
date: string;
|
1895
2144
|
startingDate: string;
|
1896
2145
|
endingDate: string;
|
2146
|
+
eventPictureUrl: string | null;
|
2147
|
+
eventBannerUrl: string | null;
|
1897
2148
|
created_at: string;
|
1898
2149
|
updated_at: string;
|
1899
2150
|
active: boolean;
|
2151
|
+
eventDescription: string | null;
|
1900
2152
|
folderId: string | null;
|
1901
2153
|
tagAssistedId: string;
|
1902
2154
|
tagConfirmedId: string;
|
@@ -1915,9 +2167,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1915
2167
|
date: string;
|
1916
2168
|
startingDate: string;
|
1917
2169
|
endingDate: string;
|
2170
|
+
eventPictureUrl: string | null;
|
2171
|
+
eventBannerUrl: string | null;
|
1918
2172
|
created_at: string;
|
1919
2173
|
updated_at: string;
|
1920
2174
|
active: boolean;
|
2175
|
+
eventDescription: string | null;
|
1921
2176
|
folderId: string | null;
|
1922
2177
|
tagAssistedId: string;
|
1923
2178
|
tagConfirmedId: string;
|
@@ -1932,6 +2187,8 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1932
2187
|
date: string;
|
1933
2188
|
startingDate: string;
|
1934
2189
|
endingDate: string;
|
2190
|
+
eventPictureUrl: string | null;
|
2191
|
+
eventBannerUrl: string | null;
|
1935
2192
|
created_at: string;
|
1936
2193
|
updated_at: string;
|
1937
2194
|
active: boolean;
|
@@ -1946,6 +2203,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1946
2203
|
isExclusive: boolean;
|
1947
2204
|
};
|
1948
2205
|
}[];
|
2206
|
+
eventDescription: string | null;
|
1949
2207
|
folderId: string | null;
|
1950
2208
|
tagAssistedId: string;
|
1951
2209
|
tagConfirmedId: string;
|
@@ -1957,9 +2215,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1957
2215
|
date: string;
|
1958
2216
|
startingDate: string;
|
1959
2217
|
endingDate: string;
|
2218
|
+
eventPictureUrl: string | null;
|
2219
|
+
eventBannerUrl: string | null;
|
1960
2220
|
created_at: string;
|
1961
2221
|
updated_at: string;
|
1962
2222
|
active: boolean;
|
2223
|
+
eventDescription: string | null;
|
1963
2224
|
folderId: string | null;
|
1964
2225
|
tagAssistedId: string;
|
1965
2226
|
tagConfirmedId: string;
|
@@ -1978,9 +2239,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1978
2239
|
date: string;
|
1979
2240
|
startingDate: string;
|
1980
2241
|
endingDate: string;
|
2242
|
+
eventPictureUrl: string | null;
|
2243
|
+
eventBannerUrl: string | null;
|
1981
2244
|
created_at: string;
|
1982
2245
|
updated_at: string;
|
1983
2246
|
active: boolean;
|
2247
|
+
eventDescription: string | null;
|
1984
2248
|
folderId: string | null;
|
1985
2249
|
tagAssistedId: string;
|
1986
2250
|
tagConfirmedId: string;
|