diff --git a/deebot_client/hardware/300lc5.py b/deebot_client/hardware/300lc5.py index 2a350d9a7..da5263ca7 100644 --- a/deebot_client/hardware/300lc5.py +++ b/deebot_client/hardware/300lc5.py @@ -34,7 +34,7 @@ from deebot_client.commands.json.battery import GetBattery from deebot_client.commands.json.charge import Charge from deebot_client.commands.json.charge_state import GetChargeState -from deebot_client.commands.json.clean import CleanV2, GetCleanInfoV2 +from deebot_client.commands.json.clean import CleanAreaV2, CleanV2, GetCleanInfoV2 from deebot_client.commands.json.custom import CustomCommand from deebot_client.commands.json.error import GetError from deebot_client.commands.json.life_span import GetLifeSpan, ResetLifeSpan @@ -81,7 +81,7 @@ def get_device_info() -> StaticDeviceInfo: battery=CapabilityEvent(BatteryEvent, [GetBattery()]), charge=CapabilityExecute(Charge), clean=CapabilityClean( - action=CapabilityCleanAction(command=CleanV2), + action=CapabilityCleanAction(command=CleanV2, area=CleanAreaV2), ), custom=CapabilityCustomCommand( event=CustomCommandEvent, get=[], set=CustomCommand diff --git a/deebot_client/hardware/51rcxt.py b/deebot_client/hardware/51rcxt.py index d87374188..43734d855 100644 --- a/deebot_client/hardware/51rcxt.py +++ b/deebot_client/hardware/51rcxt.py @@ -34,7 +34,7 @@ from deebot_client.commands.json.battery import GetBattery from deebot_client.commands.json.charge import Charge from deebot_client.commands.json.charge_state import GetChargeState -from deebot_client.commands.json.clean import CleanV2, GetCleanInfoV2 +from deebot_client.commands.json.clean import CleanAreaV2, CleanV2, GetCleanInfoV2 from deebot_client.commands.json.custom import CustomCommand from deebot_client.commands.json.error import GetError from deebot_client.commands.json.life_span import GetLifeSpan, ResetLifeSpan @@ -81,7 +81,7 @@ def get_device_info() -> StaticDeviceInfo: battery=CapabilityEvent(BatteryEvent, [GetBattery()]), charge=CapabilityExecute(Charge), clean=CapabilityClean( - action=CapabilityCleanAction(command=CleanV2), + action=CapabilityCleanAction(command=CleanV2, area=CleanAreaV2), ), custom=CapabilityCustomCommand( event=CustomCommandEvent, get=[], set=CustomCommand diff --git a/deebot_client/hardware/5xu9h3.py b/deebot_client/hardware/5xu9h3.py index 44170ab3e..10efd7325 100644 --- a/deebot_client/hardware/5xu9h3.py +++ b/deebot_client/hardware/5xu9h3.py @@ -34,7 +34,7 @@ from deebot_client.commands.json.battery import GetBattery from deebot_client.commands.json.charge import Charge from deebot_client.commands.json.charge_state import GetChargeState -from deebot_client.commands.json.clean import CleanV2, GetCleanInfoV2 +from deebot_client.commands.json.clean import CleanAreaV2, CleanV2, GetCleanInfoV2 from deebot_client.commands.json.custom import CustomCommand from deebot_client.commands.json.error import GetError from deebot_client.commands.json.life_span import GetLifeSpan, ResetLifeSpan @@ -81,7 +81,7 @@ def get_device_info() -> StaticDeviceInfo: battery=CapabilityEvent(BatteryEvent, [GetBattery()]), charge=CapabilityExecute(Charge), clean=CapabilityClean( - action=CapabilityCleanAction(command=CleanV2), + action=CapabilityCleanAction(command=CleanV2, area=CleanAreaV2), ), custom=CapabilityCustomCommand( event=CustomCommandEvent, get=[], set=CustomCommand diff --git a/deebot_client/hardware/xmp9ds.py b/deebot_client/hardware/xmp9ds.py index 7bfd87c73..3dbc9a67e 100644 --- a/deebot_client/hardware/xmp9ds.py +++ b/deebot_client/hardware/xmp9ds.py @@ -34,7 +34,7 @@ from deebot_client.commands.json.battery import GetBattery from deebot_client.commands.json.charge import Charge from deebot_client.commands.json.charge_state import GetChargeState -from deebot_client.commands.json.clean import CleanV2, GetCleanInfoV2 +from deebot_client.commands.json.clean import CleanAreaV2, CleanV2, GetCleanInfoV2 from deebot_client.commands.json.custom import CustomCommand from deebot_client.commands.json.error import GetError from deebot_client.commands.json.life_span import GetLifeSpan, ResetLifeSpan @@ -81,7 +81,7 @@ def get_device_info() -> StaticDeviceInfo: battery=CapabilityEvent(BatteryEvent, [GetBattery()]), charge=CapabilityExecute(Charge), clean=CapabilityClean( - action=CapabilityCleanAction(command=CleanV2), + action=CapabilityCleanAction(command=CleanV2, area=CleanAreaV2), ), custom=CapabilityCustomCommand( event=CustomCommandEvent, get=[], set=CustomCommand