6LLLHD2T6WZHLCEDV6RGXJHEPPF5EVJNUAPWYEEE3OXXZ6ZG3VWQC
if(Array.isArray(parameters.producers) && parameters.producers.every(p => typeof p === 'object' && typeof p.producer === 'string' && (Array.isArray(p.brands) || p.brands === undefined))) {
wack += ` where ${parameters.producers.map(p => `producer = $${params.push(p.producer)}${Array.isArray(p.brands) ? ` and brand = any($${params.push(p.brands)})`: ''}`).join(' or ')}`;
if(Array.isArray(parameters.producers) && parameters.producers.every(p => typeof p === 'object' && (typeof p.producer === 'string' || p.producer === null) && (Array.isArray(p.brands) || p.brands === undefined))) {
wack += ` where ${parameters.producers.map(p => `producer ${typeof p.producer === 'string' ? `= $${params.push(p.producer)}` : 'is null'}${Array.isArray(p.brands) ? ` and brand = any($${params.push(p.brands)})`: ''}`).join(' or ')}`;