/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ /** * Public library entry point for `@salesforce/graphiti`. * * graphiti is primarily a CLI. This module exposes just the one function build * tooling needs — {@link downloadSchemaSdl} — so a codegen/IDE pipeline can * obtain an org's GraphQL SDL from graphiti's single instance-URL-keyed schema * cache (`~/.graphiti/schemas/`) instead of running its own introspection. * * Only the names re-exported here are supported; everything else (reachable via * deep `@salesforce/graphiti/dist/...` paths) is internal and may change without * a major version bump. The surface is kept intentionally small — more will be * exported as concrete consumers need it, not before. */ export { downloadSchemaSdl, type DownloadSchemaSdlOptions, type DownloadSchemaSdlResult, } from "./lib/download-schema.js";