expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.7 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.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 (83) 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 -78
  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 +31 -22
  13. package/dist/src/i18n/es.js +31 -22
  14. package/dist/src/i18n/es.js.map +1 -1
  15. package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
  16. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
  17. package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
  18. package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
  19. package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
  20. package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
  21. package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
  22. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
  23. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
  24. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
  25. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
  26. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
  27. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
  28. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
  29. package/dist/src/profile/dto/profile.dto.d.ts +2 -2
  30. package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
  31. package/dist/src/schema/profile.schema.d.ts +2 -2
  32. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  33. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  34. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  35. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  36. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  37. package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
  38. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
  39. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  40. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  41. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  42. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  43. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  44. package/dist/src/ticket/constants.d.ts +14 -12
  45. package/dist/src/ticket/constants.js +248 -355
  46. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +704 -0
  47. package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
  48. package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -56
  49. package/dist/src/ticket/dto/create-ticket.dto.js +1 -2
  50. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -30
  51. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -46
  52. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -58
  53. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -58
  54. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -58
  55. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -46
  56. package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -30
  57. package/dist/src/ticket/dto/ticket.dto.d.ts +10 -30
  58. package/dist/src/ticket/dto/ticket.dto.js +2 -5
  59. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -48
  60. package/dist/src/ticket/dto/update-ticket.dto.js +1 -1
  61. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +346 -0
  62. package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
  63. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
  64. package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
  65. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +8 -0
  66. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +11 -0
  67. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
  68. package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
  69. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
  70. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
  71. package/dist/src/ticket-group/exports.d.ts +5 -0
  72. package/dist/src/ticket-group/exports.js +22 -0
  73. package/dist/types/prisma-schema/edge.js +15 -7
  74. package/dist/types/prisma-schema/index-browser.js +12 -4
  75. package/dist/types/prisma-schema/index.d.ts +2216 -366
  76. package/dist/types/prisma-schema/index.js +15 -7
  77. package/dist/types/prisma-schema/package.json +1 -1
  78. package/dist/types/prisma-schema/schema.prisma +22 -7
  79. package/dist/types/prisma-schema/wasm.js +12 -4
  80. package/dist/types/schema.d.ts +308 -40
  81. package/package.json +6 -6
  82. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  83. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.CreateManyTicketWithPdfsResponseDto = exports.createManyTicketWithPdfsResponseSchema = exports.CreateManyTicketResponseDto = exports.createManyTicketResponseSchema = exports.GenerateMultiplePdfTicketsDto = exports.GenerateMultiplePdfTicketsResponseDto = exports.generateMultiplePdfTicketsSchema = exports.CreateManyTicketDto = exports.createManyTicketSchema = void 0;
7
+ const event_dto_1 = require("../../event/dto/event.dto");
8
+ const profile_schema_1 = require("../../schema/profile.schema");
9
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
10
+ const zod_1 = __importDefault(require("zod"));
11
+ const ticket_dto_1 = require("./ticket.dto");
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
+ fullName: true,
18
+ mail: true,
19
+ ticketGroupId: true,
20
+ })
21
+ .extend({
22
+ profileId: profile_schema_1.profileSchema.shape.id.optional(),
23
+ })),
24
+ });
25
+ class CreateManyTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketSchema) {
26
+ }
27
+ exports.CreateManyTicketDto = CreateManyTicketDto;
28
+ exports.generateMultiplePdfTicketsSchema = zod_1.default
29
+ .object({
30
+ ticketId: zod_1.default.string(),
31
+ pdf: zod_1.default.instanceof(Blob),
32
+ })
33
+ .array();
34
+ class GenerateMultiplePdfTicketsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.generateMultiplePdfTicketsSchema) {
35
+ }
36
+ exports.GenerateMultiplePdfTicketsResponseDto = GenerateMultiplePdfTicketsResponseDto;
37
+ class GenerateMultiplePdfTicketsDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.generateMultiplePdfTicketsSchema) {
38
+ }
39
+ exports.GenerateMultiplePdfTicketsDto = GenerateMultiplePdfTicketsDto;
40
+ exports.createManyTicketResponseSchema = ticket_dto_1.ticketSchema
41
+ .extend({
42
+ event: event_dto_1.eventSchema,
43
+ })
44
+ .array();
45
+ class CreateManyTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketResponseSchema) {
46
+ }
47
+ exports.CreateManyTicketResponseDto = CreateManyTicketResponseDto;
48
+ exports.createManyTicketWithPdfsResponseSchema = zod_1.default.object({
49
+ tickets: exports.createManyTicketResponseSchema,
50
+ pdfs: zod_1.default.array(zod_1.default.object({
51
+ ticketId: zod_1.default.string(),
52
+ pdfBase64: zod_1.default.string(),
53
+ })),
54
+ });
55
+ class CreateManyTicketWithPdfsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketWithPdfsResponseSchema) {
56
+ }
57
+ exports.CreateManyTicketWithPdfsResponseDto = CreateManyTicketWithPdfsResponseDto;
58
+ //# sourceMappingURL=create-many-ticket.dto.js.map
@@ -6,34 +6,26 @@ 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
- dni: import("zod").ZodString;
17
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
11
+ ticketGroupId: import("zod").ZodString;
18
12
  created_at: import("zod").ZodDate;
