@nsshunt/stsfhirclient 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5425,7 +5425,7 @@ class FhirClient {
5425
5425
  };
5426
5426
  #InvokeResourceAPI = async (url2, httpVerb, domainResource, filters) => {
5427
5427
  const accessToken = await this.#options.GetAccessToken();
5428
- const requestConfig = new STSAxiosConfig(url2, httpVerb).withAuthHeaders(accessToken, this.#DUMMY_USER).withData(filters ? filters : domainResource ? domainResource : void 0);
5428
+ const requestConfig = new STSAxiosConfig(url2, httpVerb).withDefaultHeaders().withAuthHeaders(accessToken, this.#DUMMY_USER).withData(filters ? filters : domainResource ? domainResource : void 0);
5429
5429
  if (isNode$1 && this.#options.agentManager) {
5430
5430
  requestConfig.withAgentManager(this.#options.agentManager);
5431
5431
  }