Add various location events to seeder (#2259)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/2260/head^2
parent
e1964553c4
commit
87dcdec044
|
@ -216,7 +216,6 @@ async function main() {
|
||||||
username: "pro",
|
username: "pro",
|
||||||
plan: "PRO",
|
plan: "PRO",
|
||||||
},
|
},
|
||||||
|
|
||||||
eventTypes: [
|
eventTypes: [
|
||||||
{
|
{
|
||||||
title: "30min",
|
title: "30min",
|
||||||
|
@ -249,6 +248,30 @@ async function main() {
|
||||||
length: 60,
|
length: 60,
|
||||||
price: 50,
|
price: 50,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
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" }],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue