@ningboyz/types 1.4.164 → 1.4.165
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/package.json +1 -1
- package/src/const/index.ts +3 -1
- package/src/flow/IFlowNodeResponse.ts +2 -2
- package/src/flow/index.ts +14 -1
package/package.json
CHANGED
package/src/const/index.ts
CHANGED
|
@@ -32,6 +32,7 @@ import * as Vary from "./const_vary";
|
|
|
32
32
|
import * as ErrorKey from "./const_error_key";
|
|
33
33
|
import * as PageMode from "./const_page_mode";
|
|
34
34
|
import * as Read from "./const_read";
|
|
35
|
+
import * as Hznk from "./const_hznk";
|
|
35
36
|
|
|
36
37
|
export {
|
|
37
38
|
Align,
|
|
@@ -65,7 +66,8 @@ export {
|
|
|
65
66
|
Vary,
|
|
66
67
|
ErrorKey,
|
|
67
68
|
PageMode,
|
|
68
|
-
Read
|
|
69
|
+
Read,
|
|
70
|
+
Hznk
|
|
69
71
|
};
|
|
70
72
|
|
|
71
73
|
export type ModuleType = (typeof ConstModuleType)[keyof typeof ConstModuleType];
|
|
@@ -12,7 +12,7 @@ export interface pathTypeControl {
|
|
|
12
12
|
/** 是否可以拍摄上传附件 */
|
|
13
13
|
camera: boolean;
|
|
14
14
|
}
|
|
15
|
-
export interface
|
|
15
|
+
export interface IFlowNodeResponseNodeParaWithMYOA {
|
|
16
16
|
flowMain: number;
|
|
17
17
|
nodeIndx: number;
|
|
18
18
|
set4CardWhenReal: number;
|
|
@@ -20,7 +20,7 @@ export interface TFlowNodeResponseNodeParaWithMYOA {
|
|
|
20
20
|
whoBuild:number
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
export class TFlowNodeResponseNodeParaWithMYOA implements
|
|
23
|
+
export class TFlowNodeResponseNodeParaWithMYOA implements IFlowNodeResponseNodeParaWithMYOA {
|
|
24
24
|
flowMain: number = 0;
|
|
25
25
|
nodeIndx: number = 0;
|
|
26
26
|
set4CardWhenReal: number = 0;
|
package/src/flow/index.ts
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { IFlowDutyResponse, TFlowDutyResponse } from "./IFlowDutyResponse";
|
|
2
2
|
import { IFlowMainResponse, TFlowMainResponse } from "./IFlowMainResponse";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
IFlowNodeResponse,
|
|
5
|
+
IFlowNodeResponseNodeParaWithMYOA,
|
|
6
|
+
pathTypeControl,
|
|
7
|
+
IFlowNodeResponseNodePara,
|
|
8
|
+
TFlowNodeResponse,
|
|
9
|
+
TFlowNodeResponseNodePara,
|
|
10
|
+
TFlowNodeResponseNodeParaWithMYOA
|
|
11
|
+
} from "./IFlowNodeResponse";
|
|
4
12
|
import { IFlowVoidResponse, TFlowVoidResponse } from "./IFlowVoidResponse";
|
|
5
13
|
import { IFlowTypeResponse, TFlowTypeResponse } from "./IFlowTypeResponse";
|
|
6
14
|
import { IFlowCnfgResponse, TFlowCnfgResponse } from "./IFlowCnfgResponse";
|
|
@@ -18,11 +26,16 @@ export {
|
|
|
18
26
|
type IFlowUservoidResponse,
|
|
19
27
|
type IFlowVoidResponse,
|
|
20
28
|
type IFlowBillResponse,
|
|
29
|
+
type pathTypeControl,
|
|
30
|
+
type IFlowNodeResponseNodeParaWithMYOA,
|
|
31
|
+
type IFlowNodeResponseNodePara,
|
|
21
32
|
TFlowCnfgResponse,
|
|
22
33
|
TFlowDataResponse,
|
|
23
34
|
TFlowDutyResponse,
|
|
24
35
|
TFlowMainResponse,
|
|
25
36
|
TFlowNodeResponse,
|
|
37
|
+
TFlowNodeResponseNodeParaWithMYOA,
|
|
38
|
+
TFlowNodeResponseNodePara,
|
|
26
39
|
TFlowTypeResponse,
|
|
27
40
|
TFlowUservoidResponse,
|
|
28
41
|
TFlowVoidResponse,
|