expo-backend-types 0.37.0-EXPO-327-EB-Escanear-entrada.1 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5

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.
Files changed (70) hide show
  1. package/dist/src/account/dto/get-global-filter.dto.d.ts +8 -8
  2. package/dist/src/account/dto/get-me.dto.d.ts +16 -16
  3. package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
  4. package/dist/src/event/dto/create-event.dto.d.ts +8 -8
  5. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
  6. package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
  7. package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -68
  9. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  10. package/dist/src/exports.d.ts +1 -0
  11. package/dist/src/exports.js +1 -0
  12. package/dist/src/i18n/es.d.ts +36 -21
  13. package/dist/src/i18n/es.js +36 -21
  14. package/dist/src/i18n/es.js.map +1 -1
  15. package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -12
  16. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -20
  17. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -8
  18. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -12
  19. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -12
  20. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -12
  21. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  22. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  23. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  24. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  25. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  26. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  27. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  28. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  29. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  30. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  31. package/dist/src/ticket/constants.d.ts +14 -12
  32. package/dist/src/ticket/constants.js +248 -355
  33. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +596 -0
  34. package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
  35. package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -44
  36. package/dist/src/ticket/dto/create-ticket.dto.js +1 -1
  37. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -24
  38. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -36
  39. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -36
  40. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +18 -36
  41. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -36
  42. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -36
  43. package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -24
  44. package/dist/src/ticket/dto/ticket.dto.d.ts +10 -24
  45. package/dist/src/ticket/dto/ticket.dto.js +2 -4
  46. package/dist/src/ticket/dto/update-ticket.dto.d.ts +26 -42
  47. package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
  48. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +356 -0
  49. package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
  50. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
  51. package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
  52. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
  53. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
  54. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
  55. package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
  56. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
  57. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
  58. package/dist/src/ticket-group/exports.d.ts +5 -0
  59. package/dist/src/ticket-group/exports.js +22 -0
  60. package/dist/types/prisma-schema/edge.js +15 -6
  61. package/dist/types/prisma-schema/index-browser.js +12 -3
  62. package/dist/types/prisma-schema/index.d.ts +2230 -332
  63. package/dist/types/prisma-schema/index.js +15 -6
  64. package/dist/types/prisma-schema/package.json +1 -1
  65. package/dist/types/prisma-schema/schema.prisma +23 -7
  66. package/dist/types/prisma-schema/wasm.js +12 -3
  67. package/dist/types/schema.d.ts +317 -29
  68. package/package.json +6 -6
  69. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  70. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -6,34 +6,29 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
6
6
  STAFF: "STAFF";
7
7
  SPECTATOR: "SPECTATOR";
8
8
  }>;
9
- status: import("zod").ZodNativeEnum<{
10
- BOOKED: "BOOKED";
11
- PAID: "PAID";
12
- FREE: "FREE";
13
- }>;
14
9
  fullName: import("zod").ZodString;
15
10
  mail: import("zod").ZodString;
16
11
  dni: import("zod").ZodString;
17
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
12
+ ticketGroupId: import("zod").ZodString;
18
13
  created_at: import("zod").ZodDate;
19
14
  updated_at: import("zod").ZodDate;
20
- }, "type" | "fullName" | "mail" | "eventId" | "status" | "dni">, {
15
+ }, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
21
16
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
22
17
  }>, "strip", import("zod").ZodTypeAny, {
23
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
18
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
24
19
  fullName: string;
25
20
  mail: string;
26
21
  eventId: string;
27
- status: "BOOKED" | "PAID" | "FREE";
28
22
  dni: string;
23
+ ticketGroupId: string;
29
24
  profileId?: string | undefined;
30
25
  }, {
31
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
26
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
32
27
  fullName: string;
33
28
  mail: string;
34
29
  eventId: string;
35
- status: "BOOKED" | "PAID" | "FREE";
36
30
  dni: string;
31
+ ticketGroupId: string;
37
32
  profileId?: string | undefined;
38
33
  }>;
