mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-23 15:44:26 +02:00
fix(backend): add response schema for notes/show-partial-bulk endpoint (#16093)
This commit is contained in:
@@ -25919,7 +25919,15 @@ export type operations = {
|
||||
/** @description OK (with results) */
|
||||
200: {
|
||||
content: {
|
||||
'application/json': Record<string, never>[];
|
||||
'application/json': {
|
||||
id: string;
|
||||
reactions: {
|
||||
[key: string]: number;
|
||||
};
|
||||
reactionEmojis: {
|
||||
[key: string]: string;
|
||||
};
|
||||
}[];
|
||||
};
|
||||
};
|
||||
/** @description Client error */
|
||||
|
||||
Reference in New Issue
Block a user