satori-python-core 0.16.3__tar.gz → 0.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.1
2
2
  Name: satori-python-core
3
- Version: 0.16.3
3
+ Version: 0.16.4
4
4
  Summary: Satori Protocol SDK for python, specify common part
5
5
  Home-page: https://github.com/RF-Tar-Railt/satori-python
6
6
  Author-Email: RF-Tar-Railt <rf_tar_railt@qq.com>
@@ -69,6 +69,13 @@ pip install satori-python-client
69
69
  pip install satori-python-server
70
70
  ```
71
71
 
72
+ ### 官方适配器
73
+
74
+ | 适配器 | 安装 |
75
+ |------------|----------------------------------------------|
76
+ | Satori | `pip install satori-python-adapter-satori` |
77
+ | OneBot V11 | `pip install satori-python-adapter-onebot11` |
78
+
72
79
  ## 使用
73
80
 
74
81
  客户端:
@@ -45,6 +45,13 @@ pip install satori-python-client
45
45
  pip install satori-python-server
46
46
  ```
47
47
 
48
+ ### 官方适配器
49
+
50
+ | 适配器 | 安装 |
51
+ |------------|----------------------------------------------|
52
+ | Satori | `pip install satori-python-adapter-satori` |
53
+ | OneBot V11 | `pip install satori-python-adapter-onebot11` |
54
+
48
55
  ## 使用
49
56
 
50
57
  客户端:
@@ -23,7 +23,7 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3.12",
24
24
  "Operating System :: OS Independent",
25
25
  ]
26
- version = "0.16.3"
26
+ version = "0.16.4"
27
27
 
28
28
  [project.license]
29
29
  text = "MIT"
@@ -41,4 +41,4 @@ from .model import Role as Role
41
41
  from .model import Upload as Upload
42
42
  from .model import User as User
43
43
 
44
- __version__ = "0.16.3"
44
+ __version__ = "0.16.4"
@@ -46,7 +46,7 @@ class ChannelType(IntEnum):
46
46
  @dataclass
47
47
  class Channel(ModelBase):
48
48
  id: str
49
- type: ChannelType
49
+ type: ChannelType = ChannelType.TEXT
50
50
  name: Optional[str] = None
51
51
  parent_id: Optional[str] = None
52
52