39
34
  declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -45,28 +40,24 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
45
40
  fullName: import("zod").ZodString;
46
41
  mail: import("zod").ZodString;
47
42
  eventId: import("zod").ZodString;
48
- status: import("zod").ZodNativeEnum<{
49
- BOOKED: "BOOKED";
50
- PAID: "PAID";
51
- FREE: "FREE";
52
- }>;
53
43
  dni: import("zod").ZodString;
44
+ ticketGroupId: import("zod").ZodString;
54
45
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
55
46
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
56
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
47
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
57
48
  fullName: string;
58
49
  mail: string;
59
50
  eventId: string;
60
- status: "BOOKED" | "PAID" | "FREE";
61
51
  dni: string;
52
+ ticketGroupId: string;
62
53
  profileId?: string | undefined;
63
54
  }, {
64
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
55
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
65
56
  fullName: string;
66
57
  mail: string;
67
58
  eventId: string;
68
- status: "BOOKED" | "PAID" | "FREE";
69
59
  dni: string;
60
+ ticketGroupId: string;
70
61
  profileId?: string | undefined;
71
62
  }>>;
72
63
  export declare class CreateTicketDto extends CreateTicketDto_base {
@@ -79,15 +70,10 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
79
70
  STAFF: "STAFF";
80
71
  SPECTATOR: "SPECTATOR";
81
72
  }>;
82
- status: import("zod").ZodNativeEnum<{
83
- BOOKED: "BOOKED";
84
- PAID: "PAID";
85
- FREE: "FREE";
86
- }>;
87
73
  fullName: import("zod").ZodString;
88
74
  mail: import("zod").ZodString;
89
75
  dni: import("zod").ZodString;
90
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
76
+ ticketGroupId: import("zod").ZodString;
91
77
  created_at: import("zod").ZodDate;
92
78
  updated_at: import("zod").ZodDate;
93
79
  }, {
@@ -151,15 +137,14 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
151
137
  supraEventId: string | null;
152
138
  };
153
139
  id: string;
154
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
140
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
155
141
  fullName: string;
156
142
  mail: string;
157
143
  eventId: string;
158
- status: "BOOKED" | "PAID" | "FREE";
159
- seat: number | null;
160
144
  dni: string;
161
145
  created_at: Date;
162
146
  updated_at: Date;
147
+ ticketGroupId: string;
163
148
  }, {
164
149
  event: {
165
150
  location: string;
@@ -177,15 +162,14 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
177
162
  supraEventId: string | null;
178
163
  };
179
164
  id: string;
180
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
165
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
181
166
  fullName: string;
182
167
  mail: string;
183
168
  eventId: string;
184
- status: "BOOKED" | "PAID" | "FREE";
185
- seat: number | null;
186
169
  dni: string;
187
170
  created_at: Date;
188
171
  updated_at: Date;
172
+ ticketGroupId: string;
189
173
  }>;
190
174
  declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
191
175
  id: import("zod").ZodString;
@@ -195,15 +179,10 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
195
179
  STAFF: "STAFF";
196
180
  SPECTATOR: "SPECTATOR";
197
181
  }>;
198
- status: import("zod").ZodNativeEnum<{
199
- BOOKED: "BOOKED";
200
- PAID: "PAID";
201
- FREE: "FREE";
202
- }>;
203
182
  fullName: import("zod").ZodString;
204
183
  mail: import("zod").ZodString;
205
184
  dni: import("zod").ZodString;
206
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
185
+ ticketGroupId: import("zod").ZodString;
207
186
  created_at: import("zod").ZodString;
208
187
  updated_at: import("zod").ZodString;
209
188
  event: import("zod").ZodObject<{
@@ -266,15 +245,14 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
266
245
  supraEventId: string | null;
267
246
  };
268
247
  id: string;
269
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
248
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
270
249
  fullName: string;
271
250
  mail: string;
