@ningboyz/apis 1.2.116 → 1.2.118
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 +2 -2
- package/packages/card/index.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.118",
|
|
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.118",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/card/index.ts
CHANGED
|
@@ -14,6 +14,7 @@ import ZclbGblbRequest from "./zclbGblb";
|
|
|
14
14
|
import ZczjRequest from "./zczj";
|
|
15
15
|
import ZczjPropRequest from "./zczjProp";
|
|
16
16
|
import FwczRequest from "./fwcz";
|
|
17
|
+
import RoomRequest from "./room";
|
|
17
18
|
|
|
18
19
|
class CardRequest {
|
|
19
20
|
public gblb: GblbRequest;
|
|
@@ -31,6 +32,7 @@ class CardRequest {
|
|
|
31
32
|
public data: DataRequest;
|
|
32
33
|
public hyhb: HyhbRequest;
|
|
33
34
|
public fwcz: FwczRequest;
|
|
35
|
+
public room: RoomRequest;
|
|
34
36
|
|
|
35
37
|
constructor(config: IAxiosConfig) {
|
|
36
38
|
const request = createRequest(config);
|
|
@@ -49,6 +51,7 @@ class CardRequest {
|
|
|
49
51
|
this.data = new DataRequest(request);
|
|
50
52
|
this.hyhb = new HyhbRequest(request);
|
|
51
53
|
this.fwcz = new FwczRequest(request);
|
|
54
|
+
this.room = new RoomRequest(request);
|
|
52
55
|
}
|
|
53
56
|
}
|
|
54
57
|
|