expo-backend-types 0.52.0-EXPO-343-Quique-Wolff.1 → 0.52.0-EXPO-343-Quique-Wolff.3

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 (73) hide show
  1. package/dist/src/account/dto/get-global-filter.dto.d.ts +10 -8
  2. package/dist/src/account/dto/get-me.dto.d.ts +20 -16
  3. package/dist/src/account/dto/update-global-filter.dto.d.ts +10 -8
  4. package/dist/src/event/dto/create-event.dto.d.ts +21 -4
  5. package/dist/src/event/dto/create-event.dto.js +1 -1
  6. package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
  7. package/dist/src/event/dto/event-tickets.dto.js +18 -8
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +23 -3
  9. package/dist/src/event/dto/get-all-event.dto.d.ts +284 -240
  10. package/dist/src/event/dto/get-all-event.dto.js +3 -3
  11. package/dist/src/event/dto/get-all-statistics.dto.d.ts +373 -0
  12. package/dist/src/event/dto/get-all-statistics.dto.js +40 -0
  13. package/dist/src/event/dto/get-by-id-event.dto.d.ts +159 -129
  14. package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
  15. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +303 -0
  16. package/dist/src/event/dto/get-statistics-by-id-event.dto.js +40 -0
  17. package/dist/src/event/dto/update-event.dto.d.ts +87 -47
  18. package/dist/src/event/dto/update-event.dto.js +2 -4
  19. package/dist/src/exports.d.ts +1 -0
  20. package/dist/src/exports.js +1 -0
  21. package/dist/src/i18n/es.d.ts +65 -1
  22. package/dist/src/i18n/es.js +67 -1
  23. package/dist/src/i18n/es.js.map +1 -1
  24. package/dist/src/production/dto/create-production.dto.d.ts +41 -0
  25. package/dist/src/production/dto/create-production.dto.js +18 -0
  26. package/dist/src/production/dto/create-role.dto.d.ts +86 -0
  27. package/dist/src/production/dto/create-role.dto.js +16 -0
  28. package/dist/src/production/dto/delete-production.dto.d.ts +41 -0
  29. package/dist/src/production/dto/delete-production.dto.js +10 -0
  30. package/dist/src/production/dto/get-all-production.dto.d.ts +451 -0
  31. package/dist/src/production/dto/get-all-production.dto.js +21 -0
  32. package/dist/src/production/dto/production.dto.d.ts +20 -0
  33. package/dist/src/production/dto/production.dto.js +21 -0
  34. package/dist/src/production/dto/update-production.dto.d.ts +63 -0
  35. package/dist/src/production/dto/update-production.dto.js +19 -0
  36. package/dist/src/production/exports.d.ts +6 -0
  37. package/dist/src/production/exports.js +23 -0
  38. package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.d.ts +80 -0
  39. package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.js +16 -0
  40. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +563 -0
  41. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.js +21 -0
  42. package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +27 -0
  43. package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +22 -0
  44. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +390 -0
  45. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js +15 -0
  46. package/dist/src/production-affiliation-request/exports.d.ts +4 -0
  47. package/dist/src/production-affiliation-request/exports.js +21 -0
  48. package/dist/src/profile/dto/find-all-profile.dto.d.ts +14 -12
  49. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +24 -20
  50. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -8
  51. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +14 -12
  52. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +14 -12
  53. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +14 -12
  54. package/dist/src/tag/dto/create-tag.dto.d.ts +41 -9
  55. package/dist/src/tag/dto/create-tag.dto.js +6 -5
  56. package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
  57. package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
  58. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
  59. package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
  60. package/dist/src/tag/dto/tag.dto.d.ts +6 -4
  61. package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
  62. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
  63. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
  64. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
  65. package/dist/types/prisma-schema/edge.js +32 -5
  66. package/dist/types/prisma-schema/index-browser.js +29 -2
  67. package/dist/types/prisma-schema/index.d.ts +11960 -6876
  68. package/dist/types/prisma-schema/index.js +32 -5
  69. package/dist/types/prisma-schema/package.json +1 -1
  70. package/dist/types/prisma-schema/schema.prisma +56 -4
  71. package/dist/types/prisma-schema/wasm.js +29 -2
  72. package/dist/types/schema.d.ts +785 -79
  73. package/package.json +2 -1
