mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-09 14:46:37 +09:00

* feat(deck-ui): implement note notification * chore: remove notify in antenna * docs(changelog): 新着ノートをサウンドで通知する機能をdeck UIに追加 * fix: type error in test * lint: key order * fix: remove notify column * test: remove test for notify * chore: make sound selectable * fix: add license header * fix: add license header again * Unnecessary await Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> * ファイルを選択してください -> ファイルが選択されていません * fix: i18n忘れ * fix: i18n忘れ * pleaseSelectFile > fileNotSelected --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
100 lines
1.9 KiB
TypeScript
100 lines
1.9 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const packedAntennaSchema = {
|
|
type: 'object',
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
createdAt: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'date-time',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
keywords: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
},
|
|
excludeKeywords: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
},
|
|
src: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
enum: ['home', 'all', 'users', 'list', 'users_blacklist'],
|
|
},
|
|
userListId: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
format: 'id',
|
|
},
|
|
users: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
caseSensitive: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
default: false,
|
|
},
|
|
localOnly: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
default: false,
|
|
},
|
|
excludeBots: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
default: false,
|
|
},
|
|
withReplies: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
default: false,
|
|
},
|
|
withFile: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
isActive: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
hasUnreadNote: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
default: false,
|
|
},
|
|
},
|
|
} as const;
|