bruce-models 6.4.0 → 6.4.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 +13 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +13 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +12 -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 +8 -1
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -4310,6 +4310,8 @@ var Entity;
|
|
|
4310
4310
|
let totalCount;
|
|
4311
4311
|
let entities = [];
|
|
4312
4312
|
let imports;
|
|
4313
|
+
let sources;
|
|
4314
|
+
let entityTypeSources;
|
|
4313
4315
|
let nextPage;
|
|
4314
4316
|
let nextPageUrl;
|
|
4315
4317
|
if (analysis || expandRelations || (viaCdn && api.GetCdnBaseUrl())) {
|
|
@@ -4384,6 +4386,8 @@ var Entity;
|
|
|
4384
4386
|
}
|
|
4385
4387
|
totalCount = data.TotalCount;
|
|
4386
4388
|
imports = data.Imports;
|
|
4389
|
+
sources = data.Source;
|
|
4390
|
+
entityTypeSources = data["EntityType.Source"];
|
|
4387
4391
|
nextPage = data.NextPage;
|
|
4388
4392
|
nextPageUrl = data.NextPageURL;
|
|
4389
4393
|
}
|
|
@@ -4449,6 +4453,8 @@ var Entity;
|
|
|
4449
4453
|
imports = data.Imports;
|
|
4450
4454
|
nextPage = data.NextPage;
|
|
4451
4455
|
nextPageUrl = data.NextPageURL;
|
|
4456
|
+
sources = data.Source;
|
|
4457
|
+
entityTypeSources = data["EntityType.Source"];
|
|
4452
4458
|
}
|
|
4453
4459
|
// Callback to get the next page.
|
|
4454
4460
|
let getNextPage;
|
|
@@ -4473,7 +4479,9 @@ var Entity;
|
|
|
4473
4479
|
imports: data.Imports,
|
|
4474
4480
|
nextPage: data.NextPage,
|
|
4475
4481
|
nextPageUrl: data.NextPageURL,
|
|
4476
|
-
getNextPage: nextPageUrl ? getNextPage : null
|
|
4482
|
+
getNextPage: nextPageUrl ? getNextPage : null,
|
|
4483
|
+
sources: data.Source,
|
|
4484
|
+
entityTypeSources: data["EntityType.Source"]
|
|
4477
4485
|
};
|
|
4478
4486
|
});
|
|
4479
4487
|
}
|
|
@@ -4483,7 +4491,9 @@ var Entity;
|
|
|
4483
4491
|
imports,
|
|
4484
4492
|
nextPage,
|
|
4485
4493
|
nextPageUrl,
|
|
4486
|
-
getNextPage
|
|
4494
|
+
getNextPage,
|
|
4495
|
+
sources,
|
|
4496
|
+
entityTypeSources
|
|
4487
4497
|
};
|
|
4488
4498
|
});
|
|
4489
4499
|
}
|
|
@@ -15987,7 +15997,7 @@ var Tracking;
|
|
|
15987
15997
|
})(Tracking || (Tracking = {}));
|
|
15988
15998
|
|
|
15989
15999
|
// This is updated with the package.json version on build.
|
|
15990
|
-
const VERSION = "6.4.
|
|
16000
|
+
const VERSION = "6.4.1";
|
|
15991
16001
|
|
|
15992
16002
|
export { VERSION, Assembly, 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, Tracking };
|
|
15993
16003
|
//# sourceMappingURL=bruce-models.es5.js.map
|