16 lines
608 B
TypeScript
16 lines
608 B
TypeScript
import * as v from 'valibot';
|
|
|
|
import { datetimeSchema } from './utils';
|
|
|
|
/** @see {@link https://docs.joinmastodon.org/entities/RelationshipSeveranceEvent/} */
|
|
const relationshipSeveranceEventSchema = v.object({
|
|
id: v.string(),
|
|
type: v.picklist(['domain_block', 'user_domain_block', 'account_suspension']),
|
|
purged: v.string(),
|
|
relationships_count: v.fallback(v.optional(v.number()), undefined),
|
|
created_at: datetimeSchema,
|
|
});
|
|
|
|
type RelationshipSeveranceEvent = v.InferOutput<typeof relationshipSeveranceEventSchema>;
|
|
|
|
export { relationshipSeveranceEventSchema, type RelationshipSeveranceEvent };
|