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