(20250115) Can accept WhatsApp (Nimbus) integrations now.

This commit is contained in:
2025-01-15 16:29:48 +05:30
parent 77b7ad08dd
commit efd7dda9f0
9 changed files with 571 additions and 27 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ class CoreAuthTokenModel(BaseModel):
client: Literal[
"gmail", "outlook", # ............................. Mail Clients
"telegram", "whatsapp", # ......................... Chat Clients
"telegram", "whatsapp", "whatsappNimbus", # ....... Chat Clients
"nimbusSmsIndia", "savvyBulkSmsKenya", # .......... SMS Clients
"razorpay", "safaricomMPesaExpress", # ............ Payment Gateways
"zerodhaKite", "iciciBreeze", "paperTrading", # ... Stock Brokers
+3 -3
View File
@@ -112,9 +112,9 @@ class CoreMessageModel(BaseModel):
)
client: Literal[
"gmail", "outlook", # ...................... Mail Clients
"telegram", "whatsapp", # .................. Chat Clients
"nimbusSmsIndia", "savvyBulkSmsKenya", # ... SMS Clients
"gmail", "outlook", # ........................................ Mail Clients
"telegram", "whatsapp", "whatsappNimbus", # .................. Chat Clients
"nimbusSmsIndia", "savvyBulkSmsKenya", # ..................... SMS Clients
] = Field(
description = "the third-part client that was used",
frozen = True