@@ -14,7 +14,7 @@ const zod_1 = __importDefault(require("zod"));
14
14
  const eventWithAllThings = event_dto_1.eventSchema.merge(zod_1.default.object({
15
15
  supraEvent: event_dto_1.eventSchema.nullable(),
16
16
  subEvents: zod_1.default.array(event_dto_1.eventSchema),
17
- tags: zod_1.default.array(tag_dto_1.tagSchema
17
+ profileTags: zod_1.default.array(tag_dto_1.tagSchema
18
18
  .pick({
19
19
  id: true,
20
20
  name: true,
@@ -28,12 +28,12 @@ const eventWithAllThings = event_dto_1.eventSchema.merge(zod_1.default.object({
28
28
  isExclusive: true,
29
29
  }),
30
30
  })),
31
- eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema.pick({
31
+ eventTickets: zod_1.default.array((0, event_tickets_dto_1.addEventTicketRefinements)(event_tickets_dto_1.baseEventTicketsSchema.pick({
32
32
  id: true,
33
33
  amount: true,
34
34
  type: true,
35
35
  price: true,
36
- })),
36
+ }))),
37
37
  }));
38
38
  exports.getAllEventsResponseSchema = zod_1.default.object({
39
39
  folders: zod_1.default.array(event_folder_dto_1.eventFolderSchema.merge(zod_1.default.object({
@@ -0,0 +1,373 @@
1
+ import z from 'zod';
2
+ export declare const getAllStatisticsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
3
+ id: z.ZodString;
4
+ name: z.ZodString;
5
+ date: z.ZodDate;
6
+ startingDate: z.ZodDate;
7
+ endingDate: z.ZodDate;
8
+ location: z.ZodString;
9
+ mainPictureUrl: z.ZodNullable<z.ZodString>;
10
+ bannerUrl: z.ZodNullable<z.ZodString>;
11
+ description: z.ZodNullable<z.ZodString>;
12
+ folderId: z.ZodNullable<z.ZodString>;
13
+ tagAssistedId: z.ZodString;
14
+ tagConfirmedId: z.ZodString;
15
+ active: z.ZodBoolean;
16
+ supraEventId: z.ZodNullable<z.ZodString>;
17
+ created_at: z.ZodDate;
18
+ updated_at: z.ZodDate;
19
+ }, {
20
+ tickets: z.ZodArray<z.ZodObject<{
21
+ id: z.ZodString;
22
+ eventId: z.ZodString;
23
+ type: z.ZodNativeEnum<{
24
+ PARTICIPANT: "PARTICIPANT";
25
+ STAFF: "STAFF";
26
+ SPECTATOR: "SPECTATOR";
27
+ }>;
28
+ fullName: z.ZodString;
29
+ mail: z.ZodString;
30
+ dni: z.ZodString;
31
+ seat: z.ZodNullable<z.ZodNumber>;
32
+ scanned: z.ZodBoolean;
33
+ scannedAt: z.ZodNullable<z.ZodDate>;
34
+ ticketGroupId: z.ZodNullable<z.ZodString>;
35
+ created_at: z.ZodDate;
36
+ updated_at: z.ZodDate;
37
+ }, "strip", z.ZodTypeAny, {
38
+ id: string;
39
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
40
+ fullName: string;
41
+ mail: string;
42
+ eventId: string;
43
+ dni: string;
44
+ seat: number | null;
45
+ created_at: Date;
46
+ updated_at: Date;
47
+ scanned: boolean;
48
+ scannedAt: Date | null;
49
+ ticketGroupId: string | null;
50
+ }, {
51
+ id: string;
52
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
53
+ fullName: string;
54
+ mail: string;
55
+ eventId: string;
56
+ dni: string;
57
+ seat: number | null;
58
+ created_at: Date;
59
+ updated_at: Date;
60
+ scanned: boolean;
61
+ scannedAt: Date | null;
62
+ ticketGroupId: string | null;
63
+ }>, "many">;
64
+ eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<{
65
+ id: z.ZodString;
66
+ amount: z.ZodNullable<z.ZodNumber>;
67
+ type: z.ZodNativeEnum<{
68
+ PARTICIPANT: "PARTICIPANT";
69
+ STAFF: "STAFF";
70
+ SPECTATOR: "SPECTATOR";
71
+ }>;
72
+ price: z.ZodNullable<z.ZodNumber>;
73
+ }, "strip", z.ZodTypeAny, {
74
+ id: string;
75
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
76
+ amount: number | null;
77
+ price: number | null;
78
+ }, {
79
+ id: string;
80
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
81
+ amount: number | null;
82
+ price: number | null;
83
+ }>, {
84
+ id: string;
85
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
86
+ amount: number | null;
87
+ price: number | null;
88
+ }, {
89
+ id: string;
90
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
91
+ amount: number | null;
92
+ price: number | null;
93
+ }>, "many">;
94
+ ticketGroups: z.ZodArray<z.ZodObject<{
95
+ id: z.ZodString;
96
+ amountTickets: z.ZodNumber;
97
+ status: z.ZodNativeEnum<{
98
+ BOOKED: "BOOKED";
99
+ PAID: "PAID";
100
+ FREE: "FREE";
101
+ }>;
102
+ eventId: z.ZodString;
103
+ created_at: z.ZodDate;
104
+ updated_at: z.ZodDate;
105
+ }, "strip", z.ZodTypeAny, {
106
+ id: string;
107
+ eventId: string;
108
+ status: "BOOKED" | "PAID" | "FREE";
109
+ amountTickets: number;
110
+ created_at: Date;
111
+ updated_at: Date;
112
+ }, {
113
+ id: string;
114
+ eventId: string;
115
+ status: "BOOKED" | "PAID" | "FREE";
116
+ amountTickets: number;
117
+ created_at: Date;
118
+ updated_at: Date;
119
+ }>, "many">;
120
+ }>, "strip", z.ZodTypeAny, {
121
+ description: string | null;
122
+ location: string;
123
+ id: string;
124
+ name: string;
125
+ date: Date;
126
+ startingDate: Date;
127
+ endingDate: Date;
128
+ created_at: Date;
129
+ updated_at: Date;
130
+ active: boolean;
131
+ tickets: {
132
+ id: string;
133
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
134
+ fullName: string;
135
+ mail: string;
136
+ eventId: string;
137
+ dni: string;
138
+ seat: number | null;
139
+ created_at: Date;
140
+ updated_at: Date;
141
+ scanned: boolean;
142
+ scannedAt: Date | null;
143
+ ticketGroupId: string | null;
144
+ }[];
145
+ mainPictureUrl: string | null;
146
+ bannerUrl: string | null;
147
+ folderId: string | null;
148
+ tagAssistedId: string;
149
+ tagConfirmedId: string;
150
+ supraEventId: string | null;
151
+ eventTickets: {
152
+ id: string;
153
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
154
+ amount: number | null;
155
+ price: number | null;
156
+ }[];
157
+ ticketGroups: {
158
+ id: string;
159
+ eventId: string;
160
+ status: "BOOKED" | "PAID" | "FREE";
161
+ amountTickets: number;
162
+ created_at: Date;
163
+ updated_at: Date;
164
+ }[];
165
+ }, {
166
+ description: string | null;
167
+ location: string;
168
+ id: string;
169
+ name: string;
170
+ date: Date;
171
+ startingDate: Date;
172
+ endingDate: Date;
173
+ created_at: Date;
174
+ updated_at: Date;
175
+ active: boolean;
176
+ tickets: {
177
+ id: string;
178
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
179
+ fullName: string;
180
+ mail: string;
181
+ eventId: string;
182
+ dni: string;
183
+ seat: number | null;
184
+ created_at: Date;
185
+ updated_at: Date;
186
+ scanned: boolean;
187
+ scannedAt: Date | null;
188
+ ticketGroupId: string | null;
189
+ }[];
190
+ mainPictureUrl: string | null;
191
+ bannerUrl: string | null;
192
+ folderId: string | null;
193
+ tagAssistedId: string;
194
+ tagConfirmedId: string;
195
+ supraEventId: string | null;
196
+ eventTickets: {
197
+ id: string;
198
+ type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
199
+ amount: number | null;
200
+ price: number | null;
201
+ }[];
202
+ ticketGroups: {
203
+ id: string;
204
+ eventId: string;
205
+ status: "BOOKED" | "PAID" | "FREE";
206
+ amountTickets: number;
207
+ created_at: Date;
208
+ updated_at: Date;
209
+ }[];
210
+ }>, "many">;
211
+ export declare const getAllStatisticsResponseSchema: z.ZodObject<{
212
+ totalIncome: z.ZodNumber;
213
+ emailByPurchasedTickets: z.ZodArray<z.ZodObject<{
214
+ mail: z.ZodString;
215
+ ticketsPurchased: z.ZodNumber;
216
+ }, "strip", z.ZodTypeAny, {
217
+ mail: string;
218
+ ticketsPurchased: number;
219
+ }, {
220
+ mail: string;
221
+ ticketsPurchased: number;
222
+ }>, "many">;
223
+ attendancePercent: z.ZodNumber;
224
+ maxTicketPerTypeAll: z.ZodRecord<z.ZodNativeEnum<{
225
+ PARTICIPANT: "PARTICIPANT";
226
+ STAFF: "STAFF";
227
+ SPECTATOR: "SPECTATOR";
228
+ }>, z.ZodNumber>;
229
+ emmitedticketPerTypeAll: z.ZodRecord<z.ZodNativeEnum<{
230
+ PARTICIPANT: "PARTICIPANT";
231
+ STAFF: "STAFF";
232
+ SPECTATOR: "SPECTATOR";
233
+ }>, z.ZodNumber>;
234
+ eventDataIndividual: z.ZodArray<z.ZodObject<{
235
+ id: z.ZodString;
236
+ name: z.ZodString;
237
+ price: z.ZodNullable<z.ZodNumber>;
238
+ purchasePercent: z.ZodNumber;
239
+ spectatorEventTicket: z.ZodNullable<z.ZodNumber>;
240
+ spectatorTicketsSold: z.ZodNumber;
241
+ }, "strip", z.ZodTypeAny, {
242
+ id: string;
243
+ name: string;
244
+ price: number | null;
245
+ purchasePercent: number;
246
+ spectatorEventTicket: number | null;
247
+ spectatorTicketsSold: number;
248
+ }, {
249
+ id: string;
250
+ name: string;
251
+ price: number | null;
252
+ purchasePercent: number;
253
+ spectatorEventTicket: number | null;
254
+ spectatorTicketsSold: number;
255
+ }>, "many">;
256
+ }, "strip", z.ZodTypeAny, {
257
+ totalIncome: number;
258
+ emailByPurchasedTickets: {
259
+ mail: string;
260
+ ticketsPurchased: number;
261
+ }[];
262
+ attendancePercent: number;
263
+ maxTicketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
264
+ emmitedticketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
265
+ eventDataIndividual: {
266
+ id: string;
267
+ name: string;
268
+ price: number | null;
269
+ purchasePercent: number;
270
+ spectatorEventTicket: number | null;
271
+ spectatorTicketsSold: number;
272
+ }[];
273
+ }, {
274
+ totalIncome: number;
275
+ emailByPurchasedTickets: {
276
+ mail: string;
277
+ ticketsPurchased: number;
278
+ }[];
279
+ attendancePercent: number;
280
+ maxTicketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
281
+ emmitedticketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
282
+ eventDataIndividual: {
283
+ id: string;
284
+ name: string;
285
+ price: number | null;
286
+ purchasePercent: number;
287
+ spectatorEventTicket: number | null;
288
+ spectatorTicketsSold: number;
289
+ }[];
290
+ }>;
291
+ declare const GetAllStatisticsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
292
+ totalIncome: z.ZodNumber;
293
+ emailByPurchasedTickets: z.ZodArray<z.ZodObject<{
294
+ mail: z.ZodString;
295
+ ticketsPurchased: z.ZodNumber;
296
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
297
+ mail: string;
298
+ ticketsPurchased: number;
299
+ }, {
300
+ mail: string;
301
+ ticketsPurchased: number;
302
+ }>, "many">;
303
+ attendancePercent: z.ZodNumber;
304
+ maxTicketPerTypeAll: z.ZodRecord<z.ZodNativeEnum<{
305
+ PARTICIPANT: "PARTICIPANT";
306
+ STAFF: "STAFF";
307
+ SPECTATOR: "SPECTATOR";
308
+ }>, z.ZodNumber>;
309
+ emmitedticketPerTypeAll: z.ZodRecord<z.ZodNativeEnum<{
310
+ PARTICIPANT: "PARTICIPANT";
311
+ STAFF: "STAFF";
312
+ SPECTATOR: "SPECTATOR";
313
+ }>, z.ZodNumber>;
314
+ eventDataIndividual: z.ZodArray<z.ZodObject<{
315
+ id: z.ZodString;
316
+ name: z.ZodString;
317
+ price: z.ZodNullable<z.ZodNumber>;
318
+ purchasePercent: z.ZodNumber;
319
+ spectatorEventTicket: z.ZodNullable<z.ZodNumber>;
320
+ spectatorTicketsSold: z.ZodNumber;
321
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
322
+ id: string;
323
+ name: string;
324
+ price: number | null;
325
+ purchasePercent: number;
326
+ spectatorEventTicket: number | null;
327
+ spectatorTicketsSold: number;
328
+ }, {
329
+ id: string;
330
+ name: string;
331
+ price: number | null;
332
+ purchasePercent: number;
333
+ spectatorEventTicket: number | null;
334
+ spectatorTicketsSold: number;
335
+ }>, "many">;
336
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
337
+ totalIncome: number;
338
+ emailByPurchasedTickets: {
339
+ mail: string;
340
+ ticketsPurchased: number;
341
+ }[];
342
+ attendancePercent: number;
343
+ maxTicketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
344
+ emmitedticketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
345
+ eventDataIndividual: {
346
+ id: string;
347
+ name: string;
348
+ price: number | null;
349
+ purchasePercent: number;
350
+ spectatorEventTicket: number | null;
351
+ spectatorTicketsSold: number;
352
+ }[];
353
+ }, {
354
+ totalIncome: number;
355
+ emailByPurchasedTickets: {
356
+ mail: string;
357
+ ticketsPurchased: number;
358
+ }[];
359
+ attendancePercent: number;
360
+ maxTicketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
361
+ emmitedticketPerTypeAll: Partial<Record<"STAFF" | "SPECTATOR" | "PARTICIPANT", number>>;
362
+ eventDataIndividual: {
363
+ id: string;
364
+ name: string;
365
+ price: number | null;
366
+ purchasePercent: number;
367
+ spectatorEventTicket: number | null;
368
+ spectatorTicketsSold: number;
369
+ }[];
370
+ }>>;
371
+ export declare class GetAllStatisticsResponseDto extends GetAllStatisticsResponseDto_base {
372
+ }
373
+ export {};
@@ -0,0 +1,40 @@
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.GetAllStatisticsResponseDto = exports.getAllStatisticsResponseSchema = exports.getAllStatisticsSchema = void 0;
7
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
+ const ticket_group_dto_1 = require("../../ticket-group/dto/ticket-group.dto");
9
+ const ticket_dto_1 = require("../../ticket/dto/ticket.dto");
10
+ const zod_1 = __importDefault(require("zod"));
11
+ const prisma_schema_1 = require("../../../types/prisma-schema/index.js");
12
+ const event_tickets_dto_1 = require("./event-tickets.dto");
13
+ const event_dto_1 = require("./event.dto");
14
+ exports.getAllStatisticsSchema = zod_1.default.array(event_dto_1.eventSchema.merge(zod_1.default.object({
15
+ tickets: zod_1.default.array(ticket_dto_1.ticketSchema),
16
+ eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema),
17
+ ticketGroups: zod_1.default.array(ticket_group_dto_1.ticketGroupSchema),
18
+ })));
19
+ exports.getAllStatisticsResponseSchema = zod_1.default.object({
20
+ totalIncome: zod_1.default.number(),
21
+ emailByPurchasedTickets: zod_1.default.array(zod_1.default.object({
22
+ mail: zod_1.default.string().email(),
23
+ ticketsPurchased: zod_1.default.number().int(),
24
+ })),
25
+ attendancePercent: zod_1.default.number(),
26
+ maxTicketPerTypeAll: zod_1.default.record(zod_1.default.nativeEnum(prisma_schema_1.TicketType), zod_1.default.number()),
27
+ emmitedticketPerTypeAll: zod_1.default.record(zod_1.default.nativeEnum(prisma_schema_1.TicketType), zod_1.default.number()),
28
+ eventDataIndividual: zod_1.default.array(zod_1.default.object({
29
+ id: event_dto_1.eventSchema.shape.id,
30
+ name: zod_1.default.string(),
31
+ price: zod_1.default.number().nullable(),
32
+ purchasePercent: zod_1.default.number(),
33
+ spectatorEventTicket: zod_1.default.number().nullable(),
34
+ spectatorTicketsSold: zod_1.default.number(),
35
+ })),
36
+ });
37
+ class GetAllStatisticsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getAllStatisticsResponseSchema) {
38
+ }
39
+ exports.GetAllStatisticsResponseDto = GetAllStatisticsResponseDto;
40
+ //# sourceMappingURL=get-all-statistics.dto.js.map