@ibiz/model-core 0.1.8 → 0.1.9

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.9] - 2024-01-29
11
+
12
+ ### Added
13
+
14
+ - IModelObject 补充 modelId、modelType 转换,满足开发态下跳转配置界面参数需求
15
+
10
16
  ## [0.1.8] - 2024-01-25
11
17
 
12
18
  ### Added
@@ -11,4 +11,20 @@ export interface IModelObject {
11
11
  name?: string;
12
12
  codeName?: string;
13
13
  userParam?: Record<string, string>;
14
+ /**
15
+ * 平台模型标识(只开发态生效)
16
+ *
17
+ * @author chitanda
18
+ * @date 2024-01-29 12:01:38
19
+ * @type {string}
20
+ */
21
+ modelId?: string;
22
+ /**
23
+ * 平台模型类型(只开发态生效)
24
+ *
25
+ * @author chitanda
26
+ * @date 2024-01-29 12:01:55
27
+ * @type {string}
28
+ */
29
+ modelType?: string;
14
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -15,4 +15,22 @@ export interface IModelObject {
15
15
  codeName?: string;
16
16
 
17
17
  userParam?: Record<string, string>;
18
+
19
+ /**
20
+ * 平台模型标识(只开发态生效)
21
+ *
22
+ * @author chitanda
23
+ * @date 2024-01-29 12:01:38
24
+ * @type {string}
25
+ */
26
+ modelId?: string;
27
+
28
+ /**
29
+ * 平台模型类型(只开发态生效)
30
+ *
31
+ * @author chitanda
32
+ * @date 2024-01-29 12:01:55
33
+ * @type {string}
34
+ */
35
+ modelType?: string;
18
36
  }