feat: パスキーに対応 (MisskeyIO#149)

This commit is contained in:
まっちゃとーにゅ
2023-08-23 08:55:47 +09:00
committed by GitHub
parent 001f6377d4
commit 690a4d5d53
42 changed files with 812 additions and 1066 deletions

View File

@@ -2477,7 +2477,6 @@ type MeDetailed = UserDetailed & {
mutingNotificationTypes: string[];
noCrawle: boolean;
receiveAnnouncementEmail: boolean;
usePasswordLessLogin: boolean;
unreadAnnouncements: Announcement[];
[other: string]: any;
};
@@ -2798,6 +2797,7 @@ type UserDetailed = UserLite & {
publicReactions: boolean;
securityKeys: boolean;
twoFactorEnabled: boolean;
usePasswordLessLogin: boolean;
updatedAt: DateString | null;
uri: string | null;
url: string | null;

View File

@@ -67,6 +67,7 @@ export type UserDetailed = UserLite & {
publicReactions: boolean;
securityKeys: boolean;
twoFactorEnabled: boolean;
usePasswordLessLogin: boolean;
updatedAt: DateString | null;
uri: string | null;
url: string | null;
@@ -105,7 +106,6 @@ export type MeDetailed = UserDetailed & {
mutingNotificationTypes: string[];
noCrawle: boolean;
receiveAnnouncementEmail: boolean;
usePasswordLessLogin: boolean;
unreadAnnouncements: Announcement[];
[other: string]: any;
};