@ningboyz/apis 1.5.95 → 1.5.96
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/noti/main.ts +2 -2
- package/packages/noti/types.ts +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.96",
|
|
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.5.
|
|
20
|
+
"@ningboyz/types": "1.5.96",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/noti/main.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TNoti } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
3
|
import { IEmptyQuerys } from "../type";
|
|
4
|
-
import { INotiMainAuditd2WithscczQuerys, INotiMainAuditd3WithscczQuerys, INotiMainDetaildbQuerys, INotiMainDetaildbWithscczQuerys, INotiMainFinishedQuerys, INotiMainFinishedWithscczQuerys, INotiMainGet4NotiQuerys, INotiMainGet4NotiWithscczQuerys, INotiMainInsertdb1Querys, INotiMainNextNodeWithscczQuerys, INotiMainReadplusQuerys, INotiMainSelectdbQuerys, INotiMainSelectdbWithscczQuerys } from "./types";
|
|
4
|
+
import { INotiMainAuditd2WithscczQuerys, INotiMainAuditd3WithscczQuerys, INotiMainAuditdbWithscczQuerys, INotiMainDetaildbQuerys, INotiMainDetaildbWithscczQuerys, INotiMainFinishedQuerys, INotiMainFinishedWithscczQuerys, INotiMainGet4NotiQuerys, INotiMainGet4NotiWithscczQuerys, INotiMainInsertdb1Querys, INotiMainNextNodeWithscczQuerys, INotiMainReadplusQuerys, INotiMainSelectdbQuerys, INotiMainSelectdbWithscczQuerys } from "./types";
|
|
5
5
|
|
|
6
6
|
class ParaRequest {
|
|
7
7
|
private httpRequest: HttpRequest;
|
|
@@ -116,7 +116,7 @@ class ParaRequest {
|
|
|
116
116
|
* @param params
|
|
117
117
|
* @returns
|
|
118
118
|
*/
|
|
119
|
-
auditdbwithsccz(querys:
|
|
119
|
+
auditdbwithsccz(querys: INotiMainAuditdbWithscczQuerys, params: object) {
|
|
120
120
|
return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/withsccz/auditdb", querys, params);
|
|
121
121
|
}
|
|
122
122
|
|
package/packages/noti/types.ts
CHANGED
|
@@ -108,9 +108,13 @@ export class TNotiMainDetaildbWithscczQuerys implements INotiMainDetaildbWithscc
|
|
|
108
108
|
notimain: number = -1;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
export interface INotiMainAuditdbWithscczQuerys {
|
|
111
|
+
export interface INotiMainAuditdbWithscczQuerys {
|
|
112
|
+
flowval5: number;
|
|
113
|
+
}
|
|
112
114
|
|
|
113
|
-
export class TNotiMainAuditdbWithscczQuerys implements INotiMainAuditdbWithscczQuerys {
|
|
115
|
+
export class TNotiMainAuditdbWithscczQuerys implements INotiMainAuditdbWithscczQuerys {
|
|
116
|
+
flowval5: number = 1;
|
|
117
|
+
}
|
|
114
118
|
|
|
115
119
|
export interface INotiMainAuditd2WithscczQuerys {
|
|
116
120
|
notimain: number;
|