
* 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>
27 lines
781 B
TypeScript
27 lines
781 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Office 365 / Outlook.com Calendar",
|
|
description: _package.description,
|
|
installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET),
|
|
type: "office365_calendar",
|
|
title: "Office 365 / Outlook.com Calendar",
|
|
imageSrc: "/api/app-store/office365calendar/icon.svg",
|
|
variant: "calendar",
|
|
category: "calendar",
|
|
label: "Example App",
|
|
logo: "/api/app-store/office365calendar/icon.svg",
|
|
publisher: "Cal.com",
|
|
rating: 5,
|
|
reviews: 69,
|
|
slug: "office365-calendar",
|
|
trending: false,
|
|
url: "https://cal.com/",
|
|
verified: true,
|
|
email: "help@cal.com",
|
|
} as App;
|
|
|
|
export * as api from "./api";
|
|
export * as lib from "./lib";
|