19
13
  updated_at: import("zod").ZodDate;
20
- }, "type" | "fullName" | "mail" | "eventId" | "status" | "dni">, {
14
+ }, "type" | "fullName" | "mail" | "eventId" | "ticketGroupId">, {
21
15
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
22
16
  }>, "strip", import("zod").ZodTypeAny, {
23
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
17
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
24
18
  fullName: string;
25
19
  mail: string;
26
20
  eventId: string;
27
- status: "BOOKED" | "PAID" | "FREE";
28
- dni: string;
21
+ ticketGroupId: string;
29
22
  profileId?: string | undefined;
30
23
  }, {
31
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
24
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
32
25
  fullName: string;
33
26
  mail: string;
34
27
  eventId: string;
35
- status: "BOOKED" | "PAID" | "FREE";
36
- dni: string;
28
+ ticketGroupId: string;
37
29
  profileId?: string | undefined;
38
30
  }>;
39
31
  declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -45,28 +37,21 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
45
37
  fullName: import("zod").ZodString;
46
38
  mail: import("zod").ZodString;
47
39
  eventId: import("zod").ZodString;
48
- status: import("zod").ZodNativeEnum<{
49
- BOOKED: "BOOKED";
50
- PAID: "PAID";
51
- FREE: "FREE";
52
- }>;
53
- dni: import("zod").ZodString;
40
+ ticketGroupId: import("zod").ZodString;
54
41
  profileId: import("zod").ZodOptional<import("zod").ZodString>;
55
42
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
56
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
43
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
57
44
  fullName: string;
58
45
  mail: string;
59
46
  eventId: string;
60
- status: "BOOKED" | "PAID" | "FREE";
61
- dni: string;
47
+ ticketGroupId: string;
62
48
  profileId?: string | undefined;
63
49
  }, {
64
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
50
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
65
51
  fullName: string;
66
52
  mail: string;
67
53
  eventId: string;
68
- status: "BOOKED" | "PAID" | "FREE";
69
- dni: string;
54
+ ticketGroupId: string;
70
55
  profileId?: string | undefined;
71
56
  }>>;
72
57
  export declare class CreateTicketDto extends CreateTicketDto_base {
@@ -79,15 +64,9 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
79
64
  STAFF: "STAFF";
80
65
  SPECTATOR: "SPECTATOR";
81
66
  }>;
82
- status: import("zod").ZodNativeEnum<{
83
- BOOKED: "BOOKED";
84
- PAID: "PAID";
85
- FREE: "FREE";
86
- }>;
87
67
  fullName: import("zod").ZodString;
88
68
  mail: import("zod").ZodString;
89
- dni: import("zod").ZodString;
90
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
69
+ ticketGroupId: import("zod").ZodString;
91
70
  created_at: import("zod").ZodDate;
92
71
  updated_at: import("zod").ZodDate;
93
72
  }, {
@@ -151,15 +130,13 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
151
130
  supraEventId: string | null;
152
131
  };
153
132
  id: string;
154
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
133
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
155
134
  fullName: string;
156
135
  mail: string;
157
136
  eventId: string;
158
- status: "BOOKED" | "PAID" | "FREE";
159
- seat: number | null;
160
- dni: string;
161
137
  created_at: Date;
162
138
  updated_at: Date;
139
+ ticketGroupId: string;
163
140
  }, {
164
141
  event: {
165
142
  location: string;
@@ -177,15 +154,13 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
177
154
  supraEventId: string | null;
178
155
  };
179
156
  id: string;
180
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
157
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
181
158
  fullName: string;
182
159
  mail: string;
183
160
  eventId: string;
184
- status: "BOOKED" | "PAID" | "FREE";
185
- seat: number | null;
186
- dni: string;
187
161
  created_at: Date;
188
162
  updated_at: Date;
163
+ ticketGroupId: string;
189
164
  }>;
190
165
  declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
191
166
  id: import("zod").ZodString;
@@ -195,15 +170,9 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
195
170
  STAFF: "STAFF";
196
171
  SPECTATOR: "SPECTATOR";
197
172
  }>;
198
- status: import("zod").ZodNativeEnum<{
199
- BOOKED: "BOOKED";
200
- PAID: "PAID";
201
- FREE: "FREE";
202
- }>;
203
173
  fullName: import("zod").ZodString;
