Skip to content

Commit

Permalink
fix(misskey-js): missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih committed Dec 22, 2024
1 parent 9b6a3a4 commit b60b825
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/misskey-js/etc/misskey-js.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions packages/misskey-js/src/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 & {
Expand All @@ -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 = {
Expand Down

0 comments on commit b60b825

Please sign in to comment.