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.
@@ -7454,6 +7454,10 @@
7454
7454
  })(exports.EntityTypeVisualSettings || (exports.EntityTypeVisualSettings = {}));
7455
7455
 
7456
7456
  (function (EntityTableView) {
7457
+ /**
7458
+ * Returns a record matching the given viewId.
7459
+ * @param params
7460
+ */
7457
7461
  function Get(params) {
7458
7462
  return __awaiter(this, void 0, void 0, function* () {
7459
7463
  let { viewId, api, req } = params;
@@ -7468,6 +7472,10 @@
7468
7472
  });
7469
7473
  }
7470
7474
  EntityTableView.Get = Get;
7475
+ /**
7476
+ * Returns the list of all available Table Views.
7477
+ * @param params
7478
+ */
7471
7479
  function GetList(params) {
7472
7480
  return __awaiter(this, void 0, void 0, function* () {
7473
7481
  if (!params) {
@@ -7489,6 +7497,9 @@
7489
7497
  });
7490
7498
  }
7491
7499
  EntityTableView.GetList = GetList;
7500
+ /**
7501
+ * Creates or updates a Table View record.
7502
+ */
7492
7503
  function Update(params) {
7493
7504
  return __awaiter(this, void 0, void 0, function* () {
7494
7505
  let { view, api, req } = params;
@@ -7508,6 +7519,10 @@
7508
7519
  });
7509
7520
  }
7510
7521
  EntityTableView.Update = Update;
7522
+ /**
7523
+ * Deletes a Table View record.
7524
+ * @param params
7525
+ */
7511
7526
  function Delete(params) {
7512
7527
  return __awaiter(this, void 0, void 0, function* () {
7513
7528
  let { viewId, api, req } = params;
@@ -13331,7 +13346,7 @@
13331
13346
  })(exports.DataSource || (exports.DataSource = {}));
13332
13347
 
13333
13348
  // This is updated with the package.json version on build.
13334
- const VERSION = "4.4.1";
13349
+ const VERSION = "4.4.2";
13335
13350
 
13336
13351
  exports.VERSION = VERSION;
13337
13352
  exports.AbstractApi = AbstractApi;