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