@ningboyz/apis 1.6.90 → 1.6.91
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
|
@@ -37,6 +37,7 @@ import HznjRequest from "./packages/hznj";
|
|
|
37
37
|
import VaryRequest from "./packages/vary";
|
|
38
38
|
import TalkRequest from "./packages/talk";
|
|
39
39
|
import DingRequest from "./packages/ding";
|
|
40
|
+
import YzcqRequest from "./packages/yzcq";
|
|
40
41
|
|
|
41
42
|
class Request {
|
|
42
43
|
public static core: CoreRequest;
|
|
@@ -77,6 +78,7 @@ class Request {
|
|
|
77
78
|
public static vary: VaryRequest;
|
|
78
79
|
public static talk: TalkRequest;
|
|
79
80
|
public static ding: DingRequest;
|
|
81
|
+
public static yzcq: YzcqRequest;
|
|
80
82
|
|
|
81
83
|
public static createRequest(config: IAxiosConfig) {
|
|
82
84
|
this.core = new CoreRequest(config);
|
|
@@ -117,6 +119,7 @@ class Request {
|
|
|
117
119
|
this.vary = new VaryRequest(config);
|
|
118
120
|
this.talk = new TalkRequest(config);
|
|
119
121
|
this.ding = new DingRequest(config);
|
|
122
|
+
this.yzcq = new YzcqRequest(config);
|
|
120
123
|
}
|
|
121
124
|
}
|
|
122
125
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.91",
|
|
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.6.
|
|
20
|
+
"@ningboyz/types": "1.6.91",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/index.ts
CHANGED