Files
klz-cables.com/.pnpm-store/v10/files/5e/5c549af90daaf737c50cf0804475ba7c2afe36fefb24423ec3181b39600b82e9f293b1d66397f0017fb60659265860e45efaa19f2aa9ca77292c0435b13132
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

24 lines
814 B
Plaintext

import type { SanitizedCollectionConfig } from '../collections/config/types.js';
import type { JoinQuery, PayloadRequest } from '../types/index.js';
type Args = {
collectionConfig: SanitizedCollectionConfig;
joins?: JoinQuery;
overrideAccess: boolean;
req: PayloadRequest;
};
/**
* * Validates `where` for each join
* * Combines the access result for joined collection
* * Combines the default join's `where`
*/
export declare const sanitizeJoinQuery: ({ collectionConfig, joins: joinsQuery, overrideAccess, req, }: Args) => Promise<false | Partial<{
[x: string]: false | {
count?: boolean;
limit?: number;
page?: number;
sort?: string;
where?: import("../types/index.js").Where;
};
}>>;
export {};
//# sourceMappingURL=sanitizeJoinQuery.d.ts.map