// ====================================// types.tsexport type Bindings = { DATABASE_URL: string; DATABASE_AUTH_TOKEN: string; GOOGLE_AUTH_CLIENT_ID: string; GOOGLE_AUTH_CLIENT_SECRET: string; SERVER_URL: string; CLIENT_URL: string;};export type Variables = { token: { token: string; expires_in: number; }; "granted-scopes": string[]; "user-google": GoogleUserInfo;};export type JWTPayload = { id: string; email: string; name: string; profilePicture: string; role: Role;};