expo-backend-types 0.46.0-EXPO-339-Testing-y-bugfixing.4 → 0.47.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.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 (37) 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-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -33
  5. package/dist/src/event/dto/event-tickets.dto.js +8 -18
  6. package/dist/src/event/dto/event.dto.d.ts +9 -0
  7. package/dist/src/event/dto/event.dto.js +13 -0
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +33 -23
  9. package/dist/src/event/dto/get-all-event.dto.d.ts +272 -48
  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 +99 -23
  12. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  13. package/dist/src/event/dto/update-event.dto.d.ts +31 -44
  14. package/dist/src/event/dto/update-event.dto.js +2 -2
  15. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  16. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  17. package/dist/src/i18n/es.d.ts +7 -1
  18. package/dist/src/i18n/es.js +7 -3
  19. package/dist/src/i18n/es.js.map +1 -1
  20. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  21. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  22. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  23. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  24. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  25. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  26. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  27. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  28. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  29. package/dist/types/prisma-schema/edge.js +6 -3
  30. package/dist/types/prisma-schema/index-browser.js +3 -0
  31. package/dist/types/prisma-schema/index.d.ts +214 -1
  32. package/dist/types/prisma-schema/index.js +6 -3
  33. package/dist/types/prisma-schema/package.json +1 -1
  34. package/dist/types/prisma-schema/schema.prisma +9 -6
  35. package/dist/types/prisma-schema/wasm.js +3 -0
  36. package/dist/types/schema.d.ts +66 -0
  37. package/package.json +1 -1
@@ -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;