expo-backend-types 0.53.0 → 0.54.0-EXPO-366-EB-Schema-codigo-referido.2
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 -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/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.js +15 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.js +15 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +17 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +2 -0
- 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 +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -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 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +605 -26
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +10 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +120 -0
- package/package.json +2 -1
@@ -15,10 +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>;
|
23
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
22
24
|
}>, "strip", z.ZodTypeAny, {
|
23
25
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
24
26
|
fullName: string;
|
@@ -27,6 +29,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
27
29
|
dni: string;
|
28
30
|
ticketGroupId: string | null;
|
29
31
|
profileId?: string | undefined;
|
32
|
+
referralCode?: string | null | undefined;
|
30
33
|
}, {
|
31
34
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
32
35
|
fullName: string;
|
@@ -35,6 +38,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
35
38
|
dni: string;
|
36
39
|
ticketGroupId: string | null;
|
37
40
|
profileId?: string | undefined;
|
41
|
+
referralCode?: string | null | undefined;
|
38
42
|
}>, "many">;
|
39
43
|
}, "strip", z.ZodTypeAny, {
|
40
44
|
tickets: {
|
@@ -45,6 +49,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
45
49
|
dni: string;
|
46
50
|
ticketGroupId: string | null;
|
47
51
|
profileId?: string | undefined;
|
52
|
+
referralCode?: string | null | undefined;
|
48
53
|
}[];
|
49
54
|
}, {
|
50
55
|
tickets: {
|
@@ -55,6 +60,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
55
60
|
dni: string;
|
56
61
|
ticketGroupId: string | null;
|
57
62
|
profileId?: string | undefined;
|
63
|
+
referralCode?: string | null | undefined;
|
58
64
|
}[];
|
59
65
|
}>;
|
60
66
|
declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -70,6 +76,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
70
76
|
dni: z.ZodString;
|
71
77
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
72
78
|
profileId: z.ZodOptional<z.ZodString>;
|
79
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
73
80
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
74
81
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
75
82
|
fullName: string;
|
@@ -78,6 +85,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
78
85
|
dni: string;
|
79
86
|
ticketGroupId: string | null;
|
80
87
|
profileId?: string | undefined;
|
88
|
+
referralCode?: string | null | undefined;
|
81
89
|
}, {
|
82
90
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
83
91
|
fullName: string;
|
@@ -86,6 +94,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
86
94
|
dni: string;
|
87
95
|
ticketGroupId: string | null;
|
88
96
|
profileId?: string | undefined;
|
97
|
+
referralCode?: string | null | undefined;
|
89
98
|
}>, "many">;
|
90
99
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
91
100
|
tickets: {
|
@@ -96,6 +105,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
96
105
|
dni: string;
|
97
106
|
ticketGroupId: string | null;
|
98
107
|
profileId?: string | undefined;
|
108
|
+
referralCode?: string | null | undefined;
|
99
109
|
}[];
|
100
110
|
}, {
|
101
111
|
tickets: {
|
@@ -106,6 +116,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
106
116
|
dni: string;
|
107
117
|
ticketGroupId: string | null;
|
108
118
|
profileId?: string | undefined;
|
119
|
+
referralCode?: string | null | undefined;
|
109
120
|
}[];
|
110
121
|
}>>;
|
111
122
|
export declare class CreateManyTicketDto extends CreateManyTicketDto_base {
|
@@ -135,6 +146,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
135
146
|
scanned: z.ZodBoolean;
|
136
147
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
137
148
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
149
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
138
150
|
created_at: z.ZodDate;
|
139
151
|
updated_at: z.ZodDate;
|
140
152
|
}, {
|
@@ -218,6 +230,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
218
230
|
seat: number | null;
|
219
231
|
created_at: Date;
|
220
232
|
updated_at: Date;
|
233
|
+
referralCode: string | null;
|
221
234
|
scanned: boolean;
|
222
235
|
scannedAt: Date | null;
|
223
236
|
ticketGroupId: string | null;
|
@@ -249,6 +262,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
249
262
|
seat: number | null;
|
250
263
|
created_at: Date;
|
251
264
|
updated_at: Date;
|
265
|
+
referralCode: string | null;
|
252
266
|
scanned: boolean;
|
253
267
|
scannedAt: Date | null;
|
254
268
|
ticketGroupId: string | null;
|
@@ -268,6 +282,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
268
282
|
scanned: z.ZodBoolean;
|
269
283
|
scannedAt: z.ZodNullable<z.ZodString>;
|
270
284
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
285
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
271
286
|
created_at: z.ZodString;
|
272
287
|
updated_at: z.ZodString;
|
273
288
|
event: z.ZodObject<{
|
@@ -350,6 +365,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
350
365
|
seat: number | null;
|
351
366
|
created_at: string;
|
352
367
|
updated_at: string;
|
368
|
+
referralCode: string | null;
|
353
369
|
scanned: boolean;
|
354
370
|
scannedAt: string | null;
|
355
371
|
ticketGroupId: string | null;
|
@@ -381,6 +397,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
381
397
|
seat: number | null;
|
382
398
|
created_at: string;
|
383
399
|
updated_at: string;
|
400
|
+
referralCode: string | null;
|
384
401
|
scanned: boolean;
|
385
402
|
scannedAt: string | null;
|
386
403
|
ticketGroupId: string | null;
|
@@ -7,6 +7,7 @@ exports.CreateManyTicketResponseDto = exports.createManyTicketResponseSchema = e
|
|
7
7
|
const event_dto_1 = require("../../event/dto/event.dto");
|
8
8
|
const profile_schema_1 = require("../../schema/profile.schema");
|
9
9
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
10
|
+
const ticket_group_dto_1 = require("../../ticket-group/dto/ticket-group.dto");
|
10
11
|
const zod_1 = __importDefault(require("zod"));
|
11
12
|
const ticket_dto_1 = require("./ticket.dto");
|
12
13
|
exports.createManyTicketSchema = zod_1.default.object({
|
@@ -21,6 +22,7 @@ exports.createManyTicketSchema = zod_1.default.object({
|
|
21
22
|
})
|
22
23
|
.extend({
|
23
24
|
profileId: profile_schema_1.profileSchema.shape.id.optional(),
|
25
|
+
referralCode: ticket_group_dto_1.ticketGroupSchema.shape.referralCode.optional(),
|
24
26
|
})),
|
25
27
|
});
|
26
28
|
class CreateManyTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketSchema) {
|
@@ -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
|
}, {
|
@@ -75,6 +76,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
75
76
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
76
77
|
created_at: z.ZodDate;
|
77
78
|
updated_at: z.ZodDate;
|
79
|
+
referralCode: z.ZodString;
|
78
80
|
}, "strip", z.ZodTypeAny, {
|
79
81
|
id: string;
|
80
82
|
username: string | null;
|
@@ -88,6 +90,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
88
90
|
dni: string | null;
|
89
91
|
created_at: Date;
|
90
92
|
updated_at: Date;
|
93
|
+
referralCode: string;
|
91
94
|
shortId: number;
|
92
95
|
firstTimeMiExpo: boolean;
|
93
96
|
isPhoneVerified: boolean;
|
@@ -112,6 +115,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
112
115
|
dni: string | null;
|
113
116
|
created_at: Date;
|
114
117
|
updated_at: Date;
|
118
|
+
referralCode: string;
|
115
119
|
shortId: number;
|
116
120
|
firstTimeMiExpo: boolean;
|
117
121
|
isPhoneVerified: boolean;
|
@@ -145,6 +149,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
145
149
|
dni: string | null;
|
146
150
|
created_at: Date;
|
147
151
|
updated_at: Date;
|
152
|
+
referralCode: string;
|
148
153
|
shortId: number;
|
149
154
|
firstTimeMiExpo: boolean;
|
150
155
|
isPhoneVerified: boolean;
|
@@ -167,6 +172,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
167
172
|
seat: number | null;
|
168
173
|
created_at: Date;
|
169
174
|
updated_at: Date;
|
175
|
+
referralCode: string | null;
|
170
176
|
scanned: boolean;
|
171
177
|
scannedAt: Date | null;
|
172
178
|
ticketGroupId: string | null;
|
@@ -188,6 +194,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
188
194
|
dni: string | null;
|
189
195
|
created_at: Date;
|
190
196
|
updated_at: Date;
|
197
|
+
referralCode: string;
|
191
198
|
shortId: number;
|
192
199
|
firstTimeMiExpo: boolean;
|
193
200
|
isPhoneVerified: boolean;
|
@@ -211,6 +218,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
211
218
|
seat: number | null;
|
212
219
|
created_at: Date;
|
213
220
|
updated_at: Date;
|
221
|
+
referralCode: string | null;
|
214
222
|
scanned: boolean;
|
215
223
|
scannedAt: Date | null;
|
216
224
|
ticketGroupId: string | null;
|
@@ -235,6 +243,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
235
243
|
dni: string | null;
|
236
244
|
created_at: Date;
|
237
245
|
updated_at: Date;
|
246
|
+
referralCode: string;
|
238
247
|
shortId: number;
|
239
248
|
firstTimeMiExpo: boolean;
|
240
249
|
isPhoneVerified: boolean;
|
@@ -257,6 +266,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
257
266
|
seat: number | null;
|
258
267
|
created_at: Date;
|
259
268
|
updated_at: Date;
|
269
|
+
referralCode: string | null;
|
260
270
|
scanned: boolean;
|
261
271
|
scannedAt: Date | null;
|
262
272
|
ticketGroupId: string | null;
|
@@ -280,6 +290,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
280
290
|
dni: string | null;
|
281
291
|
created_at: Date;
|
282
292
|
updated_at: Date;
|
293
|
+
referralCode: string;
|
283
294
|
shortId: number;
|
284
295
|
firstTimeMiExpo: boolean;
|
285
296
|
isPhoneVerified: boolean;
|
@@ -303,6 +314,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
303
314
|
seat: number | null;
|
304
315
|
created_at: Date;
|
305
316
|
updated_at: Date;
|
317
|
+
referralCode: string | null;
|
306
318
|
scanned: boolean;
|
307
319
|
scannedAt: Date | null;
|
308
320
|
ticketGroupId: string | null;
|
@@ -324,6 +336,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
324
336
|
scanned: z.ZodBoolean;
|
325
337
|
scannedAt: z.ZodNullable<z.ZodString>;
|
326
338
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
339
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
327
340
|
created_at: z.ZodString;
|
328
341
|
updated_at: z.ZodString;
|
329
342
|
event: z.ZodObject<{
|
@@ -370,6 +383,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
370
383
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
371
384
|
created_at: z.ZodString;
|
372
385
|
updated_at: z.ZodString;
|
386
|
+
referralCode: z.ZodString;
|
373
387
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
374
388
|
id: string;
|
375
389
|
username: string | null;
|
@@ -383,6 +397,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
383
397
|
dni: string | null;
|
384
398
|
created_at: string;
|
385
399
|
updated_at: string;
|
400
|
+
referralCode: string;
|
386
401
|
shortId: number;
|
387
402
|
firstTimeMiExpo: boolean;
|
388
403
|
isPhoneVerified: boolean;
|
@@ -407,6 +422,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
407
422
|
dni: string | null;
|
408
423
|
created_at: string;
|
409
424
|
updated_at: string;
|
425
|
+
referralCode: string;
|
410
426
|
shortId: number;
|
411
427
|
firstTimeMiExpo: boolean;
|
412
428
|
isPhoneVerified: boolean;
|
@@ -440,6 +456,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
440
456
|
dni: string | null;
|
441
457
|
created_at: string;
|
442
458
|
updated_at: string;
|
459
|
+
referralCode: string;
|
443
460
|
shortId: number;
|
444
461
|
firstTimeMiExpo: boolean;
|
445
462
|
isPhoneVerified: boolean;
|
@@ -462,6 +479,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
462
479
|
seat: number | null;
|
463
480
|
created_at: string;
|
464
481
|
updated_at: string;
|
482
|
+
referralCode: string | null;
|
465
483
|
scanned: boolean;
|
466
484
|
scannedAt: string | null;
|
467
485
|
ticketGroupId: string | null;
|
@@ -483,6 +501,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
483
501
|
dni: string | null;
|
484
502
|
created_at: string;
|
485
503
|
updated_at: string;
|
504
|
+
referralCode: string;
|
486
505
|
shortId: number;
|
487
506
|
firstTimeMiExpo: boolean;
|
488
507
|
isPhoneVerified: boolean;
|
@@ -506,6 +525,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
506
525
|
seat: number | null;
|
507
526
|
created_at: string;
|
508
527
|
updated_at: string;
|
528
|
+
referralCode: string | null;
|
509
529
|
scanned: boolean;
|
510
530
|
scannedAt: string | null;
|
511
531
|
ticketGroupId: string | null;
|
@@ -530,6 +550,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
530
550
|
dni: string | null;
|
531
551
|
created_at: string;
|
532
552
|
updated_at: string;
|
553
|
+
referralCode: string;
|
533
554
|
shortId: number;
|
534
555
|
firstTimeMiExpo: boolean;
|
535
556
|
isPhoneVerified: boolean;
|
@@ -552,6 +573,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
552
573
|
seat: number | null;
|
553
574
|
created_at: string;
|
554
575
|
updated_at: string;
|
576
|
+
referralCode: string | null;
|
555
577
|
scanned: boolean;
|
556
578
|
scannedAt: string | null;
|
557
579
|
ticketGroupId: string | null;
|
@@ -575,6 +597,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
575
597
|
dni: string | null;
|
576
598
|
created_at: string;
|
577
599
|
updated_at: string;
|
600
|
+
referralCode: string;
|
578
601
|
shortId: number;
|
579
602
|
firstTimeMiExpo: boolean;
|
580
603
|
isPhoneVerified: boolean;
|
@@ -598,6 +621,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
598
621
|
seat: number | null;
|
599
622
|
created_at: string;
|
600
623
|
updated_at: string;
|
624
|
+
referralCode: string | null;
|
601
625
|
scanned: boolean;
|
602
626
|
scannedAt: string | null;
|
603
627
|
ticketGroupId: string | null;
|