bigbuffet-rw/packages/pl-api/lib/entities/list.ts

20 lines
466 B
TypeScript
Raw Normal View History

import * as v from 'valibot';
/**
* @category Schemas
* @see {@link https://docs.joinmastodon.org/entities/List/}
*/
const listSchema = v.object({
id: v.pipe(v.unknown(), v.transform(String)),
title: v.string(),
replies_policy: v.fallback(v.optional(v.string()), undefined),
exclusive: v.fallback(v.optional(v.boolean()), undefined),
});
/**
* @category Entity types
*/
type List = v.InferOutput<typeof listSchema>;
export { listSchema, type List };