272
251
  eventId: string;
273
- status: "BOOKED" | "PAID" | "FREE";
274
- seat: number | null;
275
252
  dni: string;
276
253
  created_at: string;
277
254
  updated_at: string;
255
+ ticketGroupId: string;
278
256
  }, {
279
257
  event: {
280
258
  location: string;
@@ -292,15 +270,14 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
292
270
  supraEventId: string | null;
293
271
  };
294
272
  id: string;
295
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
273
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
296
274
  fullName: string;
297
275
  mail: string;
298
276
  eventId: string;
299
- status: "BOOKED" | "PAID" | "FREE";
300
- seat: number | null;
301
277
  dni: string;
302
278
  created_at: string;
303
279
  updated_at: string;
280
+ ticketGroupId: string;
304
281
  }>>;
305
282
  export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
306
283
  }
@@ -9,10 +9,10 @@ exports.createTicketSchema = ticket_dto_1.ticketSchema
9
9
  .pick({
10
10
  eventId: true,
11
11
  type: true,
12
- status: true,
13
12
  fullName: true,
14
13
  mail: true,
15
14
  dni: true,
15
+ ticketGroupId: true,
16
16
  })
17
17
  .extend({
18
18
  profileId: profile_schema_1.profileSchema.shape.id.optional(),
@@ -6,39 +6,32 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
6
6
  STAFF: "STAFF";
7
7
  SPECTATOR: "SPECTATOR";
8
8
  }>;
9
- status: import("zod").ZodNativeEnum<{
10
- BOOKED: "BOOKED";
11
- PAID: "PAID";
12
- FREE: "FREE";
13
- }>;
14
9
  fullName: import("zod").ZodString;
15
10
  mail: import("zod").ZodString;
16
11
  dni: import("zod").ZodString;
17
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
12
+ ticketGroupId: import("zod").ZodString;
18
13
  created_at: import("zod").ZodDate;
19
14
  updated_at: import("zod").ZodDate;
20
15
  }, "strip", import("zod").ZodTypeAny, {
21
16
  id: string;
22
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
17
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
23
18
  fullName: string;
24
19
  mail: string;
25
20
  eventId: string;
26
- status: "BOOKED" | "PAID" | "FREE";
27
- seat: number | null;
28
21
  dni: string;
29
22
  created_at: Date;
30
23
  updated_at: Date;
24
+ ticketGroupId: string;
31
25
  }, {
32
26
  id: string;
33
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
27
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
34
28
  fullName: string;
35
29
  mail: string;
36
30
  eventId: string;
37
- status: "BOOKED" | "PAID" | "FREE";
38
- seat: number | null;
39
31
  dni: string;
40
32
  created_at: Date;
41
33
  updated_at: Date;
34
+ ticketGroupId: string;
42
35
  }>;
43
36
  declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
44
37
  id: import("zod").ZodString;
@@ -48,39 +41,32 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
48
41
  STAFF: "STAFF";
49
42
  SPECTATOR: "SPECTATOR";
50
43
  }>;
51
- status: import("zod").ZodNativeEnum<{
52
- BOOKED: "BOOKED";
53
- PAID: "PAID";
54
- FREE: "FREE";
55
- }>;
56
44
  fullName: import("zod").ZodString;
57
45
  mail: import("zod").ZodString;
58
46
  dni: import("zod").ZodString;
59
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
47
+ ticketGroupId: import("zod").ZodString;
60
48
  created_at: import("zod").ZodString;
61
49
  updated_at: import("zod").ZodString;
62
50
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
63
51
  id: string;
64
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
52
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
65
53
  fullName: string;
66
54
  mail: string;
67
55
  eventId: string;
68
- status: "BOOKED" | "PAID" | "FREE";
69
- seat: number | null;
70
56
  dni: string;
71
57
  created_at: string;
72
58
  updated_at: string;
