bruce-models 4.4.1 → 4.4.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 +20 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +16 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity-table-view.js +19 -1
- package/dist/lib/entity/entity-table-view.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/entity/entity-table-view.d.ts +39 -6
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -7591,9 +7591,16 @@ var EntityTypeVisualSettings;
|
|
|
7591
7591
|
})(EAction = EntityTypeVisualSettings.EAction || (EntityTypeVisualSettings.EAction = {}));
|
|
7592
7592
|
})(EntityTypeVisualSettings || (EntityTypeVisualSettings = {}));
|
|
7593
7593
|
|
|
7594
|
-
|
|
7594
|
+
/**
|
|
7595
|
+
* Represents a Table View record.
|
|
7596
|
+
* This is a record of how to display a collection of Entities.
|
|
7597
|
+
*/
|
|
7595
7598
|
var EntityTableView;
|
|
7596
7599
|
(function (EntityTableView) {
|
|
7600
|
+
/**
|
|
7601
|
+
* Returns a record matching the given viewId.
|
|
7602
|
+
* @param params
|
|
7603
|
+
*/
|
|
7597
7604
|
function Get(params) {
|
|
7598
7605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7599
7606
|
let { viewId, api, req } = params;
|
|
@@ -7608,6 +7615,10 @@ var EntityTableView;
|
|
|
7608
7615
|
});
|
|
7609
7616
|
}
|
|
7610
7617
|
EntityTableView.Get = Get;
|
|
7618
|
+
/**
|
|
7619
|
+
* Returns the list of all available Table Views.
|
|
7620
|
+
* @param params
|
|
7621
|
+
*/
|
|
7611
7622
|
function GetList(params) {
|
|
7612
7623
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7613
7624
|
if (!params) {
|
|
@@ -7629,6 +7640,9 @@ var EntityTableView;
|
|
|
7629
7640
|
});
|
|
7630
7641
|
}
|
|
7631
7642
|
EntityTableView.GetList = GetList;
|
|
7643
|
+
/**
|
|
7644
|
+
* Creates or updates a Table View record.
|
|
7645
|
+
*/
|
|
7632
7646
|
function Update(params) {
|
|
7633
7647
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7634
7648
|
let { view, api, req } = params;
|
|
@@ -7648,6 +7662,10 @@ var EntityTableView;
|
|
|
7648
7662
|
});
|
|
7649
7663
|
}
|
|
7650
7664
|
EntityTableView.Update = Update;
|
|
7665
|
+
/**
|
|
7666
|
+
* Deletes a Table View record.
|
|
7667
|
+
* @param params
|
|
7668
|
+
*/
|
|
7651
7669
|
function Delete(params) {
|
|
7652
7670
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7653
7671
|
let { viewId, api, req } = params;
|
|
@@ -13599,7 +13617,7 @@ var DataSource;
|
|
|
13599
13617
|
})(DataSource || (DataSource = {}));
|
|
13600
13618
|
|
|
13601
13619
|
// This is updated with the package.json version on build.
|
|
13602
|
-
const VERSION = "4.4.
|
|
13620
|
+
const VERSION = "4.4.2";
|
|
13603
13621
|
|
|
13604
13622
|
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, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, Account, AccountInvite, AccountFeatures, AccountLimits, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, ImportCad, ImportCsv, ImportJson, ImportKml, ImportedFile, Markup, Uploader, Plugin, ENVIRONMENT, DataSource };
|
|
13605
13623
|
//# sourceMappingURL=bruce-models.es5.js.map
|