expo-backend-types 0.49.0-EXPO-343-Quique-Wolff.1 → 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.
Files changed (51) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +23 -72
  2. package/dist/src/event/dto/create-event.dto.js +1 -7
  3. package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
  4. package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
  5. package/dist/src/event/dto/event-tickets.dto.js +18 -8
  6. package/dist/src/event/dto/event.dto.d.ts +0 -9
  7. package/dist/src/event/dto/event.dto.js +0 -13
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +23 -33
  9. package/dist/src/event/dto/get-all-event.dto.d.ts +48 -272
  10. package/dist/src/event/dto/get-all-event.dto.js +2 -2
  11. package/dist/src/event/dto/get-by-id-event.dto.d.ts +23 -99
  12. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +8 -0
  13. package/dist/src/event/dto/get-statistics-by-id-event.dto.js +11 -0
  14. package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -9
  15. package/dist/src/event/dto/update-event.dto.d.ts +46 -75
  16. package/dist/src/event/dto/update-event.dto.js +2 -8
  17. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
  18. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
  19. package/dist/src/i18n/es.d.ts +1 -7
  20. package/dist/src/i18n/es.js +3 -7
  21. package/dist/src/i18n/es.js.map +1 -1
  22. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
  23. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
  24. package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
  25. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
  26. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
  27. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
  28. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
  29. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
  30. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
  31. package/dist/types/prisma-schema/edge.js +3 -6
  32. package/dist/types/prisma-schema/index-browser.js +0 -3
  33. package/dist/types/prisma-schema/index.d.ts +1 -214
  34. package/dist/types/prisma-schema/index.js +3 -6
  35. package/dist/types/prisma-schema/package.json +1 -1
  36. package/dist/types/prisma-schema/schema.prisma +6 -9
  37. package/dist/types/prisma-schema/wasm.js +0 -3
  38. package/dist/types/schema.d.ts +92 -377
  39. package/package.json +2 -1
  40. package/dist/src/event/dto/delete-banner-event.dto.d.ts +0 -18
  41. package/dist/src/event/dto/delete-banner-event.dto.js +0 -12
  42. package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +0 -18
  43. package/dist/src/event/dto/delete-main-picture-event.dto.js +0 -12
  44. package/dist/src/event/dto/update-banner-event.dto.d.ts +0 -33
  45. package/dist/src/event/dto/update-banner-event.dto.js +0 -18
  46. package/dist/src/event/dto/update-main-picture-event.dto.d.ts +0 -33
  47. package/dist/src/event/dto/update-main-picture-event.dto.js +0 -18
  48. package/dist/src/profile/dto/delete-image-profile.dto.d.ts +0 -18
  49. package/dist/src/profile/dto/delete-image-profile.dto.js +0 -12
  50. package/dist/src/profile/dto/update-image-profile.dto.d.ts +0 -33
  51. package/dist/src/profile/dto/update-image-profile.dto.js +0 -18
@@ -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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
29
- bannerUrl: z.ZodNullable<z.ZodString>;
30
- description: z.ZodNullable<z.ZodString>;
31
28
  folderId: z.ZodNullable<z.ZodString>;
32
29
  tagAssistedId: z.ZodString;
33
30
  tagConfirmedId: z.ZodString;
@@ -36,7 +33,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
36
33
  created_at: z.ZodDate;
37
34
  updated_at: z.ZodDate;
