@gizone/rrs-client 4.1.3-alpha.194 → 4.1.3-alpha.196
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/.openapi-generator/FILES +1 -0
- package/apis/surveillance-api.ts +86 -36
- package/apis/surveillance-settings-api.ts +47 -14
- package/dist/apis/surveillance-api.d.ts +57 -24
- package/dist/apis/surveillance-api.js +38 -22
- package/dist/apis/surveillance-settings-api.d.ts +31 -6
- package/dist/apis/surveillance-settings-api.js +26 -14
- package/dist/esm/apis/surveillance-api.d.ts +57 -24
- package/dist/esm/apis/surveillance-api.js +38 -22
- package/dist/esm/apis/surveillance-settings-api.d.ts +31 -6
- package/dist/esm/apis/surveillance-settings-api.js +26 -14
- package/dist/esm/models/get-user-wx200-response.d.ts +8 -8
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/ipage-access-vo.d.ts +8 -8
- package/dist/esm/models/surveillance-screen-layout-enum.d.ts +23 -0
- package/dist/esm/models/surveillance-screen-layout-enum.js +24 -0
- package/dist/esm/models/surveillance-settings-polling-dto.d.ts +7 -0
- package/dist/esm/models/surveillance-settings-polling-vo.d.ts +9 -2
- package/dist/esm/models/surveillance.d.ts +2 -2
- package/dist/esm/models/work-order-settings-type-enum.d.ts +1 -0
- package/dist/esm/models/work-order-settings-type-enum.js +2 -1
- package/dist/esm/models/work-order-type-enum.d.ts +1 -0
- package/dist/esm/models/work-order-type-enum.js +2 -1
- package/dist/models/get-user-wx200-response.d.ts +8 -8
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/ipage-access-vo.d.ts +8 -8
- package/dist/models/surveillance-screen-layout-enum.d.ts +23 -0
- package/dist/models/surveillance-screen-layout-enum.js +27 -0
- package/dist/models/surveillance-settings-polling-dto.d.ts +7 -0
- package/dist/models/surveillance-settings-polling-vo.d.ts +9 -2
- package/dist/models/surveillance.d.ts +2 -2
- package/dist/models/work-order-settings-type-enum.d.ts +1 -0
- package/dist/models/work-order-settings-type-enum.js +2 -1
- package/dist/models/work-order-type-enum.d.ts +1 -0
- package/dist/models/work-order-type-enum.js +2 -1
- package/models/get-user-wx200-response.ts +8 -8
- package/models/index.ts +1 -0
- package/models/ipage-access-vo.ts +8 -8
- package/models/surveillance-screen-layout-enum.ts +33 -0
- package/models/surveillance-settings-polling-dto.ts +11 -0
- package/models/surveillance-settings-polling-vo.ts +13 -2
- package/models/surveillance.ts +2 -2
- package/models/work-order-settings-type-enum.ts +2 -1
- package/models/work-order-type-enum.ts +2 -1
- package/package.json +1 -1
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
18
|
import type { Surveillance } from './surveillance';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
|
|
19
22
|
|
|
20
23
|
/**
|
|
21
24
|
* 监控设置轮询VO
|
|
@@ -28,12 +31,20 @@ export interface SurveillanceSettingsPollingVo {
|
|
|
28
31
|
* @type {number}
|
|
29
32
|
* @memberof SurveillanceSettingsPollingVo
|
|
30
33
|
*/
|
|
31
|
-
'intervalTime'
|
|
34
|
+
'intervalTime': number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {SurveillanceScreenLayoutEnum}
|
|
38
|
+
* @memberof SurveillanceSettingsPollingVo
|
|
39
|
+
*/
|
|
40
|
+
'screenLayout': SurveillanceScreenLayoutEnum;
|
|
32
41
|
/**
|
|
33
42
|
* 监控列表
|
|
34
43
|
* @type {Array<Surveillance>}
|
|
35
44
|
* @memberof SurveillanceSettingsPollingVo
|
|
36
45
|
*/
|
|
37
|
-
'surveillanceList'
|
|
46
|
+
'surveillanceList': Array<Surveillance>;
|
|
38
47
|
}
|
|
39
48
|
|
|
49
|
+
|
|
50
|
+
|
package/models/surveillance.ts
CHANGED
|
@@ -25,12 +25,12 @@ export interface Surveillance {
|
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof Surveillance
|
|
27
27
|
*/
|
|
28
|
-
'sort'
|
|
28
|
+
'sort': number;
|
|
29
29
|
/**
|
|
30
30
|
* 监控id
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof Surveillance
|
|
33
33
|
*/
|
|
34
|
-
'surveillanceId'
|
|
34
|
+
'surveillanceId': number;
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -27,7 +27,8 @@ export const WorkOrderSettingsTypeEnum = {
|
|
|
27
27
|
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
|
|
28
28
|
NetworkMonitorRepairWorkOrder: 'NETWORK_MONITOR_REPAIR_WORK_ORDER',
|
|
29
29
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
30
|
-
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER'
|
|
30
|
+
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
31
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
31
32
|
} as const;
|
|
32
33
|
|
|
33
34
|
export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
|
|
@@ -38,7 +38,8 @@ export const WorkOrderTypeEnum = {
|
|
|
38
38
|
AiInspection: 'AI_INSPECTION',
|
|
39
39
|
NetworkRepairWorkOrder: 'NETWORK_REPAIR_WORK_ORDER',
|
|
40
40
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
41
|
-
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER'
|
|
41
|
+
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
42
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
42
43
|
} as const;
|
|
43
44
|
|
|
44
45
|
export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
|