@ningboyz/apis 1.0.91 → 1.0.92
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/packages/flow/index.ts +4 -2
package/package.json
CHANGED
package/packages/flow/index.ts
CHANGED
|
@@ -3,21 +3,23 @@ import MainRequest from "./main";
|
|
|
3
3
|
import NodeRequest from "./node";
|
|
4
4
|
import DutyRequest from "./duty";
|
|
5
5
|
import TFlowRequest from "./flow";
|
|
6
|
+
import VoidRequest from "./void";
|
|
6
7
|
|
|
7
8
|
class FlowRequest {
|
|
8
9
|
public main: MainRequest;
|
|
9
10
|
public node: NodeRequest;
|
|
10
11
|
public duty: DutyRequest;
|
|
11
12
|
public flow: TFlowRequest;
|
|
12
|
-
|
|
13
|
+
public void: VoidRequest;
|
|
13
14
|
constructor(config: IAxiosConfig) {
|
|
14
15
|
const request = createRequest(config);
|
|
15
16
|
this.main = new MainRequest(request);
|
|
16
17
|
this.node = new NodeRequest(request);
|
|
17
18
|
this.duty = new DutyRequest(request);
|
|
18
19
|
this.flow = new TFlowRequest(request);
|
|
20
|
+
this.void = new VoidRequest(request);
|
|
19
21
|
}
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
export default FlowRequest;
|
|
23
|
-
export * from "./type";
|
|
25
|
+
export * from "./type";
|