32 lines
977 B
TypeScript
32 lines
977 B
TypeScript
import * as v from 'valibot';
|
|
|
|
import { accountSchema } from './account';
|
|
import { customEmojiSchema } from './custom-emoji';
|
|
import { mediaAttachmentSchema } from './media-attachment';
|
|
import { datetimeSchema, filteredArray } from './utils';
|
|
|
|
/**
|
|
* @category Schemas
|
|
* @see {@link https://docs.joinmastodon.org/entities/StatusEdit/}
|
|
*/
|
|
const statusEditSchema = v.object({
|
|
content: v.fallback(v.string(), ''),
|
|
spoiler_text: v.fallback(v.string(), ''),
|
|
sensitive: v.pipe(v.unknown(), v.transform(Boolean)),
|
|
created_at: v.fallback(datetimeSchema, new Date().toISOString()),
|
|
account: accountSchema,
|
|
poll: v.fallback(v.nullable(v.object({
|
|
options: v.array(v.object({
|
|
title: v.string(),
|
|
})),
|
|
})), null),
|
|
media_attachments: filteredArray(mediaAttachmentSchema),
|
|
emojis: filteredArray(customEmojiSchema),
|
|
});
|
|
|
|
/**
|
|
* @category Entity types
|
|
*/
|
|
type StatusEdit = v.InferOutput<typeof statusEditSchema>;
|
|
|
|
export { statusEditSchema, type StatusEdit };
|