
* Adds available apps * Adds App Model * WIP * Updates seeder script * Seeder fixes * lowercase categories * Upgrades prisma * WIP * WIP * Hopefully fixes circular deps * Type fixes * Fixes seeder * Adds migration to connect Credentials to Apps * Updates app store callbacks * Updates google credentials * Uses dirName from DB * Type fixes * Update reschedule.ts * Seeder fixes * Fixes categories listing * Update index.ts * Update schema.prisma * Updates dependencies * Renames giphy app * Uses dynamic imports for app metadata * Fixes credentials error * Uses dynamic import for api handlers * Dynamic import fixes * Allows for simple folder names in app store * Squashes app migrations * seeder fixes * Fixes dyamic imports * Update apiHandlers.tsx
26 lines
666 B
TypeScript
26 lines
666 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Giphy",
|
|
description: _package.description,
|
|
installed: !!process.env.GIPHY_API_KEY,
|
|
category: "other",
|
|
// If using static next public folder, can then be referenced from the base URL (/).
|
|
imageSrc: "/api/app-store/giphy/icon.svg",
|
|
logo: "/api/app-store/giphy/icon.svg",
|
|
publisher: "Cal.com",
|
|
rating: 0,
|
|
reviews: 0,
|
|
slug: "giphy",
|
|
title: "Giphy",
|
|
trending: true,
|
|
type: "giphy_other",
|
|
url: "https://cal.com/apps/giphy",
|
|
variant: "other",
|
|
verified: true,
|
|
email: "help@cal.com",
|
|
} as App;
|
|
|
|
export default metadata;
|