import { getCliClient } from '../cli-client.js' import { assetTypesResult } from '../output.js' export async function typesCommand(baseUrl?: string): Promise { const { client } = await getCliClient({ baseUrl }) console.log(assetTypesResult(await client.asset.installMetadata())) }