@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
11 lines (10 loc) • 370 B
TypeScript
export declare type webhook_create_update_payload = {
/**
* The url where the events should be sent
*/
url?: string;
/**
* The events you want to subscribe to.
*/
subscriptions?: Array<"conversation_created" | "conversation_status_changed" | "conversation_updated" | "message_created" | "message_updated" | "webwidget_triggered">;
};