export default interface OAuthConnection { _id?: string; userId: string; provider: "github" | "google"; providerId: string; accessToken: string; refreshToken?: string; scope: string; expiresAt?: Date; createdAt: Date; updatedAt: Date; }