expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.6 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.7
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.
@@ -1,68 +1,108 @@
|
|
1
1
|
import z from 'zod';
|
2
|
-
export declare const createManyTicketSchema: z.
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
2
|
+
export declare const createManyTicketSchema: z.ZodObject<{
|
3
|
+
tickets: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
4
|
+
id: z.ZodString;
|
5
|
+
eventId: z.ZodString;
|
6
|
+
type: z.ZodNativeEnum<{
|
7
|
+
PARTICIPANT: "PARTICIPANT";
|
8
|
+
STAFF: "STAFF";
|
9
|
+
SPECTATOR: "SPECTATOR";
|
10
|
+
}>;
|
11
|
+
status: z.ZodNativeEnum<{
|
12
|
+
BOOKED: "BOOKED";
|
13
|
+
PAID: "PAID";
|
14
|
+
FREE: "FREE";
|
15
|
+
}>;
|
16
|
+
fullName: z.ZodString;
|
17
|
+
mail: z.ZodString;
|
18
|
+
created_at: z.ZodDate;
|
19
|
+
updated_at: z.ZodDate;
|
20
|
+
}, "type" | "fullName" | "mail" | "eventId" | "status">, {
|
21
|
+
profileId: z.ZodOptional<z.ZodString>;
|
22
|
+
}>, "strip", z.ZodTypeAny, {
|
23
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
24
|
+
fullName: string;
|
25
|
+
mail: string;
|
26
|
+
eventId: string;
|
27
|
+
status: "BOOKED" | "PAID" | "FREE";
|
28
|
+
profileId?: string | undefined;
|
29
|
+
}, {
|
30
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
31
|
+
fullName: string;
|
32
|
+
mail: string;
|
33
|
+
eventId: string;
|
34
|
+
status: "BOOKED" | "PAID" | "FREE";
|
35
|
+
profileId?: string | undefined;
|
36
|
+
}>, "many">;
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
38
|
+
tickets: {
|
39
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
40
|
+
fullName: string;
|
41
|
+
mail: string;
|
42
|
+
eventId: string;
|
43
|
+
status: "BOOKED" | "PAID" | "FREE";
|
44
|
+
profileId?: string | undefined;
|
45
|
+
}[];
|
28
46
|
}, {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
47
|
+
tickets: {
|
48
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
49
|
+
fullName: string;
|
50
|
+
mail: string;
|
51
|
+
eventId: string;
|
52
|
+
status: "BOOKED" | "PAID" | "FREE";
|
53
|
+
profileId?: string | undefined;
|
54
|
+
}[];
|
55
|
+
}>;
|
56
|
+
declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
57
|
+
tickets: z.ZodArray<z.ZodObject<{
|
58
|
+
type: z.ZodNativeEnum<{
|
59
|
+
PARTICIPANT: "PARTICIPANT";
|
60
|
+
STAFF: "STAFF";
|
61
|
+
SPECTATOR: "SPECTATOR";
|
62
|
+
}>;
|
63
|
+
fullName: z.ZodString;
|
64
|
+
mail: z.ZodString;
|
65
|
+
eventId: z.ZodString;
|
66
|
+
status: z.ZodNativeEnum<{
|
67
|
+
BOOKED: "BOOKED";
|
68
|
+
PAID: "PAID";
|
69
|
+
FREE: "FREE";
|
70
|
+
}>;
|
71
|
+
profileId: z.ZodOptional<z.ZodString>;
|
72
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
73
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
74
|
+
fullName: string;
|
75
|
+
mail: string;
|
76
|
+
eventId: string;
|
77
|
+
status: "BOOKED" | "PAID" | "FREE";
|
78
|
+
profileId?: string | undefined;
|
79
|
+
}, {
|
80
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
81
|
+
fullName: string;
|
82
|
+
mail: string;
|
83
|
+
eventId: string;
|
84
|
+
status: "BOOKED" | "PAID" | "FREE";
|
85
|
+
profileId?: string | undefined;
|
86
|
+
}>, "many">;
|
51
87
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
88
|
+
tickets: {
|
89
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
90
|
+
fullName: string;
|
91
|
+
mail: string;
|
92
|
+
eventId: string;
|
93
|
+
status: "BOOKED" | "PAID" | "FREE";
|
94
|
+
profileId?: string | undefined;
|
95
|
+
}[];
|
58
96
|
}, {
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
97
|
+
tickets: {
|
98
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
99
|
+
fullName: string;
|
100
|
+
mail: string;
|
101
|
+
eventId: string;
|
102
|
+
status: "BOOKED" | "PAID" | "FREE";
|
103
|
+
profileId?: string | undefined;
|
104
|
+
}[];
|
105
|
+
}>>;
|
66
106
|
export declare class CreateManyTicketDto extends CreateManyTicketDto_base {
|
67
107
|
}
|
68
108
|
export declare const generateMultiplePdfTicketsSchema: z.ZodArray<z.ZodObject<{
|
@@ -9,18 +9,19 @@ 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
10
|
const zod_1 = __importDefault(require("zod"));
|
11
11
|
const ticket_dto_1 = require("./ticket.dto");
|
12
|
-
exports.createManyTicketSchema =
|
13
|
-
.
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
12
|
+
exports.createManyTicketSchema = zod_1.default.object({
|
13
|
+
tickets: zod_1.default.array(ticket_dto_1.ticketSchema
|
14
|
+
.pick({
|
15
|
+
eventId: true,
|
16
|
+
type: true,
|
17
|
+
status: true,
|
18
|
+
fullName: true,
|
19
|
+
mail: true,
|
20
|
+
})
|
21
|
+
.extend({
|
22
|
+
profileId: profile_schema_1.profileSchema.shape.id.optional(),
|
23
|
+
})),
|
24
|
+
});
|
24
25
|
class CreateManyTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketSchema) {
|
25
26
|
}
|
26
27
|
exports.CreateManyTicketDto = CreateManyTicketDto;
|
package/dist/types/schema.d.ts
CHANGED
@@ -2722,13 +2722,15 @@ export interface components {
|
|
2722
2722
|
};
|
2723
2723
|
};
|
2724
2724
|
CreateManyTicketDto: {
|
2725
|
-
|
2726
|
-
|
2727
|
-
|
2728
|
-
|
2729
|
-
|
2730
|
-
|
2731
|
-
|
2725
|
+
tickets: {
|
2726
|
+
eventId: string;
|
2727
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2728
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2729
|
+
fullName: string;
|
2730
|
+
mail: string;
|
2731
|
+
profileId?: string;
|
2732
|
+
}[];
|
2733
|
+
};
|
2732
2734
|
CreateManyTicketWithPdfsResponseDto: {
|
2733
2735
|
tickets: {
|
2734
2736
|
id: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.
|
3
|
+
"version": "0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.7",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"@anatine/zod-nestjs": "^2.0.9",
|
37
37
|
"@anatine/zod-openapi": "^2.2.6",
|
38
38
|
"i18n-js": "^4.4.3",
|
39
|
-
"libphonenumber-js": "^1.
|
39
|
+
"libphonenumber-js": "^1.12.6",
|
40
40
|
"patch-package": "^8.0.0",
|
41
41
|
"zod": "^3.23.8"
|
42
42
|
},
|