summaryrefslogtreecommitdiff
path: root/packages/misskey-js/src/entities.ts
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-10-10 14:05:20 +0900
committerGitHub <noreply@github.com>2024-10-10 14:05:20 +0900
commita624546812af072d23579bce81f85668f9a97c09 (patch)
treedf1cd8a79ecacf9b01e6307d67f65f6a097110ed /packages/misskey-js/src/entities.ts
parentrefactor(frontend): prefix css variables (#14725) (diff)
downloadmisskey-a624546812af072d23579bce81f85668f9a97c09.tar.gz
misskey-a624546812af072d23579bce81f85668f9a97c09.tar.bz2
misskey-a624546812af072d23579bce81f85668f9a97c09.zip
fix(frontend): ユーザー登録完了時にサインインAPIを別途使用していたのを修正 (#14738)
* fix(frontend): ユーザー登録完了時にサインインAPIを別途使用していたのを修正 * emitされるオブジェクトの型を変更したことに伴う修正 * Update Changelog
Diffstat (limited to 'packages/misskey-js/src/entities.ts')
-rw-r--r--packages/misskey-js/src/entities.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/misskey-js/src/entities.ts b/packages/misskey-js/src/entities.ts
index 2ffee40fba..dd88791ed0 100644
--- a/packages/misskey-js/src/entities.ts
+++ b/packages/misskey-js/src/entities.ts
@@ -308,7 +308,7 @@ export type SigninWithPasskeyInitResponse = {
};
export type SigninWithPasskeyResponse = {
- signinResponse: SigninFlowResponse;
+ signinResponse: SigninFlowResponse & { finished: true };
};
type Values<T extends Record<PropertyKey, unknown>> = T[keyof T];