expo-backend-types 0.39.0-EXPO-326-Oscar-Ruggeri.1 → 0.40.0-EXPO-330-ExpoBackend-MercadoPago.1

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 (55) hide show
  1. package/dist/src/csv/dto/download-all-tables.dto.d.ts +2 -2
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +408 -26
  3. package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
  4. package/dist/src/exports.d.ts +1 -0
  5. package/dist/src/exports.js +1 -0
  6. package/dist/src/i18n/es.d.ts +39 -2
  7. package/dist/src/i18n/es.js +64 -9
  8. package/dist/src/i18n/es.js.map +1 -1
  9. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +638 -0
  10. package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
  11. package/dist/src/ticket/dto/create-ticket.dto.d.ts +18 -33
  12. package/dist/src/ticket/dto/create-ticket.dto.js +2 -1
  13. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -18
  14. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -26
  15. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -26
  16. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +161 -29
  17. package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -5
  18. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -26
  19. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -26
  20. package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -18
  21. package/dist/src/ticket/dto/generate-pdf.dto.d.ts +2 -2
  22. package/dist/src/ticket/dto/ticket.dto.d.ts +10 -18
  23. package/dist/src/ticket/dto/ticket.dto.js +2 -3
  24. package/dist/src/ticket/dto/update-ticket.dto.d.ts +22 -32
  25. package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
  26. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +386 -0
  27. package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
  28. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
  29. package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
  30. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
  31. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
  32. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
  33. package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
  34. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
  35. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
  36. package/dist/src/ticket-group/exports.d.ts +5 -0
  37. package/dist/src/ticket-group/exports.js +22 -0
  38. package/dist/types/prisma-schema/edge.js +21 -11
  39. package/dist/types/prisma-schema/index-browser.js +16 -6
  40. package/dist/types/prisma-schema/index.d.ts +2427 -407
  41. package/dist/types/prisma-schema/index.js +21 -11
  42. package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
  43. package/dist/types/prisma-schema/package.json +2 -2
  44. package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
  45. package/dist/types/prisma-schema/runtime/edge.js +18 -18
  46. package/dist/types/prisma-schema/runtime/index-browser.d.ts +2 -2
  47. package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
  48. package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
  49. package/dist/types/prisma-schema/runtime/library.js +56 -56
  50. package/dist/types/prisma-schema/runtime/react-native.js +25 -25
  51. package/dist/types/prisma-schema/runtime/wasm.js +19 -19
  52. package/dist/types/prisma-schema/schema.prisma +22 -3
  53. package/dist/types/prisma-schema/wasm.js +16 -6
  54. package/dist/types/schema.d.ts +416 -13
  55. package/package.json +3 -2
@@ -6,37 +6,34 @@ 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
12
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
18
13
  scanned: import("zod").ZodBoolean;
19
14
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
15
+ ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
20
16
  created_at: import("zod").ZodDate;
21
17
  updated_at: import("zod").ZodDate;
22
- }, "type" | "fullName" | "mail" | "eventId" | "status" | "dni">, {
18
+ }, "type" | "fullName" | "mail" | "eventId" | "dni">, {
23
19
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
20
+ ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
24
21
  }>, "strip", import("zod").ZodTypeAny, {
25
22
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
26
23
  fullName: string;
27
24
  mail: string;
28
25
  eventId: string;
29
- status: "BOOKED" | "PAID" | "FREE";
30
26
  dni: string;
31
27
  profileId?: string | undefined;
28
+ ticketGroupId?: string | undefined;
32
29
  }, {
33
30
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
34
31
  fullName: string;
35
32
  mail: string;
36
33
  eventId: string;
37
- status: "BOOKED" | "PAID" | "FREE";
38
34
  dni: string;
39
35
  profileId?: string | undefined;
36
+ ticketGroupId?: string | undefined;
40
37
  }>;
41
38
  declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
