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.umd.js
CHANGED
|
@@ -2766,11 +2766,11 @@
|
|
|
2766
2766
|
if (!entityId) {
|
|
2767
2767
|
throw ("Entity id is required.");
|
|
2768
2768
|
}
|
|
2769
|
-
const cacheData = api.GetCacheItem(GetEntityListKey(entityId),
|
|
2769
|
+
const cacheData = api.GetCacheItem(GetEntityListKey(entityId), reqParams);
|
|
2770
2770
|
if (cacheData) {
|
|
2771
2771
|
return cacheData;
|
|
2772
2772
|
}
|
|
2773
|
-
const req = api.GET(`entity/${entityId}/lods?includeClientFiles=yes
|
|
2773
|
+
const req = api.GET(`entity/${entityId}/lods?includeClientFiles=yes`, exports.Api.PrepReqParams(reqParams));
|
|
2774
2774
|
const prom = new Promise((res, rej) => __awaiter(this, void 0, void 0, function* () {
|
|
2775
2775
|
try {
|
|
2776
2776
|
const data = yield req;
|