calcom/packages/app-store/stripepayment/index.ts
Omar López f8b7e17fda
Fixes/locations (#2383)
* Moves locations to App Store and Core

* LocationType fixes

* Update App.d.ts

* Re-add Google Meet

* Moves location labels to the app store

* Renames labels to locationLabels

* Update utils.ts

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2022-04-05 18:03:22 +00:00

30 lines
741 B
TypeScript

import type { App } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Stripe",
description: _package.description,
installed: !!(
process.env.STRIPE_CLIENT_ID &&
process.env.NEXT_PUBLIC_STRIPE_PUBLIC_KEY &&
process.env.STRIPE_PRIVATE_KEY
),
slug: "stripe",
category: "payment",
logo: "/api/app-store/stripepayment/icon.svg",
rating: 4.6,
trending: true,
reviews: 69,
imageSrc: "/api/app-store/stripepayment/icon.svg",
publisher: "Cal.com",
title: "Stripe",
type: "stripe_payment",
url: "https://cal.com/",
docsUrl: "https://stripe.com/docs",
variant: "payment",
verified: true,
email: "help@cal.com",
} as App;
export * as api from "./api";