42
39
  type: import("zod").ZodNativeEnum<{
@@ -47,29 +44,25 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
47
44
  fullName: import("zod").ZodString;
48
45
  mail: import("zod").ZodString;
49
46
  eventId: import("zod").ZodString;
50
- status: import("zod").ZodNativeEnum<{
51
- BOOKED: "BOOKED";
52
- PAID: "PAID";
53
- FREE: "FREE";
54
- }>;
55
47
  dni: import("zod").ZodString;
56
48
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
49
+ ticketGroupId: import("zod").ZodOptional<import("zod").ZodString>;
57
50
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
58
51
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
59
52
  fullName: string;
60
53
  mail: string;
61
54
  eventId: string;
62
- status: "BOOKED" | "PAID" | "FREE";
63
55
  dni: string;
64
56
  profileId?: string | undefined;
57
+ ticketGroupId?: string | undefined;
65
58
  }, {
66
59
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
67
60
  fullName: string;
68
61
  mail: string;
69
62
  eventId: string;
70
- status: "BOOKED" | "PAID" | "FREE";
71
63
  dni: string;
72
64
  profileId?: string | undefined;
65
+ ticketGroupId?: string | undefined;
73
66
  }>>;
74
67
  export declare class CreateTicketDto extends CreateTicketDto_base {
75
68
  }
@@ -81,17 +74,13 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
81
74
  STAFF: "STAFF";
82
75
  SPECTATOR: "SPECTATOR";
83
76
  }>;
84
- status: import("zod").ZodNativeEnum<{
85
- BOOKED: "BOOKED";
86
- PAID: "PAID";
87
- FREE: "FREE";
88
- }>;
89
77
  fullName: import("zod").ZodString;
90
78
  mail: import("zod").ZodString;
91
79
  dni: import("zod").ZodString;
92
80
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
93
81
  scanned: import("zod").ZodBoolean;
94
82
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
83
+ ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
95
84
  created_at: import("zod").ZodDate;
96
85
  updated_at: import("zod").ZodDate;
97
86
  }, {
@@ -159,13 +148,13 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
159
148
  fullName: string;
160
149
  mail: string;
161
150
  eventId: string;
162
- status: "BOOKED" | "PAID" | "FREE";
163
- seat: number | null;
164
151
  dni: string;
152
+ seat: number | null;
165
153
  created_at: Date;
166
154
  updated_at: Date;
167
155
  scanned: boolean;
168
156
  scannedAt: Date | null;
157
+ ticketGroupId: string | null;
169
158
  }, {
170
159
  event: {
171
160
  location: string;
@@ -187,13 +176,13 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
187
176
  fullName: string;
188
177
  mail: string;
189
178
  eventId: string;
190
- status: "BOOKED" | "PAID" | "FREE";
191
- seat: number | null;
192
179
  dni: string;
180
+ seat: number | null;
193
181
  created_at: Date;
194
182
  updated_at: Date;
195
183
  scanned: boolean;
196
184
  scannedAt: Date | null;
185
+ ticketGroupId: string | null;
197
186
  }>;
198
187
  declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
199
188
  id: import("zod").ZodString;
@@ -203,17 +192,13 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
203
192
  STAFF: "STAFF";
204
193
  SPECTATOR: "SPECTATOR";
205
194
  }>;
206
- status: import("zod").ZodNativeEnum<{
207
- BOOKED: "BOOKED";
208
- PAID: "PAID";
209
- FREE: "FREE";
210
- }>;
211
195
  fullName: import("zod").ZodString;
212
196
  mail: import("zod").ZodString;
213
197
  dni: import("zod").ZodString;
214
198
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
215
199
  scanned: import("zod").ZodBoolean;
216
200
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
201
+ ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
217
202
  created_at: import("zod").ZodString;
218
203
  updated_at: import("zod").ZodString;
