26 lines
563 B
TypeScript
26 lines
563 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Zapier",
|
|
description: _package.description,
|
|
installed: true,
|
|
category: "other",
|
|
imageSrc: "/api/app-store/zapier/icon.svg",
|
|
logo: "/api/app-store/zapier/icon.svg",
|
|
publisher: "Cal.com",
|
|
rating: 0,
|
|
reviews: 0,
|
|
slug: "zapier",
|
|
title: "Zapier",
|
|
trending: true,
|
|
type: "zapier_other",
|
|
url: "https://cal.com/apps/zapier",
|
|
variant: "other",
|
|
verified: true,
|
|
email: "help@cal.com",
|
|
} as App;
|
|
|
|
export default metadata;
|