@etsoo/smarterp-core 1.1.73 → 1.1.74

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.
@@ -1,3 +1,4 @@
1
+ import { CustomFieldData } from "@etsoo/appscript";
1
2
  /**
2
3
  * Document list data
3
4
  * 文档列表数据
@@ -13,4 +14,9 @@ export type DocumentListData = {
13
14
  * 标题
14
15
  */
15
16
  title: string;
17
+ /**
18
+ * Parameters fields
19
+ * 自定义参数字段
20
+ */
21
+ parameters?: CustomFieldData[];
16
22
  };
@@ -1,3 +1,4 @@
1
+ import { CustomFieldData } from "@etsoo/appscript";
1
2
  /**
2
3
  * Document list data
3
4
  * 文档列表数据
@@ -13,4 +14,9 @@ export type DocumentListData = {
13
14
  * 标题
14
15
  */
15
16
  title: string;
17
+ /**
18
+ * Parameters fields
19
+ * 自定义参数字段
20
+ */
21
+ parameters?: CustomFieldData[];
16
22
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/smarterp-core",
3
- "version": "1.1.73",
3
+ "version": "1.1.74",
4
4
  "description": "TypeScript APIs for SmartERP Core",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -1,3 +1,5 @@
1
+ import { CustomFieldData } from "@etsoo/appscript";
2
+
1
3
  /**
2
4
  * Document list data
3
5
  * 文档列表数据
@@ -14,4 +16,10 @@ export type DocumentListData = {
14
16
  * 标题
15
17
  */
16
18
  title: string;
19
+
20
+ /**
21
+ * Parameters fields
22
+ * 自定义参数字段
23
+ */
24
+ parameters?: CustomFieldData[];
17
25
  };