MONEI / Shopify-api-node

Node Shopify connector sponsored by MONEI
https://monei.com/shopify-payment-gateway/
MIT License
946 stars 278 forks source link

Fixed nested array type error with new IPaginatedResults type #479

Closed metasloth closed 3 years ago

metasloth commented 3 years ago

My recent PR #477 added redundant array type signature responses because I forgot how generics work 🤦 .

This makes typescript think that the promise results are an array of arrays, as seen below: image

I removed all erroneous array signatures and actually tested the code in practice this time to make sure it works as expected!

coveralls commented 3 years ago

Coverage Status

Coverage remained the same at 100.0% when pulling 18977e77add2000fe6d8195cc275ab38b756a17f on metasloth:master into 78735628ea0393402eafa11c98d6b4aed5a9591a on MONEI:master.

lpinca commented 3 years ago

Thank you.