@cpzxrobot/sdk 1.3.101 → 1.3.102
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/types.d.ts +8 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -587,6 +587,14 @@ interface AlarmRuleThresholdConfig {
|
|
|
587
587
|
thresholdMin?: number;
|
|
588
588
|
/** 阈值最大值 */
|
|
589
589
|
thresholdMax?: number;
|
|
590
|
+
/** 报警触发最小日龄 */
|
|
591
|
+
enabledAgeMin?: number;
|
|
592
|
+
/** 报警触发最大日龄 */
|
|
593
|
+
enabledAgeMax?: number;
|
|
594
|
+
/** 是否开启离线报警 */
|
|
595
|
+
offlineAlert?: boolean;
|
|
596
|
+
/** 是否开启恢复报警 */
|
|
597
|
+
restoreAlert?: boolean;
|
|
590
598
|
}
|
|
591
599
|
|
|
592
600
|
/**
|