bigbuffet-rw/packages/pl-api/lib/entities/admin/rule.ts
marcin mikołajczak bc65755862 pl-api: Update docs
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-11-29 16:01:54 +01:00

19 lines
497 B
TypeScript

import * as v from 'valibot';
/**
* @category Admin schemas
* @see {@link https://docs.pleroma.social/backend/development/API/admin_api/#get-apiv1pleromaadminrules}
*/
const adminRuleSchema = v.object({
id: v.string(),
text: v.fallback(v.string(), ''),
hint: v.fallback(v.string(), ''),
priority: v.fallback(v.nullable(v.number()), null),
});
/**
* @category Admin entity types
*/
type AdminRule = v.InferOutput<typeof adminRuleSchema>;
export { adminRuleSchema, type AdminRule };