@etsoo/appscript 1.3.61 → 1.3.63

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.
@@ -24,7 +24,7 @@ export declare class PublicApi extends BaseApi {
24
24
  * Base units
25
25
  * @returns Result
26
26
  */
27
- basetUnits(): ListType1[];
27
+ baseUnits(): ListType1[];
28
28
  /**
29
29
  * Get currencies
30
30
  * @param names Limited currency names for local data, undefined will try to retrive remoately
@@ -30,7 +30,7 @@ class PublicApi extends BaseApi_1.BaseApi {
30
30
  * Base units
31
31
  * @returns Result
32
32
  */
33
- basetUnits() {
33
+ baseUnits() {
34
34
  return this.app.getEnumStrList(ProductUnit_1.ProductUnit, unitPrefix);
35
35
  }
36
36
  currencies(names) {
@@ -24,7 +24,7 @@ export declare class PublicApi extends BaseApi {
24
24
  * Base units
25
25
  * @returns Result
26
26
  */
27
- basetUnits(): ListType1[];
27
+ baseUnits(): ListType1[];
28
28
  /**
29
29
  * Get currencies
30
30
  * @param names Limited currency names for local data, undefined will try to retrive remoately
@@ -27,7 +27,7 @@ export class PublicApi extends BaseApi {
27
27
  * Base units
28
28
  * @returns Result
29
29
  */
30
- basetUnits() {
30
+ baseUnits() {
31
31
  return this.app.getEnumStrList(ProductUnit, unitPrefix);
32
32
  }
33
33
  currencies(names) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.3.61",
3
+ "version": "1.3.63",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -65,8 +65,8 @@
65
65
  "@babel/preset-env": "^7.20.2",
66
66
  "@babel/runtime-corejs3": "^7.20.13",
67
67
  "@types/jest": "^29.4.0",
68
- "jest": "^29.4.1",
69
- "jest-environment-jsdom": "^29.4.1",
68
+ "jest": "^29.4.2",
69
+ "jest-environment-jsdom": "^29.4.2",
70
70
  "ts-jest": "^29.0.5",
71
71
  "typescript": "^4.9.5"
72
72
  }
@@ -36,7 +36,7 @@ export class PublicApi extends BaseApi {
36
36
  * Base units
37
37
  * @returns Result
38
38
  */
39
- basetUnits() {
39
+ baseUnits() {
40
40
  return this.app.getEnumStrList(ProductUnit, unitPrefix);
41
41
  }
42
42