expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.1 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.4
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 +3 -131
- 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 -4
- 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 findByEventTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
}>;
|
16
16
|
fullName: z.ZodString;
|
17
17
|
mail: z.ZodString;
|
18
|
-
dni: z.ZodString;
|
19
|
-
seat: z.ZodNumber;
|
20
18
|
created_at: z.ZodDate;
|
21
19
|
updated_at: z.ZodDate;
|
22
20
|
}, {
|
@@ -50,8 +48,8 @@ export declare const findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: z.ZodObject<{
|
|
163
161
|
mail: string;
|
164
162
|
eventId: string;
|
165
163
|
status: "BOOKED" | "PAID" | "FREE";
|
166
|
-
seat: number;
|
167
|
-
dni: string;
|
168
164
|
created_at: Date;
|
169
165
|
updated_at: Date;
|
170
166
|
}, {
|
@@ -182,7 +178,6 @@ export declare const findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: z.ZodObject<{
|
|
205
201
|
mail: string;
|
206
202
|
eventId: string;
|
207
203
|
status: "BOOKED" | "PAID" | "FREE";
|
208
|
-
seat: number;
|
209
|
-
dni: string;
|
210
204
|
created_at: Date;
|
211
205
|
updated_at: Date;
|
212
206
|
}>, "many">;
|
@@ -221,13 +215,12 @@ export declare const findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: z.ZodObject<{
|
|
249
243
|
mail: string;
|
250
244
|
eventId: string;
|
251
245
|
status: "BOOKED" | "PAID" | "FREE";
|
252
|
-
seat: number;
|
253
|
-
dni: string;
|
254
246
|
created_at: Date;
|
255
247
|
updated_at: Date;
|
256
248
|
}[];
|
@@ -270,7 +262,6 @@ export declare const findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: z.ZodObject<{
|
|
293
285
|
mail: string;
|
294
286
|
eventId: string;
|
295
287
|
status: "BOOKED" | "PAID" | "FREE";
|
296
|
-
seat: number;
|
297
|
-
dni: string;
|
298
288
|
created_at: Date;
|
299
289
|
updated_at: Date;
|
300
290
|
}[];
|
@@ -315,8 +305,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
315
305
|
}>;
|
316
306
|
fullName: z.ZodString;
|
317
307
|
mail: z.ZodString;
|
318
|
-
dni: z.ZodString;
|
319
|
-
seat: 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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
452
440
|
mail: string;
|
453
441
|
eventId: string;
|
454
442
|
status: "BOOKED" | "PAID" | "FREE";
|
455
|
-
seat: number;
|
456
|
-
dni: string;
|
457
443
|
created_at: string;
|
458
444
|
updated_at: string;
|
459
445
|
}, {
|
@@ -471,7 +457,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
494
480
|
mail: string;
|
495
481
|
eventId: string;
|
496
482
|
status: "BOOKED" | "PAID" | "FREE";
|
497
|
-
seat: number;
|
498
|
-
dni: string;
|
499
483
|
created_at: string;
|
500
484
|
updated_at: string;
|
501
485
|
}>, "many">;
|
@@ -510,13 +494,12 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
538
522
|
mail: string;
|
539
523
|
eventId: string;
|
540
524
|
status: "BOOKED" | "PAID" | "FREE";
|
541
|
-
seat: number;
|
542
|
-
dni: string;
|
543
525
|
created_at: string;
|
544
526
|
updated_at: string;
|
545
527
|
}[];
|
@@ -559,7 +541,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
582
564
|
mail: string;
|
583
565
|
eventId: string;
|
584
566
|
status: "BOOKED" | "PAID" | "FREE";
|
585
|
-
seat: number;
|
586
|
-
dni: string;
|
587
567
|
created_at: string;
|
588
568
|
updated_at: string;
|
589
569
|
}[];
|