fix(backend): type(schema) of reactionAcceptance was wrong (#14317)

This commit is contained in:
Sayamame-beans
2024-07-30 12:32:03 +09:00
committed by GitHub
parent 1a79f0dc2a
commit b44313fe3c
2 changed files with 2 additions and 2 deletions

View File

@@ -4090,7 +4090,7 @@ export type components = {
}) | null;
localOnly?: boolean;
/** @enum {string|null} */
reactionAcceptance: 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote';
reactionAcceptance: 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null;
reactionEmojis: {
[key: string]: string;
};