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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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;
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const findByEventAndTypeTicketSchema: 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
|
+
}>;
|
16
|
+
declare const FindByEventAndTypeTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
17
|
+
eventId: z.ZodString;
|
18
|
+
type: z.ZodNativeEnum<{
|
19
|
+
PARTICIPANT: "PARTICIPANT";
|
20
|
+
STAFF: "STAFF";
|
21
|
+
SPECTATOR: "SPECTATOR";
|
22
|
+
}>;
|
23
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
24
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
25
|
+
eventId: string;
|
26
|
+
}, {
|
27
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
28
|
+
eventId: string;
|
29
|
+
}>>;
|
30
|
+
export declare class FindByEventAndTypeTicketDto extends FindByEventAndTypeTicketDto_base {
|
31
|
+
}
|
32
|
+
export declare const findByEventAndTypeTicketResponseSchema: z.ZodObject<{
|
33
|
+
tickets: z.ZodNumber;
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
35
|
+
tickets: number;
|
36
|
+
}, {
|
37
|
+
tickets: number;
|
38
|
+
}>;
|
39
|
+
declare const FindByEventAndTypeTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
40
|
+
tickets: z.ZodNumber;
|
41
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
42
|
+
tickets: number;
|
43
|
+
}, {
|
44
|
+
tickets: number;
|
45
|
+
}>>;
|
46
|
+
export declare class FindByEventAndTypeTicketResponseDto extends FindByEventAndTypeTicketResponseDto_base {
|
47
|
+
}
|
48
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.FindByEventAndTypeTicketResponseDto = exports.findByEventAndTypeTicketResponseSchema = exports.FindByEventAndTypeTicketDto = exports.findByEventAndTypeTicketSchema = void 0;
|
4
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
5
|
+
const zod_1 = require("zod");
|
6
|
+
const types_1 = require("../../../types");
|
7
|
+
exports.findByEventAndTypeTicketSchema = zod_1.z.object({
|
8
|
+
eventId: zod_1.z.string(),
|
9
|
+
type: zod_1.z.nativeEnum(types_1.TicketType),
|
10
|
+
});
|
11
|
+
class FindByEventAndTypeTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByEventAndTypeTicketSchema) {
|
12
|
+
}
|
13
|
+
exports.FindByEventAndTypeTicketDto = FindByEventAndTypeTicketDto;
|
14
|
+
exports.findByEventAndTypeTicketResponseSchema = zod_1.z.object({
|
15
|
+
tickets: zod_1.z.number(),
|
16
|
+
});
|
17
|
+
class FindByEventAndTypeTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByEventAndTypeTicketResponseSchema) {
|
18
|
+
}
|
19
|
+
exports.FindByEventAndTypeTicketResponseDto = FindByEventAndTypeTicketResponseDto;
|
20
|
+
//# sourceMappingURL=find-by-event-type-ticket.dto.js.map
|
@@ -10,6 +10,7 @@ export declare const findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 findByIdTicketResponseSchema: 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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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 FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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;
|