Skip to content

Commit

Permalink
Bump version to 0.0.65 in package.json and update role property type …
Browse files Browse the repository at this point in the history
…in SessionModel interface
  • Loading branch information
NateIsern committed Nov 15, 2024
1 parent d63c55e commit b5552f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oxyhq/services",
"version": "0.0.64",
"version": "0.0.65",
"description": "",
"homepage": "https://oxy.so/",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useOxySession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface SessionModel {
verified: boolean;
avatar: string;
created_at: string;
role: string;
role: "ADMIN" | "USER" | "MODERATOR" | undefined; // Updated role property type
};
}

Expand Down

0 comments on commit b5552f0

Please sign in to comment.