import { randomString } from "@calcom/lib/random"; import type { AppMeta } from "@calcom/types/App"; import _package from "./package.json"; export const metadata = { name: "Huddle01", description: _package.description, installed: true, type: "huddle01_video", variant: "conferencing", categories: ["conferencing"], logo: "icon.svg", publisher: "huddle01.com", url: "https://huddle01.com", category: "conferencing", slug: "huddle01", title: "Huddle01", isGlobal: false, email: "support@huddle01.com", appData: { location: { linkType: "dynamic", type: "integrations:huddle01", label: "Huddle01 Video", }, }, key: { apikey: randomString(12) }, dirName: "huddle01video", } as AppMeta; export default metadata;