Skip to content

Commit

Permalink
fix: analytics oauth scope values (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
phamhieu authored Jul 1, 2024
1 parent c4453d5 commit 2f1547b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.69",
"version": "0.1.70",
"description": "Shared Types for Supabase",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
Expand Down
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export enum PermissionAction {
}

export enum OAuthScope {
ANALYTICS_READ = 'analytics:Read',
ANALYTICS_WRITE = 'analytics:Write',
ANALYTICS_READ = 'analytics:read',
ANALYTICS_WRITE = 'analytics:write',
AUTH_READ = 'auth:read',
AUTH_WRITE = 'auth:write',
DATABASE_READ = 'database:read',
Expand Down

0 comments on commit 2f1547b

Please sign in to comment.