pypetkitapi 1.18.1__tar.gz → 1.19.1__tar.gz
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.
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/PKG-INFO +1 -1
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/__init__.py +1 -1
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/litter_container.py +8 -2
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pyproject.toml +2 -2
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/LICENSE +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/README.md +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/bluetooth.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/client.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/command.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/const.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/containers.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/exceptions.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/feeder_container.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/media.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/purifier_container.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/py.typed +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/schedule_container.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/utils.py +0 -0
- {pypetkitapi-1.18.1 → pypetkitapi-1.19.1}/pypetkitapi/water_fountain_container.py +0 -0
@@ -38,7 +38,9 @@ class SettingsLitter(BaseModel):
|
|
38
38
|
bury: int | None = None
|
39
39
|
camera: int | None = None
|
40
40
|
camera_config: int | None = Field(None, alias="cameraConfig")
|
41
|
+
camera_inward: int | None = Field(None, alias="cameraInward")
|
41
42
|
camera_light: int | None = Field(None, alias="cameraLight")
|
43
|
+
camera_off: int | None = Field(None, alias="cameraOff")
|
42
44
|
cleanning_notify: int | None = Field(None, alias="cleanningNotify")
|
43
45
|
click_ok_enable: int | None = Field(None, alias="clickOkEnable")
|
44
46
|
control_settings: int | None = Field(None, alias="controlSettings")
|
@@ -56,6 +58,7 @@ class SettingsLitter(BaseModel):
|
|
56
58
|
fixed_time_spray: int | None = Field(None, alias="fixedTimeSpray")
|
57
59
|
garbage_notify: int | None = Field(None, alias="garbageNotify")
|
58
60
|
highlight: int | None = Field(None, alias="highlight")
|
61
|
+
home_mode: int | None = Field(None, alias="homeMode")
|
59
62
|
kitten: int | None = None
|
60
63
|
kitten_percent: float | None = Field(None, alias="kittenPercent")
|
61
64
|
kitten_tips_time: int | None = Field(None, alias="kittenTipsTime")
|
@@ -77,6 +80,7 @@ class SettingsLitter(BaseModel):
|
|
77
80
|
move_notify: int | None = Field(None, alias="moveNotify")
|
78
81
|
night: int | None = None
|
79
82
|
no_remind: int | None = Field(None, alias="noRemind")
|
83
|
+
no_sound: int | None = Field(None, alias="noSound")
|
80
84
|
package_standard: list[int] | None = Field(None, alias="packageStandard")
|
81
85
|
pet_detection: int | None = Field(None, alias="petDetection")
|
82
86
|
pet_in_notify: int | None = Field(None, alias="petInNotify")
|
@@ -174,6 +178,7 @@ class StateLitter(BaseModel):
|
|
174
178
|
spray_reset_time: int | None = Field(None, alias="sprayResetTime")
|
175
179
|
spray_state: int | None = Field(None, alias="sprayState")
|
176
180
|
top_ins: int | None = Field(None, alias="topIns")
|
181
|
+
trunk_state: int | None = Field(None, alias="trunkState")
|
177
182
|
used_times: int | None = Field(None, alias="usedTimes")
|
178
183
|
wander_time: int | None = Field(None, alias="wanderTime")
|
179
184
|
weight_state: int | None = Field(None, alias="weightState")
|
@@ -450,14 +455,14 @@ class Litter(BaseModel):
|
|
450
455
|
device_pet_graph_out: list[PetOutGraph] | None = None
|
451
456
|
device_records: list[LitterRecord] | None = None
|
452
457
|
device_stats: LitterStats | None = None
|
453
|
-
firmware: float
|
458
|
+
firmware: float | str | None = None
|
454
459
|
firmware_details: list[FirmwareDetail] = Field(alias="firmwareDetails")
|
455
460
|
hardware: int
|
456
461
|
id: int
|
457
462
|
in_times: int | None = Field(None, alias="inTimes")
|
458
463
|
is_pet_out_tips: int | None = Field(None, alias="isPetOutTips")
|
459
464
|
k3_device: Purifier | None = Field(None, alias="k3Device")
|
460
|
-
last_out_time: int | None = None
|
465
|
+
last_out_time: int | None = Field(None, alias="lastOutTime")
|
461
466
|
locale: str | None = None
|
462
467
|
mac: str | None = None
|
463
468
|
maintenance_time: int | None = Field(None, alias="maintenanceTime")
|
@@ -472,6 +477,7 @@ class Litter(BaseModel):
|
|
472
477
|
pet_out_records: list[list[int]] | None = Field(None, alias="petOutRecords")
|
473
478
|
pet_out_tips: list[Any] | None = Field(None, alias="petOutTips")
|
474
479
|
purification_tip: int | None = Field(None, alias="purificationTip")
|
480
|
+
ph_error_popup: int | None = Field(None, alias="phErrorPopup")
|
475
481
|
secret: str | None = None
|
476
482
|
service_status: int | None = Field(None, alias="serviceStatus")
|
477
483
|
settings: SettingsLitter | None = None
|
@@ -187,7 +187,7 @@ build-backend = "poetry.core.masonry.api"
|
|
187
187
|
|
188
188
|
[tool.poetry]
|
189
189
|
name = "pypetkitapi"
|
190
|
-
version = "1.
|
190
|
+
version = "1.19.1"
|
191
191
|
description = "Python client for PetKit API"
|
192
192
|
authors = ["Jezza34000 <info@mail.com>"]
|
193
193
|
readme = "README.md"
|
@@ -209,7 +209,7 @@ ruff = "^0.8.1"
|
|
209
209
|
types-aiofiles = "^24.1.0.20240626"
|
210
210
|
|
211
211
|
[tool.bumpver]
|
212
|
-
current_version = "1.
|
212
|
+
current_version = "1.19.1"
|
213
213
|
version_pattern = "MAJOR.MINOR.PATCH"
|
214
214
|
commit_message = "bump version {old_version} -> {new_version}"
|
215
215
|
tag_message = "{new_version}"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|