plane/web/types/webhook.d.ts

16 lines
305 B
TypeScript
Raw Normal View History

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";