expo-backend-types 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.2 → 0.46.0-EXPO-339-Testing-y-bugfixing.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 +24 -77
- package/dist/src/event/dto/create-event.dto.js +2 -14
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
- package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
- package/dist/src/event/dto/event-tickets.dto.js +16 -8
- package/dist/src/event/dto/event.dto.d.ts +0 -9
- package/dist/src/event/dto/event.dto.js +0 -13
- package/dist/src/event/dto/get-active-events.dto.d.ts +23 -33
- package/dist/src/event/dto/get-all-event.dto.d.ts +48 -272
- package/dist/src/event/dto/get-all-event.dto.js +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +23 -99
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -9
- package/dist/src/event/dto/update-event.dto.d.ts +44 -31
- package/dist/src/event/dto/update-event.dto.js +2 -2
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
- package/dist/src/i18n/es.d.ts +1 -7
- package/dist/src/i18n/es.js +3 -7
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
- package/dist/types/prisma-schema/edge.js +3 -6
- package/dist/types/prisma-schema/index-browser.js +0 -3
- package/dist/types/prisma-schema/index.d.ts +1 -214
- package/dist/types/prisma-schema/index.js +3 -6
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -9
- package/dist/types/prisma-schema/wasm.js +0 -3
- package/dist/types/schema.d.ts +0 -66
- package/package.json +1 -1
@@ -25,9 +25,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
25
25
|
startingDate: z.ZodDate;
|
26
26
|
endingDate: z.ZodDate;
|
27
27
|
location: z.ZodString;
|
28
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
31
28
|
folderId: z.ZodNullable<z.ZodString>;
|
32
29
|
tagAssistedId: z.ZodString;
|
33
30
|
tagConfirmedId: z.ZodString;
|
@@ -25,9 +25,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
25
25
|
startingDate: z.ZodDate;
|
26
26
|
endingDate: z.ZodDate;
|
27
27
|
location: z.ZodString;
|
28
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
31
28
|
folderId: z.ZodNullable<z.ZodString>;
|
32
29
|
tagAssistedId: z.ZodString;
|
33
30
|
tagConfirmedId: z.ZodString;
|
@@ -42,12 +39,9 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
42
39
|
date: Date;
|
43
40
|
startingDate: Date;
|
44
41
|
endingDate: Date;
|
45
|
-
eventPictureUrl: string | null;
|
46
|
-
eventBannerUrl: string | null;
|
47
42
|
created_at: Date;
|
48
43
|
updated_at: Date;
|
49
44
|
active: boolean;
|
50
|
-
eventDescription: string | null;
|
51
45
|
folderId: string | null;
|
52
46
|
tagAssistedId: string;
|
53
47
|
tagConfirmedId: string;
|
@@ -59,12 +53,9 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
59
53
|
date: Date;
|
60
54
|
startingDate: Date;
|
61
55
|
endingDate: Date;
|
62
|
-
eventPictureUrl: string | null;
|
63
|
-
eventBannerUrl: string | null;
|
64
56
|
created_at: Date;
|
65
57
|
updated_at: Date;
|
66
58
|
active: boolean;
|
67
|
-
eventDescription: string | null;
|
68
59
|
folderId: string | null;
|
69
60
|
tagAssistedId: string;
|
70
61
|
tagConfirmedId: string;
|
@@ -161,12 +152,9 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
161
152
|
date: Date;
|
162
153
|
startingDate: Date;
|
163
154
|
endingDate: Date;
|
164
|
-
eventPictureUrl: string | null;
|
165
|
-
eventBannerUrl: string | null;
|
166
155
|
created_at: Date;
|
167
156
|
updated_at: Date;
|
168
157
|
active: boolean;
|
169
|
-
eventDescription: string | null;
|
170
158
|
folderId: string | null;
|
171
159
|
tagAssistedId: string;
|
172
160
|
tagConfirmedId: string;
|
@@ -219,12 +207,9 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
219
207
|
date: Date;
|
220
208
|
startingDate: Date;
|
221
209
|
endingDate: Date;
|
222
|
-
eventPictureUrl: string | null;
|
223
|
-
eventBannerUrl: string | null;
|
224
210
|
created_at: Date;
|
225
211
|
updated_at: Date;
|
226
212
|
active: boolean;
|
227
|
-
eventDescription: string | null;
|
228
213
|
folderId: string | null;
|
229
214
|
tagAssistedId: string;
|
230
215
|
tagConfirmedId: string;
|
@@ -279,12 +264,9 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
279
264
|
date: Date;
|
280
265
|
startingDate: Date;
|
281
266
|
endingDate: Date;
|
282
|
-
eventPictureUrl: string | null;
|
283
|
-
eventBannerUrl: string | null;
|
284
267
|
created_at: Date;
|
285
268
|
updated_at: Date;
|
286
269
|
active: boolean;
|
287
|
-
eventDescription: string | null;
|
288
270
|
folderId: string | null;
|
289
271
|
tagAssistedId: string;
|
290
272
|
tagConfirmedId: string;
|
@@ -339,12 +321,9 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
339
321
|
date: Date;
|
340
322
|
startingDate: Date;
|
341
323
|
endingDate: Date;
|
342
|
-
eventPictureUrl: string | null;
|
343
|
-
eventBannerUrl: string | null;
|
344
324
|
created_at: Date;
|
345
325
|
updated_at: Date;
|
346
326
|
active: boolean;
|
347
|
-
eventDescription: string | null;
|
348
327
|
folderId: string | null;
|
349
328
|
tagAssistedId: string;
|
350
329
|
tagConfirmedId: string;
|
@@ -416,9 +395,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
416
395
|
startingDate: z.ZodString;
|
417
396
|
endingDate: z.ZodString;
|
418
397
|
location: z.ZodString;
|
419
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
420
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
421
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
422
398
|
folderId: z.ZodNullable<z.ZodString>;
|
423
399
|
tagAssistedId: z.ZodString;
|
424
400
|
tagConfirmedId: z.ZodString;
|
@@ -433,12 +409,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
433
409
|
date: string;
|
434
410
|
startingDate: string;
|
435
411
|
endingDate: string;
|
436
|
-
eventPictureUrl: string | null;
|
437
|
-
eventBannerUrl: string | null;
|
438
412
|
created_at: string;
|
439
413
|
updated_at: string;
|
440
414
|
active: boolean;
|
441
|
-
eventDescription: string | null;
|
442
415
|
folderId: string | null;
|
443
416
|
tagAssistedId: string;
|
444
417
|
tagConfirmedId: string;
|
@@ -450,12 +423,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
450
423
|
date: string;
|
451
424
|
startingDate: string;
|
452
425
|
endingDate: string;
|
453
|
-
eventPictureUrl: string | null;
|
454
|
-
eventBannerUrl: string | null;
|
455
426
|
created_at: string;
|
456
427
|
updated_at: string;
|
457
428
|
active: boolean;
|
458
|
-
eventDescription: string | null;
|
459
429
|
folderId: string | null;
|
460
430
|
tagAssistedId: string;
|
461
431
|
tagConfirmedId: string;
|
@@ -552,12 +522,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
552
522
|
date: string;
|
553
523
|
startingDate: string;
|
554
524
|
endingDate: string;
|
555
|
-
eventPictureUrl: string | null;
|
556
|
-
eventBannerUrl: string | null;
|
557
525
|
created_at: string;
|
558
526
|
updated_at: string;
|
559
527
|
active: boolean;
|
560
|
-
eventDescription: string | null;
|
561
528
|
folderId: string | null;
|
562
529
|
tagAssistedId: string;
|
563
530
|
tagConfirmedId: string;
|
@@ -610,12 +577,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
610
577
|
date: string;
|
611
578
|
startingDate: string;
|
612
579
|
endingDate: string;
|
613
|
-
eventPictureUrl: string | null;
|
614
|
-
eventBannerUrl: string | null;
|
615
580
|
created_at: string;
|
616
581
|
updated_at: string;
|
617
582
|
active: boolean;
|
618
|
-
eventDescription: string | null;
|
619
583
|
folderId: string | null;
|
620
584
|
tagAssistedId: string;
|
621
585
|
tagConfirmedId: string;
|
@@ -670,12 +634,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
670
634
|
date: string;
|
671
635
|
startingDate: string;
|
672
636
|
endingDate: string;
|
673
|
-
eventPictureUrl: string | null;
|
674
|
-
eventBannerUrl: string | null;
|
675
637
|
created_at: string;
|
676
638
|
updated_at: string;
|
677
639
|
active: boolean;
|
678
|
-
eventDescription: string | null;
|
679
640
|
folderId: string | null;
|
680
641
|
tagAssistedId: string;
|
681
642
|
tagConfirmedId: string;
|
@@ -730,12 +691,9 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
730
691
|
date: string;
|
731
692
|
startingDate: string;
|
732
693
|
endingDate: string;
|
733
|
-
eventPictureUrl: string | null;
|
734
|
-
eventBannerUrl: string | null;
|
735
694
|
created_at: string;
|
736
695
|
updated_at: string;
|
737
696
|
active: boolean;
|
738
|
-
eventDescription: string | null;
|
739
697
|
folderId: string | null;
|
740
698
|
tagAssistedId: string;
|
741
699
|
tagConfirmedId: string;
|
@@ -25,9 +25,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
25
25
|
startingDate: z.ZodDate;
|
26
26
|
endingDate: z.ZodDate;
|
27
27
|
location: z.ZodString;
|
28
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
31
28
|
folderId: z.ZodNullable<z.ZodString>;
|
32
29
|
tagAssistedId: z.ZodString;
|
33
30
|
tagConfirmedId: z.ZodString;
|
@@ -25,9 +25,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
25
25
|
startingDate: z.ZodDate;
|
26
26
|
endingDate: z.ZodDate;
|
27
27
|
location: z.ZodString;
|
28
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
31
28
|
folderId: z.ZodNullable<z.ZodString>;
|
32
29
|
tagAssistedId: z.ZodString;
|
33
30
|
tagConfirmedId: z.ZodString;
|
@@ -42,12 +39,9 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
42
39
|
date: Date;
|
43
40
|
startingDate: Date;
|
44
41
|
endingDate: Date;
|
45
|
-
eventPictureUrl: string | null;
|
46
|
-
eventBannerUrl: string | null;
|
47
42
|
created_at: Date;
|
48
43
|
updated_at: Date;
|
49
44
|
active: boolean;
|
50
|
-
eventDescription: string | null;
|
51
45
|
folderId: string | null;
|
52
46
|
tagAssistedId: string;
|
53
47
|
tagConfirmedId: string;
|
@@ -59,12 +53,9 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
59
53
|
date: Date;
|
60
54
|
startingDate: Date;
|
61
55
|
endingDate: Date;
|
62
|
-
eventPictureUrl: string | null;
|
63
|
-
eventBannerUrl: string | null;
|
64
56
|
created_at: Date;
|
65
57
|
updated_at: Date;
|
66
58
|
active: boolean;
|
67
|
-
eventDescription: string | null;
|
68
59
|
folderId: string | null;
|
69
60
|
tagAssistedId: string;
|
70
61
|
tagConfirmedId: string;
|
@@ -78,12 +69,9 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
78
69
|
date: Date;
|
79
70
|
startingDate: Date;
|
80
71
|
endingDate: Date;
|
81
|
-
eventPictureUrl: string | null;
|
82
|
-
eventBannerUrl: string | null;
|
83
72
|
created_at: Date;
|
84
73
|
updated_at: Date;
|
85
74
|
active: boolean;
|
86
|
-
eventDescription: string | null;
|
87
75
|
folderId: string | null;
|
88
76
|
tagAssistedId: string;
|
89
77
|
tagConfirmedId: string;
|
@@ -109,12 +97,9 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
109
97
|
date: Date;
|
110
98
|
startingDate: Date;
|
111
99
|
endingDate: Date;
|
112
|
-
eventPictureUrl: string | null;
|
113
|
-
eventBannerUrl: string | null;
|
114
100
|
created_at: Date;
|
115
101
|
updated_at: Date;
|
116
102
|
active: boolean;
|
117
|
-
eventDescription: string | null;
|
118
103
|
folderId: string | null;
|
119
104
|
tagAssistedId: string;
|
120
105
|
tagConfirmedId: string;
|
@@ -142,12 +127,9 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
142
127
|
date: Date;
|
143
128
|
startingDate: Date;
|
144
129
|
endingDate: Date;
|
145
|
-
eventPictureUrl: string | null;
|
146
|
-
eventBannerUrl: string | null;
|
147
130
|
created_at: Date;
|
148
131
|
updated_at: Date;
|
149
132
|
active: boolean;
|
150
|
-
eventDescription: string | null;
|
151
133
|
folderId: string | null;
|
152
134
|
tagAssistedId: string;
|
153
135
|
tagConfirmedId: string;
|
@@ -175,12 +157,9 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
175
157
|
date: Date;
|
176
158
|
startingDate: Date;
|
177
159
|
endingDate: Date;
|
178
|
-
eventPictureUrl: string | null;
|
179
|
-
eventBannerUrl: string | null;
|
180
160
|
created_at: Date;
|
181
161
|
updated_at: Date;
|
182
162
|
active: boolean;
|
183
|
-
eventDescription: string | null;
|
184
163
|
folderId: string | null;
|
185
164
|
tagAssistedId: string;
|
186
165
|
tagConfirmedId: string;
|
@@ -225,9 +204,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
225
204
|
startingDate: z.ZodString;
|
226
205
|
endingDate: z.ZodString;
|
227
206
|
location: z.ZodString;
|
228
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
229
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
230
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
231
207
|
folderId: z.ZodNullable<z.ZodString>;
|
232
208
|
tagAssistedId: z.ZodString;
|
233
209
|
tagConfirmedId: z.ZodString;
|
@@ -242,12 +218,9 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
242
218
|
date: string;
|
243
219
|
startingDate: string;
|
244
220
|
endingDate: string;
|
245
|
-
eventPictureUrl: string | null;
|
246
|
-
eventBannerUrl: string | null;
|
247
221
|
created_at: string;
|
248
222
|
updated_at: string;
|
249
223
|
active: boolean;
|
250
|
-
eventDescription: string | null;
|
251
224
|
folderId: string | null;
|
252
225
|
tagAssistedId: string;
|
253
226
|
tagConfirmedId: string;
|
@@ -259,12 +232,9 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
259
232
|
date: string;
|
260
233
|
startingDate: string;
|
261
234
|
endingDate: string;
|
262
|
-
eventPictureUrl: string | null;
|
263
|
-
eventBannerUrl: string | null;
|
264
235
|
created_at: string;
|
265
236
|
updated_at: string;
|
266
237
|
active: boolean;
|
267
|
-
eventDescription: string | null;
|
268
238
|
folderId: string | null;
|
269
239
|
tagAssistedId: string;
|
270
240
|
tagConfirmedId: string;
|
@@ -278,12 +248,9 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
278
248
|
date: string;
|
279
249
|
startingDate: string;
|
280
250
|
endingDate: string;
|
281
|
-
eventPictureUrl: string | null;
|
282
|
-
eventBannerUrl: string | null;
|
283
251
|
created_at: string;
|
284
252
|
updated_at: string;
|
285
253
|
active: boolean;
|
286
|
-
eventDescription: string | null;
|
287
254
|
folderId: string | null;
|
288
255
|
tagAssistedId: string;
|
289
256
|
tagConfirmedId: string;
|
@@ -309,12 +276,9 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
309
276
|
date: string;
|
310
277
|
startingDate: string;
|
311
278
|
endingDate: string;
|
312
|
-
eventPictureUrl: string | null;
|
313
|
-
eventBannerUrl: string | null;
|
314
279
|
created_at: string;
|
315
280
|
updated_at: string;
|
316
281
|
active: boolean;
|
317
|
-
eventDescription: string | null;
|
318
282
|
folderId: string | null;
|
319
283
|
tagAssistedId: string;
|
320
284
|
tagConfirmedId: string;
|
@@ -342,12 +306,9 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
342
306
|
date: string;
|
343
307
|
startingDate: string;
|
344
308
|
endingDate: string;
|
345
|
-
eventPictureUrl: string | null;
|
346
|
-
eventBannerUrl: string | null;
|
347
309
|
created_at: string;
|
348
310
|
updated_at: string;
|
349
311
|
active: boolean;
|
350
|
-
eventDescription: string | null;
|
351
312
|
folderId: string | null;
|
352
313
|
tagAssistedId: string;
|
353
314
|
tagConfirmedId: string;
|
@@ -375,12 +336,9 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
375
336
|
date: string;
|
376
337
|
startingDate: string;
|
377
338
|
endingDate: string;
|
378
|
-
eventPictureUrl: string | null;
|
379
|
-
eventBannerUrl: string | null;
|
380
339
|
created_at: string;
|
381
340
|
updated_at: string;
|
382
341
|
active: boolean;
|
383
|
-
eventDescription: string | null;
|
384
342
|
folderId: string | null;
|
385
343
|
tagAssistedId: string;
|
386
344
|
tagConfirmedId: string;
|
@@ -92,9 +92,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
92
92
|
startingDate: z.ZodDate;
|
93
93
|
endingDate: z.ZodDate;
|
94
94
|
location: z.ZodString;
|
95
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
96
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
97
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
98
95
|
folderId: z.ZodNullable<z.ZodString>;
|
99
96
|
tagAssistedId: z.ZodString;
|
100
97
|
tagConfirmedId: z.ZodString;
|
@@ -109,12 +106,9 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
109
106
|
date: Date;
|
110
107
|
startingDate: Date;
|
111
108
|
endingDate: Date;
|
112
|
-
eventPictureUrl: string | null;
|
113
|
-
eventBannerUrl: string | null;
|
114
109
|
created_at: Date;
|
115
110
|
updated_at: Date;
|
116
111
|
active: boolean;
|
117
|
-
eventDescription: string | null;
|
118
112
|
folderId: string | null;
|
119
113
|
tagAssistedId: string;
|
120
114
|
tagConfirmedId: string;
|
@@ -126,12 +120,9 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
126
120
|
date: Date;
|
127
121
|
startingDate: Date;
|
128
122
|
endingDate: Date;
|
129
|
-
eventPictureUrl: string | null;
|
130
|
-
eventBannerUrl: string | null;
|
131
123
|
created_at: Date;
|
132
124
|
updated_at: Date;
|
133
125
|
active: boolean;
|
134
|
-
eventDescription: string | null;
|
135
126
|
folderId: string | null;
|
136
127
|
tagAssistedId: string;
|
137
128
|
tagConfirmedId: string;
|
@@ -145,12 +136,9 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
145
136
|
date: Date;
|
146
137
|
startingDate: Date;
|
147
138
|
endingDate: Date;
|
148
|
-
eventPictureUrl: string | null;
|
149
|
-
eventBannerUrl: string | null;
|
150
139
|
created_at: Date;
|
151
140
|
updated_at: Date;
|
152
141
|
active: boolean;
|
153
|
-
eventDescription: string | null;
|
154
142
|
folderId: string | null;
|
155
143
|
tagAssistedId: string;
|
156
144
|
tagConfirmedId: string;
|
@@ -184,12 +172,9 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
184
172
|
date: Date;
|
185
173
|
startingDate: Date;
|
186
174
|
endingDate: Date;
|
187
|
-
eventPictureUrl: string | null;
|
188
|
-
eventBannerUrl: string | null;
|
189
175
|
created_at: Date;
|
190
176
|
updated_at: Date;
|
191
177
|
active: boolean;
|
192
|
-
eventDescription: string | null;
|
193
178
|
folderId: string | null;
|
194
179
|
tagAssistedId: string;
|
195
180
|
tagConfirmedId: string;
|
@@ -278,9 +263,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
278
263
|
startingDate: z.ZodString;
|
279
264
|
endingDate: z.ZodString;
|
280
265
|
location: z.ZodString;
|
281
|
-
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
282
|
-
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
283
|
-
eventDescription: z.ZodNullable<z.ZodString>;
|
284
266
|
folderId: z.ZodNullable<z.ZodString>;
|
285
267
|
tagAssistedId: z.ZodString;
|
286
268
|
tagConfirmedId: z.ZodString;
|
@@ -295,12 +277,9 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
295
277
|
date: string;
|
296
278
|
startingDate: string;
|
297
279
|
endingDate: string;
|
298
|
-
eventPictureUrl: string | null;
|
299
|
-
eventBannerUrl: string | null;
|
300
280
|
created_at: string;
|
301
281
|
updated_at: string;
|
302
282
|
active: boolean;
|
303
|
-
eventDescription: string | null;
|
304
283
|
folderId: string | null;
|
305
284
|
tagAssistedId: string;
|
306
285
|
tagConfirmedId: string;
|
@@ -312,12 +291,9 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
312
291
|
date: string;
|
313
292
|
startingDate: string;
|
314
293
|
endingDate: string;
|
315
|
-
eventPictureUrl: string | null;
|
316
|
-
eventBannerUrl: string | null;
|
317
294
|
created_at: string;
|
318
295
|
updated_at: string;
|
319
296
|
active: boolean;
|
320
|
-
eventDescription: string | null;
|
321
297
|
folderId: string | null;
|
322
298
|
tagAssistedId: string;
|
323
299
|
tagConfirmedId: string;
|
@@ -331,12 +307,9 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
331
307
|
date: string;
|
332
308
|
startingDate: string;
|
333
309
|
endingDate: string;
|
334
|
-
eventPictureUrl: string | null;
|
335
|
-
eventBannerUrl: string | null;
|
336
310
|
created_at: string;
|
337
311
|
updated_at: string;
|
338
312
|
active: boolean;
|
339
|
-
eventDescription: string | null;
|
340
313
|
folderId: string | null;
|
341
314
|
tagAssistedId: string;
|
342
315
|
tagConfirmedId: string;
|
@@ -370,12 +343,9 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
370
343
|
date: string;
|
371
344
|
startingDate: string;
|
372
345
|
endingDate: string;
|
373
|
-
eventPictureUrl: string | null;
|
374
|
-
eventBannerUrl: string | null;
|
375
346
|
created_at: string;
|
376
347
|
updated_at: string;
|
377
348
|
active: boolean;
|
378
|
-
eventDescription: string | null;
|
379
349
|
folderId: string | null;
|
380
350
|
tagAssistedId: string;
|
381
351
|
tagConfirmedId: string;
|