From 7381102703c6d90292619e24cf2f60a5486678dc Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 17 Jun 2026 06:37:41 +0000 Subject: [PATCH 1/2] feat: add BranchEvents enum Add a new enum for branch events including branch.pr_opened, branch.pr_closed, and branch.commit_pushed. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01EhxMgoCmwkbtp75KS4b2Kc --- src/events.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/events.ts b/src/events.ts index 3f2ac1b..fb58d35 100644 --- a/src/events.ts +++ b/src/events.ts @@ -43,6 +43,12 @@ export enum ProjectEvents { ProjectHibernationWaken = 'project.hibernation_waken', } +export enum BranchEvents { + BranchPrOpened = 'branch.pr_opened', + BranchPrClosed = 'branch.pr_closed', + BranchCommitPushed = 'branch.commit_pushed', +} + export enum ProjectCloningEvents { ClonedFromSource = 'cloned_from_source', ClonedToTarget = 'cloned_to_target', From 20830ee7de5687156479fa5a28daf233d525ff36 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 17 Jun 2026 08:31:29 +0000 Subject: [PATCH 2/2] chore: bump version to 0.1.90 Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01EhxMgoCmwkbtp75KS4b2Kc --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a29b059..138bd81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@supabase/shared-types", - "version": "0.1.89", + "version": "0.1.90", "description": "Shared Types for Supabase", "scripts": { "lint": "eslint . --ext .ts,.tsx",