export interface MainEntity { id?: string; } export interface TriggerAutomationRequest { /** hookId is the id of the hook to trigger */ hookId?: string; /** payload is the payload to send to the hook */ payload?: Record | null; } export interface TriggerAutomationResponse { }