bruce-models 3.8.8 → 3.8.9

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.
@@ -3423,7 +3423,10 @@
3423
3423
  LODType: filter.lodCategoryId,
3424
3424
  BruceEntityType: filter.entityTypeId,
3425
3425
  PageIndex: filter.pageIndex,
3426
- PageSize: filter.pageSize
3426
+ PageSize: filter.pageSize,
3427
+ historicKey: historicKey,
3428
+ historicFrom: historicFrom,
3429
+ historicTo: historicTo
3427
3430
  };
3428
3431
  let totalCount;
3429
3432
  let entities = [];
@@ -3464,6 +3467,15 @@
3464
3467
  if (expandRelations) {
3465
3468
  urlParams.append("$expand", "relation");
3466
3469
  }
3470
+ if (historicKey) {
3471
+ urlParams.set("historicKey", historicKey);
3472
+ }
3473
+ if (historicFrom) {
3474
+ urlParams.set("historicFrom", historicFrom);
3475
+ }
3476
+ if (historicTo) {
3477
+ urlParams.set("historicTo", historicTo);
3478
+ }
3467
3479
  const urlStr = url.toString() + "?" + urlParams.toString();
3468
3480
  const data = yield api.get(urlStr, exports.Api.PrepReqParams(reqParams));
3469
3481
  if (!analysis) {
@@ -11126,7 +11138,7 @@
11126
11138
  })(exports.DataSource || (exports.DataSource = {}));
11127
11139
 
11128
11140
  // This is updated with the package.json version on build.
11129
- const VERSION = "3.8.8";
11141
+ const VERSION = "3.8.9";
11130
11142
 
11131
11143
  exports.VERSION = VERSION;
11132
11144
  exports.AbstractApi = AbstractApi;