Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 49 additions & 82 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supabase/shared-types",
"version": "0.1.85",
"version": "0.1.86",
"description": "Shared Types for Supabase",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
Expand Down
2 changes: 2 additions & 0 deletions src/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ export enum ProjectEvents {
ProjectStorageArchiveCompleted = 'project.storage_archive_completed',
ProjectClonedToTarget = 'project.cloned_to_target',
ProjectClonedFromSource = 'project.cloned_from_source',
ProjectHibernationSuspended = 'project.hibernation_suspended',
ProjectHibernationWaken = 'project.hibernation_waken',
Copy link

Copilot AI Mar 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ProjectHibernationWaken / project.hibernation_waken is grammatically inconsistent with the rest of ProjectEvents (which mostly uses past tense/participle like paused, restored, completed). If this event represents “project was woken”, consider renaming to something like ProjectHibernationWoken (and project.hibernation_woken) or ...Awakened to avoid confusion/mismatched event routing for consumers.

Suggested change
ProjectHibernationWaken = 'project.hibernation_waken',
ProjectHibernationWoken = 'project.hibernation_woken',

Copilot uses AI. Check for mistakes.
}

export enum ProjectCloningEvents {
Expand Down
Loading