Files
klz-cables.com/.pnpm-store/v10/files/08/8d016bd1f2a7fa7c81f4990d1d6cca01c05487cdcf202ac614373716ac26ea3e7ac5299fc414dfc33c57fbcab65837228ffe48c2427d7feb9b55b34f281330
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

14 lines
435 B
Plaintext

import { createLocalReq } from '../../../utilities/createLocalReq.js';
import { auth as authOperation } from '../auth.js';
export const authLocal = async (payload, options)=>{
const { headers, req } = options;
return await authOperation({
canSetHeaders: Boolean(options.canSetHeaders),
headers,
req: await createLocalReq({
req
}, payload)
});
};
//# sourceMappingURL=auth.js.map