2022-04-15 02:04:21 +00:00
|
|
|
import { validJson } from "@calcom/lib/jsonUtils";
|
|
|
|
import type { App } from "@calcom/types/App";
|
|
|
|
|
|
|
|
import { LocationType } from "../locations";
|
|
|
|
import _package from "./package.json";
|
|
|
|
|
|
|
|
export const metadata = {
|
|
|
|
name: "Google Meet",
|
|
|
|
description: _package.description,
|
|
|
|
installed: !!(process.env.GOOGLE_API_CREDENTIALS && validJson(process.env.GOOGLE_API_CREDENTIALS)),
|
|
|
|
slug: "google-meet",
|
|
|
|
category: "video",
|
|
|
|
type: "google_video",
|
|
|
|
title: "Google Meet",
|
2022-05-14 13:49:39 +00:00
|
|
|
imageSrc: "/api/app-store/googlevideo/logo.webp",
|
2022-04-15 02:04:21 +00:00
|
|
|
variant: "conferencing",
|
2022-05-14 13:49:39 +00:00
|
|
|
logo: "/api/app-store/googlevideo/logo.webp",
|
2022-04-15 02:04:21 +00:00
|
|
|
publisher: "Cal.com",
|
|
|
|
rating: 5,
|
|
|
|
reviews: 69,
|
|
|
|
trending: false,
|
|
|
|
url: "https://cal.com/",
|
|
|
|
verified: true,
|
2022-06-01 17:24:41 +00:00
|
|
|
isGlobal: true,
|
2022-04-15 02:04:21 +00:00
|
|
|
email: "help@cal.com",
|
|
|
|
locationType: LocationType.GoogleMeet,
|
|
|
|
locationLabel: "Google Meet",
|
|
|
|
} as App;
|
|
|
|
|
|
|
|
export default metadata;
|