Skip to content

Commit

Permalink
fix: PermissionAction.SECRETS_WRITE typo (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
phamhieu authored Oct 14, 2024
1 parent 5279185 commit 0803cb9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 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.72",
"version": "0.1.73",
"description": "Shared Types for Supabase",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export enum PermissionAction {
INFRA_EXECUTE = 'infra:Execute',
READ = 'read:Read',
SECRETS_READ = 'secrets:Read',
SECRETS_WRTIE = 'secrets:Write',
SECRETS_WRITE = 'secrets:Write',
SQL_SELECT = 'sql:Read:Select',
SQL_DELETE = 'sql:Write:Delete',
SQL_INSERT = 'sql:Write:Insert',
Expand Down

0 comments on commit 0803cb9

Please sign in to comment.