@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,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
|
};
|