17 lines
879 B
TypeScript
17 lines
879 B
TypeScript
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
// We have to import all the booker-apps config/metadata in here as without importing that we can't dig into their config and read their props
|
|
// It isn't a significant bundle-size impact as we are only importing the metadata of only the booker apps, but when it becomes a problem we can figure out a solution
|
|
import { appStoreMetadata as rawBookerAppsMetadata } from "./bookerApps.metadata.generated";
|
|
import { getNormalizedAppMetadata } from "./getNormalizedAppMetadata";
|
|
|
|
type RawAppStoreMetaData = typeof rawBookerAppsMetadata;
|
|
type AppStoreMetaData = {
|
|
[key in keyof RawAppStoreMetaData]: AppMeta;
|
|
};
|
|
|
|
export const appStoreMetadata = {} as AppStoreMetaData;
|
|
for (const [key, value] of Object.entries(rawBookerAppsMetadata)) {
|
|
appStoreMetadata[key as keyof typeof appStoreMetadata] = getNormalizedAppMetadata(value);
|
|
}
|