@ningboyz/apis 1.5.170 → 1.5.172
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/hzcb/types.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.172",
|
|
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.172",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/hzcb/types.ts
CHANGED
|
@@ -116,22 +116,26 @@ export interface IHzcbNdjhSelectdbQuerys {
|
|
|
116
116
|
sourcend: number;
|
|
117
117
|
withflow: number;
|
|
118
118
|
useronly: number;
|
|
119
|
+
showpath: number;
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
export class THzcbNdjhSelectdbQuerys implements IHzcbNdjhSelectdbQuerys {
|
|
122
123
|
sourcend: number = -1;
|
|
123
124
|
withflow: number = 0;
|
|
124
125
|
useronly: number = -1;
|
|
126
|
+
showpath: number = -1;
|
|
125
127
|
}
|
|
126
128
|
|
|
127
129
|
export interface IHzcbNdjhFinishedQuerys {
|
|
128
130
|
sourcend: number;
|
|
129
131
|
useronly: number;
|
|
132
|
+
showpath: number;
|
|
130
133
|
}
|
|
131
134
|
|
|
132
135
|
export class THzcbNdjhFinishedQuerys implements IHzcbNdjhFinishedQuerys {
|
|
133
136
|
sourcend: number = -1;
|
|
134
137
|
useronly: number = -1;
|
|
138
|
+
showpath: number = -1;
|
|
135
139
|
}
|
|
136
140
|
|
|
137
141
|
export interface IHzcbNdjhInsertdbQuerys {
|