A subclass of Promise providing additional helper methods
for interacting with the SDK.
class APIPromisePromise<T>Gets the raw Response instance instead of parsing the response
data.
If you want to parse the response body but still get the Response
instance, you can use ().
👋 Getting the wrong TypeScript type for Response?
Try setting "moduleResolution": "NodeNext" or add "lib": ["DOM"]
to your tsconfig.json.
Attaches a callback for only the rejection of the Promise.
Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The resolved value cannot be modified from the callback.
Attaches callbacks for the resolution and/or rejection of the Promise.
Gets the parsed response data and the raw Response instance.
If you just want to get the raw Response instance without parsing it,
you can use ().
👋 Getting the wrong TypeScript type for Response?
Try setting "moduleResolution": "NodeNext" or add "lib": ["DOM"]
to your tsconfig.json.