expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.2 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.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/event/dto/get-all-statistics.dto.d.ts +5 -0
- 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 +17 -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/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 +10 -0
- 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 +15 -0
- package/package.json +1 -1
@@ -32,6 +32,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
32
32
|
scanned: z.ZodBoolean;
|
33
33
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
34
34
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
35
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
35
36
|
created_at: z.ZodDate;
|
36
37
|
updated_at: z.ZodDate;
|
37
38
|
}, "strip", z.ZodTypeAny, {
|
@@ -44,6 +45,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
44
45
|
seat: number | null;
|
45
46
|
created_at: Date;
|
46
47
|
updated_at: Date;
|
48
|
+
referralCode: string | null;
|
47
49
|
scanned: boolean;
|
48
50
|
scannedAt: Date | null;
|
49
51
|
ticketGroupId: string | null;
|
@@ -57,6 +59,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
57
59
|
seat: number | null;
|
58
60
|
created_at: Date;
|
59
61
|
updated_at: Date;
|
62
|
+
referralCode: string | null;
|
60
63
|
scanned: boolean;
|
61
64
|
scannedAt: Date | null;
|
62
65
|
ticketGroupId: string | null;
|
@@ -138,6 +141,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
138
141
|
seat: number | null;
|
139
142
|
created_at: Date;
|
140
143
|
updated_at: Date;
|
144
|
+
referralCode: string | null;
|
141
145
|
scanned: boolean;
|
142
146
|
scannedAt: Date | null;
|
143
147
|
ticketGroupId: string | null;
|
@@ -183,6 +187,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
183
187
|
seat: number | null;
|
184
188
|
created_at: Date;
|
185
189
|
updated_at: Date;
|
190
|
+
referralCode: string | null;
|
186
191
|
scanned: boolean;
|
187
192
|
scannedAt: Date | null;
|
188
193
|
ticketGroupId: string | null;
|
@@ -233,6 +233,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
233
233
|
scanned: z.ZodBoolean;
|
234
234
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
235
235
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
236
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
236
237
|
created_at: z.ZodDate;
|
237
238
|
updated_at: z.ZodDate;
|
238
239
|
}, "strip", z.ZodTypeAny, {
|
@@ -245,6 +246,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
245
246
|
seat: number | null;
|
246
247
|
created_at: Date;
|
247
248
|
updated_at: Date;
|
249
|
+
referralCode: string | null;
|
248
250
|
scanned: boolean;
|
249
251
|
scannedAt: Date | null;
|
250
252
|
ticketGroupId: string | null;
|
@@ -258,6 +260,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
258
260
|
seat: number | null;
|
259
261
|
created_at: Date;
|
260
262
|
updated_at: Date;
|
263
|
+
referralCode: string | null;
|
261
264
|
scanned: boolean;
|
262
265
|
scannedAt: Date | null;
|
263
266
|
ticketGroupId: string | null;
|
@@ -417,6 +420,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
417
420
|
seat: number | null;
|
418
421
|
created_at: Date;
|
419
422
|
updated_at: Date;
|
423
|
+
referralCode: string | null;
|
420
424
|
scanned: boolean;
|
421
425
|
scannedAt: Date | null;
|
422
426
|
ticketGroupId: string | null;
|
@@ -538,6 +542,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
538
542
|
seat: number | null;
|
539
543
|
created_at: Date;
|
540
544
|
updated_at: Date;
|
545
|
+
referralCode: string | null;
|
541
546
|
scanned: boolean;
|
542
547
|
scannedAt: Date | null;
|
543
548
|
ticketGroupId: string | null;
|
@@ -871,6 +876,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
871
876
|
scanned: z.ZodBoolean;
|
872
877
|
scannedAt: z.ZodNullable<z.ZodString>;
|
873
878
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
879
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
874
880
|
created_at: z.ZodString;
|
875
881
|
updated_at: z.ZodString;
|
876
882
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -883,6 +889,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
883
889
|
seat: number | null;
|
884
890
|
created_at: string;
|
885
891
|
updated_at: string;
|
892
|
+
referralCode: string | null;
|
886
893
|
scanned: boolean;
|
887
894
|
scannedAt: string | null;
|
888
895
|
ticketGroupId: string | null;
|
@@ -896,6 +903,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
896
903
|
seat: number | null;
|
897
904
|
created_at: string;
|
898
905
|
updated_at: string;
|
906
|
+
referralCode: string | null;
|
899
907
|
scanned: boolean;
|
900
908
|
scannedAt: string | null;
|
901
909
|
ticketGroupId: string | null;
|
@@ -1053,6 +1061,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1053
1061
|
seat: number | null;
|
1054
1062
|
created_at: string;
|
1055
1063
|
updated_at: string;
|
1064
|
+
referralCode: string | null;
|
1056
1065
|
scanned: boolean;
|
1057
1066
|
scannedAt: string | null;
|
1058
1067
|
ticketGroupId: string | null;
|
@@ -1174,6 +1183,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1174
1183
|
seat: number | null;
|
1175
1184
|
created_at: string;
|
1176
1185
|
updated_at: string;
|
1186
|
+
referralCode: string | null;
|
1177
1187
|
scanned: boolean;
|
1178
1188
|
scannedAt: string | null;
|
1179
1189
|
ticketGroupId: string | null;
|
@@ -32,6 +32,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
32
32
|
scanned: z.ZodBoolean;
|
33
33
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
34
34
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
35
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
35
36
|
created_at: z.ZodDate;
|
36
37
|
updated_at: z.ZodDate;
|
37
38
|
}, "strip", z.ZodTypeAny, {
|
@@ -44,6 +45,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
44
45
|
seat: number | null;
|
45
46
|
created_at: Date;
|
46
47
|
updated_at: Date;
|
48
|
+
referralCode: string | null;
|
47
49
|
scanned: boolean;
|
48
50
|
scannedAt: Date | null;
|
49
51
|
ticketGroupId: string | null;
|
@@ -57,6 +59,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
57
59
|
seat: number | null;
|
58
60
|
created_at: Date;
|
59
61
|
updated_at: Date;
|
62
|
+
referralCode: string | null;
|
60
63
|
scanned: boolean;
|
61
64
|
scannedAt: Date | null;
|
62
65
|
ticketGroupId: string | null;
|
@@ -112,6 +115,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
112
115
|
seat: number | null;
|
113
116
|
created_at: Date;
|
114
117
|
updated_at: Date;
|
118
|
+
referralCode: string | null;
|
115
119
|
scanned: boolean;
|
116
120
|
scannedAt: Date | null;
|
117
121
|
ticketGroupId: string | null;
|
@@ -149,6 +153,7 @@ export declare const getStatisticsByIdSchema: z.ZodObject<z.objectUtil.extendSha
|
|
149
153
|
seat: number | null;
|
150
154
|
created_at: Date;
|
151
155
|
updated_at: Date;
|
156
|
+
referralCode: string | null;
|
152
157
|
scanned: boolean;
|
153
158
|
scannedAt: Date | null;
|
154
159
|
ticketGroupId: string | null;
|
@@ -15,9 +15,10 @@ export declare const createManyTicketSchema: 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
|
-
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
|
21
|
+
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "referralCode" | "ticketGroupId">, {
|
21
22
|
profileId: z.ZodOptional<z.ZodString>;
|
22
23
|
}>, "strip", z.ZodTypeAny, {
|
23
24
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -25,6 +26,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
25
26
|
mail: string;
|
26
27
|
eventId: string;
|
27
28
|
dni: string;
|
29
|
+
referralCode: string | null;
|
28
30
|
ticketGroupId: string | null;
|
29
31
|
profileId?: string | undefined;
|
30
32
|
}, {
|
@@ -33,6 +35,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
33
35
|
mail: string;
|
34
36
|
eventId: string;
|
35
37
|
dni: string;
|
38
|
+
referralCode: string | null;
|
36
39
|
ticketGroupId: string | null;
|
37
40
|
profileId?: string | undefined;
|
38
41
|
}>, "many">;
|
@@ -43,6 +46,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
43
46
|
mail: string;
|
44
47
|
eventId: string;
|
45
48
|
dni: string;
|
49
|
+
referralCode: string | null;
|
46
50
|
ticketGroupId: string | null;
|
47
51
|
profileId?: string | undefined;
|
48
52
|
}[];
|
@@ -53,6 +57,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
53
57
|
mail: string;
|
54
58
|
eventId: string;
|
55
59
|
dni: string;
|
60
|
+
referralCode: string | null;
|
56
61
|
ticketGroupId: string | null;
|
57
62
|
profileId?: string | undefined;
|
58
63
|
}[];
|
@@ -68,6 +73,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
68
73
|
mail: z.ZodString;
|
69
74
|
eventId: z.ZodString;
|
70
75
|
dni: z.ZodString;
|
76
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
71
77
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
72
78
|
profileId: z.ZodOptional<z.ZodString>;
|
73
79
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -76,6 +82,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
76
82
|
mail: string;
|
77
83
|
eventId: string;
|
78
84
|
dni: string;
|
85
|
+
referralCode: string | null;
|
79
86
|
ticketGroupId: string | null;
|
80
87
|
profileId?: string | undefined;
|
81
88
|
}, {
|
@@ -84,6 +91,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
84
91
|
mail: string;
|
85
92
|
eventId: string;
|
86
93
|
dni: string;
|
94
|
+
referralCode: string | null;
|
87
95
|
ticketGroupId: string | null;
|
88
96
|
profileId?: string | undefined;
|
89
97
|
}>, "many">;
|
@@ -94,6 +102,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
94
102
|
mail: string;
|
95
103
|
eventId: string;
|
96
104
|
dni: string;
|
105
|
+
referralCode: string | null;
|
97
106
|
ticketGroupId: string | null;
|
98
107
|
profileId?: string | undefined;
|
99
108
|
}[];
|
@@ -104,6 +113,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
104
113
|
mail: string;
|
105
114
|
eventId: string;
|
106
115
|
dni: string;
|
116
|
+
referralCode: string | null;
|
107
117
|
ticketGroupId: string | null;
|
108
118
|
profileId?: string | undefined;
|
109
119
|
}[];
|
@@ -135,6 +145,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
135
145
|
scanned: z.ZodBoolean;
|
136
146
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
137
147
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
148
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
138
149
|
created_at: z.ZodDate;
|
139
150
|
updated_at: z.ZodDate;
|
140
151
|
}, {
|
@@ -218,6 +229,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
218
229
|
seat: number | null;
|
219
230
|
created_at: Date;
|
220
231
|
updated_at: Date;
|
232
|
+
referralCode: string | null;
|
221
233
|
scanned: boolean;
|
222
234
|
scannedAt: Date | null;
|
223
235
|
ticketGroupId: string | null;
|
@@ -249,6 +261,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
249
261
|
seat: number | null;
|
250
262
|
created_at: Date;
|
251
263
|
updated_at: Date;
|
264
|
+
referralCode: string | null;
|
252
265
|
scanned: boolean;
|
253
266
|
scannedAt: Date | null;
|
254
267
|
ticketGroupId: string | null;
|
@@ -268,6 +281,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
268
281
|
scanned: z.ZodBoolean;
|
269
282
|
scannedAt: z.ZodNullable<z.ZodString>;
|
270
283
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
284
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
271
285
|
created_at: z.ZodString;
|
272
286
|
updated_at: z.ZodString;
|
273
287
|
event: z.ZodObject<{
|
@@ -350,6 +364,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
350
364
|
seat: number | null;
|
351
365
|
created_at: string;
|
352
366
|
updated_at: string;
|
367
|
+
referralCode: string | null;
|
353
368
|
scanned: boolean;
|
354
369
|
scannedAt: string | null;
|
355
370
|
ticketGroupId: string | null;
|
@@ -381,6 +396,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
381
396
|
seat: number | null;
|
382
397
|
created_at: string;
|
383
398
|
updated_at: string;
|
399
|
+
referralCode: string | null;
|
384
400
|
scanned: boolean;
|
385
401
|
scannedAt: string | null;
|
386
402
|
ticketGroupId: string | null;
|
@@ -13,9 +13,10 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
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
|
-
}, "type" | "fullName" | "mail" | "eventId" | "dni">, {
|
19
|
+
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "referralCode">, {
|
19
20
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
20
21
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
21
22
|
}>, "strip", import("zod").ZodTypeAny, {
|
@@ -24,6 +25,7 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
24
25
|
mail: string;
|
25
26
|
eventId: string;
|
26
27
|
dni: string;
|
28
|
+
referralCode: string | null;
|
27
29
|
profileId?: string | undefined;
|
28
30
|
ticketGroupId?: string | undefined;
|
29
31
|
}, {
|
@@ -32,6 +34,7 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
32
34
|
mail: string;
|
33
35
|
eventId: string;
|
34
36
|
dni: string;
|
37
|
+
referralCode: string | null;
|
35
38
|
profileId?: string | undefined;
|
36
39
|
ticketGroupId?: string | undefined;
|
37
40
|
}>;
|
@@ -45,6 +48,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
45
48
|
mail: import("zod").ZodString;
|
46
49
|
eventId: import("zod").ZodString;
|
47
50
|
dni: import("zod").ZodString;
|
51
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
48
52
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
49
53
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
50
54
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -53,6 +57,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
53
57
|
mail: string;
|
54
58
|
eventId: string;
|
55
59
|
dni: string;
|
60
|
+
referralCode: string | null;
|
56
61
|
profileId?: string | undefined;
|
57
62
|
ticketGroupId?: string | undefined;
|
58
63
|
}, {
|
@@ -61,6 +66,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
61
66
|
mail: string;
|
62
67
|
eventId: string;
|
63
68
|
dni: string;
|
69
|
+
referralCode: string | null;
|
64
70
|
profileId?: string | undefined;
|
65
71
|
ticketGroupId?: string | undefined;
|
66
72
|
}>>;
|
@@ -81,6 +87,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
81
87
|
scanned: import("zod").ZodBoolean;
|
82
88
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
83
89
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
90
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
84
91
|
created_at: import("zod").ZodDate;
|
85
92
|
updated_at: import("zod").ZodDate;
|
86
93
|
}, {
|
@@ -164,6 +171,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
164
171
|
seat: number | null;
|
165
172
|
created_at: Date;
|
166
173
|
updated_at: Date;
|
174
|
+
referralCode: string | null;
|
167
175
|
scanned: boolean;
|
168
176
|
scannedAt: Date | null;
|
169
177
|
ticketGroupId: string | null;
|
@@ -195,6 +203,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
195
203
|
seat: number | null;
|
196
204
|
created_at: Date;
|
197
205
|
updated_at: Date;
|
206
|
+
referralCode: string | null;
|
198
207
|
scanned: boolean;
|
199
208
|
scannedAt: Date | null;
|
200
209
|
ticketGroupId: string | null;
|
@@ -214,6 +223,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
214
223
|
scanned: import("zod").ZodBoolean;
|
215
224
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
216
225
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
226
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
217
227
|
created_at: import("zod").ZodString;
|
218
228
|
updated_at: import("zod").ZodString;
|
219
229
|
event: import("zod").ZodObject<{
|
@@ -296,6 +306,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
296
306
|
seat: number | null;
|
297
307
|
created_at: string;
|
298
308
|
updated_at: string;
|
309
|
+
referralCode: string | null;
|
299
310
|
scanned: boolean;
|
300
311
|
scannedAt: string | null;
|
301
312
|
ticketGroupId: string | null;
|
@@ -327,6 +338,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
327
338
|
seat: number | null;
|
328
339
|
created_at: string;
|
329
340
|
updated_at: string;
|
341
|
+
referralCode: string | null;
|
330
342
|
scanned: boolean;
|
331
343
|
scannedAt: string | null;
|
332
344
|
ticketGroupId: string | null;
|
@@ -13,6 +13,7 @@ export declare const deleteTicketResponseSchema: 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 deleteTicketResponseSchema: 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 deleteTicketResponseSchema: 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 DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
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 DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
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 DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
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 findAllTicketsResponseSchema: 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
|
}, {
|
@@ -59,6 +60,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
59
60
|
seat: number | null;
|
60
61
|
created_at: Date;
|
61
62
|
updated_at: Date;
|
63
|
+
referralCode: string | null;
|
62
64
|
scanned: boolean;
|
63
65
|
scannedAt: Date | null;
|
64
66
|
ticketGroupId: string | null;
|
@@ -77,6 +79,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
77
79
|
seat: number | null;
|
78
80
|
created_at: Date;
|
79
81
|
updated_at: Date;
|
82
|
+
referralCode: string | null;
|
80
83
|
scanned: boolean;
|
81
84
|
scannedAt: Date | null;
|
82
85
|
ticketGroupId: string | null;
|
@@ -97,6 +100,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
97
100
|
seat: number | null;
|
98
101
|
created_at: Date;
|
99
102
|
updated_at: Date;
|
103
|
+
referralCode: string | null;
|
100
104
|
scanned: boolean;
|
101
105
|
scannedAt: Date | null;
|
102
106
|
ticketGroupId: string | null;
|
@@ -117,6 +121,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
117
121
|
seat: number | null;
|
118
122
|
created_at: Date;
|
119
123
|
updated_at: Date;
|
124
|
+
referralCode: string | null;
|
120
125
|
scanned: boolean;
|
121
126
|
scannedAt: Date | null;
|
122
127
|
ticketGroupId: string | null;
|
@@ -138,6 +143,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
138
143
|
scanned: z.ZodBoolean;
|
139
144
|
scannedAt: z.ZodNullable<z.ZodString>;
|
140
145
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
146
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
141
147
|
created_at: z.ZodString;
|
142
148
|
updated_at: z.ZodString;
|
143
149
|
event: z.ZodObject<{
|
@@ -168,6 +174,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
168
174
|
seat: number | null;
|
169
175
|
created_at: string;
|
170
176
|
updated_at: string;
|
177
|
+
referralCode: string | null;
|
171
178
|
scanned: boolean;
|
172
179
|
scannedAt: string | null;
|
173
180
|
ticketGroupId: string | null;
|
@@ -186,6 +193,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
186
193
|
seat: number | null;
|
187
194
|
created_at: string;
|
188
195
|
updated_at: string;
|
196
|
+
referralCode: string | null;
|
189
197
|
scanned: boolean;
|
190
198
|
scannedAt: string | null;
|
191
199
|
ticketGroupId: string | null;
|
@@ -206,6 +214,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
206
214
|
seat: number | null;
|
207
215
|
created_at: string;
|
208
216
|
updated_at: string;
|
217
|
+
referralCode: string | null;
|
209
218
|
scanned: boolean;
|
210
219
|
scannedAt: string | null;
|
211
220
|
ticketGroupId: string | null;
|
@@ -226,6 +235,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
226
235
|
seat: number | null;
|
227
236
|
created_at: string;
|
228
237
|
updated_at: string;
|
238
|
+
referralCode: string | null;
|
229
239
|
scanned: boolean;
|
230
240
|
scannedAt: string | null;
|
231
241
|
ticketGroupId: string | null;
|
@@ -15,6 +15,7 @@ export declare const findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 findByEventTicketResponseSchema: 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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 findByIdTicketResponseSchema: 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
|
}, {
|
@@ -212,6 +213,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
212
213
|
created_at: Date;
|
213
214
|
updated_at: Date;
|
214
215
|
profileId: string | null;
|
216
|
+
referralCode: string | null;
|
215
217
|
scanned: boolean;
|
216
218
|
scannedAt: Date | null;
|
217
219
|
ticketGroupId: string | null;
|
@@ -271,6 +273,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
271
273
|
created_at: Date;
|
272
274
|
updated_at: Date;
|
273
275
|
profileId: string | null;
|
276
|
+
referralCode: string | null;
|
274
277
|
scanned: boolean;
|
275
278
|
scannedAt: Date | null;
|
276
279
|
ticketGroupId: string | null;
|
@@ -332,6 +335,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
332
335
|
created_at: Date;
|
333
336
|
updated_at: Date;
|
334
337
|
profileId: string | null;
|
338
|
+
referralCode: string | null;
|
335
339
|
scanned: boolean;
|
336
340
|
scannedAt: Date | null;
|
337
341
|
ticketGroupId: string | null;
|
@@ -393,6 +397,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
393
397
|
created_at: Date;
|
394
398
|
updated_at: Date;
|
395
399
|
profileId: string | null;
|
400
|
+
referralCode: string | null;
|
396
401
|
scanned: boolean;
|
397
402
|
scannedAt: Date | null;
|
398
403
|
ticketGroupId: string | null;
|
@@ -414,6 +419,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
414
419
|
scanned: z.ZodBoolean;
|
415
420
|
scannedAt: z.ZodNullable<z.ZodString>;
|
416
421
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
422
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
417
423
|
created_at: z.ZodString;
|
418
424
|
updated_at: z.ZodString;
|
419
425
|
event: z.ZodObject<{
|
@@ -610,6 +616,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
610
616
|
created_at: string;
|
611
617
|
updated_at: string;
|
612
618
|
profileId: string | null;
|
619
|
+
referralCode: string | null;
|
613
620
|
scanned: boolean;
|
614
621
|
scannedAt: string | null;
|
615
622
|
ticketGroupId: string | null;
|
@@ -669,6 +676,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
669
676
|
created_at: string;
|
670
677
|
updated_at: string;
|
671
678
|
profileId: string | null;
|
679
|
+
referralCode: string | null;
|
672
680
|
scanned: boolean;
|
673
681
|
scannedAt: string | null;
|
674
682
|
ticketGroupId: string | null;
|
@@ -730,6 +738,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
730
738
|
created_at: string;
|
731
739
|
updated_at: string;
|
732
740
|
profileId: string | null;
|
741
|
+
referralCode: string | null;
|
733
742
|
scanned: boolean;
|
734
743
|
scannedAt: string | null;
|
735
744
|
ticketGroupId: string | null;
|
@@ -791,6 +800,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
791
800
|
created_at: string;
|
792
801
|
updated_at: string;
|
793
802
|
profileId: string | null;
|
803
|
+
referralCode: string | null;
|
794
804
|
scanned: boolean;
|
795
805
|
scannedAt: string | null;
|
796
806
|
ticketGroupId: string | null;
|