bruce-models 3.8.7 → 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.
- package/dist/bruce-models.es5.js +14 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +14 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +13 -1
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/lib/project/menu-item.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/project/menu-item.d.ts +1 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -3476,7 +3476,10 @@ var Entity;
|
|
|
3476
3476
|
LODType: filter.lodCategoryId,
|
|
3477
3477
|
BruceEntityType: filter.entityTypeId,
|
|
3478
3478
|
PageIndex: filter.pageIndex,
|
|
3479
|
-
PageSize: filter.pageSize
|
|
3479
|
+
PageSize: filter.pageSize,
|
|
3480
|
+
historicKey: historicKey,
|
|
3481
|
+
historicFrom: historicFrom,
|
|
3482
|
+
historicTo: historicTo
|
|
3480
3483
|
};
|
|
3481
3484
|
let totalCount;
|
|
3482
3485
|
let entities = [];
|
|
@@ -3517,6 +3520,15 @@ var Entity;
|
|
|
3517
3520
|
if (expandRelations) {
|
|
3518
3521
|
urlParams.append("$expand", "relation");
|
|
3519
3522
|
}
|
|
3523
|
+
if (historicKey) {
|
|
3524
|
+
urlParams.set("historicKey", historicKey);
|
|
3525
|
+
}
|
|
3526
|
+
if (historicFrom) {
|
|
3527
|
+
urlParams.set("historicFrom", historicFrom);
|
|
3528
|
+
}
|
|
3529
|
+
if (historicTo) {
|
|
3530
|
+
urlParams.set("historicTo", historicTo);
|
|
3531
|
+
}
|
|
3520
3532
|
const urlStr = url.toString() + "?" + urlParams.toString();
|
|
3521
3533
|
const data = yield api.get(urlStr, Api.PrepReqParams(reqParams));
|
|
3522
3534
|
if (!analysis) {
|
|
@@ -11385,7 +11397,7 @@ var DataSource;
|
|
|
11385
11397
|
})(DataSource || (DataSource = {}));
|
|
11386
11398
|
|
|
11387
11399
|
// This is updated with the package.json version on build.
|
|
11388
|
-
const VERSION = "3.8.
|
|
11400
|
+
const VERSION = "3.8.9";
|
|
11389
11401
|
|
|
11390
11402
|
export { VERSION, AnnDocument, CustomForm, AbstractApi, Api, BruceApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityCoords, EntityTypeVisualSettings, EntityAttribute, EntityHistoricData, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, AccountFeatures, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportCad, ImportCsv, ImportJson, ImportKml, ImportedFile, Markup, Uploader, Plugin, ENVIRONMENT, DataSource };
|
|
11391
11403
|
//# sourceMappingURL=bruce-models.es5.js.map
|