pleroma/packages/pl-api/lib/entities/rule.ts

18 lines
424 B
TypeScript
Raw Normal View History

import * as v from 'valibot';
const baseRuleSchema = v.object({
id: v.string(),
text: v.fallback(v.string(), ''),
hint: v.fallback(v.string(), ''),
});
/** @see {@link https://docs.joinmastodon.org/entities/Rule/} */
const ruleSchema = z.preprocess((data: any) => ({
...data,
hint: data.hint || data.subtext,
}), baseRuleSchema);
type Rule = v.InferOutput<typeof ruleSchema>;
export { ruleSchema, type Rule };