59
+ ticketGroupId: string;
73
60
  }, {
74
61
  id: string;
75
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
62
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
76
63
  fullName: string;
77
64
  mail: string;
78
65
  eventId: string;
79
- status: "BOOKED" | "PAID" | "FREE";
80
- seat: number | null;
81
66
  dni: string;
82
67
  created_at: string;
83
68
  updated_at: string;
69
+ ticketGroupId: string;
84
70
  }>>;
85
71
  export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
86
72
  }
@@ -8,15 +8,10 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
8
8
  STAFF: "STAFF";
9
9
  SPECTATOR: "SPECTATOR";
10
10
  }>;
11
- status: z.ZodNativeEnum<{
12
- BOOKED: "BOOKED";
13
- PAID: "PAID";
14
- FREE: "FREE";
15
- }>;
16
11
  fullName: z.ZodString;
17
12
  mail: z.ZodString;
18
13
  dni: z.ZodString;
19
- seat: z.ZodNullable<z.ZodNumber>;
14
+ ticketGroupId: z.ZodString;
20
15
  created_at: z.ZodDate;
21
16
  updated_at: z.ZodDate;
22
17
  }, {
@@ -50,15 +45,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
50
45
  date: Date;
51
46
  };
52
47
  id: string;
53
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
48
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
54
49
  fullName: string;
55
50
  mail: string;
56
51
  eventId: string;
57
- status: "BOOKED" | "PAID" | "FREE";
58
- seat: number | null;
59
52
  dni: string;
60
53
  created_at: Date;
61
54
  updated_at: Date;
55
+ ticketGroupId: string;
62
56
  }, {
63
57
  event: {
64
58
  location: string;
@@ -66,15 +60,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
66
60
  date: Date;
67
61
  };
68
62
  id: string;
69
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
63
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
70
64
  fullName: string;
71
65
  mail: string;
72
66
  eventId: string;
73
- status: "BOOKED" | "PAID" | "FREE";
74
- seat: number | null;
75
67
  dni: string;
76
68
  created_at: Date;
77
69
  updated_at: Date;
70
+ ticketGroupId: string;
78
71
  }>, "many">;
79
72
  }, "strip", z.ZodTypeAny, {
80
73
  tickets: {
@@ -84,15 +77,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
84
77
  date: Date;
85
78
  };
86
79
  id: string;
87
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
80
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
88
81
  fullName: string;
89
82
  mail: string;
90
83
  eventId: string;
91
- status: "BOOKED" | "PAID" | "FREE";
92
- seat: number | null;
93
84
  dni: string;
94
85
  created_at: Date;
95
86
  updated_at: Date;
87
+ ticketGroupId: string;
96
88
  }[];
97
89
  }, {
98
90
  tickets: {
@@ -102,15 +94,14 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
102
94
  date: Date;
103
95
  };
104
96
  id: string;
105
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
97
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
106
98
  fullName: string;
107
99
  mail: string;
108
100
  eventId: string;
109
- status: "BOOKED" | "PAID" | "FREE";
110
- seat: number | null;
111
101
  dni: string;
112
102
  created_at: Date;
113
103
  updated_at: Date;
104
+ ticketGroupId: string;
114
105
  }[];
115
106
  }>;
116
107
  declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -122,15 +113,10 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
122
113
  STAFF: "STAFF";
123
114
  SPECTATOR: "SPECTATOR";
124
115
  }>;
125
- status: z.ZodNativeEnum<{
126
- BOOKED: "BOOKED";
127
- PAID: "PAID";
128
- FREE: "FREE";
129
- }>;
130
116
  fullName: z.ZodString;
131
117
  mail: z.ZodString;
132
118
  dni: z.ZodString;
133
- seat: z.ZodNullable<z.ZodNumber>;
119
+ ticketGroupId: z.ZodString;
134
120
  created_at: z.ZodString;
135
121
  updated_at: z.ZodString;
136
122
  event: z.ZodObject<{
@@ -153,15 +139,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
153
139
  date: string;
154
140
  };
