@codetectonics/mantle 0.0.4 → 0.0.6

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.
@@ -376,7 +376,7 @@
376
376
  this.environment = environment;
377
377
  this.http = http;
378
378
  this.angularTokenService = angularTokenService;
379
- this.apiUrl = this.environment.apiUrl;
379
+ this.apiUrl = this.environment.API_URL;
380
380
  }
381
381
  WebApiService.prototype.get = function (path, params, headers) {
382
382
  if (params === void 0) { params = {}; }
@@ -6306,7 +6306,7 @@
6306
6306
  function WebsocketService(environment, angularTokenService) {
6307
6307
  this.environment = environment;
6308
6308
  this.angularTokenService = angularTokenService;
6309
- this.wsUrl = this.environment.wsUrl;
6309
+ this.wsUrl = this.environment.WS_URL;
6310
6310
  }
6311
6311
  WebsocketService.prototype.connect = function () {
6312
6312
  var currentAuthData = this.angularTokenService.currentAuthData;