/** * This related primarily to database events right now */ export declare enum INTEGRATION_EVENT_TYPE { DATABASE_CREATE = "database_create", DATABASE_UPDATE = "database_update", DATABASE_DELETE = "database_delete", WEBHOOK_RECEIVED = "webhook_received" } /** * Where the webhook originates * * This determines: * - DEFAULT WEBHOOK_SECURITY * - Where we look for token / secret (headers) */ export declare enum WEBHOOK_SOURCE { GITLAB = "gitlab", GITHUB = "github", GENERIC = "generic" } /** * - DEFAULT depends on WEBHOOK_SOURCE * - NONE means no security; accept whatever comes */ export declare enum WEBHOOK_SECURITY { DEFAULT = "default", NONE = "none" }