expo-backend-types 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.11 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.12
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.
@@ -178,7 +178,16 @@ export declare const getStatisticsByIdResponseSchema: z.ZodObject<{
|
|
178
178
|
attendancePercent: z.ZodNumber;
|
179
179
|
attendancePerHour: z.ZodArray<z.ZodNullable<z.ZodDate>, "many">;
|
180
180
|
avgAmountPerTicketGroup: z.ZodNullable<z.ZodNumber>;
|
181
|
-
heatMapDates: z.ZodArray<z.
|
181
|
+
heatMapDates: z.ZodArray<z.ZodObject<{
|
182
|
+
date: z.ZodString;
|
183
|
+
count: z.ZodNumber;
|
184
|
+
}, "strip", z.ZodTypeAny, {
|
185
|
+
date: string;
|
186
|
+
count: number;
|
187
|
+
}, {
|
188
|
+
date: string;
|
189
|
+
count: number;
|
190
|
+
}>, "many">;
|
182
191
|
}, "strip", z.ZodTypeAny, {
|
183
192
|
totalIncome: number;
|
184
193
|
attendancePercent: number;
|
@@ -192,7 +201,10 @@ export declare const getStatisticsByIdResponseSchema: z.ZodObject<{
|
|
192
201
|
notScanned: number;
|
193
202
|
attendancePerHour: (Date | null)[];
|
194
203
|
avgAmountPerTicketGroup: number | null;
|
195
|
-
heatMapDates:
|
204
|
+
heatMapDates: {
|
205
|
+
date: string;
|
206
|
+
count: number;
|
207
|
+
}[];
|
196
208
|
}, {
|
197
209
|
totalIncome: number;
|
198
210
|
attendancePercent: number;
|
@@ -206,7 +218,10 @@ export declare const getStatisticsByIdResponseSchema: z.ZodObject<{
|
|
206
218
|
notScanned: number;
|
207
219
|
attendancePerHour: (Date | null)[];
|
208
220
|
avgAmountPerTicketGroup: number | null;
|
209
|
-
heatMapDates:
|
221
|
+
heatMapDates: {
|
222
|
+
date: string;
|
223
|
+
count: number;
|
224
|
+
}[];
|
210
225
|
}>;
|
211
226
|
declare const GetStatisticsByIdResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
212
227
|
maxTickets: z.ZodNumber;
|
@@ -229,7 +244,16 @@ declare const GetStatisticsByIdResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
229
244
|
attendancePercent: z.ZodNumber;
|
230
245
|
attendancePerHour: z.ZodArray<z.ZodNullable<z.ZodString>, "many">;
|
231
246
|
avgAmountPerTicketGroup: z.ZodNullable<z.ZodNumber>;
|
232
|
-
heatMapDates: z.ZodArray<z.
|
247
|
+
heatMapDates: z.ZodArray<z.ZodObject<{
|
248
|
+
date: z.ZodString;
|
249
|
+
count: z.ZodNumber;
|
250
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
251
|
+
date: string;
|
252
|
+
count: number;
|
253
|
+
}, {
|
254
|
+
date: string;
|
255
|
+
count: number;
|
256
|
+
}>, "many">;
|
233
257
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
234
258
|
totalIncome: number;
|
235
259
|
attendancePercent: number;
|
@@ -243,7 +267,10 @@ declare const GetStatisticsByIdResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
243
267
|
notScanned: number;
|
244
268
|
attendancePerHour: (string | null)[];
|
245
269
|
avgAmountPerTicketGroup: number | null;
|
246
|
-
heatMapDates:
|
270
|
+
heatMapDates: {
|
271
|
+
date: string;
|
272
|
+
count: number;
|
273
|
+
}[];
|
247
274
|
}, {
|
248
275
|
totalIncome: number;
|
249
276
|
attendancePercent: number;
|
@@ -257,7 +284,10 @@ declare const GetStatisticsByIdResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
257
284
|
notScanned: number;
|
258
285
|
attendancePerHour: (string | null)[];
|
259
286
|
avgAmountPerTicketGroup: number | null;
|
260
|
-
heatMapDates:
|
287
|
+
heatMapDates: {
|
288
|
+
date: string;
|
289
|
+
count: number;
|
290
|
+
}[];
|
261
291
|
}>>;
|
262
292
|
export declare class GetStatisticsByIdResponseDto extends GetStatisticsByIdResponseDto_base {
|
263
293
|
}
|
@@ -27,7 +27,12 @@ exports.getStatisticsByIdResponseSchema = zod_1.default.object({
|
|
27
27
|
attendancePercent: zod_1.default.number(),
|
28
28
|
attendancePerHour: ticket_dto_1.ticketSchema.shape.scannedAt.array(),
|
29
29
|
avgAmountPerTicketGroup: zod_1.default.number().nullable(),
|
30
|
-
heatMapDates: zod_1.default
|
30
|
+
heatMapDates: zod_1.default
|
31
|
+
.object({
|
32
|
+
date: zod_1.default.string().date(),
|
33
|
+
count: zod_1.default.number(),
|
34
|
+
})
|
35
|
+
.array(),
|
31
36
|
});
|
32
37
|
class GetStatisticsByIdResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getStatisticsByIdResponseSchema) {
|
33
38
|
}
|
package/dist/types/schema.d.ts
CHANGED
@@ -2351,7 +2351,10 @@ export interface components {
|
|
2351
2351
|
attendancePercent: number;
|
2352
2352
|
attendancePerHour: (string | null)[];
|
2353
2353
|
avgAmountPerTicketGroup: number | null;
|
2354
|
-
heatMapDates:
|
2354
|
+
heatMapDates: {
|
2355
|
+
date: string;
|
2356
|
+
count: number;
|
2357
|
+
}[];
|
2355
2358
|
};
|
2356
2359
|
UpdateEventDto: {
|
2357
2360
|
name: string;
|