@etsoo/appscript 1.2.87 → 1.2.88

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.
@@ -4,6 +4,7 @@ export * from './address/AddressUtils';
4
4
  export * from './app/AppSettings';
5
5
  export * from './app/CoreApp';
6
6
  export * from './app/ExternalSettings';
7
+ export * from './app/IApp';
7
8
  export * from './app/UserRole';
8
9
  export * from './bridges/BridgeUtils';
9
10
  export * from './bridges/IBridgeHost';
package/lib/cjs/index.js CHANGED
@@ -23,6 +23,7 @@ __exportStar(require("./address/AddressUtils"), exports);
23
23
  __exportStar(require("./app/AppSettings"), exports);
24
24
  __exportStar(require("./app/CoreApp"), exports);
25
25
  __exportStar(require("./app/ExternalSettings"), exports);
26
+ __exportStar(require("./app/IApp"), exports);
26
27
  __exportStar(require("./app/UserRole"), exports);
27
28
  // bridges
28
29
  __exportStar(require("./bridges/BridgeUtils"), exports);
@@ -4,6 +4,7 @@ export * from './address/AddressUtils';
4
4
  export * from './app/AppSettings';
5
5
  export * from './app/CoreApp';
6
6
  export * from './app/ExternalSettings';
7
+ export * from './app/IApp';
7
8
  export * from './app/UserRole';
8
9
  export * from './bridges/BridgeUtils';
9
10
  export * from './bridges/IBridgeHost';
package/lib/mjs/index.js CHANGED
@@ -6,6 +6,7 @@ export * from './address/AddressUtils';
6
6
  export * from './app/AppSettings';
7
7
  export * from './app/CoreApp';
8
8
  export * from './app/ExternalSettings';
9
+ export * from './app/IApp';
9
10
  export * from './app/UserRole';
10
11
  // bridges
11
12
  export * from './bridges/BridgeUtils';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.2.87",
3
+ "version": "1.2.88",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/index.ts CHANGED
@@ -7,6 +7,7 @@ export * from './address/AddressUtils';
7
7
  export * from './app/AppSettings';
8
8
  export * from './app/CoreApp';
9
9
  export * from './app/ExternalSettings';
10
+ export * from './app/IApp';
10
11
  export * from './app/UserRole';
11
12
 
12
13
  // bridges