Files
klz-cables.com/.pnpm-store/v10/files/6e/04ce98eeeb8be74c24f6eca33d78747cdbe75e8acd825d9beaea6835f768447518757d8172b5971fe2f9fecb93b65d103d6bc5d8cf86888af40f873c343861
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

16 lines
617 B
Plaintext

import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/auth/password-request.d.ts
/**
* Request a password reset email to be sent to the given user.
*
* @param email Email address of the user you're requesting a password reset for.
* @param reset_url Provide a custom reset url which the link in the email will lead to. The reset token will be passed as a parameter.
*
* @returns Empty body.
*/
declare const passwordRequest: <Schema>(email: string, reset_url?: string) => RestCommand<void, Schema>;
//#endregion
export { passwordRequest };
//# sourceMappingURL=password-request.d.cts.map