Files
klz-cables.com/.pnpm-store/v10/files/f0/96710275dc43f33f6812eaf3dbc7606f1025ee5d1a04dbd4ee49337278f466c7f73e113a9335164015f5e7d256455c4fd77308ac240448949b3852ad35244d
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

25 lines
1003 B
Plaintext

import type { SanitizedCollectionConfig } from '../../collections/config/types.js';
import type { FlattenedField } from '../../fields/config/types.js';
import type { SanitizedGlobalConfig } from '../../globals/config/types.js';
import type { PayloadRequest, Where } from '../../types/index.js';
import type { EntityPolicies } from './types.js';
type Args = {
errors?: {
path: string;
}[];
overrideAccess: boolean;
policies?: EntityPolicies;
polymorphicJoin?: boolean;
req: PayloadRequest;
versionFields?: FlattenedField[];
where: Where;
} & ({
collectionConfig: SanitizedCollectionConfig;
globalConfig?: never | undefined;
} | {
collectionConfig?: never | undefined;
globalConfig: SanitizedGlobalConfig;
});
export declare function validateQueryPaths({ collectionConfig, errors, globalConfig, overrideAccess, policies, polymorphicJoin, req, versionFields, where, }: Args): Promise<void>;
export {};
//# sourceMappingURL=validateQueryPaths.d.ts.map