* Fix app metas * Optimize categories on app store * Remove commented code * Remove console log * Update apps/web/pages/apps/index.tsx Co-authored-by: Omar López <zomars@me.com> * Add categories to missing app metadata * Fix type error * Type fix * Type fixes * More type fixes * Clean up * Fix build error * No leaky please * Remove comment Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Bailey Pumfleet <bailey@pumfleet.co.uk>
34 lines
830 B
TypeScript
34 lines
830 B
TypeScript
import type { AppMeta } 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",
|
|
categories: ["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",
|
|
extendsFeature: "EventType",
|
|
verified: true,
|
|
email: "help@cal.com",
|
|
dirName: "stripepayment",
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|