bigbuffet-rw/packages/pl-api/lib/entities/admin/measure.ts
marcin mikołajczak a6bc160caa pl-api: Do some blind search and replace
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-10-14 00:25:30 +02:00

21 lines
603 B
TypeScript

import * as v from 'valibot';
/** @see {@link https://docs.joinmastodon.org/entities/Admin_Measure/} */
const adminMeasureSchema = v.object({
key: v.string(),
unit: v.fallback(v.nullable(v.string()), null),
total: z.coerce.number(),
human_value: v.fallback(v.optional(v.string()), undefined),
previous_total: z.coerce.string().optional().catch(undefined),
data: z.array(v.object({
date: z.string().datetime({ offset: true }),
value: z.coerce.string(),
})),
});
type AdminMeasure = v.InferOutput<typeof adminMeasureSchema>;
export {
adminMeasureSchema,
type AdminMeasure,
};