/** * earth-now.co * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * File: packages/registry/src/index.ts * Purpose: Public entrypoint of the registry package (schemas, loader, fitting orchestration) */ export { type MetricEntry, type MetricFixture, type SourceEntry, derivedSchema, displaySchema, fixtureSchema, fixturesFileSchema, metricSchema, metricsFileSchema, sourceSchema, } from "./schema.js"; export { type Registry, loadFixtures, loadRegistry } from "./load.js"; export { type FitOptions, type FitResult, fitAllModels } from "./fit.js";