export { buildExpectedSchema, buildExpectedSchemaWithProvenance } from "./expected-schema.js"; export type { ExpectedSchemaWithProvenance, SchemaProvenance } from "./expected-schema.js"; export { introspect, introspectPostgres, introspectSqlite } from "./introspect/index.js"; export { diff } from "./diff/index.js"; export { collectUnmanagedNames } from "./unmanaged.js"; export { scopeExpectedSchema, declaredSchemasOf, carryForwardOutOfScope, excludeFromSnapshot, scopedDiffInputs, } from "./scope.js"; export type { ObjectScopePredicate, ScopedExpectedSchema, GovernedScope } from "./scope.js"; export { qualifiedDbName } from "./qualified-name.js"; export { computeDrift, computeDriftFromActual, type ComputeDriftOptions, type DriftResult } from "./drift/drift.js"; export { classifyDrift, driftAgainstSnapshot } from "./drift/classify.js"; export type { DriftClassification } from "./drift/classify.js"; export { emit } from "./emit/index.js"; export { writeMigration } from "./write-migration.js"; export { writeMigrationD1 } from "./write-migration-d1.js"; export { writeMigrationFlyway } from "./write-migration-flyway.js"; export { serializeSnapshot, parseSnapshot, SNAPSHOT_FORMAT_VERSION, } from "./snapshot/serialize.js"; export { snapshotChecksum } from "./snapshot/checksum.js"; export { snapshotPath, readSnapshot, writeSnapshot } from "./snapshot/store.js"; export { planOffline, baselineFromMetadata } from "./snapshot/plan.js"; export type { PlanOfflineArgs, PlanOfflineResult } from "./snapshot/plan.js"; export { BlockedChangesError, SetNullNotNullableError, PrimaryKeyChangeError } from "./errors.js"; export { isWidening, sqlTypeEquals } from "./sql-type.js"; export type { SqlType } from "./sql-type.js"; export type { SchemaSnapshot, SnapshotMeta, TableDescriptor, ColumnDescriptor, IndexDescriptor, FkDescriptor, ColumnDefault, ViewDescriptor, FkAction, Change, ChangeKind, ChangeStatus, AllowOptions, AmbiguousChange, AmbiguousResolution, AmbiguousCallback, DiffResult, EmitResult, Dialect, } from "./types.js"; export type { DiffArgs } from "./diff/index.js"; export type { EmitOptions } from "./emit/index.js"; export type { WriteMigrationOptions, WriteMigrationResult } from "./write-migration.js"; export type { WriteMigrationD1Options, WriteMigrationD1Result } from "./write-migration-d1.js"; export type { WriteMigrationFlywayOptions, WriteMigrationFlywayResult } from "./write-migration-flyway.js"; export { normalizeViewSql, viewSqlEquals } from "./view-sql-compare.js"; export { renderD1 } from "./emit/d1.js"; export { applyD1SafetyPass, D1UnsupportedStatementError } from "./emit/d1-safety-pass.js"; export { findReferencedRebuilds, D1ReferencedTableRebuildError, D1CyclicForeignKeyError } from "./emit/d1-fk-refuse.js"; export type { D1RebuildRefusal } from "./emit/d1-fk-refuse.js"; export { introspectD1, type D1Runner, type IntrospectD1Options } from "./introspect/d1.js"; export { ensureLedger, recordApplied, deleteApplied, appliedNames, appliedRecords, recordBaseline, baselineRecord, BASELINE_NAME, MIGRATIONS_TABLE, DEFAULT_LEDGER_SCHEMA, type LedgerRow, type LedgerOptions, type LedgerDialect, } from "./apply/ledger.js"; export { applyPending, rollbackTo, type ApplyPendingOptions, type ApplyPendingResult, type RollbackToOptions, type RollbackToResult, } from "./apply/apply.js"; export { verifyReplay } from "./verify/replay.js"; export type { VerifyReplayArgs, VerifyReplayResult } from "./verify/replay.js"; export { openReplayEngine } from "./verify/replay-engine.js"; export type { ReplayEngine } from "./verify/replay-engine.js"; export { findWranglerConfig, parseWranglerConfig, resolveD1Binding, type D1Binding, type WranglerConfig, } from "./wrangler-config.js"; //# sourceMappingURL=index.d.ts.map