@ningboyz/types 1.8.1 → 1.8.2
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 +1 -1
- package/src/core/index.ts +13 -1
- package/src/gzzd/index.ts +15 -1
package/package.json
CHANGED
package/src/core/index.ts
CHANGED
|
@@ -29,6 +29,10 @@ import { IUserSizeResponse, TUserSizeResponse } from "./IUserSizeResponse";
|
|
|
29
29
|
import { IUserSzdwResponse, TUserSzdwResponse } from "./IUserSzdwResponse";
|
|
30
30
|
import { IWebSocketResponse, TWebSocketResponse } from "./IWebSocketResponse";
|
|
31
31
|
import { IUserInfoResponse, TUserInfoResponse } from "./IUserInfoResponse";
|
|
32
|
+
import { IUserEducResponse, TUserEducResponse } from "./IUserEducResponse";
|
|
33
|
+
import { IUserPassResponse, TUserPassResponse } from "./IUserPassResponse";
|
|
34
|
+
import { IUserMembResponse, TUserMembResponse } from "./IUserMembResponse";
|
|
35
|
+
import { IUserDutyResponse, TUserDutyResponse } from "./IUserDutyResponse";
|
|
32
36
|
import { INhtfLineResponse, TNhtfLineResponse, INhtfDataResponse, TNhtfDataResponse, IRsDataResponse, TRsDataResponse } from "./INhtfDataResponse.ts";
|
|
33
37
|
|
|
34
38
|
export {
|
|
@@ -70,6 +74,10 @@ export {
|
|
|
70
74
|
TRsDataResponse,
|
|
71
75
|
TWithEXPDS,
|
|
72
76
|
TWithMYOA,
|
|
77
|
+
TUserEducResponse,
|
|
78
|
+
TUserPassResponse,
|
|
79
|
+
TUserMembResponse,
|
|
80
|
+
TUserDutyResponse,
|
|
73
81
|
// 接口
|
|
74
82
|
type IRsDataResponse,
|
|
75
83
|
type ICoreValidResponse,
|
|
@@ -107,6 +115,10 @@ export {
|
|
|
107
115
|
type INhtfLineResponse,
|
|
108
116
|
type INhtfDataResponse,
|
|
109
117
|
type WithEXPDS,
|
|
110
|
-
type WithMYOA
|
|
118
|
+
type WithMYOA,
|
|
119
|
+
type IUserEducResponse,
|
|
120
|
+
type IUserPassResponse,
|
|
121
|
+
type IUserMembResponse,
|
|
122
|
+
type IUserDutyResponse
|
|
111
123
|
};
|
|
112
124
|
|
package/src/gzzd/index.ts
CHANGED
|
@@ -3,5 +3,19 @@ import { IGzzdBillResponse, TGzzdBillResponse } from "./IGzzdBillResponse";
|
|
|
3
3
|
import { IGzzdLineResponse, TGzzdLineResponse } from "./IGzzdLineResponse";
|
|
4
4
|
import { ICellEditResponse, TCellEditResponse } from "./ICellEditResponse";
|
|
5
5
|
import { IGzzdP4PZResponse, TGzzdP4PZResponse } from "./IGzzdP4PZResponse";
|
|
6
|
+
import { IUserEditResponse, TUserEditResponse } from "./IUserEditResponse";
|
|
6
7
|
|
|
7
|
-
export {
|
|
8
|
+
export {
|
|
9
|
+
type IGzzdBillResponse,
|
|
10
|
+
type IGzzdLineResponse,
|
|
11
|
+
type IGzzdMainResponse,
|
|
12
|
+
type ICellEditResponse,
|
|
13
|
+
TCellEditResponse,
|
|
14
|
+
TGzzdBillResponse,
|
|
15
|
+
TGzzdLineResponse,
|
|
16
|
+
TGzzdMainResponse,
|
|
17
|
+
type IGzzdP4PZResponse,
|
|
18
|
+
TGzzdP4PZResponse,
|
|
19
|
+
type IUserEditResponse,
|
|
20
|
+
TUserEditResponse
|
|
21
|
+
};
|