pypetkitapi 1.16.2__tar.gz → 1.16.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pypetkitapi
3
- Version: 1.16.2
3
+ Version: 1.16.4
4
4
  Summary: Python client for PetKit API
5
5
  License: MIT
6
6
  Author: Jezza34000
@@ -51,7 +51,7 @@ from .media import DownloadDecryptMedia, MediaCloud, MediaFile, MediaManager
51
51
  from .purifier_container import Purifier
52
52
  from .water_fountain_container import WaterFountain
53
53
 
54
- __version__ = "1.16.2"
54
+ __version__ = "1.16.4"
55
55
 
56
56
  __all__ = [
57
57
  "CTW3",
@@ -83,6 +83,7 @@ class SettingsLitter(BaseModel):
83
83
  pet_notify: int | None = Field(None, alias="petNotify")
84
84
  pre_live: int | None = Field(None, alias="preLive")
85
85
  relate_k3_switch: int | None = Field(None, alias="relateK3Switch")
86
+ sand_saving: int | None = Field(None, alias="sandSaving")
86
87
  sand_type: int | None = Field(None, alias="sandType")
87
88
  soft_mode: int | None = Field(None, alias="softMode")
88
89
  spray_notify: int | None = Field(None, alias="sprayNotify")
@@ -448,7 +449,7 @@ class Litter(BaseModel):
448
449
  firmware_details: list[FirmwareDetail] = Field(alias="firmwareDetails")
449
450
  hardware: int
450
451
  id: int
451
- in_times: int | None = None
452
+ in_times: int | None = Field(None, alias="inTimes")
452
453
  is_pet_out_tips: int | None = Field(None, alias="isPetOutTips")
453
454
  k3_device: Purifier | None = Field(None, alias="k3Device")
454
455
  last_out_time: int | None = None
@@ -467,14 +468,14 @@ class Litter(BaseModel):
467
468
  pet_out_tips: list[Any] | None = Field(None, alias="petOutTips")
468
469
  purification_tip: int | None = Field(None, alias="purificationTip")
469
470
  secret: str | None = None
470
- service_status: int | None = None
471
+ service_status: int | None = Field(None, alias="serviceStatus")
471
472
  settings: SettingsLitter | None = None
472
473
  share_open: int | None = Field(None, alias="shareOpen")
473
474
  signup_at: str | None = Field(None, alias="signupAt")
474
475
  sn: str
475
476
  state: StateLitter | None = None
476
477
  timezone: float | None = None
477
- total_time: int | None = None
478
+ total_time: int | None = Field(None, alias="totalTime")
478
479
  user: UserDevice | None = None
479
480
  with_k3: int | None = Field(None, alias="withK3")
480
481
 
@@ -186,7 +186,7 @@ build-backend = "poetry.core.masonry.api"
186
186
 
187
187
  [tool.poetry]
188
188
  name = "pypetkitapi"
189
- version = "1.16.2"
189
+ version = "1.16.4"
190
190
  description = "Python client for PetKit API"
191
191
  authors = ["Jezza34000 <info@mail.com>"]
192
192
  readme = "README.md"
@@ -208,7 +208,7 @@ ruff = "^0.8.1"
208
208
  types-aiofiles = "^24.1.0.20240626"
209
209
 
210
210
  [tool.bumpver]
211
- current_version = "1.16.2"
211
+ current_version = "1.16.4"
212
212
  version_pattern = "MAJOR.MINOR.PATCH"
213
213
  commit_message = "bump version {old_version} -> {new_version}"
214
214
  tag_message = "{new_version}"
File without changes
File without changes