expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.11 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.13
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/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 +10 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +10 -0
- 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 +2 -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 +7 -1
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +3 -1
- package/dist/src/ticket-group/exports.d.ts +1 -0
- package/dist/src/ticket-group/exports.js +1 -0
- package/dist/types/prisma-schema/edge.js +3 -3
- package/dist/types/prisma-schema/index.d.ts +40 -61
- package/dist/types/prisma-schema/index.js +3 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -2
- package/dist/types/schema.d.ts +15 -0
- package/package.json +1 -1
@@ -196,6 +196,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
196
196
|
}>;
|
197
197
|
fullName: z.ZodString;
|
198
198
|
mail: z.ZodString;
|
199
|
+
ticketGroupId: z.ZodString;
|
199
200
|
created_at: z.ZodDate;
|
200
201
|
updated_at: z.ZodDate;
|
201
202
|
}, "strip", z.ZodTypeAny, {
|
@@ -206,6 +207,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
206
207
|
eventId: string;
|
207
208
|
created_at: Date;
|
208
209
|
updated_at: Date;
|
210
|
+
ticketGroupId: string;
|
209
211
|
}, {
|
210
212
|
id: string;
|
211
213
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -214,6 +216,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
214
216
|
eventId: string;
|
215
217
|
created_at: Date;
|
216
218
|
updated_at: Date;
|
219
|
+
ticketGroupId: string;
|
217
220
|
}>, "many">;
|
218
221
|
}>, "strip", z.ZodTypeAny, {
|
219
222
|
location: string;
|
@@ -289,6 +292,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
289
292
|
eventId: string;
|
290
293
|
created_at: Date;
|
291
294
|
updated_at: Date;
|
295
|
+
ticketGroupId: string;
|
292
296
|
}[];
|
293
297
|
}, {
|
294
298
|
location: string;
|
@@ -364,6 +368,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
364
368
|
eventId: string;
|
365
369
|
created_at: Date;
|
366
370
|
updated_at: Date;
|
371
|
+
ticketGroupId: string;
|
367
372
|
}[];
|
368
373
|
}>;
|
369
374
|
declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -561,6 +566,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
561
566
|
}>;
|
562
567
|
fullName: z.ZodString;
|
563
568
|
mail: z.ZodString;
|
569
|
+
ticketGroupId: z.ZodString;
|
564
570
|
created_at: z.ZodString;
|
565
571
|
updated_at: z.ZodString;
|
566
572
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -571,6 +577,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
571
577
|
eventId: string;
|
572
578
|
created_at: string;
|
573
579
|
updated_at: string;
|
580
|
+
ticketGroupId: string;
|
574
581
|
}, {
|
575
582
|
id: string;
|
576
583
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -579,6 +586,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
579
586
|
eventId: string;
|
580
587
|
created_at: string;
|
581
588
|
updated_at: string;
|
589
|
+
ticketGroupId: string;
|
582
590
|
}>, "many">;
|
583
591
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
584
592
|
location: string;
|
@@ -654,6 +662,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
654
662
|
eventId: string;
|
655
663
|
created_at: string;
|
656
664
|
updated_at: string;
|
665
|
+
ticketGroupId: string;
|
657
666
|
}[];
|
658
667
|
}, {
|
659
668
|
location: string;
|
@@ -729,6 +738,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
729
738
|
eventId: string;
|
730
739
|
created_at: string;
|
731
740
|
updated_at: string;
|
741
|
+
ticketGroupId: string;
|
732
742
|
}[];
|
733
743
|
}>>;
|
734
744
|
export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
|
@@ -10,21 +10,24 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
ticketGroupId: z.ZodString;
|
13
14
|
created_at: z.ZodDate;
|
14
15
|
updated_at: z.ZodDate;
|
15
|
-
}, "type" | "fullName" | "mail" | "eventId">, {
|
16
|
+
}, "type" | "fullName" | "mail" | "eventId" | "ticketGroupId">, {
|
16
17
|
profileId: z.ZodOptional<z.ZodString>;
|
17
18
|
}>, "strip", z.ZodTypeAny, {
|
18
19
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
19
20
|
fullName: string;
|
20
21
|
mail: string;
|
21
22
|
eventId: string;
|
23
|
+
ticketGroupId: string;
|
22
24
|
profileId?: string | undefined;
|
23
25
|
}, {
|
24
26
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
25
27
|
fullName: string;
|
26
28
|
mail: string;
|
27
29
|
eventId: string;
|
30
|
+
ticketGroupId: string;
|
28
31
|
profileId?: string | undefined;
|
29
32
|
}>, "many">;
|
30
33
|
}, "strip", z.ZodTypeAny, {
|
@@ -33,6 +36,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
33
36
|
fullName: string;
|
34
37
|
mail: string;
|
35
38
|
eventId: string;
|
39
|
+
ticketGroupId: string;
|
36
40
|
profileId?: string | undefined;
|
37
41
|
}[];
|
38
42
|
}, {
|
@@ -41,6 +45,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
41
45
|
fullName: string;
|
42
46
|
mail: string;
|
43
47
|
eventId: string;
|
48
|
+
ticketGroupId: string;
|
44
49
|
profileId?: string | undefined;
|
45
50
|
}[];
|
46
51
|
}>;
|
@@ -54,18 +59,21 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
54
59
|
fullName: z.ZodString;
|
55
60
|
mail: z.ZodString;
|
56
61
|
eventId: z.ZodString;
|
62
|
+
ticketGroupId: z.ZodString;
|
57
63
|
profileId: z.ZodOptional<z.ZodString>;
|
58
64
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
59
65
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
60
66
|
fullName: string;
|
61
67
|
mail: string;
|
62
68
|
eventId: string;
|
69
|
+
ticketGroupId: string;
|
63
70
|
profileId?: string | undefined;
|
64
71
|
}, {
|
65
72
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
66
73
|
fullName: string;
|
67
74
|
mail: string;
|
68
75
|
eventId: string;
|
76
|
+
ticketGroupId: string;
|
69
77
|
profileId?: string | undefined;
|
70
78
|
}>, "many">;
|
71
79
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -74,6 +82,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
74
82
|
fullName: string;
|
75
83
|
mail: string;
|
76
84
|
eventId: string;
|
85
|
+
ticketGroupId: string;
|
77
86
|
profileId?: string | undefined;
|
78
87
|
}[];
|
79
88
|
}, {
|
@@ -82,6 +91,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
82
91
|
fullName: string;
|
83
92
|
mail: string;
|
84
93
|
eventId: string;
|
94
|
+
ticketGroupId: string;
|
85
95
|
profileId?: string | undefined;
|
86
96
|
}[];
|
87
97
|
}>>;
|
@@ -131,6 +141,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
131
141
|
}>;
|
132
142
|
fullName: z.ZodString;
|
133
143
|
mail: z.ZodString;
|
144
|
+
ticketGroupId: z.ZodString;
|
134
145
|
created_at: z.ZodDate;
|
135
146
|
updated_at: z.ZodDate;
|
136
147
|
}, {
|
@@ -200,6 +211,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
200
211
|
eventId: string;
|
201
212
|
created_at: Date;
|
202
213
|
updated_at: Date;
|
214
|
+
ticketGroupId: string;
|
203
215
|
}, {
|
204
216
|
event: {
|
205
217
|
location: string;
|
@@ -223,6 +235,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
223
235
|
eventId: string;
|
224
236
|
created_at: Date;
|
225
237
|
updated_at: Date;
|
238
|
+
ticketGroupId: string;
|
226
239
|
}>, "many">;
|
227
240
|
declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
|
228
241
|
id: z.ZodString;
|
@@ -234,6 +247,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
234
247
|
}>;
|
235
248
|
fullName: z.ZodString;
|
236
249
|
mail: z.ZodString;
|
250
|
+
ticketGroupId: z.ZodString;
|
237
251
|
created_at: z.ZodString;
|
238
252
|
updated_at: z.ZodString;
|
239
253
|
event: z.ZodObject<{
|
@@ -302,6 +316,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
302
316
|
eventId: string;
|
303
317
|
created_at: string;
|
304
318
|
updated_at: string;
|
319
|
+
ticketGroupId: string;
|
305
320
|
}, {
|
306
321
|
event: {
|
307
322
|
location: string;
|
@@ -325,6 +340,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
325
340
|
eventId: string;
|
326
341
|
created_at: string;
|
327
342
|
updated_at: string;
|
343
|
+
ticketGroupId: string;
|
328
344
|
}>, "many">>;
|
329
345
|
export declare class CreateManyTicketResponseDto extends CreateManyTicketResponseDto_base {
|
330
346
|
}
|
@@ -339,6 +355,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
339
355
|
}>;
|
340
356
|
fullName: z.ZodString;
|
341
357
|
mail: z.ZodString;
|
358
|
+
ticketGroupId: z.ZodString;
|
342
359
|
created_at: z.ZodDate;
|
343
360
|
updated_at: z.ZodDate;
|
344
361
|
}, {
|
@@ -408,6 +425,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
408
425
|
eventId: string;
|
409
426
|
created_at: Date;
|
410
427
|
updated_at: Date;
|
428
|
+
ticketGroupId: string;
|
411
429
|
}, {
|
412
430
|
event: {
|
413
431
|
location: string;
|
@@ -431,6 +449,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
431
449
|
eventId: string;
|
432
450
|
created_at: Date;
|
433
451
|
updated_at: Date;
|
452
|
+
ticketGroupId: string;
|
434
453
|
}>, "many">;
|
435
454
|
pdfs: z.ZodArray<z.ZodObject<{
|
436
455
|
ticketId: z.ZodString;
|
@@ -466,6 +485,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
466
485
|
eventId: string;
|
467
486
|
created_at: Date;
|
468
487
|
updated_at: Date;
|
488
|
+
ticketGroupId: string;
|
469
489
|
}[];
|
470
490
|
pdfs: {
|
471
491
|
ticketId: string;
|
@@ -495,6 +515,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
495
515
|
eventId: string;
|
496
516
|
created_at: Date;
|
497
517
|
updated_at: Date;
|
518
|
+
ticketGroupId: string;
|
498
519
|
}[];
|
499
520
|
pdfs: {
|
500
521
|
ticketId: string;
|
@@ -512,6 +533,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
512
533
|
}>;
|
513
534
|
fullName: z.ZodString;
|
514
535
|
mail: z.ZodString;
|
536
|
+
ticketGroupId: z.ZodString;
|
515
537
|
created_at: z.ZodString;
|
516
538
|
updated_at: z.ZodString;
|
517
539
|
event: z.ZodObject<{
|
@@ -580,6 +602,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
580
602
|
eventId: string;
|
581
603
|
created_at: string;
|
582
604
|
updated_at: string;
|
605
|
+
ticketGroupId: string;
|
583
606
|
}, {
|
584
607
|
event: {
|
585
608
|
location: string;
|
@@ -603,6 +626,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
603
626
|
eventId: string;
|
604
627
|
created_at: string;
|
605
628
|
updated_at: string;
|
629
|
+
ticketGroupId: string;
|
606
630
|
}>, "many">;
|
607
631
|
pdfs: z.ZodArray<z.ZodObject<{
|
608
632
|
ticketId: z.ZodString;
|
@@ -638,6 +662,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
638
662
|
eventId: string;
|
639
663
|
created_at: string;
|
640
664
|
updated_at: string;
|
665
|
+
ticketGroupId: string;
|
641
666
|
}[];
|
642
667
|
pdfs: {
|
643
668
|
ticketId: string;
|
@@ -667,6 +692,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
667
692
|
eventId: string;
|
668
693
|
created_at: string;
|
669
694
|
updated_at: string;
|
695
|
+
ticketGroupId: string;
|
670
696
|
}[];
|
671
697
|
pdfs: {
|
672
698
|
ticketId: string;
|
@@ -8,21 +8,24 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
8
8
|
}>;
|
9
9
|
fullName: import("zod").ZodString;
|
10
10
|
mail: import("zod").ZodString;
|
11
|
+
ticketGroupId: import("zod").ZodString;
|
11
12
|
created_at: import("zod").ZodDate;
|
12
13
|
updated_at: import("zod").ZodDate;
|
13
|
-
}, "type" | "fullName" | "mail" | "eventId">, {
|
14
|
+
}, "type" | "fullName" | "mail" | "eventId" | "ticketGroupId">, {
|
14
15
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
15
16
|
}>, "strip", import("zod").ZodTypeAny, {
|
16
17
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
17
18
|
fullName: string;
|
18
19
|
mail: string;
|
19
20
|
eventId: string;
|
21
|
+
ticketGroupId: string;
|
20
22
|
profileId?: string | undefined;
|
21
23
|
}, {
|
22
24
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
23
25
|
fullName: string;
|
24
26
|
mail: string;
|
25
27
|
eventId: string;
|
28
|
+
ticketGroupId: string;
|
26
29
|
profileId?: string | undefined;
|
27
30
|
}>;
|
28
31
|
declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -34,18 +37,21 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
34
37
|
fullName: import("zod").ZodString;
|
35
38
|
mail: import("zod").ZodString;
|
36
39
|
eventId: import("zod").ZodString;
|
40
|
+
ticketGroupId: import("zod").ZodString;
|
37
41
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
38
42
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
39
43
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
40
44
|
fullName: string;
|
41
45
|
mail: string;
|
42
46
|
eventId: string;
|
47
|
+
ticketGroupId: string;
|
43
48
|
profileId?: string | undefined;
|
44
49
|
}, {
|
45
50
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
46
51
|
fullName: string;
|
47
52
|
mail: string;
|
48
53
|
eventId: string;
|
54
|
+
ticketGroupId: string;
|
49
55
|
profileId?: string | undefined;
|
50
56
|
}>>;
|
51
57
|
export declare class CreateTicketDto extends CreateTicketDto_base {
|
@@ -60,6 +66,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
60
66
|
}>;
|
61
67
|
fullName: import("zod").ZodString;
|
62
68
|
mail: import("zod").ZodString;
|
69
|
+
ticketGroupId: import("zod").ZodString;
|
63
70
|
created_at: import("zod").ZodDate;
|
64
71
|
updated_at: import("zod").ZodDate;
|
65
72
|
}, {
|
@@ -129,6 +136,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
129
136
|
eventId: string;
|
130
137
|
created_at: Date;
|
131
138
|
updated_at: Date;
|
139
|
+
ticketGroupId: string;
|
132
140
|
}, {
|
133
141
|
event: {
|
134
142
|
location: string;
|
@@ -152,6 +160,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
152
160
|
eventId: string;
|
153
161
|
created_at: Date;
|
154
162
|
updated_at: Date;
|
163
|
+
ticketGroupId: string;
|
155
164
|
}>;
|
156
165
|
declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
157
166
|
id: import("zod").ZodString;
|
@@ -163,6 +172,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
163
172
|
}>;
|
164
173
|
fullName: import("zod").ZodString;
|
165
174
|
mail: import("zod").ZodString;
|
175
|
+
ticketGroupId: import("zod").ZodString;
|
166
176
|
created_at: import("zod").ZodString;
|
167
177
|
updated_at: import("zod").ZodString;
|
168
178
|
event: import("zod").ZodObject<{
|
@@ -231,6 +241,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
231
241
|
eventId: string;
|
232
242
|
created_at: string;
|
233
243
|
updated_at: string;
|
244
|
+
ticketGroupId: string;
|
234
245
|
}, {
|
235
246
|
event: {
|
236
247
|
location: string;
|
@@ -254,6 +265,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
254
265
|
eventId: string;
|
255
266
|
created_at: string;
|
256
267
|
updated_at: string;
|
268
|
+
ticketGroupId: string;
|
257
269
|
}>>;
|
258
270
|
export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
|
259
271
|
}
|
@@ -8,6 +8,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
8
8
|
}>;
|
9
9
|
fullName: import("zod").ZodString;
|
10
10
|
mail: import("zod").ZodString;
|
11
|
+
ticketGroupId: import("zod").ZodString;
|
11
12
|
created_at: import("zod").ZodDate;
|
12
13
|
updated_at: import("zod").ZodDate;
|
13
14
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -18,6 +19,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
18
19
|
eventId: string;
|
19
20
|
created_at: Date;
|
20
21
|
updated_at: Date;
|
22
|
+
ticketGroupId: string;
|
21
23
|
}, {
|
22
24
|
id: string;
|
23
25
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -26,6 +28,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
26
28
|
eventId: string;
|
27
29
|
created_at: Date;
|
28
30
|
updated_at: Date;
|
31
|
+
ticketGroupId: string;
|
29
32
|
}>;
|
30
33
|
declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
31
34
|
id: import("zod").ZodString;
|
@@ -37,6 +40,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
37
40
|
}>;
|
38
41
|
fullName: import("zod").ZodString;
|
39
42
|
mail: import("zod").ZodString;
|
43
|
+
ticketGroupId: import("zod").ZodString;
|
40
44
|
created_at: import("zod").ZodString;
|
41
45
|
updated_at: import("zod").ZodString;
|
42
46
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -47,6 +51,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
47
51
|
eventId: string;
|
48
52
|
created_at: string;
|
49
53
|
updated_at: string;
|
54
|
+
ticketGroupId: string;
|
50
55
|
}, {
|
51
56
|
id: string;
|
52
57
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -55,6 +60,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
55
60
|
eventId: string;
|
56
61
|
created_at: string;
|
57
62
|
updated_at: string;
|
63
|
+
ticketGroupId: string;
|
58
64
|
}>>;
|
59
65
|
export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
|
60
66
|
}
|
@@ -10,6 +10,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
ticketGroupId: z.ZodString;
|
13
14
|
created_at: z.ZodDate;
|
14
15
|
updated_at: z.ZodDate;
|
15
16
|
}, {
|
@@ -49,6 +50,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
49
50
|
eventId: string;
|
50
51
|
created_at: Date;
|
51
52
|
updated_at: Date;
|
53
|
+
ticketGroupId: string;
|
52
54
|
}, {
|
53
55
|
event: {
|
54
56
|
location: string;
|
@@ -62,6 +64,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
62
64
|
eventId: string;
|
63
65
|
created_at: Date;
|
64
66
|
updated_at: Date;
|
67
|
+
ticketGroupId: string;
|
65
68
|
}>, "many">;
|
66
69
|
}, "strip", z.ZodTypeAny, {
|
67
70
|
tickets: {
|
@@ -77,6 +80,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
77
80
|
eventId: string;
|
78
81
|
created_at: Date;
|
79
82
|
updated_at: Date;
|
83
|
+
ticketGroupId: string;
|
80
84
|
}[];
|
81
85
|
}, {
|
82
86
|
tickets: {
|
@@ -92,6 +96,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
92
96
|
eventId: string;
|
93
97
|
created_at: Date;
|
94
98
|
updated_at: Date;
|
99
|
+
ticketGroupId: string;
|
95
100
|
}[];
|
96
101
|
}>;
|
97
102
|
declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -105,6 +110,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
105
110
|
}>;
|
106
111
|
fullName: z.ZodString;
|
107
112
|
mail: z.ZodString;
|
113
|
+
ticketGroupId: z.ZodString;
|
108
114
|
created_at: z.ZodString;
|
109
115
|
updated_at: z.ZodString;
|
110
116
|
event: z.ZodObject<{
|
@@ -133,6 +139,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
133
139
|
eventId: string;
|
134
140
|
created_at: string;
|
135
141
|
updated_at: string;
|
142
|
+
ticketGroupId: string;
|
136
143
|
}, {
|
137
144
|
event: {
|
138
145
|
location: string;
|
@@ -146,6 +153,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
146
153
|
eventId: string;
|
147
154
|
created_at: string;
|
148
155
|
updated_at: string;
|
156
|
+
ticketGroupId: string;
|
149
157
|
}>, "many">;
|
150
158
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
151
159
|
tickets: {
|
@@ -161,6 +169,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
161
169
|
eventId: string;
|
162
170
|
created_at: string;
|
163
171
|
updated_at: string;
|
172
|
+
ticketGroupId: string;
|
164
173
|
}[];
|
165
174
|
}, {
|
166
175
|
tickets: {
|
@@ -176,6 +185,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
176
185
|
eventId: string;
|
177
186
|
created_at: string;
|
178
187
|
updated_at: string;
|
188
|
+
ticketGroupId: string;
|
179
189
|
}[];
|
180
190
|
}>>;
|
181
191
|
export declare class FindAllTicketsResponseDto extends FindAllTicketsResponseDto_base {
|
@@ -10,6 +10,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
ticketGroupId: z.ZodString;
|
13
14
|
created_at: z.ZodDate;
|
14
15
|
updated_at: z.ZodDate;
|
15
16
|
}, {
|
@@ -157,6 +158,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
157
158
|
eventId: string;
|
158
159
|
created_at: Date;
|
159
160
|
updated_at: Date;
|
161
|
+
ticketGroupId: string;
|
160
162
|
}, {
|
161
163
|
event: {
|
162
164
|
location: string;
|
@@ -196,6 +198,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
196
198
|
eventId: string;
|
197
199
|
created_at: Date;
|
198
200
|
updated_at: Date;
|
201
|
+
ticketGroupId: string;
|
199
202
|
}>, "many">;
|
200
203
|
}, "strip", z.ZodTypeAny, {
|
201
204
|
tickets: {
|
@@ -237,6 +240,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
237
240
|
eventId: string;
|
238
241
|
created_at: Date;
|
239
242
|
updated_at: Date;
|
243
|
+
ticketGroupId: string;
|
240
244
|
}[];
|
241
245
|
}, {
|
242
246
|
tickets: {
|
@@ -278,6 +282,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
278
282
|
eventId: string;
|
279
283
|
created_at: Date;
|
280
284
|
updated_at: Date;
|
285
|
+
ticketGroupId: string;
|
281
286
|
}[];
|
282
287
|
}>;
|
283
288
|
declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -291,6 +296,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
291
296
|
}>;
|
292
297
|
fullName: z.ZodString;
|
293
298
|
mail: z.ZodString;
|
299
|
+
ticketGroupId: z.ZodString;
|
294
300
|
created_at: z.ZodString;
|
295
301
|
updated_at: z.ZodString;
|
296
302
|
event: z.ZodObject<{
|
@@ -427,6 +433,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
427
433
|
eventId: string;
|
428
434
|
created_at: string;
|
429
435
|
updated_at: string;
|
436
|
+
ticketGroupId: string;
|
430
437
|
}, {
|
431
438
|
event: {
|
432
439
|
location: string;
|
@@ -466,6 +473,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
466
473
|
eventId: string;
|
467
474
|
created_at: string;
|
468
475
|
updated_at: string;
|
476
|
+
ticketGroupId: string;
|
469
477
|
}>, "many">;
|
470
478
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
471
479
|
tickets: {
|
@@ -507,6 +515,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
507
515
|
eventId: string;
|
508
516
|
created_at: string;
|
509
517
|
updated_at: string;
|
518
|
+
ticketGroupId: string;
|
510
519
|
}[];
|
511
520
|
}, {
|
512
521
|
tickets: {
|
@@ -548,6 +557,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
548
557
|
eventId: string;
|
549
558
|
created_at: string;
|
550
559
|
updated_at: string;
|
560
|
+
ticketGroupId: string;
|
551
561
|
}[];
|
552
562
|
}>>;
|
553
563
|
export declare class FindByEventTicketResponseDto extends FindByEventTicketResponseDto_base {
|
@@ -10,6 +10,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
ticketGroupId: z.ZodString;
|
13
14
|
created_at: z.ZodDate;
|
14
15
|
updated_at: z.ZodDate;
|
15
16
|
}, {
|
@@ -157,6 +158,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
157
158
|
eventId: string;
|
158
159
|
created_at: Date;
|
159
160
|
updated_at: Date;
|
161
|
+
ticketGroupId: string;
|
160
162
|
}, {
|
161
163
|
event: {
|
162
164
|
location: string;
|
@@ -196,6 +198,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
196
198
|
eventId: string;
|
197
199
|
created_at: Date;
|
198
200
|
updated_at: Date;
|
201
|
+
ticketGroupId: string;
|
199
202
|
}>;
|
200
203
|
}, "strip", z.ZodTypeAny, {
|
201
204
|
ticket: {
|
@@ -237,6 +240,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
237
240
|
eventId: string;
|
238
241
|
created_at: Date;
|
239
242
|
updated_at: Date;
|
243
|
+
ticketGroupId: string;
|
240
244
|
};
|
241
245
|
}, {
|
242
246
|
ticket: {
|
@@ -278,6 +282,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
278
282
|
eventId: string;
|
279
283
|
created_at: Date;
|
280
284
|
updated_at: Date;
|
285
|
+
ticketGroupId: string;
|
281
286
|
};
|
282
287
|
}>;
|
283
288
|
declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -291,6 +296,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
291
296
|
}>;
|
292
297
|
fullName: z.ZodString;
|
293
298
|
mail: z.ZodString;
|
299
|
+
ticketGroupId: z.ZodString;
|
294
300
|
created_at: z.ZodString;
|
295
301
|
updated_at: z.ZodString;
|
296
302
|
event: z.ZodObject<{
|
@@ -427,6 +433,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
427
433
|
eventId: string;
|
428
434
|
created_at: string;
|
429
435
|
updated_at: string;
|
436
|
+
ticketGroupId: string;
|
430
437
|
}, {
|
431
438
|
event: {
|
432
439
|
location: string;
|
@@ -466,6 +473,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
466
473
|
eventId: string;
|
467
474
|
created_at: string;
|
468
475
|
updated_at: string;
|
476
|
+
ticketGroupId: string;
|
469
477
|
}>;
|
470
478
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
471
479
|
ticket: {
|
@@ -507,6 +515,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
507
515
|
eventId: string;
|
508
516
|
created_at: string;
|
509
517
|
updated_at: string;
|
518
|
+
ticketGroupId: string;
|
510
519
|
};
|
511
520
|
}, {
|
512
521
|
ticket: {
|
@@ -548,6 +557,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
548
557
|
eventId: string;
|
549
558
|
created_at: string;
|
550
559
|
updated_at: string;
|
560
|
+
ticketGroupId: string;
|
551
561
|
};
|
552
562
|
}>>;
|
553
563
|
export declare class FindByIdTicketResponseDto extends FindByIdTicketResponseDto_base {
|