Files
klz-cables.com/.pnpm-store/v10/files/00/216263f6b8b3a90242fe45952763fef2ed09b7e9636b27f18cc3caa389f46c57b537817a62096dc3a7d3441a6613b8dc6456e756a9b82c03e05b746f3bae43
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

22 lines
678 B
Plaintext

import type { FlattenedField, Payload } from 'payload';
import type { BasePostgresAdapter, PostgresDB } from '../../types.js';
import type { PathsToQuery } from './types.js';
type Args = {
adapter: BasePostgresAdapter;
collectionSlug?: string;
columnPrefix: string;
db: PostgresDB;
disableNotNull: boolean;
fields: FlattenedField[];
globalSlug?: string;
isVersions: boolean;
newTableName: string;
parentTableName: string;
path: string;
pathsToQuery: PathsToQuery;
payload: Payload;
rootTableName: string;
};
export declare const traverseFields: (args: Args) => void;
export {};
//# sourceMappingURL=traverseFields.d.ts.map