Feat/inbound telephony (#113)

* feat: inbound telephony (twilio & vobiz)

* chore: add ruff and lint formatting

* fix: add missing cloudonix interface compliance implementation
This commit is contained in:
Sabiha Khan 2026-01-12 10:10:30 +05:30 committed by GitHub
parent b79bc4221d
commit 97fbd9b37b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 1998 additions and 40 deletions

View file

@ -3,6 +3,8 @@ from typing import Any, Dict
from pydantic import BaseModel
from api.enums import CallType
class WorkflowRunResponseSchema(BaseModel):
id: int
@ -17,3 +19,4 @@ class WorkflowRunResponseSchema(BaseModel):
definition_id: int | None # This is for backward compatibility
initial_context: dict | None = None
gathered_context: dict | None = None
call_type: CallType