parent
7a004d8850
commit
b4983ef56f
|
@ -31,7 +31,6 @@ 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,
|
||||
|
@ -66,7 +65,6 @@ export const refs = {
|
|||
FederationInstance: packedFederationInstanceSchema,
|
||||
GalleryPost: packedGalleryPostSchema,
|
||||
Emoji: packedEmojiSchema,
|
||||
MetaExperimentalFeatures: packedMetaExperimentalFeatures,
|
||||
};
|
||||
|
||||
export type Packed<x extends keyof typeof refs> = SchemaType<typeof refs[x]>;
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
export const packedMetaExperimentalFeatures = {
|
||||
type: "object",
|
||||
properties: {
|
||||
postEditing: {
|
||||
type: "boolean",
|
||||
optional: false,
|
||||
nullable: false,
|
||||
example: "false",
|
||||
},
|
||||
},
|
||||
} as const;
|
|
@ -492,7 +492,3 @@ export type UserSorting =
|
|||
| "+updatedAt"
|
||||
| "-updatedAt";
|
||||
export type OriginType = "combined" | "local" | "remote";
|
||||
|
||||
export type MetaExperimentalFeatures = {
|
||||
postEditing: boolean;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue