/** * Build a diagnostic spec (wire graph + schema hash) from the project's * `defineDomain` definition. This mirrors what the codegen'd worker assembles — * but only for inspection / `/meta` provenance. The live install bundle is * always produced by the worker at request time, so a failure here is non-fatal * for dev/deploy (the CLI logs and continues) and fatal only for * `astrale-domain build`, where the spec IS the product. * * The modules (`schema` / `methods` / `views` / `functions`) come straight off * the definition — the SAME values the author wired into `defineDomain`, which * the adapter codegen also assembles. One source, no second filesystem probe to * drift from it. */ import type { DomainDefinition } from '../config/define-domain.js'; export declare function buildProjectSpec(def: DomainDefinition, url: string): Promise<{ wire: Record; schemaHash: string; }>; //# sourceMappingURL=spec.d.ts.map