bigbuffet-rw/packages/pl-api/lib/entities/role.ts
marcin mikołajczak b29b488d7e pl-api: moar blind search and replace
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-10-15 00:07:22 +02:00

18 lines
414 B
TypeScript

import * as v from 'valibot';
const hexSchema = v.pipe(v.string(), v.regex(/^#[a-f0-9]{6}$/i));
const roleSchema = v.object({
id: v.fallback(v.string(), ''),
name: v.fallback(v.string(), ''),
color: v.fallback(hexSchema, ''),
permissions: v.fallback(v.string(), ''),
highlighted: v.fallback(v.boolean(), true),
});
type Role = v.InferOutput<typeof roleSchema>;
export {
roleSchema,
type Role,
};