Skip to content

Refactor HttpService Options

Choose a tag to compare

@nad-au nad-au released this 26 Jun 06:13
· 12 commits to main since this release
ec687bb

Breaking Change:

Refactored HttpServiceOptions to split apart features, supporting future flexibility

export type HttpServiceOptions<C extends IDefaultPolicyContext = IDefaultPolicyContext,  A = any> = {
  http?: HttpOptions;
  resilience?: ResilienceOptions<C, A>;
  logging?: LoggingOptions;
};