expo-backend-types 0.47.0-EXPO-339-Testing-y-bugfixing.1 → 0.47.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.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.
- package/dist/src/event/dto/create-event.dto.d.ts +72 -23
- package/dist/src/event/dto/create-event.dto.js +7 -1
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -33
- package/dist/src/event/dto/event-tickets.dto.js +8 -18
- 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 +33 -23
- package/dist/src/event/dto/get-all-event.dto.d.ts +272 -48
- package/dist/src/event/dto/get-all-event.dto.js +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +99 -23
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
- package/dist/src/event/dto/update-event.dto.d.ts +31 -44
- package/dist/src/event/dto/update-event.dto.js +2 -2
- 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 +7 -1
- package/dist/src/i18n/es.js +7 -3
- 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 -2
@@ -7,6 +7,9 @@ export declare const getInvitationsResponseSchema: z.ZodObject<{
|
|
7
7
|
startingDate: z.ZodDate;
|
8
8
|
endingDate: z.ZodDate;
|
9
9
|
location: z.ZodString;
|
10
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
11
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
12
|
+
description: z.ZodNullable<z.ZodString>;
|
10
13
|
folderId: z.ZodNullable<z.ZodString>;
|
11
14
|
tagAssistedId: z.ZodString;
|
12
15
|
tagConfirmedId: z.ZodString;
|
@@ -145,6 +145,9 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
145
145
|
startingDate: z.ZodDate;
|
146
146
|
endingDate: z.ZodDate;
|
147
147
|
location: z.ZodString;
|
148
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
149
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
150
|
+
description: z.ZodNullable<z.ZodString>;
|
148
151
|
folderId: z.ZodNullable<z.ZodString>;
|
149
152
|
tagAssistedId: z.ZodString;
|
150
153
|
tagConfirmedId: z.ZodString;
|
@@ -153,6 +156,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
153
156
|
created_at: z.ZodDate;
|
154
157
|
updated_at: z.ZodDate;
|
155
158
|
}, "strip", z.ZodTypeAny, {
|
159
|
+
description: string | null;
|
156
160
|
location: string;
|
157
161
|
id: string;
|
158
162
|
name: string;
|
@@ -162,11 +166,14 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
162
166
|
created_at: Date;
|
163
167
|
updated_at: Date;
|
164
168
|
active: boolean;
|
169
|
+
mainPictureUrl: string | null;
|
170
|
+
bannerUrl: string | null;
|
165
171
|
folderId: string | null;
|
166
172
|
tagAssistedId: string;
|
167
173
|
tagConfirmedId: string;
|
168
174
|
supraEventId: string | null;
|
169
175
|
}, {
|
176
|
+
description: string | null;
|
170
177
|
location: string;
|
171
178
|
id: string;
|
172
179
|
name: string;
|
@@ -176,6 +183,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
176
183
|
created_at: Date;
|
177
184
|
updated_at: Date;
|
178
185
|
active: boolean;
|
186
|
+
mainPictureUrl: string | null;
|
187
|
+
bannerUrl: string | null;
|
179
188
|
folderId: string | null;
|
180
189
|
tagAssistedId: string;
|
181
190
|
tagConfirmedId: string;
|
@@ -183,6 +192,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
183
192
|
}>;
|
184
193
|
}>, "strip", z.ZodTypeAny, {
|
185
194
|
event: {
|
195
|
+
description: string | null;
|
186
196
|
location: string;
|
187
197
|
id: string;
|
188
198
|
name: string;
|
@@ -192,6 +202,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
192
202
|
created_at: Date;
|
193
203
|
updated_at: Date;
|
194
204
|
active: boolean;
|
205
|
+
mainPictureUrl: string | null;
|
206
|
+
bannerUrl: string | null;
|
195
207
|
folderId: string | null;
|
196
208
|
tagAssistedId: string;
|
197
209
|
tagConfirmedId: string;
|
@@ -211,6 +223,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
211
223
|
ticketGroupId: string | null;
|
212
224
|
}, {
|
213
225
|
event: {
|
226
|
+
description: string | null;
|
214
227
|
location: string;
|
215
228
|
id: string;
|
216
229
|
name: string;
|
@@ -220,6 +233,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
220
233
|
created_at: Date;
|
221
234
|
updated_at: Date;
|
222
235
|
active: boolean;
|
236
|
+
mainPictureUrl: string | null;
|
237
|
+
bannerUrl: string | null;
|
223
238
|
folderId: string | null;
|
224
239
|
tagAssistedId: string;
|
225
240
|
tagConfirmedId: string;
|
@@ -262,6 +277,9 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
262
277
|
startingDate: z.ZodString;
|
263
278
|
endingDate: z.ZodString;
|
264
279
|
location: z.ZodString;
|
280
|
+
mainPictureUrl: z.ZodNullable<z.ZodString>;
|
281
|
+
bannerUrl: z.ZodNullable<z.ZodString>;
|
282
|
+
description: z.ZodNullable<z.ZodString>;
|
265
283
|
folderId: z.ZodNullable<z.ZodString>;
|
266
284
|
tagAssistedId: z.ZodString;
|
267
285
|
tagConfirmedId: z.ZodString;
|
@@ -270,6 +288,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
270
288
|
created_at: z.ZodString;
|
271
289
|
updated_at: z.ZodString;
|
272
290
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
291
|
+
description: string | null;
|
273
292
|
location: string;
|
274
293
|
id: string;
|
275
294
|
name: string;
|
@@ -279,11 +298,14 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
279
298
|
created_at: string;
|
280
299
|
updated_at: string;
|
281
300
|
active: boolean;
|
301
|
+
mainPictureUrl: string | null;
|
302
|
+
bannerUrl: string | null;
|
282
303
|
folderId: string | null;
|
283
304
|
tagAssistedId: string;
|
284
305
|
tagConfirmedId: string;
|
285
306
|
supraEventId: string | null;
|
286
307
|
}, {
|
308
|
+
description: string | null;
|
287
309
|
location: string;
|
288
310
|
id: string;
|
289
311
|
name: string;
|
@@ -293,6 +315,8 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
293
315
|
created_at: string;
|
294
316
|
updated_at: string;
|
295
317
|
active: boolean;
|
318
|
+
mainPictureUrl: string | null;
|
319
|
+
bannerUrl: string | null;
|
296
320
|
folderId: string | null;
|
297
321
|
tagAssistedId: string;
|
298
322
|
tagConfirmedId: string;
|
@@ -300,6 +324,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
300
324
|
}>;
|
301
325
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
302
326
|
event: {
|
327
|
+
description: string | null;
|
303
328
|
location: string;
|
304
329
|
id: string;
|
305
330
|
name: string;
|
@@ -309,6 +334,8 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
309
334
|
created_at: string;
|
310
335
|
updated_at: string;
|
311
336
|
active: boolean;
|
337
|
+
mainPictureUrl: string | null;
|
338
|
+
bannerUrl: string | null;
|
312
339
|
folderId: string | null;
|
313
340
|
tagAssistedId: string;
|
314
341
|
tagConfirmedId: string;
|
@@ -328,6 +355,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
328
355
|
ticketGroupId: string | null;
|
329
356
|
}, {
|
330
357
|
event: {
|
358
|
+
description: string | null;
|
331
359
|
location: string;
|
332
360
|
id: string;
|
333
361
|
name: string;
|
@@ -337,6 +365,8 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
337
365
|
created_at: string;
|
338
366
|
updated_at: string;
|
339
367
|
active: boolean;
|
368
|
+
mainPictureUrl: string | null;
|
369
|
+
bannerUrl: string | null;
|
340
370
|
folderId: string | null;
|
341
371
|
tagAssistedId: string;
|
342
372
|
tagConfirmedId: string;
|
@@ -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;
|