bruce-models 1.6.8 → 1.7.0

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.
@@ -867,8 +867,7 @@ var CamApi;
867
867
  this.setBaseUrl();
868
868
  }
869
869
  setBaseUrl() {
870
- // Using proxy through admin-app until CORS stops dying.
871
- const prefix = `https://${Api.TEMPLATE_ACCOUNT_ID}.nextspace`;
870
+ const prefix = "https://cam.nextspace";
872
871
  let url;
873
872
  const env = this.env.toUpperCase();
874
873
  switch (env) {
@@ -887,7 +886,7 @@ var CamApi;
887
886
  default:
888
887
  throw ("Specified Environment is not valid. SuppliedEnv=" + env);
889
888
  }
890
- this.baseUrl = url + "@CAM/";
889
+ this.baseUrl = url;
891
890
  }
892
891
  GetBaseUrl() {
893
892
  return this.baseUrl;