Files
klz-cables.com/.pnpm-store/v10/files/a7/b5b8e8d7c18090f65b3d0986b8135741e7a125719204dda30226215ea8355e10d95d48b0071407b5c34ea94015988bb40369583ed442b1d6ba2481b07a56c9
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

21 lines
384 B
Plaintext

export const validOperators = [
'equals',
'contains',
'not_equals',
'in',
'all',
'not_in',
'exists',
'greater_than',
'greater_than_equal',
'less_than',
'less_than_equal',
'like',
'not_like',
'within',
'intersects',
'near'
];
export const validOperatorSet = new Set(validOperators);
//# sourceMappingURL=constants.js.map