expo-backend-types 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.1 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3
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/get-by-id-event.dto.d.ts +10 -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-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +27 -1
- package/dist/src/ticket/dto/create-many-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-event-type-ticket.dto.d.ts +48 -0
- package/dist/src/ticket/dto/find-by-event-type-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +24 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +10 -1
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +49 -1
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -0
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +21 -1
- package/package.json +1 -1
@@ -10,6 +10,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
dni: z.ZodString;
|
13
14
|
ticketGroupId: z.ZodString;
|
14
15
|
created_at: z.ZodDate;
|
15
16
|
updated_at: z.ZodDate;
|
@@ -78,6 +79,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
78
79
|
fullName: string;
|
79
80
|
profilePictureUrl: string | null;
|
80
81
|
mail: string | null;
|
82
|
+
dni: string | null;
|
81
83
|
created_at: Date;
|
82
84
|
updated_at: Date;
|
83
85
|
shortId: number;
|
@@ -87,7 +89,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
87
89
|
gender: string | null;
|
88
90
|
birthDate: Date | null;
|
89
91
|
instagram: string | null;
|
90
|
-
dni: string | null;
|
91
92
|
alternativeNames: string[];
|
92
93
|
birthLocationId: string | null;
|
93
94
|
residenceLocationId: string | null;
|
@@ -102,6 +103,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
102
103
|
fullName: string;
|
103
104
|
profilePictureUrl: string | null;
|
104
105
|
mail: string | null;
|
106
|
+
dni: string | null;
|
105
107
|
created_at: Date;
|
106
108
|
updated_at: Date;
|
107
109
|
shortId: number;
|
@@ -111,7 +113,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
111
113
|
gender: string | null;
|
112
114
|
birthDate: string | null;
|
113
115
|
instagram: string | null;
|
114
|
-
dni: string | null;
|
115
116
|
alternativeNames: string[];
|
116
117
|
birthLocationId: string | null;
|
117
118
|
residenceLocationId: string | null;
|
@@ -135,6 +136,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
135
136
|
fullName: string;
|
136
137
|
profilePictureUrl: string | null;
|
137
138
|
mail: string | null;
|
139
|
+
dni: string | null;
|
138
140
|
created_at: Date;
|
139
141
|
updated_at: Date;
|
140
142
|
shortId: number;
|
@@ -144,7 +146,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
144
146
|
gender: string | null;
|
145
147
|
birthDate: Date | null;
|
146
148
|
instagram: string | null;
|
147
|
-
dni: string | null;
|
148
149
|
alternativeNames: string[];
|
149
150
|
birthLocationId: string | null;
|
150
151
|
residenceLocationId: string | null;
|
@@ -156,6 +157,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
156
157
|
fullName: string;
|
157
158
|
mail: string;
|
158
159
|
eventId: string;
|
160
|
+
dni: string;
|
159
161
|
created_at: Date;
|
160
162
|
updated_at: Date;
|
161
163
|
ticketGroupId: string;
|
@@ -174,6 +176,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
174
176
|
fullName: string;
|
175
177
|
profilePictureUrl: string | null;
|
176
178
|
mail: string | null;
|
179
|
+
dni: string | null;
|
177
180
|
created_at: Date;
|
178
181
|
updated_at: Date;
|
179
182
|
shortId: number;
|
@@ -183,7 +186,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
183
186
|
gender: string | null;
|
184
187
|
birthDate: string | null;
|
185
188
|
instagram: string | null;
|
186
|
-
dni: string | null;
|
187
189
|
alternativeNames: string[];
|
188
190
|
birthLocationId: string | null;
|
189
191
|
residenceLocationId: string | null;
|
@@ -196,6 +198,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
196
198
|
fullName: string;
|
197
199
|
mail: string;
|
198
200
|
eventId: string;
|
201
|
+
dni: string;
|
199
202
|
created_at: Date;
|
200
203
|
updated_at: Date;
|
201
204
|
ticketGroupId: string;
|
@@ -217,6 +220,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
217
220
|
fullName: string;
|
218
221
|
profilePictureUrl: string | null;
|
219
222
|
mail: string | null;
|
223
|
+
dni: string | null;
|
220
224
|
created_at: Date;
|
221
225
|
updated_at: Date;
|
222
226
|
shortId: number;
|
@@ -226,7 +230,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
226
230
|
gender: string | null;
|
227
231
|
birthDate: Date | null;
|
228
232
|
instagram: string | null;
|
229
|
-
dni: string | null;
|
230
233
|
alternativeNames: string[];
|
231
234
|
birthLocationId: string | null;
|
232
235
|
residenceLocationId: string | null;
|
@@ -238,6 +241,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
238
241
|
fullName: string;
|
239
242
|
mail: string;
|
240
243
|
eventId: string;
|
244
|
+
dni: string;
|
241
245
|
created_at: Date;
|
242
246
|
updated_at: Date;
|
243
247
|
ticketGroupId: string;
|
@@ -258,6 +262,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
258
262
|
fullName: string;
|
259
263
|
profilePictureUrl: string | null;
|
260
264
|
mail: string | null;
|
265
|
+
dni: string | null;
|
261
266
|
created_at: Date;
|
262
267
|
updated_at: Date;
|
263
268
|
shortId: number;
|
@@ -267,7 +272,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
267
272
|
gender: string | null;
|
268
273
|
birthDate: string | null;
|
269
274
|
instagram: string | null;
|
270
|
-
dni: string | null;
|
271
275
|
alternativeNames: string[];
|
272
276
|
birthLocationId: string | null;
|
273
277
|
residenceLocationId: string | null;
|
@@ -280,6 +284,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
280
284
|
fullName: string;
|
281
285
|
mail: string;
|
282
286
|
eventId: string;
|
287
|
+
dni: string;
|
283
288
|
created_at: Date;
|
284
289
|
updated_at: Date;
|
285
290
|
ticketGroupId: string;
|
@@ -296,6 +301,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
296
301
|
}>;
|
297
302
|
fullName: z.ZodString;
|
298
303
|
mail: z.ZodString;
|
304
|
+
dni: z.ZodString;
|
299
305
|
ticketGroupId: z.ZodString;
|
300
306
|
created_at: z.ZodString;
|
301
307
|
updated_at: z.ZodString;
|
@@ -353,6 +359,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
353
359
|
fullName: string;
|
354
360
|
profilePictureUrl: string | null;
|
355
361
|
mail: string | null;
|
362
|
+
dni: string | null;
|
356
363
|
created_at: string;
|
357
364
|
updated_at: string;
|
358
365
|
shortId: number;
|
@@ -362,7 +369,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
362
369
|
gender: string | null;
|
363
370
|
birthDate: string | null;
|
364
371
|
instagram: string | null;
|
365
|
-
dni: string | null;
|
366
372
|
alternativeNames: string[];
|
367
373
|
birthLocationId: string | null;
|
368
374
|
residenceLocationId: string | null;
|
@@ -377,6 +383,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
377
383
|
fullName: string;
|
378
384
|
profilePictureUrl: string | null;
|
379
385
|
mail: string | null;
|
386
|
+
dni: string | null;
|
380
387
|
created_at: string;
|
381
388
|
updated_at: string;
|
382
389
|
shortId: number;
|
@@ -386,7 +393,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
386
393
|
gender: string | null;
|
387
394
|
birthDate: string | null;
|
388
395
|
instagram: string | null;
|
389
|
-
dni: string | null;
|
390
396
|
alternativeNames: string[];
|
391
397
|
birthLocationId: string | null;
|
392
398
|
residenceLocationId: string | null;
|
@@ -410,6 +416,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
410
416
|
fullName: string;
|
411
417
|
profilePictureUrl: string | null;
|
412
418
|
mail: string | null;
|
419
|
+
dni: string | null;
|
413
420
|
created_at: string;
|
414
421
|
updated_at: string;
|
415
422
|
shortId: number;
|
@@ -419,7 +426,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
419
426
|
gender: string | null;
|
420
427
|
birthDate: string | null;
|
421
428
|
instagram: string | null;
|
422
|
-
dni: string | null;
|
423
429
|
alternativeNames: string[];
|
424
430
|
birthLocationId: string | null;
|
425
431
|
residenceLocationId: string | null;
|
@@ -431,6 +437,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
431
437
|
fullName: string;
|
432
438
|
mail: string;
|
433
439
|
eventId: string;
|
440
|
+
dni: string;
|
434
441
|
created_at: string;
|
435
442
|
updated_at: string;
|
436
443
|
ticketGroupId: string;
|
@@ -449,6 +456,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
449
456
|
fullName: string;
|
450
457
|
profilePictureUrl: string | null;
|
451
458
|
mail: string | null;
|
459
|
+
dni: string | null;
|
452
460
|
created_at: string;
|
453
461
|
updated_at: string;
|
454
462
|
shortId: number;
|
@@ -458,7 +466,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
458
466
|
gender: string | null;
|
459
467
|
birthDate: string | null;
|
460
468
|
instagram: string | null;
|
461
|
-
dni: string | null;
|
462
469
|
alternativeNames: string[];
|
463
470
|
birthLocationId: string | null;
|
464
471
|
residenceLocationId: string | null;
|
@@ -471,6 +478,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
471
478
|
fullName: string;
|
472
479
|
mail: string;
|
473
480
|
eventId: string;
|
481
|
+
dni: string;
|
474
482
|
created_at: string;
|
475
483
|
updated_at: string;
|
476
484
|
ticketGroupId: string;
|
@@ -492,6 +500,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
492
500
|
fullName: string;
|
493
501
|
profilePictureUrl: string | null;
|
494
502
|
mail: string | null;
|
503
|
+
dni: string | null;
|
495
504
|
created_at: string;
|
496
505
|
updated_at: string;
|
497
506
|
shortId: number;
|
@@ -501,7 +510,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
501
510
|
gender: string | null;
|
502
511
|
birthDate: string | null;
|
503
512
|
instagram: string | null;
|
504
|
-
dni: string | null;
|
505
513
|
alternativeNames: string[];
|
506
514
|
birthLocationId: string | null;
|
507
515
|
residenceLocationId: string | null;
|
@@ -513,6 +521,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
513
521
|
fullName: string;
|
514
522
|
mail: string;
|
515
523
|
eventId: string;
|
524
|
+
dni: string;
|
516
525
|
created_at: string;
|
517
526
|
updated_at: string;
|
518
527
|
ticketGroupId: string;
|
@@ -533,6 +542,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
533
542
|
fullName: string;
|
534
543
|
profilePictureUrl: string | null;
|
535
544
|
mail: string | null;
|
545
|
+
dni: string | null;
|
536
546
|
created_at: string;
|
537
547
|
updated_at: string;
|
538
548
|
shortId: number;
|
@@ -542,7 +552,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
542
552
|
gender: string | null;
|
543
553
|
birthDate: string | null;
|
544
554
|
instagram: string | null;
|
545
|
-
dni: string | null;
|
546
555
|
alternativeNames: string[];
|
547
556
|
birthLocationId: string | null;
|
548
557
|
residenceLocationId: string | null;
|
@@ -555,6 +564,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
555
564
|
fullName: string;
|
556
565
|
mail: string;
|
557
566
|
eventId: string;
|
567
|
+
dni: string;
|
558
568
|
created_at: string;
|
559
569
|
updated_at: string;
|
560
570
|
ticketGroupId: string;
|
@@ -10,6 +10,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
dni: z.ZodString;
|
13
14
|
ticketGroupId: z.ZodString;
|
14
15
|
created_at: z.ZodDate;
|
15
16
|
updated_at: z.ZodDate;
|
@@ -78,6 +79,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
78
79
|
fullName: string;
|
79
80
|
mail: string;
|
80
81
|
eventId: string;
|
82
|
+
dni: string;
|
81
83
|
created_at: Date;
|
82
84
|
updated_at: Date;
|
83
85
|
ticketGroupId: string;
|
@@ -102,6 +104,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
102
104
|
fullName: string;
|
103
105
|
mail: string;
|
104
106
|
eventId: string;
|
107
|
+
dni: string;
|
105
108
|
created_at: Date;
|
106
109
|
updated_at: Date;
|
107
110
|
ticketGroupId: string;
|
@@ -128,6 +131,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
128
131
|
fullName: string;
|
129
132
|
mail: string;
|
130
133
|
eventId: string;
|
134
|
+
dni: string;
|
131
135
|
created_at: Date;
|
132
136
|
updated_at: Date;
|
133
137
|
ticketGroupId: string;
|
@@ -154,6 +158,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
154
158
|
fullName: string;
|
155
159
|
mail: string;
|
156
160
|
eventId: string;
|
161
|
+
dni: string;
|
157
162
|
created_at: Date;
|
158
163
|
updated_at: Date;
|
159
164
|
ticketGroupId: string;
|
@@ -170,6 +175,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
170
175
|
}>;
|
171
176
|
fullName: z.ZodString;
|
172
177
|
mail: z.ZodString;
|
178
|
+
dni: z.ZodString;
|
173
179
|
ticketGroupId: z.ZodString;
|
174
180
|
created_at: z.ZodString;
|
175
181
|
updated_at: z.ZodString;
|
@@ -237,6 +243,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
237
243
|
fullName: string;
|
238
244
|
mail: string;
|
239
245
|
eventId: string;
|
246
|
+
dni: string;
|
240
247
|
created_at: string;
|
241
248
|
updated_at: string;
|
242
249
|
ticketGroupId: string;
|
@@ -261,6 +268,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
261
268
|
fullName: string;
|
262
269
|
mail: string;
|
263
270
|
eventId: string;
|
271
|
+
dni: string;
|
264
272
|
created_at: string;
|
265
273
|
updated_at: string;
|
266
274
|
ticketGroupId: string;
|
@@ -287,6 +295,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
287
295
|
fullName: string;
|
288
296
|
mail: string;
|
289
297
|
eventId: string;
|
298
|
+
dni: string;
|
290
299
|
created_at: string;
|
291
300
|
updated_at: string;
|
292
301
|
ticketGroupId: string;
|
@@ -313,6 +322,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
313
322
|
fullName: string;
|
314
323
|
mail: string;
|
315
324
|
eventId: string;
|
325
|
+
dni: string;
|
316
326
|
created_at: string;
|
317
327
|
updated_at: string;
|
318
328
|
ticketGroupId: string;
|
@@ -8,6 +8,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
8
8
|
}>;
|
9
9
|
fullName: import("zod").ZodString;
|
10
10
|
mail: import("zod").ZodString;
|
11
|
+
dni: import("zod").ZodString;
|
11
12
|
ticketGroupId: import("zod").ZodString;
|
12
13
|
created_at: import("zod").ZodDate;
|
13
14
|
updated_at: import("zod").ZodDate;
|
@@ -17,6 +18,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
17
18
|
fullName: string;
|
18
19
|
mail: string;
|
19
20
|
eventId: string;
|
21
|
+
dni: string;
|
20
22
|
created_at: Date;
|
21
23
|
updated_at: Date;
|
22
24
|
ticketGroupId: string;
|
@@ -26,6 +28,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
26
28
|
fullName: string;
|
27
29
|
mail: string;
|
28
30
|
eventId: string;
|
31
|
+
dni: string;
|
29
32
|
created_at: Date;
|
30
33
|
updated_at: Date;
|
31
34
|
ticketGroupId: string;
|
@@ -40,6 +43,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
40
43
|
}>;
|
41
44
|
fullName: import("zod").ZodString;
|
42
45
|
mail: import("zod").ZodString;
|
46
|
+
dni: import("zod").ZodString;
|
43
47
|
ticketGroupId: import("zod").ZodString;
|
44
48
|
created_at: import("zod").ZodString;
|
45
49
|
updated_at: import("zod").ZodString;
|
@@ -49,6 +53,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
49
53
|
fullName: string;
|
50
54
|
mail: string;
|
51
55
|
eventId: string;
|
56
|
+
dni: string;
|
52
57
|
created_at: string;
|
53
58
|
updated_at: string;
|
54
59
|
ticketGroupId: string;
|
@@ -58,6 +63,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
58
63
|
fullName: string;
|
59
64
|
mail: string;
|
60
65
|
eventId: string;
|
66
|
+
dni: string;
|
61
67
|
created_at: string;
|
62
68
|
updated_at: string;
|
63
69
|
ticketGroupId: string;
|
@@ -9,6 +9,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
9
9
|
}>;
|
10
10
|
fullName: z.ZodString;
|
11
11
|
mail: z.ZodString;
|
12
|
+
dni: z.ZodString;
|
12
13
|
ticketGroupId: z.ZodString;
|
13
14
|
created_at: z.ZodDate;
|
14
15
|
updated_at: z.ZodDate;
|
@@ -18,6 +19,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
18
19
|
fullName: string;
|
19
20
|
mail: string;
|
20
21
|
eventId: string;
|
22
|
+
dni: string;
|
21
23
|
created_at: Date;
|
22
24
|
updated_at: Date;
|
23
25
|
ticketGroupId: string;
|
@@ -27,6 +29,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
27
29
|
fullName: string;
|
28
30
|
mail: string;
|
29
31
|
eventId: string;
|
32
|
+
dni: string;
|
30
33
|
created_at: Date;
|
31
34
|
updated_at: Date;
|
32
35
|
ticketGroupId: string;
|
@@ -41,6 +44,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
41
44
|
}>;
|
42
45
|
fullName: z.ZodString;
|
43
46
|
mail: z.ZodString;
|
47
|
+
dni: z.ZodString;
|
44
48
|
ticketGroupId: z.ZodString;
|
45
49
|
created_at: z.ZodString;
|
46
50
|
updated_at: z.ZodString;
|
@@ -50,6 +54,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
50
54
|
fullName: string;
|
51
55
|
mail: string;
|
52
56
|
eventId: string;
|
57
|
+
dni: string;
|
53
58
|
created_at: string;
|
54
59
|
updated_at: string;
|
55
60
|
ticketGroupId: string;
|
@@ -59,6 +64,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
59
64
|
fullName: string;
|
60
65
|
mail: string;
|
61
66
|
eventId: string;
|
67
|
+
dni: string;
|
62
68
|
created_at: string;
|
63
69
|
updated_at: string;
|
64
70
|
ticketGroupId: string;
|
@@ -18,6 +18,7 @@ exports.ticketSchema = zod_1.default.object({
|
|
18
18
|
}),
|
19
19
|
fullName: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.fullName.required')),
|
20
20
|
mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
|
21
|
+
dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
|
21
22
|
ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id,
|
22
23
|
created_at: zod_1.default.date(),
|
23
24
|
updated_at: zod_1.default.date(),
|
@@ -6,16 +6,19 @@ export declare const updateTicketSchema: import("zod").ZodObject<{
|
|
6
6
|
}>>;
|
7
7
|
fullName: import("zod").ZodOptional<import("zod").ZodString>;
|
8
8
|
mail: import("zod").ZodOptional<import("zod").ZodString>;
|
9
|
+
dni: import("zod").ZodOptional<import("zod").ZodString>;
|
9
10
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
10
11
|
}, "strip", import("zod").ZodTypeAny, {
|
11
12
|
type?: "PARTICIPANT" | "STAFF" | "SPECTATOR" | undefined;
|
12
13
|
fullName?: string | undefined;
|
13
14
|
mail?: string | undefined;
|
15
|
+
dni?: string | undefined;
|
14
16
|
ticketGroupId?: string | undefined;
|
15
17
|
}, {
|
16
18
|
type?: "PARTICIPANT" | "STAFF" | "SPECTATOR" | undefined;
|
17
19
|
fullName?: string | undefined;
|
18
20
|
mail?: string | undefined;
|
21
|
+
dni?: string | undefined;
|
19
22
|
ticketGroupId?: string | undefined;
|
20
23
|
}>;
|
21
24
|
declare const UpdateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -26,16 +29,19 @@ declare const UpdateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
26
29
|
}>>;
|
27
30
|
fullName: import("zod").ZodOptional<import("zod").ZodString>;
|
28
31
|
mail: import("zod").ZodOptional<import("zod").ZodString>;
|
32
|
+
dni: import("zod").ZodOptional<import("zod").ZodString>;
|
29
33
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
30
34
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
31
35
|
type?: "PARTICIPANT" | "STAFF" | "SPECTATOR" | undefined;
|
32
36
|
fullName?: string | undefined;
|
33
37
|
mail?: string | undefined;
|
38
|
+
dni?: string | undefined;
|
34
39
|
ticketGroupId?: string | undefined;
|
35
40
|
}, {
|
36
41
|
type?: "PARTICIPANT" | "STAFF" | "SPECTATOR" | undefined;
|
37
42
|
fullName?: string | undefined;
|
38
43
|
mail?: string | undefined;
|
44
|
+
dni?: string | undefined;
|
39
45
|
ticketGroupId?: string | undefined;
|
40
46
|
}>>;
|
41
47
|
export declare class UpdateTicketDto extends UpdateTicketDto_base {
|
@@ -50,6 +56,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
50
56
|
}>;
|
51
57
|
fullName: import("zod").ZodString;
|
52
58
|
mail: import("zod").ZodString;
|
59
|
+
dni: import("zod").ZodString;
|
53
60
|
ticketGroupId: import("zod").ZodString;
|
54
61
|
created_at: import("zod").ZodDate;
|
55
62
|
updated_at: import("zod").ZodDate;
|
@@ -59,6 +66,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
59
66
|
fullName: string;
|
60
67
|
mail: string;
|
61
68
|
eventId: string;
|
69
|
+
dni: string;
|
62
70
|
created_at: Date;
|
63
71
|
updated_at: Date;
|
64
72
|
ticketGroupId: string;
|
@@ -68,6 +76,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
68
76
|
fullName: string;
|
69
77
|
mail: string;
|
70
78
|
eventId: string;
|
79
|
+
dni: string;
|
71
80
|
created_at: Date;
|
72
81
|
updated_at: Date;
|
73
82
|
ticketGroupId: string;
|
@@ -82,6 +91,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
82
91
|
}>;
|
83
92
|
fullName: import("zod").ZodString;
|
84
93
|
mail: import("zod").ZodString;
|
94
|
+
dni: import("zod").ZodString;
|
85
95
|
ticketGroupId: import("zod").ZodString;
|
86
96
|
created_at: import("zod").ZodString;
|
87
97
|
updated_at: import("zod").ZodString;
|
@@ -91,6 +101,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
91
101
|
fullName: string;
|
92
102
|
mail: string;
|
93
103
|
eventId: string;
|
104
|
+
dni: string;
|
94
105
|
created_at: string;
|
95
106
|
updated_at: string;
|
96
107
|
ticketGroupId: string;
|
@@ -100,6 +111,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
100
111
|
fullName: string;
|
101
112
|
mail: string;
|
102
113
|
eventId: string;
|
114
|
+
dni: string;
|
103
115
|
created_at: string;
|
104
116
|
updated_at: string;
|
105
117
|
ticketGroupId: string;
|
@@ -60,6 +60,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
60
60
|
}>;
|
61
61
|
fullName: z.ZodString;
|
62
62
|
mail: z.ZodString;
|
63
|
+
dni: z.ZodString;
|
63
64
|
ticketGroupId: z.ZodString;
|
64
65
|
created_at: z.ZodDate;
|
65
66
|
updated_at: z.ZodDate;
|
@@ -69,6 +70,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
69
70
|
fullName: string;
|
70
71
|
mail: string;
|
71
72
|
eventId: string;
|
73
|
+
dni: string;
|
72
74
|
created_at: Date;
|
73
75
|
updated_at: Date;
|
74
76
|
ticketGroupId: string;
|
@@ -78,6 +80,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
78
80
|
fullName: string;
|
79
81
|
mail: string;
|
80
82
|
eventId: string;
|
83
|
+
dni: string;
|
81
84
|
created_at: Date;
|
82
85
|
updated_at: Date;
|
83
86
|
ticketGroupId: string;
|
@@ -153,6 +156,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
153
156
|
fullName: string;
|
154
157
|
mail: string;
|
155
158
|
eventId: string;
|
159
|
+
dni: string;
|
156
160
|
created_at: Date;
|
157
161
|
updated_at: Date;
|
158
162
|
ticketGroupId: string;
|
@@ -185,6 +189,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
185
189
|
fullName: string;
|
186
190
|
mail: string;
|
187
191
|
eventId: string;
|
192
|
+
dni: string;
|
188
193
|
created_at: Date;
|
189
194
|
updated_at: Date;
|
190
195
|
ticketGroupId: string;
|
@@ -211,6 +216,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
211
216
|
}>;
|
212
217
|
fullName: z.ZodString;
|
213
218
|
mail: z.ZodString;
|
219
|
+
dni: z.ZodString;
|
214
220
|
ticketGroupId: z.ZodString;
|
215
221
|
created_at: z.ZodString;
|
216
222
|
updated_at: z.ZodString;
|
@@ -220,6 +226,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
220
226
|
fullName: string;
|
221
227
|
mail: string;
|
222
228
|
eventId: string;
|
229
|
+
dni: string;
|
223
230
|
created_at: string;
|
224
231
|
updated_at: string;
|
225
232
|
ticketGroupId: string;
|
@@ -229,6 +236,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
229
236
|
fullName: string;
|
230
237
|
mail: string;
|
231
238
|
eventId: string;
|
239
|
+
dni: string;
|
232
240
|
created_at: string;
|
233
241
|
updated_at: string;
|
234
242
|
ticketGroupId: string;
|
@@ -304,6 +312,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
304
312
|
fullName: string;
|
305
313
|
mail: string;
|
306
314
|
eventId: string;
|
315
|
+
dni: string;
|
307
316
|
created_at: string;
|
308
317
|
updated_at: string;
|
309
318
|
ticketGroupId: string;
|
@@ -336,6 +345,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
336
345
|
fullName: string;
|
337
346
|
mail: string;
|
338
347
|
eventId: string;
|
348
|
+
dni: string;
|
339
349
|
created_at: string;
|
340
350
|
updated_at: string;
|
341
351
|
ticketGroupId: string;
|
@@ -1,4 +1,18 @@
|
|
1
1
|
import z from 'zod';
|
2
|
+
export declare const findTicketsByEventSchema: z.ZodObject<{
|
3
|
+
eventId: z.ZodString;
|
4
|
+
type: z.ZodNativeEnum<{
|
5
|
+
PARTICIPANT: "PARTICIPANT";
|
6
|
+
STAFF: "STAFF";
|
7
|
+
SPECTATOR: "SPECTATOR";
|
8
|
+
}>;
|
9
|
+
}, "strip", z.ZodTypeAny, {
|
10
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
11
|
+
eventId: string;
|
12
|
+
}, {
|
13
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
14
|
+
eventId: string;
|
15
|
+
}>;
|
2
16
|
export declare const findTicketsByEventResponseSchema: z.ZodObject<{
|
3
17
|
tickets: z.ZodNumber;
|
4
18
|
}, "strip", z.ZodTypeAny, {
|
@@ -6,3 +20,13 @@ export declare const findTicketsByEventResponseSchema: z.ZodObject<{
|
|
6
20
|
}, {
|
7
21
|
tickets: number;
|
8
22
|
}>;
|
23
|
+
declare const FindTicketsByEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
24
|
+
tickets: z.ZodNumber;
|
25
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
26
|
+
tickets: number;
|
27
|
+
}, {
|
28
|
+
tickets: number;
|
29
|
+
}>>;
|
30
|
+
export declare class FindTicketsByEventDto extends FindTicketsByEventDto_base {
|
31
|
+
}
|
32
|
+
export {};
|
@@ -3,9 +3,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.findTicketsByEventResponseSchema = void 0;
|
6
|
+
exports.FindTicketsByEventDto = exports.findTicketsByEventResponseSchema = exports.findTicketsByEventSchema = void 0;
|
7
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
7
8
|
const zod_1 = __importDefault(require("zod"));
|
9
|
+
const types_1 = require("../../../types");
|
10
|
+
exports.findTicketsByEventSchema = zod_1.default.object({
|
11
|
+
eventId: zod_1.default.string(),
|
12
|
+
type: zod_1.default.nativeEnum(types_1.TicketType),
|
13
|
+
});
|
8
14
|
exports.findTicketsByEventResponseSchema = zod_1.default.object({
|
9
15
|
tickets: zod_1.default.number(),
|
10
16
|
});
|
17
|
+
class FindTicketsByEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findTicketsByEventResponseSchema) {
|
18
|
+
}
|
19
|
+
exports.FindTicketsByEventDto = FindTicketsByEventDto;
|
11
20
|
//# sourceMappingURL=find-tickets-by-event.dto.js.map
|