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
@@ -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;
|
@@ -100,7 +103,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
100
103
|
FREE: "FREE";
|
101
104
|
}>;
|
102
105
|
eventId: z.ZodString;
|
103
|
-
referralCode: z.
|
106
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
104
107
|
created_at: z.ZodDate;
|
105
108
|
updated_at: z.ZodDate;
|
106
109
|
}, "strip", z.ZodTypeAny, {
|
@@ -110,7 +113,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
110
113
|
amountTickets: number;
|
111
114
|
created_at: Date;
|
112
115
|
updated_at: Date;
|
113
|
-
referralCode
|
116
|
+
referralCode: string | null;
|
114
117
|
}, {
|
115
118
|
id: string;
|
116
119
|
eventId: string;
|
@@ -118,7 +121,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
118
121
|
amountTickets: number;
|
119
122
|
created_at: Date;
|
120
123
|
updated_at: Date;
|
121
|
-
referralCode
|
124
|
+
referralCode: string | null;
|
122
125
|
}>, "many">;
|
123
126
|
}>, "strip", z.ZodTypeAny, {
|
124
127
|
description: string | null;
|
@@ -141,6 +144,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
141
144
|
seat: number | null;
|
142
145
|
created_at: Date;
|
143
146
|
updated_at: Date;
|
147
|
+
referralCode: string | null;
|
144
148
|
scanned: boolean;
|
145
149
|
scannedAt: Date | null;
|
146
150
|
ticketGroupId: string | null;
|
@@ -164,7 +168,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
164
168
|
amountTickets: number;
|
165
169
|
created_at: Date;
|
166
170
|
updated_at: Date;
|
167
|
-
referralCode
|
171
|
+
referralCode: string | null;
|
168
172
|
}[];
|
169
173
|
}, {
|
170
174
|
description: string | null;
|
@@ -187,6 +191,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
187
191
|
seat: number | null;
|
188
192
|
created_at: Date;
|
189
193
|
updated_at: Date;
|
194
|
+
referralCode: string | null;
|
190
195
|
scanned: boolean;
|
191
196
|
scannedAt: Date | null;
|
192
197
|
ticketGroupId: string | null;
|
@@ -210,7 +215,7 @@ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil
|
|
210
215
|
amountTickets: number;
|
211
216
|
created_at: Date;
|
212
217
|
updated_at: Date;
|
213
|
-
referralCode
|
218
|
+
referralCode: string | null;
|
214
219
|
}[];
|
215
220
|
}>, "many">;
|
216
221
|
export declare const getAllStatisticsResponseSchema: z.ZodObject<{
|
@@ -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,11 +15,12 @@ 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">, {
|
21
22
|
profileId: z.ZodOptional<z.ZodString>;
|
22
|
-
referralCode: z.ZodOptional<z.
|
23
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
23
24
|
}>, "strip", z.ZodTypeAny, {
|
24
25
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
25
26
|
fullName: string;
|
@@ -75,7 +76,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
75
76
|
dni: z.ZodString;
|
76
77
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
77
78
|
profileId: z.ZodOptional<z.ZodString>;
|
78
|
-
referralCode: z.ZodOptional<z.
|
79
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
79
80
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
80
81
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
81
82
|
fullName: string;
|
@@ -145,6 +146,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
145
146
|
scanned: z.ZodBoolean;
|
146
147
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
147
148
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
149
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
148
150
|
created_at: z.ZodDate;
|
149
151
|
updated_at: z.ZodDate;
|
150
152
|
}, {
|
@@ -228,6 +230,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
228
230
|
seat: number | null;
|
229
231
|
created_at: Date;
|
230
232
|
updated_at: Date;
|
233
|
+
referralCode: string | null;
|
231
234
|
scanned: boolean;
|
232
235
|
scannedAt: Date | null;
|
233
236
|
ticketGroupId: string | null;
|
@@ -259,6 +262,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
259
262
|
seat: number | null;
|
260
263
|
created_at: Date;
|
261
264
|
updated_at: Date;
|
265
|
+
referralCode: string | null;
|
262
266
|
scanned: boolean;
|
263
267
|
scannedAt: Date | null;
|
264
268
|
ticketGroupId: string | null;
|
@@ -278,6 +282,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
278
282
|
scanned: z.ZodBoolean;
|
279
283
|
scannedAt: z.ZodNullable<z.ZodString>;
|
280
284
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
285
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
281
286
|
created_at: z.ZodString;
|
282
287
|
updated_at: z.ZodString;
|
283
288
|
event: z.ZodObject<{
|
@@ -360,6 +365,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
360
365
|
seat: number | null;
|
361
366
|
created_at: string;
|
362
367
|
updated_at: string;
|
368
|
+
referralCode: string | null;
|
363
369
|
scanned: boolean;
|
364
370
|
scannedAt: string | null;
|
365
371
|
ticketGroupId: string | null;
|
@@ -391,6 +397,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
391
397
|
seat: number | null;
|
392
398
|
created_at: string;
|
393
399
|
updated_at: string;
|
400
|
+
referralCode: string | null;
|
394
401
|
scanned: boolean;
|
395
402
|
scannedAt: string | null;
|
396
403
|
ticketGroupId: string | null;
|
@@ -13,11 +13,13 @@ 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">, {
|
19
20
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
20
21
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
22
|
+
referralCode: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
21
23
|
}>, "strip", import("zod").ZodTypeAny, {
|
22
24
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
23
25
|
fullName: string;
|
@@ -25,6 +27,7 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
25
27
|
eventId: string;
|
26
28
|
dni: string;
|
27
29
|
profileId?: string | undefined;
|
30
|
+
referralCode?: string | null | undefined;
|
28
31
|
ticketGroupId?: string | undefined;
|
29
32
|
}, {
|
30
33
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -33,6 +36,7 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
33
36
|
eventId: string;
|
34
37
|
dni: string;
|
35
38
|
profileId?: string | undefined;
|
39
|
+
referralCode?: string | null | undefined;
|
36
40
|
ticketGroupId?: string | undefined;
|
37
41
|
}>;
|
38
42
|
declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -47,6 +51,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
47
51
|
dni: import("zod").ZodString;
|
48
52
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
49
53
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
54
|
+
referralCode: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
50
55
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
51
56
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
52
57
|
fullName: string;
|
@@ -54,6 +59,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
54
59
|
eventId: string;
|
55
60
|
dni: string;
|
56
61
|
profileId?: string | undefined;
|
62
|
+
referralCode?: string | null | undefined;
|
57
63
|
ticketGroupId?: string | undefined;
|
58
64
|
}, {
|
59
65
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -62,6 +68,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
62
68
|
eventId: string;
|
63
69
|
dni: string;
|
64
70
|
profileId?: string | undefined;
|
71
|
+
referralCode?: string | null | undefined;
|
65
72
|
ticketGroupId?: string | undefined;
|
66
73
|
}>>;
|
67
74
|
export declare class CreateTicketDto extends CreateTicketDto_base {
|
@@ -81,6 +88,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
81
88
|
scanned: import("zod").ZodBoolean;
|
82
89
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
83
90
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
91
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
84
92
|
created_at: import("zod").ZodDate;
|
85
93
|
updated_at: import("zod").ZodDate;
|
86
94
|
}, {
|
@@ -164,6 +172,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
164
172
|
seat: number | null;
|
165
173
|
created_at: Date;
|
166
174
|
updated_at: Date;
|
175
|
+
referralCode: string | null;
|
167
176
|
scanned: boolean;
|
168
177
|
scannedAt: Date | null;
|
169
178
|
ticketGroupId: string | null;
|
@@ -195,6 +204,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
195
204
|
seat: number | null;
|
196
205
|
created_at: Date;
|
197
206
|
updated_at: Date;
|
207
|
+
referralCode: string | null;
|
198
208
|
scanned: boolean;
|
199
209
|
scannedAt: Date | null;
|
200
210
|
ticketGroupId: string | null;
|
@@ -214,6 +224,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
214
224
|
scanned: import("zod").ZodBoolean;
|
215
225
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
216
226
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
227
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
217
228
|
created_at: import("zod").ZodString;
|
218
229
|
updated_at: import("zod").ZodString;
|
219
230
|
event: import("zod").ZodObject<{
|
@@ -296,6 +307,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
296
307
|
seat: number | null;
|
297
308
|
created_at: string;
|
298
309
|
updated_at: string;
|
310
|
+
referralCode: string | null;
|
299
311
|
scanned: boolean;
|
300
312
|
scannedAt: string | null;
|
301
313
|
ticketGroupId: string | null;
|
@@ -327,6 +339,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
327
339
|
seat: number | null;
|
328
340
|
created_at: string;
|
329
341
|
updated_at: string;
|
342
|
+
referralCode: string | null;
|
330
343
|
scanned: boolean;
|
331
344
|
scannedAt: string | null;
|
332
345
|
ticketGroupId: string | null;
|
@@ -17,6 +17,7 @@ exports.createTicketSchema = ticket_dto_1.ticketSchema
|
|
17
17
|
.extend({
|
18
18
|
profileId: profile_schema_1.profileSchema.shape.id.optional(),
|
19
19
|
ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.optional(),
|
20
|
+
referralCode: ticket_group_dto_1.ticketGroupSchema.shape.referralCode.optional(),
|
20
21
|
});
|
21
22
|
class CreateTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createTicketSchema) {
|
22
23
|
}
|
@@ -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;
|