Some requests, like salesReports API don't return json, but gzip - node-app-store-connect-api currently fails on these, as contentType is application/a-gzip, and so the control pass to this line:
There, the gzip binary is returned as text, and in read function, the destructuring assigment doesn't find anything to destructure and returns undefined.
Some requests, like salesReports API don't return json, but gzip -
node-app-store-connect-apicurrently fails on these, ascontentTypeisapplication/a-gzip, and so the control pass to this line:node-app-store-connect-api/index.mjs
Line 137 in 89e8682
There, the gzip binary is returned as text, and in read function, the destructuring assigment doesn't find anything to destructure and returns undefined.