34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
|
import { z } from 'zod';
|
||
|
|
||
|
import { Resolve } from '../utils/types';
|
||
|
|
||
|
import { coerceObject } from './utils';
|
||
|
|
||
|
const interactionPolicyEntrySchema = z.enum(['public', 'followers', 'following', 'mutuals', 'mentioned', 'author', 'me']);
|
||
|
|
||
|
const interactionPolicyRuleSchema = coerceObject({
|
||
|
always: z.array(interactionPolicyEntrySchema).default(['public']),
|
||
|
with_approval: z.array(interactionPolicyEntrySchema).default([]),
|
||
|
});
|
||
|
|
||
|
/** @see {@link https://docs.gotosocial.org/en/latest/api/swagger/} */
|
||
|
const interactionPolicySchema = coerceObject({
|
||
|
can_favourite: interactionPolicyRuleSchema,
|
||
|
can_reblog: interactionPolicyRuleSchema,
|
||
|
can_reply: interactionPolicyRuleSchema,
|
||
|
});
|
||
|
|
||
|
type InteractionPolicy = Resolve<z.infer<typeof interactionPolicySchema>>;
|
||
|
|
||
|
const interactionPoliciesSchema = coerceObject({
|
||
|
public: interactionPolicySchema,
|
||
|
unlisted: interactionPolicySchema,
|
||
|
private: interactionPolicySchema,
|
||
|
direct: interactionPolicySchema,
|
||
|
});
|
||
|
|
||
|
type InteractionPolicies = Resolve<z.infer<typeof interactionPoliciesSchema>>;
|
||
|
|
||
|
export { interactionPolicySchema, interactionPoliciesSchema, type InteractionPolicy, type InteractionPolicies };
|
||
|
|