219
204
  event: import("zod").ZodObject<{
@@ -280,13 +265,13 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
280
265
  fullName: string;
281
266
  mail: string;
282
267
  eventId: string;
283
- status: "BOOKED" | "PAID" | "FREE";
284
- seat: number | null;
285
268
  dni: string;
269
+ seat: number | null;
286
270
  created_at: string;
287
271
  updated_at: string;
288
272
  scanned: boolean;
289
273
  scannedAt: string | null;
274
+ ticketGroupId: string | null;
290
275
  }, {
291
276
  event: {
292
277
  location: string;
@@ -308,13 +293,13 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
308
293
  fullName: string;
309
294
  mail: string;
310
295
  eventId: string;
311
- status: "BOOKED" | "PAID" | "FREE";
312
- seat: number | null;
313
296
  dni: string;
297
+ seat: number | null;
314
298
  created_at: string;
315
299
  updated_at: string;
316
300
  scanned: boolean;
317
301
  scannedAt: string | null;
302
+ ticketGroupId: string | null;
318
303
  }>>;
319
304
  export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
320
305
  }
@@ -4,18 +4,19 @@ exports.CreateTicketResponseDto = exports.createTicketResponseSchema = exports.C
4
4
  const event_dto_1 = require("../../event/dto/event.dto");
5
5
  const profile_schema_1 = require("../../schema/profile.schema");
6
6
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
7
+ const ticket_group_dto_1 = require("../../ticket-group/dto/ticket-group.dto");
7
8
  const ticket_dto_1 = require("./ticket.dto");
8
9
  exports.createTicketSchema = ticket_dto_1.ticketSchema
9
10
  .pick({
10
11
  eventId: true,
11
12
  type: true,
12
- status: true,
13
13
  fullName: true,
14
14
  mail: true,
15
15
  dni: true,
16
16
  })
17
17
  .extend({
18
18
  profileId: profile_schema_1.profileSchema.shape.id.optional(),
19
+ ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.optional(),
19
20
  });
20
21
  class CreateTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createTicketSchema) {
21
22
  }
@@ -6,17 +6,13 @@ 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
12
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
18
13
  scanned: import("zod").ZodBoolean;
19
14
  scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
15
+ ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
20
16
  created_at: import("zod").ZodDate;
21
17
  updated_at: import("zod").ZodDate;
22
18
  }, "strip", import("zod").ZodTypeAny, {
@@ -25,26 +21,26 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
25
21
  fullName: string;
26
22
  mail: string;
27
23
  eventId: string;
28
- status: "BOOKED" | "PAID" | "FREE";
29
- seat: number | null;
30
24
  dni: string;
25
+ seat: number | null;
31
26
  created_at: Date;
32
27
  updated_at: Date;
33
28
  scanned: boolean;
34
29
  scannedAt: Date | null;
30
+ ticketGroupId: string | null;
35
31
  }, {
36
32
  id: string;
37
33
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
38
34
  fullName: string;
39
35
  mail: string;
40
36
  eventId: string;
41
- status: "BOOKED" | "PAID" | "FREE";
42
- seat: number | null;
43
37
  dni: string;
38
+ seat: number | null;
44
39
  created_at: Date;
45
40
  updated_at: Date;
46
41
  scanned: boolean;
47
42
  scannedAt: Date | null;
43
+ ticketGroupId: string | null;
48
44
  }>;
49
45
  declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
50
46
  id: import("zod").ZodString;
@@ -54,17 +50,13 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
54
50
  STAFF: "STAFF";
55
51
  SPECTATOR: "SPECTATOR";
56
52
  }>;
57
- status: import("zod").ZodNativeEnum<{
58
- BOOKED: "BOOKED";
59
- PAID: "PAID";
60
- FREE: "FREE";
61
- }>;
62
53
  fullName: import("zod").ZodString;
63
54
  mail: import("zod").ZodString;
64
55
  dni: import("zod").ZodString;
65
56
  seat: import("zod").ZodNullable<import("zod").ZodNumber>;
66
57
  scanned: import("zod").ZodBoolean;
67
58
  scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
59
+ ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
68
60
  created_at: import("zod").ZodString;
69
61
  updated_at: import("zod").ZodString;
70
62
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -73,26 +65,26 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
73
65
  fullName: string;
74
66
  mail: string;
75
67
  eventId: string;
76
- status: "BOOKED" | "PAID" | "FREE";
77
- seat: number | null;
78
68
  dni: string;
