25 lines
641 B
TypeScript
25 lines
641 B
TypeScript
import * as v from 'valibot';
|
|
|
|
import { accountSchema } from './account';
|
|
import { groupSchema } from './group';
|
|
import { statusSchema } from './status';
|
|
import { tagSchema } from './tag';
|
|
import { filteredArray } from './utils';
|
|
|
|
/**
|
|
* @category Schemas
|
|
* @see {@link https://docs.joinmastodon.org/entities/Search}
|
|
*/
|
|
const searchSchema = v.object({
|
|
accounts: filteredArray(accountSchema),
|
|
statuses: filteredArray(statusSchema),
|
|
hashtags: filteredArray(tagSchema),
|
|
groups: filteredArray(groupSchema),
|
|
});
|
|
|
|
/**
|
|
* @category Entity types
|
|
*/
|
|
type Search = v.InferOutput<typeof searchSchema>;
|
|
|
|
export { searchSchema, type Search };
|