You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
ChangePasswordProps
Properties for changing a user password.
export interface ChangePasswordProps extends BaseUserId {
new: string;
old: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
new | Required | string | New Password to be set for the user. |
old | Required | string | Previous user password - required for verification purposes. |