Skip to content

Commit

Permalink
add v5 column
Browse files Browse the repository at this point in the history
  • Loading branch information
nadetastic committed Jan 3, 2024
1 parent 5268e38 commit 0024ddf
Showing 1 changed file with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,32 +31,38 @@ Each `handle*` function will return the neccessary values you'll need to make th
</TableHead>
<TableBody>
<TableRow>
<ResponsiveTableCell label="Function Call">`signUp`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v6">`signUp`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v5">`Auth.signUp`</ResponsiveTableCell>
<ResponsiveTableCell label="Override Name">`handleSignUp`</ResponsiveTableCell>
<ResponsiveTableCell label="formData Properties">`{username, password, attributes }`</ResponsiveTableCell>
</TableRow>
<TableRow>
<ResponsiveTableCell label="Function Call">`signIn`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v6">`signIn`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v5">`Auth.signIn`</ResponsiveTableCell>
<ResponsiveTableCell label="Override Name">`handleSignIn` </ResponsiveTableCell>
<ResponsiveTableCell label="formData Properties">`{username, password}`</ResponsiveTableCell>
</TableRow>
<TableRow>
<ResponsiveTableCell label="Function Call">`confirmSignIn`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v6">`confirmSignIn`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v5">`Auth.confirmSignIn`</ResponsiveTableCell>
<ResponsiveTableCell label="Override Name">`handleConfirmSignIn`</ResponsiveTableCell>
<ResponsiveTableCell label="formData Properties">`{user, code, mfaType}`</ResponsiveTableCell>
</TableRow>
<TableRow>
<ResponsiveTableCell label="Function Call">`confirmSignUp`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v6">`confirmSignUp`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v5">`Auth.confirmSignUp`</ResponsiveTableCell>
<ResponsiveTableCell label="Override Name">`handleConfirmSignUp`</ResponsiveTableCell>
<ResponsiveTableCell label="formData Properties">`{username, code}`</ResponsiveTableCell>
</TableRow>
<TableRow>
<ResponsiveTableCell label="Function Call">`resetPassword`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v6">`resetPassword`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v5">`Auth.forgotPassword`</ResponsiveTableCell>
<ResponsiveTableCell label="Override Name">`handleForgotPassword`</ResponsiveTableCell>
<ResponsiveTableCell label="formData Properties">`{username}`</ResponsiveTableCell>
</TableRow>
<TableRow>
<ResponsiveTableCell label="Function Call">`confirmResetPassword`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v6">`confirmResetPassword`</ResponsiveTableCell>
<ResponsiveTableCell label="Function Call v5">`Auth.forgotPasswordSubmit`</ResponsiveTableCell>
<ResponsiveTableCell label="Override Name">`handleForgotPasswordSubmit`</ResponsiveTableCell>
<ResponsiveTableCell label="formData Properties">`{username, code, password}`</ResponsiveTableCell>
</TableRow>
Expand Down

0 comments on commit 0024ddf

Please sign in to comment.