@gizone/rrs-client 4.1.0-alpha.120 → 4.1.0-alpha.122
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 +6 -6
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/result-code.d.ts +1 -0
- package/dist/esm/models/result-code.js +1 -0
- package/dist/esm/models/system-user-msg-source-type-enum.d.ts +2 -0
- package/dist/esm/models/system-user-msg-source-type-enum.js +3 -1
- package/dist/models/get-user-wx200-response.d.ts +6 -6
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/result-code.d.ts +1 -0
- package/dist/models/result-code.js +1 -0
- package/dist/models/system-user-msg-source-type-enum.d.ts +2 -0
- package/dist/models/system-user-msg-source-type-enum.js +3 -1
- package/models/get-user-wx200-response.ts +6 -6
- package/models/ipage-access-vo.ts +6 -6
- package/models/result-code.ts +1 -0
- package/models/system-user-msg-source-type-enum.ts +3 -1
- package/package.json +1 -1
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -35,6 +29,12 @@ export interface GetUserWx200Response {
|
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {object}
|
|
35
|
+
* @memberof GetUserWx200Response
|
|
36
|
+
*/
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -130,6 +130,7 @@ export declare const ResultCode: {
|
|
|
130
130
|
readonly OtherDataEnabled: "OTHER_DATA_ENABLED";
|
|
131
131
|
readonly IncorrectPassword: "INCORRECT_PASSWORD";
|
|
132
132
|
readonly IncorrectInspectionOrder: "INCORRECT_INSPECTION_ORDER";
|
|
133
|
+
readonly ThirdPartyFailure: "THIRD_PARTY_FAILURE";
|
|
133
134
|
readonly UnknownException: "UNKNOWN_EXCEPTION";
|
|
134
135
|
readonly RecordAlreadyExistsInTheDatabase: "RECORD_ALREADY_EXISTS_IN_THE_DATABASE";
|
|
135
136
|
readonly SqlException: "SQL_EXCEPTION";
|
|
@@ -132,6 +132,7 @@ export const ResultCode = {
|
|
|
132
132
|
OtherDataEnabled: 'OTHER_DATA_ENABLED',
|
|
133
133
|
IncorrectPassword: 'INCORRECT_PASSWORD',
|
|
134
134
|
IncorrectInspectionOrder: 'INCORRECT_INSPECTION_ORDER',
|
|
135
|
+
ThirdPartyFailure: 'THIRD_PARTY_FAILURE',
|
|
135
136
|
UnknownException: 'UNKNOWN_EXCEPTION',
|
|
136
137
|
RecordAlreadyExistsInTheDatabase: 'RECORD_ALREADY_EXISTS_IN_THE_DATABASE',
|
|
137
138
|
SqlException: 'SQL_EXCEPTION',
|
|
@@ -19,5 +19,7 @@ export declare const SystemUserMsgSourceTypeEnum: {
|
|
|
19
19
|
readonly ReportForRepairWorkOrder: "REPORT_FOR_REPAIR_WORK_ORDER";
|
|
20
20
|
readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
|
|
21
21
|
readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
|
|
22
|
+
readonly NetworkMonitoringRepairWorkOrder: "NETWORK_MONITORING_REPAIR_WORK_ORDER";
|
|
23
|
+
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
22
24
|
};
|
|
23
25
|
export type SystemUserMsgSourceTypeEnum = typeof SystemUserMsgSourceTypeEnum[keyof typeof SystemUserMsgSourceTypeEnum];
|
|
@@ -20,5 +20,7 @@ export const SystemUserMsgSourceTypeEnum = {
|
|
|
20
20
|
SystemNotice: 'SYSTEM_NOTICE',
|
|
21
21
|
ReportForRepairWorkOrder: 'REPORT_FOR_REPAIR_WORK_ORDER',
|
|
22
22
|
InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
|
|
23
|
-
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER'
|
|
23
|
+
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
|
|
24
|
+
NetworkMonitoringRepairWorkOrder: 'NETWORK_MONITORING_REPAIR_WORK_ORDER',
|
|
25
|
+
ViolationWorkOrder: 'VIOLATION_WORK_ORDER'
|
|
24
26
|
};
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -35,6 +29,12 @@ export interface GetUserWx200Response {
|
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {object}
|
|
35
|
+
* @memberof GetUserWx200Response
|
|
36
|
+
*/
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -130,6 +130,7 @@ export declare const ResultCode: {
|
|
|
130
130
|
readonly OtherDataEnabled: "OTHER_DATA_ENABLED";
|
|
131
131
|
readonly IncorrectPassword: "INCORRECT_PASSWORD";
|
|
132
132
|
readonly IncorrectInspectionOrder: "INCORRECT_INSPECTION_ORDER";
|
|
133
|
+
readonly ThirdPartyFailure: "THIRD_PARTY_FAILURE";
|
|
133
134
|
readonly UnknownException: "UNKNOWN_EXCEPTION";
|
|
134
135
|
readonly RecordAlreadyExistsInTheDatabase: "RECORD_ALREADY_EXISTS_IN_THE_DATABASE";
|
|
135
136
|
readonly SqlException: "SQL_EXCEPTION";
|
|
@@ -135,6 +135,7 @@ exports.ResultCode = {
|
|
|
135
135
|
OtherDataEnabled: 'OTHER_DATA_ENABLED',
|
|
136
136
|
IncorrectPassword: 'INCORRECT_PASSWORD',
|
|
137
137
|
IncorrectInspectionOrder: 'INCORRECT_INSPECTION_ORDER',
|
|
138
|
+
ThirdPartyFailure: 'THIRD_PARTY_FAILURE',
|
|
138
139
|
UnknownException: 'UNKNOWN_EXCEPTION',
|
|
139
140
|
RecordAlreadyExistsInTheDatabase: 'RECORD_ALREADY_EXISTS_IN_THE_DATABASE',
|
|
140
141
|
SqlException: 'SQL_EXCEPTION',
|
|
@@ -19,5 +19,7 @@ export declare const SystemUserMsgSourceTypeEnum: {
|
|
|
19
19
|
readonly ReportForRepairWorkOrder: "REPORT_FOR_REPAIR_WORK_ORDER";
|
|
20
20
|
readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
|
|
21
21
|
readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
|
|
22
|
+
readonly NetworkMonitoringRepairWorkOrder: "NETWORK_MONITORING_REPAIR_WORK_ORDER";
|
|
23
|
+
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
22
24
|
};
|
|
23
25
|
export type SystemUserMsgSourceTypeEnum = typeof SystemUserMsgSourceTypeEnum[keyof typeof SystemUserMsgSourceTypeEnum];
|
|
@@ -23,5 +23,7 @@ exports.SystemUserMsgSourceTypeEnum = {
|
|
|
23
23
|
SystemNotice: 'SYSTEM_NOTICE',
|
|
24
24
|
ReportForRepairWorkOrder: 'REPORT_FOR_REPAIR_WORK_ORDER',
|
|
25
25
|
InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
|
|
26
|
-
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER'
|
|
26
|
+
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
|
|
27
|
+
NetworkMonitoringRepairWorkOrder: 'NETWORK_MONITORING_REPAIR_WORK_ORDER',
|
|
28
|
+
ViolationWorkOrder: 'VIOLATION_WORK_ORDER'
|
|
27
29
|
};
|
|
@@ -26,12 +26,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
26
26
|
* @interface GetUserWx200Response
|
|
27
27
|
*/
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {object}
|
|
32
|
-
* @memberof GetUserWx200Response
|
|
33
|
-
*/
|
|
34
|
-
'trailerFields'?: object;
|
|
35
29
|
/**
|
|
36
30
|
*
|
|
37
31
|
* @type {number}
|
|
@@ -44,6 +38,12 @@ export interface GetUserWx200Response {
|
|
|
44
38
|
* @memberof GetUserWx200Response
|
|
45
39
|
*/
|
|
46
40
|
'headerNames'?: Array<string>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof GetUserWx200Response
|
|
45
|
+
*/
|
|
46
|
+
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {string}
|
|
@@ -43,23 +43,23 @@ export interface IPageAccessVO {
|
|
|
43
43
|
'records'?: Array<AccessVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageAccessVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
|
-
* @deprecated
|
|
55
54
|
*/
|
|
56
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
57
56
|
/**
|
|
58
57
|
*
|
|
59
58
|
* @type {boolean}
|
|
60
59
|
* @memberof IPageAccessVO
|
|
60
|
+
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'hitCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
package/models/result-code.ts
CHANGED
|
@@ -136,6 +136,7 @@ export const ResultCode = {
|
|
|
136
136
|
OtherDataEnabled: 'OTHER_DATA_ENABLED',
|
|
137
137
|
IncorrectPassword: 'INCORRECT_PASSWORD',
|
|
138
138
|
IncorrectInspectionOrder: 'INCORRECT_INSPECTION_ORDER',
|
|
139
|
+
ThirdPartyFailure: 'THIRD_PARTY_FAILURE',
|
|
139
140
|
UnknownException: 'UNKNOWN_EXCEPTION',
|
|
140
141
|
RecordAlreadyExistsInTheDatabase: 'RECORD_ALREADY_EXISTS_IN_THE_DATABASE',
|
|
141
142
|
SqlException: 'SQL_EXCEPTION',
|
|
@@ -24,7 +24,9 @@ export const SystemUserMsgSourceTypeEnum = {
|
|
|
24
24
|
SystemNotice: 'SYSTEM_NOTICE',
|
|
25
25
|
ReportForRepairWorkOrder: 'REPORT_FOR_REPAIR_WORK_ORDER',
|
|
26
26
|
InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
|
|
27
|
-
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER'
|
|
27
|
+
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
|
|
28
|
+
NetworkMonitoringRepairWorkOrder: 'NETWORK_MONITORING_REPAIR_WORK_ORDER',
|
|
29
|
+
ViolationWorkOrder: 'VIOLATION_WORK_ORDER'
|
|
28
30
|
} as const;
|
|
29
31
|
|
|
30
32
|
export type SystemUserMsgSourceTypeEnum = typeof SystemUserMsgSourceTypeEnum[keyof typeof SystemUserMsgSourceTypeEnum];
|