38
35
  }, "strip", z.ZodTypeAny, {
39
- description: string | null;
40
36
  location: string;
41
37
  id: string;
42
38
  name: string;
@@ -46,14 +42,11 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
46
42
  created_at: Date;
47
43
  updated_at: Date;
48
44
  active: boolean;
49
- mainPictureUrl: string | null;
50
- bannerUrl: string | null;
51
45
  folderId: string | null;
52
46
  tagAssistedId: string;
53
47
  tagConfirmedId: string;
54
48
  supraEventId: string | null;
55
49
  }, {
56
- description: string | null;
57
50
  location: string;
58
51
  id: string;
59
52
  name: string;
@@ -63,8 +56,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
63
56
  created_at: Date;
64
57
  updated_at: Date;
65
58
  active: boolean;
66
- mainPictureUrl: string | null;
67
- bannerUrl: string | null;
68
59
  folderId: string | null;
69
60
  tagAssistedId: string;
70
61
  tagConfirmedId: string;
@@ -155,7 +146,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
155
146
  profileId: z.ZodNullable<z.ZodString>;
156
147
  }>, "strip", z.ZodTypeAny, {
157
148
  event: {
158
- description: string | null;
159
149
  location: string;
160
150
  id: string;
161
151
  name: string;
@@ -165,8 +155,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
165
155
  created_at: Date;
166
156
  updated_at: Date;
167
157
  active: boolean;
168
- mainPictureUrl: string | null;
169
- bannerUrl: string | null;
170
158
  folderId: string | null;
171
159
  tagAssistedId: string;
172
160
  tagConfirmedId: string;
@@ -213,7 +201,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
213
201
  ticketGroupId: string | null;
214
202
  }, {
215
203
  event: {
216
- description: string | null;
217
204
  location: string;
218
205
  id: string;
219
206
  name: string;
@@ -223,8 +210,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
223
210
  created_at: Date;
224
211
  updated_at: Date;
225
212
  active: boolean;
226
- mainPictureUrl: string | null;
227
- bannerUrl: string | null;
228
213
  folderId: string | null;
229
214
  tagAssistedId: string;
230
215
  tagConfirmedId: string;
@@ -273,7 +258,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
273
258
  }, "strip", z.ZodTypeAny, {
274
259
  ticket: {
275
260
  event: {
276
- description: string | null;
277
261
  location: string;
278
262
  id: string;
279
263
  name: string;
@@ -283,8 +267,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
283
267
  created_at: Date;
284
268
  updated_at: Date;
285
269
  active: boolean;
286
- mainPictureUrl: string | null;
287
- bannerUrl: string | null;
288
270
  folderId: string | null;
289
271
  tagAssistedId: string;
290
272
  tagConfirmedId: string;
@@ -333,7 +315,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
333
315
  }, {
334
316
  ticket: {
335
317
  event: {
336
- description: string | null;
337
318
  location: string;
338
319
  id: string;
339
320
  name: string;
@@ -343,8 +324,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
343
324
  created_at: Date;
344
325
  updated_at: Date;
345
326
  active: boolean;
346
- mainPictureUrl: string | null;
347
- bannerUrl: 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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
420
- bannerUrl: z.ZodNullable<z.ZodString>;
421
- description: z.ZodNullable<z.ZodString>;
422
398
  folderId: z.ZodNullable<z.ZodString>;
423
399
  tagAssistedId: z.ZodString;
424
400
  tagConfirmedId: z.ZodString;
@@ -427,7 +403,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
427
403
  created_at: z.ZodString;
428
404
  updated_at: z.ZodString;
429
405
  }, z.UnknownKeysParam, z.ZodTypeAny, {
430
- description: string | null;
431
406
  location: string;
432
407
  id: string;
433
408
  name: string;
@@ -437,14 +412,11 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
437
412
  created_at: string;
438
413
  updated_at: string;
439
414
  active: boolean;
440
- mainPictureUrl: string | null;
441
- bannerUrl: string | null;
442
415
  folderId: string | null;
443
416
  tagAssistedId: string;
444
417
  tagConfirmedId: string;
445
418
  supraEventId: string | null;
446
419
  }, {
447
- description: string | null;
448
420
  location: string;
449
421
  id: string;
450
422
  name: string;
@@ -454,8 +426,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
454
426
  created_at: string;
455
427
  updated_at: string;
456
428
  active: boolean;
457
- mainPictureUrl: string | null;
458
- bannerUrl: string | null;
459
429
  folderId: string | null;
460
430
  tagAssistedId: string;
461
431
  tagConfirmedId: string;
@@ -546,7 +516,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
546
516
  profileId: z.ZodNullable<z.ZodString>;
547
517
  }, z.UnknownKeysParam, z.ZodTypeAny, {
548
518
  event: {
549
- description: string | null;
550
519
  location: string;
551
520
  id: string;
552
521
  name: string;
@@ -556,8 +525,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
556
525
  created_at: string;
557
526
  updated_at: string;
558
527
  active: boolean;
559
- mainPictureUrl: string | null;
560
- bannerUrl: string | null;
561
528
  folderId: string | null;
562
529
  tagAssistedId: string;
563
530
  tagConfirmedId: string;
@@ -604,7 +571,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
604
571
  ticketGroupId: string | null;
605
572
  }, {
606
573
  event: {
607
- description: string | null;
608
574
  location: string;
609
575
  id: string;
610
576
  name: string;
@@ -614,8 +580,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
614
580
  created_at: string;
615
581
  updated_at: string;
616
582
  active: boolean;
617
- mainPictureUrl: string | null;
618
- bannerUrl: string | null;
619
583
  folderId: string | null;
620
584
  tagAssistedId: string;
621
585
  tagConfirmedId: string;
@@ -664,7 +628,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
664
628
  }, z.UnknownKeysParam, z.ZodTypeAny, {
665
629
  ticket: {
666
630
  event: {
667
- description: string | null;
668
631
  location: string;
669
632
  id: string;
670
633
  name: string;
@@ -674,8 +637,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
674
637
  created_at: string;
675
638
  updated_at: string;
676
639
  active: boolean;
677
- mainPictureUrl: string | null;
678
- bannerUrl: string | null;
679
640
  folderId: string | null;
680
641
  tagAssistedId: string;
681
642
  tagConfirmedId: string;
@@ -724,7 +685,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
724
685
  }, {
725
686
  ticket: {
726
687
  event: {
727
- description: string | null;
728
688
  location: string;
729
689
  id: string;
730
690
  name: string;
@@ -734,8 +694,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
734
694
  created_at: string;
735
695
  updated_at: string;
736
696
  active: boolean;
737
- mainPictureUrl: string | null;
738
- bannerUrl: 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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
29
- bannerUrl: z.ZodNullable<z.ZodString>;
30
- description: 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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
29
- bannerUrl: z.ZodNullable<z.ZodString>;
30
- description: z.ZodNullable<z.ZodString>;
31
28
  folderId: z.ZodNullable<z.ZodString>;
32
29
  tagAssistedId: z.ZodString;
33
30
  tagConfirmedId: z.ZodString;
@@ -36,7 +33,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
36
33
  created_at: z.ZodDate;
37
34
  updated_at: z.ZodDate;
38
35
  }, "strip", z.ZodTypeAny, {
39
- description: string | null;
40
36
  location: string;
41
37
  id: string;
42
38
  name: string;
@@ -46,14 +42,11 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
46
42
  created_at: Date;
47
43
  updated_at: Date;
48
44
  active: boolean;
49
- mainPictureUrl: string | null;
50
- bannerUrl: string | null;
51
45
  folderId: string | null;
52
46
  tagAssistedId: string;
53
47
  tagConfirmedId: string;
54
48
  supraEventId: string | null;
55
49
  }, {
56
- description: string | null;
57
50
  location: string;
58
51
  id: string;
59
52
  name: string;
@@ -63,8 +56,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
63
56
  created_at: Date;
64
57
  updated_at: Date;
65
58
  active: boolean;
66
- mainPictureUrl: string | null;
67
- bannerUrl: string | null;
68
59
  folderId: string | null;
69
60
  tagAssistedId: string;
70
61
  tagConfirmedId: string;
@@ -72,7 +63,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
72
63
  }>;
73
64
  }>, "strip", z.ZodTypeAny, {
74
65
  event: {
75
- description: string | null;
76
66
  location: string;
77
67
  id: string;
78
68
  name: string;
@@ -82,8 +72,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
82
72
  created_at: Date;
83
73
  updated_at: Date;
84
74
  active: boolean;
85
- mainPictureUrl: string | null;
86
- bannerUrl: string | null;
87
75
  folderId: string | null;
88
76
  tagAssistedId: string;
89
77
  tagConfirmedId: string;
@@ -103,7 +91,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
103
91
  ticketGroupId: string | null;
104
92
  }, {
105
93
  event: {
106
- description: string | null;
107
94
  location: string;
108
95
  id: string;
109
96
  name: string;
@@ -113,8 +100,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
113
100
  created_at: Date;
114
101
  updated_at: Date;
115
102
  active: boolean;
116
- mainPictureUrl: string | null;
117
- bannerUrl: string | null;
118
103
  folderId: string | null;
119
104
  tagAssistedId: string;
120
105
  tagConfirmedId: string;
@@ -136,7 +121,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
136
121
  }, "strip", z.ZodTypeAny, {
137
122
  tickets: {
138
123
  event: {
139
- description: string | null;
140
124
  location: string;
141
125
  id: string;
142
126
  name: string;
@@ -146,8 +130,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
146
130
  created_at: Date;
147
131
  updated_at: Date;
148
132
  active: boolean;
149
- mainPictureUrl: string | null;
150
- bannerUrl: string | null;
151
133
  folderId: string | null;
152
134
  tagAssistedId: string;
153
135
  tagConfirmedId: string;
@@ -169,7 +151,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
169
151
  }, {
170
152
  tickets: {
171
153
  event: {
172
- description: string | null;
173
154
  location: string;
174
155
  id: string;
175
156
  name: string;
@@ -179,8 +160,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
179
160
  created_at: Date;
180
161
  updated_at: Date;
181
162
  active: boolean;
182
- mainPictureUrl: string | null;
183
- bannerUrl: 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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
229
- bannerUrl: z.ZodNullable<z.ZodString>;
230
- description: z.ZodNullable<z.ZodString>;
231
207
  folderId: z.ZodNullable<z.ZodString>;
232
208
  tagAssistedId: z.ZodString;
233
209
  tagConfirmedId: z.ZodString;
@@ -236,7 +212,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
236
212
  created_at: z.ZodString;
237
213
  updated_at: z.ZodString;
238
214
  }, z.UnknownKeysParam, z.ZodTypeAny, {
239
- description: string | null;
240
215
  location: string;
241
216
  id: string;
242
217
  name: string;
@@ -246,14 +221,11 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
246
221
  created_at: string;
247
222
  updated_at: string;
248
223
  active: boolean;
249
- mainPictureUrl: string | null;
250
- bannerUrl: string | null;
251
224
  folderId: string | null;
252
225
  tagAssistedId: string;
253
226
  tagConfirmedId: string;
254
227
  supraEventId: string | null;
255
228
  }, {
256
- description: string | null;
257
229
  location: string;
258
230
  id: string;
259
231
  name: string;
@@ -263,8 +235,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
263
235
  created_at: string;
264
236
  updated_at: string;
265
237
  active: boolean;
266
- mainPictureUrl: string | null;
267
- bannerUrl: string | null;
268
238
  folderId: string | null;
269
239
  tagAssistedId: string;
270
240
  tagConfirmedId: string;
@@ -272,7 +242,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
272
242
  }>;
273
243
  }, z.UnknownKeysParam, z.ZodTypeAny, {
274
244
  event: {
275
- description: string | null;
276
245
  location: string;
277
246
  id: string;
278
247
  name: string;
@@ -282,8 +251,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
282
251
  created_at: string;
283
252
  updated_at: string;
284
253
  active: boolean;
285
- mainPictureUrl: string | null;
286
- bannerUrl: string | null;
287
254
  folderId: string | null;
288
255
  tagAssistedId: string;
289
256
  tagConfirmedId: string;
@@ -303,7 +270,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
303
270
  ticketGroupId: string | null;
304
271
  }, {
305
272
  event: {
306
- description: string | null;
307
273
  location: string;
308
274
  id: string;
309
275
  name: string;
@@ -313,8 +279,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
313
279
  created_at: string;
314
280
  updated_at: string;
315
281
  active: boolean;
316
- mainPictureUrl: string | null;
317
- bannerUrl: string | null;
318
282
  folderId: string | null;
319
283
  tagAssistedId: string;
320
284
  tagConfirmedId: string;
@@ -336,7 +300,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
336
300
  }, z.UnknownKeysParam, z.ZodTypeAny, {
337
301
  tickets: {
338
302
  event: {
339
- description: string | null;
340
303
  location: string;
341
304
  id: string;
342
305
  name: string;
@@ -346,8 +309,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
346
309
  created_at: string;
347
310
  updated_at: string;
348
311
  active: boolean;
349
- mainPictureUrl: string | null;
350
- bannerUrl: string | null;
351
312
  folderId: string | null;
352
313
  tagAssistedId: string;
353
314
  tagConfirmedId: string;
@@ -369,7 +330,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
369
330
  }, {
370
331
  tickets: {
371
332
  event: {
372
- description: string | null;
373
333
  location: string;
374
334
  id: string;
375
335
  name: string;
@@ -379,8 +339,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
379
339
  created_at: string;
380
340
  updated_at: string;
381
341
  active: boolean;
382
- mainPictureUrl: string | null;
383
- bannerUrl: 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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
96
- bannerUrl: z.ZodNullable<z.ZodString>;
97
- description: z.ZodNullable<z.ZodString>;
98
95
  folderId: z.ZodNullable<z.ZodString>;
99
96
  tagAssistedId: z.ZodString;
100
97
  tagConfirmedId: z.ZodString;
@@ -103,7 +100,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
103
100
  created_at: z.ZodDate;
104
101
  updated_at: z.ZodDate;
105
102
  }, "strip", z.ZodTypeAny, {
106
- description: string | null;
107
103
  location: string;
108
104
  id: string;
109
105
  name: string;
@@ -113,14 +109,11 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
113
109
  created_at: Date;
114
110
  updated_at: Date;
115
111
  active: boolean;
116
- mainPictureUrl: string | null;
117
- bannerUrl: string | null;
118
112
  folderId: string | null;
119
113
  tagAssistedId: string;
120
114
  tagConfirmedId: string;
121
115
  supraEventId: string | null;
122
116
  }, {
123
- description: string | null;
124
117
  location: string;
125
118
  id: string;
126
119
  name: string;
@@ -130,8 +123,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
130
123
  created_at: Date;
131
124
  updated_at: Date;
132
125
  active: boolean;
133
- mainPictureUrl: string | null;
134
- bannerUrl: string | null;
135
126
  folderId: string | null;
136
127
  tagAssistedId: string;
137
128
  tagConfirmedId: string;
@@ -139,7 +130,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
139
130
  }>;
140
131
  }>, "strip", z.ZodTypeAny, {
141
132
  event: {
142
- description: string | null;
143
133
  location: string;
144
134
  id: string;
145
135
  name: string;
@@ -149,8 +139,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
149
139
  created_at: Date;
150
140
  updated_at: Date;
151
141
  active: boolean;
152
- mainPictureUrl: string | null;
153
- bannerUrl: string | null;
154
142
  folderId: string | null;
155
143
  tagAssistedId: string;
156
144
  tagConfirmedId: string;
@@ -178,7 +166,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
178
166
  }[];
179
167
  }, {
180
168
  event: {
181
- description: string | null;
182
169
  location: string;
183
170
  id: string;
184
171
  name: string;
@@ -188,8 +175,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
188
175
  created_at: Date;
189
176
  updated_at: Date;
190
177
  active: boolean;
191
- mainPictureUrl: string | null;
192
- bannerUrl: 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
- mainPictureUrl: z.ZodNullable<z.ZodString>;
282
- bannerUrl: z.ZodNullable<z.ZodString>;
283
- description: z.ZodNullable<z.ZodString>;
284
266
  folderId: z.ZodNullable<z.ZodString>;
285
267
  tagAssistedId: z.ZodString;
286
268
  tagConfirmedId: z.ZodString;
@@ -289,7 +271,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
289
271
  created_at: z.ZodString;
290
272
  updated_at: z.ZodString;
291
273
  }, z.UnknownKeysParam, z.ZodTypeAny, {
292
- description: string | null;
293
274
  location: string;
294
275
  id: string;
295
276
  name: string;
@@ -299,14 +280,11 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
299
280
  created_at: string;
300
281
  updated_at: string;
301
282
  active: boolean;
302
- mainPictureUrl: string | null;
303
- bannerUrl: string | null;
304
283
  folderId: string | null;
305
284
  tagAssistedId: string;
306
285
  tagConfirmedId: string;
307
286
  supraEventId: string | null;
308
287
  }, {
309
- description: string | null;
310
288
  location: string;
311
289
  id: string;
312
290
  name: string;
@@ -316,8 +294,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
316
294
  created_at: string;
317
295
  updated_at: string;
318
296
  active: boolean;
319
- mainPictureUrl: string | null;
320
- bannerUrl: string | null;
321
297
  folderId: string | null;
322
298
  tagAssistedId: string;
323
299
  tagConfirmedId: string;
@@ -325,7 +301,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
325
301
  }>;
326
302
  }, z.UnknownKeysParam, z.ZodTypeAny, {
327
303
  event: {
328
- description: string | null;
329
304
  location: string;
330
305
  id: string;
331
306
  name: string;
@@ -335,8 +310,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
335
310
  created_at: string;
336
311
  updated_at: string;
337
312
  active: boolean;
338
- mainPictureUrl: string | null;
339
- bannerUrl: string | null;
340
313
  folderId: string | null;
341
314
  tagAssistedId: string;
342
315
  tagConfirmedId: string;
@@ -364,7 +337,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
364
337
  }[];
365
338
  }, {
366
339
  event: {
367
- description: string | null;
368
340
  location: string;
369
341
  id: string;
370
342
  name: string;
@@ -374,8 +346,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
374
346
  created_at: string;
375
347
  updated_at: string;
376
348
  active: boolean;
377
- mainPictureUrl: string | null;
378
- bannerUrl: string | null;
379
349
  folderId: string | null;
380
350
  tagAssistedId: string;
381
351
  tagConfirmedId: string;