Thank you for maintaining this package. When trying to apply a domain filter that has an integer value e.g. ```js odoo.searchRead(`hr.job`, { company_id: 1 }, fields, params) ``` The typecasting to a string of the value happening (https://github.com/vettloffah/odoo-await/blob/master/lib/index.js#L252) leads to incorrect results being returned. When removing this typecasting: ```js domainArray.push([`${key}`, '=', value]); ``` I receive the correct results. If you are currently unable to assist with an update, I will be more than happy to create a PR.