* add: safeFloatParserを追加 * fix: 欠けていた型を追加 * refactor: pageBlockTypesをjson-schemaに移植 * refactor: components/global内の型エラーが出ている箇所を修正 * lint: fix null check style * refactor: fix type error * refactor: fix some type errors * fix: 翻訳が抜けていた箇所を修正 * refactor: getJsonSchemaで正しいスキーマが返されるように修正 * fix: MkChartの型エラーとbytesオプションが機能していない問題を修正 * fix(misskey-js): `drive`->`folderUpdated`のpayloadの型が間違っていたのを修正 * refactor: fix some type errors * change: Captcha読み込み中の文言をLoadingに変更 * refactor(backend/misskey-js): MainEventの型を改善 * refactor: chartjs-plugin-gradientが二重でpluginに登録されていたのを修正 * update: misskey-js.api.md * refactor: fix some type errors * fix: backendのtypecheckが落ちていたのを修正 * update: misskey-js.api.md * add: json-schemaのnoteにpollの型定義を追加 * refactor: noteのjson-schemaの型を改善 * refactor: MkPoll * refactor: fix some type errors * change: UserLiteにisLockedを持たせるように * fix: notificationスキーマにroleが含まれていないのを修正 * Revert "change: UserLiteにisLockedを持たせるように" This reverts commit 1bb0c8e7a9b19a4e9f21bf7381712b98f27672a5. * fix: フォロー通知から鍵垢へのフォローを行うと処理中のまま止まってしまう問題を修正 * refactor: noteスキーマのvisibilityにenumを追加 * change: deepCloneのCloneableTypeにundefinedを追加 * refactor: fix some type errors * refactor: `allowEmpty: false`を使用していた箇所を`minLength: 1`に置き換え * enhance: API 'retension' のresponseの型を追加 * fix: Chart関連のtooltipが正しい位置に表示されない問題を修正 * refactor: fix some type errors * fix: 型情報が不足していたのを修正 * enhance: announcementスキーマにenumを追加 * enhance: ロールポリシーの型定義をRoleServiceからjson-schemaに移植 * refactor: policiesを`ref: RolePolicies`に統一 * fix: API `meta` のレスポンスの型にpoliciesが含まれていないのを修正 * refactor: fix some type errors * fix: backendのlintが落ちているのを修正 * fix: MkFoldableSectionの開閉時のanimationが適用されていない問題を修正 * fix: backendのtypecheckが落ちているのを修正 * update: run build-misskey-js-with-types * fix: MkDialogのmount時に文字数制限の判定が行われない問題を修正 * update: CHANGELOG.md * refactor: MkUserSelectDialogの型を改善 * fix: deepCloneでundefinedはcloneしないように (#9207) * change: frontendのcloneをbackend側にも反映 * update: CHANGELOG.md * fix: RoleServiceからPackを通して型RolePoliciesに依存させないように * Update packages/frontend/src/scripts/get-note-summary.ts * revert RoleService.ts changes * change: optional chaining -> non-null assertion * remove: unused import * fix: propsで渡されたuserがUserLiteの場合に意図しない動作になってしまうのを修正 * change: fix null check style * refactor: fix type error * change: fix null check style * Update packages/frontend/src/components/MkDrive.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * refactor: css moduleでglobalを使わないように * refactor: roleのiconUrlは必ず存在するものとして扱うように * enhance: MenuButtonのactiveにcomputedを受け付けられるように * Update packages/frontend/src/components/MkNotePreview.vue * Update MkWindow.vue * refactor: notification.noteは必ず存在するものとして扱うように * Update packages/frontend/src/components/MkNotification.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * fix: MkSignupDialogでdoneのemit時にresを含んでいなかったのを修正 * Update packages/frontend/src/scripts/clone.ts Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * refactor: 不要な返り値の型を削除 * refactor: 不要なnullチェックを削除 * update: misskey-js-autogen * update: clone.ts * refactor * Update MkNotification.vue * Update MkNotification.vue * ✌️ * Update MkNotification.vue * Update MkNotification.vue * Update MkNotification.vue * Update MkNotifications.vue * Update MkUserSetupDialog.Profile.vue * Update MkUserCardMini.vue * ✌️ * Update MkMenu.vue --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
697 lines
13 KiB
TypeScript
697 lines
13 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
const notificationRecieveConfig = {
|
|
type: 'object',
|
|
nullable: false, optional: true,
|
|
properties: {
|
|
type: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
enum: ['all', 'following', 'follower', 'mutualFollow', 'list', 'never'],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const packedUserLiteSchema = {
|
|
type: 'object',
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
example: '藍',
|
|
},
|
|
username: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
example: 'ai',
|
|
},
|
|
host: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
example: 'misskey.example.com',
|
|
description: 'The local host is represented with `null`.',
|
|
},
|
|
avatarUrl: {
|
|
type: 'string',
|
|
format: 'url',
|
|
nullable: true, optional: false,
|
|
},
|
|
avatarBlurhash: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
avatarDecorations: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'id',
|
|
},
|
|
angle: {
|
|
type: 'number',
|
|
nullable: false, optional: true,
|
|
},
|
|
flipH: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
url: {
|
|
type: 'string',
|
|
format: 'url',
|
|
nullable: false, optional: false,
|
|
},
|
|
offsetX: {
|
|
type: 'number',
|
|
nullable: false, optional: true,
|
|
},
|
|
offsetY: {
|
|
type: 'number',
|
|
nullable: false, optional: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
isBot: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
isCat: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
instance: {
|
|
type: 'object',
|
|
nullable: false, optional: true,
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
softwareName: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
softwareVersion: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
iconUrl: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
faviconUrl: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
themeColor: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
},
|
|
},
|
|
emojis: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
},
|
|
onlineStatus: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
enum: ['unknown', 'online', 'active', 'offline'],
|
|
},
|
|
badgeRoles: {
|
|
type: 'array',
|
|
nullable: false, optional: true,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
iconUrl: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
displayOrder: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const packedUserDetailedNotMeOnlySchema = {
|
|
type: 'object',
|
|
properties: {
|
|
url: {
|
|
type: 'string',
|
|
format: 'url',
|
|
nullable: true, optional: false,
|
|
},
|
|
uri: {
|
|
type: 'string',
|
|
format: 'uri',
|
|
nullable: true, optional: false,
|
|
},
|
|
movedTo: {
|
|
type: 'string',
|
|
format: 'uri',
|
|
nullable: true, optional: false,
|
|
},
|
|
alsoKnownAs: {
|
|
type: 'array',
|
|
nullable: true, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
format: 'id',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
createdAt: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'date-time',
|
|
},
|
|
updatedAt: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
format: 'date-time',
|
|
},
|
|
lastFetchedAt: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
format: 'date-time',
|
|
},
|
|
bannerUrl: {
|
|
type: 'string',
|
|
format: 'url',
|
|
nullable: true, optional: false,
|
|
},
|
|
bannerBlurhash: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
isLocked: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
isSilenced: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
isSuspended: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
example: false,
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
example: 'Hi masters, I am Ai!',
|
|
},
|
|
location: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
birthday: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
example: '2018-03-12',
|
|
},
|
|
lang: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
example: 'ja-JP',
|
|
},
|
|
fields: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
maxItems: 16,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
value: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
verifiedLinks: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'url',
|
|
},
|
|
},
|
|
followersCount: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
followingCount: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
notesCount: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
pinnedNoteIds: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'id',
|
|
},
|
|
},
|
|
pinnedNotes: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
ref: 'Note',
|
|
},
|
|
},
|
|
pinnedPageId: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
pinnedPage: {
|
|
type: 'object',
|
|
nullable: true, optional: false,
|
|
ref: 'Page',
|
|
},
|
|
publicReactions: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
followingVisibility: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
enum: ['public', 'followers', 'private'],
|
|
},
|
|
followersVisibility: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
enum: ['public', 'followers', 'private'],
|
|
},
|
|
twoFactorEnabled: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
default: false,
|
|
},
|
|
usePasswordLessLogin: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
default: false,
|
|
},
|
|
securityKeys: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
default: false,
|
|
},
|
|
roles: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
ref: 'RoleLite',
|
|
},
|
|
},
|
|
memo: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
},
|
|
moderationNote: {
|
|
type: 'string',
|
|
nullable: false, optional: true,
|
|
},
|
|
//#region relations
|
|
isFollowing: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
isFollowed: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
hasPendingFollowRequestFromYou: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
hasPendingFollowRequestToYou: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
isBlocking: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
isBlocked: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
isMuted: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
isRenoteMuted: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
notify: {
|
|
type: 'string',
|
|
nullable: false, optional: true,
|
|
enum: ['normal', 'none'],
|
|
},
|
|
withReplies: {
|
|
type: 'boolean',
|
|
nullable: false, optional: true,
|
|
},
|
|
//#endregion
|
|
},
|
|
} as const;
|
|
|
|
export const packedMeDetailedOnlySchema = {
|
|
type: 'object',
|
|
properties: {
|
|
avatarId: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
format: 'id',
|
|
},
|
|
bannerId: {
|
|
type: 'string',
|
|
nullable: true, optional: false,
|
|
format: 'id',
|
|
},
|
|
isModerator: {
|
|
type: 'boolean',
|
|
nullable: true, optional: false,
|
|
},
|
|
isAdmin: {
|
|
type: 'boolean',
|
|
nullable: true, optional: false,
|
|
},
|
|
injectFeaturedNote: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
receiveAnnouncementEmail: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
alwaysMarkNsfw: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
autoSensitive: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
carefulBot: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
autoAcceptFollowed: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
noCrawle: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
preventAiLearning: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
isExplorable: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
isDeleted: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
twoFactorBackupCodesStock: {
|
|
type: 'string',
|
|
enum: ['full', 'partial', 'none'],
|
|
nullable: false, optional: false,
|
|
},
|
|
hideOnlineStatus: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
hasUnreadSpecifiedNotes: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
hasUnreadMentions: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
hasUnreadAnnouncement: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
unreadAnnouncements: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
ref: 'Announcement',
|
|
},
|
|
},
|
|
hasUnreadAntenna: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
hasUnreadChannel: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
hasUnreadNotification: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
hasPendingReceivedFollowRequest: {
|
|
type: 'boolean',
|
|
nullable: false, optional: false,
|
|
},
|
|
unreadNotificationsCount: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
mutedWords: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
},
|
|
hardMutedWords: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
},
|
|
mutedInstances: {
|
|
type: 'array',
|
|
nullable: true, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
notificationRecieveConfig: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
properties: {
|
|
app: notificationRecieveConfig,
|
|
quote: notificationRecieveConfig,
|
|
reply: notificationRecieveConfig,
|
|
follow: notificationRecieveConfig,
|
|
renote: notificationRecieveConfig,
|
|
mention: notificationRecieveConfig,
|
|
reaction: notificationRecieveConfig,
|
|
pollEnded: notificationRecieveConfig,
|
|
receiveFollowRequest: notificationRecieveConfig,
|
|
},
|
|
},
|
|
emailNotificationTypes: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
achievements: {
|
|
type: 'array',
|
|
nullable: false, optional: false,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
unlockedAt: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
loggedInDays: {
|
|
type: 'number',
|
|
nullable: false, optional: false,
|
|
},
|
|
policies: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
ref: 'RolePolicies',
|
|
},
|
|
//#region secrets
|
|
email: {
|
|
type: 'string',
|
|
nullable: true, optional: true,
|
|
},
|
|
emailVerified: {
|
|
type: 'boolean',
|
|
nullable: true, optional: true,
|
|
},
|
|
securityKeysList: {
|
|
type: 'array',
|
|
nullable: false, optional: true,
|
|
items: {
|
|
type: 'object',
|
|
nullable: false, optional: false,
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
},
|
|
lastUsed: {
|
|
type: 'string',
|
|
nullable: false, optional: false,
|
|
format: 'date-time',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
//#endregion
|
|
},
|
|
} as const;
|
|
|
|
export const packedUserDetailedNotMeSchema = {
|
|
type: 'object',
|
|
allOf: [
|
|
{
|
|
type: 'object',
|
|
ref: 'UserLite',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'UserDetailedNotMeOnly',
|
|
},
|
|
],
|
|
} as const;
|
|
|
|
export const packedMeDetailedSchema = {
|
|
type: 'object',
|
|
allOf: [
|
|
{
|
|
type: 'object',
|
|
ref: 'UserLite',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'UserDetailedNotMeOnly',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'MeDetailedOnly',
|
|
},
|
|
],
|
|
} as const;
|
|
|
|
export const packedUserDetailedSchema = {
|
|
oneOf: [
|
|
{
|
|
type: 'object',
|
|
ref: 'UserDetailedNotMe',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'MeDetailed',
|
|
},
|
|
],
|
|
} as const;
|
|
|
|
export const packedUserSchema = {
|
|
oneOf: [
|
|
{
|
|
type: 'object',
|
|
ref: 'UserLite',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'UserDetailed',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'UserDetailedNotMe',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'MeDetailed',
|
|
},
|
|
],
|
|
} as const;
|