Plugin connection configuration
| 216 | |
| 217 | |
| 218 | class PluginConfig(BaseModel): |
| 219 | """Plugin connection configuration""" |
| 220 | |
| 221 | id: int = 1 |
| 222 | connection_token: str = "" # 插件连接token |
| 223 | auto_enable_on_update: bool = True # 更新token时自动启用(默认开启) |
| 224 | created_at: Optional[datetime] = None |
| 225 | updated_at: Optional[datetime] = None |
| 226 | |
| 227 | |
| 228 | class TokenRefreshConfig(BaseModel): |