import { getTranslation } from '@payloadcms/translations'; import { generateMetadata } from '../../utilities/meta.js'; /** * @todo Remove the `MetaConfig` type assertions. They are currently required because of how the `Metadata` type from `next` consumes the `URL` type. */ export const generateAPIViewMetadata = async ({ collectionConfig, config, globalConfig, i18n }) => { const entityLabel = collectionConfig ? getTranslation(collectionConfig.labels.singular, i18n) : globalConfig ? getTranslation(globalConfig.label, i18n) : ''; return Promise.resolve(generateMetadata({ ...(config.admin.meta || {}), description: `API - ${entityLabel}`, keywords: 'API', serverURL: config.serverURL, title: `API - ${entityLabel}`, ...(collectionConfig ? { ...(collectionConfig?.admin.meta || {}), ...(collectionConfig?.admin?.components?.views?.edit?.api?.meta || {}) } : {}), ...(globalConfig ? { ...(globalConfig?.admin.meta || {}), ...(globalConfig?.admin?.components?.views?.edit?.api?.meta || {}) } : {}) })); }; //# sourceMappingURL=metadata.js.map