@ningboyz/apis 1.2.86 → 1.2.87
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/index.ts +3 -1
- package/package.json +2 -2
package/index.ts
CHANGED
|
@@ -32,6 +32,7 @@ import WlzfRequest from "./packages/wlzf";
|
|
|
32
32
|
import ZbhdRequest from "./packages/zbhd";
|
|
33
33
|
import BillRequest from "./packages/bill";
|
|
34
34
|
import JapzRequest from "./packages/japz";
|
|
35
|
+
import HznkRequest from "./packages/hznk";
|
|
35
36
|
|
|
36
37
|
class Request {
|
|
37
38
|
public static core: CoreRequest;
|
|
@@ -67,7 +68,7 @@ class Request {
|
|
|
67
68
|
public static bill: BillRequest;
|
|
68
69
|
public static japz: JapzRequest;
|
|
69
70
|
public static take: TakeRequest;
|
|
70
|
-
|
|
71
|
+
public static hznk: HznkRequest;
|
|
71
72
|
public static createRequest(config: IAxiosConfig) {
|
|
72
73
|
this.core = new CoreRequest(config);
|
|
73
74
|
this.flow = new FLowRequest(config);
|
|
@@ -102,6 +103,7 @@ class Request {
|
|
|
102
103
|
this.bill = new BillRequest(config);
|
|
103
104
|
this.japz = new JapzRequest(config);
|
|
104
105
|
this.take = new TakeRequest(config);
|
|
106
|
+
this.hznk = new HznkRequest(config);
|
|
105
107
|
}
|
|
106
108
|
}
|
|
107
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.87",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政请求库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ningboyz/types": "1.2.
|
|
20
|
+
"@ningboyz/types": "1.2.87",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|