Files
klz-cables.com/.pnpm-store/v10/files/4a/aa1f5c074b365c63c14e56f928d6b459cd698630b9a431aae07633de45948b3dd8e1010bc92896bfcf1d70d96a95b3d3213a18876fece6c54cd560379c3204
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

1 line
895 B
Plaintext

{"version":3,"file":"password-reset.cjs","names":[],"sources":["../../../../src/rest/commands/auth/password-reset.ts"],"sourcesContent":["import type { RestCommand } from '../../types.js';\n\n/**\n * 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.\n *\n * @param token Password reset token, as provided in the email sent by the request endpoint.\n * @param password New password for the user.\n *\n * @returns Empty body.\n */\nexport const passwordReset =\n\t<Schema>(token: string, password: string): RestCommand<void, Schema> =>\n\t() => ({\n\t\tpath: '/auth/password/reset',\n\t\tmethod: 'POST',\n\t\tbody: JSON.stringify({ token, password }),\n\t});\n"],"mappings":"AAUA,MAAa,GACH,EAAe,SACjB,CACN,KAAM,uBACN,OAAQ,OACR,KAAM,KAAK,UAAU,CAAE,QAAO,WAAU,CAAC,CACzC"}