ecapi-sdk 3.5.0__tar.gz → 3.5.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.
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/PKG-INFO +1 -1
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/pyproject.toml +1 -1
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk/client.py +1 -1
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk/client.pyi +1 -4
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk.egg-info/PKG-INFO +1 -1
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/README.md +0 -0
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/setup.cfg +0 -0
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk/__init__.py +0 -0
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk/py.typed +0 -0
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk.egg-info/SOURCES.txt +0 -0
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk.egg-info/dependency_links.txt +0 -0
- {ecapi_sdk-3.5.0 → ecapi_sdk-3.5.1}/src/ecapi_sdk.egg-info/top_level.txt +0 -0
|
@@ -803,7 +803,7 @@ class EchoMelandAPI(_BaseApi):
|
|
|
803
803
|
return self._get(f"/homeland/worlds/{quote(str(worldId), safe='')}", None, **kwargs)
|
|
804
804
|
|
|
805
805
|
def get_worlds(self, query: Optional[QueryParams] = None, **kwargs: Any) -> Any:
|
|
806
|
-
"""
|
|
806
|
+
"""游标分页查询全服家园"""
|
|
807
807
|
return self._get(f"/homeland/worlds", query, **kwargs)
|
|
808
808
|
|
|
809
809
|
def remove_favorite(self, worldId: Union[int, float], ecid: str, **kwargs: Any) -> Any:
|
|
@@ -635,13 +635,10 @@ class EchoMelandAPIUpdateEnderChestBody(EchoMelandAPIUpdateEnderChestBodyRequire
|
|
|
635
635
|
pass
|
|
636
636
|
|
|
637
637
|
class EchoMelandAPIGetWorldsQuery(TypedDict, total=False):
|
|
638
|
-
current: QueryValue
|
|
639
638
|
pageSize: QueryValue
|
|
639
|
+
cursor: QueryValue
|
|
640
640
|
worldId: QueryValue
|
|
641
641
|
ecid: QueryValue
|
|
642
|
-
keyword: QueryValue
|
|
643
|
-
worldType: QueryValue
|
|
644
|
-
isPublic: QueryValue
|
|
645
642
|
loaded: QueryValue
|
|
646
643
|
|
|
647
644
|
class EchoMelandAPIUpdateWorldBody(TypedDict, total=False):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|