expo-backend-types 0.46.0-EXPO-343-Quique-Wolff.1 → 0.46.0-EXPO-344-ExpoBackend-Agregado-de-campos-en-schema.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.
- package/dist/src/event/dto/create-event.dto.d.ts +73 -3
- package/dist/src/event/dto/create-event.dto.js +13 -1
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/event.dto.d.ts +9 -0
- package/dist/src/event/dto/event.dto.js +13 -0
- package/dist/src/event/dto/get-active-events.dto.d.ts +30 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +264 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
- package/dist/src/event/dto/update-event.dto.d.ts +24 -0
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
- package/dist/src/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +214 -1
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +9 -6
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +66 -0
- 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
29
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
30
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
28
31
|
folderId: z.ZodNullable<z.ZodString>;
|
29
32
|
tagAssistedId: z.ZodString;
|
30
33
|
tagConfirmedId: z.ZodString;
|
@@ -39,9 +42,12 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
39
42
|
date: Date;
|
40
43
|
startingDate: Date;
|
41
44
|
endingDate: Date;
|
45
|
+
eventPictureUrl: string | null;
|
46
|
+
eventBannerUrl: string | null;
|
42
47
|
created_at: Date;
|
43
48
|
updated_at: Date;
|
44
49
|
active: boolean;
|
50
|
+
eventDescription: string | null;
|
45
51
|
folderId: string | null;
|
46
52
|
tagAssistedId: string;
|
47
53
|
tagConfirmedId: string;
|
@@ -53,9 +59,12 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
53
59
|
date: Date;
|
54
60
|
startingDate: Date;
|
55
61
|
endingDate: Date;
|
62
|
+
eventPictureUrl: string | null;
|
63
|
+
eventBannerUrl: string | null;
|
56
64
|
created_at: Date;
|
57
65
|
updated_at: Date;
|
58
66
|
active: boolean;
|
67
|
+
eventDescription: string | null;
|
59
68
|
folderId: string | null;
|
60
69
|
tagAssistedId: string;
|
61
70
|
tagConfirmedId: string;
|
@@ -69,9 +78,12 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
69
78
|
date: Date;
|
70
79
|
startingDate: Date;
|
71
80
|
endingDate: Date;
|
81
|
+
eventPictureUrl: string | null;
|
82
|
+
eventBannerUrl: string | null;
|
72
83
|
created_at: Date;
|
73
84
|
updated_at: Date;
|
74
85
|
active: boolean;
|
86
|
+
eventDescription: string | null;
|
75
87
|
folderId: string | null;
|
76
88
|
tagAssistedId: string;
|
77
89
|
tagConfirmedId: string;
|
@@ -97,9 +109,12 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
97
109
|
date: Date;
|
98
110
|
startingDate: Date;
|
99
111
|
endingDate: Date;
|
112
|
+
eventPictureUrl: string | null;
|
113
|
+
eventBannerUrl: string | null;
|
100
114
|
created_at: Date;
|
101
115
|
updated_at: Date;
|
102
116
|
active: boolean;
|
117
|
+
eventDescription: string | null;
|
103
118
|
folderId: string | null;
|
104
119
|
tagAssistedId: string;
|
105
120
|
tagConfirmedId: string;
|
@@ -127,9 +142,12 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
127
142
|
date: Date;
|
128
143
|
startingDate: Date;
|
129
144
|
endingDate: Date;
|
145
|
+
eventPictureUrl: string | null;
|
146
|
+
eventBannerUrl: string | null;
|
130
147
|
created_at: Date;
|
131
148
|
updated_at: Date;
|
132
149
|
active: boolean;
|
150
|
+
eventDescription: string | null;
|
133
151
|
folderId: string | null;
|
134
152
|
tagAssistedId: string;
|
135
153
|
tagConfirmedId: string;
|
@@ -157,9 +175,12 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
157
175
|
date: Date;
|
158
176
|
startingDate: Date;
|
159
177
|
endingDate: Date;
|
178
|
+
eventPictureUrl: string | null;
|
179
|
+
eventBannerUrl: string | null;
|
160
180
|
created_at: Date;
|
161
181
|
updated_at: Date;
|
162
182
|
active: boolean;
|
183
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
229
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
230
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
207
231
|
folderId: z.ZodNullable<z.ZodString>;
|
208
232
|
tagAssistedId: z.ZodString;
|
209
233
|
tagConfirmedId: z.ZodString;
|
@@ -218,9 +242,12 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
218
242
|
date: string;
|
219
243
|
startingDate: string;
|
220
244
|
endingDate: string;
|
245
|
+
eventPictureUrl: string | null;
|
246
|
+
eventBannerUrl: string | null;
|
221
247
|
created_at: string;
|
222
248
|
updated_at: string;
|
223
249
|
active: boolean;
|
250
|
+
eventDescription: string | null;
|
224
251
|
folderId: string | null;
|
225
252
|
tagAssistedId: string;
|
226
253
|
tagConfirmedId: string;
|
@@ -232,9 +259,12 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
232
259
|
date: string;
|
233
260
|
startingDate: string;
|
234
261
|
endingDate: string;
|
262
|
+
eventPictureUrl: string | null;
|
263
|
+
eventBannerUrl: string | null;
|
235
264
|
created_at: string;
|
236
265
|
updated_at: string;
|
237
266
|
active: boolean;
|
267
|
+
eventDescription: string | null;
|
238
268
|
folderId: string | null;
|
239
269
|
tagAssistedId: string;
|
240
270
|
tagConfirmedId: string;
|
@@ -248,9 +278,12 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
248
278
|
date: string;
|
249
279
|
startingDate: string;
|
250
280
|
endingDate: string;
|
281
|
+
eventPictureUrl: string | null;
|
282
|
+
eventBannerUrl: string | null;
|
251
283
|
created_at: string;
|
252
284
|
updated_at: string;
|
253
285
|
active: boolean;
|
286
|
+
eventDescription: string | null;
|
254
287
|
folderId: string | null;
|
255
288
|
tagAssistedId: string;
|
256
289
|
tagConfirmedId: string;
|
@@ -276,9 +309,12 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
276
309
|
date: string;
|
277
310
|
startingDate: string;
|
278
311
|
endingDate: string;
|
312
|
+
eventPictureUrl: string | null;
|
313
|
+
eventBannerUrl: string | null;
|
279
314
|
created_at: string;
|
280
315
|
updated_at: string;
|
281
316
|
active: boolean;
|
317
|
+
eventDescription: string | null;
|
282
318
|
folderId: string | null;
|
283
319
|
tagAssistedId: string;
|
284
320
|
tagConfirmedId: string;
|
@@ -306,9 +342,12 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
306
342
|
date: string;
|
307
343
|
startingDate: string;
|
308
344
|
endingDate: string;
|
345
|
+
eventPictureUrl: string | null;
|
346
|
+
eventBannerUrl: string | null;
|
309
347
|
created_at: string;
|
310
348
|
updated_at: string;
|
311
349
|
active: boolean;
|
350
|
+
eventDescription: string | null;
|
312
351
|
folderId: string | null;
|
313
352
|
tagAssistedId: string;
|
314
353
|
tagConfirmedId: string;
|
@@ -336,9 +375,12 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
336
375
|
date: string;
|
337
376
|
startingDate: string;
|
338
377
|
endingDate: string;
|
378
|
+
eventPictureUrl: string | null;
|
379
|
+
eventBannerUrl: string | null;
|
339
380
|
created_at: string;
|
340
381
|
updated_at: string;
|
341
382
|
active: boolean;
|
383
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
96
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
97
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
95
98
|
folderId: z.ZodNullable<z.ZodString>;
|
96
99
|
tagAssistedId: z.ZodString;
|
97
100
|
tagConfirmedId: z.ZodString;
|
@@ -106,9 +109,12 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
106
109
|
date: Date;
|
107
110
|
startingDate: Date;
|
108
111
|
endingDate: Date;
|
112
|
+
eventPictureUrl: string | null;
|
113
|
+
eventBannerUrl: string | null;
|
109
114
|
created_at: Date;
|
110
115
|
updated_at: Date;
|
111
116
|
active: boolean;
|
117
|
+
eventDescription: string | null;
|
112
118
|
folderId: string | null;
|
113
119
|
tagAssistedId: string;
|
114
120
|
tagConfirmedId: string;
|
@@ -120,9 +126,12 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
120
126
|
date: Date;
|
121
127
|
startingDate: Date;
|
122
128
|
endingDate: Date;
|
129
|
+
eventPictureUrl: string | null;
|
130
|
+
eventBannerUrl: string | null;
|
123
131
|
created_at: Date;
|
124
132
|
updated_at: Date;
|
125
133
|
active: boolean;
|
134
|
+
eventDescription: string | null;
|
126
135
|
folderId: string | null;
|
127
136
|
tagAssistedId: string;
|
128
137
|
tagConfirmedId: string;
|
@@ -136,9 +145,12 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
136
145
|
date: Date;
|
137
146
|
startingDate: Date;
|
138
147
|
endingDate: Date;
|
148
|
+
eventPictureUrl: string | null;
|
149
|
+
eventBannerUrl: string | null;
|
139
150
|
created_at: Date;
|
140
151
|
updated_at: Date;
|
141
152
|
active: boolean;
|
153
|
+
eventDescription: string | null;
|
142
154
|
folderId: string | null;
|
143
155
|
tagAssistedId: string;
|
144
156
|
tagConfirmedId: string;
|
@@ -172,9 +184,12 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
172
184
|
date: Date;
|
173
185
|
startingDate: Date;
|
174
186
|
endingDate: Date;
|
187
|
+
eventPictureUrl: string | null;
|
188
|
+
eventBannerUrl: string | null;
|
175
189
|
created_at: Date;
|
176
190
|
updated_at: Date;
|
177
191
|
active: boolean;
|
192
|
+
eventDescription: 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
|
+
eventPictureUrl: z.ZodNullable<z.ZodString>;
|
282
|
+
eventBannerUrl: z.ZodNullable<z.ZodString>;
|
283
|
+
eventDescription: z.ZodNullable<z.ZodString>;
|
266
284
|
folderId: z.ZodNullable<z.ZodString>;
|
267
285
|
tagAssistedId: z.ZodString;
|
268
286
|
tagConfirmedId: z.ZodString;
|
@@ -277,9 +295,12 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
277
295
|
date: string;
|
278
296
|
startingDate: string;
|
279
297
|
endingDate: string;
|
298
|
+
eventPictureUrl: string | null;
|
299
|
+
eventBannerUrl: string | null;
|
280
300
|
created_at: string;
|
281
301
|
updated_at: string;
|
282
302
|
active: boolean;
|
303
|
+
eventDescription: string | null;
|
283
304
|
folderId: string | null;
|
284
305
|
tagAssistedId: string;
|
285
306
|
tagConfirmedId: string;
|
@@ -291,9 +312,12 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
291
312
|
date: string;
|
292
313
|
startingDate: string;
|
293
314
|
endingDate: string;
|
315
|
+
eventPictureUrl: string | null;
|
316
|
+
eventBannerUrl: string | null;
|
294
317
|
created_at: string;
|
295
318
|
updated_at: string;
|
296
319
|
active: boolean;
|
320
|
+
eventDescription: string | null;
|
297
321
|
folderId: string | null;
|
298
322
|
tagAssistedId: string;
|
299
323
|
tagConfirmedId: string;
|
@@ -307,9 +331,12 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
307
331
|
date: string;
|
308
332
|
startingDate: string;
|
309
333
|
endingDate: string;
|
334
|
+
eventPictureUrl: string | null;
|
335
|
+
eventBannerUrl: string | null;
|
310
336
|
created_at: string;
|
311
337
|
updated_at: string;
|
312
338
|
active: boolean;
|
339
|
+
eventDescription: string | null;
|
313
340
|
folderId: string | null;
|
314
341
|
tagAssistedId: string;
|
315
342
|
tagConfirmedId: string;
|
@@ -343,9 +370,12 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
343
370
|
date: string;
|
344
371
|
startingDate: string;
|
345
372
|
endingDate: string;
|
373
|
+
eventPictureUrl: string | null;
|
374
|
+
eventBannerUrl: string | null;
|
346
375
|
created_at: string;
|
347
376
|
updated_at: string;
|
348
377
|
active: boolean;
|
378
|
+
eventDescription: string | null;
|
349
379
|
folderId: string | null;
|
350
380
|
tagAssistedId: string;
|
351
381
|
tagConfirmedId: string;
|