fix: stats API の型に reactionCount が定義されていない問題を修正 (#17634)

* fix: stats API の型に reactionCount が定義されていない問題を修正

* Update Changelog
This commit is contained in:
かっこかり
2026-06-28 01:49:00 +09:00
committed by GitHub
parent 1220f05903
commit 6193c35f9f
3 changed files with 10 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@
- Enhance: センシティブメディアの判定を外部サービス ([sensitive-detector](https://github.com/misskey-dev/sensitive-detector)) に分離し、`nsfwjs` / `@tensorflow/tfjs(-node)` の同梱と NSFW 判定モデルを廃止 (#16804)
- Enhance: Node.js 22.23.0以降、24.17.0以降、26.4.0以降をサポートするように
- Enhance: Docker Image の Node.js を 26.4.0 に、Debian を trixie (v13) に更新
- Fix: `/stats` API のレスポンス型が正しくない問題を修正
## 2026.6.0
@@ -35,6 +35,14 @@ export const meta = {
type: 'number',
optional: false, nullable: false,
},
reactionsCount: {
type: 'number',
optional: false, nullable: false,
},
//originalReactionsCount: {
// type: 'number',
// optional: false, nullable: false,
//},
instances: {
type: 'number',
optional: false, nullable: false,
+1
View File
@@ -34287,6 +34287,7 @@ export interface operations {
originalNotesCount: number;
usersCount: number;
originalUsersCount: number;
reactionsCount: number;
instances: number;
driveUsageLocal: number;
driveUsageRemote: number;