UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

34 lines 842 B
/** * Request body for updating a webhooks object. Only include fields you want to modify. */ export type webhooks_update = { authorized_events?: string; /** * Whether this resource is currently active */ is_active?: boolean; last_payload?: Record<string, any>; last_response_body?: string; last_response_status?: number; /** * ISO 8601 datetime */ last_triggered_at?: string; /** * Set of key-value pairs for storing additional information */ metadata?: Record<string, any>; retry_count?: number; spi_event_types?: string; supports_spi?: boolean; /** * URL/URI */ url?: string; verification_token?: string; /** * Unique identifier (UUID format) */ webhook_id?: string; }; //# sourceMappingURL=webhooks_update.d.ts.map