0.20.0-rc1

(fix): Pass abortSignal to Stream for server-sent-events and JSON streams so that the user can opt out and break from a stream.

0.20.0-rc0

(feat): Add abortSignal to RequestOptions. SDK consumers can now specify an an arbitrary abort signal that can interrupt the API call.

1const controller = new AbortController();
2client.endpoint.call(..., {
3 abortSignal: controller.signal,
4})