Files
klz-cables.com/.pnpm-store/v10/files/9b/981715576899c383b0f67e026b090769a247477a9531ec42300cd4faf881960647d7949a77edddc858d8d0aa0ef6efecefcb73193abe6ee595b927e82cc477
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
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