ecapi-sdk 3.1.5__tar.gz → 3.2.2__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.5 → ecapi_sdk-3.2.2}/PKG-INFO +1 -8
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/README.md +0 -7
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/pyproject.toml +1 -1
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk/client.py +507 -446
- ecapi_sdk-3.2.2/src/ecapi_sdk/client.pyi +1142 -0
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk.egg-info/PKG-INFO +1 -8
- ecapi_sdk-3.1.5/src/ecapi_sdk/client.pyi +0 -1141
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/setup.cfg +0 -0
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk/__init__.py +0 -0
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk/py.typed +0 -0
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk.egg-info/SOURCES.txt +0 -0
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk.egg-info/dependency_links.txt +0 -0
- {ecapi_sdk-3.1.5 → ecapi_sdk-3.2.2}/src/ecapi_sdk.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ecapi-sdk
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.2.2
|
|
4
4
|
Summary: ECAPI SDK for Python
|
|
5
5
|
Author: EaseCation
|
|
6
6
|
License: MIT
|
|
@@ -94,13 +94,6 @@ client.punish.create({
|
|
|
94
94
|
"source": "console",
|
|
95
95
|
"reason": "测试警告",
|
|
96
96
|
})
|
|
97
|
-
client.punish.set_parkour_punishment({
|
|
98
|
-
"ecid": "player-ecid",
|
|
99
|
-
"map": "parkour_01",
|
|
100
|
-
"start": 1717200000,
|
|
101
|
-
"end": 1717286400,
|
|
102
|
-
"usetime": 12345,
|
|
103
|
-
})
|
|
104
97
|
```
|
|
105
98
|
|
|
106
99
|
未封装或临时接口可使用统一入口:
|
|
@@ -76,13 +76,6 @@ client.punish.create({
|
|
|
76
76
|
"source": "console",
|
|
77
77
|
"reason": "测试警告",
|
|
78
78
|
})
|
|
79
|
-
client.punish.set_parkour_punishment({
|
|
80
|
-
"ecid": "player-ecid",
|
|
81
|
-
"map": "parkour_01",
|
|
82
|
-
"start": 1717200000,
|
|
83
|
-
"end": 1717286400,
|
|
84
|
-
"usetime": 12345,
|
|
85
|
-
})
|
|
86
79
|
```
|
|
87
80
|
|
|
88
81
|
未封装或临时接口可使用统一入口:
|