fix api doc?

This commit is contained in:
ThatOneCalculator 2023-05-19 23:14:59 -07:00
parent 973b1837a6
commit 9e366dc563
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 17 additions and 0 deletions

View file

@ -31,6 +31,7 @@ import { packedQueueCountSchema } from "@/models/schema/queue.js";
import { packedGalleryPostSchema } from "@/models/schema/gallery-post.js";
import { packedEmojiSchema } from "@/models/schema/emoji.js";
import { packedNoteEdit } from "@/models/schema/note-edit.js";
import { packedMetaExperimentalFeatures } from "@/models/schema/meta-experimental-features.js";
export const refs = {
UserLite: packedUserLiteSchema,
@ -65,6 +66,7 @@ export const refs = {
FederationInstance: packedFederationInstanceSchema,
GalleryPost: packedGalleryPostSchema,
Emoji: packedEmojiSchema,
MetaExperimentalFeatures: packedMetaExperimentalFeatures,
};
export type Packed<x extends keyof typeof refs> = SchemaType<typeof refs[x]>;

View file

@ -0,0 +1,11 @@
export const packedMetaExperimentalFeatures = {
type: "object",
properties: {
postEditing: {
type: "boolean",
optional: false,
nullable: false,
example: "false",
},
},
} as const;

View file

@ -492,3 +492,7 @@ export type UserSorting =
| "+updatedAt"
| "-updatedAt";
export type OriginType = "combined" | "local" | "remote";
export type MetaExperimentalFeatures = {
postEditing: boolean;
};