File tree Expand file tree Collapse file tree 5 files changed +427
-189
lines changed Expand file tree Collapse file tree 5 files changed +427
-189
lines changed Original file line number Diff line number Diff line change 3
3
/// <reference types="next/navigation-types/compat/navigation" />
4
4
5
5
// NOTE: This file should not be edited
6
- // see https://nextjs.org/docs/app/building-your-application/configuring /typescript for more information.
6
+ // see https://nextjs.org/docs/app/api-reference/config /typescript for more information.
Original file line number Diff line number Diff line change 11
11
},
12
12
"license" : " ISC" ,
13
13
"dependencies" : {
14
- "next" : " 15.0.0-rc .1" ,
14
+ "next" : " 15.3 .1" ,
15
15
"next-auth" : " workspace:*" ,
16
16
"react" : " 19.0.0-rc-4c58fce7-20240904" ,
17
17
"react-dom" : " 19.0.0-rc-4c58fce7-20240904"
Original file line number Diff line number Diff line change 109
109
"devDependencies" : {
110
110
"@types/react" : " 18.0.37" ,
111
111
"dotenv" : " ^10.0.0" ,
112
- "next" : " 15.0.0-rc .1" ,
112
+ "next" : " 15.3 .1" ,
113
113
"nodemailer" : " ^6.9.3" ,
114
114
"react" : " ^18.2.0"
115
115
}
Original file line number Diff line number Diff line change 1
1
// @ts -expect-error Next.js does not yet correctly use the `package.json#exports` field
2
2
import type { NextRequest } from "next/server"
3
- import type { Awaitable } from "@auth/core/types"
4
3
5
4
/**
6
5
* AppRouteHandlerFnContext is the context that is passed to the handler as the
7
6
* second argument.
8
7
*/
9
8
export type AppRouteHandlerFnContext = {
10
- params : Awaitable < Record < string , string | string [ ] > >
9
+ params : Promise < any >
11
10
}
12
11
/**
13
12
* Handler function for app routes. If a non-Response value is returned, an error
You can’t perform that action at this time.
0 commit comments