Skip to content

Commit

Permalink
chore(deps): update service dependencies (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
LironEr authored Apr 11, 2024
1 parent 34d1e24 commit 15a8848
Show file tree
Hide file tree
Showing 3 changed files with 189 additions and 47 deletions.
8 changes: 4 additions & 4 deletions service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
"gen-local-data": "ts-node ./scripts/generateLocalData.ts"
},
"dependencies": {
"@fastify/cookie": "^9.0.4",
"@fastify/cors": "^8.3.0",
"@fastify/secure-session": "^6.2.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/secure-session": "^7.4.0",
"@octokit/auth-app": "^6.0.0",
"@octokit/rest": "^20.0.1",
"bundlemon-markdown-output": "^1.0.0",
"bundlemon-utils": "^1.2.1",
"bytes": "^3.1.2",
"env-var": "^7.3.1",
"fastify": "^4.21.0",
"fastify": "^4.26.2",
"mongodb": "^6.3.0"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions service/src/types/auth.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
/* istanbul ignore file */

declare module '@fastify/secure-session' {
interface SessionData {
user: UserSessionData;
}
}

export interface LoggedInUser {
provider: 'github';
name: string;
Expand Down
Loading

0 comments on commit 15a8848

Please sign in to comment.