Files
klz-cables.com/.pnpm-store/v10/files/22/75cd1f797e82380c726739c1c575073e88691e75efa2215dacb8d4f9225056c29574da6e33fd48a1bc2c535b4b7fce8e3af25c4c9cfe69a38545d689b850e6
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

14 lines
415 B
Plaintext

import type { JoinQuery } from '../types/index.js';
export type JoinParams = {
[schemaPath: string]: {
limit?: unknown;
sort?: string;
where?: unknown;
} | false;
} | false;
/**
* Convert request JoinQuery object from strings to numbers
* @param joins
*/
export declare const sanitizeJoinParams: (_joins?: JoinParams) => JoinQuery;
//# sourceMappingURL=sanitizeJoinParams.d.ts.map