(body: {
url: string;
events: Array<string>;
description?: string;
filters?: { agentIds?: Array<string>; conversationIds?: Array<string>; labels?: Array<string> };
})
| 378 | } |
| 379 | |
| 380 | createWebhook(body: { |
| 381 | url: string; |
| 382 | events: Array<string>; |
| 383 | description?: string; |
| 384 | filters?: { agentIds?: Array<string>; conversationIds?: Array<string>; labels?: Array<string> }; |
| 385 | }): Promise<CreateWebhookResponse> { |
| 386 | return this.sdk.webhooks.create(body as CreateWebhookRequest); |
| 387 | } |
| 388 | |
| 389 | updateWebhook( |
| 390 | id: string, |
no test coverage detected