expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.2 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.3

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.
Files changed (27) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -0
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
  4. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +7 -0
  5. package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
  6. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
  7. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
  8. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +10 -0
  9. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +10 -0
  10. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +10 -0
  11. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
  12. package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
  13. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
  14. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
  15. package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
  16. package/dist/src/ticket/dto/ticket.dto.js +1 -0
  17. package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
  18. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
  19. package/dist/types/prisma-schema/edge.js +4 -3
  20. package/dist/types/prisma-schema/index-browser.js +1 -0
  21. package/dist/types/prisma-schema/index.d.ts +49 -1
  22. package/dist/types/prisma-schema/index.js +4 -3
  23. package/dist/types/prisma-schema/package.json +1 -1
  24. package/dist/types/prisma-schema/schema.prisma +2 -0
  25. package/dist/types/prisma-schema/wasm.js +1 -0
  26. package/dist/types/schema.d.ts +13 -0
  27. 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,6 +15,7 @@ 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
21
  }, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
@@ -135,6 +136,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
135
136
  scanned: z.ZodBoolean;
136
137
  scannedAt: z.ZodNullable<z.ZodDate>;
137
138
  ticketGroupId: z.ZodNullable<z.ZodString>;
139
+ referralCode: z.ZodNullable<z.ZodString>;
138
140
  created_at: z.ZodDate;
139
141
  updated_at: z.ZodDate;
140
142
  }, {
@@ -218,6 +220,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
218
220
  seat: number | null;
219
221
  created_at: Date;
220
222
  updated_at: Date;
223
+ referralCode: string | null;
221
224
  scanned: boolean;
222
225
  scannedAt: Date | null;
223
226
  ticketGroupId: string | null;
@@ -249,6 +252,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
249
252
  seat: number | null;
250
253
  created_at: Date;
251
254
  updated_at: Date;
255
+ referralCode: string | null;
252
256
  scanned: boolean;
253
257
  scannedAt: Date | null;
254
258
  ticketGroupId: string | null;
@@ -268,6 +272,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
268
272
  scanned: z.ZodBoolean;
269
273
  scannedAt: z.ZodNullable<z.ZodString>;
270
274
  ticketGroupId: z.ZodNullable<z.ZodString>;
275
+ referralCode: z.ZodNullable<z.ZodString>;
271
276
  created_at: z.ZodString;
272
277
  updated_at: z.ZodString;
273
278
  event: z.ZodObject<{
@@ -350,6 +355,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
350
355
  seat: number | null;
351
356
  created_at: string;
352
357
  updated_at: string;
358
+ referralCode: string | null;
353
359
  scanned: boolean;
354
360
  scannedAt: string | null;
355
361
  ticketGroupId: string | null;
@@ -381,6 +387,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
381
387
  seat: number | null;
382
388
  created_at: string;
383
389
  updated_at: string;
390
+ referralCode: string | null;
384
391
  scanned: boolean;
385
392
  scannedAt: string | null;
386
393
  ticketGroupId: string | null;
@@ -13,6 +13,7 @@ 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
19
  }, "type" | "fullName" | "mail" | "eventId" | "dni">, {
@@ -81,6 +82,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
81
82
  scanned: import("zod").ZodBoolean;
82
83
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
83
84
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
85
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
84
86
  created_at: import("zod").ZodDate;
85
87
  updated_at: import("zod").ZodDate;
86
88
  }, {
@@ -164,6 +166,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
164
166
  seat: number | null;
165
167
  created_at: Date;
166
168
  updated_at: Date;
169
+ referralCode: string | null;
167
170
  scanned: boolean;
168
171
  scannedAt: Date | null;
169
172
  ticketGroupId: string | null;
@@ -195,6 +198,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
195
198
  seat: number | null;
196
199
  created_at: Date;
197
200
  updated_at: Date;
201
+ referralCode: string | null;
198
202
  scanned: boolean;
199
203
  scannedAt: Date | null;
200
204
  ticketGroupId: string | null;
@@ -214,6 +218,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
214
218
  scanned: import("zod").ZodBoolean;
215
219
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
216
220
  ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
221
+ referralCode: import("zod").ZodNullable<import("zod").ZodString>;
217
222
  created_at: import("zod").ZodString;
218
223
  updated_at: import("zod").ZodString;
219
224
  event: import("zod").ZodObject<{
@@ -296,6 +301,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
296
301
  seat: number | null;
297
302
  created_at: string;
298
303
  updated_at: string;
304
+ referralCode: string | null;
299
305
  scanned: boolean;
300
306
  scannedAt: string | null;
301
307
  ticketGroupId: string | null;
@@ -327,6 +333,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
327
333
  seat: number | null;
328
334
  created_at: string;
329
335
  updated_at: string;
336
+ referralCode: string | null;
330
337
  scanned: boolean;
331
338
  scannedAt: string | null;
332
339
  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;
@@ -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;