bruce-models 3.9.1 → 3.9.2
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 +16 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +16 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +15 -2
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/entity/entity.d.ts +1 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -3125,7 +3125,7 @@ var Entity;
|
|
|
3125
3125
|
*/
|
|
3126
3126
|
function GetListByIds(params) {
|
|
3127
3127
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3128
|
-
let { api, entityIds, req: reqParams, expandRelations, expandLocation, historicFrom, historicKey, historicTo } = params;
|
|
3128
|
+
let { api, entityIds, req: reqParams, expandRelations, expandLocation, historicFrom, historicKey, historicTo, historicPoint } = params;
|
|
3129
3129
|
if (!entityIds.length) {
|
|
3130
3130
|
throw ("Entity IDs are required.");
|
|
3131
3131
|
}
|
|
@@ -3159,6 +3159,18 @@ var Entity;
|
|
|
3159
3159
|
else if (expandLocation) {
|
|
3160
3160
|
reqData["Expand"] = "location";
|
|
3161
3161
|
}
|
|
3162
|
+
if (historicKey) {
|
|
3163
|
+
reqData["historicKey"] = historicKey;
|
|
3164
|
+
}
|
|
3165
|
+
if (historicFrom) {
|
|
3166
|
+
reqData["historicFrom"] = historicFrom;
|
|
3167
|
+
}
|
|
3168
|
+
if (historicTo) {
|
|
3169
|
+
reqData["historicTo"] = historicTo;
|
|
3170
|
+
}
|
|
3171
|
+
if (historicPoint) {
|
|
3172
|
+
reqData["historicPoint"] = historicPoint;
|
|
3173
|
+
}
|
|
3162
3174
|
const reqs = [];
|
|
3163
3175
|
if (reqIds.length > 0) {
|
|
3164
3176
|
const req = api.POST("entities", reqData, Api.PrepReqParams(reqParams));
|
|
@@ -3171,7 +3183,8 @@ var Entity;
|
|
|
3171
3183
|
entityTypeId: null,
|
|
3172
3184
|
historicFrom: historicFrom,
|
|
3173
3185
|
historicKey: historicKey,
|
|
3174
|
-
historicTo: historicTo
|
|
3186
|
+
historicTo: historicTo,
|
|
3187
|
+
historicPoint: historicPoint
|
|
3175
3188
|
});
|
|
3176
3189
|
const prom = new Promise((res) => __awaiter(this, void 0, void 0, function* () {
|
|
3177
3190
|
try {
|
|
@@ -11417,7 +11430,7 @@ var DataSource;
|
|
|
11417
11430
|
})(DataSource || (DataSource = {}));
|
|
11418
11431
|
|
|
11419
11432
|
// This is updated with the package.json version on build.
|
|
11420
|
-
const VERSION = "3.9.
|
|
11433
|
+
const VERSION = "3.9.2";
|
|
11421
11434
|
|
|
11422
11435
|
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 };
|
|
11423
11436
|
//# sourceMappingURL=bruce-models.es5.js.map
|