fix(oauth-providers): support latest hono (#662)
* fix(oauth-providers): support latest hono * chore: add changeset * change major to patchpull/778/head
parent
75eef8790f
commit
40e3a780d1
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@hono/oauth-providers': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
support hono v4.5
|
|
@ -113,7 +113,7 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@cloudflare/workers-types": "^4.20231025.0",
|
"@cloudflare/workers-types": "^4.20231025.0",
|
||||||
"@types/jest": "^29.5.7",
|
"@types/jest": "^29.5.7",
|
||||||
"hono": "^3.11.7",
|
"hono": "^4.5.1",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-miniflare": "^2.14.1",
|
"jest-environment-miniflare": "^2.14.1",
|
||||||
"msw": "^2.0.11",
|
"msw": "^2.0.11",
|
||||||
|
|
|
@ -6,5 +6,5 @@ export type OAuthVariables = {
|
||||||
|
|
||||||
export type Token = {
|
export type Token = {
|
||||||
token: string
|
token: string
|
||||||
expires_in: number
|
expires_in?: number
|
||||||
}
|
}
|
||||||
|
|
|
@ -2502,7 +2502,7 @@ __metadata:
|
||||||
dependencies:
|
dependencies:
|
||||||
"@cloudflare/workers-types": "npm:^4.20231025.0"
|
"@cloudflare/workers-types": "npm:^4.20231025.0"
|
||||||
"@types/jest": "npm:^29.5.7"
|
"@types/jest": "npm:^29.5.7"
|
||||||
hono: "npm:^3.11.7"
|
hono: "npm:^4.5.1"
|
||||||
jest: "npm:^29.7.0"
|
jest: "npm:^29.7.0"
|
||||||
jest-environment-miniflare: "npm:^2.14.1"
|
jest-environment-miniflare: "npm:^2.14.1"
|
||||||
msw: "npm:^2.0.11"
|
msw: "npm:^2.0.11"
|
||||||
|
|
Loading…
Reference in New Issue