Merge remote-tracking branch 'origin/main' into feature/302

このコミットが含まれているのは:
2026-06-06 13:11:36 +09:00
コミット 62857adb87
66個のファイルの変更2624行の追加807行の削除
+15 -2
ファイルの表示
@@ -52,6 +52,18 @@ export type FetchTagsParams = {
limit: number
order: FetchTagsOrder }
export type FetchNicoTagsParams = {
name: string
linkedTag: string
linkStatus: 'all' | 'linked' | 'unlinked'
page: number
limit: number
order: FetchNicoTagsOrder }
export type FetchNicoTagsOrder = `${ FetchNicoTagsOrderField }:${ 'asc' | 'desc' }`
export type FetchNicoTagsOrderField = 'name' | 'created_at' | 'updated_at'
export type Material = {
id: number
tag: Tag
@@ -83,8 +95,9 @@ export type MenuVisibleItem = {
subMenu: SubMenuItem[] }
export type NicoTag = Tag & {
category: 'nico'
linkedTags: Tag[] }
category: 'nico'
linkedTags: Tag[]
recentPostTagCreatedAt: string | null }
export type NiconicoMetadata = {
currentTime: number