5efd01ba70
* feat : サーバーサイレンスを追加 * Update CHANGELOG.md * Update CHANGELOG.md * Update locale * Update instance-info.vue * update misskey-js.api.md * lint fix * migration fix * 既存のものを使うように * fix * 色々直した * Update packages/frontend/src/pages/admin/instance-block.vue * Update packages/frontend/src/pages/admin/instance-block.vue * Update packages/frontend/src/components/MkInstanceCardMini.vue * Update packages/backend/src/core/entities/InstanceEntityService.ts * Update packages/backend/src/core/entities/InstanceEntityService.ts * Update packages/backend/src/core/entities/InstanceEntityService.ts * Update packages/backend/src/core/UserFollowingService.ts * Update packages/backend/src/core/UserFollowingService.ts * fix: サイレンスされてるサーバーからの投稿は全部ホームにする * fix: undefinedでfalseを返すようにした --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
108 lines
2.1 KiB
TypeScript
108 lines
2.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const packedFederationInstanceSchema = {
|
|
type: 'object',
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
firstRetrievedAt: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'date-time',
|
|
},
|
|
host: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
example: 'misskey.example.com',
|
|
},
|
|
usersCount: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
notesCount: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
followingCount: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
followersCount: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
isNotResponding: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
isSuspended: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
isBlocked: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
softwareName: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
example: 'misskey',
|
|
},
|
|
softwareVersion: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
openRegistrations: {
|
|
type: 'boolean',
|
|
optional: false, nullable: true,
|
|
example: true,
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
maintainerName: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
maintainerEmail: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
iconUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
format: 'url',
|
|
},
|
|
faviconUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
format: 'url',
|
|
},
|
|
themeColor: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
isSilenced: {
|
|
type: "boolean",
|
|
optional: false,
|
|
nullable: false,
|
|
},
|
|
infoUpdatedAt: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
format: 'date-time',
|
|
},
|
|
},
|
|
} as const;
|