expo-backend-types 0.37.0-EXPO-327-EB-Escanear-entrada.1 → 0.37.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/get-global-filter.dto.d.ts +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -68
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +36 -21
- package/dist/src/i18n/es.js +36 -21
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +14 -12
- package/dist/src/ticket/constants.js +248 -355
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +596 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -44
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -1
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -24
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -36
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -36
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +18 -36
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -36
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -36
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -24
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -24
- package/dist/src/ticket/dto/ticket.dto.js +2 -4
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +26 -42
- package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +356 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +15 -6
- package/dist/types/prisma-schema/index-browser.js +12 -3
- package/dist/types/prisma-schema/index.d.ts +2230 -332
- package/dist/types/prisma-schema/index.js +15 -6
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +23 -7
- package/dist/types/prisma-schema/wasm.js +12 -3
- package/dist/types/schema.d.ts +317 -29
- package/package.json +6 -6
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -8,15 +8,10 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
8
8
|
STAFF: "STAFF";
|
9
9
|
SPECTATOR: "SPECTATOR";
|
10
10
|
}>;
|
11
|
-
status: z.ZodNativeEnum<{
|
12
|
-
BOOKED: "BOOKED";
|
13
|
-
PAID: "PAID";
|
14
|
-
FREE: "FREE";
|
15
|
-
}>;
|
16
11
|
fullName: z.ZodString;
|
17
12
|
mail: z.ZodString;
|
18
13
|
dni: z.ZodString;
|
19
|
-
|
14
|
+
ticketGroupId: z.ZodString;
|
20
15
|
created_at: z.ZodDate;
|
21
16
|
updated_at: z.ZodDate;
|
22
17
|
}, {
|
@@ -158,15 +153,14 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
158
153
|
movedToTrashDate: Date | null;
|
159
154
|
} | null;
|
160
155
|
id: string;
|
161
|
-
type: "
|
156
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
162
157
|
fullName: string;
|
163
158
|
mail: string;
|
164
159
|
eventId: string;
|
165
|
-
status: "BOOKED" | "PAID" | "FREE";
|
166
|
-
seat: number | null;
|
167
160
|
dni: string;
|
168
161
|
created_at: Date;
|
169
162
|
updated_at: Date;
|
163
|
+
ticketGroupId: string;
|
170
164
|
}, {
|
171
165
|
event: {
|
172
166
|
location: string;
|
@@ -200,15 +194,14 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
200
194
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
201
195
|
} | null;
|
202
196
|
id: string;
|
203
|
-
type: "
|
197
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
204
198
|
fullName: string;
|
205
199
|
mail: string;
|
206
200
|
eventId: string;
|
207
|
-
status: "BOOKED" | "PAID" | "FREE";
|
208
|
-
seat: number | null;
|
209
201
|
dni: string;
|
210
202
|
created_at: Date;
|
211
203
|
updated_at: Date;
|
204
|
+
ticketGroupId: string;
|
212
205
|
}>;
|
213
206
|
}, "strip", z.ZodTypeAny, {
|
214
207
|
ticket: {
|
@@ -244,15 +237,14 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
244
237
|
movedToTrashDate: Date | null;
|
245
238
|
} | null;
|
246
239
|
id: string;
|
247
|
-
type: "
|
240
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
248
241
|
fullName: string;
|
249
242
|
mail: string;
|
250
243
|
eventId: string;
|
251
|
-
status: "BOOKED" | "PAID" | "FREE";
|
252
|
-
seat: number | null;
|
253
244
|
dni: string;
|
254
245
|
created_at: Date;
|
255
246
|
updated_at: Date;
|
247
|
+
ticketGroupId: string;
|
256
248
|
};
|
257
249
|
}, {
|
258
250
|
ticket: {
|
@@ -288,15 +280,14 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
288
280
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
289
281
|
} | null;
|
290
282
|
id: string;
|
291
|
-
type: "
|
283
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
292
284
|
fullName: string;
|
293
285
|
mail: string;
|
294
286
|
eventId: string;
|
295
|
-
status: "BOOKED" | "PAID" | "FREE";
|
296
|
-
seat: number | null;
|
297
287
|
dni: string;
|
298
288
|
created_at: Date;
|
299
289
|
updated_at: Date;
|
290
|
+
ticketGroupId: string;
|
300
291
|
};
|
301
292
|
}>;
|
302
293
|
declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -308,15 +299,10 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
308
299
|
STAFF: "STAFF";
|
309
300
|
SPECTATOR: "SPECTATOR";
|
310
301
|
}>;
|
311
|
-
status: z.ZodNativeEnum<{
|
312
|
-
BOOKED: "BOOKED";
|
313
|
-
PAID: "PAID";
|
314
|
-
FREE: "FREE";
|
315
|
-
}>;
|
316
302
|
fullName: z.ZodString;
|
317
303
|
mail: z.ZodString;
|
318
304
|
dni: z.ZodString;
|
319
|
-
|
305
|
+
ticketGroupId: z.ZodString;
|
320
306
|
created_at: z.ZodString;
|
321
307
|
updated_at: z.ZodString;
|
322
308
|
event: z.ZodObject<{
|
@@ -447,15 +433,14 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
447
433
|
movedToTrashDate: string | null;
|
448
434
|
} | null;
|
449
435
|
id: string;
|
450
|
-
type: "
|
436
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
451
437
|
fullName: string;
|
452
438
|
mail: string;
|
453
439
|
eventId: string;
|
454
|
-
status: "BOOKED" | "PAID" | "FREE";
|
455
|
-
seat: number | null;
|
456
440
|
dni: string;
|
457
441
|
created_at: string;
|
458
442
|
updated_at: string;
|
443
|
+
ticketGroupId: string;
|
459
444
|
}, {
|
460
445
|
event: {
|
461
446
|
location: string;
|
@@ -489,15 +474,14 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
489
474
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
490
475
|
} | null;
|
491
476
|
id: string;
|
492
|
-
type: "
|
477
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
493
478
|
fullName: string;
|
494
479
|
mail: string;
|
495
480
|
eventId: string;
|
496
|
-
status: "BOOKED" | "PAID" | "FREE";
|
497
|
-
seat: number | null;
|
498
481
|
dni: string;
|
499
482
|
created_at: string;
|
500
483
|
updated_at: string;
|
484
|
+
ticketGroupId: string;
|
501
485
|
}>;
|
502
486
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
503
487
|
ticket: {
|
@@ -533,15 +517,14 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
533
517
|
movedToTrashDate: string | null;
|
534
518
|
} | null;
|
535
519
|
id: string;
|
536
|
-
type: "
|
520
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
537
521
|
fullName: string;
|
538
522
|
mail: string;
|
539
523
|
eventId: string;
|
540
|
-
status: "BOOKED" | "PAID" | "FREE";
|
541
|
-
seat: number | null;
|
542
524
|
dni: string;
|
543
525
|
created_at: string;
|
544
526
|
updated_at: string;
|
527
|
+
ticketGroupId: string;
|
545
528
|
};
|
546
529
|
}, {
|
547
530
|
ticket: {
|
@@ -577,15 +560,14 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
577
560
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
578
561
|
} | null;
|
579
562
|
id: string;
|
580
|
-
type: "
|
563
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
581
564
|
fullName: string;
|
582
565
|
mail: string;
|
583
566
|
eventId: string;
|
584
|
-
status: "BOOKED" | "PAID" | "FREE";
|
585
|
-
seat: number | null;
|
586
567
|
dni: string;
|
587
568
|
created_at: string;
|
588
569
|
updated_at: string;
|
570
|
+
ticketGroupId: string;
|
589
571
|
};
|
590
572
|
}>>;
|
591
573
|
export declare class FindByIdTicketResponseDto extends FindByIdTicketResponseDto_base {
|
@@ -8,15 +8,10 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
8
8
|
STAFF: "STAFF";
|
9
9
|
SPECTATOR: "SPECTATOR";
|
10
10
|
}>;
|
11
|
-
status: z.ZodNativeEnum<{
|
12
|
-
BOOKED: "BOOKED";
|
13
|
-
PAID: "PAID";
|
14
|
-
FREE: "FREE";
|
15
|
-
}>;
|
16
11
|
fullName: z.ZodString;
|
17
12
|
mail: z.ZodString;
|
18
13
|
dni: z.ZodString;
|
19
|
-
|
14
|
+
ticketGroupId: z.ZodString;
|
20
15
|
created_at: z.ZodDate;
|
21
16
|
updated_at: z.ZodDate;
|
22
17
|
}, {
|
@@ -158,15 +153,14 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
158
153
|
movedToTrashDate: Date | null;
|
159
154
|
} | null;
|
160
155
|
id: string;
|
161
|
-
type: "
|
156
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
162
157
|
fullName: string;
|
163
158
|
mail: string;
|
164
159
|
eventId: string;
|
165
|
-
status: "BOOKED" | "PAID" | "FREE";
|
166
|
-
seat: number | null;
|
167
160
|
dni: string;
|
168
161
|
created_at: Date;
|
169
162
|
updated_at: Date;
|
163
|
+
ticketGroupId: string;
|
170
164
|
}, {
|
171
165
|
event: {
|
172
166
|
location: string;
|
@@ -200,15 +194,14 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
200
194
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
201
195
|
} | null;
|
202
196
|
id: string;
|
203
|
-
type: "
|
197
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
204
198
|
fullName: string;
|
205
199
|
mail: string;
|
206
200
|
eventId: string;
|
207
|
-
status: "BOOKED" | "PAID" | "FREE";
|
208
|
-
seat: number | null;
|
209
201
|
dni: string;
|
210
202
|
created_at: Date;
|
211
203
|
updated_at: Date;
|
204
|
+
ticketGroupId: string;
|
212
205
|
}>, "many">;
|
213
206
|
}, "strip", z.ZodTypeAny, {
|
214
207
|
tickets: {
|
@@ -244,15 +237,14 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
244
237
|
movedToTrashDate: Date | null;
|
245
238
|
} | null;
|
246
239
|
id: string;
|
247
|
-
type: "
|
240
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
248
241
|
fullName: string;
|
249
242
|
mail: string;
|
250
243
|
eventId: string;
|
251
|
-
status: "BOOKED" | "PAID" | "FREE";
|
252
|
-
seat: number | null;
|
253
244
|
dni: string;
|
254
245
|
created_at: Date;
|
255
246
|
updated_at: Date;
|
247
|
+
ticketGroupId: string;
|
256
248
|
}[];
|
257
249
|
}, {
|
258
250
|
tickets: {
|
@@ -288,15 +280,14 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
288
280
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
289
281
|
} | null;
|
290
282
|
id: string;
|
291
|
-
type: "
|
283
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
292
284
|
fullName: string;
|
293
285
|
mail: string;
|
294
286
|
eventId: string;
|
295
|
-
status: "BOOKED" | "PAID" | "FREE";
|
296
|
-
seat: number | null;
|
297
287
|
dni: string;
|
298
288
|
created_at: Date;
|
299
289
|
updated_at: Date;
|
290
|
+
ticketGroupId: string;
|
300
291
|
}[];
|
301
292
|
}>;
|
302
293
|
declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -308,15 +299,10 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
308
299
|
STAFF: "STAFF";
|
309
300
|
SPECTATOR: "SPECTATOR";
|
310
301
|
}>;
|
311
|
-
status: z.ZodNativeEnum<{
|
312
|
-
BOOKED: "BOOKED";
|
313
|
-
PAID: "PAID";
|
314
|
-
FREE: "FREE";
|
315
|
-
}>;
|
316
302
|
fullName: z.ZodString;
|
317
303
|
mail: z.ZodString;
|
318
304
|
dni: z.ZodString;
|
319
|
-
|
305
|
+
ticketGroupId: z.ZodString;
|
320
306
|
created_at: z.ZodString;
|
321
307
|
updated_at: z.ZodString;
|
322
308
|
event: z.ZodObject<{
|
@@ -447,15 +433,14 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
447
433
|
movedToTrashDate: string | null;
|
448
434
|
} | null;
|
449
435
|
id: string;
|
450
|
-
type: "
|
436
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
451
437
|
fullName: string;
|
452
438
|
mail: string;
|
453
439
|
eventId: string;
|
454
|
-
status: "BOOKED" | "PAID" | "FREE";
|
455
|
-
seat: number | null;
|
456
440
|
dni: string;
|
457
441
|
created_at: string;
|
458
442
|
updated_at: string;
|
443
|
+
ticketGroupId: string;
|
459
444
|
}, {
|
460
445
|
event: {
|
461
446
|
location: string;
|
@@ -489,15 +474,14 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
489
474
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
490
475
|
} | null;
|
491
476
|
id: string;
|
492
|
-
type: "
|
477
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
493
478
|
fullName: string;
|
494
479
|
mail: string;
|
495
480
|
eventId: string;
|
496
|
-
status: "BOOKED" | "PAID" | "FREE";
|
497
|
-
seat: number | null;
|
498
481
|
dni: string;
|
499
482
|
created_at: string;
|
500
483
|
updated_at: string;
|
484
|
+
ticketGroupId: string;
|
501
485
|
}>, "many">;
|
502
486
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
503
487
|
tickets: {
|
@@ -533,15 +517,14 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
533
517
|
movedToTrashDate: string | null;
|
534
518
|
} | null;
|
535
519
|
id: string;
|
536
|
-
type: "
|
520
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
537
521
|
fullName: string;
|
538
522
|
mail: string;
|
539
523
|
eventId: string;
|
540
|
-
status: "BOOKED" | "PAID" | "FREE";
|
541
|
-
seat: number | null;
|
542
524
|
dni: string;
|
543
525
|
created_at: string;
|
544
526
|
updated_at: string;
|
527
|
+
ticketGroupId: string;
|
545
528
|
}[];
|
546
529
|
}, {
|
547
530
|
tickets: {
|
@@ -577,15 +560,14 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
577
560
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
578
561
|
} | null;
|
579
562
|
id: string;
|
580
|
-
type: "
|
563
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
581
564
|
fullName: string;
|
582
565
|
mail: string;
|
583
566
|
eventId: string;
|
584
|
-
status: "BOOKED" | "PAID" | "FREE";
|
585
|
-
seat: number | null;
|
586
567
|
dni: string;
|
587
568
|
created_at: string;
|
588
569
|
updated_at: string;
|
570
|
+
ticketGroupId: string;
|
589
571
|
}[];
|
590
572
|
}>>;
|
591
573
|
export declare class FindByMailTicketResponseDto extends FindByMailTicketResponseDto_base {
|
@@ -8,15 +8,10 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
8
8
|
STAFF: "STAFF";
|
9
9
|
SPECTATOR: "SPECTATOR";
|
10
10
|
}>;
|
11
|
-
status: z.ZodNativeEnum<{
|
12
|
-
BOOKED: "BOOKED";
|
13
|
-
PAID: "PAID";
|
14
|
-
FREE: "FREE";
|
15
|
-
}>;
|
16
11
|
fullName: z.ZodString;
|
17
12
|
mail: z.ZodString;
|
18
13
|
dni: z.ZodString;
|
19
|
-
|
14
|
+
ticketGroupId: z.ZodString;
|
20
15
|
created_at: z.ZodDate;
|
21
16
|
updated_at: z.ZodDate;
|
22
17
|
}, {
|
@@ -80,15 +75,14 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
80
75
|
supraEventId: string | null;
|
81
76
|
};
|
82
77
|
id: string;
|
83
|
-
type: "
|
78
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
84
79
|
fullName: string;
|
85
80
|
mail: string;
|
86
81
|
eventId: string;
|
87
|
-
status: "BOOKED" | "PAID" | "FREE";
|
88
|
-
seat: number | null;
|
89
82
|
dni: string;
|
90
83
|
created_at: Date;
|
91
84
|
updated_at: Date;
|
85
|
+
ticketGroupId: string;
|
92
86
|
}, {
|
93
87
|
event: {
|
94
88
|
location: string;
|
@@ -106,15 +100,14 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
106
100
|
supraEventId: string | null;
|
107
101
|
};
|
108
102
|
id: string;
|
109
|
-
type: "
|
103
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
110
104
|
fullName: string;
|
111
105
|
mail: string;
|
112
106
|
eventId: string;
|
113
|
-
status: "BOOKED" | "PAID" | "FREE";
|
114
|
-
seat: number | null;
|
115
107
|
dni: string;
|
116
108
|
created_at: Date;
|
117
109
|
updated_at: Date;
|
110
|
+
ticketGroupId: string;
|
118
111
|
}>, "many">;
|
119
112
|
}, "strip", z.ZodTypeAny, {
|
120
113
|
tickets: {
|
@@ -134,15 +127,14 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
134
127
|
supraEventId: string | null;
|
135
128
|
};
|
136
129
|
id: string;
|
137
|
-
type: "
|
130
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
138
131
|
fullName: string;
|
139
132
|
mail: string;
|
140
133
|
eventId: string;
|
141
|
-
status: "BOOKED" | "PAID" | "FREE";
|
142
|
-
seat: number | null;
|
143
134
|
dni: string;
|
144
135
|
created_at: Date;
|
145
136
|
updated_at: Date;
|
137
|
+
ticketGroupId: string;
|
146
138
|
}[];
|
147
139
|
}, {
|
148
140
|
tickets: {
|
@@ -162,15 +154,14 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
162
154
|
supraEventId: string | null;
|
163
155
|
};
|
164
156
|
id: string;
|
165
|
-
type: "
|
157
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
166
158
|
fullName: string;
|
167
159
|
mail: string;
|
168
160
|
eventId: string;
|
169
|
-
status: "BOOKED" | "PAID" | "FREE";
|
170
|
-
seat: number | null;
|
171
161
|
dni: string;
|
172
162
|
created_at: Date;
|
173
163
|
updated_at: Date;
|
164
|
+
ticketGroupId: string;
|
174
165
|
}[];
|
175
166
|
}>;
|
176
167
|
declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -182,15 +173,10 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
182
173
|
STAFF: "STAFF";
|
183
174
|
SPECTATOR: "SPECTATOR";
|
184
175
|
}>;
|
185
|
-
status: z.ZodNativeEnum<{
|
186
|
-
BOOKED: "BOOKED";
|
187
|
-
PAID: "PAID";
|
188
|
-
FREE: "FREE";
|
189
|
-
}>;
|
190
176
|
fullName: z.ZodString;
|
191
177
|
mail: z.ZodString;
|
192
178
|
dni: z.ZodString;
|
193
|
-
|
179
|
+
ticketGroupId: z.ZodString;
|
194
180
|
created_at: z.ZodString;
|
195
181
|
updated_at: z.ZodString;
|
196
182
|
event: z.ZodObject<{
|
@@ -253,15 +239,14 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
253
239
|
supraEventId: string | null;
|
254
240
|
};
|
255
241
|
id: string;
|
256
|
-
type: "
|
242
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
257
243
|
fullName: string;
|
258
244
|
mail: string;
|
259
245
|
eventId: string;
|
260
|
-
status: "BOOKED" | "PAID" | "FREE";
|
261
|
-
seat: number | null;
|
262
246
|
dni: string;
|
263
247
|
created_at: string;
|
264
248
|
updated_at: string;
|
249
|
+
ticketGroupId: string;
|
265
250
|
}, {
|
266
251
|
event: {
|
267
252
|
location: string;
|
@@ -279,15 +264,14 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
279
264
|
supraEventId: string | null;
|
280
265
|
};
|
281
266
|
id: string;
|
282
|
-
type: "
|
267
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
283
268
|
fullName: string;
|
284
269
|
mail: string;
|
285
270
|
eventId: string;
|
286
|
-
status: "BOOKED" | "PAID" | "FREE";
|
287
|
-
seat: number | null;
|
288
271
|
dni: string;
|
289
272
|
created_at: string;
|
290
273
|
updated_at: string;
|
274
|
+
ticketGroupId: string;
|
291
275
|
}>, "many">;
|
292
276
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
293
277
|
tickets: {
|
@@ -307,15 +291,14 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
307
291
|
supraEventId: string | null;
|
308
292
|
};
|
309
293
|
id: string;
|
310
|
-
type: "
|
294
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
311
295
|
fullName: string;
|
312
296
|
mail: string;
|
313
297
|
eventId: string;
|
314
|
-
status: "BOOKED" | "PAID" | "FREE";
|
315
|
-
seat: number | null;
|
316
298
|
dni: string;
|
317
299
|
created_at: string;
|
318
300
|
updated_at: string;
|
301
|
+
ticketGroupId: string;
|
319
302
|
}[];
|
320
303
|
}, {
|
321
304
|
tickets: {
|
@@ -335,15 +318,14 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
335
318
|
supraEventId: string | null;
|
336
319
|
};
|
337
320
|
id: string;
|
338
|
-
type: "
|
321
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
339
322
|
fullName: string;
|
340
323
|
mail: string;
|
341
324
|
eventId: string;
|
342
|
-
status: "BOOKED" | "PAID" | "FREE";
|
343
|
-
seat: number | null;
|
344
325
|
dni: string;
|
345
326
|
created_at: string;
|
346
327
|
updated_at: string;
|
328
|
+
ticketGroupId: string;
|
347
329
|
}[];
|
348
330
|
}>>;
|
349
331
|
export declare class FindByProfileIdTicketResponseDto extends FindByProfileIdTicketResponseDto_base {
|
@@ -6,39 +6,32 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
6
6
|
STAFF: "STAFF";
|
7
7
|
SPECTATOR: "SPECTATOR";
|
8
8
|
}>;
|
9
|
-
status: import("zod").ZodNativeEnum<{
|
10
|
-
BOOKED: "BOOKED";
|
11
|
-
PAID: "PAID";
|
12
|
-
FREE: "FREE";
|
13
|
-
}>;
|
14
9
|
fullName: import("zod").ZodString;
|
15
10
|
mail: import("zod").ZodString;
|
16
11
|
dni: import("zod").ZodString;
|
17
|
-
|
12
|
+
ticketGroupId: import("zod").ZodString;
|
18
13
|
created_at: import("zod").ZodDate;
|
19
14
|
updated_at: import("zod").ZodDate;
|
20
15
|
}, "strip", import("zod").ZodTypeAny, {
|
21
16
|
id: string;
|
22
|
-
type: "
|
17
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
23
18
|
fullName: string;
|
24
19
|
mail: string;
|
25
20
|
eventId: string;
|
26
|
-
status: "BOOKED" | "PAID" | "FREE";
|
27
|
-
seat: number | null;
|
28
21
|
dni: string;
|
29
22
|
created_at: Date;
|
30
23
|
updated_at: Date;
|
24
|
+
ticketGroupId: string;
|
31
25
|
}, {
|
32
26
|
id: string;
|
33
|
-
type: "
|
27
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
34
28
|
fullName: string;
|
35
29
|
mail: string;
|
36
30
|
eventId: string;
|
37
|
-
status: "BOOKED" | "PAID" | "FREE";
|
38
|
-
seat: number | null;
|
39
31
|
dni: string;
|
40
32
|
created_at: Date;
|
41
33
|
updated_at: Date;
|
34
|
+
ticketGroupId: string;
|
42
35
|
}>;
|
43
36
|
declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
44
37
|
id: import("zod").ZodString;
|
@@ -48,39 +41,32 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
48
41
|
STAFF: "STAFF";
|
49
42
|
SPECTATOR: "SPECTATOR";
|
50
43
|
}>;
|
51
|
-
status: import("zod").ZodNativeEnum<{
|
52
|
-
BOOKED: "BOOKED";
|
53
|
-
PAID: "PAID";
|
54
|
-
FREE: "FREE";
|
55
|
-
}>;
|
56
44
|
fullName: import("zod").ZodString;
|
57
45
|
mail: import("zod").ZodString;
|
58
46
|
dni: import("zod").ZodString;
|
59
|
-
|
47
|
+
ticketGroupId: import("zod").ZodString;
|
60
48
|
created_at: import("zod").ZodString;
|
61
49
|
updated_at: import("zod").ZodString;
|
62
50
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
63
51
|
id: string;
|
64
|
-
type: "
|
52
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
65
53
|
fullName: string;
|
66
54
|
mail: string;
|
67
55
|
eventId: string;
|
68
|
-
status: "BOOKED" | "PAID" | "FREE";
|
69
|
-
seat: number | null;
|
70
56
|
dni: string;
|
71
57
|
created_at: string;
|
72
58
|
updated_at: string;
|
59
|
+
ticketGroupId: string;
|
73
60
|
}, {
|
74
61
|
id: string;
|
75
|
-
type: "
|
62
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
76
63
|
fullName: string;
|
77
64
|
mail: string;
|
78
65
|
eventId: string;
|
79
|
-
status: "BOOKED" | "PAID" | "FREE";
|
80
|
-
seat: number | null;
|
81
66
|
dni: string;
|
82
67
|
created_at: string;
|
83
68
|
updated_at: string;
|
69
|
+
ticketGroupId: string;
|
84
70
|
}>>;
|
85
71
|
export declare class FindTicketResponseDto extends FindTicketResponseDto_base {
|
86
72
|
}
|