
* Adds initial MDX implementation for App Store pages * Adds endpoint to serve app store static files * Replaces zoom icon with dynamic-served one * Fixes zoom icon * Makes Slider reusable * Adds gray-matter for MDX * Adds zoom screenshots * Update yarn.lock * Slider improvements * WIP * Update TrendingAppsSlider.tsx * WIP * Adds MS teams screenshots * Adds stripe screenshots * Cleanup * Update index.ts * WIP * Cleanup * Cleanup * Adds jitsi screenshot * Adds Google meet screenshots * Adds office 365 calendar screenshots * Adds google calendar screenshots Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
28 lines
944 B
TypeScript
28 lines
944 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Microsoft 365/Teams",
|
|
description: _package.description,
|
|
installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET),
|
|
type: "office365_video",
|
|
imageSrc: "/api/app-store/office365video/icon.svg",
|
|
variant: "conferencing",
|
|
logo: "/api/app-store/office365video/icon.svg",
|
|
publisher: "Cal.com",
|
|
url: "https://www.microsoft.com/en-ca/microsoft-teams/group-chat-software",
|
|
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",
|
|
label: "MS Teams",
|
|
slug: "msteams",
|
|
title: "MS Teams",
|
|
trending: true,
|
|
email: "help@cal.com",
|
|
locationType: "integrations:office365_video",
|
|
} as App;
|
|
|
|
export * as api from "./api";
|
|
export * as lib from "./lib";
|