Has There Been an Update to the TypeScript SDK That Changed Function Names?

This topic was automatically generated from Slack. You can find the original thread here.

Hi Pipedream team ,
For the past 24 hours, I’ve been facing an issue with this TypeScript SDK call:
const accountsRes = await client.getAccounts();
It appears that the function has changed to:
const accountsRes = await client.accounts.list();
Could you please confirm if there have been updates to the TypeScript SDK, and if there are other function name changes I should be aware of? I want to ensure my code aligns with the latest version.
Thanks!

I don’t work for Pipedream (I’m a user like you), but there was recently a major version change, with lots of changes like this.

There’s a migration guide here.

Thanks so much for the info! I really appreciate you pointing that out and sharing the migration guide — that helps a lot!