expo-backend-types 0.46.0 → 0.47.0-EXPO-343-Quique-Wolff.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 (33) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +68 -2
  2. package/dist/src/event/dto/create-event.dto.js +6 -0
  3. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/event.dto.d.ts +9 -0
  5. package/dist/src/event/dto/event.dto.js +13 -0
  6. package/dist/src/event/dto/get-active-events.dto.d.ts +30 -0
  7. package/dist/src/event/dto/get-all-event.dto.d.ts +264 -0
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
  9. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  10. package/dist/src/event/dto/update-event.dto.d.ts +24 -0
  11. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  12. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  13. package/dist/src/i18n/es.d.ts +6 -0
  14. package/dist/src/i18n/es.js +6 -0
  15. package/dist/src/i18n/es.js.map +1 -1
  16. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  17. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  18. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  19. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  20. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  21. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  22. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  23. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  24. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  25. package/dist/types/prisma-schema/edge.js +6 -3
  26. package/dist/types/prisma-schema/index-browser.js +3 -0
  27. package/dist/types/prisma-schema/index.d.ts +214 -1
  28. package/dist/types/prisma-schema/index.js +6 -3
  29. package/dist/types/prisma-schema/package.json +1 -1
  30. package/dist/types/prisma-schema/schema.prisma +9 -6
  31. package/dist/types/prisma-schema/wasm.js +3 -0
  32. package/dist/types/schema.d.ts +66 -0
  33. package/package.json +1 -1
@@ -91,6 +91,9 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
91
91
  startingDate: import("zod").ZodDate;
92
92
  endingDate: import("zod").ZodDate;
93
93
  location: import("zod").ZodString;
94
+ mainPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
95
+ bannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
96
+ description: import("zod").ZodNullable<import("zod").ZodString>;
94
97
  folderId: import("zod").ZodNullable<import("zod").ZodString>;
95
98
  tagAssistedId: import("zod").ZodString;
96
99
  tagConfirmedId: import("zod").ZodString;
@@ -99,6 +102,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
99
102
  created_at: import("zod").ZodDate;
100
103
  updated_at: import("zod").ZodDate;
101
104
  }, "strip", import("zod").ZodTypeAny, {
105
+ description: string | null;
102
106
  location: string;
103
107
  id: string;
104
108
  name: string;
@@ -108,11 +112,14 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
108
112
  created_at: Date;
109
113
  updated_at: Date;
110
114
  active: boolean;
115
+ mainPictureUrl: string | null;
116
+ bannerUrl: string | null;
111
117
  folderId: string | null;
112
118
  tagAssistedId: string;
113
119
  tagConfirmedId: string;
114
120
  supraEventId: string | null;
115
121
  }, {
122
+ description: string | null;
116
123
  location: string;
117
124
  id: string;
118
125
  name: string;
@@ -122,6 +129,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
122
129
  created_at: Date;
123
130
  updated_at: Date;
124
131
  active: boolean;
132
+ mainPictureUrl: string | null;
133
+ bannerUrl: string | null;
125
134
  folderId: string | null;
126
135
  tagAssistedId: string;
127
136
  tagConfirmedId: string;
@@ -129,6 +138,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
129
138
  }>;
130
139
  }>, "strip", import("zod").ZodTypeAny, {
131
140
  event: {
141
+ description: string | null;
132
142
  location: string;
133
143
  id: string;
134
144
  name: string;
@@ -138,6 +148,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
138
148
  created_at: Date;
139
149
  updated_at: Date;
140
150
  active: boolean;
151
+ mainPictureUrl: string | null;
152
+ bannerUrl: string | null;
141
153
  folderId: string | null;
142
154
  tagAssistedId: string;
143
155
  tagConfirmedId: string;
@@ -157,6 +169,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
157
169
  ticketGroupId: string | null;
158
170
  }, {
159
171
  event: {
172
+ description: string | null;
160
173
  location: string;
161
174
  id: string;
162
175
  name: string;
@@ -166,6 +179,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
166
179
  created_at: Date;
167
180
  updated_at: Date;
168
181
  active: boolean;
182
+ mainPictureUrl: string | null;
183
+ bannerUrl: string | null;
169
184
  folderId: string | null;
170
185
  tagAssistedId: string;
171
186
  tagConfirmedId: string;
@@ -208,6 +223,9 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
208
223
  startingDate: import("zod").ZodString;
209
224
  endingDate: import("zod").ZodString;
210
225
  location: import("zod").ZodString;
226
+ mainPictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
227
+ bannerUrl: import("zod").ZodNullable<import("zod").ZodString>;
228
+ description: import("zod").ZodNullable<import("zod").ZodString>;
211
229
  folderId: import("zod").ZodNullable<import("zod").ZodString>;
212
230
  tagAssistedId: import("zod").ZodString;
213
231
  tagConfirmedId: import("zod").ZodString;
@@ -216,6 +234,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
216
234
  created_at: import("zod").ZodString;
217
235
  updated_at: import("zod").ZodString;
218
236
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
237
+ description: string | null;
219
238
  location: string;
220
239
  id: string;
221
240
  name: string;
@@ -225,11 +244,14 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
225
244
  created_at: string;
226
245
  updated_at: string;
227
246
  active: boolean;
247
+ mainPictureUrl: string | null;
248
+ bannerUrl: string | null;
228
249
  folderId: string | null;
229
250
  tagAssistedId: string;
230
251
  tagConfirmedId: string;
231
252
  supraEventId: string | null;
232
253
  }, {
254
+ description: string | null;
233
255
  location: string;
234
256
  id: string;
235
257
  name: string;
@@ -239,6 +261,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
239
261
  created_at: string;
240
262
  updated_at: string;
241
263
  active: boolean;
264
+ mainPictureUrl: string | null;
265
+ bannerUrl: string | null;
242
266
  folderId: string | null;
243
267
  tagAssistedId: string;
244
268
  tagConfirmedId: string;
@@ -246,6 +270,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
246
270
  }>;
247
271
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
248
272
  event: {
273
+ description: string | null;
249
274
  location: string;
250
275
  id: string;
251
276
  name: string;
@@ -255,6 +280,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
255
280
  created_at: string;
256
281
  updated_at: string;
257
282
  active: boolean;
283
+ mainPictureUrl: string | null;
284
+ bannerUrl: string | null;
258
285
  folderId: string | null;
259
286
  tagAssistedId: string;
260
287
  tagConfirmedId: string;
@@ -274,6 +301,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
274
301
  ticketGroupId: string | null;
275
302
  }, {
276
303
  event: {
304
+ description: string | null;
277
305
  location: string;
278
306
  id: string;
279
307
  name: string;
@@ -283,6 +311,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
283
311
  created_at: string;
284
312
  updated_at: string;
285
313
  active: boolean;
314
+ mainPictureUrl: string | null;
315
+ bannerUrl: string | null;
286
316
  folderId: string | null;
287
317
  tagAssistedId: string;
288
318
  tagConfirmedId: string;
@@ -25,6 +25,9 @@ export declare const findAllTicketsResponseSchema: 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 findByEventTicketResponseSchema: 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 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;