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.
package/dist/bruce-models.umd.js
CHANGED
|
@@ -3856,11 +3856,11 @@
|
|
|
3856
3856
|
}
|
|
3857
3857
|
ClientFile.GetCacheKey = GetCacheKey;
|
|
3858
3858
|
function GetUrl(api, fileId) {
|
|
3859
|
-
return `${api.GetBaseUrl()}
|
|
3859
|
+
return `${api.GetBaseUrl()}file/${fileId}`;
|
|
3860
3860
|
}
|
|
3861
3861
|
ClientFile.GetUrl = GetUrl;
|
|
3862
3862
|
function GetUrlWithExt(api, file) {
|
|
3863
|
-
return `${api.GetBaseUrl()}
|
|
3863
|
+
return `${api.GetBaseUrl()}file/${file.ID}${file.FileExt ? file.FileExt : ""}`;
|
|
3864
3864
|
}
|
|
3865
3865
|
ClientFile.GetUrlWithExt = GetUrlWithExt;
|
|
3866
3866
|
function Get(api, fileId, reqParams) {
|