Files
klz-cables.com/.pnpm-store/v10/files/9b/7679ed0d7bc033dfc17cdc5b48938b85dbd72152c5628917069022edbf049e9e6f275f8de8f6c712d83ef3f26fded0e2f6e2f96931cd0e96875131bca312d9
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
598 B
Plaintext

import type { Where } from '../types/index.js';
/**
* Validates that a "where" query is in 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 `transformWhereQuery` to perform a transformation if the query is not valid.
* @example
* Inaccurate: [text][equals]=example%20post
* Accurate: [or][0][and][0][text][equals]=example%20post
*/
export declare const validateWhereQuery: (whereQuery: Where) => whereQuery is Where;
//# sourceMappingURL=validateWhereQuery.d.ts.map