204
174
  mail: import("zod").ZodString;
205
- dni: import("zod").ZodString;
206
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
175
+ ticketGroupId: import("zod").ZodString;
207
176
  created_at: import("zod").ZodString;
208
177
  updated_at: import("zod").ZodString;
209
178
  event: import("zod").ZodObject<{
@@ -266,15 +235,13 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
266
235
  supraEventId: string | null;
267
236
  };
268
237
  id: string;
269
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
238
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
270
239
  fullName: string;
271
240
  mail: string;
272
241
  eventId: string;
273
- status: "BOOKED" | "PAID" | "FREE";
274
- seat: number | null;
275
- dni: string;
276
242
  created_at: string;
277
243
  updated_at: string;
244
+ ticketGroupId: string;
278
245
  }, {
279
246
  event: {
280
247
  location: string;
@@ -292,15 +259,13 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
292
259
  supraEventId: string | null;
293
260
  };
294
261
  id: string;
295
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
262
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
296
263
  fullName: string;
297
264
  mail: string;
298
265
  eventId: string;
299
- status: "BOOKED" | "PAID" | "FREE";
300
- seat: number | null;
301
- dni: string;
302
266
  created_at: string;
303
267
  updated_at: string;
268
+ ticketGroupId: string;
304
269
  }>>;
305
270
  export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
306
271
  }
@@ -9,10 +9,9 @@ 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
- dni: true,
14
+ ticketGroupId: true,
16
15
  })
17
16
  .extend({
18
17
  profileId: profile_schema_1.profileSchema.shape.id.optional(),
@@ -6,39 +6,29 @@ 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
- dni: import("zod").ZodString;
17
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
11
+ ticketGroupId: import("zod").ZodString;
18
12
  created_at: import("zod").ZodDate;
19
13
  updated_at: import("zod").ZodDate;
20
14
  }, "strip", import("zod").ZodTypeAny, {
21
15
  id: string;
22
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
16
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
23
17
  fullName: string;
24
18
  mail: string;
25
19
  eventId: string;
26
- status: "BOOKED" | "PAID" | "FREE";
27
- seat: number | null;
28
- dni: string;
29
20
  created_at: Date;
30
21
  updated_at: Date;
22
+ ticketGroupId: string;
31
23
  }, {
32
24
  id: string;
33
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
25
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
34
26
  fullName: string;
35
27
  mail: string;
36
28
  eventId: string;
37
- status: "BOOKED" | "PAID" | "FREE";
38
- seat: number | null;
39
- dni: string;
40
29
  created_at: Date;
41
30
  updated_at: Date;
31
+ ticketGroupId: string;
42
32
  }>;
43
33
  declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
44
34
  id: import("zod").ZodString;
@@ -48,39 +38,29 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
48
38
  STAFF: "STAFF";
49
39
  SPECTATOR: "SPECTATOR";
50
40
  }>;
51
- status: import("zod").ZodNativeEnum<{
52
- BOOKED: "BOOKED";
53
- PAID: "PAID";
54
- FREE: "FREE";
55
- }>;
56
41
  fullName: import("zod").ZodString;
57
42
  mail: import("zod").ZodString;
58
- dni: import("zod").ZodString;
59
- seat: import("zod").ZodNullable<import("zod").ZodNumber>;
43
+ ticketGroupId: import("zod").ZodString;
60
44
  created_at: import("zod").ZodString;
61
45
  updated_at: import("zod").ZodString;
62
46
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
63
47
  id: string;
64
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
48
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
65
49
  fullName: string;
66
50
  mail: string;
67
51
  eventId: string;
68
- status: "BOOKED" | "PAID" | "FREE";
69
- seat: number | null;
70
- dni: string;
71
52
  created_at: string;
72
53
  updated_at: string;
54
+ ticketGroupId: string;
73
55
  }, {
74
56
  id: string;
75
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
57
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
76
58
  fullName: string;
77
59
  mail: string;
78
60
  eventId: string;
79
- status: "BOOKED" | "PAID" | "FREE";
80
- seat: number | null;
81
- dni: string;
82
61
  created_at: string;
83
62
  updated_at: string;
63
+ ticketGroupId: string;
84
64
  }>>;
85
65
  export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
86
66
  }
@@ -8,15 +8,9 @@ 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
- dni: z.ZodString;
19
- seat: z.ZodNullable<z.ZodNumber>;
13
+ ticketGroupId: z.ZodString;
20
14
  created_at: z.ZodDate;
21
15
  updated_at: z.ZodDate;
22
16
  }, {
@@ -50,15 +44,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
50
44
  date: Date;
51
45
  };
52
46
  id: string;
