31 lines
853 B
TypeScript
31 lines
853 B
TypeScript
![]() |
import { randomString } from "@calcom/lib/random";
|
||
|
import type { App } from "@calcom/types/App";
|
||
|
|
||
|
import _package from "./package.json";
|
||
|
|
||
|
export const metadata = {
|
||
|
name: "Huddle01",
|
||
|
description: _package.description,
|
||
|
installed: true,
|
||
|
type: "huddle01_video",
|
||
|
imageSrc: "/apps/huddle.svg",
|
||
|
variant: "conferencing",
|
||
|
logo: "/apps/huddle.svg",
|
||
|
publisher: "Cal.com",
|
||
|
url: "https://huddle01.com/",
|
||
|
verified: true,
|
||
|
rating: 0, // TODO: placeholder for now, pull this from TrustPilot or G2
|
||
|
reviews: 0, // TODO: placeholder for now, pull this from TrustPilot or G2
|
||
|
category: "video",
|
||
|
label: "Huddle01 Video",
|
||
|
slug: "huddle01_video",
|
||
|
title: "Huddle01",
|
||
|
trending: true,
|
||
|
isGlobal: true,
|
||
|
email: "help@cal.com",
|
||
|
locationType: "integrations:huddle01",
|
||
|
key: { apikey: randomString(12) },
|
||
|
} as App;
|
||
|
|
||
|
export * as lib from "./lib";
|