Files
klz-cables.com/.pnpm-store/v10/files/45/eea6de75cef65109b72c96351105bf16958c4368e4764442fe40f2888e8bfb3639600d16603d364b14af4636e42379f622b331bf3e8bbfebbb9844f94984ea
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
643 B
Plaintext

import { RestCommand } from "../../types.js";
//#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.ts.map