@eo-sdk/client 8.16.1 → 8.16.3

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.
@@ -4414,7 +4414,7 @@
4414
4414
  'Content-Type': 'application/json'
4415
4415
  });
4416
4416
  return this.http
4417
- .get("" + (host || '') + this.config.getLoginBase() + "/auth/info", { headers: headers })
4417
+ .get("" + (host || '') + this.config.getLoginBase() + "/auth/info", { headers: headers, withCredentials: this.coreConfig.withCredentials })
4418
4418
  .pipe(operators.switchMap(function (info) {
4419
4419
  _this.gatewayInfo = info;
4420
4420
  _this.envService.cloudEnvironment = (_this.gatewayInfo && _this.gatewayInfo.oauth2);
@@ -4445,7 +4445,7 @@
4445
4445
  'Content-Type': 'application/json'
4446
4446
  });
4447
4447
  return this.http
4448
- .get("" + (host || '') + this.config.getUri('serviceBase') + this.userProfileUri, { headers: headers })
4448
+ .get("" + (host || '') + this.config.getUri('serviceBase') + this.userProfileUri, { headers: headers, withCredentials: this.coreConfig.withCredentials })
4449
4449
  .pipe(operators.switchMap(function (user) {
4450
4450
  _this.profile = {
4451
4451
  host: host || '',