2022-06-06 16:54:47 +00:00
|
|
|
|
import { BookingStatus, MembershipRole, Prisma, UserPlan } from "@prisma/client";
|
2021-09-14 08:45:28 +00:00
|
|
|
|
import { uuid } from "short-uuid";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
|
2022-06-28 20:40:58 +00:00
|
|
|
|
import dayjs from "@calcom/dayjs";
|
2022-02-15 20:30:52 +00:00
|
|
|
|
import { hashPassword } from "@calcom/lib/auth";
|
|
|
|
|
import { DEFAULT_SCHEDULE, getAvailabilityFromSchedule } from "@calcom/lib/availability";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
|
2022-05-02 20:39:35 +00:00
|
|
|
|
import prisma from ".";
|
|
|
|
|
import "./seed-app-store";
|
2022-03-26 00:39:38 +00:00
|
|
|
|
|
2022-05-02 20:39:35 +00:00
|
|
|
|
require("dotenv").config({ path: "../../.env" });
|
2021-09-02 15:20:36 +00:00
|
|
|
|
|
|
|
|
|
async function createUserAndEventType(opts: {
|
2021-10-12 09:35:44 +00:00
|
|
|
|
user: {
|
|
|
|
|
email: string;
|
|
|
|
|
password: string;
|
|
|
|
|
username: string;
|
|
|
|
|
plan: UserPlan;
|
|
|
|
|
name: string;
|
|
|
|
|
completedOnboarding?: boolean;
|
2021-11-18 01:03:19 +00:00
|
|
|
|
timeZone?: string;
|
2021-10-12 09:35:44 +00:00
|
|
|
|
};
|
2021-09-28 09:16:02 +00:00
|
|
|
|
eventTypes: Array<
|
|
|
|
|
Prisma.EventTypeCreateInput & {
|
|
|
|
|
_bookings?: Prisma.BookingCreateInput[];
|
|
|
|
|
}
|
|
|
|
|
>;
|
2021-09-02 15:20:36 +00:00
|
|
|
|
}) {
|
2022-03-22 19:43:57 +00:00
|
|
|
|
const userData = {
|
2021-09-02 15:20:36 +00:00
|
|
|
|
...opts.user,
|
|
|
|
|
password: await hashPassword(opts.user.password),
|
|
|
|
|
emailVerified: new Date(),
|
2021-10-12 09:35:44 +00:00
|
|
|
|
completedOnboarding: opts.user.completedOnboarding ?? true,
|
2021-12-09 15:51:37 +00:00
|
|
|
|
locale: "en",
|
2022-03-22 19:43:57 +00:00
|
|
|
|
schedules:
|
|
|
|
|
opts.user.completedOnboarding ?? true
|
|
|
|
|
? {
|
|
|
|
|
create: {
|
|
|
|
|
name: "Working Hours",
|
|
|
|
|
availability: {
|
|
|
|
|
createMany: {
|
|
|
|
|
data: getAvailabilityFromSchedule(DEFAULT_SCHEDULE),
|
|
|
|
|
},
|
2022-03-17 16:48:23 +00:00
|
|
|
|
},
|
|
|
|
|
},
|
2022-03-22 19:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
: undefined,
|
2021-09-02 15:20:36 +00:00
|
|
|
|
};
|
2022-03-22 19:43:57 +00:00
|
|
|
|
|
2021-09-02 15:20:36 +00:00
|
|
|
|
const user = await prisma.user.upsert({
|
|
|
|
|
where: { email: opts.user.email },
|
|
|
|
|
update: userData,
|
|
|
|
|
create: userData,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log(
|
2022-03-26 00:39:38 +00:00
|
|
|
|
`👤 Upserted '${opts.user.username}' with email "${opts.user.email}" & password "${opts.user.password}". Booking page 👉 ${process.env.NEXT_PUBLIC_WEBAPP_URL}/${opts.user.username}`
|
2021-09-02 15:20:36 +00:00
|
|
|
|
);
|
2021-10-28 19:36:45 +00:00
|
|
|
|
|
2021-09-28 09:16:02 +00:00
|
|
|
|
for (const eventTypeInput of opts.eventTypes) {
|
|
|
|
|
const { _bookings: bookingInputs = [], ...eventTypeData } = eventTypeInput;
|
2021-09-02 15:20:36 +00:00
|
|
|
|
eventTypeData.userId = user.id;
|
2021-09-21 09:57:01 +00:00
|
|
|
|
eventTypeData.users = { connect: { id: user.id } };
|
2021-09-14 08:45:28 +00:00
|
|
|
|
|
|
|
|
|
const eventType = await prisma.eventType.findFirst({
|
2021-09-02 15:20:36 +00:00
|
|
|
|
where: {
|
2021-09-14 08:45:28 +00:00
|
|
|
|
slug: eventTypeData.slug,
|
|
|
|
|
users: {
|
|
|
|
|
some: {
|
|
|
|
|
id: eventTypeData.userId,
|
|
|
|
|
},
|
2021-09-06 13:51:15 +00:00
|
|
|
|
},
|
2021-09-02 15:20:36 +00:00
|
|
|
|
},
|
2021-09-14 08:45:28 +00:00
|
|
|
|
select: {
|
|
|
|
|
id: true,
|
|
|
|
|
},
|
2021-09-02 15:20:36 +00:00
|
|
|
|
});
|
2021-09-14 08:45:28 +00:00
|
|
|
|
|
|
|
|
|
if (eventType) {
|
2021-09-28 09:16:02 +00:00
|
|
|
|
console.log(
|
2022-03-26 00:39:38 +00:00
|
|
|
|
`\t📆 Event type ${eventTypeData.slug} already seems seeded - ${process.env.NEXT_PUBLIC_WEBAPP_URL}/${user.username}/${eventTypeData.slug}`
|
2021-09-28 09:16:02 +00:00
|
|
|
|
);
|
|
|
|
|
continue;
|
2021-09-14 08:45:28 +00:00
|
|
|
|
}
|
2021-09-28 09:16:02 +00:00
|
|
|
|
const { id } = await prisma.eventType.create({
|
|
|
|
|
data: eventTypeData,
|
|
|
|
|
});
|
2021-09-14 08:45:28 +00:00
|
|
|
|
|
2021-09-02 15:20:36 +00:00
|
|
|
|
console.log(
|
2022-03-26 00:39:38 +00:00
|
|
|
|
`\t📆 Event type ${eventTypeData.slug}, length ${eventTypeData.length}min - ${process.env.NEXT_PUBLIC_WEBAPP_URL}/${user.username}/${eventTypeData.slug}`
|
2021-09-02 15:20:36 +00:00
|
|
|
|
);
|
2021-09-28 09:16:02 +00:00
|
|
|
|
for (const bookingInput of bookingInputs) {
|
|
|
|
|
await prisma.booking.create({
|
|
|
|
|
data: {
|
|
|
|
|
...bookingInput,
|
|
|
|
|
user: {
|
|
|
|
|
connect: {
|
|
|
|
|
email: opts.user.email,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
attendees: {
|
|
|
|
|
create: {
|
|
|
|
|
email: opts.user.email,
|
|
|
|
|
name: opts.user.name,
|
|
|
|
|
timeZone: "Europe/London",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
eventType: {
|
|
|
|
|
connect: {
|
|
|
|
|
id,
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: bookingInput.status,
|
2021-09-28 09:16:02 +00:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
console.log(
|
|
|
|
|
`\t\t☎️ Created booking ${bookingInput.title} at ${new Date(
|
|
|
|
|
bookingInput.startTime
|
|
|
|
|
).toLocaleDateString()}`
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-09-02 15:20:36 +00:00
|
|
|
|
}
|
2021-10-28 19:36:45 +00:00
|
|
|
|
|
|
|
|
|
return user;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function createTeamAndAddUsers(
|
|
|
|
|
teamInput: Prisma.TeamCreateInput,
|
|
|
|
|
users: { id: number; username: string; role?: MembershipRole }[]
|
|
|
|
|
) {
|
|
|
|
|
const createTeam = async (team: Prisma.TeamCreateInput) => {
|
|
|
|
|
try {
|
|
|
|
|
return await prisma.team.create({
|
|
|
|
|
data: {
|
|
|
|
|
...team,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
} catch (_err) {
|
|
|
|
|
if (_err instanceof Error && _err.message.indexOf("Unique constraint failed on the fields") !== -1) {
|
|
|
|
|
console.log(`Team '${team.name}' already exists, skipping.`);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
throw _err;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const team = await createTeam(teamInput);
|
|
|
|
|
if (!team) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-26 00:39:38 +00:00
|
|
|
|
console.log(
|
|
|
|
|
`🏢 Created team '${teamInput.name}' - ${process.env.NEXT_PUBLIC_WEBAPP_URL}/team/${team.slug}`
|
|
|
|
|
);
|
2021-10-28 19:36:45 +00:00
|
|
|
|
|
|
|
|
|
for (const user of users) {
|
|
|
|
|
const { role = MembershipRole.OWNER, id, username } = user;
|
|
|
|
|
await prisma.membership.create({
|
|
|
|
|
data: {
|
|
|
|
|
teamId: team.id,
|
|
|
|
|
userId: id,
|
|
|
|
|
role: role,
|
|
|
|
|
accepted: true,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
console.log(`\t👤 Added '${teamInput.name}' membership for '${username}' with role '${role}'`);
|
|
|
|
|
}
|
2021-09-02 15:20:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function main() {
|
2022-01-14 13:49:15 +00:00
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "delete-me@example.com",
|
|
|
|
|
password: "delete-me",
|
|
|
|
|
username: "delete-me",
|
|
|
|
|
name: "delete-me",
|
|
|
|
|
plan: "FREE",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [],
|
|
|
|
|
});
|
|
|
|
|
|
2021-09-02 15:20:36 +00:00
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
2021-10-12 09:35:44 +00:00
|
|
|
|
email: "onboarding@example.com",
|
|
|
|
|
password: "onboarding",
|
|
|
|
|
username: "onboarding",
|
|
|
|
|
name: "onboarding",
|
|
|
|
|
plan: "TRIAL",
|
|
|
|
|
completedOnboarding: false,
|
2021-09-02 15:20:36 +00:00
|
|
|
|
},
|
2021-10-12 09:35:44 +00:00
|
|
|
|
eventTypes: [],
|
2021-09-02 15:20:36 +00:00
|
|
|
|
});
|
2021-09-06 13:51:15 +00:00
|
|
|
|
|
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "free-first-hidden@example.com",
|
|
|
|
|
password: "free-first-hidden",
|
|
|
|
|
username: "free-first-hidden",
|
2021-09-21 09:57:01 +00:00
|
|
|
|
name: "Free First Hidden Example",
|
2021-09-06 13:51:15 +00:00
|
|
|
|
plan: "FREE",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [
|
|
|
|
|
{
|
|
|
|
|
title: "30min",
|
|
|
|
|
slug: "30min",
|
|
|
|
|
length: 30,
|
|
|
|
|
hidden: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "60min",
|
|
|
|
|
slug: "60min",
|
|
|
|
|
length: 30,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
2021-09-02 15:20:36 +00:00
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "pro@example.com",
|
2021-09-21 09:57:01 +00:00
|
|
|
|
name: "Pro Example",
|
2021-09-02 15:20:36 +00:00
|
|
|
|
password: "pro",
|
|
|
|
|
username: "pro",
|
2021-09-06 13:51:15 +00:00
|
|
|
|
plan: "PRO",
|
2021-09-02 15:20:36 +00:00
|
|
|
|
},
|
|
|
|
|
eventTypes: [
|
|
|
|
|
{
|
|
|
|
|
title: "30min",
|
|
|
|
|
slug: "30min",
|
|
|
|
|
length: 30,
|
2021-09-28 09:16:02 +00:00
|
|
|
|
_bookings: [
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "30min",
|
|
|
|
|
startTime: dayjs().add(1, "day").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(30, "minutes").toDate(),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "30min",
|
|
|
|
|
startTime: dayjs().add(2, "day").toDate(),
|
|
|
|
|
endTime: dayjs().add(2, "day").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2021-09-28 09:16:02 +00:00
|
|
|
|
},
|
|
|
|
|
],
|
2021-09-02 15:20:36 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "60min",
|
|
|
|
|
slug: "60min",
|
|
|
|
|
length: 60,
|
|
|
|
|
},
|
2021-12-17 16:58:23 +00:00
|
|
|
|
{
|
|
|
|
|
title: "paid",
|
|
|
|
|
slug: "paid",
|
|
|
|
|
length: 60,
|
2022-04-06 17:20:30 +00:00
|
|
|
|
price: 100,
|
2021-12-17 16:58:23 +00:00
|
|
|
|
},
|
2022-03-24 02:13:04 +00:00
|
|
|
|
{
|
|
|
|
|
title: "In person meeting",
|
|
|
|
|
slug: "in-person",
|
|
|
|
|
length: 60,
|
|
|
|
|
locations: [{ type: "inPerson", address: "London" }],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Zoom Event",
|
|
|
|
|
slug: "zoom",
|
|
|
|
|
length: 60,
|
|
|
|
|
locations: [{ type: "integrations:zoom" }],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Daily Event",
|
|
|
|
|
slug: "daily",
|
|
|
|
|
length: 60,
|
|
|
|
|
locations: [{ type: "integrations:daily" }],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Google Meet",
|
|
|
|
|
slug: "google-meet",
|
|
|
|
|
length: 60,
|
|
|
|
|
locations: [{ type: "integrations:google:meet" }],
|
|
|
|
|
},
|
2022-05-05 21:16:25 +00:00
|
|
|
|
{
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
slug: "yoga-class",
|
|
|
|
|
length: 30,
|
|
|
|
|
recurringEvent: { freq: 2, count: 12, interval: 1 },
|
|
|
|
|
_bookings: [
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
recurringEventId: Buffer.from("yoga-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(1, "day").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
recurringEventId: Buffer.from("yoga-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(1, "day").add(1, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(1, "week").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
recurringEventId: Buffer.from("yoga-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(1, "day").add(2, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(2, "week").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
recurringEventId: Buffer.from("yoga-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(1, "day").add(3, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(3, "week").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
recurringEventId: Buffer.from("yoga-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(1, "day").add(4, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(4, "week").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Yoga class",
|
|
|
|
|
recurringEventId: Buffer.from("yoga-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(1, "day").add(5, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(1, "day").add(5, "week").add(30, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Tennis class",
|
|
|
|
|
slug: "tennis-class",
|
|
|
|
|
length: 60,
|
|
|
|
|
recurringEvent: { freq: 2, count: 10, interval: 2 },
|
|
|
|
|
requiresConfirmation: true,
|
|
|
|
|
_bookings: [
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Tennis class",
|
|
|
|
|
recurringEventId: Buffer.from("tennis-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(2, "day").toDate(),
|
|
|
|
|
endTime: dayjs().add(2, "day").add(60, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Tennis class",
|
|
|
|
|
recurringEventId: Buffer.from("tennis-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(2, "day").add(2, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(2, "day").add(2, "week").add(60, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Tennis class",
|
|
|
|
|
recurringEventId: Buffer.from("tennis-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(2, "day").add(4, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(2, "day").add(4, "week").add(60, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Tennis class",
|
|
|
|
|
recurringEventId: Buffer.from("tennis-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(2, "day").add(8, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(2, "day").add(8, "week").add(60, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
uid: uuid(),
|
|
|
|
|
title: "Tennis class",
|
|
|
|
|
recurringEventId: Buffer.from("tennis-class").toString("base64"),
|
|
|
|
|
startTime: dayjs().add(2, "day").add(10, "week").toDate(),
|
|
|
|
|
endTime: dayjs().add(2, "day").add(10, "week").add(60, "minutes").toDate(),
|
2022-06-06 16:54:47 +00:00
|
|
|
|
status: BookingStatus.PENDING,
|
2022-05-05 21:16:25 +00:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-09-02 15:20:36 +00:00
|
|
|
|
],
|
|
|
|
|
});
|
2021-09-14 08:45:28 +00:00
|
|
|
|
|
2021-09-02 15:20:36 +00:00
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "trial@example.com",
|
|
|
|
|
password: "trial",
|
|
|
|
|
username: "trial",
|
2021-09-21 09:57:01 +00:00
|
|
|
|
name: "Trial Example",
|
2021-09-06 13:51:15 +00:00
|
|
|
|
plan: "TRIAL",
|
2021-09-02 15:20:36 +00:00
|
|
|
|
},
|
|
|
|
|
eventTypes: [
|
|
|
|
|
{
|
|
|
|
|
title: "30min",
|
|
|
|
|
slug: "30min",
|
|
|
|
|
length: 30,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "60min",
|
|
|
|
|
slug: "60min",
|
|
|
|
|
length: 60,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
|
2021-10-12 09:35:44 +00:00
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "free@example.com",
|
|
|
|
|
password: "free",
|
|
|
|
|
username: "free",
|
|
|
|
|
name: "Free Example",
|
|
|
|
|
plan: "FREE",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [
|
|
|
|
|
{
|
|
|
|
|
title: "30min",
|
|
|
|
|
slug: "30min",
|
|
|
|
|
length: 30,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "60min",
|
|
|
|
|
slug: "60min",
|
|
|
|
|
length: 30,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
|
2021-11-18 01:03:19 +00:00
|
|
|
|
await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "usa@example.com",
|
|
|
|
|
password: "usa",
|
|
|
|
|
username: "usa",
|
|
|
|
|
name: "USA Timezone Example",
|
|
|
|
|
plan: "FREE",
|
|
|
|
|
timeZone: "America/Phoenix",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [
|
|
|
|
|
{
|
|
|
|
|
title: "30min",
|
|
|
|
|
slug: "30min",
|
|
|
|
|
length: 30,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
|
2021-10-28 19:36:45 +00:00
|
|
|
|
const freeUserTeam = await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "teamfree@example.com",
|
|
|
|
|
password: "teamfree",
|
|
|
|
|
username: "teamfree",
|
|
|
|
|
name: "Team Free Example",
|
|
|
|
|
plan: "FREE",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const proUserTeam = await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "teampro@example.com",
|
|
|
|
|
password: "teampro",
|
|
|
|
|
username: "teampro",
|
|
|
|
|
name: "Team Pro Example",
|
|
|
|
|
plan: "PRO",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [],
|
|
|
|
|
});
|
|
|
|
|
|
2022-03-18 20:28:12 +00:00
|
|
|
|
const pro2UserTeam = await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "teampro2@example.com",
|
|
|
|
|
password: "teampro2",
|
|
|
|
|
username: "teampro2",
|
|
|
|
|
name: "Team Pro Example 2",
|
|
|
|
|
plan: "PRO",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const pro3UserTeam = await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "teampro3@example.com",
|
|
|
|
|
password: "teampro3",
|
|
|
|
|
username: "teampro3",
|
|
|
|
|
name: "Team Pro Example 3",
|
|
|
|
|
plan: "PRO",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const pro4UserTeam = await createUserAndEventType({
|
|
|
|
|
user: {
|
|
|
|
|
email: "teampro4@example.com",
|
|
|
|
|
password: "teampro4",
|
|
|
|
|
username: "teampro4",
|
|
|
|
|
name: "Team Pro Example 4",
|
|
|
|
|
plan: "PRO",
|
|
|
|
|
},
|
|
|
|
|
eventTypes: [],
|
|
|
|
|
});
|
|
|
|
|
|
2021-10-28 19:36:45 +00:00
|
|
|
|
await createTeamAndAddUsers(
|
|
|
|
|
{
|
|
|
|
|
name: "Seeded Team",
|
|
|
|
|
slug: "seeded-team",
|
2022-03-18 20:28:12 +00:00
|
|
|
|
eventTypes: {
|
|
|
|
|
createMany: {
|
|
|
|
|
data: [
|
|
|
|
|
{
|
|
|
|
|
title: "Collective Seeded Team Event",
|
|
|
|
|
slug: "collective-seeded-team-event",
|
|
|
|
|
length: 15,
|
|
|
|
|
schedulingType: "COLLECTIVE",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Round Robin Seeded Team Event",
|
|
|
|
|
slug: "round-robin-seeded-team-event",
|
|
|
|
|
length: 15,
|
|
|
|
|
schedulingType: "ROUND_ROBIN",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
2021-10-28 19:36:45 +00:00
|
|
|
|
},
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
id: proUserTeam.id,
|
|
|
|
|
username: proUserTeam.name || "Unknown",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: freeUserTeam.id,
|
|
|
|
|
username: freeUserTeam.name || "Unknown",
|
|
|
|
|
},
|
2022-03-18 20:28:12 +00:00
|
|
|
|
{
|
|
|
|
|
id: pro2UserTeam.id,
|
|
|
|
|
username: pro2UserTeam.name || "Unknown",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: pro3UserTeam.id,
|
|
|
|
|
username: pro3UserTeam.name || "Unknown",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: pro4UserTeam.id,
|
|
|
|
|
username: pro4UserTeam.name || "Unknown",
|
|
|
|
|
},
|
2021-10-28 19:36:45 +00:00
|
|
|
|
]
|
|
|
|
|
);
|
2021-09-02 15:20:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main()
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
console.error(e);
|
|
|
|
|
process.exit(1);
|
2022-02-22 19:04:55 +00:00
|
|
|
|
})
|
|
|
|
|
.finally(async () => {
|
|
|
|
|
await prisma.$disconnect();
|
2021-09-02 15:20:36 +00:00
|
|
|
|
});
|