expo-backend-types 0.47.0-EXPO-339-Testing-y-bugfixing.1 → 0.47.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/event/dto/create-event.dto.d.ts +72 -23
- package/dist/src/event/dto/create-event.dto.js +7 -1
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -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-event.dto.d.ts +31 -44
- package/dist/src/event/dto/update-event.dto.js +2 -2
- 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/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 -2
@@ -28,12 +28,12 @@ const eventWithAllThings = event_dto_1.eventSchema.merge(zod_1.default.object({
|
|
28
28
|
isExclusive: true,
|
29
29
|
}),
|
30
30
|
})),
|
31
|
-
eventTickets: zod_1.default.array(
|
31
|
+
eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema.pick({
|
32
32
|
id: true,
|
33
33
|
amount: true,
|
34
34
|
type: true,
|
35
35
|
price: true,
|
36
|
-
}))
|
36
|
+
})),
|
37
37
|
}));
|
38
38
|
exports.getAllEventsResponseSchema = zod_1.default.object({
|
39
39
|
folders: zod_1.default.array(event_folder_dto_1.eventFolderSchema.merge(zod_1.default.object({
|
@@ -6,6 +6,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
6
6
|
startingDate: z.ZodDate;
|
7
7
|
endingDate: z.ZodDate;
|
8
8
|
location: z.ZodString;
|
9
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
10
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
11
|
+
description: z.ZodNullable<z.ZodString>;
|
9
12
|
folderId: z.ZodNullable<z.ZodString>;
|
10
13
|
tagAssistedId: z.ZodString;
|
11
14
|
tagConfirmedId: z.ZodString;
|
@@ -21,6 +24,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
21
24
|
startingDate: z.ZodDate;
|
22
25
|
endingDate: z.ZodDate;
|
23
26
|
location: z.ZodString;
|
27
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
28
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
29
|
+
description: z.ZodNullable<z.ZodString>;
|
24
30
|
folderId: z.ZodNullable<z.ZodString>;
|
25
31
|
tagAssistedId: z.ZodString;
|
26
32
|
tagConfirmedId: z.ZodString;
|
@@ -29,6 +35,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
29
35
|
created_at: z.ZodDate;
|
30
36
|
updated_at: z.ZodDate;
|
31
37
|
}, "strip", z.ZodTypeAny, {
|
38
|
+
description: string | null;
|
32
39
|
location: string;
|
33
40
|
id: string;
|
34
41
|
name: string;
|
@@ -38,11 +45,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
38
45
|
created_at: Date;
|
39
46
|
updated_at: Date;
|
40
47
|
active: boolean;
|
48
|
+
mainPictureUrl: string | null;
|
49
|
+
bannerUrl: string | null;
|
41
50
|
folderId: string | null;
|
42
51
|
tagAssistedId: string;
|
43
52
|
tagConfirmedId: string;
|
44
53
|
supraEventId: string | null;
|
45
54
|
}, {
|
55
|
+
description: string | null;
|
46
56
|
location: string;
|
47
57
|
id: string;
|
48
58
|
name: string;
|
@@ -52,6 +62,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
52
62
|
created_at: Date;
|
53
63
|
updated_at: Date;
|
54
64
|
active: boolean;
|
65
|
+
mainPictureUrl: string | null;
|
66
|
+
bannerUrl: string | null;
|
55
67
|
folderId: string | null;
|
56
68
|
tagAssistedId: string;
|
57
69
|
tagConfirmedId: string;
|
@@ -64,6 +76,9 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
64
76
|
startingDate: z.ZodDate;
|
65
77
|
endingDate: z.ZodDate;
|
66
78
|
location: z.ZodString;
|
79
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
80
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
81
|
+
description: z.ZodNullable<z.ZodString>;
|
67
82
|
folderId: z.ZodNullable<z.ZodString>;
|
68
83
|
tagAssistedId: z.ZodString;
|
69
84
|
tagConfirmedId: z.ZodString;
|
@@ -72,6 +87,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
72
87
|
created_at: z.ZodDate;
|
73
88
|
updated_at: z.ZodDate;
|
74
89
|
}, "strip", z.ZodTypeAny, {
|
90
|
+
description: string | null;
|
75
91
|
location: string;
|
76
92
|
id: string;
|
77
93
|
name: string;
|
@@ -81,11 +97,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
81
97
|
created_at: Date;
|
82
98
|
updated_at: Date;
|
83
99
|
active: boolean;
|
100
|
+
mainPictureUrl: string | null;
|
101
|
+
bannerUrl: string | null;
|
84
102
|
folderId: string | null;
|
85
103
|
tagAssistedId: string;
|
86
104
|
tagConfirmedId: string;
|
87
105
|
supraEventId: string | null;
|
88
106
|
}, {
|
107
|
+
description: string | null;
|
89
108
|
location: string;
|
90
109
|
id: string;
|
91
110
|
name: string;
|
@@ -95,12 +114,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
95
114
|
created_at: Date;
|
96
115
|
updated_at: Date;
|
97
116
|
active: boolean;
|
117
|
+
mainPictureUrl: string | null;
|
118
|
+
bannerUrl: string | null;
|
98
119
|
folderId: string | null;
|
99
120
|
tagAssistedId: string;
|
100
121
|
tagConfirmedId: string;
|
101
122
|
supraEventId: string | null;
|
102
123
|
}>>;
|
103
|
-
eventTickets: z.ZodArray<z.
|
124
|
+
eventTickets: z.ZodArray<z.ZodObject<{
|
104
125
|
id: z.ZodString;
|
105
126
|
amount: z.ZodNullable<z.ZodNumber>;
|
106
127
|
type: z.ZodNativeEnum<{
|
@@ -119,16 +140,6 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
119
140
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
120
141
|
amount: number | null;
|
121
142
|
price: number | null;
|
122
|
-
}>, {
|
123
|
-
id: string;
|
124
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
125
|
-
amount: number | null;
|
126
|
-
price: number | null;
|
127
|
-
}, {
|
128
|
-
id: string;
|
129
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
130
|
-
amount: number | null;
|
131
|
-
price: number | null;
|
132
143
|
}>, "many">;
|
133
144
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
134
145
|
id: z.ZodString;
|
@@ -373,6 +384,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
373
384
|
};
|
374
385
|
}>;
|
375
386
|
}>, "strip", z.ZodTypeAny, {
|
387
|
+
description: string | null;
|
376
388
|
location: string;
|
377
389
|
id: string;
|
378
390
|
name: string;
|
@@ -398,11 +410,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
398
410
|
isExclusive: boolean;
|
399
411
|
};
|
400
412
|
}[];
|
413
|
+
mainPictureUrl: string | null;
|
414
|
+
bannerUrl: string | null;
|
401
415
|
folderId: string | null;
|
402
416
|
tagAssistedId: string;
|
403
417
|
tagConfirmedId: string;
|
404
418
|
supraEventId: string | null;
|
405
419
|
subEvents: {
|
420
|
+
description: string | null;
|
406
421
|
location: string;
|
407
422
|
id: string;
|
408
423
|
name: string;
|
@@ -412,6 +427,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
412
427
|
created_at: Date;
|
413
428
|
updated_at: Date;
|
414
429
|
active: boolean;
|
430
|
+
mainPictureUrl: string | null;
|
431
|
+
bannerUrl: string | null;
|
415
432
|
folderId: string | null;
|
416
433
|
tagAssistedId: string;
|
417
434
|
tagConfirmedId: string;
|
@@ -424,6 +441,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
424
441
|
price: number | null;
|
425
442
|
}[];
|
426
443
|
supraEvent: {
|
444
|
+
description: string | null;
|
427
445
|
location: string;
|
428
446
|
id: string;
|
429
447
|
name: string;
|
@@ -433,6 +451,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
433
451
|
created_at: Date;
|
434
452
|
updated_at: Date;
|
435
453
|
active: boolean;
|
454
|
+
mainPictureUrl: string | null;
|
455
|
+
bannerUrl: string | null;
|
436
456
|
folderId: string | null;
|
437
457
|
tagAssistedId: string;
|
438
458
|
tagConfirmedId: string;
|
@@ -485,6 +505,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
485
505
|
};
|
486
506
|
};
|
487
507
|
}, {
|
508
|
+
description: string | null;
|
488
509
|
location: string;
|
489
510
|
id: string;
|
490
511
|
name: string;
|
@@ -510,11 +531,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
510
531
|
isExclusive: boolean;
|
511
532
|
};
|
512
533
|
}[];
|
534
|
+
mainPictureUrl: string | null;
|
535
|
+
bannerUrl: string | null;
|
513
536
|
folderId: string | null;
|
514
537
|
tagAssistedId: string;
|
515
538
|
tagConfirmedId: string;
|
516
539
|
supraEventId: string | null;
|
517
540
|
subEvents: {
|
541
|
+
description: string | null;
|
518
542
|
location: string;
|
519
543
|
id: string;
|
520
544
|
name: string;
|
@@ -524,6 +548,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
524
548
|
created_at: Date;
|
525
549
|
updated_at: Date;
|
526
550
|
active: boolean;
|
551
|
+
mainPictureUrl: string | null;
|
552
|
+
bannerUrl: string | null;
|
527
553
|
folderId: string | null;
|
528
554
|
tagAssistedId: string;
|
529
555
|
tagConfirmedId: string;
|
@@ -536,6 +562,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
536
562
|
price: number | null;
|
537
563
|
}[];
|
538
564
|
supraEvent: {
|
565
|
+
description: string | null;
|
539
566
|
location: string;
|
540
567
|
id: string;
|
541
568
|
name: string;
|
@@ -545,6 +572,8 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
545
572
|
created_at: Date;
|
546
573
|
updated_at: Date;
|
547
574
|
active: boolean;
|
575
|
+
mainPictureUrl: string | null;
|
576
|
+
bannerUrl: string | null;
|
548
577
|
folderId: string | null;
|
549
578
|
tagAssistedId: string;
|
550
579
|
tagConfirmedId: string;
|
@@ -604,6 +633,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
604
633
|
startingDate: z.ZodString;
|
605
634
|
endingDate: z.ZodString;
|
606
635
|
location: z.ZodString;
|
636
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
637
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
638
|
+
description: z.ZodNullable<z.ZodString>;
|
607
639
|
folderId: z.ZodNullable<z.ZodString>;
|
608
640
|
tagAssistedId: z.ZodString;
|
609
641
|
tagConfirmedId: z.ZodString;
|
@@ -618,6 +650,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
618
650
|
startingDate: z.ZodString;
|
619
651
|
endingDate: z.ZodString;
|
620
652
|
location: z.ZodString;
|
653
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
654
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
655
|
+
description: z.ZodNullable<z.ZodString>;
|
621
656
|
folderId: z.ZodNullable<z.ZodString>;
|
622
657
|
tagAssistedId: z.ZodString;
|
623
658
|
tagConfirmedId: z.ZodString;
|
@@ -626,6 +661,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
626
661
|
created_at: z.ZodString;
|
627
662
|
updated_at: z.ZodString;
|
628
663
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
664
|
+
description: string | null;
|
629
665
|
location: string;
|
630
666
|
id: string;
|
631
667
|
name: string;
|
@@ -635,11 +671,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
635
671
|
created_at: string;
|
636
672
|
updated_at: string;
|
637
673
|
active: boolean;
|
674
|
+
mainPictureUrl: string | null;
|
675
|
+
bannerUrl: string | null;
|
638
676
|
folderId: string | null;
|
639
677
|
tagAssistedId: string;
|
640
678
|
tagConfirmedId: string;
|
641
679
|
supraEventId: string | null;
|
642
680
|
}, {
|
681
|
+
description: string | null;
|
643
682
|
location: string;
|
644
683
|
id: string;
|
645
684
|
name: string;
|
@@ -649,6 +688,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
649
688
|
created_at: string;
|
650
689
|
updated_at: string;
|
651
690
|
active: boolean;
|
691
|
+
mainPictureUrl: string | null;
|
692
|
+
bannerUrl: string | null;
|
652
693
|
folderId: string | null;
|
653
694
|
tagAssistedId: string;
|
654
695
|
tagConfirmedId: string;
|
@@ -661,6 +702,9 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
661
702
|
startingDate: z.ZodString;
|
662
703
|
endingDate: z.ZodString;
|
663
704
|
location: z.ZodString;
|
705
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
706
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
707
|
+
description: z.ZodNullable<z.ZodString>;
|
664
708
|
folderId: z.ZodNullable<z.ZodString>;
|
665
709
|
tagAssistedId: z.ZodString;
|
666
710
|
tagConfirmedId: z.ZodString;
|
@@ -669,6 +713,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
669
713
|
created_at: z.ZodString;
|
670
714
|
updated_at: z.ZodString;
|
671
715
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
716
|
+
description: string | null;
|
672
717
|
location: string;
|
673
718
|
id: string;
|
674
719
|
name: string;
|
@@ -678,11 +723,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
678
723
|
created_at: string;
|
679
724
|
updated_at: string;
|
680
725
|
active: boolean;
|
726
|
+
mainPictureUrl: string | null;
|
727
|
+
bannerUrl: string | null;
|
681
728
|
folderId: string | null;
|
682
729
|
tagAssistedId: string;
|
683
730
|
tagConfirmedId: string;
|
684
731
|
supraEventId: string | null;
|
685
732
|
}, {
|
733
|
+
description: string | null;
|
686
734
|
location: string;
|
687
735
|
id: string;
|
688
736
|
name: string;
|
@@ -692,12 +740,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
692
740
|
created_at: string;
|
693
741
|
updated_at: string;
|
694
742
|
active: boolean;
|
743
|
+
mainPictureUrl: string | null;
|
744
|
+
bannerUrl: string | null;
|
695
745
|
folderId: string | null;
|
696
746
|
tagAssistedId: string;
|
697
747
|
tagConfirmedId: string;
|
698
748
|
supraEventId: string | null;
|
699
749
|
}>>;
|
700
|
-
eventTickets: z.ZodArray<z.
|
750
|
+
eventTickets: z.ZodArray<z.ZodObject<{
|
701
751
|
id: z.ZodString;
|
702
752
|
amount: z.ZodNullable<z.ZodNumber>;
|
703
753
|
type: z.ZodNativeEnum<{
|
@@ -706,17 +756,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
706
756
|
SPECTATOR: "SPECTATOR";
|
707
757
|
}>;
|
708
758
|
price: z.ZodNullable<z.ZodNumber>;
|
709
|
-
},
|
710
|
-
id: string;
|
711
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
712
|
-
amount: number | null;
|
713
|
-
price: number | null;
|
714
|
-
}, {
|
715
|
-
id: string;
|
716
|
-
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
717
|
-
amount: number | null;
|
718
|
-
price: number | null;
|
719
|
-
}>, {
|
759
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
720
760
|
id: string;
|
721
761
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
722
762
|
amount: number | null;
|
@@ -967,6 +1007,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
967
1007
|
};
|
968
1008
|
}>;
|
969
1009
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1010
|
+
description: string | null;
|
970
1011
|
location: string;
|
971
1012
|
id: string;
|
972
1013
|
name: string;
|
@@ -992,11 +1033,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
992
1033
|
isExclusive: boolean;
|
993
1034
|
};
|
994
1035
|
}[];
|
1036
|
+
mainPictureUrl: string | null;
|
1037
|
+
bannerUrl: string | null;
|
995
1038
|
folderId: string | null;
|
996
1039
|
tagAssistedId: string;
|
997
1040
|
tagConfirmedId: string;
|
998
1041
|
supraEventId: string | null;
|
999
1042
|
subEvents: {
|
1043
|
+
description: string | null;
|
1000
1044
|
location: string;
|
1001
1045
|
id: string;
|
1002
1046
|
name: string;
|
@@ -1006,6 +1050,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1006
1050
|
created_at: string;
|
1007
1051
|
updated_at: string;
|
1008
1052
|
active: boolean;
|
1053
|
+
mainPictureUrl: string | null;
|
1054
|
+
bannerUrl: string | null;
|
1009
1055
|
folderId: string | null;
|
1010
1056
|
tagAssistedId: string;
|
1011
1057
|
tagConfirmedId: string;
|
@@ -1018,6 +1064,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1018
1064
|
price: number | null;
|
1019
1065
|
}[];
|
1020
1066
|
supraEvent: {
|
1067
|
+
description: string | null;
|
1021
1068
|
location: string;
|
1022
1069
|
id: string;
|
1023
1070
|
name: string;
|
@@ -1027,6 +1074,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1027
1074
|
created_at: string;
|
1028
1075
|
updated_at: string;
|
1029
1076
|
active: boolean;
|
1077
|
+
mainPictureUrl: string | null;
|
1078
|
+
bannerUrl: string | null;
|
1030
1079
|
folderId: string | null;
|
1031
1080
|
tagAssistedId: string;
|
1032
1081
|
tagConfirmedId: string;
|
@@ -1079,6 +1128,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1079
1128
|
};
|
1080
1129
|
};
|
1081
1130
|
}, {
|
1131
|
+
description: string | null;
|
1082
1132
|
location: string;
|
1083
1133
|
id: string;
|
1084
1134
|
name: string;
|
@@ -1104,11 +1154,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1104
1154
|
isExclusive: boolean;
|
1105
1155
|
};
|
1106
1156
|
}[];
|
1157
|
+
mainPictureUrl: string | null;
|
1158
|
+
bannerUrl: string | null;
|
1107
1159
|
folderId: string | null;
|
1108
1160
|
tagAssistedId: string;
|
1109
1161
|
tagConfirmedId: string;
|
1110
1162
|
supraEventId: string | null;
|
1111
1163
|
subEvents: {
|
1164
|
+
description: string | null;
|
1112
1165
|
location: string;
|
1113
1166
|
id: string;
|
1114
1167
|
name: string;
|
@@ -1118,6 +1171,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1118
1171
|
created_at: string;
|
1119
1172
|
updated_at: string;
|
1120
1173
|
active: boolean;
|
1174
|
+
mainPictureUrl: string | null;
|
1175
|
+
bannerUrl: string | null;
|
1121
1176
|
folderId: string | null;
|
1122
1177
|
tagAssistedId: string;
|
1123
1178
|
tagConfirmedId: string;
|
@@ -1130,6 +1185,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1130
1185
|
price: number | null;
|
1131
1186
|
}[];
|
1132
1187
|
supraEvent: {
|
1188
|
+
description: string | null;
|
1133
1189
|
location: string;
|
1134
1190
|
id: string;
|
1135
1191
|
name: string;
|
@@ -1139,6 +1195,8 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1139
1195
|
created_at: string;
|
1140
1196
|
updated_at: string;
|
1141
1197
|
active: boolean;
|
1198
|
+
mainPictureUrl: string | null;
|
1199
|
+
bannerUrl: string | null;
|
1142
1200
|
folderId: string | null;
|
1143
1201
|
tagAssistedId: string;
|
1144
1202
|
tagConfirmedId: string;
|
@@ -1200,6 +1258,9 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1200
1258
|
startingDate: z.ZodDate;
|
1201
1259
|
endingDate: z.ZodDate;
|
1202
1260
|
location: z.ZodString;
|
1261
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1262
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1263
|
+
description: z.ZodNullable<z.ZodString>;
|
1203
1264
|
folderId: z.ZodNullable<z.ZodString>;
|
1204
1265
|
tagAssistedId: z.ZodString;
|
1205
1266
|
tagConfirmedId: z.ZodString;
|
@@ -1263,6 +1324,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1263
1324
|
groupId: string;
|
1264
1325
|
}>;
|
1265
1326
|
}>, "strip", z.ZodTypeAny, {
|
1327
|
+
description: string | null;
|
1266
1328
|
location: string;
|
1267
1329
|
id: string;
|
1268
1330
|
name: string;
|
@@ -1272,6 +1334,8 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1272
1334
|
created_at: Date;
|
1273
1335
|
updated_at: Date;
|
1274
1336
|
active: boolean;
|
1337
|
+
mainPictureUrl: string | null;
|
1338
|
+
bannerUrl: string | null;
|
1275
1339
|
folderId: string | null;
|
1276
1340
|
tagAssistedId: string;
|
1277
1341
|
tagConfirmedId: string;
|
@@ -1293,6 +1357,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1293
1357
|
groupId: string;
|
1294
1358
|
};
|
1295
1359
|
}, {
|
1360
|
+
description: string | null;
|
1296
1361
|
location: string;
|
1297
1362
|
id: string;
|
1298
1363
|
name: string;
|
@@ -1302,6 +1367,8 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
1302
1367
|
created_at: Date;
|
1303
1368
|
updated_at: Date;
|
1304
1369
|
active: boolean;
|
1370
|
+
mainPictureUrl: string | null;
|
1371
|
+
bannerUrl: string | null;
|
1305
1372
|
folderId: string | null;
|
1306
1373
|
tagAssistedId: string;
|
1307
1374
|
tagConfirmedId: string;
|
@@ -1330,6 +1397,9 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1330
1397
|
startingDate: z.ZodString;
|
1331
1398
|
endingDate: z.ZodString;
|
1332
1399
|
location: z.ZodString;
|
1400
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
1401
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
1402
|
+
description: z.ZodNullable<z.ZodString>;
|
1333
1403
|
folderId: z.ZodNullable<z.ZodString>;
|
1334
1404
|
tagAssistedId: z.ZodString;
|
1335
1405
|
tagConfirmedId: z.ZodString;
|
@@ -1392,6 +1462,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1392
1462
|
groupId: string;
|
1393
1463
|
}>;
|
1394
1464
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1465
|
+
description: string | null;
|
1395
1466
|
location: string;
|
1396
1467
|
id: string;
|
1397
1468
|
name: string;
|
@@ -1401,6 +1472,8 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1401
1472
|
created_at: string;
|
1402
1473
|
updated_at: string;
|
1403
1474
|
active: boolean;
|
1475
|
+
mainPictureUrl: string | null;
|
1476
|
+
bannerUrl: string | null;
|
1404
1477
|
folderId: string | null;
|
1405
1478
|
tagAssistedId: string;
|
1406
1479
|
tagConfirmedId: string;
|
@@ -1422,6 +1495,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1422
1495
|
groupId: string;
|
1423
1496
|
};
|
1424
1497
|
}, {
|
1498
|
+
description: string | null;
|
1425
1499
|
location: string;
|
1426
1500
|
id: string;
|
1427
1501
|
name: string;
|
@@ -1431,6 +1505,8 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1431
1505
|
created_at: string;
|
1432
1506
|
updated_at: string;
|
1433
1507
|
active: boolean;
|
1508
|
+
mainPictureUrl: string | null;
|
1509
|
+
bannerUrl: string | null;
|
1434
1510
|
folderId: string | null;
|
1435
1511
|
tagAssistedId: string;
|
1436
1512
|
tagConfirmedId: string;
|
@@ -5,6 +5,9 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
|
|
5
5
|
startingDate: import("zod").ZodDate;
|
6
6
|
endingDate: import("zod").ZodDate;
|
7
7
|
location: import("zod").ZodString;
|
8
|
+
mainPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
9
|
+
bannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
10
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
8
11
|
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
9
12
|
tagAssistedId: import("zod").ZodString;
|
10
13
|
tagConfirmedId: import("zod").ZodString;
|
@@ -13,6 +16,7 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
|
|
13
16
|
created_at: import("zod").ZodDate;
|
14
17
|
updated_at: import("zod").ZodDate;
|
15
18
|
}, "strip", import("zod").ZodTypeAny, {
|
19
|
+
description: string | null;
|
16
20
|
location: string;
|
17
21
|
id: string;
|
18
22
|
name: string;
|
@@ -22,11 +26,14 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
|
|
22
26
|
created_at: Date;
|
23
27
|
updated_at: Date;
|
24
28
|
active: boolean;
|
29
|
+
mainPictureUrl: string | null;
|
30
|
+
bannerUrl: string | null;
|
25
31
|
folderId: string | null;
|
26
32
|
tagAssistedId: string;
|
27
33
|
tagConfirmedId: string;
|
28
34
|
supraEventId: string | null;
|
29
35
|
}, {
|
36
|
+
description: string | null;
|
30
37
|
location: string;
|
31
38
|
id: string;
|
32
39
|
name: string;
|
@@ -36,6 +43,8 @@ export declare const toggleActiveResponseSchema: import("zod").ZodObject<{
|
|
36
43
|
created_at: Date;
|
37
44
|
updated_at: Date;
|
38
45
|
active: boolean;
|
46
|
+
mainPictureUrl: string | null;
|
47
|
+
bannerUrl: string | null;
|
39
48
|
folderId: string | null;
|
40
49
|
tagAssistedId: string;
|
41
50
|
tagConfirmedId: string;
|