@ibiz/model-core 0.1.6 → 0.1.8

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,18 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.8] - 2024-01-25
11
+
12
+ ### Added
13
+
14
+ - 新增文件上传 osscat 相关
15
+
16
+ ## [0.1.7] - 2024-01-24
17
+
18
+ ### Added
19
+
20
+ - IDEUIAction 补充 asyncAction 标识
21
+
10
22
  ## [0.1.6] - 2024-01-23
11
23
 
12
24
  ### Added
@@ -205,6 +205,12 @@ export interface IApplication extends IModelObject {
205
205
  * 来源 getCodeName
206
206
  */
207
207
  codeName?: string;
208
+ /**
209
+ * 默认对象存储分类
210
+ * @type {string}
211
+ * 来源 getDefaultOSSCat
212
+ */
213
+ defaultOSSCat?: string;
208
214
  /**
209
215
  * 动态系统模式
210
216
  * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
@@ -30,4 +30,10 @@ export interface IFileUploader extends IValueItemEditor {
30
30
  * 来源 getMinFileCount
31
31
  */
32
32
  minFileCount?: number;
33
+ /**
34
+ * 对象存储分类[OSSCAT]
35
+ * @type {string}
36
+ * 来源 getOSSCat
37
+ */
38
+ osscat?: string;
33
39
  }
@@ -6,6 +6,12 @@ import { IValueItemEditor } from './ivalue-item-editor';
6
6
  * @interface IPicture
7
7
  */
8
8
  export interface IPicture extends IValueItemEditor {
9
+ /**
10
+ * 对象存储分类[OSSCAT]
11
+ * @type {string}
12
+ * 来源 getOSSCat
13
+ */
14
+ osscat?: string;
9
15
  /**
10
16
  * 直接内容存储
11
17
  * @type {boolean}
@@ -25,7 +25,6 @@ export interface IDELogic extends IDELogicBase {
25
25
  /**
26
26
  * 监控事件
27
27
  * @type {string}
28
- * @default false
29
28
  * 来源 getEvents
30
29
  */
31
30
  events?: string;
@@ -30,6 +30,13 @@ export interface IDEUIAction extends IUIAction {
30
30
  * 来源 getPSDEOPPriv
31
31
  */
32
32
  deopprivId?: string;
33
+ /**
34
+ * 异步操作行为
35
+ * @type {boolean}
36
+ * @default false
37
+ * 来源 isAsyncAction
38
+ */
39
+ asyncAction?: boolean;
33
40
  /**
34
41
  * 先保存目标数据
35
42
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -242,6 +242,13 @@ export interface IApplication extends IModelObject {
242
242
  */
243
243
  codeName?: string;
244
244
 
245
+ /**
246
+ * 默认对象存储分类
247
+ * @type {string}
248
+ * 来源 getDefaultOSSCat
249
+ */
250
+ defaultOSSCat?: string;
251
+
245
252
  /**
246
253
  * 动态系统模式
247
254
  * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
@@ -34,4 +34,11 @@ export interface IFileUploader extends IValueItemEditor {
34
34
  * 来源 getMinFileCount
35
35
  */
36
36
  minFileCount?: number;
37
+
38
+ /**
39
+ * 对象存储分类[OSSCAT]
40
+ * @type {string}
41
+ * 来源 getOSSCat
42
+ */
43
+ osscat?: string;
37
44
  }
@@ -7,6 +7,13 @@ import { IValueItemEditor } from './ivalue-item-editor';
7
7
  * @interface IPicture
8
8
  */
9
9
  export interface IPicture extends IValueItemEditor {
10
+ /**
11
+ * 对象存储分类[OSSCAT]
12
+ * @type {string}
13
+ * 来源 getOSSCat
14
+ */
15
+ osscat?: string;
16
+
10
17
  /**
11
18
  * 直接内容存储
12
19
  * @type {boolean}
@@ -28,7 +28,6 @@ export interface IDELogic extends IDELogicBase {
28
28
  /**
29
29
  * 监控事件
30
30
  * @type {string}
31
- * @default false
32
31
  * 来源 getEvents
33
32
  */
34
33
  events?: string;
@@ -35,6 +35,14 @@ export interface IDEUIAction extends IUIAction {
35
35
  */
36
36
  deopprivId?: string;
37
37
 
38
+ /**
39
+ * 异步操作行为
40
+ * @type {boolean}
41
+ * @default false
42
+ * 来源 isAsyncAction
43
+ */
44
+ asyncAction?: boolean;
45
+
38
46
  /**
39
47
  * 先保存目标数据
40
48
  * @type {boolean}