Files
klz-cables.com/.pnpm-store/v10/files/16/e9120d8af555edf1479132a5407699a060dfac259c42a60e0f4500958470cfebc9a19ef6f209a0c0eb0137b017fc168d6c0033b5c810e5d8ae4935edc7fb52
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

17 lines
607 B
Plaintext

import type { SanitizedPermissions, TypedUser } from '../../index.js';
import type { PayloadRequest } from '../../types/index.js';
export type AuthArgs = {
/**
* Specify if it's possible for auth strategies to set headers within this operation.
*/
canSetHeaders?: boolean;
headers: Request['headers'];
req?: Omit<PayloadRequest, 'user'>;
};
export type AuthResult = {
permissions: SanitizedPermissions;
responseHeaders?: Headers;
user: null | TypedUser;
};
export declare const auth: (args: Required<AuthArgs>) => Promise<AuthResult>;
//# sourceMappingURL=auth.d.ts.map