@ningboyz/apis 1.2.79 → 1.2.80
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 -0
- package/package.json +2 -2
- package/packages/index.ts +1 -0
package/index.ts
CHANGED
|
@@ -13,6 +13,7 @@ import LoadRequest from "./packages/load";
|
|
|
13
13
|
import OcriRequest from "./packages/ocri";
|
|
14
14
|
import GrowRequest from "./packages/grow";
|
|
15
15
|
import TaskRequest from "./packages/task";
|
|
16
|
+
import TakeRequest from "./packages/take";
|
|
16
17
|
import GztbRequest from "./packages/gztb";
|
|
17
18
|
import AntvRequest from "./packages/antv";
|
|
18
19
|
import NotiRequest from "./packages/noti";
|
|
@@ -65,6 +66,7 @@ class Request {
|
|
|
65
66
|
public static zbhd: ZbhdRequest;
|
|
66
67
|
public static bill: BillRequest;
|
|
67
68
|
public static japz: JapzRequest;
|
|
69
|
+
public static take: TakeRequest;
|
|
68
70
|
|
|
69
71
|
public static createRequest(config: IAxiosConfig) {
|
|
70
72
|
this.core = new CoreRequest(config);
|
|
@@ -99,6 +101,7 @@ class Request {
|
|
|
99
101
|
this.zbhd = new ZbhdRequest(config);
|
|
100
102
|
this.bill = new BillRequest(config);
|
|
101
103
|
this.japz = new JapzRequest(config);
|
|
104
|
+
this.take = new TakeRequest(config);
|
|
102
105
|
}
|
|
103
106
|
}
|
|
104
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.80",
|
|
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.80",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|