Description
Currently the base BaseSlackClient defines the return type of apiCall and response as Promise<BaseResponse> which represents the json payload returned by the Slack API.
This is an issue since users may want to access more then just the json payload from the Response such as headers and status codes.
In the next major release apiCall and response should return some version of Promise<[Response](https://deno.com/deploy/docs/runtime-response)> instead. It will be a breaking change.
Requirements (place an x in each of the [ ])
Description
Currently the base BaseSlackClient defines the return type of
apiCallandresponseasPromise<BaseResponse>which represents thejson payloadreturned by the Slack API.This is an issue since users may want to access more then just the
json payloadfrom the Response such asheadersandstatus codes.In the next major release
apiCallandresponseshould return some version ofPromise<[Response](https://deno.com/deploy/docs/runtime-response)>instead. It will be a breaking change.Requirements (place an
xin each of the[ ])