Merge branch 'feat/rollup/2-report-data-source' into feat/rollup/3-rollup-read-path

This commit is contained in:
Shivam Mishra
2026-03-16 19:14:03 +05:30
committed by GitHub
34 changed files with 706 additions and 223 deletions
@@ -9,6 +9,10 @@ class InboxHealthAPI extends ApiClient {
getHealthStatus(inboxId) {
return axios.get(`${this.url}/${inboxId}/health`);
}
registerWebhook(inboxId) {
return axios.post(`${this.url}/${inboxId}/register_webhook`);
}
}
export default new InboxHealthAPI();