1import { ConnectorMetaSchema, type ConnectorMeta } from '@rareindex/connectors';23/** Parse a connector's own meta.json (lets tests/smoke run before the registry is rebuilt). */4export function localMeta(meta: unknown): ConnectorMeta {5 return ConnectorMetaSchema.parse(meta);6}7