expo-backend-types 0.55.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.55.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.
@@ -18,7 +18,6 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
18
18
|
}, "type" | "fullName" | "mail" | "eventId" | "dni">, {
|
19
19
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
20
20
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
21
|
-
referralCode: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
22
21
|
}>, "strip", import("zod").ZodTypeAny, {
|
23
22
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
24
23
|
fullName: string;
|
@@ -26,7 +25,6 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
26
25
|
eventId: string;
|
27
26
|
dni: string;
|
28
27
|
profileId?: string | undefined;
|
29
|
-
referralCode?: string | null | undefined;
|
30
28
|
ticketGroupId?: string | undefined;
|
31
29
|
}, {
|
32
30
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -35,7 +33,6 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
35
33
|
eventId: string;
|
36
34
|
dni: string;
|
37
35
|
profileId?: string | undefined;
|
38
|
-
referralCode?: string | null | undefined;
|
39
36
|
ticketGroupId?: string | undefined;
|
40
37
|
}>;
|
41
38
|
declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -50,7 +47,6 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
50
47
|
dni: import("zod").ZodString;
|
51
48
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
52
49
|
ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
|
53
|
-
referralCode: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
54
50
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
55
51
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
56
52
|
fullName: string;
|
@@ -58,7 +54,6 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
58
54
|
eventId: string;
|
59
55
|
dni: string;
|
60
56
|
profileId?: string | undefined;
|
61
|
-
referralCode?: string | null | undefined;
|
62
57
|
ticketGroupId?: string | undefined;
|
63
58
|
}, {
|
64
59
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -67,7 +62,6 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
67
62
|
eventId: string;
|
68
63
|
dni: string;
|
69
64
|
profileId?: string | undefined;
|
70
|
-
referralCode?: string | null | undefined;
|
71
65
|
ticketGroupId?: string | undefined;
|
72
66
|
}>>;
|
73
67
|
export declare class CreateTicketDto extends CreateTicketDto_base {
|
@@ -17,7 +17,6 @@ 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(),
|
21
20
|
});
|
22
21
|
class CreateTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createTicketSchema) {
|
23
22
|
}
|
package/dist/types/schema.d.ts
CHANGED