155
141
  id: string;
156
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
142
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
157
143
  fullName: string;
158
144
  mail: string;
159
145
  eventId: string;
160
- status: "BOOKED" | "PAID" | "FREE";
161
- seat: number | null;
162
146
  dni: string;
163
147
  created_at: string;
164
148
  updated_at: string;
149
+ ticketGroupId: string;
165
150
  }, {
166
151
  event: {
167
152
  location: string;
@@ -169,15 +154,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
169
154
  date: string;
170
155
  };
171
156
  id: string;
172
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
157
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
173
158
  fullName: string;
174
159
  mail: string;
175
160
  eventId: string;
176
- status: "BOOKED" | "PAID" | "FREE";
177
- seat: number | null;
178
161
  dni: string;
179
162
  created_at: string;
180
163
  updated_at: string;
164
+ ticketGroupId: string;
181
165
  }>, "many">;
182
166
  }, z.UnknownKeysParam, z.ZodTypeAny, {
183
167
  tickets: {
@@ -187,15 +171,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
187
171
  date: string;
188
172
  };
189
173
  id: string;
190
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
174
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
191
175
  fullName: string;
192
176
  mail: string;
193
177
  eventId: string;
194
- status: "BOOKED" | "PAID" | "FREE";
195
- seat: number | null;
196
178
  dni: string;
197
179
  created_at: string;
198
180
  updated_at: string;
181
+ ticketGroupId: string;
199
182
  }[];
200
183
  }, {
201
184
  tickets: {
@@ -205,15 +188,14 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
205
188
  date: string;
206
189
  };
207
190
  id: string;
208
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
191
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
209
192
  fullName: string;
210
193
  mail: string;
211
194
  eventId: string;
212
- status: "BOOKED" | "PAID" | "FREE";
213
- seat: number | null;
214
195
  dni: string;
215
196
  created_at: string;
216
197
  updated_at: string;
198
+ ticketGroupId: string;
217
199
  }[];
218
200
  }>>;
219
201
  export declare class FindAllTicketsResponseDto extends FindAllTicketsResponseDto_base {
@@ -8,15 +8,10 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
8
8
  STAFF: "STAFF";
9
9
  SPECTATOR: "SPECTATOR";
10
10
  }>;
11
- status: z.ZodNativeEnum<{
12
- BOOKED: "BOOKED";
13
- PAID: "PAID";
14
- FREE: "FREE";
15
- }>;
16
11
  fullName: z.ZodString;
17
12
  mail: z.ZodString;
18
13
  dni: z.ZodString;
19
- seat: z.ZodNullable<z.ZodNumber>;
14
+ ticketGroupId: z.ZodString;
20
15
  created_at: z.ZodDate;
21
16
  updated_at: z.ZodDate;
22
17
  }, {
@@ -158,15 +153,14 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
158
153
  movedToTrashDate: Date | null;
159
154
  } | null;
160
155
  id: string;
161
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
156
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
162
157
  fullName: string;
163
158
  mail: string;
164
159
  eventId: string;
165
- status: "BOOKED" | "PAID" | "FREE";
166
- seat: number | null;
167
160
  dni: string;
168
161
  created_at: Date;
169
162
  updated_at: Date;
163
+ ticketGroupId: string;
170
164
  }, {
171
165
  event: {
172
166
  location: string;
@@ -200,15 +194,14 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
200
194
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
201
195
  } | null;
202
196
  id: string;
203
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
197
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
204
198
  fullName: string;
205
199
  mail: string;
206
200
  eventId: string;
207
- status: "BOOKED" | "PAID" | "FREE";
208
- seat: number | null;
209
201
  dni: string;
210
202
  created_at: Date;
211
203
  updated_at: Date;
204
+ ticketGroupId: string;
212
205
  }>, "many">;
