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 33/// <reference types="next/navigation-types/compat/navigation" />
44
55// 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 1111 },
1212 "license" : " ISC" ,
1313 "dependencies" : {
14- "next" : " 15.0.0-rc .1" ,
14+ "next" : " 15.3 .1" ,
1515 "next-auth" : " workspace:*" ,
1616 "react" : " 19.0.0-rc-4c58fce7-20240904" ,
1717 "react-dom" : " 19.0.0-rc-4c58fce7-20240904"
Original file line number Diff line number Diff line change 109109 "devDependencies" : {
110110 "@types/react" : " 18.0.37" ,
111111 "dotenv" : " ^10.0.0" ,
112- "next" : " 15.0.0-rc .1" ,
112+ "next" : " 15.3 .1" ,
113113 "nodemailer" : " ^6.9.3" ,
114114 "react" : " ^18.2.0"
115115 }
Original file line number Diff line number Diff line change 11// @ts -expect-error Next.js does not yet correctly use the `package.json#exports` field
22import type { NextRequest } from "next/server"
3- import type { Awaitable } from "@auth/core/types"
43
54/**
65 * AppRouteHandlerFnContext is the context that is passed to the handler as the
76 * second argument.
87 */
98export type AppRouteHandlerFnContext = {
10- params : Awaitable < Record < string , string | string [ ] > >
9+ params : Promise < any >
1110}
1211/**
1312 * 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