expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.2 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5
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/account/dto/account.dto.d.ts +6 -6
- package/dist/src/account/dto/create-account.dto.d.ts +12 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
- package/dist/src/account/dto/get-me.dto.d.ts +6 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
- package/dist/src/auth/dto/login.dto.d.ts +11 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -20
- package/dist/src/i18n/es.d.ts +5 -19
- package/dist/src/i18n/es.js +5 -19
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
- package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
- package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
- package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
- package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
- package/dist/src/schema/profile.schema.d.ts +5 -5
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +688 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +57 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
- package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.js +0 -2
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
- package/dist/types/prisma-schema/edge.js +5 -7
- package/dist/types/prisma-schema/index-browser.js +2 -4
- package/dist/types/prisma-schema/index.d.ts +65 -193
- package/dist/types/prisma-schema/index.js +5 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -5
- package/dist/types/prisma-schema/wasm.js +2 -4
- package/dist/types/schema.d.ts +116 -100
- package/package.json +2 -2
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -15,8 +15,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
}>;
|
16
16
|
fullName: z.ZodString;
|
17
17
|
mail: z.ZodString;
|
18
|
-
dni: z.ZodString;
|
19
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
20
18
|
created_at: z.ZodDate;
|
21
19
|
updated_at: z.ZodDate;
|
22
20
|
}, {
|
@@ -50,8 +48,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
50
48
|
USER: "USER";
|
51
49
|
ADMIN: "ADMIN";
|
52
50
|
FORM: "FORM";
|
53
|
-
MI_EXPO: "MI_EXPO";
|
54
51
|
TICKETS: "TICKETS";
|
52
|
+
MI_EXPO: "MI_EXPO";
|
55
53
|
}>>;
|
56
54
|
firstTimeMiExpo: z.ZodBoolean;
|
57
55
|
username: z.ZodNullable<z.ZodString>;
|
@@ -78,13 +76,12 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
78
76
|
id: string;
|
79
77
|
username: string | null;
|
80
78
|
password: string | null;
|
81
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
79
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
82
80
|
phoneNumber: string;
|
83
81
|
secondaryPhoneNumber: string | null;
|
84
82
|
fullName: string;
|
85
83
|
profilePictureUrl: string | null;
|
86
84
|
mail: string | null;
|
87
|
-
dni: string | null;
|
88
85
|
created_at: Date;
|
89
86
|
updated_at: Date;
|
90
87
|
shortId: number;
|
@@ -94,6 +91,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
94
91
|
gender: string | null;
|
95
92
|
birthDate: Date | null;
|
96
93
|
instagram: string | null;
|
94
|
+
dni: string | null;
|
97
95
|
alternativeNames: string[];
|
98
96
|
birthLocationId: string | null;
|
99
97
|
residenceLocationId: string | null;
|
@@ -108,7 +106,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
108
106
|
fullName: string;
|
109
107
|
profilePictureUrl: string | null;
|
110
108
|
mail: string | null;
|
111
|
-
dni: string | null;
|
112
109
|
created_at: Date;
|
113
110
|
updated_at: Date;
|
114
111
|
shortId: number;
|
@@ -118,12 +115,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
118
115
|
gender: string | null;
|
119
116
|
birthDate: string | null;
|
120
117
|
instagram: string | null;
|
118
|
+
dni: string | null;
|
121
119
|
alternativeNames: string[];
|
122
120
|
birthLocationId: string | null;
|
123
121
|
residenceLocationId: string | null;
|
124
122
|
isInTrash: boolean;
|
125
123
|
movedToTrashDate: Date | null;
|
126
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
124
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
127
125
|
}>>;
|
128
126
|
}>, "strip", z.ZodTypeAny, {
|
129
127
|
event: {
|
@@ -135,13 +133,12 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
135
133
|
id: string;
|
136
134
|
username: string | null;
|
137
135
|
password: string | null;
|
138
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
136
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
139
137
|
phoneNumber: string;
|
140
138
|
secondaryPhoneNumber: string | null;
|
141
139
|
fullName: string;
|
142
140
|
profilePictureUrl: string | null;
|
143
141
|
mail: string | null;
|
144
|
-
dni: string | null;
|
145
142
|
created_at: Date;
|
146
143
|
updated_at: Date;
|
147
144
|
shortId: number;
|
@@ -151,6 +148,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
151
148
|
gender: string | null;
|
152
149
|
birthDate: Date | null;
|
153
150
|
instagram: string | null;
|
151
|
+
dni: string | null;
|
154
152
|
alternativeNames: string[];
|
155
153
|
birthLocationId: string | null;
|
156
154
|
residenceLocationId: string | null;
|
@@ -163,8 +161,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
163
161
|
mail: string;
|
164
162
|
eventId: string;
|
165
163
|
status: "BOOKED" | "PAID" | "FREE";
|
166
|
-
seat: number | null;
|
167
|
-
dni: string;
|
168
164
|
created_at: Date;
|
169
165
|
updated_at: Date;
|
170
166
|
}, {
|
@@ -182,7 +178,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
182
178
|
fullName: string;
|
183
179
|
profilePictureUrl: string | null;
|
184
180
|
mail: string | null;
|
185
|
-
dni: string | null;
|
186
181
|
created_at: Date;
|
187
182
|
updated_at: Date;
|
188
183
|
shortId: number;
|
@@ -192,12 +187,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
192
187
|
gender: string | null;
|
193
188
|
birthDate: string | null;
|
194
189
|
instagram: string | null;
|
190
|
+
dni: string | null;
|
195
191
|
alternativeNames: string[];
|
196
192
|
birthLocationId: string | null;
|
197
193
|
residenceLocationId: string | null;
|
198
194
|
isInTrash: boolean;
|
199
195
|
movedToTrashDate: Date | null;
|
200
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
196
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
201
197
|
} | null;
|
202
198
|
id: string;
|
203
199
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -205,8 +201,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
205
201
|
mail: string;
|
206
202
|
eventId: string;
|
207
203
|
status: "BOOKED" | "PAID" | "FREE";
|
208
|
-
seat: number | null;
|
209
|
-
dni: string;
|
210
204
|
created_at: Date;
|
211
205
|
updated_at: Date;
|
212
206
|
}>, "many">;
|
@@ -221,13 +215,12 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
221
215
|
id: string;
|
222
216
|
username: string | null;
|
223
217
|
password: string | null;
|
224
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
218
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
225
219
|
phoneNumber: string;
|
226
220
|
secondaryPhoneNumber: string | null;
|
227
221
|
fullName: string;
|
228
222
|
profilePictureUrl: string | null;
|
229
223
|
mail: string | null;
|
230
|
-
dni: string | null;
|
231
224
|
created_at: Date;
|
232
225
|
updated_at: Date;
|
233
226
|
shortId: number;
|
@@ -237,6 +230,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
237
230
|
gender: string | null;
|
238
231
|
birthDate: Date | null;
|
239
232
|
instagram: string | null;
|
233
|
+
dni: string | null;
|
240
234
|
alternativeNames: string[];
|
241
235
|
birthLocationId: string | null;
|
242
236
|
residenceLocationId: string | null;
|
@@ -249,8 +243,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
249
243
|
mail: string;
|
250
244
|
eventId: string;
|
251
245
|
status: "BOOKED" | "PAID" | "FREE";
|
252
|
-
seat: number | null;
|
253
|
-
dni: string;
|
254
246
|
created_at: Date;
|
255
247
|
updated_at: Date;
|
256
248
|
}[];
|
@@ -270,7 +262,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
270
262
|
fullName: string;
|
271
263
|
profilePictureUrl: string | null;
|
272
264
|
mail: string | null;
|
273
|
-
dni: string | null;
|
274
265
|
created_at: Date;
|
275
266
|
updated_at: Date;
|
276
267
|
shortId: number;
|
@@ -280,12 +271,13 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
280
271
|
gender: string | null;
|
281
272
|
birthDate: string | null;
|
282
273
|
instagram: string | null;
|
274
|
+
dni: string | null;
|
283
275
|
alternativeNames: string[];
|
284
276
|
birthLocationId: string | null;
|
285
277
|
residenceLocationId: string | null;
|
286
278
|
isInTrash: boolean;
|
287
279
|
movedToTrashDate: Date | null;
|
288
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
280
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
289
281
|
} | null;
|
290
282
|
id: string;
|
291
283
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -293,8 +285,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
293
285
|
mail: string;
|
294
286
|
eventId: string;
|
295
287
|
status: "BOOKED" | "PAID" | "FREE";
|
296
|
-
seat: number | null;
|
297
|
-
dni: string;
|
298
288
|
created_at: Date;
|
299
289
|
updated_at: Date;
|
300
290
|
}[];
|
@@ -315,8 +305,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
315
305
|
}>;
|
316
306
|
fullName: z.ZodString;
|
317
307
|
mail: z.ZodString;
|
318
|
-
dni: z.ZodString;
|
319
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
320
308
|
created_at: z.ZodString;
|
321
309
|
updated_at: z.ZodString;
|
322
310
|
event: z.ZodObject<{
|
@@ -339,8 +327,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
339
327
|
USER: "USER";
|
340
328
|
ADMIN: "ADMIN";
|
341
329
|
FORM: "FORM";
|
342
|
-
MI_EXPO: "MI_EXPO";
|
343
330
|
TICKETS: "TICKETS";
|
331
|
+
MI_EXPO: "MI_EXPO";
|
344
332
|
}>>;
|
345
333
|
firstTimeMiExpo: z.ZodBoolean;
|
346
334
|
username: z.ZodNullable<z.ZodString>;
|
@@ -367,13 +355,12 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
367
355
|
id: string;
|
368
356
|
username: string | null;
|
369
357
|
password: string | null;
|
370
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
358
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
371
359
|
phoneNumber: string;
|
372
360
|
secondaryPhoneNumber: string | null;
|
373
361
|
fullName: string;
|
374
362
|
profilePictureUrl: string | null;
|
375
363
|
mail: string | null;
|
376
|
-
dni: string | null;
|
377
364
|
created_at: string;
|
378
365
|
updated_at: string;
|
379
366
|
shortId: number;
|
@@ -383,6 +370,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
383
370
|
gender: string | null;
|
384
371
|
birthDate: string | null;
|
385
372
|
instagram: string | null;
|
373
|
+
dni: string | null;
|
386
374
|
alternativeNames: string[];
|
387
375
|
birthLocationId: string | null;
|
388
376
|
residenceLocationId: string | null;
|
@@ -397,7 +385,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
397
385
|
fullName: string;
|
398
386
|
profilePictureUrl: string | null;
|
399
387
|
mail: string | null;
|
400
|
-
dni: string | null;
|
401
388
|
created_at: string;
|
402
389
|
updated_at: string;
|
403
390
|
shortId: number;
|
@@ -407,12 +394,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
407
394
|
gender: string | null;
|
408
395
|
birthDate: string | null;
|
409
396
|
instagram: string | null;
|
397
|
+
dni: string | null;
|
410
398
|
alternativeNames: string[];
|
411
399
|
birthLocationId: string | null;
|
412
400
|
residenceLocationId: string | null;
|
413
401
|
isInTrash: boolean;
|
414
402
|
movedToTrashDate: string | null;
|
415
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
403
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
416
404
|
}>>;
|
417
405
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
418
406
|
event: {
|
@@ -424,13 +412,12 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
424
412
|
id: string;
|
425
413
|
username: string | null;
|
426
414
|
password: string | null;
|
427
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
415
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
428
416
|
phoneNumber: string;
|
429
417
|
secondaryPhoneNumber: string | null;
|
430
418
|
fullName: string;
|
431
419
|
profilePictureUrl: string | null;
|
432
420
|
mail: string | null;
|
433
|
-
dni: string | null;
|
434
421
|
created_at: string;
|
435
422
|
updated_at: string;
|
436
423
|
shortId: number;
|
@@ -440,6 +427,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
440
427
|
gender: string | null;
|
441
428
|
birthDate: string | null;
|
442
429
|
instagram: string | null;
|
430
|
+
dni: string | null;
|
443
431
|
alternativeNames: string[];
|
444
432
|
birthLocationId: string | null;
|
445
433
|
residenceLocationId: string | null;
|
@@ -452,8 +440,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
452
440
|
mail: string;
|
453
441
|
eventId: string;
|
454
442
|
status: "BOOKED" | "PAID" | "FREE";
|
455
|
-
seat: number | null;
|
456
|
-
dni: string;
|
457
443
|
created_at: string;
|
458
444
|
updated_at: string;
|
459
445
|
}, {
|
@@ -471,7 +457,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
471
457
|
fullName: string;
|
472
458
|
profilePictureUrl: string | null;
|
473
459
|
mail: string | null;
|
474
|
-
dni: string | null;
|
475
460
|
created_at: string;
|
476
461
|
updated_at: string;
|
477
462
|
shortId: number;
|
@@ -481,12 +466,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
481
466
|
gender: string | null;
|
482
467
|
birthDate: string | null;
|
483
468
|
instagram: string | null;
|
469
|
+
dni: string | null;
|
484
470
|
alternativeNames: string[];
|
485
471
|
birthLocationId: string | null;
|
486
472
|
residenceLocationId: string | null;
|
487
473
|
isInTrash: boolean;
|
488
474
|
movedToTrashDate: string | null;
|
489
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
475
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
490
476
|
} | null;
|
491
477
|
id: string;
|
492
478
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -494,8 +480,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
494
480
|
mail: string;
|
495
481
|
eventId: string;
|
496
482
|
status: "BOOKED" | "PAID" | "FREE";
|
497
|
-
seat: number | null;
|
498
|
-
dni: string;
|
499
483
|
created_at: string;
|
500
484
|
updated_at: string;
|
501
485
|
}>, "many">;
|
@@ -510,13 +494,12 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
510
494
|
id: string;
|
511
495
|
username: string | null;
|
512
496
|
password: string | null;
|
513
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
497
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
514
498
|
phoneNumber: string;
|
515
499
|
secondaryPhoneNumber: string | null;
|
516
500
|
fullName: string;
|
517
501
|
profilePictureUrl: string | null;
|
518
502
|
mail: string | null;
|
519
|
-
dni: string | null;
|
520
503
|
created_at: string;
|
521
504
|
updated_at: string;
|
522
505
|
shortId: number;
|
@@ -526,6 +509,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
526
509
|
gender: string | null;
|
527
510
|
birthDate: string | null;
|
528
511
|
instagram: string | null;
|
512
|
+
dni: string | null;
|
529
513
|
alternativeNames: string[];
|
530
514
|
birthLocationId: string | null;
|
531
515
|
residenceLocationId: string | null;
|
@@ -538,8 +522,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
538
522
|
mail: string;
|
539
523
|
eventId: string;
|
540
524
|
status: "BOOKED" | "PAID" | "FREE";
|
541
|
-
seat: number | null;
|
542
|
-
dni: string;
|
543
525
|
created_at: string;
|
544
526
|
updated_at: string;
|
545
527
|
}[];
|
@@ -559,7 +541,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
559
541
|
fullName: string;
|
560
542
|
profilePictureUrl: string | null;
|
561
543
|
mail: string | null;
|
562
|
-
dni: string | null;
|
563
544
|
created_at: string;
|
564
545
|
updated_at: string;
|
565
546
|
shortId: number;
|
@@ -569,12 +550,13 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
569
550
|
gender: string | null;
|
570
551
|
birthDate: string | null;
|
571
552
|
instagram: string | null;
|
553
|
+
dni: string | null;
|
572
554
|
alternativeNames: string[];
|
573
555
|
birthLocationId: string | null;
|
574
556
|
residenceLocationId: string | null;
|
575
557
|
isInTrash: boolean;
|
576
558
|
movedToTrashDate: string | null;
|
577
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
559
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
578
560
|
} | null;
|
579
561
|
id: string;
|
580
562
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -582,8 +564,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
582
564
|
mail: string;
|
583
565
|
eventId: string;
|
584
566
|
status: "BOOKED" | "PAID" | "FREE";
|
585
|
-
seat: number | null;
|
586
|
-
dni: string;
|
587
567
|
created_at: string;
|
588
568
|
updated_at: string;
|
589
569
|
}[];
|
@@ -15,8 +15,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
}>;
|
16
16
|
fullName: z.ZodString;
|
17
17
|
mail: z.ZodString;
|
18
|
-
dni: z.ZodString;
|
19
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
20
18
|
created_at: z.ZodDate;
|
21
19
|
updated_at: z.ZodDate;
|
22
20
|
}, {
|
@@ -85,8 +83,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
85
83
|
mail: string;
|
86
84
|
eventId: string;
|
87
85
|
status: "BOOKED" | "PAID" | "FREE";
|
88
|
-
seat: number | null;
|
89
|
-
dni: string;
|
90
86
|
created_at: Date;
|
91
87
|
updated_at: Date;
|
92
88
|
}, {
|
@@ -111,8 +107,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
111
107
|
mail: string;
|
112
108
|
eventId: string;
|
113
109
|
status: "BOOKED" | "PAID" | "FREE";
|
114
|
-
seat: number | null;
|
115
|
-
dni: string;
|
116
110
|
created_at: Date;
|
117
111
|
updated_at: Date;
|
118
112
|
}>, "many">;
|
@@ -139,8 +133,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
139
133
|
mail: string;
|
140
134
|
eventId: string;
|
141
135
|
status: "BOOKED" | "PAID" | "FREE";
|
142
|
-
seat: number | null;
|
143
|
-
dni: string;
|
144
136
|
created_at: Date;
|
145
137
|
updated_at: Date;
|
146
138
|
}[];
|
@@ -167,8 +159,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
167
159
|
mail: string;
|
168
160
|
eventId: string;
|
169
161
|
status: "BOOKED" | "PAID" | "FREE";
|
170
|
-
seat: number | null;
|
171
|
-
dni: string;
|
172
162
|
created_at: Date;
|
173
163
|
updated_at: Date;
|
174
164
|
}[];
|
@@ -189,8 +179,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
189
179
|
}>;
|
190
180
|
fullName: z.ZodString;
|
191
181
|
mail: z.ZodString;
|
192
|
-
dni: z.ZodString;
|
193
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
194
182
|
created_at: z.ZodString;
|
195
183
|
updated_at: z.ZodString;
|
196
184
|
event: z.ZodObject<{
|
@@ -258,8 +246,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
258
246
|
mail: string;
|
259
247
|
eventId: string;
|
260
248
|
status: "BOOKED" | "PAID" | "FREE";
|
261
|
-
seat: number | null;
|
262
|
-
dni: string;
|
263
249
|
created_at: string;
|
264
250
|
updated_at: string;
|
265
251
|
}, {
|
@@ -284,8 +270,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
284
270
|
mail: string;
|
285
271
|
eventId: string;
|
286
272
|
status: "BOOKED" | "PAID" | "FREE";
|
287
|
-
seat: number | null;
|
288
|
-
dni: string;
|
289
273
|
created_at: string;
|
290
274
|
updated_at: string;
|
291
275
|
}>, "many">;
|
@@ -312,8 +296,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
312
296
|
mail: string;
|
313
297
|
eventId: string;
|
314
298
|
status: "BOOKED" | "PAID" | "FREE";
|
315
|
-
seat: number | null;
|
316
|
-
dni: string;
|
317
299
|
created_at: string;
|
318
300
|
updated_at: string;
|
319
301
|
}[];
|
@@ -340,8 +322,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
340
322
|
mail: string;
|
341
323
|
eventId: string;
|
342
324
|
status: "BOOKED" | "PAID" | "FREE";
|
343
|
-
seat: number | null;
|
344
|
-
dni: string;
|
345
325
|
created_at: string;
|
346
326
|
updated_at: string;
|
347
327
|
}[];
|
@@ -13,8 +13,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
}>;
|
14
14
|
fullName: import("zod").ZodString;
|
15
15
|
mail: import("zod").ZodString;
|
16
|
-
dni: import("zod").ZodString;
|
17
|
-
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
18
16
|
created_at: import("zod").ZodDate;
|
19
17
|
updated_at: import("zod").ZodDate;
|
20
18
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -24,8 +22,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
24
22
|
mail: string;
|
25
23
|
eventId: string;
|
26
24
|
status: "BOOKED" | "PAID" | "FREE";
|
27
|
-
seat: number | null;
|
28
|
-
dni: string;
|
29
25
|
created_at: Date;
|
30
26
|
updated_at: Date;
|
31
27
|
}, {
|
@@ -35,8 +31,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
35
31
|
mail: string;
|
36
32
|
eventId: string;
|
37
33
|
status: "BOOKED" | "PAID" | "FREE";
|
38
|
-
seat: number | null;
|
39
|
-
dni: string;
|
40
34
|
created_at: Date;
|
41
35
|
updated_at: Date;
|
42
36
|
}>;
|
@@ -55,8 +49,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
55
49
|
}>;
|
56
50
|
fullName: import("zod").ZodString;
|
57
51
|
mail: import("zod").ZodString;
|
58
|
-
dni: import("zod").ZodString;
|
59
|
-
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
60
52
|
created_at: import("zod").ZodString;
|
61
53
|
updated_at: import("zod").ZodString;
|
62
54
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -66,8 +58,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
66
58
|
mail: string;
|
67
59
|
eventId: string;
|
68
60
|
status: "BOOKED" | "PAID" | "FREE";
|
69
|
-
seat: number | null;
|
70
|
-
dni: string;
|
71
61
|
created_at: string;
|
72
62
|
updated_at: string;
|
73
63
|
}, {
|
@@ -77,8 +67,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
77
67
|
mail: string;
|
78
68
|
eventId: string;
|
79
69
|
status: "BOOKED" | "PAID" | "FREE";
|
80
|
-
seat: number | null;
|
81
|
-
dni: string;
|
82
70
|
created_at: string;
|
83
71
|
updated_at: string;
|
84
72
|
}>>;
|
@@ -14,8 +14,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
14
14
|
}>;
|
15
15
|
fullName: z.ZodString;
|
16
16
|
mail: z.ZodString;
|
17
|
-
dni: z.ZodString;
|
18
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
19
17
|
created_at: z.ZodDate;
|
20
18
|
updated_at: z.ZodDate;
|
21
19
|
}, "strip", z.ZodTypeAny, {
|
@@ -25,8 +23,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
25
23
|
mail: string;
|
26
24
|
eventId: string;
|
27
25
|
status: "BOOKED" | "PAID" | "FREE";
|
28
|
-
seat: number | null;
|
29
|
-
dni: string;
|
30
26
|
created_at: Date;
|
31
27
|
updated_at: Date;
|
32
28
|
}, {
|
@@ -36,8 +32,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
36
32
|
mail: string;
|
37
33
|
eventId: string;
|
38
34
|
status: "BOOKED" | "PAID" | "FREE";
|
39
|
-
seat: number | null;
|
40
|
-
dni: string;
|
41
35
|
created_at: Date;
|
42
36
|
updated_at: Date;
|
43
37
|
}>;
|
@@ -56,8 +50,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
56
50
|
}>;
|
57
51
|
fullName: z.ZodString;
|
58
52
|
mail: z.ZodString;
|
59
|
-
dni: z.ZodString;
|
60
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
61
53
|
created_at: z.ZodString;
|
62
54
|
updated_at: z.ZodString;
|
63
55
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -67,8 +59,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
67
59
|
mail: string;
|
68
60
|
eventId: string;
|
69
61
|
status: "BOOKED" | "PAID" | "FREE";
|
70
|
-
seat: number | null;
|
71
|
-
dni: string;
|
72
62
|
created_at: string;
|
73
63
|
updated_at: string;
|
74
64
|
}, {
|
@@ -78,8 +68,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
78
68
|
mail: string;
|
79
69
|
eventId: string;
|
80
70
|
status: "BOOKED" | "PAID" | "FREE";
|
81
|
-
seat: number | null;
|
82
|
-
dni: string;
|
83
71
|
created_at: string;
|
84
72
|
updated_at: string;
|
85
73
|
}>>;
|
@@ -20,8 +20,6 @@ exports.ticketSchema = zod_1.default.object({
|
|
20
20
|
}),
|
21
21
|
fullName: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.fullName.required')),
|
22
22
|
mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
|
23
|
-
dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
|
24
|
-
seat: zod_1.default.number().min(1, (0, translate_1.translate)('model.ticket.seat.required')).nullable(),
|
25
23
|
created_at: zod_1.default.date(),
|
26
24
|
updated_at: zod_1.default.date(),
|
27
25
|
});
|
@@ -63,8 +63,6 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
63
63
|
}>;
|
64
64
|
fullName: import("zod").ZodString;
|
65
65
|
mail: import("zod").ZodString;
|
66
|
-
dni: import("zod").ZodString;
|
67
|
-
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
68
66
|
created_at: import("zod").ZodDate;
|
69
67
|
updated_at: import("zod").ZodDate;
|
70
68
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -74,8 +72,6 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
74
72
|
mail: string;
|
75
73
|
eventId: string;
|
76
74
|
status: "BOOKED" | "PAID" | "FREE";
|
77
|
-
seat: number | null;
|
78
|
-
dni: string;
|
79
75
|
created_at: Date;
|
80
76
|
updated_at: Date;
|
81
77
|
}, {
|
@@ -85,8 +81,6 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
85
81
|
mail: string;
|
86
82
|
eventId: string;
|
87
83
|
status: "BOOKED" | "PAID" | "FREE";
|
88
|
-
seat: number | null;
|
89
|
-
dni: string;
|
90
84
|
created_at: Date;
|
91
85
|
updated_at: Date;
|
92
86
|
}>;
|
@@ -105,8 +99,6 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
105
99
|
}>;
|
106
100
|
fullName: import("zod").ZodString;
|
107
101
|
mail: import("zod").ZodString;
|
108
|
-
dni: import("zod").ZodString;
|
109
|
-
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
110
102
|
created_at: import("zod").ZodString;
|
111
103
|
updated_at: import("zod").ZodString;
|
112
104
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -116,8 +108,6 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
116
108
|
mail: string;
|
117
109
|
eventId: string;
|
118
110
|
status: "BOOKED" | "PAID" | "FREE";
|
119
|
-
seat: number | null;
|
120
|
-
dni: string;
|
121
111
|
created_at: string;
|
122
112
|
updated_at: string;
|
123
113
|
}, {
|
@@ -127,8 +117,6 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
127
117
|
mail: string;
|
128
118
|
eventId: string;
|
129
119
|
status: "BOOKED" | "PAID" | "FREE";
|
130
|
-
seat: number | null;
|
131
|
-
dni: string;
|
132
120
|
created_at: string;
|
133
121
|
updated_at: string;
|
134
122
|
}>>;
|