mclimate-payload-helper 1.2.15 → 1.2.17

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.
@@ -209,6 +209,13 @@ declare const GeneralCommandSchemas: {
209
209
  }, {
210
210
  commandNumber?: string | undefined;
211
211
  }>;
212
+ getDeviceVersion: z.ZodObject<{
213
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
214
+ }, "strip", z.ZodTypeAny, {
215
+ commandNumber: string;
216
+ }, {
217
+ commandNumber?: string | undefined;
218
+ }>;
212
219
  setJoinRetryPeriod: z.ZodObject<{
213
220
  period: z.ZodNumber;
214
221
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -314,6 +321,13 @@ declare const TemperatureCommandSchemas: {
314
321
  max: number;
315
322
  commandNumber?: string | undefined;
316
323
  }>;
324
+ getTemperatureRange: z.ZodObject<{
325
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
326
+ }, "strip", z.ZodTypeAny, {
327
+ commandNumber: string;
328
+ }, {
329
+ commandNumber?: string | undefined;
330
+ }>;
317
331
  getTargetTemperature: z.ZodObject<{
318
332
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
319
333
  }, "strip", z.ZodTypeAny, {
@@ -685,6 +699,13 @@ declare const VickiCommandSchemas: {
685
699
  Boundary3: number;
686
700
  commandNumber?: string | undefined;
687
701
  }>;
702
+ getBatteryRangesBoundaries: z.ZodObject<{
703
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
704
+ }, "strip", z.ZodTypeAny, {
705
+ commandNumber: string;
706
+ }, {
707
+ commandNumber?: string | undefined;
708
+ }>;
688
709
  setBatteryRangesOverVoltage: z.ZodObject<{
689
710
  Range1: z.ZodNumber;
690
711
  Range2: z.ZodNumber;
@@ -701,6 +722,13 @@ declare const VickiCommandSchemas: {
701
722
  Range3: number;
702
723
  commandNumber?: string | undefined;
703
724
  }>;
725
+ getBatteryRangesOverVoltage: z.ZodObject<{
726
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
727
+ }, "strip", z.ZodTypeAny, {
728
+ commandNumber: string;
729
+ }, {
730
+ commandNumber?: string | undefined;
731
+ }>;
704
732
  setOvac: z.ZodObject<{
705
733
  ovac: z.ZodNumber;
706
734
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1076,6 +1104,13 @@ declare const VickiCommandSchemas: {
1076
1104
  };
1077
1105
  commandNumber?: string | undefined;
1078
1106
  }>;
1107
+ getHeatingEvent: z.ZodObject<{
1108
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1109
+ }, "strip", z.ZodTypeAny, {
1110
+ commandNumber: string;
1111
+ }, {
1112
+ commandNumber?: string | undefined;
1113
+ }>;
1079
1114
  setHeatingEventState: z.ZodObject<{
1080
1115
  eventIndex: z.ZodNumber;
1081
1116
  active: z.ZodBoolean;
@@ -1089,6 +1124,13 @@ declare const VickiCommandSchemas: {
1089
1124
  active: boolean;
1090
1125
  commandNumber?: string | undefined;
1091
1126
  }>;
1127
+ getHeatingEventState: z.ZodObject<{
1128
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1129
+ }, "strip", z.ZodTypeAny, {
1130
+ commandNumber: string;
1131
+ }, {
1132
+ commandNumber?: string | undefined;
1133
+ }>;
1092
1134
  setTimeRequestByMACcommand: z.ZodObject<{
1093
1135
  enabled: z.ZodBoolean;
1094
1136
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1099,6 +1141,13 @@ declare const VickiCommandSchemas: {
1099
1141
  enabled: boolean;
1100
1142
  commandNumber?: string | undefined;
1101
1143
  }>;
1144
+ getTimeRequestByMACcommand: z.ZodObject<{
1145
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1146
+ }, "strip", z.ZodTypeAny, {
1147
+ commandNumber: string;
1148
+ }, {
1149
+ commandNumber?: string | undefined;
1150
+ }>;
1102
1151
  setHeatingSchedule: z.ZodObject<{
1103
1152
  startMonth: z.ZodNumber;
1104
1153
  startDay: z.ZodNumber;
@@ -1118,6 +1167,13 @@ declare const VickiCommandSchemas: {
1118
1167
  endDay: number;
1119
1168
  commandNumber?: string | undefined;
1120
1169
  }>;
1170
+ getHeatingSchedule: z.ZodObject<{
1171
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1172
+ }, "strip", z.ZodTypeAny, {
1173
+ commandNumber: string;
1174
+ }, {
1175
+ commandNumber?: string | undefined;
1176
+ }>;
1121
1177
  setDeviceTime: z.ZodObject<{
1122
1178
  timestamp: z.ZodNumber;
1123
1179
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1128,6 +1184,13 @@ declare const VickiCommandSchemas: {
1128
1184
  timestamp: number;
1129
1185
  commandNumber?: string | undefined;
1130
1186
  }>;
1187
+ getDeviceTime: z.ZodObject<{
1188
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1189
+ }, "strip", z.ZodTypeAny, {
1190
+ commandNumber: string;
1191
+ }, {
1192
+ commandNumber?: string | undefined;
1193
+ }>;
1131
1194
  setDeviceTimeZone: z.ZodObject<{
1132
1195
  offsetHours: z.ZodNumber;
1133
1196
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1138,6 +1201,13 @@ declare const VickiCommandSchemas: {
1138
1201
  offsetHours: number;
1139
1202
  commandNumber?: string | undefined;
1140
1203
  }>;
1204
+ getDeviceTimeZone: z.ZodObject<{
1205
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1206
+ }, "strip", z.ZodTypeAny, {
1207
+ commandNumber: string;
1208
+ }, {
1209
+ commandNumber?: string | undefined;
1210
+ }>;
1141
1211
  setAutomaticSetpointRestore: z.ZodObject<{
1142
1212
  time: z.ZodNumber;
1143
1213
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1148,6 +1218,13 @@ declare const VickiCommandSchemas: {
1148
1218
  time: number;
1149
1219
  commandNumber?: string | undefined;
1150
1220
  }>;
1221
+ getAutomaticSetpointRestore: z.ZodObject<{
1222
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1223
+ }, "strip", z.ZodTypeAny, {
1224
+ commandNumber: string;
1225
+ }, {
1226
+ commandNumber?: string | undefined;
1227
+ }>;
1151
1228
  setOfflineTargetTemperature: z.ZodObject<{
1152
1229
  targetTemperature: z.ZodUnion<[z.ZodLiteral<0>, z.ZodNumber]>;
1153
1230
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1158,6 +1235,13 @@ declare const VickiCommandSchemas: {
1158
1235
  targetTemperature: number;
1159
1236
  commandNumber?: string | undefined;
1160
1237
  }>;
1238
+ getOfflineTargetTemperature: z.ZodObject<{
1239
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1240
+ }, "strip", z.ZodTypeAny, {
1241
+ commandNumber: string;
1242
+ }, {
1243
+ commandNumber?: string | undefined;
1244
+ }>;
1161
1245
  setInternalAlgoTemporaryState: z.ZodObject<{
1162
1246
  enabled: z.ZodBoolean;
1163
1247
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1168,6 +1252,13 @@ declare const VickiCommandSchemas: {
1168
1252
  enabled: boolean;
1169
1253
  commandNumber?: string | undefined;
1170
1254
  }>;
1255
+ getInternalAlgoTemporaryState: z.ZodObject<{
1256
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1257
+ }, "strip", z.ZodTypeAny, {
1258
+ commandNumber: string;
1259
+ }, {
1260
+ commandNumber?: string | undefined;
1261
+ }>;
1171
1262
  setTemperatureLevels: z.ZodObject<{
1172
1263
  scaleLevel0: z.ZodNumber;
1173
1264
  scaleLevel1: z.ZodNumber;
@@ -1193,6 +1284,13 @@ declare const VickiCommandSchemas: {
1193
1284
  scaleLevel5: number;
1194
1285
  commandNumber?: string | undefined;
1195
1286
  }>;
1287
+ getTemperatureLevels: z.ZodObject<{
1288
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1289
+ }, "strip", z.ZodTypeAny, {
1290
+ commandNumber: string;
1291
+ }, {
1292
+ commandNumber?: string | undefined;
1293
+ }>;
1196
1294
  setLedIndicationDuration: z.ZodObject<{
1197
1295
  duration: z.ZodNumber;
1198
1296
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1203,6 +1301,13 @@ declare const VickiCommandSchemas: {
1203
1301
  duration: number;
1204
1302
  commandNumber?: string | undefined;
1205
1303
  }>;
1304
+ getLedIndicationDuration: z.ZodObject<{
1305
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1306
+ }, "strip", z.ZodTypeAny, {
1307
+ commandNumber: string;
1308
+ }, {
1309
+ commandNumber?: string | undefined;
1310
+ }>;
1206
1311
  setChildLock: z.ZodObject<{
1207
1312
  enabled: z.ZodBoolean;
1208
1313
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1233,6 +1338,13 @@ declare const VickiCommandSchemas: {
1233
1338
  max: number;
1234
1339
  commandNumber?: string | undefined;
1235
1340
  }>;
1341
+ getTemperatureRange: z.ZodObject<{
1342
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1343
+ }, "strip", z.ZodTypeAny, {
1344
+ commandNumber: string;
1345
+ }, {
1346
+ commandNumber?: string | undefined;
1347
+ }>;
1236
1348
  getTargetTemperature: z.ZodObject<{
1237
1349
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1238
1350
  }, "strip", z.ZodTypeAny, {
@@ -1267,6 +1379,13 @@ declare const VickiCommandSchemas: {
1267
1379
  }, {
1268
1380
  commandNumber?: string | undefined;
1269
1381
  }>;
1382
+ getDeviceVersion: z.ZodObject<{
1383
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1384
+ }, "strip", z.ZodTypeAny, {
1385
+ commandNumber: string;
1386
+ }, {
1387
+ commandNumber?: string | undefined;
1388
+ }>;
1270
1389
  setJoinRetryPeriod: z.ZodObject<{
1271
1390
  period: z.ZodNumber;
1272
1391
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1594,6 +1713,34 @@ declare const Relay16CommandSchemas: {
1594
1713
  }, {
1595
1714
  commandNumber?: string | undefined;
1596
1715
  }>;
1716
+ getOverheatingRecoveryTime: z.ZodObject<{
1717
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1718
+ }, "strip", z.ZodTypeAny, {
1719
+ commandNumber: string;
1720
+ }, {
1721
+ commandNumber?: string | undefined;
1722
+ }>;
1723
+ getOvervoltageRecoveryTime: z.ZodObject<{
1724
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1725
+ }, "strip", z.ZodTypeAny, {
1726
+ commandNumber: string;
1727
+ }, {
1728
+ commandNumber?: string | undefined;
1729
+ }>;
1730
+ getOvercurrentRecoveryTemp: z.ZodObject<{
1731
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1732
+ }, "strip", z.ZodTypeAny, {
1733
+ commandNumber: string;
1734
+ }, {
1735
+ commandNumber?: string | undefined;
1736
+ }>;
1737
+ getOverpowerRecoveryTemp: z.ZodObject<{
1738
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1739
+ }, "strip", z.ZodTypeAny, {
1740
+ commandNumber: string;
1741
+ }, {
1742
+ commandNumber?: string | undefined;
1743
+ }>;
1597
1744
  customHexCommand: z.ZodObject<{
1598
1745
  command: z.ZodString;
1599
1746
  commandNumber: z.ZodOptional<z.ZodString>;
@@ -1621,6 +1768,13 @@ declare const Relay16CommandSchemas: {
1621
1768
  }, {
1622
1769
  commandNumber?: string | undefined;
1623
1770
  }>;
1771
+ getDeviceVersion: z.ZodObject<{
1772
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1773
+ }, "strip", z.ZodTypeAny, {
1774
+ commandNumber: string;
1775
+ }, {
1776
+ commandNumber?: string | undefined;
1777
+ }>;
1624
1778
  setJoinRetryPeriod: z.ZodObject<{
1625
1779
  period: z.ZodNumber;
1626
1780
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -1962,6 +2116,13 @@ declare const TValveCommandSchemas: {
1962
2116
  }, {
1963
2117
  commandNumber?: string | undefined;
1964
2118
  }>;
2119
+ getDeviceVersion: z.ZodObject<{
2120
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2121
+ }, "strip", z.ZodTypeAny, {
2122
+ commandNumber: string;
2123
+ }, {
2124
+ commandNumber?: string | undefined;
2125
+ }>;
1965
2126
  setJoinRetryPeriod: z.ZodObject<{
1966
2127
  period: z.ZodNumber;
1967
2128
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2708,6 +2869,13 @@ declare const FanCoilThermostatCommandSchemas: {
2708
2869
  max: number;
2709
2870
  commandNumber?: string | undefined;
2710
2871
  }>;
2872
+ getTemperatureRange: z.ZodObject<{
2873
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2874
+ }, "strip", z.ZodTypeAny, {
2875
+ commandNumber: string;
2876
+ }, {
2877
+ commandNumber?: string | undefined;
2878
+ }>;
2711
2879
  getTargetTemperature: z.ZodObject<{
2712
2880
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2713
2881
  }, "strip", z.ZodTypeAny, {
@@ -2742,6 +2910,13 @@ declare const FanCoilThermostatCommandSchemas: {
2742
2910
  }, {
2743
2911
  commandNumber?: string | undefined;
2744
2912
  }>;
2913
+ getDeviceVersion: z.ZodObject<{
2914
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2915
+ }, "strip", z.ZodTypeAny, {
2916
+ commandNumber: string;
2917
+ }, {
2918
+ commandNumber?: string | undefined;
2919
+ }>;
2745
2920
  setJoinRetryPeriod: z.ZodObject<{
2746
2921
  period: z.ZodNumber;
2747
2922
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2882,6 +3057,13 @@ declare const OpenCloseSensorCommandSchemas: {
2882
3057
  }, {
2883
3058
  commandNumber?: string | undefined;
2884
3059
  }>;
3060
+ getDeviceVersion: z.ZodObject<{
3061
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3062
+ }, "strip", z.ZodTypeAny, {
3063
+ commandNumber: string;
3064
+ }, {
3065
+ commandNumber?: string | undefined;
3066
+ }>;
2885
3067
  setJoinRetryPeriod: z.ZodObject<{
2886
3068
  period: z.ZodNumber;
2887
3069
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -3328,6 +3510,13 @@ declare const WirelessThermostatCommandSchemas: {
3328
3510
  }, {
3329
3511
  commandNumber?: string | undefined;
3330
3512
  }>;
3513
+ getDeviceVersion: z.ZodObject<{
3514
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3515
+ }, "strip", z.ZodTypeAny, {
3516
+ commandNumber: string;
3517
+ }, {
3518
+ commandNumber?: string | undefined;
3519
+ }>;
3331
3520
  setJoinRetryPeriod: z.ZodObject<{
3332
3521
  period: z.ZodNumber;
3333
3522
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -3620,6 +3809,13 @@ declare const CO2SensorCommandSchemas: {
3620
3809
  }, {
3621
3810
  commandNumber?: string | undefined;
3622
3811
  }>;
3812
+ getDeviceVersion: z.ZodObject<{
3813
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3814
+ }, "strip", z.ZodTypeAny, {
3815
+ commandNumber: string;
3816
+ }, {
3817
+ commandNumber?: string | undefined;
3818
+ }>;
3623
3819
  setJoinRetryPeriod: z.ZodObject<{
3624
3820
  period: z.ZodNumber;
3625
3821
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4033,6 +4229,13 @@ declare const CO2DisplayCommandSchemas: {
4033
4229
  }, {
4034
4230
  commandNumber?: string | undefined;
4035
4231
  }>;
4232
+ getDeviceVersion: z.ZodObject<{
4233
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4234
+ }, "strip", z.ZodTypeAny, {
4235
+ commandNumber: string;
4236
+ }, {
4237
+ commandNumber?: string | undefined;
4238
+ }>;
4036
4239
  setJoinRetryPeriod: z.ZodObject<{
4037
4240
  period: z.ZodNumber;
4038
4241
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4346,6 +4549,13 @@ declare const CO2DisplayLiteCommandSchemas: {
4346
4549
  }, {
4347
4550
  commandNumber?: string | undefined;
4348
4551
  }>;
4552
+ getDeviceVersion: z.ZodObject<{
4553
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4554
+ }, "strip", z.ZodTypeAny, {
4555
+ commandNumber: string;
4556
+ }, {
4557
+ commandNumber?: string | undefined;
4558
+ }>;
4349
4559
  setJoinRetryPeriod: z.ZodObject<{
4350
4560
  period: z.ZodNumber;
4351
4561
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4480,6 +4690,13 @@ declare const HTSensorCommandSchemas: {
4480
4690
  }, {
4481
4691
  commandNumber?: string | undefined;
4482
4692
  }>;
4693
+ getDeviceVersion: z.ZodObject<{
4694
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4695
+ }, "strip", z.ZodTypeAny, {
4696
+ commandNumber: string;
4697
+ }, {
4698
+ commandNumber?: string | undefined;
4699
+ }>;
4483
4700
  setJoinRetryPeriod: z.ZodObject<{
4484
4701
  period: z.ZodNumber;
4485
4702
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4903,6 +5120,13 @@ declare const ButtonCommandSchemas: {
4903
5120
  }, {
4904
5121
  commandNumber?: string | undefined;
4905
5122
  }>;
5123
+ getDeviceVersion: z.ZodObject<{
5124
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5125
+ }, "strip", z.ZodTypeAny, {
5126
+ commandNumber: string;
5127
+ }, {
5128
+ commandNumber?: string | undefined;
5129
+ }>;
4906
5130
  setJoinRetryPeriod: z.ZodObject<{
4907
5131
  period: z.ZodNumber;
4908
5132
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5072,6 +5296,13 @@ declare const HTPirLiteCommandSchemas: {
5072
5296
  }, {
5073
5297
  commandNumber?: string | undefined;
5074
5298
  }>;
5299
+ getDeviceVersion: z.ZodObject<{
5300
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5301
+ }, "strip", z.ZodTypeAny, {
5302
+ commandNumber: string;
5303
+ }, {
5304
+ commandNumber?: string | undefined;
5305
+ }>;
5075
5306
  setJoinRetryPeriod: z.ZodObject<{
5076
5307
  period: z.ZodNumber;
5077
5308
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5308,6 +5539,13 @@ declare const Co2PirLiteCommandSchemas: {
5308
5539
  }, {
5309
5540
  commandNumber?: string | undefined;
5310
5541
  }>;
5542
+ getDeviceVersion: z.ZodObject<{
5543
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5544
+ }, "strip", z.ZodTypeAny, {
5545
+ commandNumber: string;
5546
+ }, {
5547
+ commandNumber?: string | undefined;
5548
+ }>;
5311
5549
  setJoinRetryPeriod: z.ZodObject<{
5312
5550
  period: z.ZodNumber;
5313
5551
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5420,6 +5658,13 @@ declare const MelissaCommandSchemas: {
5420
5658
  }, {
5421
5659
  commandNumber?: string | undefined;
5422
5660
  }>;
5661
+ getDeviceVersion: z.ZodObject<{
5662
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5663
+ }, "strip", z.ZodTypeAny, {
5664
+ commandNumber: string;
5665
+ }, {
5666
+ commandNumber?: string | undefined;
5667
+ }>;
5423
5668
  setJoinRetryPeriod: z.ZodObject<{
5424
5669
  period: z.ZodNumber;
5425
5670
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5673,6 +5918,13 @@ declare const MultiSensorCommandSchemas: {
5673
5918
  }, {
5674
5919
  commandNumber?: string | undefined;
5675
5920
  }>;
5921
+ getDeviceVersion: z.ZodObject<{
5922
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5923
+ }, "strip", z.ZodTypeAny, {
5924
+ commandNumber: string;
5925
+ }, {
5926
+ commandNumber?: string | undefined;
5927
+ }>;
5676
5928
  setJoinRetryPeriod: z.ZodObject<{
5677
5929
  period: z.ZodNumber;
5678
5930
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5775,6 +6027,13 @@ export declare const DeviceCommandSchemas: {
5775
6027
  }, {
5776
6028
  commandNumber?: string | undefined;
5777
6029
  }>;
6030
+ getDeviceVersion: z.ZodObject<{
6031
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6032
+ }, "strip", z.ZodTypeAny, {
6033
+ commandNumber: string;
6034
+ }, {
6035
+ commandNumber?: string | undefined;
6036
+ }>;
5778
6037
  setJoinRetryPeriod: z.ZodObject<{
5779
6038
  period: z.ZodNumber;
5780
6039
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5998,6 +6257,13 @@ export declare const DeviceCommandSchemas: {
5998
6257
  Boundary3: number;
5999
6258
  commandNumber?: string | undefined;
6000
6259
  }>;
6260
+ getBatteryRangesBoundaries: z.ZodObject<{
6261
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6262
+ }, "strip", z.ZodTypeAny, {
6263
+ commandNumber: string;
6264
+ }, {
6265
+ commandNumber?: string | undefined;
6266
+ }>;
6001
6267
  setBatteryRangesOverVoltage: z.ZodObject<{
6002
6268
  Range1: z.ZodNumber;
6003
6269
  Range2: z.ZodNumber;
@@ -6014,6 +6280,13 @@ export declare const DeviceCommandSchemas: {
6014
6280
  Range3: number;
6015
6281
  commandNumber?: string | undefined;
6016
6282
  }>;
6283
+ getBatteryRangesOverVoltage: z.ZodObject<{
6284
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6285
+ }, "strip", z.ZodTypeAny, {
6286
+ commandNumber: string;
6287
+ }, {
6288
+ commandNumber?: string | undefined;
6289
+ }>;
6017
6290
  setOvac: z.ZodObject<{
6018
6291
  ovac: z.ZodNumber;
6019
6292
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6389,6 +6662,13 @@ export declare const DeviceCommandSchemas: {
6389
6662
  };
6390
6663
  commandNumber?: string | undefined;
6391
6664
  }>;
6665
+ getHeatingEvent: z.ZodObject<{
6666
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6667
+ }, "strip", z.ZodTypeAny, {
6668
+ commandNumber: string;
6669
+ }, {
6670
+ commandNumber?: string | undefined;
6671
+ }>;
6392
6672
  setHeatingEventState: z.ZodObject<{
6393
6673
  eventIndex: z.ZodNumber;
6394
6674
  active: z.ZodBoolean;
@@ -6402,6 +6682,13 @@ export declare const DeviceCommandSchemas: {
6402
6682
  active: boolean;
6403
6683
  commandNumber?: string | undefined;
6404
6684
  }>;
6685
+ getHeatingEventState: z.ZodObject<{
6686
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6687
+ }, "strip", z.ZodTypeAny, {
6688
+ commandNumber: string;
6689
+ }, {
6690
+ commandNumber?: string | undefined;
6691
+ }>;
6405
6692
  setTimeRequestByMACcommand: z.ZodObject<{
6406
6693
  enabled: z.ZodBoolean;
6407
6694
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6412,6 +6699,13 @@ export declare const DeviceCommandSchemas: {
6412
6699
  enabled: boolean;
6413
6700
  commandNumber?: string | undefined;
6414
6701
  }>;
6702
+ getTimeRequestByMACcommand: z.ZodObject<{
6703
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6704
+ }, "strip", z.ZodTypeAny, {
6705
+ commandNumber: string;
6706
+ }, {
6707
+ commandNumber?: string | undefined;
6708
+ }>;
6415
6709
  setHeatingSchedule: z.ZodObject<{
6416
6710
  startMonth: z.ZodNumber;
6417
6711
  startDay: z.ZodNumber;
@@ -6431,6 +6725,13 @@ export declare const DeviceCommandSchemas: {
6431
6725
  endDay: number;
6432
6726
  commandNumber?: string | undefined;
6433
6727
  }>;
6728
+ getHeatingSchedule: z.ZodObject<{
6729
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6730
+ }, "strip", z.ZodTypeAny, {
6731
+ commandNumber: string;
6732
+ }, {
6733
+ commandNumber?: string | undefined;
6734
+ }>;
6434
6735
  setDeviceTime: z.ZodObject<{
6435
6736
  timestamp: z.ZodNumber;
6436
6737
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6441,6 +6742,13 @@ export declare const DeviceCommandSchemas: {
6441
6742
  timestamp: number;
6442
6743
  commandNumber?: string | undefined;
6443
6744
  }>;
6745
+ getDeviceTime: z.ZodObject<{
6746
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6747
+ }, "strip", z.ZodTypeAny, {
6748
+ commandNumber: string;
6749
+ }, {
6750
+ commandNumber?: string | undefined;
6751
+ }>;
6444
6752
  setDeviceTimeZone: z.ZodObject<{
6445
6753
  offsetHours: z.ZodNumber;
6446
6754
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6451,6 +6759,13 @@ export declare const DeviceCommandSchemas: {
6451
6759
  offsetHours: number;
6452
6760
  commandNumber?: string | undefined;
6453
6761
  }>;
6762
+ getDeviceTimeZone: z.ZodObject<{
6763
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6764
+ }, "strip", z.ZodTypeAny, {
6765
+ commandNumber: string;
6766
+ }, {
6767
+ commandNumber?: string | undefined;
6768
+ }>;
6454
6769
  setAutomaticSetpointRestore: z.ZodObject<{
6455
6770
  time: z.ZodNumber;
6456
6771
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6461,6 +6776,13 @@ export declare const DeviceCommandSchemas: {
6461
6776
  time: number;
6462
6777
  commandNumber?: string | undefined;
6463
6778
  }>;
6779
+ getAutomaticSetpointRestore: z.ZodObject<{
6780
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6781
+ }, "strip", z.ZodTypeAny, {
6782
+ commandNumber: string;
6783
+ }, {
6784
+ commandNumber?: string | undefined;
6785
+ }>;
6464
6786
  setOfflineTargetTemperature: z.ZodObject<{
6465
6787
  targetTemperature: z.ZodUnion<[z.ZodLiteral<0>, z.ZodNumber]>;
6466
6788
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6471,6 +6793,13 @@ export declare const DeviceCommandSchemas: {
6471
6793
  targetTemperature: number;
6472
6794
  commandNumber?: string | undefined;
6473
6795
  }>;
6796
+ getOfflineTargetTemperature: z.ZodObject<{
6797
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6798
+ }, "strip", z.ZodTypeAny, {
6799
+ commandNumber: string;
6800
+ }, {
6801
+ commandNumber?: string | undefined;
6802
+ }>;
6474
6803
  setInternalAlgoTemporaryState: z.ZodObject<{
6475
6804
  enabled: z.ZodBoolean;
6476
6805
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6481,6 +6810,13 @@ export declare const DeviceCommandSchemas: {
6481
6810
  enabled: boolean;
6482
6811
  commandNumber?: string | undefined;
6483
6812
  }>;
6813
+ getInternalAlgoTemporaryState: z.ZodObject<{
6814
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6815
+ }, "strip", z.ZodTypeAny, {
6816
+ commandNumber: string;
6817
+ }, {
6818
+ commandNumber?: string | undefined;
6819
+ }>;
6484
6820
  setTemperatureLevels: z.ZodObject<{
6485
6821
  scaleLevel0: z.ZodNumber;
6486
6822
  scaleLevel1: z.ZodNumber;
@@ -6506,6 +6842,13 @@ export declare const DeviceCommandSchemas: {
6506
6842
  scaleLevel5: number;
6507
6843
  commandNumber?: string | undefined;
6508
6844
  }>;
6845
+ getTemperatureLevels: z.ZodObject<{
6846
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6847
+ }, "strip", z.ZodTypeAny, {
6848
+ commandNumber: string;
6849
+ }, {
6850
+ commandNumber?: string | undefined;
6851
+ }>;
6509
6852
  setLedIndicationDuration: z.ZodObject<{
6510
6853
  duration: z.ZodNumber;
6511
6854
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6516,6 +6859,13 @@ export declare const DeviceCommandSchemas: {
6516
6859
  duration: number;
6517
6860
  commandNumber?: string | undefined;
6518
6861
  }>;
6862
+ getLedIndicationDuration: z.ZodObject<{
6863
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6864
+ }, "strip", z.ZodTypeAny, {
6865
+ commandNumber: string;
6866
+ }, {
6867
+ commandNumber?: string | undefined;
6868
+ }>;
6519
6869
  setChildLock: z.ZodObject<{
6520
6870
  enabled: z.ZodBoolean;
6521
6871
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6546,6 +6896,13 @@ export declare const DeviceCommandSchemas: {
6546
6896
  max: number;
6547
6897
  commandNumber?: string | undefined;
6548
6898
  }>;
6899
+ getTemperatureRange: z.ZodObject<{
6900
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6901
+ }, "strip", z.ZodTypeAny, {
6902
+ commandNumber: string;
6903
+ }, {
6904
+ commandNumber?: string | undefined;
6905
+ }>;
6549
6906
  getTargetTemperature: z.ZodObject<{
6550
6907
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6551
6908
  }, "strip", z.ZodTypeAny, {
@@ -6580,6 +6937,13 @@ export declare const DeviceCommandSchemas: {
6580
6937
  }, {
6581
6938
  commandNumber?: string | undefined;
6582
6939
  }>;
6940
+ getDeviceVersion: z.ZodObject<{
6941
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6942
+ }, "strip", z.ZodTypeAny, {
6943
+ commandNumber: string;
6944
+ }, {
6945
+ commandNumber?: string | undefined;
6946
+ }>;
6583
6947
  setJoinRetryPeriod: z.ZodObject<{
6584
6948
  period: z.ZodNumber;
6585
6949
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -6867,6 +7231,34 @@ export declare const DeviceCommandSchemas: {
6867
7231
  }, {
6868
7232
  commandNumber?: string | undefined;
6869
7233
  }>;
7234
+ getOverheatingRecoveryTime: z.ZodObject<{
7235
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7236
+ }, "strip", z.ZodTypeAny, {
7237
+ commandNumber: string;
7238
+ }, {
7239
+ commandNumber?: string | undefined;
7240
+ }>;
7241
+ getOvervoltageRecoveryTime: z.ZodObject<{
7242
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7243
+ }, "strip", z.ZodTypeAny, {
7244
+ commandNumber: string;
7245
+ }, {
7246
+ commandNumber?: string | undefined;
7247
+ }>;
7248
+ getOvercurrentRecoveryTemp: z.ZodObject<{
7249
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7250
+ }, "strip", z.ZodTypeAny, {
7251
+ commandNumber: string;
7252
+ }, {
7253
+ commandNumber?: string | undefined;
7254
+ }>;
7255
+ getOverpowerRecoveryTemp: z.ZodObject<{
7256
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7257
+ }, "strip", z.ZodTypeAny, {
7258
+ commandNumber: string;
7259
+ }, {
7260
+ commandNumber?: string | undefined;
7261
+ }>;
6870
7262
  customHexCommand: z.ZodObject<{
6871
7263
  command: z.ZodString;
6872
7264
  commandNumber: z.ZodOptional<z.ZodString>;
@@ -6894,6 +7286,13 @@ export declare const DeviceCommandSchemas: {
6894
7286
  }, {
6895
7287
  commandNumber?: string | undefined;
6896
7288
  }>;
7289
+ getDeviceVersion: z.ZodObject<{
7290
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7291
+ }, "strip", z.ZodTypeAny, {
7292
+ commandNumber: string;
7293
+ }, {
7294
+ commandNumber?: string | undefined;
7295
+ }>;
6897
7296
  setJoinRetryPeriod: z.ZodObject<{
6898
7297
  period: z.ZodNumber;
6899
7298
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -7623,6 +8022,13 @@ export declare const DeviceCommandSchemas: {
7623
8022
  max: number;
7624
8023
  commandNumber?: string | undefined;
7625
8024
  }>;
8025
+ getTemperatureRange: z.ZodObject<{
8026
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8027
+ }, "strip", z.ZodTypeAny, {
8028
+ commandNumber: string;
8029
+ }, {
8030
+ commandNumber?: string | undefined;
8031
+ }>;
7626
8032
  getTargetTemperature: z.ZodObject<{
7627
8033
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7628
8034
  }, "strip", z.ZodTypeAny, {
@@ -7657,6 +8063,13 @@ export declare const DeviceCommandSchemas: {
7657
8063
  }, {
7658
8064
  commandNumber?: string | undefined;
7659
8065
  }>;
8066
+ getDeviceVersion: z.ZodObject<{
8067
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8068
+ }, "strip", z.ZodTypeAny, {
8069
+ commandNumber: string;
8070
+ }, {
8071
+ commandNumber?: string | undefined;
8072
+ }>;
7660
8073
  setJoinRetryPeriod: z.ZodObject<{
7661
8074
  period: z.ZodNumber;
7662
8075
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -7986,6 +8399,13 @@ export declare const DeviceCommandSchemas: {
7986
8399
  }, {
7987
8400
  commandNumber?: string | undefined;
7988
8401
  }>;
8402
+ getDeviceVersion: z.ZodObject<{
8403
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8404
+ }, "strip", z.ZodTypeAny, {
8405
+ commandNumber: string;
8406
+ }, {
8407
+ commandNumber?: string | undefined;
8408
+ }>;
7989
8409
  setJoinRetryPeriod: z.ZodObject<{
7990
8410
  period: z.ZodNumber;
7991
8411
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -8652,6 +9072,13 @@ export declare const DeviceCommandSchemas: {
8652
9072
  }, {
8653
9073
  commandNumber?: string | undefined;
8654
9074
  }>;
9075
+ getDeviceVersion: z.ZodObject<{
9076
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9077
+ }, "strip", z.ZodTypeAny, {
9078
+ commandNumber: string;
9079
+ }, {
9080
+ commandNumber?: string | undefined;
9081
+ }>;
8655
9082
  setJoinRetryPeriod: z.ZodObject<{
8656
9083
  period: z.ZodNumber;
8657
9084
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -8933,6 +9360,13 @@ export declare const DeviceCommandSchemas: {
8933
9360
  }, {
8934
9361
  commandNumber?: string | undefined;
8935
9362
  }>;
9363
+ getDeviceVersion: z.ZodObject<{
9364
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9365
+ }, "strip", z.ZodTypeAny, {
9366
+ commandNumber: string;
9367
+ }, {
9368
+ commandNumber?: string | undefined;
9369
+ }>;
8936
9370
  setJoinRetryPeriod: z.ZodObject<{
8937
9371
  period: z.ZodNumber;
8938
9372
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -9337,6 +9771,13 @@ export declare const DeviceCommandSchemas: {
9337
9771
  }, {
9338
9772
  commandNumber?: string | undefined;
9339
9773
  }>;
9774
+ getDeviceVersion: z.ZodObject<{
9775
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9776
+ }, "strip", z.ZodTypeAny, {
9777
+ commandNumber: string;
9778
+ }, {
9779
+ commandNumber?: string | undefined;
9780
+ }>;
9340
9781
  setJoinRetryPeriod: z.ZodObject<{
9341
9782
  period: z.ZodNumber;
9342
9783
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -9476,6 +9917,13 @@ export declare const DeviceCommandSchemas: {
9476
9917
  }, {
9477
9918
  commandNumber?: string | undefined;
9478
9919
  }>;
9920
+ getDeviceVersion: z.ZodObject<{
9921
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9922
+ }, "strip", z.ZodTypeAny, {
9923
+ commandNumber: string;
9924
+ }, {
9925
+ commandNumber?: string | undefined;
9926
+ }>;
9479
9927
  setJoinRetryPeriod: z.ZodObject<{
9480
9928
  period: z.ZodNumber;
9481
9929
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -9621,6 +10069,13 @@ export declare const DeviceCommandSchemas: {
9621
10069
  }, {
9622
10070
  commandNumber?: string | undefined;
9623
10071
  }>;
10072
+ getDeviceVersion: z.ZodObject<{
10073
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10074
+ }, "strip", z.ZodTypeAny, {
10075
+ commandNumber: string;
10076
+ }, {
10077
+ commandNumber?: string | undefined;
10078
+ }>;
9624
10079
  setJoinRetryPeriod: z.ZodObject<{
9625
10080
  period: z.ZodNumber;
9626
10081
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -9796,6 +10251,13 @@ export declare const DeviceCommandSchemas: {
9796
10251
  max: number;
9797
10252
  commandNumber?: string | undefined;
9798
10253
  }>;
10254
+ getTemperatureRange: z.ZodObject<{
10255
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10256
+ }, "strip", z.ZodTypeAny, {
10257
+ commandNumber: string;
10258
+ }, {
10259
+ commandNumber?: string | undefined;
10260
+ }>;
9799
10261
  getTargetTemperature: z.ZodObject<{
9800
10262
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9801
10263
  }, "strip", z.ZodTypeAny, {
@@ -9976,6 +10438,13 @@ export declare const DeviceCommandSchemas: {
9976
10438
  }, {
9977
10439
  commandNumber?: string | undefined;
9978
10440
  }>;
10441
+ getDeviceVersion: z.ZodObject<{
10442
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10443
+ }, "strip", z.ZodTypeAny, {
10444
+ commandNumber: string;
10445
+ }, {
10446
+ commandNumber?: string | undefined;
10447
+ }>;
9979
10448
  setJoinRetryPeriod: z.ZodObject<{
9980
10449
  period: z.ZodNumber;
9981
10450
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -10285,6 +10754,13 @@ export declare const DeviceCommandSchemas: {
10285
10754
  }, {
10286
10755
  commandNumber?: string | undefined;
10287
10756
  }>;
10757
+ getDeviceVersion: z.ZodObject<{
10758
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10759
+ }, "strip", z.ZodTypeAny, {
10760
+ commandNumber: string;
10761
+ }, {
10762
+ commandNumber?: string | undefined;
10763
+ }>;
10288
10764
  setJoinRetryPeriod: z.ZodObject<{
10289
10765
  period: z.ZodNumber;
10290
10766
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -10517,6 +10993,13 @@ export declare const DeviceCommandSchemas: {
10517
10993
  }, {
10518
10994
  commandNumber?: string | undefined;
10519
10995
  }>;
10996
+ getDeviceVersion: z.ZodObject<{
10997
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10998
+ }, "strip", z.ZodTypeAny, {
10999
+ commandNumber: string;
11000
+ }, {
11001
+ commandNumber?: string | undefined;
11002
+ }>;
10520
11003
  setJoinRetryPeriod: z.ZodObject<{
10521
11004
  period: z.ZodNumber;
10522
11005
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -10682,6 +11165,13 @@ export declare const DeviceCommandSchemas: {
10682
11165
  }, {
10683
11166
  commandNumber?: string | undefined;
10684
11167
  }>;
11168
+ getDeviceVersion: z.ZodObject<{
11169
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11170
+ }, "strip", z.ZodTypeAny, {
11171
+ commandNumber: string;
11172
+ }, {
11173
+ commandNumber?: string | undefined;
11174
+ }>;
10685
11175
  setJoinRetryPeriod: z.ZodObject<{
10686
11176
  period: z.ZodNumber;
10687
11177
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -10907,6 +11397,13 @@ export declare const DeviceCommandSchemas: {
10907
11397
  }, {
10908
11398
  commandNumber?: string | undefined;
10909
11399
  }>;
11400
+ getDeviceVersion: z.ZodObject<{
11401
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11402
+ }, "strip", z.ZodTypeAny, {
11403
+ commandNumber: string;
11404
+ }, {
11405
+ commandNumber?: string | undefined;
11406
+ }>;
10910
11407
  setJoinRetryPeriod: z.ZodObject<{
10911
11408
  period: z.ZodNumber;
10912
11409
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -11010,6 +11507,13 @@ export declare const DeviceCommandSchemas: {
11010
11507
  }, {
11011
11508
  commandNumber?: string | undefined;
11012
11509
  }>;
11510
+ getDeviceVersion: z.ZodObject<{
11511
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11512
+ }, "strip", z.ZodTypeAny, {
11513
+ commandNumber: string;
11514
+ }, {
11515
+ commandNumber?: string | undefined;
11516
+ }>;
11013
11517
  setJoinRetryPeriod: z.ZodObject<{
11014
11518
  period: z.ZodNumber;
11015
11519
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -11260,6 +11764,13 @@ export declare const DeviceCommandSchemas: {
11260
11764
  }, {
11261
11765
  commandNumber?: string | undefined;
11262
11766
  }>;
11767
+ getDeviceVersion: z.ZodObject<{
11768
+ commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;
11769
+ }, "strip", z.ZodTypeAny, {
11770
+ commandNumber: string;
11771
+ }, {
11772
+ commandNumber?: string | undefined;
11773
+ }>;
11263
11774
  setJoinRetryPeriod: z.ZodObject<{
11264
11775
  period: z.ZodNumber;
11265
11776
  commandNumber: z.ZodDefault<z.ZodOptional<z.ZodString>>;