feat(agents): Add agent provisioning confirmation mechanism and update message structure

This commit is contained in:
Abhimanyu Saharan
2026-02-04 17:24:52 +05:30
parent d3642a5efd
commit 8078580996
5 changed files with 156 additions and 36 deletions

View File

@@ -44,3 +44,8 @@ class AgentHeartbeatCreate(AgentHeartbeat):
class AgentDeleteConfirm(SQLModel):
token: str
class AgentProvisionConfirm(SQLModel):
token: str
action: str | None = None