213
206
  }, "strip", z.ZodTypeAny, {
214
207
  tickets: {
@@ -244,15 +237,14 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
244
237
  movedToTrashDate: Date | null;
245
238
  } | null;
246
239
  id: string;
247
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
240
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
248
241
  fullName: string;
249
242
  mail: string;
250
243
  eventId: string;
251
- status: "BOOKED" | "PAID" | "FREE";
252
- seat: number | null;
253
244
  dni: string;
254
245
  created_at: Date;
255
246
  updated_at: Date;
247
+ ticketGroupId: string;
256
248
  }[];
257
249
  }, {
258
250
  tickets: {
@@ -288,15 +280,14 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
288
280
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
289
281
  } | null;
290
282
  id: string;
291
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
283
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
292
284
  fullName: string;
293
285
  mail: string;
294
286
  eventId: string;
295
- status: "BOOKED" | "PAID" | "FREE";
296
- seat: number | null;
297
287
  dni: string;
298
288
  created_at: Date;
299
289
  updated_at: Date;
290
+ ticketGroupId: string;
300
291
  }[];
301
292
  }>;
302
293
  declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -308,15 +299,10 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
308
299
  STAFF: "STAFF";
309
300
  SPECTATOR: "SPECTATOR";
310
301
  }>;
311
- status: z.ZodNativeEnum<{
312
- BOOKED: "BOOKED";
313
- PAID: "PAID";
314
- FREE: "FREE";
315
- }>;
316
302
  fullName: z.ZodString;
317
303
  mail: z.ZodString;
318
304
  dni: z.ZodString;
319
- seat: z.ZodNullable<z.ZodNumber>;
305
+ ticketGroupId: z.ZodString;
320
306
  created_at: z.ZodString;
321
307
  updated_at: z.ZodString;
322
308
  event: z.ZodObject<{
@@ -447,15 +433,14 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
447
433
  movedToTrashDate: string | null;
448
434
  } | null;
449
435
  id: string;
450
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
436
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
451
437
  fullName: string;
452
438
  mail: string;
453
439
  eventId: string;
454
- status: "BOOKED" | "PAID" | "FREE";
455
- seat: number | null;
456
440
  dni: string;
457
441
  created_at: string;
458
442
  updated_at: string;
443
+ ticketGroupId: string;
459
444
  }, {
460
445
  event: {
461
446
  location: string;
@@ -489,15 +474,14 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
489
474
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
490
475
  } | null;
491
476
  id: string;
492
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
477
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
493
478
  fullName: string;
494
479
  mail: string;
495
480
  eventId: string;
496
- status: "BOOKED" | "PAID" | "FREE";
497
- seat: number | null;
498
481
  dni: string;
499
482
  created_at: string;
500
483
  updated_at: string;
484
+ ticketGroupId: string;
501
485
  }>, "many">;
502
486
  }, z.UnknownKeysParam, z.ZodTypeAny, {
503
487
  tickets: {
@@ -533,15 +517,14 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
533
517
  movedToTrashDate: string | null;
534
518
  } | null;
535
519
  id: string;
536
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
520
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
537
521
  fullName: string;
538
522
  mail: string;
539
523
  eventId: string;
540
- status: "BOOKED" | "PAID" | "FREE";
541
- seat: number | null;
542
524
  dni: string;
543
525
  created_at: string;
544
526
  updated_at: string;
527
+ ticketGroupId: string;
545
528
  }[];
546
529
  }, {
547
530
  tickets: {
@@ -577,15 +560,14 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
577
560
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
578
561
  } | null;
579
562
  id: string;
580
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
563
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
581
564
  fullName: string;
582
565
  mail: string;
583
566
  eventId: string;
584
- status: "BOOKED" | "PAID" | "FREE";
585
- seat: number | null;
586
567
  dni: string;
587
568
  created_at: string;
588
569
  updated_at: string;
570
+ ticketGroupId: string;
589
571
  }[];
590
572
  }>>;
591
573
  export declare class FindByEventTicketResponseDto extends FindByEventTicketResponseDto_base {