bruce-models 7.1.82 → 7.1.84
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 +21 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +21 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/data-lab/data-lab.js +20 -1
- package/dist/lib/data-lab/data-lab.js.map +1 -1
- package/dist/lib/import/import-assembly.js.map +1 -1
- package/dist/lib/tileset/tileset.js.map +1 -1
- package/dist/lib/tracking/tracking.js.map +1 -1
- package/dist/lib/user/session.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-lab/data-lab.d.ts +22 -2
- package/dist/types/import/import-assembly.d.ts +2 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -10870,6 +10870,24 @@ function parseObject$2(data) {
|
|
|
10870
10870
|
*/
|
|
10871
10871
|
var DataLab;
|
|
10872
10872
|
(function (DataLab) {
|
|
10873
|
+
/**
|
|
10874
|
+
* What a search returns, as opposed to which Entities it matches.
|
|
10875
|
+
*/
|
|
10876
|
+
let ESelectType;
|
|
10877
|
+
(function (ESelectType) {
|
|
10878
|
+
// Whole Entity records. This is the default.
|
|
10879
|
+
ESelectType["Entity"] = "ENTITY";
|
|
10880
|
+
// Just the Entity IDs.
|
|
10881
|
+
ESelectType["Id"] = "ID";
|
|
10882
|
+
// The distinct Entity Type IDs of the matches, rather than the matches themselves.
|
|
10883
|
+
ESelectType["EntityTypeId"] = "ENTITY_TYPE_ID";
|
|
10884
|
+
// The internal (Bruce) attributes at the root of each record.
|
|
10885
|
+
ESelectType["Internal"] = "Bruce";
|
|
10886
|
+
// A calculation described by Output.
|
|
10887
|
+
ESelectType["Calc"] = "CALC";
|
|
10888
|
+
// A data schema built from the matches.
|
|
10889
|
+
ESelectType["DataSchema"] = "DATA_SCHEMA";
|
|
10890
|
+
})(ESelectType = DataLab.ESelectType || (DataLab.ESelectType = {}));
|
|
10873
10891
|
let EReqKey;
|
|
10874
10892
|
(function (EReqKey) {
|
|
10875
10893
|
EReqKey["Primary"] = "PrimarySelection";
|
|
@@ -10993,7 +11011,8 @@ var DataLab;
|
|
|
10993
11011
|
const data = yield req;
|
|
10994
11012
|
res({
|
|
10995
11013
|
entities: data.Items,
|
|
10996
|
-
totalCount: data.MatchesCount
|
|
11014
|
+
totalCount: data.MatchesCount,
|
|
11015
|
+
items: data.Items
|
|
10997
11016
|
});
|
|
10998
11017
|
}
|
|
10999
11018
|
catch (e) {
|
|
@@ -20702,7 +20721,7 @@ var UrlUtils;
|
|
|
20702
20721
|
})(UrlUtils || (UrlUtils = {}));
|
|
20703
20722
|
|
|
20704
20723
|
// This is updated with the package.json version on build.
|
|
20705
|
-
const VERSION = "7.1.
|
|
20724
|
+
const VERSION = "7.1.84";
|
|
20706
20725
|
|
|
20707
20726
|
export { VERSION, Account, AccountAudit, AccountConcept, AccountFeatures, AccountInvite, AccountLimits, AccountTemplate, AccountType, AnnDocument, AbstractApi, Api, ApiGetters, BruceApi, GlobalApi, GuardianApi, Assembly, Calculator, ChangeSet, ClientFile, Bounds, BruceEvent, BruceVariable, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, GeoJson, Geometry, LRUCache, UTC, CustomForm, DashboardView, DataFeed, DataLab, DataLabGroup, DataSource, DataTransform, Comment, Entity, EntityAttachment, EntityAttachmentType, EntityAttribute, EntityComment, EntityCoords, EntityHistoricData, EntityLink, EntityLod, EntityLodCategory, EntityRelation, EntityRelationType, EntitySource, EntityTableView, EntityTag, EntityType, EntityTypeRelation, EntityTypeTrigger, Ontology, OntologyDocument, ENVIRONMENT, ExportBrz, ExportCsv, ExportUsd, Hexbin, ImportAssembly, ImportCad, ImportCsv, ImportGeoJson, ImportJson, ImportKml, ImportLcc, ImportedFile, Uploader, Markup, UIMarkup, NAVIGATOR_CHAT_EVENT_ENTITY_HIGHLIGHT_APPLIED, NAVIGATOR_CHAT_EVENT_SCENE_CONTEXT_PREFETCHED, NavigatorChatClient, NavigatorMcpWebSocketClient, Plugin, ProgramKey, MenuItem, ProjectView, ProjectViewBookmark, ProjectViewBookmarkGroup, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewLegacyTile, ProjectViewTile, ZoomControl, Scenario, HostingLocation, MessageBroker, PendingAction, RecordChangeFeed, Style, Tileset, Tracking, Permission, Session, User, UserGroup, UserMfaMethod, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils };
|
|
20708
20727
|
//# sourceMappingURL=bruce-models.es5.js.map
|