expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.8 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.10
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-all-statistics.dto.d.ts +10 -5
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +9 -2
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -0
- 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/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +17 -7
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -1
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +8 -8
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +49 -1
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -0
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +18 -4
- package/package.json +1 -1
@@ -15,6 +15,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
18
19
|
created_at: z.ZodDate;
|
19
20
|
updated_at: z.ZodDate;
|
20
21
|
}, {
|
@@ -171,6 +172,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
171
172
|
seat: number | null;
|
172
173
|
created_at: Date;
|
173
174
|
updated_at: Date;
|
175
|
+
referralCode: string | null;
|
174
176
|
scanned: boolean;
|
175
177
|
scannedAt: Date | null;
|
176
178
|
ticketGroupId: string | null;
|
@@ -216,6 +218,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
216
218
|
seat: number | null;
|
217
219
|
created_at: Date;
|
218
220
|
updated_at: Date;
|
221
|
+
referralCode: string | null;
|
219
222
|
scanned: boolean;
|
220
223
|
scannedAt: Date | null;
|
221
224
|
ticketGroupId: string | null;
|
@@ -263,6 +266,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
263
266
|
seat: number | null;
|
264
267
|
created_at: Date;
|
265
268
|
updated_at: Date;
|
269
|
+
referralCode: string | null;
|
266
270
|
scanned: boolean;
|
267
271
|
scannedAt: Date | null;
|
268
272
|
ticketGroupId: string | null;
|
@@ -310,6 +314,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
310
314
|
seat: number | null;
|
311
315
|
created_at: Date;
|
312
316
|
updated_at: Date;
|
317
|
+
referralCode: string | null;
|
313
318
|
scanned: boolean;
|
314
319
|
scannedAt: Date | null;
|
315
320
|
ticketGroupId: string | null;
|
@@ -331,6 +336,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
331
336
|
scanned: z.ZodBoolean;
|
332
337
|
scannedAt: z.ZodNullable<z.ZodString>;
|
333
338
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
339
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
334
340
|
created_at: z.ZodString;
|
335
341
|
updated_at: z.ZodString;
|
336
342
|
event: z.ZodObject<{
|
@@ -473,6 +479,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
473
479
|
seat: number | null;
|
474
480
|
created_at: string;
|
475
481
|
updated_at: string;
|
482
|
+
referralCode: string | null;
|
476
483
|
scanned: boolean;
|
477
484
|
scannedAt: string | null;
|
478
485
|
ticketGroupId: string | null;
|
@@ -518,6 +525,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
518
525
|
seat: number | null;
|
519
526
|
created_at: string;
|
520
527
|
updated_at: string;
|
528
|
+
referralCode: string | null;
|
521
529
|
scanned: boolean;
|
522
530
|
scannedAt: string | null;
|
523
531
|
ticketGroupId: string | null;
|
@@ -565,6 +573,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
565
573
|
seat: number | null;
|
566
574
|
created_at: string;
|
567
575
|
updated_at: string;
|
576
|
+
referralCode: string | null;
|
568
577
|
scanned: boolean;
|
569
578
|
scannedAt: string | null;
|
570
579
|
ticketGroupId: string | null;
|
@@ -612,6 +621,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
612
621
|
seat: number | null;
|
613
622
|
created_at: string;
|
614
623
|
updated_at: string;
|
624
|
+
referralCode: string | null;
|
615
625
|
scanned: boolean;
|
616
626
|
scannedAt: string | null;
|
617
627
|
ticketGroupId: string | null;
|
@@ -15,6 +15,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
18
19
|
created_at: z.ZodDate;
|
19
20
|
updated_at: z.ZodDate;
|
20
21
|
}, {
|
@@ -98,6 +99,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
98
99
|
seat: number | null;
|
99
100
|
created_at: Date;
|
100
101
|
updated_at: Date;
|
102
|
+
referralCode: string | null;
|
101
103
|
scanned: boolean;
|
102
104
|
scannedAt: Date | null;
|
103
105
|
ticketGroupId: string | null;
|
@@ -129,6 +131,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
129
131
|
seat: number | null;
|
130
132
|
created_at: Date;
|
131
133
|
updated_at: Date;
|
134
|
+
referralCode: string | null;
|
132
135
|
scanned: boolean;
|
133
136
|
scannedAt: Date | null;
|
134
137
|
ticketGroupId: string | null;
|
@@ -162,6 +165,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
162
165
|
seat: number | null;
|
163
166
|
created_at: Date;
|
164
167
|
updated_at: Date;
|
168
|
+
referralCode: string | null;
|
165
169
|
scanned: boolean;
|
166
170
|
scannedAt: Date | null;
|
167
171
|
ticketGroupId: string | null;
|
@@ -195,6 +199,7 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
195
199
|
seat: number | null;
|
196
200
|
created_at: Date;
|
197
201
|
updated_at: Date;
|
202
|
+
referralCode: string | null;
|
198
203
|
scanned: boolean;
|
199
204
|
scannedAt: Date | null;
|
200
205
|
ticketGroupId: string | null;
|
@@ -216,6 +221,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
216
221
|
scanned: z.ZodBoolean;
|
217
222
|
scannedAt: z.ZodNullable<z.ZodString>;
|
218
223
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
224
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
219
225
|
created_at: z.ZodString;
|
220
226
|
updated_at: z.ZodString;
|
221
227
|
event: z.ZodObject<{
|
@@ -298,6 +304,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
298
304
|
seat: number | null;
|
299
305
|
created_at: string;
|
300
306
|
updated_at: string;
|
307
|
+
referralCode: string | null;
|
301
308
|
scanned: boolean;
|
302
309
|
scannedAt: string | null;
|
303
310
|
ticketGroupId: string | null;
|
@@ -329,6 +336,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
329
336
|
seat: number | null;
|
330
337
|
created_at: string;
|
331
338
|
updated_at: string;
|
339
|
+
referralCode: string | null;
|
332
340
|
scanned: boolean;
|
333
341
|
scannedAt: string | null;
|
334
342
|
ticketGroupId: string | null;
|
@@ -362,6 +370,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
362
370
|
seat: number | null;
|
363
371
|
created_at: string;
|
364
372
|
updated_at: string;
|
373
|
+
referralCode: string | null;
|
365
374
|
scanned: boolean;
|
366
375
|
scannedAt: string | null;
|
367
376
|
ticketGroupId: string | null;
|
@@ -395,6 +404,7 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
395
404
|
seat: number | null;
|
396
405
|
created_at: string;
|
397
406
|
updated_at: string;
|
407
|
+
referralCode: string | null;
|
398
408
|
scanned: boolean;
|
399
409
|
scannedAt: string | null;
|
400
410
|
ticketGroupId: string | null;
|
@@ -13,6 +13,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
scanned: import("zod").ZodBoolean;
|
14
14
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15
15
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
16
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
16
17
|
created_at: import("zod").ZodDate;
|
17
18
|
updated_at: import("zod").ZodDate;
|
18
19
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -25,6 +26,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
25
26
|
seat: number | null;
|
26
27
|
created_at: Date;
|
27
28
|
updated_at: Date;
|
29
|
+
referralCode: string | null;
|
28
30
|
scanned: boolean;
|
29
31
|
scannedAt: Date | null;
|
30
32
|
ticketGroupId: string | null;
|
@@ -38,6 +40,7 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
38
40
|
seat: number | null;
|
39
41
|
created_at: Date;
|
40
42
|
updated_at: Date;
|
43
|
+
referralCode: string | null;
|
41
44
|
scanned: boolean;
|
42
45
|
scannedAt: Date | null;
|
43
46
|
ticketGroupId: string | null;
|
@@ -57,6 +60,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
57
60
|
scanned: import("zod").ZodBoolean;
|
58
61
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
59
62
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
63
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
60
64
|
created_at: import("zod").ZodString;
|
61
65
|
updated_at: import("zod").ZodString;
|
62
66
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -69,6 +73,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
69
73
|
seat: number | null;
|
70
74
|
created_at: string;
|
71
75
|
updated_at: string;
|
76
|
+
referralCode: string | null;
|
72
77
|
scanned: boolean;
|
73
78
|
scannedAt: string | null;
|
74
79
|
ticketGroupId: string | null;
|
@@ -82,6 +87,7 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
82
87
|
seat: number | null;
|
83
88
|
created_at: string;
|
84
89
|
updated_at: string;
|
90
|
+
referralCode: string | null;
|
85
91
|
scanned: boolean;
|
86
92
|
scannedAt: string | null;
|
87
93
|
ticketGroupId: string | null;
|
@@ -15,6 +15,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
18
19
|
created_at: z.ZodDate;
|
19
20
|
updated_at: z.ZodDate;
|
20
21
|
}, "strip", z.ZodTypeAny, {
|
@@ -27,6 +28,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
27
28
|
seat: number | null;
|
28
29
|
created_at: Date;
|
29
30
|
updated_at: Date;
|
31
|
+
referralCode: string | null;
|
30
32
|
scanned: boolean;
|
31
33
|
scannedAt: Date | null;
|
32
34
|
ticketGroupId: string | null;
|
@@ -40,6 +42,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
40
42
|
seat: number | null;
|
41
43
|
created_at: Date;
|
42
44
|
updated_at: Date;
|
45
|
+
referralCode: string | null;
|
43
46
|
scanned: boolean;
|
44
47
|
scannedAt: Date | null;
|
45
48
|
ticketGroupId: string | null;
|
@@ -55,6 +58,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
55
58
|
seat: number | null;
|
56
59
|
created_at: Date;
|
57
60
|
updated_at: Date;
|
61
|
+
referralCode: string | null;
|
58
62
|
scanned: boolean;
|
59
63
|
scannedAt: Date | null;
|
60
64
|
ticketGroupId: string | null;
|
@@ -70,6 +74,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: Date;
|
72
76
|
updated_at: Date;
|
77
|
+
referralCode: string | null;
|
73
78
|
scanned: boolean;
|
74
79
|
scannedAt: Date | null;
|
75
80
|
ticketGroupId: string | null;
|
@@ -36,6 +36,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
36
36
|
scanned: z.ZodBoolean;
|
37
37
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
38
38
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
39
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
39
40
|
created_at: z.ZodDate;
|
40
41
|
updated_at: z.ZodDate;
|
41
42
|
}, "strip", z.ZodTypeAny, {
|
@@ -48,6 +49,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
48
49
|
seat: number | null;
|
49
50
|
created_at: Date;
|
50
51
|
updated_at: Date;
|
52
|
+
referralCode: string | null;
|
51
53
|
scanned: boolean;
|
52
54
|
scannedAt: Date | null;
|
53
55
|
ticketGroupId: string | null;
|
@@ -61,6 +63,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
61
63
|
seat: number | null;
|
62
64
|
created_at: Date;
|
63
65
|
updated_at: Date;
|
66
|
+
referralCode: string | null;
|
64
67
|
scanned: boolean;
|
65
68
|
scannedAt: Date | null;
|
66
69
|
ticketGroupId: string | null;
|
@@ -80,6 +83,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
80
83
|
scanned: z.ZodBoolean;
|
81
84
|
scannedAt: z.ZodNullable<z.ZodString>;
|
82
85
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
86
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
83
87
|
created_at: z.ZodString;
|
84
88
|
updated_at: z.ZodString;
|
85
89
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -92,6 +96,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
92
96
|
seat: number | null;
|
93
97
|
created_at: string;
|
94
98
|
updated_at: string;
|
99
|
+
referralCode: string | null;
|
95
100
|
scanned: boolean;
|
96
101
|
scannedAt: string | null;
|
97
102
|
ticketGroupId: string | null;
|
@@ -105,6 +110,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
105
110
|
seat: number | null;
|
106
111
|
created_at: string;
|
107
112
|
updated_at: string;
|
113
|
+
referralCode: string | null;
|
108
114
|
scanned: boolean;
|
109
115
|
scannedAt: string | null;
|
110
116
|
ticketGroupId: string | null;
|
@@ -14,6 +14,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
14
14
|
scanned: z.ZodBoolean;
|
15
15
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
16
16
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
17
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
17
18
|
created_at: z.ZodDate;
|
18
19
|
updated_at: z.ZodDate;
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
@@ -26,6 +27,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
26
27
|
seat: number | null;
|
27
28
|
created_at: Date;
|
28
29
|
updated_at: Date;
|
30
|
+
referralCode: string | null;
|
29
31
|
scanned: boolean;
|
30
32
|
scannedAt: Date | null;
|
31
33
|
ticketGroupId: string | null;
|
@@ -39,6 +41,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
39
41
|
seat: number | null;
|
40
42
|
created_at: Date;
|
41
43
|
updated_at: Date;
|
44
|
+
referralCode: string | null;
|
42
45
|
scanned: boolean;
|
43
46
|
scannedAt: Date | null;
|
44
47
|
ticketGroupId: string | null;
|
@@ -58,6 +61,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
58
61
|
scanned: z.ZodBoolean;
|
59
62
|
scannedAt: z.ZodNullable<z.ZodString>;
|
60
63
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
64
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
61
65
|
created_at: z.ZodString;
|
62
66
|
updated_at: z.ZodString;
|
63
67
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -70,6 +74,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: string;
|
72
76
|
updated_at: string;
|
77
|
+
referralCode: string | null;
|
73
78
|
scanned: boolean;
|
74
79
|
scannedAt: string | null;
|
75
80
|
ticketGroupId: string | null;
|
@@ -83,6 +88,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
83
88
|
seat: number | null;
|
84
89
|
created_at: string;
|
85
90
|
updated_at: string;
|
91
|
+
referralCode: string | null;
|
86
92
|
scanned: boolean;
|
87
93
|
scannedAt: string | null;
|
88
94
|
ticketGroupId: string | null;
|
@@ -23,6 +23,7 @@ exports.ticketSchema = zod_1.default.object({
|
|
23
23
|
scanned: zod_1.default.boolean(),
|
24
24
|
scannedAt: zod_1.default.date().nullable(),
|
25
25
|
ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.nullable(),
|
26
|
+
referralCode: ticket_group_dto_1.ticketGroupSchema.shape.referralCode,
|
26
27
|
created_at: zod_1.default.date(),
|
27
28
|
updated_at: zod_1.default.date(),
|
28
29
|
});
|
@@ -61,6 +61,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
61
61
|
scanned: import("zod").ZodBoolean;
|
62
62
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
63
63
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
64
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
64
65
|
created_at: import("zod").ZodDate;
|
65
66
|
updated_at: import("zod").ZodDate;
|
66
67
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -73,6 +74,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
73
74
|
seat: number | null;
|
74
75
|
created_at: Date;
|
75
76
|
updated_at: Date;
|
77
|
+
referralCode: string | null;
|
76
78
|
scanned: boolean;
|
77
79
|
scannedAt: Date | null;
|
78
80
|
ticketGroupId: string | null;
|
@@ -86,6 +88,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
86
88
|
seat: number | null;
|
87
89
|
created_at: Date;
|
88
90
|
updated_at: Date;
|
91
|
+
referralCode: string | null;
|
89
92
|
scanned: boolean;
|
90
93
|
scannedAt: Date | null;
|
91
94
|
ticketGroupId: string | null;
|
@@ -105,6 +108,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
105
108
|
scanned: import("zod").ZodBoolean;
|
106
109
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
107
110
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
111
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
108
112
|
created_at: import("zod").ZodString;
|
109
113
|
updated_at: import("zod").ZodString;
|
110
114
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -117,6 +121,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
117
121
|
seat: number | null;
|
118
122
|
created_at: string;
|
119
123
|
updated_at: string;
|
124
|
+
referralCode: string | null;
|
120
125
|
scanned: boolean;
|
121
126
|
scannedAt: string | null;
|
122
127
|
ticketGroupId: string | null;
|
@@ -130,6 +135,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
130
135
|
seat: number | null;
|
131
136
|
created_at: string;
|
132
137
|
updated_at: string;
|
138
|
+
referralCode: string | null;
|
133
139
|
scanned: boolean;
|
134
140
|
scannedAt: string | null;
|
135
141
|
ticketGroupId: string | null;
|
@@ -8,7 +8,7 @@ export declare const createTicketGroupSchema: z.ZodObject<Pick<{
|
|
8
8
|
FREE: "FREE";
|
9
9
|
}>;
|
10
10
|
eventId: z.ZodString;
|
11
|
-
referralCode: z.
|
11
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
12
12
|
created_at: z.ZodDate;
|
13
13
|
updated_at: z.ZodDate;
|
14
14
|
}, "eventId" | "amountTickets">, "strip", z.ZodTypeAny, {
|
@@ -39,7 +39,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
39
39
|
FREE: "FREE";
|
40
40
|
}>;
|
41
41
|
eventId: z.ZodString;
|
42
|
-
referralCode: z.
|
42
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
43
43
|
created_at: z.ZodDate;
|
44
44
|
updated_at: z.ZodDate;
|
45
45
|
}, {
|
@@ -58,6 +58,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
58
58
|
scanned: z.ZodBoolean;
|
59
59
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
60
60
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
61
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
61
62
|
created_at: z.ZodDate;
|
62
63
|
updated_at: z.ZodDate;
|
63
64
|
}, "strip", z.ZodTypeAny, {
|
@@ -70,6 +71,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
70
71
|
seat: number | null;
|
71
72
|
created_at: Date;
|
72
73
|
updated_at: Date;
|
74
|
+
referralCode: string | null;
|
73
75
|
scanned: boolean;
|
74
76
|
scannedAt: Date | null;
|
75
77
|
ticketGroupId: string | null;
|
@@ -83,6 +85,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
83
85
|
seat: number | null;
|
84
86
|
created_at: Date;
|
85
87
|
updated_at: Date;
|
88
|
+
referralCode: string | null;
|
86
89
|
scanned: boolean;
|
87
90
|
scannedAt: Date | null;
|
88
91
|
ticketGroupId: string | null;
|
@@ -164,6 +167,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
164
167
|
amountTickets: number;
|
165
168
|
created_at: Date;
|
166
169
|
updated_at: Date;
|
170
|
+
referralCode: string | null;
|
167
171
|
tickets: {
|
168
172
|
id: string;
|
169
173
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -174,11 +178,11 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
174
178
|
seat: number | null;
|
175
179
|
created_at: Date;
|
176
180
|
updated_at: Date;
|
181
|
+
referralCode: string | null;
|
177
182
|
scanned: boolean;
|
178
183
|
scannedAt: Date | null;
|
179
184
|
ticketGroupId: string | null;
|
180
185
|
}[];
|
181
|
-
referralCode?: string | null | undefined;
|
182
186
|
}, {
|
183
187
|
event: {
|
184
188
|
description: string | null;
|
@@ -204,6 +208,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
204
208
|
amountTickets: number;
|
205
209
|
created_at: Date;
|
206
210
|
updated_at: Date;
|
211
|
+
referralCode: string | null;
|
207
212
|
tickets: {
|
208
213
|
id: string;
|
209
214
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -214,11 +219,11 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
214
219
|
seat: number | null;
|
215
220
|
created_at: Date;
|
216
221
|
updated_at: Date;
|
222
|
+
referralCode: string | null;
|
217
223
|
scanned: boolean;
|
218
224
|
scannedAt: Date | null;
|
219
225
|
ticketGroupId: string | null;
|
220
226
|
}[];
|
221
|
-
referralCode?: string | null | undefined;
|
222
227
|
}>;
|
223
228
|
declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
224
229
|
id: z.ZodString;
|
@@ -229,7 +234,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
229
234
|
FREE: "FREE";
|
230
235
|
}>;
|
231
236
|
eventId: z.ZodString;
|
232
|
-
referralCode: z.
|
237
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
233
238
|
created_at: z.ZodString;
|
234
239
|
updated_at: z.ZodString;
|
235
240
|
tickets: z.ZodArray<z.ZodObject<{
|
@@ -247,6 +252,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
247
252
|
scanned: z.ZodBoolean;
|
248
253
|
scannedAt: z.ZodNullable<z.ZodString>;
|
249
254
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
255
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
250
256
|
created_at: z.ZodString;
|
251
257
|
updated_at: z.ZodString;
|
252
258
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -259,6 +265,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
259
265
|
seat: number | null;
|
260
266
|
created_at: string;
|
261
267
|
updated_at: string;
|
268
|
+
referralCode: string | null;
|
262
269
|
scanned: boolean;
|
263
270
|
scannedAt: string | null;
|
264
271
|
ticketGroupId: string | null;
|
@@ -272,6 +279,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
272
279
|
seat: number | null;
|
273
280
|
created_at: string;
|
274
281
|
updated_at: string;
|
282
|
+
referralCode: string | null;
|
275
283
|
scanned: boolean;
|
276
284
|
scannedAt: string | null;
|
277
285
|
ticketGroupId: string | null;
|
@@ -353,6 +361,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
353
361
|
amountTickets: number;
|
354
362
|
created_at: string;
|
355
363
|
updated_at: string;
|
364
|
+
referralCode: string | null;
|
356
365
|
tickets: {
|
357
366
|
id: string;
|
358
367
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -363,11 +372,11 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
363
372
|
seat: number | null;
|
364
373
|
created_at: string;
|
365
374
|
updated_at: string;
|
375
|
+
referralCode: string | null;
|
366
376
|
scanned: boolean;
|
367
377
|
scannedAt: string | null;
|
368
378
|
ticketGroupId: string | null;
|
369
379
|
}[];
|
370
|
-
referralCode?: string | null | undefined;
|
371
380
|
}, {
|
372
381
|
event: {
|
373
382
|
description: string | null;
|
@@ -393,6 +402,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
393
402
|
amountTickets: number;
|
394
403
|
created_at: string;
|
395
404
|
updated_at: string;
|
405
|
+
referralCode: string | null;
|
396
406
|
tickets: {
|
397
407
|
id: string;
|
398
408
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -403,11 +413,11 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
403
413
|
seat: number | null;
|
404
414
|
created_at: string;
|
405
415
|
updated_at: string;
|
416
|
+
referralCode: string | null;
|
406
417
|
scanned: boolean;
|
407
418
|
scannedAt: string | null;
|
408
419
|
ticketGroupId: string | null;
|
409
420
|
}[];
|
410
|
-
referralCode?: string | null | undefined;
|
411
421
|
}>>;
|
412
422
|
export declare class CreateTicketGroupResponseDto extends CreateTicketGroupResponseDto_base {
|
413
423
|
}
|
@@ -7,7 +7,7 @@ export declare const deleteTicketGroupResponseSchema: import("zod").ZodObject<{
|
|
7
7
|
FREE: "FREE";
|
8
8
|
}>;
|
9
9
|
eventId: import("zod").ZodString;
|
10
|
-
referralCode: import("zod").
|
10
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
11
11
|
created_at: import("zod").ZodDate;
|
12
12
|
updated_at: import("zod").ZodDate;
|
13
13
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -17,7 +17,7 @@ export declare const deleteTicketGroupResponseSchema: import("zod").ZodObject<{
|
|
17
17
|
amountTickets: number;
|
18
18
|
created_at: Date;
|
19
19
|
updated_at: Date;
|
20
|
-
referralCode
|
20
|
+
referralCode: string | null;
|
21
21
|
}, {
|
22
22
|
id: string;
|
23
23
|
eventId: string;
|
@@ -25,7 +25,7 @@ export declare const deleteTicketGroupResponseSchema: import("zod").ZodObject<{
|
|
25
25
|
amountTickets: number;
|
26
26
|
created_at: Date;
|
27
27
|
updated_at: Date;
|
28
|
-
referralCode
|
28
|
+
referralCode: string | null;
|
29
29
|
}>;
|
30
30
|
declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
31
31
|
id: import("zod").ZodString;
|
@@ -36,7 +36,7 @@ declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
36
36
|
FREE: "FREE";
|
37
37
|
}>;
|
38
38
|
eventId: import("zod").ZodString;
|
39
|
-
referralCode: import("zod").
|
39
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
40
40
|
created_at: import("zod").ZodString;
|
41
41
|
updated_at: import("zod").ZodString;
|
42
42
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -46,7 +46,7 @@ declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
46
46
|
amountTickets: number;
|
47
47
|
created_at: string;
|
48
48
|
updated_at: string;
|
49
|
-
referralCode
|
49
|
+
referralCode: string | null;
|
50
50
|
}, {
|
51
51
|
id: string;
|
52
52
|
eventId: string;
|
@@ -54,7 +54,7 @@ declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
54
54
|
amountTickets: number;
|
55
55
|
created_at: string;
|
56
56
|
updated_at: string;
|
57
|
-
referralCode
|
57
|
+
referralCode: string | null;
|
58
58
|
}>>;
|
59
59
|
export declare class DeleteTicketGroupResponseDto extends DeleteTicketGroupResponseDto_base {
|
60
60
|
}
|
@@ -7,7 +7,7 @@ export declare const findGroupResponseSchema: import("zod").ZodObject<{
|
|
7
7
|
FREE: "FREE";
|
8
8
|
}>;
|
9
9
|
eventId: import("zod").ZodString;
|
10
|
-
referralCode: import("zod").
|
10
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
11
11
|
created_at: import("zod").ZodDate;
|
12
12
|
updated_at: import("zod").ZodDate;
|
13
13
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -17,7 +17,7 @@ export declare const findGroupResponseSchema: import("zod").ZodObject<{
|
|
17
17
|
amountTickets: number;
|
18
18
|
created_at: Date;
|
19
19
|
updated_at: Date;
|
20
|
-
referralCode
|
20
|
+
referralCode: string | null;
|
21
21
|
}, {
|
22
22
|
id: string;
|
23
23
|
eventId: string;
|
@@ -25,7 +25,7 @@ export declare const findGroupResponseSchema: import("zod").ZodObject<{
|
|
25
25
|
amountTickets: number;
|
26
26
|
created_at: Date;
|
27
27
|
updated_at: Date;
|
28
|
-
referralCode
|
28
|
+
referralCode: string | null;
|
29
29
|
}>;
|
30
30
|
declare const FindGroupTicketGroupDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
31
31
|
id: import("zod").ZodString;
|
@@ -36,7 +36,7 @@ declare const FindGroupTicketGroupDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
36
36
|
FREE: "FREE";
|
37
37
|
}>;
|
38
38
|
eventId: import("zod").ZodString;
|
39
|
-
referralCode: import("zod").
|
39
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
40
40
|
created_at: import("zod").ZodString;
|
41
41
|
updated_at: import("zod").ZodString;
|
42
42
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -46,7 +46,7 @@ declare const FindGroupTicketGroupDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
46
46
|
amountTickets: number;
|
47
47
|
created_at: string;
|
48
48
|
updated_at: string;
|
49
|
-
referralCode
|
49
|
+
referralCode: string | null;
|
50
50
|
}, {
|
51
51
|
id: string;
|
52
52
|
eventId: string;
|
@@ -54,7 +54,7 @@ declare const FindGroupTicketGroupDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
54
54
|
amountTickets: number;
|
55
55
|
created_at: string;
|
56
56
|
updated_at: string;
|
57
|
-
referralCode
|
57
|
+
referralCode: string | null;
|
58
58
|
}>>;
|
59
59
|
export declare class FindGroupTicketGroupDto extends FindGroupTicketGroupDto_base {
|
60
60
|
}
|