@etsoo/smarterp-core 1.0.23 → 1.0.24

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.
@@ -65,4 +65,9 @@ export type OrgReadDto = {
65
65
  * 用户数
66
66
  */
67
67
  users: number;
68
+ /**
69
+ * Persons
70
+ * 人员数
71
+ */
72
+ persons: number;
68
73
  };
@@ -65,4 +65,9 @@ export type OrgReadDto = {
65
65
  * 用户数
66
66
  */
67
67
  users: number;
68
+ /**
69
+ * Persons
70
+ * 人员数
71
+ */
72
+ persons: number;
68
73
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/smarterp-core",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "TypeScript APIs for SmartERP Core",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -41,24 +41,24 @@
41
41
  "homepage": "https://github.com/ETSOO/etsoo-smarterp-core#readme",
42
42
  "devDependencies": {
43
43
  "@babel/cli": "^7.26.4",
44
- "@babel/core": "^7.26.9",
45
- "@babel/plugin-transform-runtime": "^7.26.9",
44
+ "@babel/core": "^7.26.10",
45
+ "@babel/plugin-transform-runtime": "^7.26.10",
46
46
  "@babel/preset-env": "^7.26.9",
47
- "@babel/runtime-corejs3": "^7.26.9",
47
+ "@babel/runtime-corejs3": "^7.26.10",
48
48
  "@types/react": "^18.3.1",
49
49
  "@types/react-dom": "^18.3.1",
50
50
  "@vitejs/plugin-react": "^4.3.4",
51
51
  "jsdom": "^26.0.0",
52
52
  "typescript": "^5.8.2",
53
- "vitest": "^3.0.7"
53
+ "vitest": "^3.0.8"
54
54
  },
55
55
  "dependencies": {
56
- "@etsoo/appscript": "^1.6.17",
56
+ "@etsoo/appscript": "^1.6.18",
57
57
  "@etsoo/materialui": "^1.4.97",
58
58
  "@etsoo/react": "^1.8.32",
59
59
  "@etsoo/shared": "^1.2.62",
60
60
  "@etsoo/toolpad": "^1.0.19",
61
- "@mui/material": "^6.4.6",
61
+ "@mui/material": "^6.4.7",
62
62
  "react": "^18.3.1",
63
63
  "react-dom": "^18.3.1"
64
64
  }
@@ -80,4 +80,10 @@ export type OrgReadDto = {
80
80
  * 用户数
81
81
  */
82
82
  users: number;
83
+
84
+ /**
85
+ * Persons
86
+ * 人员数
87
+ */
88
+ persons: number;
83
89
  };