53
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
47
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
54
48
  fullName: string;
55
49
  mail: string;
56
50
  eventId: string;
57
- status: "BOOKED" | "PAID" | "FREE";
58
- seat: number | null;
59
- dni: string;
60
51
  created_at: Date;
61
52
  updated_at: Date;
53
+ ticketGroupId: string;
62
54
  }, {
63
55
  event: {
64
56
  location: string;
@@ -66,15 +58,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
66
58
  date: Date;
67
59
  };
68
60
  id: string;
69
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
61
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
70
62
  fullName: string;
71
63
  mail: string;
72
64
  eventId: string;
73
- status: "BOOKED" | "PAID" | "FREE";
74
- seat: number | null;
75
- dni: string;
76
65
  created_at: Date;
77
66
  updated_at: Date;
67
+ ticketGroupId: string;
78
68
  }>, "many">;
79
69
  }, "strip", z.ZodTypeAny, {
80
70
  tickets: {
@@ -84,15 +74,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
84
74
  date: Date;
85
75
  };
86
76
  id: string;
87
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
77
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
88
78
  fullName: string;
89
79
  mail: string;
90
80
  eventId: string;
91
- status: "BOOKED" | "PAID" | "FREE";
92
- seat: number | null;
93
- dni: string;
94
81
  created_at: Date;
95
82
  updated_at: Date;
83
+ ticketGroupId: string;
96
84
  }[];
97
85
  }, {
98
86
  tickets: {
@@ -102,15 +90,13 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
102
90
  date: Date;
103
91
  };
104
92
  id: string;
105
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
93
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
106
94
  fullName: string;
107
95
  mail: string;
108
96
  eventId: string;
109
- status: "BOOKED" | "PAID" | "FREE";
110
- seat: number | null;
111
- dni: string;
112
97
  created_at: Date;
113
98
  updated_at: Date;
99
+ ticketGroupId: string;
114
100
  }[];
115
101
  }>;
116
102
  declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -122,15 +108,9 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
122
108
  STAFF: "STAFF";
123
109
  SPECTATOR: "SPECTATOR";
124
110
  }>;
125
- status: z.ZodNativeEnum<{
126
- BOOKED: "BOOKED";
127
- PAID: "PAID";
128
- FREE: "FREE";
129
- }>;
130
111
  fullName: z.ZodString;
131
112
  mail: z.ZodString;
132
- dni: z.ZodString;
133
- seat: z.ZodNullable<z.ZodNumber>;
113
+ ticketGroupId: z.ZodString;
134
114
  created_at: z.ZodString;
135
115
  updated_at: z.ZodString;
136
116
  event: z.ZodObject<{
@@ -153,15 +133,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
153
133
  date: string;
154
134
  };
155
135
  id: string;
156
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
136
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
157
137
  fullName: string;
158
138
  mail: string;
159
139
  eventId: string;
160
- status: "BOOKED" | "PAID" | "FREE";
161
- seat: number | null;
162
- dni: string;
163
140
  created_at: string;
164
141
  updated_at: string;
142
+ ticketGroupId: string;
165
143
  }, {
166
144
  event: {
167
145
  location: string;
@@ -169,15 +147,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
169
147
  date: string;
170
148
  };
171
149
  id: string;
172
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
150
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
173
151
  fullName: string;
174
152
  mail: string;
175
153
  eventId: string;
176
- status: "BOOKED" | "PAID" | "FREE";
177
- seat: number | null;
178
- dni: string;
179
154
  created_at: string;
180
155
  updated_at: string;
156
+ ticketGroupId: string;
181
157
  }>, "many">;
182
158
  }, z.UnknownKeysParam, z.ZodTypeAny, {
183
159
  tickets: {
@@ -187,15 +163,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
187
163
  date: string;
188
164
  };
189
165
  id: string;
190
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
166
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
191
167
  fullName: string;
192
168
  mail: string;
193
169
  eventId: string;
194
- status: "BOOKED" | "PAID" | "FREE";
195
- seat: number | null;
196
- dni: string;
197
170
  created_at: string;
198
171
  updated_at: string;
172
+ ticketGroupId: string;
199
173
  }[];
200
174
  }, {
201
175
  tickets: {
@@ -205,15 +179,13 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
205
179
  date: string;
206
180
  };
207
181
  id: string;
208
- type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
182
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
209
183
  fullName: string;
210
184
  mail: string;
211
185
  eventId: string;
212
- status: "BOOKED" | "PAID" | "FREE";
213
- seat: number | null;
214
- dni: string;
215
186
  created_at: string;
216
187
  updated_at: string;
188
+ ticketGroupId: string;
217
189
  }[];
218
190
  }>>;
219
191
  export declare class FindAllTicketsResponseDto extends FindAllTicketsResponseDto_base {