bruce-models 1.2.3 → 1.2.4
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.es5.js
CHANGED
|
@@ -2841,11 +2841,11 @@ var EntityLod;
|
|
|
2841
2841
|
if (!entityId) {
|
|
2842
2842
|
throw ("Entity id is required.");
|
|
2843
2843
|
}
|
|
2844
|
-
const cacheData = api.GetCacheItem(GetEntityListKey(entityId),
|
|
2844
|
+
const cacheData = api.GetCacheItem(GetEntityListKey(entityId), reqParams);
|
|
2845
2845
|
if (cacheData) {
|
|
2846
2846
|
return cacheData;
|
|
2847
2847
|
}
|
|
2848
|
-
const req = api.GET(`entity/${entityId}/lods?includeClientFiles=yes
|
|
2848
|
+
const req = api.GET(`entity/${entityId}/lods?includeClientFiles=yes`, Api.PrepReqParams(reqParams));
|
|
2849
2849
|
const prom = new Promise((res, rej) => __awaiter(this, void 0, void 0, function* () {
|
|
2850
2850
|
try {
|
|
2851
2851
|
const data = yield req;
|