526b3ae0e4
* feat: ユーザを除外できるアンテナ * feat(backend/api): ユーザを除外できるアンテナの作成・更新 * feat(frontend): ユーザを除外できるアンテナの作成・更新 * docs(changelog): add アンテナで一部のユーザを除外したすべてのノートから受信できるようになりました * fix: d.ts生成時にexport defaultを生成するように * fix CHANGELOG.md --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
94 lines
1.8 KiB
TypeScript
94 lines
1.8 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* 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,
|
|
},
|
|
notify: {
|
|
type: 'boolean',
|
|
optional: false, nullable: 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;
|