Skip to content

5.0.6

Choose a tag to compare

@SushilMallRC SushilMallRC released this 03 Dec 06:40
· 22 commits to master since this release
3d910f5

What's Changed

Full Changelog: 5.0.5...5.0.6

⚠️ Breaking Changes

delete method signature changed**: The delete method now supports body params. The signature changed from delete(url, query) to delete(url, body, query). If you were passing query parameters as the second argument, you need to update your code:

Before:

rcsdk.delete('/restapi/v1.0/account//extension/', {...query});

After:

rcsdk.delete('/restapi/v1.0/account//extension/', null, {...query});
// or with body:
rcsdk.delete('/restapi/v1.0/account//extension/', {...body}, {...query});