ecapi-sdk 3.1.4__tar.gz → 3.1.5__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.1.4 → ecapi_sdk-3.1.5}/PKG-INFO +1 -1
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/pyproject.toml +1 -1
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk/client.py +5 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk/client.pyi +3 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk.egg-info/PKG-INFO +1 -1
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/README.md +0 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/setup.cfg +0 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk/__init__.py +0 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk/py.typed +0 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk.egg-info/SOURCES.txt +0 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk.egg-info/dependency_links.txt +0 -0
- {ecapi_sdk-3.1.4 → ecapi_sdk-3.1.5}/src/ecapi_sdk.egg-info/top_level.txt +0 -0
|
@@ -281,6 +281,11 @@ class _BaseApi:
|
|
|
281
281
|
request_kwargs, query_kwargs = _extract_request_kwargs(kwargs)
|
|
282
282
|
return self._http.request("DELETE", path, query=query, **request_kwargs, **query_kwargs)
|
|
283
283
|
|
|
284
|
+
class ProtBundleAPI(_BaseApi):
|
|
285
|
+
def get_manifest(self, **kwargs: Any) -> Any:
|
|
286
|
+
"""获取控制台 JS 加密包 manifest"""
|
|
287
|
+
return self._get(f"/app-manifest", None, **kwargs)
|
|
288
|
+
|
|
284
289
|
class AdminAPI(_BaseApi):
|
|
285
290
|
def delete_mail(self, mailId: Union[int, float], **kwargs: Any) -> Any:
|
|
286
291
|
"""删除邮件"""
|
|
@@ -866,6 +866,9 @@ class ECAPIError(Exception):
|
|
|
866
866
|
field: Optional[str]
|
|
867
867
|
def __init__(self, message: str, status: int, payload: Any, url: str) -> None: ...
|
|
868
868
|
|
|
869
|
+
class ProtBundleAPI:
|
|
870
|
+
def get_manifest(self, **kwargs: Any) -> Any: ...
|
|
871
|
+
|
|
869
872
|
class AdminAPI:
|
|
870
873
|
def delete_mail(self, mailId: Union[int, float], **kwargs: Any) -> Any: ...
|
|
871
874
|
def get_operation_logs(self, query: Optional[AdminAPIGetOperationLogsQuery] = ..., **kwargs: Any) -> Any: ...
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|