mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-05 14:13:16 +09:00

* enhance(antenna): Botの投稿を除外できるように (MisskeyIO#545)
(cherry picked from commit a95ce067c6
)
* Update Changelog
* remove translations
* spdx
---------
Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com>
104 lines
2.0 KiB
TypeScript
104 lines
2.0 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,
|
|
},
|
|
notify: {
|
|
type: 'boolean',
|
|
optional: false, nullable: 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;
|