Maciej Derulski
Results
2
comments of
Maciej Derulski
trafficstars
This works for me ``` import shippo from "shippo" shippo(SHIPPO_API_KEY).carrieraccount.list().then(r => console.log(r)) ``` OR ``` import shippo from "shippo" const client = shippo(SHIPPO_API_KEY) client.carrieraccount.list().then(r => console.log(r)) ```
Hi @olivermrbl, That makes a lot of sense. Now that I have some more context, I'll agree that this is not a bug, but an enhancement worth looking into. I...