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.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
3
- id: z.ZodString;
4
- eventId: z.ZodString;
5
- type: z.ZodNativeEnum<{
6
- PARTICIPANT: "PARTICIPANT";
7
- STAFF: "STAFF";
8
- SPECTATOR: "SPECTATOR";
9
- }>;
10
- status: z.ZodNativeEnum<{
11
- BOOKED: "BOOKED";
12
- PAID: "PAID";
13
- FREE: "FREE";
14
- }>;
15
- fullName: z.ZodString;
16
- mail: z.ZodString;
17
- created_at: z.ZodDate;
18
- updated_at: z.ZodDate;
19
- }, "type" | "fullName" | "mail" | "eventId" | "status">, {
20
- profileId: z.ZodOptional<z.ZodString>;
21
- }>, "strip", z.ZodTypeAny, {
22
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
23
- fullName: string;
24
- mail: string;
25
- eventId: string;
26
- status: "BOOKED" | "PAID" | "FREE";
27
- profileId?: string | undefined;
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
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
30
- fullName: string;
31
- mail: string;
32
- eventId: string;
33
- status: "BOOKED" | "PAID" | "FREE";
34
- profileId?: string | undefined;
35
- }>, "many">;
36
- declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodArray<z.ZodObject<{
37
- type: z.ZodNativeEnum<{
38
- PARTICIPANT: "PARTICIPANT";
39
- STAFF: "STAFF";
40
- SPECTATOR: "SPECTATOR";
41
- }>;
42
- fullName: z.ZodString;
43
- mail: z.ZodString;
44
- eventId: z.ZodString;
45
- status: z.ZodNativeEnum<{
46
- BOOKED: "BOOKED";
47
- PAID: "PAID";
48
- FREE: "FREE";
49
- }>;
50
- profileId: z.ZodOptional<z.ZodString>;
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
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
53
- fullName: string;
54
- mail: string;
55
- eventId: string;
56
- status: "BOOKED" | "PAID" | "FREE";
57
- profileId?: string | undefined;
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
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
60
- fullName: string;
61
- mail: string;
62
- eventId: string;
63
- status: "BOOKED" | "PAID" | "FREE";
64
- profileId?: string | undefined;
65
- }>, "many">>;
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 = ticket_dto_1.ticketSchema
13
- .pick({
14
- eventId: true,
15
- type: true,
16
- status: true,
17
- fullName: true,
18
- mail: true,
19
- })
20
- .extend({
21
- profileId: profile_schema_1.profileSchema.shape.id.optional(),
22
- })
23
- .array();
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;
@@ -2722,13 +2722,15 @@ export interface components {
2722
2722
  };
2723
2723
  };
2724
2724
  CreateManyTicketDto: {
2725
- eventId: string;
2726
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2727
- status: "BOOKED" | "PAID" | "FREE";
2728
- fullName: string;
2729
- mail: string;
2730
- profileId?: string;
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.6",
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.11.11",
39
+ "libphonenumber-js": "^1.12.6",
40
40
  "patch-package": "^8.0.0",
41
41
  "zod": "^3.23.8"
42
42
  },