import { IdentityProvider, UserPermissionRole } from "@calcom/prisma/enums";

export const getSampleUserInSession = () => ({
  locale: "",
  avatar: "",
  organization: {
    isOrgAdmin: false,
    metadata: null,
    id: 1,
    requestedSlug: null,
  },
  profile: null,
  defaultScheduleId: null,
  name: "",
  defaultBookerLayouts: null,
  timeZone: "Asia/Kolkata",
  selectedCalendars: [],
  destinationCalendar: null,
  emailVerified: new Date(),
  allowDynamicBooking: false,
  bio: "",
  weekStart: "",
  startTime: 0,
  endTime: 0,
  bufferTime: 0,
  hideBranding: false,
  timeFormat: 12,
  twoFactorEnabled: false,
  identityProvider: IdentityProvider.CAL,
  brandColor: "#292929",
  darkBrandColor: "#fafafa",
  metadata: null,
  role: UserPermissionRole.USER,
  organizationId: null,
  theme: "",
  appTheme: "",
  createdDate: new Date(),
  trialEndsAt: new Date(),
  completedOnboarding: false,
  allowSEOIndexing: false,
  receiveMonthlyDigestEmail: false,
});
