ecapi-sdk 3.3.15__tar.gz → 3.3.16__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.3.15 → ecapi_sdk-3.3.16}/PKG-INFO +1 -1
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/pyproject.toml +1 -1
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk/client.py +2 -2
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk/client.pyi +4 -1
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk.egg-info/PKG-INFO +1 -1
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/README.md +0 -0
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/setup.cfg +0 -0
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk/__init__.py +0 -0
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk/py.typed +0 -0
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk.egg-info/SOURCES.txt +0 -0
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk.egg-info/dependency_links.txt +0 -0
- {ecapi_sdk-3.3.15 → ecapi_sdk-3.3.16}/src/ecapi_sdk.egg-info/top_level.txt +0 -0
|
@@ -1196,9 +1196,9 @@ class ServerSpamDetectorAPI(_BaseApi):
|
|
|
1196
1196
|
return self._patch(f"/spam-detector/config", payload, **kwargs)
|
|
1197
1197
|
|
|
1198
1198
|
class SystemAPI(_BaseApi):
|
|
1199
|
-
def get_app_manifest(self, **kwargs: Any) -> Any:
|
|
1199
|
+
def get_app_manifest(self, query: Optional[QueryParams] = None, **kwargs: Any) -> Any:
|
|
1200
1200
|
"""获取控制台 JS 加密包 manifest"""
|
|
1201
|
-
return self._get(f"/app-manifest",
|
|
1201
|
+
return self._get(f"/app-manifest", query, **kwargs)
|
|
1202
1202
|
|
|
1203
1203
|
def get_health(self, **kwargs: Any) -> Any:
|
|
1204
1204
|
"""获取服务健康状态"""
|
|
@@ -1032,6 +1032,9 @@ class ServerSpamDetectorAPISetStateBodyRequired(TypedDict):
|
|
|
1032
1032
|
class ServerSpamDetectorAPISetStateBody(ServerSpamDetectorAPISetStateBodyRequired, total=False):
|
|
1033
1033
|
pass
|
|
1034
1034
|
|
|
1035
|
+
class SystemAPIGetAppManifestQuery(TypedDict, total=False):
|
|
1036
|
+
version: QueryValue
|
|
1037
|
+
|
|
1035
1038
|
class SystemAPIProbeDatabaseIndexesQueryRequired(TypedDict):
|
|
1036
1039
|
tables: QueryValue
|
|
1037
1040
|
|
|
@@ -1371,7 +1374,7 @@ class ServerSpamDetectorAPI:
|
|
|
1371
1374
|
def update_config(self, payload: ServerSpamDetectorAPIUpdateConfigBody, **kwargs: Any) -> Any: ...
|
|
1372
1375
|
|
|
1373
1376
|
class SystemAPI:
|
|
1374
|
-
def get_app_manifest(self, **kwargs: Any) -> Any: ...
|
|
1377
|
+
def get_app_manifest(self, query: Optional[SystemAPIGetAppManifestQuery] = ..., **kwargs: Any) -> Any: ...
|
|
1375
1378
|
def get_health(self, **kwargs: Any) -> Any: ...
|
|
1376
1379
|
def get_liveness(self, **kwargs: Any) -> Any: ...
|
|
1377
1380
|
def get_readiness(self, **kwargs: Any) -> Any: ...
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|