Refactor HttpService Options
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;
};