Files
klz-cables.com/.pnpm-store/v10/files/dc/07f8af1087455f15ea48a8aca94d6dc54e8d07941d43ea1dfc112f62b279f1fe857e6493af4ccaade09bf3f748ceb4d333041b86432d3ce60659c819c77c3a
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
770 B
Plaintext

import type { AuthCollectionSlug, AuthOperationsFromCollectionSlug, Payload, RequestContext } from '../../../index.js';
import type { PayloadRequest } from '../../../types/index.js';
import type { LoginResult } from '../login.js';
export type Options<TSlug extends AuthCollectionSlug> = {
collection: TSlug;
context?: RequestContext;
data: AuthOperationsFromCollectionSlug<TSlug>['login'];
depth?: number;
fallbackLocale?: string;
locale?: string;
overrideAccess?: boolean;
req?: Partial<PayloadRequest>;
showHiddenFields?: boolean;
trash?: boolean;
};
export declare function loginLocal<TSlug extends AuthCollectionSlug>(payload: Payload, options: Options<TSlug>): Promise<LoginResult<TSlug>>;
//# sourceMappingURL=login.d.ts.map