@ningboyz/apis 1.6.150 → 1.6.151
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.6.
|
|
3
|
+
"version": "1.6.151",
|
|
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.6.
|
|
20
|
+
"@ningboyz/types": "1.6.151",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/core/types.ts
CHANGED
|
@@ -1152,3 +1152,7 @@ export class TCoreUserUpdateIgnoreOnQuerys implements ICoreUserUpdateIgnoreOnQue
|
|
|
1152
1152
|
ignoreon: number = -1;
|
|
1153
1153
|
usermain: number = -1;
|
|
1154
1154
|
}
|
|
1155
|
+
|
|
1156
|
+
export interface ICoreUserSet4pathQuerys {}
|
|
1157
|
+
|
|
1158
|
+
export class TCoreUserSet4pathQuerys implements ICoreUserSet4pathQuerys {}
|
package/packages/core/user.ts
CHANGED
|
@@ -51,7 +51,8 @@ import {
|
|
|
51
51
|
ICoreUserListDeptdbQuerys,
|
|
52
52
|
ICoreUserGet4MobileQuerys,
|
|
53
53
|
ICoreUserUpdateDeviceOnQuerys,
|
|
54
|
-
ICoreUserUpdateIgnoreOnQuerys
|
|
54
|
+
ICoreUserUpdateIgnoreOnQuerys,
|
|
55
|
+
ICoreUserSet4pathQuerys
|
|
55
56
|
} from "./types";
|
|
56
57
|
|
|
57
58
|
class UserRequest {
|
|
@@ -653,6 +654,11 @@ class UserRequest {
|
|
|
653
654
|
get4asinside(querys: IEmptyQuerys, params: object) {
|
|
654
655
|
return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/asinside", querys, params);
|
|
655
656
|
}
|
|
657
|
+
|
|
658
|
+
//证件上传
|
|
659
|
+
set4path(querys: ICoreUserSet4pathQuerys, params: object) {
|
|
660
|
+
return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/userpath/set4path", querys, params);
|
|
661
|
+
}
|
|
656
662
|
}
|
|
657
663
|
|
|
658
664
|
export default UserRequest;
|
package/packages/wzpz/types.ts
CHANGED
|
@@ -26,12 +26,14 @@ export interface IWzpzTypeSelctdbQuerys {
|
|
|
26
26
|
sourcend: number;
|
|
27
27
|
sourceid: number;
|
|
28
28
|
typemain: number;
|
|
29
|
+
datatype: number;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
export class TWzpzTypeSelctdbQuerys implements IWzpzTypeSelctdbQuerys {
|
|
32
33
|
sourcend: number = -1;
|
|
33
34
|
sourceid: number = -1;
|
|
34
35
|
typemain: number = -1;
|
|
36
|
+
datatype: number = -1;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
export interface IWzpzTypeDetaildbQuerys {
|