Merge branch 'develop' into feat/read-only-token

This commit is contained in:
Shivam Mishra
2026-06-11 19:38:26 +05:30
committed by GitHub
28 changed files with 382 additions and 32 deletions
+6
View File
@@ -60,6 +60,12 @@ class Inboxes extends CacheEnabledApiClient {
disableWhatsappCalling(inboxId) {
return axios.post(`${this.url}/${inboxId}/disable_whatsapp_calling`);
}
setInboundCalls(inboxId, enabled) {
return axios.post(`${this.url}/${inboxId}/set_inbound_calls`, {
inbound_calls_enabled: enabled,
});
}
}
export default new Inboxes();