@etsoo/appscript 1.2.87 → 1.2.90
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/lib/cjs/business/EntityStatus.d.ts +1 -1
- package/lib/cjs/business/EntityStatus.js +1 -1
- package/lib/cjs/business/ProductUnit.d.ts +1 -1
- package/lib/cjs/business/ProductUnit.js +1 -1
- package/lib/cjs/business/RepeatOption.d.ts +1 -0
- package/lib/cjs/business/RepeatOption.js +1 -0
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/mjs/business/EntityStatus.d.ts +1 -1
- package/lib/mjs/business/EntityStatus.js +1 -1
- package/lib/mjs/business/ProductUnit.d.ts +1 -1
- package/lib/mjs/business/ProductUnit.js +1 -1
- package/lib/mjs/business/RepeatOption.d.ts +1 -0
- package/lib/mjs/business/RepeatOption.js +1 -0
- package/lib/mjs/index.d.ts +1 -0
- package/lib/mjs/index.js +1 -0
- package/package.json +13 -13
- package/src/business/EntityStatus.ts +1 -1
- package/src/business/ProductUnit.ts +1 -1
- package/src/business/RepeatOption.ts +1 -0
- package/src/index.ts +1 -0
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.EntityStatus = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Standard entity status enum
|
|
6
|
-
* com.etsoo.
|
|
6
|
+
* @see com.etsoo.CoreFramework.Business.EntityStatus
|
|
7
7
|
* Labels also included within i18n
|
|
8
8
|
*/
|
|
9
9
|
var EntityStatus;
|
|
@@ -44,7 +44,7 @@ export declare enum ProductWeightUnit {
|
|
|
44
44
|
/**
|
|
45
45
|
* Product units enum
|
|
46
46
|
* Repeat options take range 10 - 39
|
|
47
|
-
*
|
|
47
|
+
* @see com.etsoo.CoreFramework.Business.ProductUnit
|
|
48
48
|
*/
|
|
49
49
|
export declare const ProductUnit: {
|
|
50
50
|
[x: number]: string;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -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);
|
|
@@ -44,7 +44,7 @@ export declare enum ProductWeightUnit {
|
|
|
44
44
|
/**
|
|
45
45
|
* Product units enum
|
|
46
46
|
* Repeat options take range 10 - 39
|
|
47
|
-
*
|
|
47
|
+
* @see com.etsoo.CoreFramework.Business.ProductUnit
|
|
48
48
|
*/
|
|
49
49
|
export declare const ProductUnit: {
|
|
50
50
|
[x: number]: string;
|
|
@@ -46,7 +46,7 @@ export var ProductWeightUnit;
|
|
|
46
46
|
/**
|
|
47
47
|
* Product units enum
|
|
48
48
|
* Repeat options take range 10 - 39
|
|
49
|
-
*
|
|
49
|
+
* @see com.etsoo.CoreFramework.Business.ProductUnit
|
|
50
50
|
*/
|
|
51
51
|
export const ProductUnit = {
|
|
52
52
|
...ProductBaseUnit,
|
package/lib/mjs/index.d.ts
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "1.2.90",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -54,25 +54,25 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@etsoo/notificationbase": "^1.1.7",
|
|
56
56
|
"@etsoo/restclient": "^1.0.71",
|
|
57
|
-
"@etsoo/shared": "^1.1.
|
|
57
|
+
"@etsoo/shared": "^1.1.53",
|
|
58
58
|
"@types/crypto-js": "^4.1.1",
|
|
59
59
|
"crypto-js": "^4.1.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@babel/cli": "^7.18.10",
|
|
63
|
-
"@babel/core": "^7.
|
|
63
|
+
"@babel/core": "^7.19.0",
|
|
64
64
|
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
65
|
-
"@babel/preset-env": "^7.
|
|
66
|
-
"@babel/runtime-corejs3": "^7.
|
|
67
|
-
"@types/jest": "^
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
69
|
-
"@typescript-eslint/parser": "^5.
|
|
70
|
-
"eslint": "^8.
|
|
65
|
+
"@babel/preset-env": "^7.19.0",
|
|
66
|
+
"@babel/runtime-corejs3": "^7.19.0",
|
|
67
|
+
"@types/jest": "^29.0.0",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
69
|
+
"@typescript-eslint/parser": "^5.36.2",
|
|
70
|
+
"eslint": "^8.23.0",
|
|
71
71
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
72
72
|
"eslint-plugin-import": "^2.26.0",
|
|
73
|
-
"jest": "^
|
|
74
|
-
"jest-environment-jsdom": "^
|
|
75
|
-
"ts-jest": "^
|
|
76
|
-
"typescript": "^4.8.
|
|
73
|
+
"jest": "^29.0.3",
|
|
74
|
+
"jest-environment-jsdom": "^29.0.3",
|
|
75
|
+
"ts-jest": "^29.0.0",
|
|
76
|
+
"typescript": "^4.8.3"
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -51,7 +51,7 @@ export enum ProductWeightUnit {
|
|
|
51
51
|
/**
|
|
52
52
|
* Product units enum
|
|
53
53
|
* Repeat options take range 10 - 39
|
|
54
|
-
*
|
|
54
|
+
* @see com.etsoo.CoreFramework.Business.ProductUnit
|
|
55
55
|
*/
|
|
56
56
|
export const ProductUnit = {
|
|
57
57
|
...ProductBaseUnit,
|