Skip to content

Commit c266052

Browse files
authored
Revert "fix: move wpp event to its own enum for easier later expansion (#92)" (#93)
This reverts commit b7fa4ab.
1 parent b7fa4ab commit c266052

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supabase/shared-types",
3-
"version": "0.1.79",
3+
"version": "0.1.78",
44
"description": "Shared Types for Supabase",
55
"scripts": {
66
"lint": "eslint . --ext .ts,.tsx",

src/events.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export enum ProjectEvents {
2525
ProjectDiskGrowth = 'project.disk_growth',
2626
ProjectSoftwareUpgraded = 'project.software_upgraded',
2727
ProjectTransfered = 'project.transfered',
28+
ProjectTransferredFromWarmPool = 'project.transfered_from_warm_pool',
2829
ProjectPhysicalBackupTransition = 'project.physical_backup_transition',
2930
ProjectPhysicalBackupIneligible = 'project.physical_backup_ineligible',
3031
ProjectIPv4AddressUpdate = 'project.network.ipv4_update',
@@ -37,10 +38,6 @@ export enum ProjectEvents {
3738
ProjectStorageArchiveCompleted = 'project.storage_archive_completed',
3839
}
3940

40-
export enum WarmProjectPoolEvents {
41-
Transferred = 'transfered_from_warm_project_pool',
42-
}
43-
4441
export enum ProjectCloningEvents {
4542
ClonedFromSource = 'cloned_from_source',
4643
ClonedToTarget = 'cloned_to_target',

0 commit comments

Comments
 (0)