plane/web/types/webhook.d.ts
Aaryan Khandelwal 726f4668e0 refactor: webhooks (#2896)
* refactor: webhooks workflow

* chore: update delete modal content
2023-12-07 19:59:35 +05:30

16 lines
305 B
TypeScript

export interface IWebhook {
created_at: string;
cycle: boolean;
id: string;
is_active: boolean;
issue: boolean;
issue_comment: boolean;
module: boolean;
project: boolean;
secret_key?: string;
updated_at: string;
url: string;
}
export type TWebhookEventTypes = "all" | "individual";