Files
klz-cables.com/.pnpm-store/v10/files/d2/92722d57c3f2b9210fa38d98fc483db1024ed307261e1d1a126166309a9fabe095f6dbeae773abaa776bf55c5573cda42b4fe3872afee4134026f5536b2ea6
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

11 lines
584 B
Plaintext

import type { Where } from '../types/index.js';
/**
* Transforms a basic "where" query into a format in which the "where builder" can understand.
* Even though basic queries are valid, we need to hoist them into the "and" / "or" format.
* Use this function alongside `validateWhereQuery` to check that for valid queries before transforming.
* @example
* Inaccurate: [text][equals]=example%20post
* Accurate: [or][0][and][0][text][equals]=example%20post
*/
export declare const transformWhereQuery: (whereQuery: Where) => Where;
//# sourceMappingURL=transformWhereQuery.d.ts.map