@ningboyz/apis 1.2.75 → 1.2.76
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/core/skdw.ts +0 -8
- package/packages/core/types.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.76",
|
|
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.76",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/core/skdw.ts
CHANGED
|
@@ -44,14 +44,6 @@ class SkdwRequest {
|
|
|
44
44
|
deletedb(querys: IEmptyQuerys, params: object) {
|
|
45
45
|
return this.httpRequest.post<TCore.IUserAcnoResponse[]>("/core/tskdw/deletedb", querys, params);
|
|
46
46
|
}
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* 银行账号详情
|
|
50
|
-
* @returns
|
|
51
|
-
*/
|
|
52
|
-
detaildb(querys: IEmptyQuerys, params: object) {
|
|
53
|
-
return this.httpRequest.post<TCore.IUserAcnoResponse[]>("/core/tskdw/detaildb", querys, params);
|
|
54
|
-
}
|
|
55
47
|
}
|
|
56
48
|
|
|
57
49
|
export default SkdwRequest;
|
package/packages/core/types.ts
CHANGED
|
@@ -529,14 +529,14 @@ export class TCoreUserScanloginQuerys implements ICoreUserScanloginQuerys {
|
|
|
529
529
|
}
|
|
530
530
|
|
|
531
531
|
export interface ICoreUserVerifydbAuthcodeQuerys {
|
|
532
|
+
authcode: string;
|
|
532
533
|
appid: string;
|
|
533
|
-
code: string;
|
|
534
534
|
}
|
|
535
535
|
|
|
536
536
|
|
|
537
537
|
export class TCoreUserVerifydbAuthcodeQuerys implements ICoreUserVerifydbAuthcodeQuerys {
|
|
538
|
+
authcode: string = "";
|
|
538
539
|
appid: string = "";
|
|
539
|
-
code: string = "";
|
|
540
540
|
}
|
|
541
541
|
export interface ICoreUserVerifydbDingdingQuerys {
|
|
542
542
|
thirdapp: "DD" | "SSO" | "";
|