@ibiz/model-core 0.0.25 → 0.0.26

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.0.26] - 2023-12-06
11
+
12
+ ### Changed
13
+
14
+ - 模型中 appId 改为非可选项
15
+
10
16
  ## [0.0.25] - 2023-12-06
11
17
 
12
18
  ### Added
@@ -6,7 +6,7 @@ export interface IModelObject {
6
6
  * @date 2023-04-19 22:04:16
7
7
  * @type {string}
8
8
  */
9
- appId?: string;
9
+ appId: string;
10
10
  id?: string;
11
11
  name?: string;
12
12
  codeName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -6,7 +6,7 @@ export interface IModelObject {
6
6
  * @date 2023-04-19 22:04:16
7
7
  * @type {string}
8
8
  */
9
- appId?: string;
9
+ appId: string;
10
10
 
11
11
  id?: string;
12
12