@ningboyz/apis 1.1.13 → 1.1.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
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.1.13",
20
+ "@ningboyz/types": "1.1.14",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -245,7 +245,7 @@ class MainRequest {
245
245
  * @returns
246
246
  */
247
247
  repairdb(querys: ICardMainRepairdbQuerys) {
248
- return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/repairdb", querys, null);
248
+ return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/repairdb", querys, undefined);
249
249
  }
250
250
  /**
251
251
  * 修复资产条码
@@ -253,7 +253,7 @@ class MainRequest {
253
253
  * @returns
254
254
  */
255
255
  repaird2(querys: ICardMainRepair2dbQuerys) {
256
- return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/repaird2", querys, null);
256
+ return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/repaird2", querys, undefined);
257
257
  }
258
258
  }
259
259