feat: add one-click sync for website group bindings

This commit is contained in:
liumangmang
2026-06-01 09:06:01 +08:00
parent 890432e1a5
commit 518e3e8efc
6 changed files with 329 additions and 11 deletions
+9
View File
@@ -178,3 +178,12 @@ class ImportAccountsResponse(BaseModel):
success: bool
message: str
items: list[ImportAccountItem]
class WebsiteBatchSyncResponse(BaseModel):
total: int
success: int
failed: int
skipped: int
message: str
logs: list[WebsiteSyncLogResponse]