user schemaにあるany型を厳格にした (#10319)

使用されている箇所から、これらのプロパティの型はstring型に限定出来そうということが分かった。
又、OpenAPIv3の仕様上はanyは使えないため修正した。

related: https://github.com/misskey-dev/misskey/issues/10308

* Update CHANGELOG
This commit is contained in:
Cj-bc 2023-03-13 23:13:51 +09:00 committed by GitHub
parent 7887ccc993
commit 850addc619
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -28,6 +28,7 @@ You should also include the user name that made the change.
- Playのソースコード上限文字数を2倍に拡張 - Playのソースコード上限文字数を2倍に拡張
- 付箋ウィジェットの高さを設定可能に - 付箋ウィジェットの高さを設定可能に
- 配送先サーバーが410 Goneで応答してきた場合は自動で配送停止をするように - 配送先サーバーが410 Goneで応答してきた場合は自動で配送停止をするように
- avatarBlurHash/bannerBlurHashの型をstringに限定
### Bugfixes ### Bugfixes
- プロフィールで設定した情報が削除できない問題を修正 - プロフィールで設定した情報が削除できない問題を修正

View File

@ -29,7 +29,7 @@ export const packedUserLiteSchema = {
nullable: true, optional: false, nullable: true, optional: false,
}, },
avatarBlurhash: { avatarBlurhash: {
type: 'any', type: 'string',
nullable: true, optional: false, nullable: true, optional: false,
}, },
isAdmin: { isAdmin: {
@ -93,7 +93,7 @@ export const packedUserDetailedNotMeOnlySchema = {
nullable: true, optional: false, nullable: true, optional: false,
}, },
bannerBlurhash: { bannerBlurhash: {
type: 'any', type: 'string',
nullable: true, optional: false, nullable: true, optional: false,
}, },
isLocked: { isLocked: {