@@ -33,6 +33,8 @@ export type Scalars = {
33
33
Long : any ;
34
34
/** Built-in scalar for dynamic values */
35
35
ObjectScalar : any ;
36
+ /** Built-in Short as Int */
37
+ Short : any ;
36
38
/** Use SPQR's SchemaPrinter to remove this from SDL */
37
39
UNREPRESENTABLE : any ;
38
40
} ;
@@ -123,6 +125,11 @@ export enum BatteryManagementMode {
123
125
VOLTAGE_COMPENSATION = 'VOLTAGE_COMPENSATION'
124
126
}
125
127
128
+ export enum BatteryType {
129
+ LEAD_ACID = 'LEAD_ACID' ,
130
+ LITHIUM = 'LITHIUM'
131
+ }
132
+
126
133
export type BatteryVoltage = {
127
134
__typename ?: 'BatteryVoltage' ;
128
135
/** The battery voltage */
@@ -161,6 +168,16 @@ export enum ChargingEquipmentError {
161
168
PV_INPUT_SHORT = 'PV_INPUT_SHORT'
162
169
}
163
170
171
+ export enum ChargingMethod_E02D {
172
+ DIRECT = 'DIRECT' ,
173
+ PWM = 'PWM'
174
+ }
175
+
176
+ export enum ChargingMethod_E021 {
177
+ DIRECT = 'DIRECT' ,
178
+ PWM = 'PWM'
179
+ }
180
+
164
181
export enum ChargingState {
165
182
ACTIVATED = 'ACTIVATED' ,
166
183
BOOST = 'BOOST' ,
@@ -368,6 +385,7 @@ export type ExecutionReason = {
368
385
} ;
369
386
370
387
export enum ExecutionReasonType {
388
+ PACKET_COLLECTION = 'PACKET_COLLECTION' ,
371
389
SOURCE = 'SOURCE'
372
390
}
373
391
@@ -672,7 +690,7 @@ export type MXStatusPacket = {
672
690
/** @deprecated Field no longer supported */
673
691
ampChargerCurrent : Scalars [ 'Float' ] ;
674
692
auxBitActive : Scalars [ 'Boolean' ] ;
675
- auxMode : AuxMode ;
693
+ auxMode ?: Maybe < AuxMode > ;
676
694
auxModeValue : Scalars [ 'Int' ] ;
677
695
auxModeValueRaw : Scalars [ 'Int' ] ;
678
696
/** The battery voltage */
@@ -1418,7 +1436,9 @@ export type RoverStatusPacket = {
1418
1436
solarModeName : Scalars [ 'String' ] ;
1419
1437
solarModeType : SolarModeType ;
1420
1438
solarModeTypeDisplayName : Scalars [ 'String' ] ;
1439
+ specialPowerControlE02D ?: Maybe < SpecialPowerControl_E02D > ;
1421
1440
specialPowerControlE02DRaw ?: Maybe < Scalars [ 'Int' ] > ;
1441
+ specialPowerControlE021 ?: Maybe < SpecialPowerControl_E021 > ;
1422
1442
specialPowerControlE021Raw : Scalars [ 'Int' ] ;
1423
1443
streetLightValue : Scalars [ 'Int' ] ;
1424
1444
systemVoltageSetting : Scalars [ 'Int' ] ;
@@ -1689,6 +1709,42 @@ export type SolarThingStatusQuery = {
1689
1709
tracerStatus : Array < PacketNode_TracerStatusPacket > ;
1690
1710
} ;
1691
1711
1712
+ export type SpecialPowerControl_E02D = {
1713
+ __typename ?: 'SpecialPowerControl_E02D' ;
1714
+ batteryType ?: Maybe < BatteryType > ;
1715
+ batteryTypeValueCode : Scalars [ 'Int' ] ;
1716
+ chargingMethod ?: Maybe < ChargingMethod_E02D > ;
1717
+ chargingMethodValueCode : Scalars [ 'Int' ] ;
1718
+ combined : Scalars [ 'Int' ] ;
1719
+ combinedShort : Scalars [ 'Short' ] ;
1720
+ formattedInfo ?: Maybe < Scalars [ 'String' ] > ;
1721
+ is24VSystem : Scalars [ 'Boolean' ] ;
1722
+ isEachNightOnEnabled : Scalars [ 'Boolean' ] ;
1723
+ isIntelligentPowerEnabled : Scalars [ 'Boolean' ] ;
1724
+ isLithiumBattery : Scalars [ 'Boolean' ] ;
1725
+ isNoChargingBelow0CEnabled : Scalars [ 'Boolean' ] ;
1726
+ lower : Scalars [ 'Int' ] ;
1727
+ rawChargingMethodValueCode : Scalars [ 'Int' ] ;
1728
+ systemVoltage ?: Maybe < SystemVoltage > ;
1729
+ systemVoltageValueCode : Scalars [ 'Int' ] ;
1730
+ upper : Scalars [ 'Int' ] ;
1731
+ } ;
1732
+
1733
+ export type SpecialPowerControl_E021 = {
1734
+ __typename ?: 'SpecialPowerControl_E021' ;
1735
+ chargingMethod ?: Maybe < ChargingMethod_E021 > ;
1736
+ chargingMethodValueCode : Scalars [ 'Int' ] ;
1737
+ combined : Scalars [ 'Int' ] ;
1738
+ combinedShort : Scalars [ 'Short' ] ;
1739
+ formattedInfo ?: Maybe < Scalars [ 'String' ] > ;
1740
+ isChargingModeControlledByVoltage : Scalars [ 'Boolean' ] ;
1741
+ isEachNightOnEnabled : Scalars [ 'Boolean' ] ;
1742
+ isNoChargingBelow0CEnabled : Scalars [ 'Boolean' ] ;
1743
+ isSpecialPowerControlEnabled : Scalars [ 'Boolean' ] ;
1744
+ lower : Scalars [ 'Int' ] ;
1745
+ upper : Scalars [ 'Int' ] ;
1746
+ } ;
1747
+
1692
1748
export type SuccessMateCommandPacket = {
1693
1749
__typename ?: 'SuccessMateCommandPacket' ;
1694
1750
command : MateCommand ;
@@ -1705,6 +1761,11 @@ export enum Support {
1705
1761
UNKNOWN = 'UNKNOWN'
1706
1762
}
1707
1763
1764
+ export enum SystemVoltage {
1765
+ V12 = 'V12' ,
1766
+ V24 = 'V24'
1767
+ }
1768
+
1708
1769
export enum TargetedMetaPacketType {
1709
1770
DATA_INFO = 'DATA_INFO' ,
1710
1771
DEVICE_INFO = 'DEVICE_INFO' ,
0 commit comments