mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-27 10:20:27 +01:00
fix(misskey-js): missing types
This commit is contained in:
parent
9b6a3a4bb7
commit
b60b82568a
2 changed files with 4 additions and 0 deletions
|
@ -3078,6 +3078,7 @@ type SigninFlowRequest = {
|
|||
'g-recaptcha-response'?: string | null;
|
||||
'turnstile-response'?: string | null;
|
||||
'm-captcha-response'?: string | null;
|
||||
'testcaptcha-response'?: string | null;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
|
@ -3135,6 +3136,7 @@ type SignupRequest = {
|
|||
'g-recaptcha-response'?: string | null;
|
||||
'turnstile-response'?: string | null;
|
||||
'm-captcha-response'?: string | null;
|
||||
'testcaptcha-response'?: string | null;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
|
|
|
@ -258,6 +258,7 @@ export type SignupRequest = {
|
|||
'g-recaptcha-response'?: string | null;
|
||||
'turnstile-response'?: string | null;
|
||||
'm-captcha-response'?: string | null;
|
||||
'testcaptcha-response'?: string | null;
|
||||
}
|
||||
|
||||
export type SignupResponse = MeDetailed & {
|
||||
|
@ -282,6 +283,7 @@ export type SigninFlowRequest = {
|
|||
'g-recaptcha-response'?: string | null;
|
||||
'turnstile-response'?: string | null;
|
||||
'm-captcha-response'?: string | null;
|
||||
'testcaptcha-response'?: string | null;
|
||||
};
|
||||
|
||||
export type SigninFlowResponse = {
|
||||
|
|
Loading…
Reference in a new issue