import { AptlyWebhookStatus, AptlyWebhookType } from '../enums/index.js'; import { AptlyBaseSchema } from './extends.js'; export interface AptlyWebhookSchema extends AptlyBaseSchema { organization: ID; user?: ID; app?: ID; appWebhook?: ID; project?: ID; status: AptlyWebhookStatus; url: string; types: AptlyWebhookType[]; secret?: string; state?: string; created: DATE; } export type AptlyWebhook = AptlyWebhookSchema;