()
| 370 | // ── Webhooks ──────────────────────────────────────────────────── |
| 371 | |
| 372 | listWebhooks(): Promise<WebhookView[]> { |
| 373 | return this.sdk.webhooks.list().toArray({ limit: DEFAULT_LIST_LIMIT }); |
| 374 | } |
| 375 | |
| 376 | getWebhook(id: string): Promise<WebhookView> { |
| 377 | return this.sdk.webhooks.get(id); |
no test coverage detected