Hello! We reimplementing some functions built with PHP using Node.js and your package.
Here is a part of old code which I don't understand how to correctly convert:

I tried this one
totalRange: ({ lowerTotal, greaterTotal }) => [{
base_grand_total: { lteq: parseFloat(lowerTotal) },
base_total_invoiced: { gteq: parseFloat(greaterTotal) }
}],
but it doesn't work.
I have no problems with other more simple situations without lteq and gteq.
Could you please help with the solution?