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

15 lines
627 B
Plaintext

import type { AuthCollectionSlug, Payload, RequestContext } from '../../../index.js';
import type { PayloadRequest } from '../../../types/index.js';
import type { Result } from '../resetPassword.js';
export type Options<TSlug extends AuthCollectionSlug> = {
collection: TSlug;
context?: RequestContext;
data: {
password: string;
token: string;
};
overrideAccess: boolean;
req?: Partial<PayloadRequest>;
};
export declare function resetPasswordLocal<TSlug extends AuthCollectionSlug>(payload: Payload, options: Options<TSlug>): Promise<Result>;
//# sourceMappingURL=resetPassword.d.ts.map