import { EventType } from "@prisma/client"; export const populateEnvironment = { eventClasses: { create: [ { name: "New Session", description: "Gets fired when a new session is created", type: EventType.automatic, }, { name: "Exit Intent (Desktop)", description: "A user on Desktop leaves the website with the cursor.", type: EventType.automatic, }, { name: "50% Scroll", description: "A user scrolled 50% of the current page", type: EventType.automatic, }, ], }, attributeClasses: { create: [ { name: "userId", description: "The internal ID of the person", type: EventType.automatic }, { name: "email", description: "The email of the person", type: EventType.automatic }, ], }, };