@gizone/rrs-client 4.1.0-alpha.131 → 4.1.0-alpha.133
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/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/ipage-access-vo.d.ts +4 -4
- package/dist/esm/models/result-code.d.ts +1 -0
- package/dist/esm/models/result-code.js +1 -0
- package/dist/esm/models/work-order-report-vo.d.ts +2 -2
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/ipage-access-vo.d.ts +4 -4
- package/dist/models/result-code.d.ts +1 -0
- package/dist/models/result-code.js +1 -0
- package/dist/models/work-order-report-vo.d.ts +2 -2
- package/models/get-user-wx200-response.ts +10 -10
- package/models/ipage-access-vo.ts +4 -4
- package/models/result-code.ts +1 -0
- package/models/work-order-report-vo.ts +2 -2
- package/package.json +1 -1
|
@@ -19,22 +19,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {number}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'status'?: number;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {Array<string>}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'headerNames'?: Array<string>;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {object}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
37
|
'trailerFields'?: object;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {GetUserWx200ResponseLocale}
|
|
41
|
+
* @memberof GetUserWx200Response
|
|
42
|
+
*/
|
|
43
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
38
44
|
/**
|
|
39
45
|
*
|
|
40
46
|
* @type {string}
|
|
@@ -53,12 +59,6 @@ export interface GetUserWx200Response {
|
|
|
53
59
|
* @memberof GetUserWx200Response
|
|
54
60
|
*/
|
|
55
61
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {GetUserWx200ResponseLocale}
|
|
59
|
-
* @memberof GetUserWx200Response
|
|
60
|
-
*/
|
|
61
|
-
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
64
|
* @type {number}
|
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {number}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {boolean}
|
|
@@ -131,6 +131,7 @@ export declare const ResultCode: {
|
|
|
131
131
|
readonly IncorrectPassword: "INCORRECT_PASSWORD";
|
|
132
132
|
readonly IncorrectInspectionOrder: "INCORRECT_INSPECTION_ORDER";
|
|
133
133
|
readonly ThirdPartyFailure: "THIRD_PARTY_FAILURE";
|
|
134
|
+
readonly WorkOrderIssueType: "WORK_ORDER_ISSUE_TYPE";
|
|
134
135
|
readonly UnknownException: "UNKNOWN_EXCEPTION";
|
|
135
136
|
readonly RecordAlreadyExistsInTheDatabase: "RECORD_ALREADY_EXISTS_IN_THE_DATABASE";
|
|
136
137
|
readonly SqlException: "SQL_EXCEPTION";
|
|
@@ -133,6 +133,7 @@ export const ResultCode = {
|
|
|
133
133
|
IncorrectPassword: 'INCORRECT_PASSWORD',
|
|
134
134
|
IncorrectInspectionOrder: 'INCORRECT_INSPECTION_ORDER',
|
|
135
135
|
ThirdPartyFailure: 'THIRD_PARTY_FAILURE',
|
|
136
|
+
WorkOrderIssueType: 'WORK_ORDER_ISSUE_TYPE',
|
|
136
137
|
UnknownException: 'UNKNOWN_EXCEPTION',
|
|
137
138
|
RecordAlreadyExistsInTheDatabase: 'RECORD_ALREADY_EXISTS_IN_THE_DATABASE',
|
|
138
139
|
SqlException: 'SQL_EXCEPTION',
|
|
@@ -28,11 +28,11 @@ export interface WorkOrderReportVo {
|
|
|
28
28
|
* @type {number}
|
|
29
29
|
* @memberof WorkOrderReportVo
|
|
30
30
|
*/
|
|
31
|
-
'handlerUserId'
|
|
31
|
+
'handlerUserId'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {OfflineAlertWorkOrderVo}
|
|
35
35
|
* @memberof WorkOrderReportVo
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'offlineAlertWorkOrder'?: OfflineAlertWorkOrderVo;
|
|
38
38
|
}
|
|
@@ -19,22 +19,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {number}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'status'?: number;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {Array<string>}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'headerNames'?: Array<string>;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {object}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
37
|
'trailerFields'?: object;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {GetUserWx200ResponseLocale}
|
|
41
|
+
* @memberof GetUserWx200Response
|
|
42
|
+
*/
|
|
43
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
38
44
|
/**
|
|
39
45
|
*
|
|
40
46
|
* @type {string}
|
|
@@ -53,12 +59,6 @@ export interface GetUserWx200Response {
|
|
|
53
59
|
* @memberof GetUserWx200Response
|
|
54
60
|
*/
|
|
55
61
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {GetUserWx200ResponseLocale}
|
|
59
|
-
* @memberof GetUserWx200Response
|
|
60
|
-
*/
|
|
61
|
-
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
64
|
* @type {number}
|
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {number}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {boolean}
|
|
@@ -131,6 +131,7 @@ export declare const ResultCode: {
|
|
|
131
131
|
readonly IncorrectPassword: "INCORRECT_PASSWORD";
|
|
132
132
|
readonly IncorrectInspectionOrder: "INCORRECT_INSPECTION_ORDER";
|
|
133
133
|
readonly ThirdPartyFailure: "THIRD_PARTY_FAILURE";
|
|
134
|
+
readonly WorkOrderIssueType: "WORK_ORDER_ISSUE_TYPE";
|
|
134
135
|
readonly UnknownException: "UNKNOWN_EXCEPTION";
|
|
135
136
|
readonly RecordAlreadyExistsInTheDatabase: "RECORD_ALREADY_EXISTS_IN_THE_DATABASE";
|
|
136
137
|
readonly SqlException: "SQL_EXCEPTION";
|
|
@@ -136,6 +136,7 @@ exports.ResultCode = {
|
|
|
136
136
|
IncorrectPassword: 'INCORRECT_PASSWORD',
|
|
137
137
|
IncorrectInspectionOrder: 'INCORRECT_INSPECTION_ORDER',
|
|
138
138
|
ThirdPartyFailure: 'THIRD_PARTY_FAILURE',
|
|
139
|
+
WorkOrderIssueType: 'WORK_ORDER_ISSUE_TYPE',
|
|
139
140
|
UnknownException: 'UNKNOWN_EXCEPTION',
|
|
140
141
|
RecordAlreadyExistsInTheDatabase: 'RECORD_ALREADY_EXISTS_IN_THE_DATABASE',
|
|
141
142
|
SqlException: 'SQL_EXCEPTION',
|
|
@@ -28,11 +28,11 @@ export interface WorkOrderReportVo {
|
|
|
28
28
|
* @type {number}
|
|
29
29
|
* @memberof WorkOrderReportVo
|
|
30
30
|
*/
|
|
31
|
-
'handlerUserId'
|
|
31
|
+
'handlerUserId'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {OfflineAlertWorkOrderVo}
|
|
35
35
|
* @memberof WorkOrderReportVo
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'offlineAlertWorkOrder'?: OfflineAlertWorkOrderVo;
|
|
38
38
|
}
|
|
@@ -28,22 +28,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {number}
|
|
32
32
|
* @memberof GetUserWx200Response
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'status'?: number;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {Array<string>}
|
|
38
38
|
* @memberof GetUserWx200Response
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'headerNames'?: Array<string>;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {object}
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
46
|
'trailerFields'?: object;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {GetUserWx200ResponseLocale}
|
|
50
|
+
* @memberof GetUserWx200Response
|
|
51
|
+
*/
|
|
52
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
47
53
|
/**
|
|
48
54
|
*
|
|
49
55
|
* @type {string}
|
|
@@ -62,12 +68,6 @@ export interface GetUserWx200Response {
|
|
|
62
68
|
* @memberof GetUserWx200Response
|
|
63
69
|
*/
|
|
64
70
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {GetUserWx200ResponseLocale}
|
|
68
|
-
* @memberof GetUserWx200Response
|
|
69
|
-
*/
|
|
70
|
-
'locale'?: GetUserWx200ResponseLocale;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
73
|
* @type {number}
|
|
@@ -31,16 +31,16 @@ export interface IPageAccessVO {
|
|
|
31
31
|
'total'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {number}
|
|
35
35
|
* @memberof IPageAccessVO
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'current'?: number;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {Array<AccessVO>}
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'records'?: Array<AccessVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {boolean}
|
package/models/result-code.ts
CHANGED
|
@@ -137,6 +137,7 @@ export const ResultCode = {
|
|
|
137
137
|
IncorrectPassword: 'INCORRECT_PASSWORD',
|
|
138
138
|
IncorrectInspectionOrder: 'INCORRECT_INSPECTION_ORDER',
|
|
139
139
|
ThirdPartyFailure: 'THIRD_PARTY_FAILURE',
|
|
140
|
+
WorkOrderIssueType: 'WORK_ORDER_ISSUE_TYPE',
|
|
140
141
|
UnknownException: 'UNKNOWN_EXCEPTION',
|
|
141
142
|
RecordAlreadyExistsInTheDatabase: 'RECORD_ALREADY_EXISTS_IN_THE_DATABASE',
|
|
142
143
|
SqlException: 'SQL_EXCEPTION',
|
|
@@ -37,13 +37,13 @@ export interface WorkOrderReportVo {
|
|
|
37
37
|
* @type {number}
|
|
38
38
|
* @memberof WorkOrderReportVo
|
|
39
39
|
*/
|
|
40
|
-
'handlerUserId'
|
|
40
|
+
'handlerUserId'?: number;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {OfflineAlertWorkOrderVo}
|
|
44
44
|
* @memberof WorkOrderReportVo
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'offlineAlertWorkOrder'?: OfflineAlertWorkOrderVo;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
|