Files
calendar/packages/app-store/vital/_metadata.ts
T
540bf3a1cb Fix app categories (#6016)
* 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>
2022-12-20 15:15:06 -07:00

30 lines
724 B
TypeScript

import type { AppMeta } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Vital",
description: _package.description,
installed: true,
category: "other",
categories: ["other"],
// If using static next public folder, can then be referenced from the base URL (/).
imageSrc: "/api/app-store/vital/icon.svg",
logo: "/api/app-store/vital/icon.svg",
label: "Vital",
publisher: "Vital",
rating: 5,
reviews: 69,
slug: "vital-automation",
title: "Vital",
trending: true,
type: "vital_other",
url: "https://tryvital.io",
variant: "other",
verified: true,
email: "support@tryvital.io",
dirName: "vital",
} as AppMeta;
export default metadata;