69
+ seat: number | null;
79
70
  created_at: string;
80
71
  updated_at: string;
81
72
  scanned: boolean;
82
73
  scannedAt: string | null;
74
+ ticketGroupId: string | null;
83
75
  }, {
84
76
  id: string;
85
77
  type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
86
78
  fullName: string;
87
79
  mail: string;
88
80
  eventId: string;
89
- status: "BOOKED" | "PAID" | "FREE";
90
- seat: number | null;
91
81
  dni: string;
82
+ seat: number | null;
92
83
  created_at: string;
93
84
  updated_at: string;
94
85
  scanned: boolean;
95
86
  scannedAt: string | null;
87
+ ticketGroupId: string | null;
96
88
  }>>;
97
89
  export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
98
90
  }
@@ -8,17 +8,13 @@ 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
14
  seat: z.ZodNullable<z.ZodNumber>;
20
15
  scanned: z.ZodBoolean;
21
16
  scannedAt: z.ZodNullable<z.ZodDate>;
17
+ ticketGroupId: z.ZodNullable<z.ZodString>;
22
18
  created_at: z.ZodDate;
23
19
  updated_at: z.ZodDate;
24
20
  }, {
@@ -56,13 +52,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
56
52
  fullName: string;
57
53
  mail: string;
58
54
  eventId: string;
59
- status: "BOOKED" | "PAID" | "FREE";
60
- seat: number | null;
61
55
  dni: string;
56
+ seat: number | null;
62
57
  created_at: Date;
63
58
  updated_at: Date;
64
59
  scanned: boolean;
65
60
  scannedAt: Date | null;
61
+ ticketGroupId: string | null;
66
62
  }, {
67
63
  event: {
68
64
  location: string;
@@ -74,13 +70,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
74
70
  fullName: string;
75
71
  mail: string;
76
72
  eventId: string;
77
- status: "BOOKED" | "PAID" | "FREE";
78
- seat: number | null;
79
73
  dni: string;
74
+ seat: number | null;
80
75
  created_at: Date;
81
76
  updated_at: Date;
82
77
  scanned: boolean;
83
78
  scannedAt: Date | null;
79
+ ticketGroupId: string | null;
84
80
  }>, "many">;
85
81
  }, "strip", z.ZodTypeAny, {
86
82
  tickets: {
@@ -94,13 +90,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
94
90
  fullName: string;
95
91
  mail: string;
96
92
  eventId: string;
97
- status: "BOOKED" | "PAID" | "FREE";
98
- seat: number | null;
99
93
  dni: string;
94
+ seat: number | null;
100
95
  created_at: Date;
101
96
  updated_at: Date;
102
97
  scanned: boolean;
103
98
  scannedAt: Date | null;
99
+ ticketGroupId: string | null;
104
100
  }[];
105
101
  }, {
106
102
  tickets: {
@@ -114,13 +110,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
114
110
  fullName: string;
115
111
  mail: string;
116
112
  eventId: string;
117
- status: "BOOKED" | "PAID" | "FREE";
118
- seat: number | null;
119
113
  dni: string;
114
+ seat: number | null;
120
115
  created_at: Date;
121
116
  updated_at: Date;
122
117
  scanned: boolean;
123
118
  scannedAt: Date | null;
119
+ ticketGroupId: string | null;
124
120
  }[];
125
121
  }>;
126
122
  declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -132,17 +128,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
132
128
  STAFF: "STAFF";
133
129
  SPECTATOR: "SPECTATOR";
134
130
  }>;
135
- status: z.ZodNativeEnum<{
136
- BOOKED: "BOOKED";
137
- PAID: "PAID";
138
- FREE: "FREE";
139
- }>;
140
131
  fullName: z.ZodString;
141
132
  mail: z.ZodString;
142
133
  dni: z.ZodString;
143
134
  seat: z.ZodNullable<z.ZodNumber>;
144
135
  scanned: z.ZodBoolean;
145
136
  scannedAt: z.ZodNullable<z.ZodString>;
137
+ ticketGroupId: z.ZodNullable<z.ZodString>;
146
138
  created_at: z.ZodString;
