We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61258fc commit b3de1c0Copy full SHA for b3de1c0
packages/misskey-js/src/autogen/types.ts
@@ -3993,8 +3993,8 @@ export type components = {
3993
url?: string;
3994
reactionAndUserPairCache?: string[];
3995
clippedCount?: number;
3996
- myReaction?: string | null; // 互換性のために残す
3997
- myReactions?: string[];
+ myReaction?: string | null;
+ myReactions?: string[] | null;
3998
};
3999
NoteReaction: {
4000
/**
@@ -21212,6 +21212,7 @@ export type operations = {
21212
'application/json': {
21213
/** Format: misskey:id */
21214
noteId: string;
21215
+ reaction?: string;
21216
21217
21218
0 commit comments