cal/packages/app-store/dailyvideo/_metadata.ts
2022-05-05 16:34:26 -06:00

31 lines
902 B
TypeScript

import type { App } from "@calcom/types/App";
import { LocationType } from "../locations";
import _package from "./package.json";
export const metadata = {
name: "Cal Video",
description: _package.description,
installed: !!process.env.DAILY_API_KEY,
type: "daily_video",
imageSrc: "/api/app-store/dailyvideo/icon.svg",
variant: "conferencing",
url: "https://daily.co",
trending: true,
logo: "/api/app-store/dailyvideo/icon.svg",
publisher: "Cal.com",
verified: true,
rating: 4.3, // TODO: placeholder for now, pull this from TrustPilot or G2
reviews: 69, // TODO: placeholder for now, pull this from TrustPilot or G2
category: "video",
slug: "daily-video",
title: "Cal Video",
isGlobal: true,
email: "help@cal.com",
locationType: LocationType.Daily,
locationLabel: "Cal Video",
key: { apikey: process.env.DAILY_API_KEY },
} as App;
export default metadata;