147
139
  updated_at: z.ZodString;
148
140
  event: z.ZodObject<{
@@ -169,13 +161,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
169
161
  fullName: string;
170
162
  mail: string;
171
163
  eventId: string;
172
- status: "BOOKED" | "PAID" | "FREE";
173
- seat: number | null;
174
164
  dni: string;
165
+ seat: number | null;
175
166
  created_at: string;
176
167
  updated_at: string;
177
168
  scanned: boolean;
178
169
  scannedAt: string | null;
170
+ ticketGroupId: string | null;
179
171
  }, {
180
172
  event: {
181
173
  location: string;
@@ -187,13 +179,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
187
179
  fullName: string;
188
180
  mail: string;
189
181
  eventId: string;
190
- status: "BOOKED" | "PAID" | "FREE";
191
- seat: number | null;
192
182
  dni: string;
183
+ seat: number | null;
193
184
  created_at: string;
194
185
  updated_at: string;
195
186
  scanned: boolean;
196
187
  scannedAt: string | null;
188
+ ticketGroupId: string | null;
197
189
  }>, "many">;
198
190
  }, z.UnknownKeysParam, z.ZodTypeAny, {
199
191
  tickets: {
@@ -207,13 +199,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
207
199
  fullName: string;
208
200
  mail: string;
209
201
  eventId: string;
210
- status: "BOOKED" | "PAID" | "FREE";
211
- seat: number | null;
212
202
  dni: string;
203
+ seat: number | null;
213
204
  created_at: string;
214
205
  updated_at: string;
215
206
  scanned: boolean;
216
207
  scannedAt: string | null;
208
+ ticketGroupId: string | null;
217
209
  }[];
218
210
  }, {
219
211
  tickets: {
@@ -227,13 +219,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
227
219
  fullName: string;
228
220
  mail: string;
229
221
  eventId: string;
230
- status: "BOOKED" | "PAID" | "FREE";
231
- seat: number | null;
232
222
  dni: string;
223
+ seat: number | null;
233
224
  created_at: string;
234
225
  updated_at: string;
235
226
  scanned: boolean;
236
227
  scannedAt: string | null;
228
+ ticketGroupId: string | null;
237
229
  }[];
238
230
  }>>;
239
231
  export declare class FindAllTicketsResponseDto extends FindAllTicketsResponseDto_base {
@@ -8,17 +8,13 @@ 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
14
  seat: z.ZodNullable<z.ZodNumber>;
20
15
  scanned: z.ZodBoolean;
21
16
  scannedAt: z.ZodNullable<z.ZodDate>;
17
+ ticketGroupId: z.ZodNullable<z.ZodString>;
22
18
  created_at: z.ZodDate;
23
19
  updated_at: z.ZodDate;
24
20
  }, {
@@ -164,13 +160,13 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
164
160
  fullName: string;
165
161
  mail: string;
166
162
  eventId: string;
167
- status: "BOOKED" | "PAID" | "FREE";
168
- seat: number | null;
169
163
  dni: string;
164
+ seat: number | null;
170
165
  created_at: Date;
171
166
  updated_at: Date;
172
167
  scanned: boolean;
173
168
  scannedAt: Date | null;
169
+ ticketGroupId: string | null;
174
170
  }, {
175
171
  event: {
176
172
  location: string;
@@ -208,13 +204,13 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
208
204
  fullName: string;
209
205
  mail: string;
210
206
  eventId: string;
211
- status: "BOOKED" | "PAID" | "FREE";
212
- seat: number | null;
213
207
  dni: string;
208
+ seat: number | null;
214
209
  created_at: Date;
215
210
  updated_at: Date;
216
211
  scanned: boolean;
217
212
  scannedAt: Date | null;
213
+ ticketGroupId: string | null;
218
214
  }>, "many">;
219
215
  }, "strip", z.ZodTypeAny, {
220
216
  tickets: {
@@ -254,13 +250,13 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
254
250
  fullName: string;
255
251
  mail: string;
256
252
  eventId: string;
257
- status: "BOOKED" | "PAID" | "FREE";
258
- seat: number | null;
259
253
  dni: string;
254
+ seat: number | null;
260
255
  created_at: Date;
261
256
  updated_at: Date;
262
257
  scanned: boolean;
263
258
  scannedAt: Date | null;
259
+ ticketGroupId: string | null;
264
260
  }[];
265
261
  }, {
266
262
  tickets: {
@@ -300,13 +296,13 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
300
296
  fullName: string;
301
297
  mail: string;
302
298
  eventId: string;
303
- status: "BOOKED" | "PAID" | "FREE";
304
- seat: number | null;
305
299
  dni: string;
300
+ seat: number | null;
306
301
  created_at: Date;
307
302
  updated_at: Date;
308
303
  scanned: boolean;
309
304
  scannedAt: Date | null;
305
+ ticketGroupId: string | null;
310
306
  }[];
311
307
  }>;
312
308
  declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -318,17 +314,13 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
318
314
  STAFF: "STAFF";
319
315
  SPECTATOR: "SPECTATOR";
320
316
  }>;
321
- status: z.ZodNativeEnum<{
322
- BOOKED: "BOOKED";
323
- PAID: "PAID";
324
- FREE: "FREE";
325
- }>;
326
317
  fullName: z.ZodString;
327
318
  mail: z.ZodString;
328
319
  dni: z.ZodString;
329
320
  seat: z.ZodNullable<z.ZodNumber>;
330
321
  scanned: z.ZodBoolean;
331
322
  scannedAt: z.ZodNullable<z.ZodString>;
323
+ ticketGroupId: z.ZodNullable<z.ZodString>;
332
324
  created_at: z.ZodString;
333
325
  updated_at: z.ZodString;
334
326
  event: z.ZodObject<{
@@ -463,13 +455,13 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
463
455
  fullName: string;
464
456
  mail: string;
465
457
  eventId: string;
466
- status: "BOOKED" | "PAID" | "FREE";
467
- seat: number | null;
468
458
  dni: string;
459
+ seat: number | null;
469
460
  created_at: string;
470
461
  updated_at: string;
471
462
  scanned: boolean;
472
463
  scannedAt: string | null;
464
+ ticketGroupId: string | null;
473
465
  }, {
474
466
  event: {
475
467
  location: string;
@@ -507,13 +499,13 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
507
499
  fullName: string;
508
500
  mail: string;
509
501
  eventId: string;
510
- status: "BOOKED" | "PAID" | "FREE";
511
- seat: number | null;
512
502
  dni: string;
503
+ seat: number | null;
513
504
  created_at: string;
514
505
  updated_at: string;
515
506
  scanned: boolean;
516
507
  scannedAt: string | null;
508
+ ticketGroupId: string | null;
517
509
  }>, "many">;
518
510
  }, z.UnknownKeysParam, z.ZodTypeAny, {
519
511
  tickets: {
@@ -553,13 +545,13 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
553
545
  fullName: string;
554
546
  mail: string;
555
547
  eventId: string;
556
- status: "BOOKED" | "PAID" | "FREE";
557
- seat: number | null;
558
548
  dni: string;
549
+ seat: number | null;
559
550
  created_at: string;
560
551
  updated_at: string;
561
552
  scanned: boolean;
562
553
  scannedAt: string | null;
554
+ ticketGroupId: string | null;
563
555
  }[];
564
556
  }, {
565
557
  tickets: {
@@ -599,13 +591,13 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
599
591
  fullName: string;
600
592
  mail: string;
601
593
  eventId: string;
602
- status: "BOOKED" | "PAID" | "FREE";
603
- seat: number | null;
604
594
  dni: string;
595
+ seat: number | null;
605
596
  created_at: string;
606
597
  updated_at: string;
607
598
  scanned: boolean;
608
599
  scannedAt: string | null;
600
+ ticketGroupId: string | null;
609
601
  }[];
610
602
  }>>;
611
603
  export declare class FindByEventTicketResponseDto extends FindByEventTicketResponseDto_base {