bruce-models 1.0.6 → 1.0.7

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.
@@ -3979,11 +3979,11 @@ var ClientFile;
3979
3979
  }
3980
3980
  ClientFile.GetCacheKey = GetCacheKey;
3981
3981
  function GetUrl(api, fileId) {
3982
- return `${api.GetBaseUrl()}/file/${fileId}`;
3982
+ return `${api.GetBaseUrl()}file/${fileId}`;
3983
3983
  }
3984
3984
  ClientFile.GetUrl = GetUrl;
3985
3985
  function GetUrlWithExt(api, file) {
3986
- return `${api.GetBaseUrl()}/file/${file.ID}${file.FileExt ? file.FileExt : ""}`;
3986
+ return `${api.GetBaseUrl()}file/${file.ID}${file.FileExt ? file.FileExt : ""}`;
3987
3987
  }
3988
3988
  ClientFile.GetUrlWithExt = GetUrlWithExt;
3989
3989
  function Get(api, fileId, reqParams) {