Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
645 B
Plaintext
16 lines
645 B
Plaintext
import { RestCommand } from "../../types.cjs";
|
|
|
|
//#region src/rest/commands/auth/password-reset.d.ts
|
|
|
|
/**
|
|
* The request a password reset endpoint sends an email with a link to the admin app (or a custom route) which in turn uses this endpoint to allow the user to reset their password.
|
|
*
|
|
* @param token Password reset token, as provided in the email sent by the request endpoint.
|
|
* @param password New password for the user.
|
|
*
|
|
* @returns Empty body.
|
|
*/
|
|
declare const passwordReset: <Schema>(token: string, password: string) => RestCommand<void, Schema>;
|
|
//#endregion
|
|
export { passwordReset };
|
|
//# sourceMappingURL=password-reset.d.cts.map |