Files
calendar/packages/app-store/googlevideo/_metadata.ts
T
Alex van AndelGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
237d7e95c4 fix: inline package.json descriptions in app-store _metadata.ts to fix Vitest RPC errors (#27931)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-02-13 08:41:39 -03:00

34 lines
960 B
TypeScript

import process from "node:process";
import { validJson } from "@calcom/lib/jsonUtils";
import type { AppMeta } from "@calcom/types/App";
export const metadata = {
name: "Google Meet",
description:
"Google Meet is Google's web-based video conferencing platform, designed to compete with major conferencing platforms.",
installed: !!(process.env.GOOGLE_API_CREDENTIALS && validJson(process.env.GOOGLE_API_CREDENTIALS)),
slug: "google-meet",
category: "conferencing",
categories: ["conferencing"],
type: "google_video",
title: "Google Meet",
variant: "conferencing",
logo: "logo.webp",
publisher: "Cal.com",
url: "https://cal.com/",
isGlobal: false,
email: "help@cal.com",
appData: {
location: {
linkType: "dynamic",
type: "integrations:google:meet",
label: "Google Meet",
},
},
dirName: "googlevideo",
dependencies: ["google-calendar"],
isOAuth: false,
} as AppMeta;
export default metadata;