@ningboyz/apis 1.2.162 → 1.2.163
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/hznj/xmys.ts +0 -0
- package/packages/hznk/type.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.163",
|
|
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.163",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
|
File without changes
|
package/packages/hznk/type.ts
CHANGED
|
@@ -398,19 +398,23 @@ export class THznkXmysDeletedbQuerys implements IHznkXmysDeletedbQuerys {
|
|
|
398
398
|
export interface IHznkFytqSelectdbQuerys {
|
|
399
399
|
sourcend: number;
|
|
400
400
|
withflow: number;
|
|
401
|
+
datatype: number;
|
|
401
402
|
}
|
|
402
403
|
|
|
403
404
|
export class THznkFytqSelectdbQuerys implements IHznkFytqSelectdbQuerys {
|
|
404
405
|
sourcend: number = -1;
|
|
405
406
|
withflow: number = -1;
|
|
407
|
+
datatype: number = -1;
|
|
406
408
|
}
|
|
407
409
|
|
|
408
410
|
export interface IHznkFytqFinishedQuerys {
|
|
409
411
|
sourcend: number;
|
|
412
|
+
datatype: number;
|
|
410
413
|
}
|
|
411
414
|
|
|
412
415
|
export class THznkFytqFinishedQuerys implements IHznkFytqFinishedQuerys {
|
|
413
416
|
sourcend: number = -1;
|
|
417
|
+
datatype: number = -1;
|
|
414
418
|
}
|
|
415
419
|
|
|
416
420
|
export interface IHznkFytqInsertdbQuerys {
|