auth.ts file I wanna set some custom data to the session-token cookie so the data can be synchronously retrieved on the server side without using:await auth.api.getSession({
headers: await headers(),
});session: {
expiresIn: 60 * 60 * 24 * 7,
updateAge: 60 * 60 * 24,
fields: {
userId: "userId"
},
},userId and the value it accepts has to be the userId: NotNull<PgUUIDBuilderInitial<"user_id">> but as a value (i.e, userId: "userId").