@etsoo/smarterp-core 1.0.2 → 1.0.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.
@@ -10,7 +10,6 @@ import {
10
10
  AddressUtils,
11
11
  CoreApp,
12
12
  createClient,
13
- ExternalSettings,
14
13
  IAppSettings,
15
14
  InitCallResultData,
16
15
  IUser
@@ -72,7 +71,9 @@ export class TestApp extends CoreApp<
72
71
  */
73
72
  constructor() {
74
73
  super(
75
- ExternalSettings.format({
74
+ {
75
+ appId: 0,
76
+
76
77
  /**
77
78
  * Endpoint of the API service
78
79
  */
@@ -119,7 +120,7 @@ export class TestApp extends CoreApp<
119
120
  supportedCultures,
120
121
  detectedCulture
121
122
  )![0]
122
- }),
123
+ },
123
124
  createClient(),
124
125
  container,
125
126
  new WindowStorage(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/smarterp-core",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "TypeScript APIs for SmartERP Core",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -53,12 +53,12 @@
53
53
  "vitest": "^3.0.5"
54
54
  },
55
55
  "dependencies": {
56
- "@etsoo/appscript": "^1.5.98",
57
- "@etsoo/materialui": "^1.4.78",
58
- "@etsoo/react": "^1.8.28",
59
- "@etsoo/shared": "^1.2.60",
56
+ "@etsoo/appscript": "^1.6.0",
57
+ "@etsoo/materialui": "^1.4.80",
58
+ "@etsoo/react": "^1.8.29",
59
+ "@etsoo/shared": "^1.2.61",
60
60
  "@etsoo/toolpad": "^1.0.15",
61
- "@mui/material": "^6.4.3",
61
+ "@mui/material": "^6.4.4",
62
62
  "react": "^18.3.1",
63
63
  "react-dom": "^18.3.1"
64
64
  }