bruce-models 5.8.9 → 5.9.1
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 +11 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +11 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/calculator/calculator.js +1 -1
- package/dist/lib/calculator/calculator.js.map +1 -1
- package/dist/lib/data-source/data-source.js.map +1 -1
- package/dist/lib/entity/entity.js +9 -1
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-source/data-source.d.ts +1 -0
- package/dist/types/entity/entity.d.ts +2 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -3911,6 +3911,8 @@ var Entity;
|
|
|
3911
3911
|
let totalCount;
|
|
3912
3912
|
let entities = [];
|
|
3913
3913
|
let imports;
|
|
3914
|
+
let nextPage;
|
|
3915
|
+
let nextPageUrl;
|
|
3914
3916
|
if (analysis || expandRelations || (viaCdn && api.GetCdnBaseUrl())) {
|
|
3915
3917
|
const urlParams = new URLSearchParams();
|
|
3916
3918
|
urlParams.set("cacheToken", String(viaCdnCacheToken ? viaCdnCacheToken : 0));
|
|
@@ -3983,6 +3985,8 @@ var Entity;
|
|
|
3983
3985
|
}
|
|
3984
3986
|
totalCount = data.TotalCount;
|
|
3985
3987
|
imports = data.Imports;
|
|
3988
|
+
nextPage = data.NextPage;
|
|
3989
|
+
nextPageUrl = data.NextPageURL;
|
|
3986
3990
|
}
|
|
3987
3991
|
else {
|
|
3988
3992
|
const urlParams = new URLSearchParams();
|
|
@@ -4040,11 +4044,15 @@ var Entity;
|
|
|
4040
4044
|
}
|
|
4041
4045
|
totalCount = data.TotalCount;
|
|
4042
4046
|
imports = data.Imports;
|
|
4047
|
+
nextPage = data.NextPage;
|
|
4048
|
+
nextPageUrl = data.NextPageURL;
|
|
4043
4049
|
}
|
|
4044
4050
|
return {
|
|
4045
4051
|
entities,
|
|
4046
4052
|
totalCount,
|
|
4047
|
-
imports
|
|
4053
|
+
imports,
|
|
4054
|
+
nextPage,
|
|
4055
|
+
nextPageUrl
|
|
4048
4056
|
};
|
|
4049
4057
|
});
|
|
4050
4058
|
}
|
|
@@ -4582,7 +4590,7 @@ var Calculator;
|
|
|
4582
4590
|
if (isMapValueNum == null) {
|
|
4583
4591
|
isMapValueNum = false;
|
|
4584
4592
|
}
|
|
4585
|
-
if (isValueNum && (isMapValueNum || mapValue.includes("-"))) {
|
|
4593
|
+
if (isValueNum && (isMapValueNum || (typeof mapValue === "string" && mapValue.includes("-")))) {
|
|
4586
4594
|
if (+mapValue == +eValue) {
|
|
4587
4595
|
return option.appliedValue;
|
|
4588
4596
|
}
|
|
@@ -15409,7 +15417,7 @@ var Scenario;
|
|
|
15409
15417
|
})(Scenario || (Scenario = {}));
|
|
15410
15418
|
|
|
15411
15419
|
// This is updated with the package.json version on build.
|
|
15412
|
-
const VERSION = "5.
|
|
15420
|
+
const VERSION = "5.9.1";
|
|
15413
15421
|
|
|
15414
15422
|
export { VERSION, AnnDocument, CustomForm, AbstractApi, Api, BruceApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, GeoJson, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityCoords, EntityAttribute, EntityHistoricData, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewBookmarkGroup, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, AccountFeatures, AccountLimits, AccountTemplate, AccountType, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, DataLabGroup, ImportAssembly, ImportCad, ImportCsv, ImportJson, ImportGeoJson, ImportKml, ImportedFile, ExportBrz, ExportUsd, Markup, Uploader, Plugin, ENVIRONMENT, DataSource, Scenario };
|
|
15415
15423
|
//# sourceMappingURL=bruce-models.es5.js.map
|