* feat: google native triggers * nit skill * better native trigger abstraction * use resources for workspace integrations * better and better * better tests * update native trigger skill * sqlx * less tx and google update fix * refactor a bit the external logic * nits * fix * fix google native trigger update * fix oauth * review fixes * sqlx fix * nit * chore: update ee-repo-ref to a10eda4251610cceee67fbe05463b8be82ffa9e0 This commit updates the EE repository reference after PR #416 was merged in windmill-ee-private. Previous ee-repo-ref: bf3696d5f2a39a3cb84dbbee81e092155f2a8c75 New ee-repo-ref: a10eda4251610cceee67fbe05463b8be82ffa9e0 Automated by sync-ee-ref workflow. --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
11 lines
510 B
SQL
11 lines
510 B
SQL
-- Add Google to native_trigger_service enum
|
|
-- 'google' is a unified service that handles both Drive and Calendar triggers
|
|
-- The trigger_type field in service_config determines which Google service is used
|
|
ALTER TYPE native_trigger_service ADD VALUE IF NOT EXISTS 'google';
|
|
|
|
-- Add to TRIGGER_KIND enum (used for trigger tracking)
|
|
ALTER TYPE TRIGGER_KIND ADD VALUE IF NOT EXISTS 'google';
|
|
|
|
-- Add to job_trigger_kind enum (used for job tracking)
|
|
ALTER TYPE job_trigger_kind ADD VALUE IF NOT EXISTS 'google';
|