bruce-models 4.4.2 → 4.4.3

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.
@@ -100,5 +100,5 @@ __exportStar(require("./plugin/plugin"), exports);
100
100
  __exportStar(require("./environment"), exports);
101
101
  __exportStar(require("./data-source/data-source"), exports);
102
102
  // This is updated with the package.json version on build.
103
- exports.VERSION = "4.4.2";
103
+ exports.VERSION = "4.4.3";
104
104
  //# sourceMappingURL=bruce-models.js.map
@@ -82,4 +82,4 @@ export * from "./internal/uploader";
82
82
  export * from "./plugin/plugin";
83
83
  export * from "./environment";
84
84
  export * from "./data-source/data-source";
85
- export declare const VERSION = "4.4.2";
85
+ export declare const VERSION = "4.4.3";
@@ -6,7 +6,7 @@ import { Calculator } from "../calculator/calculator";
6
6
  * This is a record of how to display a collection of Entities.
7
7
  */
8
8
  export declare namespace EntityTableView {
9
- export interface IView {
9
+ interface IView {
10
10
  ID?: number;
11
11
  DisplayName: string;
12
12
  Description?: string;
@@ -28,7 +28,7 @@ export declare namespace EntityTableView {
28
28
  * Returns a record matching the given viewId.
29
29
  * @param params
30
30
  */
31
- export function Get(params: {
31
+ function Get(params: {
32
32
  viewId: number;
33
33
  api?: BruceApi.Api;
34
34
  req?: Api.IReqParams;
@@ -39,7 +39,7 @@ export declare namespace EntityTableView {
39
39
  * Returns the list of all available Table Views.
40
40
  * @param params
41
41
  */
42
- export function GetList(params?: {
42
+ function GetList(params?: {
43
43
  api?: BruceApi.Api;
44
44
  req?: Api.IReqParams;
45
45
  }): Promise<{
@@ -48,7 +48,7 @@ export declare namespace EntityTableView {
48
48
  /**
49
49
  * Creates or updates a Table View record.
50
50
  */
51
- export function Update(params: {
51
+ function Update(params: {
52
52
  view: IView;
53
53
  api?: BruceApi.Api;
54
54
  req?: Api.IReqParams;
@@ -59,10 +59,9 @@ export declare namespace EntityTableView {
59
59
  * Deletes a Table View record.
60
60
  * @param params
61
61
  */
62
- export function Delete(params: {
62
+ function Delete(params: {
63
63
  viewId: number;
64
64
  api?: BruceApi.Api;
65
65
  req?: Api.IReqParams;
66
66
  }): Promise<void>;
67
- export {};
68
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bruce-models",
3
- "version": "4.4.2",
3
+ "version": "4.4.3",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/bruce-models.umd.js",