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