@prisma-next/cli 0.16.0-dev.13 → 0.16.0-dev.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +28 -28
  2. package/dist/cli.mjs +6 -6
  3. package/dist/commands/migrate.mjs +3 -3
  4. package/dist/commands/migrate.mjs.map +1 -1
  5. package/dist/commands/migration-check.d.mts.map +1 -1
  6. package/dist/commands/migration-check.mjs +1 -1
  7. package/dist/commands/migration-graph.mjs +2 -2
  8. package/dist/commands/migration-list.mjs +1 -1
  9. package/dist/commands/migration-log.mjs +1 -1
  10. package/dist/commands/migration-new.mjs +1 -1
  11. package/dist/commands/migration-new.mjs.map +1 -1
  12. package/dist/commands/migration-plan.d.mts +3 -4
  13. package/dist/commands/migration-plan.d.mts.map +1 -1
  14. package/dist/commands/migration-plan.mjs +1 -1
  15. package/dist/commands/migration-show.mjs +1 -1
  16. package/dist/commands/migration-show.mjs.map +1 -1
  17. package/dist/commands/migration-status.d.mts.map +1 -1
  18. package/dist/commands/migration-status.mjs +1 -1
  19. package/dist/{migration-check-DMxPzbHl.mjs → migration-check-C_4gozCn.mjs} +5 -3
  20. package/dist/migration-check-C_4gozCn.mjs.map +1 -0
  21. package/dist/{migration-graph-command-render-B83xrnNy.mjs → migration-graph-command-render-DgQg5App.mjs} +3 -3
  22. package/dist/migration-graph-command-render-DgQg5App.mjs.map +1 -0
  23. package/dist/{migration-list-cnSKilYH.mjs → migration-list-BwEwRv25.mjs} +2 -2
  24. package/dist/{migration-list-cnSKilYH.mjs.map → migration-list-BwEwRv25.mjs.map} +1 -1
  25. package/dist/{migration-log-CGfn5C_I.mjs → migration-log-C3RMIsUI.mjs} +2 -2
  26. package/dist/{migration-log-CGfn5C_I.mjs.map → migration-log-C3RMIsUI.mjs.map} +1 -1
  27. package/dist/{migration-plan-BJHulFZC.mjs → migration-plan-BzxmK_do.mjs} +6 -8
  28. package/dist/migration-plan-BzxmK_do.mjs.map +1 -0
  29. package/dist/{migration-status-Dcg0siMF.mjs → migration-status-ChQKA6Jf.mjs} +9 -8
  30. package/dist/migration-status-ChQKA6Jf.mjs.map +1 -0
  31. package/package.json +21 -21
  32. package/src/commands/migrate.ts +1 -1
  33. package/src/commands/migration-check.ts +3 -2
  34. package/src/commands/migration-new.ts +1 -1
  35. package/src/commands/migration-plan.ts +4 -6
  36. package/src/commands/migration-show.ts +1 -1
  37. package/src/commands/migration-status.ts +5 -6
  38. package/src/utils/formatters/migration-graph-labels.ts +1 -2
  39. package/src/utils/formatters/migration-list-data-column.ts +1 -2
  40. package/src/utils/plan-resolution.ts +1 -1
  41. package/dist/migration-check-DMxPzbHl.mjs.map +0 -1
  42. package/dist/migration-graph-command-render-B83xrnNy.mjs.map +0 -1
  43. package/dist/migration-plan-BJHulFZC.mjs.map +0 -1
  44. package/dist/migration-status-Dcg0siMF.mjs.map +0 -1
package/README.md CHANGED
@@ -210,16 +210,16 @@ Success:
210
210
  ```text
211
211
  ✔ Database marker and schema match contract
212
212
  verification: marker + schema
213
- storageHash: sha256:abc123...
214
- profileHash: sha256:def456...
213
+ storageHash: abc123...
214
+ profileHash: def456...
215
215
  ```
216
216
 
217
217
  Marker-only success:
218
218
  ```text
219
219
  ✔ Database marker matches contract
220
220
  verification: marker only (--marker-only)
221
- storageHash: sha256:abc123...
222
- profileHash: sha256:def456...
221
+ storageHash: abc123...
222
+ profileHash: def456...
223
223
 
224
224
  ⚠ Schema verification skipped because --marker-only was provided
225
225
  ```
@@ -242,12 +242,12 @@ Schema drift failure:
242
242
  "summary": "Database marker and schema match contract",
243
243
  "mode": "full",
244
244
  "contract": {
245
- "storageHash": "sha256:abc123...",
246
- "profileHash": "sha256:def456..."
245
+ "storageHash": "abc123...",
246
+ "profileHash": "def456..."
247
247
  },
248
248
  "marker": {
249
- "storageHash": "sha256:abc123...",
250
- "profileHash": "sha256:def456..."
249
+ "storageHash": "abc123...",
250
+ "profileHash": "def456..."
251
251
  },
252
252
  "target": {
253
253
  "expected": "postgres"
@@ -584,25 +584,25 @@ export default defineConfig({
584
584
  Success (new marker):
585
585
  ```
586
586
  ✔ Database signed (marker created)
587
- storageHash: sha256:abc123...
588
- profileHash: sha256:def456...
587
+ storageHash: abc123...
588
+ profileHash: def456...
589
589
  Total time: 42ms
590
590
  ```
591
591
 
592
592
  Success (updated marker):
593
593
  ```
594
- ✔ Database signed (marker updated from sha256:old-hash)
595
- storageHash: sha256:abc123...
596
- profileHash: sha256:def456...
597
- previous storageHash: sha256:old-hash
594
+ ✔ Database signed (marker updated from old-hash)
595
+ storageHash: abc123...
596
+ profileHash: def456...
597
+ previous storageHash: old-hash
598
598
  Total time: 42ms
599
599
  ```
600
600
 
601
601
  Success (already up-to-date):
602
602
  ```
603
603
  ✔ Database already signed with this contract
604
- storageHash: sha256:abc123...
605
- profileHash: sha256:def456...
604
+ storageHash: abc123...
605
+ profileHash: def456...
606
606
  Total time: 42ms
607
607
  ```
608
608
 
@@ -619,8 +619,8 @@ Failure (schema mismatch):
619
619
  "ok": true,
620
620
  "summary": "Database signed (marker created)",
621
621
  "contract": {
622
- "storageHash": "sha256:abc123...",
623
- "profileHash": "sha256:def456..."
622
+ "storageHash": "abc123...",
623
+ "profileHash": "def456..."
624
624
  },
625
625
  "target": {
626
626
  "expected": "postgres",
@@ -644,10 +644,10 @@ For updated markers:
644
644
  ```json
645
645
  {
646
646
  "ok": true,
647
- "summary": "Database signed (marker updated from sha256:old-hash)",
647
+ "summary": "Database signed (marker updated from old-hash)",
648
648
  "contract": {
649
- "storageHash": "sha256:abc123...",
650
- "profileHash": "sha256:def456..."
649
+ "storageHash": "abc123...",
650
+ "profileHash": "def456..."
651
651
  },
652
652
  "target": {
653
653
  "expected": "postgres",
@@ -657,8 +657,8 @@ For updated markers:
657
657
  "created": false,
658
658
  "updated": true,
659
659
  "previous": {
660
- "storageHash": "sha256:old-hash",
661
- "profileHash": "sha256:old-profile-hash"
660
+ "storageHash": "old-hash",
661
+ "profileHash": "old-profile-hash"
662
662
  }
663
663
  },
664
664
  "meta": {
@@ -803,7 +803,7 @@ prisma-next db init ➜ Bootstrap a database to match the current contract
803
803
  ├─ Create index user_email_idx on user [additive]
804
804
  └─ Add foreign key post_userId_fkey on post [additive]
805
805
 
806
- Destination hash: sha256:abc123...
806
+ Destination hash: abc123...
807
807
 
808
808
  This is a dry run. No changes were applied.
809
809
  Run without --dry-run to apply changes.
@@ -822,7 +822,7 @@ Applying migration plan and verifying schema...
822
822
  → Create index user_email_idx on user...
823
823
  → Add foreign key post_userId_fkey on post...
824
824
  ✔ Applied 4 operation(s)
825
- Marker written: sha256:abc123...
825
+ Marker written: abc123...
826
826
  ```
827
827
 
828
828
  **Output Format (JSON):**
@@ -834,7 +834,7 @@ Applying migration plan and verifying schema...
834
834
  "plan": {
835
835
  "targetId": "postgres",
836
836
  "destination": {
837
- "storageHash": "sha256:abc123..."
837
+ "storageHash": "abc123..."
838
838
  },
839
839
  "operations": [
840
840
  {
@@ -849,7 +849,7 @@ Applying migration plan and verifying schema...
849
849
  "operationsExecuted": 4
850
850
  },
851
851
  "marker": {
852
- "storageHash": "sha256:abc123..."
852
+ "storageHash": "abc123..."
853
853
  }
854
854
  }
855
855
  ```
@@ -1084,7 +1084,7 @@ prisma-next ref delete <name> # Delete a ref
1084
1084
 
1085
1085
  **Ref naming rules:** Lowercase alphanumeric with hyphens or forward slashes (e.g., `staging`, `prod/us-east`). No `.` or `..` segments.
1086
1086
 
1087
- **Ref values:** Must be valid contract hashes (`sha256:<64 hex chars>` or `sha256:empty`).
1087
+ **Ref values:** Must be valid contract hashes (64 lowercase hex chars, or the `empty` sentinel).
1088
1088
 
1089
1089
  **Atomic writes:** `refs.json` is written atomically via temp file + rename to prevent corruption from concurrent writes.
1090
1090
 
package/dist/cli.mjs CHANGED
@@ -8,15 +8,15 @@ import { createDbSignCommand } from "./commands/db-sign.mjs";
8
8
  import { createDbUpdateCommand } from "./commands/db-update.mjs";
9
9
  import { t as createDbVerifyCommand } from "./db-verify-3WM8y323.mjs";
10
10
  import { t as createFormatCommand } from "./format-CFLZv_zU.mjs";
11
- import { t as createMigrationListCommand } from "./migration-list-cnSKilYH.mjs";
11
+ import { t as createMigrationListCommand } from "./migration-list-BwEwRv25.mjs";
12
12
  import { createMigrateCommand } from "./commands/migrate.mjs";
13
- import { t as createMigrationCheckCommand } from "./migration-check-DMxPzbHl.mjs";
13
+ import { t as createMigrationCheckCommand } from "./migration-check-C_4gozCn.mjs";
14
14
  import { createMigrationGraphCommand } from "./commands/migration-graph.mjs";
15
- import { t as createMigrationLogCommand } from "./migration-log-CGfn5C_I.mjs";
15
+ import { t as createMigrationLogCommand } from "./migration-log-C3RMIsUI.mjs";
16
16
  import { createMigrationNewCommand } from "./commands/migration-new.mjs";
17
- import { t as createMigrationPlanCommand } from "./migration-plan-BJHulFZC.mjs";
17
+ import { t as createMigrationPlanCommand } from "./migration-plan-BzxmK_do.mjs";
18
18
  import { createMigrationShowCommand } from "./commands/migration-show.mjs";
19
- import { r as createMigrationStatusCommand } from "./migration-status-Dcg0siMF.mjs";
19
+ import { r as createMigrationStatusCommand } from "./migration-status-ChQKA6Jf.mjs";
20
20
  import { createRefCommand } from "./commands/ref.mjs";
21
21
  import { t as createTelemetryCommand } from "./telemetry-BEyNMfco.mjs";
22
22
  import { Command } from "commander";
@@ -25,7 +25,7 @@ import { ensureInstallationId, readUserConfig, resolveGating, runTelemetry, user
25
25
  import { distance } from "closest-match";
26
26
  import { fileURLToPath } from "node:url";
27
27
  //#region package.json
28
- var version = "0.16.0-dev.13";
28
+ var version = "0.16.0-dev.15";
29
29
  //#endregion
30
30
  //#region src/commands/init/templates/code-templates.ts
31
31
  function targetPackageName(target) {
@@ -3,8 +3,8 @@ import { n as planSpacePath, t as createControlClient } from "../client-DeJvLD2h
3
3
  import { a as refuseContractSpaceIntegrity, i as loadContractSpaceAggregateForCli, n as buildReadAggregate, s as toDeclaredExtensionsFromRaw } from "../contract-space-aggregate-loader-hPVymNLw.mjs";
4
4
  import { i as readContractIR, r as executeRefAdvancement } from "../ref-advancement-BCz7X7qJ.mjs";
5
5
  import { t as mapContractAtError } from "../contract-at-errors-C-l4-JEY.mjs";
6
- import { d as highlightFromEdgeAnnotations, f as indentMigrationGraphTreeBlock, h as buildGrid, i as formatOnPathMigrationRow, m as buildMigrationGraphRows, n as computeMaxDirNameWidth, r as renderMigrationGraphCommand, t as computeLabelColumn } from "../migration-graph-command-render-B83xrnNy.mjs";
7
- import { r as listRefsByContractHash } from "../migration-list-cnSKilYH.mjs";
6
+ import { d as highlightFromEdgeAnnotations, f as indentMigrationGraphTreeBlock, h as buildGrid, i as formatOnPathMigrationRow, m as buildMigrationGraphRows, n as computeMaxDirNameWidth, r as renderMigrationGraphCommand, t as computeLabelColumn } from "../migration-graph-command-render-DgQg5App.mjs";
7
+ import { r as listRefsByContractHash } from "../migration-list-BwEwRv25.mjs";
8
8
  import { Command } from "commander";
9
9
  import { loadConfig } from "@prisma-next/config-loader";
10
10
  import { ifDefined } from "@prisma-next/utils/defined";
@@ -469,7 +469,7 @@ function createMigrateCommand() {
469
469
  setCommandExamples(command, [
470
470
  "prisma-next migrate --db $DATABASE_URL",
471
471
  "prisma-next migrate --to production --db $DATABASE_URL",
472
- "prisma-next migrate --to sha256:abc123 --db $DATABASE_URL",
472
+ "prisma-next migrate --to abc123 --db $DATABASE_URL",
473
473
  "prisma-next migrate --show --db $DATABASE_URL",
474
474
  "prisma-next migrate --show --from @contract --to production"
475
475
  ]);
@@ -1 +1 @@
1
- {"version":3,"file":"migrate.mjs","names":[],"sources":["../../src/commands/migrate.ts"],"sourcesContent":["import { readFile } from 'node:fs/promises';\nimport { loadConfig } from '@prisma-next/config-loader';\nimport type { Contract } from '@prisma-next/contract/types';\nimport { createControlStack } from '@prisma-next/framework-components/control';\nimport {\n type AggregateContractSpace,\n requireHeadRef,\n} from '@prisma-next/migration-tools/aggregate';\nimport { EMPTY_CONTRACT_HASH } from '@prisma-next/migration-tools/constants';\nimport { errorUnknownInvariant, MigrationToolsError } from '@prisma-next/migration-tools/errors';\nimport { findLatestMigration, isGraphNode } from '@prisma-next/migration-tools/migration-graph';\nimport { parseContractRef } from '@prisma-next/migration-tools/ref-resolution';\nimport type { RefEntry, Refs } from '@prisma-next/migration-tools/refs';\nimport { readRefs } from '@prisma-next/migration-tools/refs';\nimport { ifDefined } from '@prisma-next/utils/defined';\nimport { notOk, ok, type Result } from '@prisma-next/utils/result';\nimport { Command } from 'commander';\nimport { createControlClient } from '../control-api/client';\nimport { planSpacePath } from '../control-api/operations/migrate';\nimport type {\n MigrateFailure,\n MigratePathDecision,\n PerSpaceExecutionEntry,\n} from '../control-api/types';\nimport {\n CliStructuredError,\n type CliStructuredError as CliStructuredErrorType,\n errorContractValidationFailed,\n errorDatabaseConnectionRequired,\n errorDriverRequired,\n errorFileNotFound,\n errorMarkerMismatch,\n errorPathUnreachable,\n errorRuntime,\n errorTargetMigrationNotSupported,\n errorUnexpected,\n mapMigrationToolsError,\n mapRefResolutionError,\n requireLiveDatabase,\n} from '../utils/cli-errors';\nimport {\n addGlobalOptions,\n collectDeclaredInvariants,\n maskConnectionUrl,\n resolveContractPath,\n resolveMigrationPaths,\n setCommandDescriptions,\n setCommandExamples,\n targetSupportsMigrations,\n} from '../utils/command-helpers';\nimport { mapContractAtError } from '../utils/contract-at-errors';\nimport {\n buildReadAggregate,\n loadContractSpaceAggregateForCli,\n refuseContractSpaceIntegrity,\n} from '../utils/contract-space-aggregate-loader';\nimport { toDeclaredExtensionsFromRaw } from '../utils/extension-pack-inputs';\nimport {\n computeLabelColumn,\n computeMaxDirNameWidth,\n renderMigrationGraphCommand,\n} from '../utils/formatters/migration-graph-command-render';\nimport { buildGrid } from '../utils/formatters/migration-graph-grid-layout';\nimport {\n formatOnPathMigrationRow,\n type MigrationEdgeAnnotation,\n} from '../utils/formatters/migration-graph-labels';\nimport { buildMigrationGraphRows } from '../utils/formatters/migration-graph-rows';\nimport {\n highlightFromEdgeAnnotations,\n indentMigrationGraphTreeBlock,\n} from '../utils/formatters/migration-graph-space-render';\nimport { formatMigrationApplyCommandOutput } from '../utils/formatters/migrations';\nimport { formatStyledHeader } from '../utils/formatters/styled';\nimport type { CommonCommandOptions } from '../utils/global-flags';\nimport { type GlobalFlags, parseGlobalFlagsOrExit } from '../utils/global-flags';\nimport { executeRefAdvancement, readContractIR } from '../utils/ref-advancement';\nimport { handleResult } from '../utils/result-handler';\nimport { createTerminalUI, type TerminalUI } from '../utils/terminal-ui';\nimport { listRefsByContractHash } from './migration-list';\n\ninterface MigrateCommandOptions extends CommonCommandOptions {\n readonly db?: string;\n readonly config?: string;\n readonly to?: string;\n readonly advanceRef?: string;\n readonly show?: boolean;\n readonly from?: string;\n}\n\n/**\n * One migration that will run in a `migrate --show` preview, in execution order.\n */\nexport interface MigrateShowMigration {\n readonly spaceId: string;\n readonly dirName: string;\n readonly migrationHash: string;\n readonly from: string;\n readonly to: string;\n}\n\n/** Result returned by `migrate --show`. Read-only; no writes performed. */\nexport interface MigrateShowResult {\n readonly ok: true;\n readonly migrations: readonly MigrateShowMigration[];\n readonly summary: string;\n /**\n * Pre-rendered Tier-3 graph tree for human output. Off-path migrations render\n * dim; on-path migrations render in ordinary colours. Only present in human\n * (non-JSON) mode.\n */\n readonly graphOutput?: string;\n /**\n * Name column width for the \"Will run, in order:\" list — globally aligned with\n * every graph-tree section. Only present in human (non-JSON) mode.\n */\n readonly runListDirNameWidth?: number;\n /**\n * Left-pad offset (number of blank spaces) matching the graph's data-column\n * offset (`globalMaxEdgeTreePrefixWidth`). Used to align list rows with graph\n * rows so every `→` in the output (graph + list) lands at the same column.\n * Only present in human (non-JSON) mode when multiple spaces are rendered.\n */\n readonly runListLeftPad?: number;\n}\n\nexport interface MigrateResult {\n readonly ok: boolean;\n readonly migrationsApplied: number;\n readonly migrationsTotal: number;\n readonly markerHash: string;\n readonly applied: readonly {\n readonly spaceId: string;\n readonly dirName: string;\n readonly migrationHash: string;\n readonly from: string;\n readonly to: string;\n readonly operationsExecuted: number;\n }[];\n readonly summary: string;\n readonly perSpace: readonly PerSpaceExecutionEntry[];\n readonly pathDecision?: MigratePathDecision;\n readonly timings: {\n readonly total: number;\n };\n readonly advancedRef?: { readonly name: string; readonly hash: string } | null;\n}\n\n/**\n * Read-only preview of the migration path `migrate` will take.\n *\n * Computes the path through the SAME seam as `executeMigrate`:\n * - `readAllMarkers()` for the from-state (when no `--from` is given), preserving\n * the full marker including `invariants` (not just `storageHash`).\n * - `planSpacePath()` (shared with `executeMigrate`) for per-space path selection,\n * which feeds `resolveRecordedPath()` with the same target hash, target invariants,\n * and current marker as the real apply path uses.\n *\n * Returns BEFORE any write boundary (`runMigration` / marker / DDL). No\n * DB state is mutated.\n */\nasync function executeMigrateShowCommand(\n options: MigrateCommandOptions,\n flags: GlobalFlags,\n ui: TerminalUI,\n): Promise<Result<MigrateShowResult, CliStructuredErrorType>> {\n const config = await loadConfig(options.config);\n const { configPath, migrationsDir, migrationsRelative, refsDir } = resolveMigrationPaths(\n options.config,\n config,\n );\n\n const dbConnection = options.db ?? config.db?.connection;\n const hasDriver = !!config.driver;\n const hasExplicitFrom = options.from !== undefined;\n\n // When --from is omitted we read the live DB marker (same as migrate's default).\n // When --from is given, we're in offline hypothetical mode — no connection needed.\n if (!hasExplicitFrom) {\n const missingDb = requireLiveDatabase({\n dbConnection,\n hasDriver,\n why: 'migrate --show needs a database connection to read the live marker (or pass --from <contract> for an offline preview)',\n retryCommand: 'prisma-next migrate --show --from <contract>',\n });\n if (missingDb) {\n return notOk(missingDb);\n }\n }\n\n let allRefs: Refs = {};\n try {\n allRefs = await readRefs(refsDir);\n } catch (error) {\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n throw error;\n }\n\n const loaded = await buildReadAggregate(config, { migrationsDir });\n if (!loaded.ok) {\n return notOk(loaded.failure);\n }\n const { aggregate, contractHash } = loaded.value;\n const appGraph = aggregate.app.graph();\n\n // Resolve the --to target (defaults to the on-disk contract, same as migrate).\n // Also capture the ref's invariants so planSpacePath feeds resolveRecordedPath the\n // same target invariants that real migrate would use (refInvariants ?? headRef.invariants).\n let targetHash: string = contractHash;\n let refInvariants: readonly string[] | undefined;\n if (options.to) {\n const toResult = parseContractRef(options.to, {\n graph: appGraph,\n refs: allRefs,\n contractHash,\n });\n if (!toResult.ok) {\n return notOk(mapRefResolutionError(toResult.failure));\n }\n if (toResult.value.provenance.kind === 'reserved-db') {\n return notOk(\n errorDatabaseConnectionRequired({\n why: '@db is not valid as a --to target; it names the live database state, not a target contract.',\n commandName: 'migrate --show',\n }),\n );\n }\n targetHash = toResult.value.hash;\n if (toResult.value.provenance.kind === 'ref') {\n const refEntry = allRefs[toResult.value.provenance.refName];\n if (refEntry) refInvariants = refEntry.invariants;\n }\n }\n\n if (!flags.json && !flags.quiet) {\n const details: Array<{ label: string; value: string }> = [\n { label: 'config', value: configPath },\n { label: 'migrations', value: migrationsRelative },\n ];\n if (dbConnection && !hasExplicitFrom) {\n details.push({ label: 'database', value: maskConnectionUrl(String(dbConnection)) });\n }\n if (options.from) {\n details.push({ label: 'from', value: options.from });\n }\n if (options.to) {\n details.push({ label: 'to', value: options.to });\n }\n const header = formatStyledHeader({\n command: 'migrate --show',\n description: 'Preview the migration path migrate will take (read-only)',\n details,\n flags,\n });\n ui.stderr(header);\n }\n\n // Resolve the from-state.\n // - Explicit --from: parse it offline (no connection).\n // - Omitted: read the live DB marker via readAllMarkers() — the same source migrate uses.\n //\n // Full marker records (storageHash + invariants) are preserved so planSpacePath\n // can feed resolveRecordedPath the complete currentMarker — exactly as executeMigrate\n // does via familyInstance.readAllMarkers(). A stripped { storageHash, invariants: [] }\n // marker would produce a different `required` set and a different (incorrect) path.\n type LiveMarker = { readonly storageHash: string; readonly invariants: readonly string[] };\n const markerBySpace = new Map<string, LiveMarker | null>();\n const allSpaces: ReadonlyArray<AggregateContractSpace> = [aggregate.app, ...aggregate.extensions];\n\n if (hasExplicitFrom) {\n // @db with explicit --from requires a connection\n if (options.from === '@db') {\n const missingDb = requireLiveDatabase({\n dbConnection,\n hasDriver,\n why: '@db resolves to the live database marker and requires a --db connection',\n retryCommand: 'prisma-next migrate --show --from @db --db $DATABASE_URL',\n });\n if (missingDb) {\n return notOk(missingDb);\n }\n // Fall through to the connection path below\n } else {\n const fromResult = parseContractRef(options.from, {\n graph: appGraph,\n refs: allRefs,\n contractHash,\n });\n if (!fromResult.ok) {\n return notOk(mapRefResolutionError(fromResult.failure));\n }\n if (fromResult.value.provenance.kind === 'reserved-db') {\n // Unreachable given the @db branch above, but guard for safety\n const missingDb = requireLiveDatabase({\n dbConnection,\n hasDriver,\n why: '@db resolves to the live database marker and requires a --db connection',\n });\n if (missingDb) {\n return notOk(missingDb);\n }\n } else {\n // Offline hypothetical: the --from ref only carries a hash (no live invariants).\n // Apply the from-hash marker to the APP space only. Extension spaces are left\n // absent from markerBySpace (treated as null / greenfield by planSpacePath),\n // so they plan from their own marker → own head — exactly as executeMigrate does.\n const fromHash = fromResult.value.hash;\n const offlineMarker: LiveMarker | null =\n fromHash === EMPTY_CONTRACT_HASH ? null : { storageHash: fromHash, invariants: [] };\n markerBySpace.set(aggregate.app.spaceId, offlineMarker);\n }\n }\n }\n\n // If we need the live DB marker (no --from, or --from @db), connect and read.\n const needsLiveMarker = !hasExplicitFrom || options.from === '@db';\n if (needsLiveMarker) {\n if (!dbConnection || !hasDriver) {\n return notOk(\n errorDatabaseConnectionRequired({\n why: 'A database connection is required to read the live marker for migrate --show',\n commandName: 'migrate --show',\n }),\n );\n }\n const client = createControlClient({\n family: config.family,\n target: config.target,\n adapter: config.adapter,\n driver: config.driver!,\n extensionPacks: config.extensionPacks ?? [],\n });\n try {\n await client.connect(dbConnection);\n const allMarkers = await client.readAllMarkers();\n // Store the full marker record (storageHash + invariants) per space.\n // This is the same data executeMigrate uses via familyInstance.readAllMarkers().\n for (const space of allSpaces) {\n const marker = allMarkers.get(space.spaceId);\n markerBySpace.set(space.spaceId, marker ?? null);\n }\n } catch (error) {\n if (CliStructuredError.is(error)) {\n return notOk(error);\n }\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n return notOk(\n errorUnexpected(error instanceof Error ? error.message : String(error), {\n why: `Failed to read live DB marker: ${error instanceof Error ? error.message : String(error)}`,\n }),\n );\n } finally {\n await client.close();\n }\n }\n\n // Walk the path via planSpacePath — the same helper executeMigrate uses.\n // planSpacePath feeds resolveRecordedPath identical inputs (targetHash, targetInvariants,\n // currentMarker with full invariants), so the preview path is always the path migrate runs.\n //\n // Canonical schedule order: extensions alphabetically first, then app — mirroring the\n // runner's `applyOrder` in operations/migrate.ts so the \"Will run, in order:\" list\n // reflects the actual execution sequence (extensions install first, app last).\n const canonicalOrderSpaces: ReadonlyArray<AggregateContractSpace> = [\n ...aggregate.extensions,\n aggregate.app,\n ];\n const orderedMigrations: MigrateShowMigration[] = [];\n for (const space of canonicalOrderSpaces) {\n const isAppSpace = space.spaceId === aggregate.app.spaceId;\n const headRef = requireHeadRef(space);\n const spaceTargetHash = isAppSpace ? targetHash : headRef.hash;\n const spaceRefInvariants = isAppSpace ? refInvariants : undefined;\n const liveMarker = markerBySpace.get(space.spaceId) ?? null;\n\n const outcome = planSpacePath({\n space,\n aggregate,\n targetHash: spaceTargetHash,\n refInvariants: spaceRefInvariants,\n liveMarker,\n });\n\n if (outcome.kind === 'at-head') {\n // Empty-graph space already at target — nothing to run for this space.\n continue;\n }\n if (outcome.kind === 'never-planned') {\n return notOk(\n errorPathUnreachable({\n code: 'MIGRATION_PATH_NOT_FOUND',\n summary: `No on-disk migrations for contract space \"${outcome.spaceId}\"`,\n why: `migrate is replay-only: space \"${outcome.spaceId}\" has no on-disk migrations but its head ref targets \"${outcome.targetHash}\".`,\n meta: { spaceId: outcome.spaceId, target: outcome.targetHash, kind: 'neverPlanned' },\n }),\n );\n }\n if (outcome.kind === 'unreachable') {\n const fromHash = outcome.liveMarker?.storageHash ?? EMPTY_CONTRACT_HASH;\n return notOk(\n errorPathUnreachable({\n code: 'MIGRATION_PATH_NOT_FOUND',\n summary: `No migration path from ${fromHash.slice(0, 14)} to ${outcome.targetHash.slice(0, 14)} in space \"${outcome.spaceId}\".`,\n why: `The migration graph has no path from the from-state to the target in space \"${outcome.spaceId}\".`,\n meta: { spaceId: outcome.spaceId, from: fromHash, to: outcome.targetHash },\n }),\n );\n }\n if (outcome.kind === 'unsatisfiable') {\n return notOk(\n errorRuntime(`Missing required invariants for space \"${outcome.spaceId}\"`, {\n why: `The path requires invariants not available on disk: ${outcome.missing.join(', ')}`,\n }),\n );\n }\n\n for (const edge of outcome.plan.migrationEdges) {\n orderedMigrations.push({\n spaceId: space.spaceId,\n dirName: edge.dirName,\n migrationHash: edge.migrationHash,\n from: edge.from,\n to: edge.to,\n });\n }\n }\n\n const count = orderedMigrations.length;\n const summary =\n count === 0\n ? 'Already up to date — nothing to run'\n : `${count} migration${count === 1 ? '' : 's'} will run`;\n\n // Build the Tier-3 graph visualization (human mode only; skipped for --json).\n // Reuses the existing annotation hook — no parallel renderer.\n let graphOutput: string | undefined;\n let runListDirNameWidth: number | undefined;\n let runListLeftPad: number | undefined;\n if (!flags.json) {\n const onPathHashes = new Set(orderedMigrations.map((m) => m.migrationHash));\n const colorize = flags.color !== false;\n\n // Build layouts for all spaces first so we can compute global column widths\n // before rendering. This ensures the name column, hash column, and ops column\n // start at the same horizontal offset across every space section AND the\n // \"Will run, in order:\" list below.\n const spaceLayouts = allSpaces.map((space) => {\n const isApp = space.spaceId === aggregate.app.spaceId;\n const spaceGraph = space.graph();\n const rowModel = buildMigrationGraphRows(spaceGraph, isApp ? { contractHash } : {});\n const edgeAnnotations = new Map<string, MigrationEdgeAnnotation>();\n for (const edge of spaceGraph.migrationByHash.values()) {\n edgeAnnotations.set(edge.migrationHash, {\n pathHighlight: onPathHashes.has(edge.migrationHash) ? 'on-path' : 'off-path',\n });\n }\n // The on-path migration set lifts to focus mode so the chosen route draws\n // green/continuous; off-path lanes dim. Rows, gutter, and labels all come\n // from this one grid.\n const grid = buildGrid(rowModel, {}, highlightFromEdgeAnnotations(edgeAnnotations));\n return { space, isApp, spaceGraph, rowModel, grid, edgeAnnotations };\n });\n\n // Global max across all space grids so every section's labels share columns.\n const globalLabelColumn =\n spaceLayouts.length > 1\n ? Math.max(...spaceLayouts.map(({ grid }) => computeLabelColumn(grid, 'unicode')))\n : undefined;\n const globalMaxDirNameWidthFromLayouts =\n spaceLayouts.length > 1\n ? Math.max(...spaceLayouts.map(({ rowModel }) => computeMaxDirNameWidth(rowModel)))\n : undefined;\n // The run-list name column width must be at least as wide as the global tree dirName\n // width so that tree sections and the list align at the hash column.\n const runListMaxFromMigrations =\n orderedMigrations.length > 0\n ? Math.max(...orderedMigrations.map((m) => m.dirName.length))\n : 0;\n const globalMaxDirNameWidth =\n globalMaxDirNameWidthFromLayouts !== undefined\n ? Math.max(globalMaxDirNameWidthFromLayouts, runListMaxFromMigrations)\n : undefined;\n runListDirNameWidth = globalMaxDirNameWidth ?? runListMaxFromMigrations;\n runListLeftPad = globalLabelColumn;\n\n // Render each space section with globally computed widths.\n const showSpaceHeadings = allSpaces.length > 1;\n const sections: string[] = [];\n for (const { space, isApp, rowModel, grid, edgeAnnotations } of spaceLayouts) {\n const liveMarker = markerBySpace.get(space.spaceId) ?? null;\n const liveMarkerHash = liveMarker?.storageHash ?? EMPTY_CONTRACT_HASH;\n const tree = renderMigrationGraphCommand({\n grid,\n rowModel,\n contractHash,\n isAppSpace: isApp,\n ...(needsLiveMarker ? { dbHash: liveMarkerHash } : {}),\n refsByHash: listRefsByContractHash(space),\n edgeAnnotationsByHash: edgeAnnotations,\n colorize,\n glyphMode: 'unicode',\n ...(globalLabelColumn !== undefined ? { globalLabelColumn } : {}),\n ...(globalMaxDirNameWidth !== undefined ? { globalMaxDirNameWidth } : {}),\n });\n if (tree.length === 0) continue;\n if (showSpaceHeadings) {\n sections.push(`${space.spaceId}:\\n${indentMigrationGraphTreeBlock(tree, ' ')}`);\n } else {\n sections.push(tree);\n }\n }\n graphOutput = sections.join('\\n\\n');\n }\n\n return ok({\n ok: true,\n migrations: orderedMigrations,\n summary,\n ...(graphOutput !== undefined ? { graphOutput } : {}),\n ...(runListDirNameWidth !== undefined ? { runListDirNameWidth } : {}),\n ...(runListLeftPad !== undefined ? { runListLeftPad } : {}),\n });\n}\n\nfunction formatMigrateShowOutput(result: MigrateShowResult, flags: GlobalFlags): string {\n if (flags.quiet) return '';\n const colorize = flags.color !== false;\n const lines: string[] = [];\n // Graph tree first (shows the full topology with on-path highlighted).\n if (result.graphOutput !== undefined && result.graphOutput.length > 0) {\n lines.push(result.graphOutput);\n lines.push('');\n }\n const n = result.migrations.length;\n if (n > 0) {\n // Consolidated header: one line replaces the old separate summary + blank +\n // \"Will run, in order:\" header.\n lines.push(`The following ${n} migration${n === 1 ? '' : 's'} will run:`);\n // Ordered list rendered through the SAME on-path row renderer as the tree.\n // `formatOnPathMigrationRow` uses PATH_HIGHLIGHT_STYLES.onPath so the list and\n // graph-tree rows are styled identically — changing the on-path colour in future\n // is a one-line edit in PATH_HIGHLIGHT_STYLES.\n //\n // Alignment anchor: the `→` arrow (source-hash onward) must land at the SAME\n // absolute column as in graph edge rows, across every graph section and this list.\n //\n // Multi-space output layout (space headings + 2-space indented tree sections):\n // Graph edge row: [2 heading][G gutter][D dirName][7 source] [→] [dest]\n // List row: [2 spaces][L dirName][ ][7 source] [→] [dest]\n // Alignment: 2 + G + D + 9 = 2 + L + 2 + 9 => L = G + D - 2\n //\n // Single-space output layout (flat tree, no heading indent):\n // Graph edge row: [G gutter][D dirName][7 source] [→] [dest]\n // List row: [2 spaces][L dirName][ ][7 source] [→] [dest]\n // Alignment: G + D + 9 = 2 + L + 2 + 9 => L = G + D - 4\n //\n // D (edgeDirNameWidth) = max(rawDirNameWidth + LABEL_GAP, MIN_HASH_DATA_COLUMN - G)\n // where LABEL_GAP = 2 and MIN_HASH_DATA_COLUMN = 25 (same constants as the renderer).\n //\n // runListLeftPad is set only for multi-space; undefined means single-space.\n const isMultiSpace = result.runListLeftPad !== undefined;\n const gutter = result.runListLeftPad ?? 0;\n const rawDirNameWidth =\n result.runListDirNameWidth ?? Math.max(...result.migrations.map((m) => m.dirName.length));\n const edgeDirNameWidth = Math.max(rawDirNameWidth + 2, 25 - gutter);\n const listDirNameWidth = gutter + edgeDirNameWidth - (isMultiSpace ? 2 : 4);\n for (const m of result.migrations) {\n lines.push(\n ` ${formatOnPathMigrationRow(m.dirName, m.from, m.to, listDirNameWidth, colorize, 'unicode')}`,\n );\n }\n } else {\n lines.push(result.summary);\n }\n return lines.join('\\n');\n}\n\nfunction mapApplyFailure(failure: MigrateFailure): CliStructuredErrorType {\n if (failure.code === 'MIGRATION_PATH_NOT_FOUND') {\n return errorPathUnreachable(failure);\n }\n return errorRuntime(failure.summary, {\n why: failure.why ?? 'Migration runner failed',\n fix: 'Fix the issue and re-run `prisma-next migrate --to <contract>` — previously applied migrations are preserved.',\n meta: failure.meta ?? {},\n });\n}\n\nasync function executeMigrateCommand(\n options: MigrateCommandOptions,\n flags: GlobalFlags,\n ui: TerminalUI,\n startTime: number,\n): Promise<Result<MigrateResult, CliStructuredErrorType>> {\n const config = await loadConfig(options.config);\n const { configPath, migrationsDir, appMigrationsRelative, refsDir } = resolveMigrationPaths(\n options.config,\n config,\n );\n\n const dbConnection = options.db ?? config.db?.connection;\n if (!dbConnection) {\n return notOk(\n errorDatabaseConnectionRequired({\n why: `Database connection is required for migrate (set db.connection in ${configPath}, or pass --db <url>)`,\n commandName: 'migrate',\n }),\n );\n }\n\n if (!config.driver) {\n return notOk(\n errorDriverRequired({\n why: 'Config.driver is required for migrate',\n }),\n );\n }\n\n if (!targetSupportsMigrations(config.target)) {\n return notOk(\n errorTargetMigrationNotSupported({\n why: `Target \"${config.target.id}\" does not support migrations`,\n }),\n );\n }\n\n const toArg = options.to;\n\n // Construct the family instance up-front so the on-disk contract read\n // crosses the serializer seam (`familyInstance.deserializeContract`) at\n // the read site. The downstream `client.migrate({ contract })`\n // re-validates internally (no harm — validation is idempotent), but\n // closing the gap at the read site is what makes the cast-pattern\n // lint enforceable and matches the other CLI commands. See TML-2536.\n const stack = createControlStack(config);\n const familyInstance = config.family.create(stack);\n\n const contractPathAbsolute = resolveContractPath(config);\n let contractRaw: Contract;\n let contractContent: string;\n try {\n contractContent = await readFile(contractPathAbsolute, 'utf-8');\n } catch (error) {\n if (error instanceof Error && (error as { code?: string }).code === 'ENOENT') {\n return notOk(\n errorFileNotFound(contractPathAbsolute, {\n why: `Contract file not found at ${contractPathAbsolute}`,\n fix: 'Run `prisma-next contract emit` to generate a valid contract.json, then retry.',\n }),\n );\n }\n return notOk(\n errorContractValidationFailed(\n `Failed to read contract file: ${error instanceof Error ? error.message : String(error)}`,\n { where: { path: contractPathAbsolute } },\n ),\n );\n }\n try {\n contractRaw = familyInstance.deserializeContract(JSON.parse(contractContent) as unknown);\n } catch (error) {\n return notOk(\n errorContractValidationFailed(\n `Contract at ${contractPathAbsolute} failed to deserialize: ${error instanceof Error ? error.message : String(error)}`,\n { where: { path: contractPathAbsolute } },\n ),\n );\n }\n\n const loadedAggregate = await loadContractSpaceAggregateForCli({\n targetId: config.target.targetId,\n migrationsDir,\n appContract: contractRaw,\n extensionPacks: config.extensionPacks ?? [],\n deserializeContract: (json) => familyInstance.deserializeContract(json),\n });\n if (!loadedAggregate.ok) {\n return notOk(loadedAggregate.failure);\n }\n const aggregate = loadedAggregate.value;\n const integrityFailure = refuseContractSpaceIntegrity(aggregate, {\n declaredExtensions: toDeclaredExtensionsFromRaw(\n (config.extensionPacks ?? []) as ReadonlyArray<unknown>,\n ),\n checkContracts: true,\n });\n if (integrityFailure) {\n return notOk(integrityFailure);\n }\n\n let refEntry: RefEntry | undefined;\n let refName: string | undefined;\n if (toArg) {\n const refs = aggregate.app.refs;\n const refResult = parseContractRef(toArg, { graph: aggregate.app.graph(), refs });\n if (!refResult.ok) {\n return notOk(mapRefResolutionError(refResult.failure));\n }\n if (refResult.value.provenance.kind === 'ref') {\n refName = refResult.value.provenance.refName;\n const resolved = refs[refName];\n if (resolved) refEntry = resolved;\n } else {\n refEntry = { hash: refResult.value.hash, invariants: [] };\n }\n }\n\n if (!flags.json && !flags.quiet) {\n const details: Array<{ label: string; value: string }> = [\n { label: 'config', value: configPath },\n { label: 'migrations', value: appMigrationsRelative },\n ];\n if (typeof dbConnection === 'string') {\n details.push({\n label: 'database',\n value: maskConnectionUrl(dbConnection),\n });\n }\n if (toArg) {\n details.push({ label: 'to', value: toArg });\n }\n const header = formatStyledHeader({\n command: 'migrate',\n description: 'Apply planned migrations to advance the database',\n url: 'https://pris.ly/migrate',\n details,\n flags,\n });\n ui.stderr(header);\n }\n\n const appGraph = aggregate.app.graph();\n\n const client = createControlClient({\n family: config.family,\n target: config.target,\n adapter: config.adapter,\n driver: config.driver,\n extensionPacks: config.extensionPacks ?? [],\n });\n\n try {\n await client.connect(dbConnection);\n\n const allMarkers = await client.readAllMarkers();\n const appMarker = allMarkers.get('app') ?? null;\n\n if (appMarker !== null && !isGraphNode(appMarker.storageHash, appGraph)) {\n return notOk(\n errorMarkerMismatch(\n appMarker.storageHash,\n [...appGraph.nodes].sort(),\n findLatestMigration(appGraph)?.to ?? null,\n ),\n );\n }\n\n if (refEntry && refEntry.invariants.length > 0) {\n const declared = collectDeclaredInvariants(appGraph);\n const known = new Set<string>(declared);\n for (const id of appMarker?.invariants ?? []) known.add(id);\n const unknown = refEntry.invariants.filter((id) => !known.has(id));\n if (unknown.length > 0) {\n return notOk(\n mapMigrationToolsError(\n errorUnknownInvariant({\n ...ifDefined('refName', toArg),\n unknown,\n declared: [...declared].sort(),\n }),\n ),\n );\n }\n }\n\n if (!flags.quiet && !flags.json) {\n ui.step('Loading contract spaces…');\n }\n\n // When `--to` resolves to an on-disk graph node with a matching bundle,\n // verify and apply against THAT bundle's destination contract via\n // `contractAt` — not the emitted `contract.json`. With `--to` omitted,\n // or a target with no matching bundle, the emitted contract stays the\n // apply contract (the only migrate-specific default). The same\n // `contractAt` artifacts feed the optional ref-advancement snapshot.\n let applyContract: Contract = contractRaw;\n let snapshotContractJson: Record<string, unknown> = JSON.parse(contractContent);\n let snapshotContractDts: string | undefined;\n if (toArg && refEntry) {\n const targetHash = refEntry.hash;\n const matchingBundle = aggregate.app.packages.find((p) => p.metadata.to === targetHash);\n if (matchingBundle) {\n try {\n const at = await aggregate.app.contractAt(\n targetHash,\n refName !== undefined ? { refName } : undefined,\n );\n applyContract = at.contract;\n snapshotContractJson = at.contractJson as Record<string, unknown>;\n snapshotContractDts = at.contractDts;\n } catch (error) {\n return mapContractAtError(error, { artifactRole: 'to' });\n }\n }\n }\n\n const applyResult = await client.migrate({\n contract: applyContract,\n migrationsDir,\n ...ifDefined('refHash', refEntry?.hash),\n ...(refEntry?.invariants ? { refInvariants: refEntry.invariants } : {}),\n ...(refEntry !== undefined ? ifDefined('refName', toArg) : {}),\n });\n\n if (!applyResult.ok) {\n return notOk(mapApplyFailure(applyResult.failure));\n }\n\n const { value } = applyResult;\n\n let advancedRef: { name: string; hash: string } | null = null;\n if (options.advanceRef !== undefined) {\n try {\n const contractIR =\n snapshotContractDts !== undefined\n ? { contract: snapshotContractJson, contractDts: snapshotContractDts }\n : await readContractIR(snapshotContractJson, contractPathAbsolute);\n advancedRef = await executeRefAdvancement(\n refsDir,\n migrationsDir,\n options.advanceRef,\n value.markerHash,\n contractIR,\n );\n } catch (error) {\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n throw error;\n }\n }\n\n return ok({\n ok: true,\n migrationsApplied: value.migrationsApplied,\n migrationsTotal: value.perSpace.length,\n markerHash: value.markerHash,\n applied: value.applied,\n summary: value.summary,\n perSpace: value.perSpace,\n ...ifDefined('pathDecision', value.pathDecision),\n timings: { total: Date.now() - startTime },\n advancedRef,\n });\n } catch (error) {\n if (CliStructuredError.is(error)) {\n return notOk(error);\n }\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n return notOk(\n errorUnexpected(error instanceof Error ? error.message : String(error), {\n why: `Unexpected error during migrate: ${error instanceof Error ? error.message : String(error)}`,\n }),\n );\n } finally {\n await client.close();\n }\n}\n\nexport function createMigrateCommand(): Command {\n const command = new Command('migrate');\n setCommandDescriptions(\n command,\n 'Apply planned migrations to advance the database',\n 'Walks every contract space (app + extensions) and applies pending\\n' +\n 'on-disk migrations in canonical order (extensions alphabetically,\\n' +\n 'then app). Graph-walks the on-disk migration graph for every space.\\n' +\n 'Use --to to target a specific contract (hash, ref name, migration dir).\\n' +\n 'Use --show for a read-only preview of the path that would run.',\n );\n setCommandExamples(command, [\n 'prisma-next migrate --db $DATABASE_URL',\n 'prisma-next migrate --to production --db $DATABASE_URL',\n 'prisma-next migrate --to sha256:abc123 --db $DATABASE_URL',\n 'prisma-next migrate --show --db $DATABASE_URL',\n 'prisma-next migrate --show --from @contract --to production',\n ]);\n addGlobalOptions(command)\n .option('--db <url>', 'Database connection string')\n .option('--config <path>', 'Path to prisma-next.config.ts')\n .option(\n '--to <contract>',\n 'Target contract reference (hash, prefix, ref name, migration dir name, <dir>^, or ./path)',\n )\n .option('--advance-ref <name>', 'Advance the named ref to the post-apply marker after success')\n .option('--show', 'Preview the migration path without applying (read-only)')\n .option(\n '--from <contract>',\n 'From-state for --show preview (@contract, @db, hash, ref name, or migration dir)',\n )\n .action(async (options: MigrateCommandOptions) => {\n const flags = parseGlobalFlagsOrExit(options);\n const startTime = Date.now();\n\n const ui = createTerminalUI(flags);\n\n if (options.show) {\n // Read-only path: compute the migration plan and print the ordered list.\n // NEVER reaches runMigration() or any write boundary.\n const result = await executeMigrateShowCommand(options, flags, ui);\n\n const exitCode = handleResult(result, flags, ui, (showResult) => {\n if (flags.json) {\n ui.output(JSON.stringify(showResult, null, 2));\n } else {\n // Print directly to stdout — not via ui.log() which injects Clack's │ gutter.\n ui.output(formatMigrateShowOutput(showResult, flags));\n }\n });\n\n process.exit(exitCode);\n return;\n }\n\n const result = await executeMigrateCommand(options, flags, ui, startTime);\n\n const exitCode = handleResult(result, flags, ui, (migrateResult) => {\n if (flags.json) {\n ui.output(JSON.stringify(migrateResult, null, 2));\n } else if (!flags.quiet) {\n ui.log(formatMigrationApplyCommandOutput(migrateResult, flags));\n }\n });\n\n process.exit(exitCode);\n });\n\n return command;\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"migrate.mjs","names":[],"sources":["../../src/commands/migrate.ts"],"sourcesContent":["import { readFile } from 'node:fs/promises';\nimport { loadConfig } from '@prisma-next/config-loader';\nimport type { Contract } from '@prisma-next/contract/types';\nimport { createControlStack } from '@prisma-next/framework-components/control';\nimport {\n type AggregateContractSpace,\n requireHeadRef,\n} from '@prisma-next/migration-tools/aggregate';\nimport { EMPTY_CONTRACT_HASH } from '@prisma-next/migration-tools/constants';\nimport { errorUnknownInvariant, MigrationToolsError } from '@prisma-next/migration-tools/errors';\nimport { findLatestMigration, isGraphNode } from '@prisma-next/migration-tools/migration-graph';\nimport { parseContractRef } from '@prisma-next/migration-tools/ref-resolution';\nimport type { RefEntry, Refs } from '@prisma-next/migration-tools/refs';\nimport { readRefs } from '@prisma-next/migration-tools/refs';\nimport { ifDefined } from '@prisma-next/utils/defined';\nimport { notOk, ok, type Result } from '@prisma-next/utils/result';\nimport { Command } from 'commander';\nimport { createControlClient } from '../control-api/client';\nimport { planSpacePath } from '../control-api/operations/migrate';\nimport type {\n MigrateFailure,\n MigratePathDecision,\n PerSpaceExecutionEntry,\n} from '../control-api/types';\nimport {\n CliStructuredError,\n type CliStructuredError as CliStructuredErrorType,\n errorContractValidationFailed,\n errorDatabaseConnectionRequired,\n errorDriverRequired,\n errorFileNotFound,\n errorMarkerMismatch,\n errorPathUnreachable,\n errorRuntime,\n errorTargetMigrationNotSupported,\n errorUnexpected,\n mapMigrationToolsError,\n mapRefResolutionError,\n requireLiveDatabase,\n} from '../utils/cli-errors';\nimport {\n addGlobalOptions,\n collectDeclaredInvariants,\n maskConnectionUrl,\n resolveContractPath,\n resolveMigrationPaths,\n setCommandDescriptions,\n setCommandExamples,\n targetSupportsMigrations,\n} from '../utils/command-helpers';\nimport { mapContractAtError } from '../utils/contract-at-errors';\nimport {\n buildReadAggregate,\n loadContractSpaceAggregateForCli,\n refuseContractSpaceIntegrity,\n} from '../utils/contract-space-aggregate-loader';\nimport { toDeclaredExtensionsFromRaw } from '../utils/extension-pack-inputs';\nimport {\n computeLabelColumn,\n computeMaxDirNameWidth,\n renderMigrationGraphCommand,\n} from '../utils/formatters/migration-graph-command-render';\nimport { buildGrid } from '../utils/formatters/migration-graph-grid-layout';\nimport {\n formatOnPathMigrationRow,\n type MigrationEdgeAnnotation,\n} from '../utils/formatters/migration-graph-labels';\nimport { buildMigrationGraphRows } from '../utils/formatters/migration-graph-rows';\nimport {\n highlightFromEdgeAnnotations,\n indentMigrationGraphTreeBlock,\n} from '../utils/formatters/migration-graph-space-render';\nimport { formatMigrationApplyCommandOutput } from '../utils/formatters/migrations';\nimport { formatStyledHeader } from '../utils/formatters/styled';\nimport type { CommonCommandOptions } from '../utils/global-flags';\nimport { type GlobalFlags, parseGlobalFlagsOrExit } from '../utils/global-flags';\nimport { executeRefAdvancement, readContractIR } from '../utils/ref-advancement';\nimport { handleResult } from '../utils/result-handler';\nimport { createTerminalUI, type TerminalUI } from '../utils/terminal-ui';\nimport { listRefsByContractHash } from './migration-list';\n\ninterface MigrateCommandOptions extends CommonCommandOptions {\n readonly db?: string;\n readonly config?: string;\n readonly to?: string;\n readonly advanceRef?: string;\n readonly show?: boolean;\n readonly from?: string;\n}\n\n/**\n * One migration that will run in a `migrate --show` preview, in execution order.\n */\nexport interface MigrateShowMigration {\n readonly spaceId: string;\n readonly dirName: string;\n readonly migrationHash: string;\n readonly from: string;\n readonly to: string;\n}\n\n/** Result returned by `migrate --show`. Read-only; no writes performed. */\nexport interface MigrateShowResult {\n readonly ok: true;\n readonly migrations: readonly MigrateShowMigration[];\n readonly summary: string;\n /**\n * Pre-rendered Tier-3 graph tree for human output. Off-path migrations render\n * dim; on-path migrations render in ordinary colours. Only present in human\n * (non-JSON) mode.\n */\n readonly graphOutput?: string;\n /**\n * Name column width for the \"Will run, in order:\" list — globally aligned with\n * every graph-tree section. Only present in human (non-JSON) mode.\n */\n readonly runListDirNameWidth?: number;\n /**\n * Left-pad offset (number of blank spaces) matching the graph's data-column\n * offset (`globalMaxEdgeTreePrefixWidth`). Used to align list rows with graph\n * rows so every `→` in the output (graph + list) lands at the same column.\n * Only present in human (non-JSON) mode when multiple spaces are rendered.\n */\n readonly runListLeftPad?: number;\n}\n\nexport interface MigrateResult {\n readonly ok: boolean;\n readonly migrationsApplied: number;\n readonly migrationsTotal: number;\n readonly markerHash: string;\n readonly applied: readonly {\n readonly spaceId: string;\n readonly dirName: string;\n readonly migrationHash: string;\n readonly from: string;\n readonly to: string;\n readonly operationsExecuted: number;\n }[];\n readonly summary: string;\n readonly perSpace: readonly PerSpaceExecutionEntry[];\n readonly pathDecision?: MigratePathDecision;\n readonly timings: {\n readonly total: number;\n };\n readonly advancedRef?: { readonly name: string; readonly hash: string } | null;\n}\n\n/**\n * Read-only preview of the migration path `migrate` will take.\n *\n * Computes the path through the SAME seam as `executeMigrate`:\n * - `readAllMarkers()` for the from-state (when no `--from` is given), preserving\n * the full marker including `invariants` (not just `storageHash`).\n * - `planSpacePath()` (shared with `executeMigrate`) for per-space path selection,\n * which feeds `resolveRecordedPath()` with the same target hash, target invariants,\n * and current marker as the real apply path uses.\n *\n * Returns BEFORE any write boundary (`runMigration` / marker / DDL). No\n * DB state is mutated.\n */\nasync function executeMigrateShowCommand(\n options: MigrateCommandOptions,\n flags: GlobalFlags,\n ui: TerminalUI,\n): Promise<Result<MigrateShowResult, CliStructuredErrorType>> {\n const config = await loadConfig(options.config);\n const { configPath, migrationsDir, migrationsRelative, refsDir } = resolveMigrationPaths(\n options.config,\n config,\n );\n\n const dbConnection = options.db ?? config.db?.connection;\n const hasDriver = !!config.driver;\n const hasExplicitFrom = options.from !== undefined;\n\n // When --from is omitted we read the live DB marker (same as migrate's default).\n // When --from is given, we're in offline hypothetical mode — no connection needed.\n if (!hasExplicitFrom) {\n const missingDb = requireLiveDatabase({\n dbConnection,\n hasDriver,\n why: 'migrate --show needs a database connection to read the live marker (or pass --from <contract> for an offline preview)',\n retryCommand: 'prisma-next migrate --show --from <contract>',\n });\n if (missingDb) {\n return notOk(missingDb);\n }\n }\n\n let allRefs: Refs = {};\n try {\n allRefs = await readRefs(refsDir);\n } catch (error) {\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n throw error;\n }\n\n const loaded = await buildReadAggregate(config, { migrationsDir });\n if (!loaded.ok) {\n return notOk(loaded.failure);\n }\n const { aggregate, contractHash } = loaded.value;\n const appGraph = aggregate.app.graph();\n\n // Resolve the --to target (defaults to the on-disk contract, same as migrate).\n // Also capture the ref's invariants so planSpacePath feeds resolveRecordedPath the\n // same target invariants that real migrate would use (refInvariants ?? headRef.invariants).\n let targetHash: string = contractHash;\n let refInvariants: readonly string[] | undefined;\n if (options.to) {\n const toResult = parseContractRef(options.to, {\n graph: appGraph,\n refs: allRefs,\n contractHash,\n });\n if (!toResult.ok) {\n return notOk(mapRefResolutionError(toResult.failure));\n }\n if (toResult.value.provenance.kind === 'reserved-db') {\n return notOk(\n errorDatabaseConnectionRequired({\n why: '@db is not valid as a --to target; it names the live database state, not a target contract.',\n commandName: 'migrate --show',\n }),\n );\n }\n targetHash = toResult.value.hash;\n if (toResult.value.provenance.kind === 'ref') {\n const refEntry = allRefs[toResult.value.provenance.refName];\n if (refEntry) refInvariants = refEntry.invariants;\n }\n }\n\n if (!flags.json && !flags.quiet) {\n const details: Array<{ label: string; value: string }> = [\n { label: 'config', value: configPath },\n { label: 'migrations', value: migrationsRelative },\n ];\n if (dbConnection && !hasExplicitFrom) {\n details.push({ label: 'database', value: maskConnectionUrl(String(dbConnection)) });\n }\n if (options.from) {\n details.push({ label: 'from', value: options.from });\n }\n if (options.to) {\n details.push({ label: 'to', value: options.to });\n }\n const header = formatStyledHeader({\n command: 'migrate --show',\n description: 'Preview the migration path migrate will take (read-only)',\n details,\n flags,\n });\n ui.stderr(header);\n }\n\n // Resolve the from-state.\n // - Explicit --from: parse it offline (no connection).\n // - Omitted: read the live DB marker via readAllMarkers() — the same source migrate uses.\n //\n // Full marker records (storageHash + invariants) are preserved so planSpacePath\n // can feed resolveRecordedPath the complete currentMarker — exactly as executeMigrate\n // does via familyInstance.readAllMarkers(). A stripped { storageHash, invariants: [] }\n // marker would produce a different `required` set and a different (incorrect) path.\n type LiveMarker = { readonly storageHash: string; readonly invariants: readonly string[] };\n const markerBySpace = new Map<string, LiveMarker | null>();\n const allSpaces: ReadonlyArray<AggregateContractSpace> = [aggregate.app, ...aggregate.extensions];\n\n if (hasExplicitFrom) {\n // @db with explicit --from requires a connection\n if (options.from === '@db') {\n const missingDb = requireLiveDatabase({\n dbConnection,\n hasDriver,\n why: '@db resolves to the live database marker and requires a --db connection',\n retryCommand: 'prisma-next migrate --show --from @db --db $DATABASE_URL',\n });\n if (missingDb) {\n return notOk(missingDb);\n }\n // Fall through to the connection path below\n } else {\n const fromResult = parseContractRef(options.from, {\n graph: appGraph,\n refs: allRefs,\n contractHash,\n });\n if (!fromResult.ok) {\n return notOk(mapRefResolutionError(fromResult.failure));\n }\n if (fromResult.value.provenance.kind === 'reserved-db') {\n // Unreachable given the @db branch above, but guard for safety\n const missingDb = requireLiveDatabase({\n dbConnection,\n hasDriver,\n why: '@db resolves to the live database marker and requires a --db connection',\n });\n if (missingDb) {\n return notOk(missingDb);\n }\n } else {\n // Offline hypothetical: the --from ref only carries a hash (no live invariants).\n // Apply the from-hash marker to the APP space only. Extension spaces are left\n // absent from markerBySpace (treated as null / greenfield by planSpacePath),\n // so they plan from their own marker → own head — exactly as executeMigrate does.\n const fromHash = fromResult.value.hash;\n const offlineMarker: LiveMarker | null =\n fromHash === EMPTY_CONTRACT_HASH ? null : { storageHash: fromHash, invariants: [] };\n markerBySpace.set(aggregate.app.spaceId, offlineMarker);\n }\n }\n }\n\n // If we need the live DB marker (no --from, or --from @db), connect and read.\n const needsLiveMarker = !hasExplicitFrom || options.from === '@db';\n if (needsLiveMarker) {\n if (!dbConnection || !hasDriver) {\n return notOk(\n errorDatabaseConnectionRequired({\n why: 'A database connection is required to read the live marker for migrate --show',\n commandName: 'migrate --show',\n }),\n );\n }\n const client = createControlClient({\n family: config.family,\n target: config.target,\n adapter: config.adapter,\n driver: config.driver!,\n extensionPacks: config.extensionPacks ?? [],\n });\n try {\n await client.connect(dbConnection);\n const allMarkers = await client.readAllMarkers();\n // Store the full marker record (storageHash + invariants) per space.\n // This is the same data executeMigrate uses via familyInstance.readAllMarkers().\n for (const space of allSpaces) {\n const marker = allMarkers.get(space.spaceId);\n markerBySpace.set(space.spaceId, marker ?? null);\n }\n } catch (error) {\n if (CliStructuredError.is(error)) {\n return notOk(error);\n }\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n return notOk(\n errorUnexpected(error instanceof Error ? error.message : String(error), {\n why: `Failed to read live DB marker: ${error instanceof Error ? error.message : String(error)}`,\n }),\n );\n } finally {\n await client.close();\n }\n }\n\n // Walk the path via planSpacePath — the same helper executeMigrate uses.\n // planSpacePath feeds resolveRecordedPath identical inputs (targetHash, targetInvariants,\n // currentMarker with full invariants), so the preview path is always the path migrate runs.\n //\n // Canonical schedule order: extensions alphabetically first, then app — mirroring the\n // runner's `applyOrder` in operations/migrate.ts so the \"Will run, in order:\" list\n // reflects the actual execution sequence (extensions install first, app last).\n const canonicalOrderSpaces: ReadonlyArray<AggregateContractSpace> = [\n ...aggregate.extensions,\n aggregate.app,\n ];\n const orderedMigrations: MigrateShowMigration[] = [];\n for (const space of canonicalOrderSpaces) {\n const isAppSpace = space.spaceId === aggregate.app.spaceId;\n const headRef = requireHeadRef(space);\n const spaceTargetHash = isAppSpace ? targetHash : headRef.hash;\n const spaceRefInvariants = isAppSpace ? refInvariants : undefined;\n const liveMarker = markerBySpace.get(space.spaceId) ?? null;\n\n const outcome = planSpacePath({\n space,\n aggregate,\n targetHash: spaceTargetHash,\n refInvariants: spaceRefInvariants,\n liveMarker,\n });\n\n if (outcome.kind === 'at-head') {\n // Empty-graph space already at target — nothing to run for this space.\n continue;\n }\n if (outcome.kind === 'never-planned') {\n return notOk(\n errorPathUnreachable({\n code: 'MIGRATION_PATH_NOT_FOUND',\n summary: `No on-disk migrations for contract space \"${outcome.spaceId}\"`,\n why: `migrate is replay-only: space \"${outcome.spaceId}\" has no on-disk migrations but its head ref targets \"${outcome.targetHash}\".`,\n meta: { spaceId: outcome.spaceId, target: outcome.targetHash, kind: 'neverPlanned' },\n }),\n );\n }\n if (outcome.kind === 'unreachable') {\n const fromHash = outcome.liveMarker?.storageHash ?? EMPTY_CONTRACT_HASH;\n return notOk(\n errorPathUnreachable({\n code: 'MIGRATION_PATH_NOT_FOUND',\n summary: `No migration path from ${fromHash.slice(0, 14)} to ${outcome.targetHash.slice(0, 14)} in space \"${outcome.spaceId}\".`,\n why: `The migration graph has no path from the from-state to the target in space \"${outcome.spaceId}\".`,\n meta: { spaceId: outcome.spaceId, from: fromHash, to: outcome.targetHash },\n }),\n );\n }\n if (outcome.kind === 'unsatisfiable') {\n return notOk(\n errorRuntime(`Missing required invariants for space \"${outcome.spaceId}\"`, {\n why: `The path requires invariants not available on disk: ${outcome.missing.join(', ')}`,\n }),\n );\n }\n\n for (const edge of outcome.plan.migrationEdges) {\n orderedMigrations.push({\n spaceId: space.spaceId,\n dirName: edge.dirName,\n migrationHash: edge.migrationHash,\n from: edge.from,\n to: edge.to,\n });\n }\n }\n\n const count = orderedMigrations.length;\n const summary =\n count === 0\n ? 'Already up to date — nothing to run'\n : `${count} migration${count === 1 ? '' : 's'} will run`;\n\n // Build the Tier-3 graph visualization (human mode only; skipped for --json).\n // Reuses the existing annotation hook — no parallel renderer.\n let graphOutput: string | undefined;\n let runListDirNameWidth: number | undefined;\n let runListLeftPad: number | undefined;\n if (!flags.json) {\n const onPathHashes = new Set(orderedMigrations.map((m) => m.migrationHash));\n const colorize = flags.color !== false;\n\n // Build layouts for all spaces first so we can compute global column widths\n // before rendering. This ensures the name column, hash column, and ops column\n // start at the same horizontal offset across every space section AND the\n // \"Will run, in order:\" list below.\n const spaceLayouts = allSpaces.map((space) => {\n const isApp = space.spaceId === aggregate.app.spaceId;\n const spaceGraph = space.graph();\n const rowModel = buildMigrationGraphRows(spaceGraph, isApp ? { contractHash } : {});\n const edgeAnnotations = new Map<string, MigrationEdgeAnnotation>();\n for (const edge of spaceGraph.migrationByHash.values()) {\n edgeAnnotations.set(edge.migrationHash, {\n pathHighlight: onPathHashes.has(edge.migrationHash) ? 'on-path' : 'off-path',\n });\n }\n // The on-path migration set lifts to focus mode so the chosen route draws\n // green/continuous; off-path lanes dim. Rows, gutter, and labels all come\n // from this one grid.\n const grid = buildGrid(rowModel, {}, highlightFromEdgeAnnotations(edgeAnnotations));\n return { space, isApp, spaceGraph, rowModel, grid, edgeAnnotations };\n });\n\n // Global max across all space grids so every section's labels share columns.\n const globalLabelColumn =\n spaceLayouts.length > 1\n ? Math.max(...spaceLayouts.map(({ grid }) => computeLabelColumn(grid, 'unicode')))\n : undefined;\n const globalMaxDirNameWidthFromLayouts =\n spaceLayouts.length > 1\n ? Math.max(...spaceLayouts.map(({ rowModel }) => computeMaxDirNameWidth(rowModel)))\n : undefined;\n // The run-list name column width must be at least as wide as the global tree dirName\n // width so that tree sections and the list align at the hash column.\n const runListMaxFromMigrations =\n orderedMigrations.length > 0\n ? Math.max(...orderedMigrations.map((m) => m.dirName.length))\n : 0;\n const globalMaxDirNameWidth =\n globalMaxDirNameWidthFromLayouts !== undefined\n ? Math.max(globalMaxDirNameWidthFromLayouts, runListMaxFromMigrations)\n : undefined;\n runListDirNameWidth = globalMaxDirNameWidth ?? runListMaxFromMigrations;\n runListLeftPad = globalLabelColumn;\n\n // Render each space section with globally computed widths.\n const showSpaceHeadings = allSpaces.length > 1;\n const sections: string[] = [];\n for (const { space, isApp, rowModel, grid, edgeAnnotations } of spaceLayouts) {\n const liveMarker = markerBySpace.get(space.spaceId) ?? null;\n const liveMarkerHash = liveMarker?.storageHash ?? EMPTY_CONTRACT_HASH;\n const tree = renderMigrationGraphCommand({\n grid,\n rowModel,\n contractHash,\n isAppSpace: isApp,\n ...(needsLiveMarker ? { dbHash: liveMarkerHash } : {}),\n refsByHash: listRefsByContractHash(space),\n edgeAnnotationsByHash: edgeAnnotations,\n colorize,\n glyphMode: 'unicode',\n ...(globalLabelColumn !== undefined ? { globalLabelColumn } : {}),\n ...(globalMaxDirNameWidth !== undefined ? { globalMaxDirNameWidth } : {}),\n });\n if (tree.length === 0) continue;\n if (showSpaceHeadings) {\n sections.push(`${space.spaceId}:\\n${indentMigrationGraphTreeBlock(tree, ' ')}`);\n } else {\n sections.push(tree);\n }\n }\n graphOutput = sections.join('\\n\\n');\n }\n\n return ok({\n ok: true,\n migrations: orderedMigrations,\n summary,\n ...(graphOutput !== undefined ? { graphOutput } : {}),\n ...(runListDirNameWidth !== undefined ? { runListDirNameWidth } : {}),\n ...(runListLeftPad !== undefined ? { runListLeftPad } : {}),\n });\n}\n\nfunction formatMigrateShowOutput(result: MigrateShowResult, flags: GlobalFlags): string {\n if (flags.quiet) return '';\n const colorize = flags.color !== false;\n const lines: string[] = [];\n // Graph tree first (shows the full topology with on-path highlighted).\n if (result.graphOutput !== undefined && result.graphOutput.length > 0) {\n lines.push(result.graphOutput);\n lines.push('');\n }\n const n = result.migrations.length;\n if (n > 0) {\n // Consolidated header: one line replaces the old separate summary + blank +\n // \"Will run, in order:\" header.\n lines.push(`The following ${n} migration${n === 1 ? '' : 's'} will run:`);\n // Ordered list rendered through the SAME on-path row renderer as the tree.\n // `formatOnPathMigrationRow` uses PATH_HIGHLIGHT_STYLES.onPath so the list and\n // graph-tree rows are styled identically — changing the on-path colour in future\n // is a one-line edit in PATH_HIGHLIGHT_STYLES.\n //\n // Alignment anchor: the `→` arrow (source-hash onward) must land at the SAME\n // absolute column as in graph edge rows, across every graph section and this list.\n //\n // Multi-space output layout (space headings + 2-space indented tree sections):\n // Graph edge row: [2 heading][G gutter][D dirName][7 source] [→] [dest]\n // List row: [2 spaces][L dirName][ ][7 source] [→] [dest]\n // Alignment: 2 + G + D + 9 = 2 + L + 2 + 9 => L = G + D - 2\n //\n // Single-space output layout (flat tree, no heading indent):\n // Graph edge row: [G gutter][D dirName][7 source] [→] [dest]\n // List row: [2 spaces][L dirName][ ][7 source] [→] [dest]\n // Alignment: G + D + 9 = 2 + L + 2 + 9 => L = G + D - 4\n //\n // D (edgeDirNameWidth) = max(rawDirNameWidth + LABEL_GAP, MIN_HASH_DATA_COLUMN - G)\n // where LABEL_GAP = 2 and MIN_HASH_DATA_COLUMN = 25 (same constants as the renderer).\n //\n // runListLeftPad is set only for multi-space; undefined means single-space.\n const isMultiSpace = result.runListLeftPad !== undefined;\n const gutter = result.runListLeftPad ?? 0;\n const rawDirNameWidth =\n result.runListDirNameWidth ?? Math.max(...result.migrations.map((m) => m.dirName.length));\n const edgeDirNameWidth = Math.max(rawDirNameWidth + 2, 25 - gutter);\n const listDirNameWidth = gutter + edgeDirNameWidth - (isMultiSpace ? 2 : 4);\n for (const m of result.migrations) {\n lines.push(\n ` ${formatOnPathMigrationRow(m.dirName, m.from, m.to, listDirNameWidth, colorize, 'unicode')}`,\n );\n }\n } else {\n lines.push(result.summary);\n }\n return lines.join('\\n');\n}\n\nfunction mapApplyFailure(failure: MigrateFailure): CliStructuredErrorType {\n if (failure.code === 'MIGRATION_PATH_NOT_FOUND') {\n return errorPathUnreachable(failure);\n }\n return errorRuntime(failure.summary, {\n why: failure.why ?? 'Migration runner failed',\n fix: 'Fix the issue and re-run `prisma-next migrate --to <contract>` — previously applied migrations are preserved.',\n meta: failure.meta ?? {},\n });\n}\n\nasync function executeMigrateCommand(\n options: MigrateCommandOptions,\n flags: GlobalFlags,\n ui: TerminalUI,\n startTime: number,\n): Promise<Result<MigrateResult, CliStructuredErrorType>> {\n const config = await loadConfig(options.config);\n const { configPath, migrationsDir, appMigrationsRelative, refsDir } = resolveMigrationPaths(\n options.config,\n config,\n );\n\n const dbConnection = options.db ?? config.db?.connection;\n if (!dbConnection) {\n return notOk(\n errorDatabaseConnectionRequired({\n why: `Database connection is required for migrate (set db.connection in ${configPath}, or pass --db <url>)`,\n commandName: 'migrate',\n }),\n );\n }\n\n if (!config.driver) {\n return notOk(\n errorDriverRequired({\n why: 'Config.driver is required for migrate',\n }),\n );\n }\n\n if (!targetSupportsMigrations(config.target)) {\n return notOk(\n errorTargetMigrationNotSupported({\n why: `Target \"${config.target.id}\" does not support migrations`,\n }),\n );\n }\n\n const toArg = options.to;\n\n // Construct the family instance up-front so the on-disk contract read\n // crosses the serializer seam (`familyInstance.deserializeContract`) at\n // the read site. The downstream `client.migrate({ contract })`\n // re-validates internally (no harm — validation is idempotent), but\n // closing the gap at the read site is what makes the cast-pattern\n // lint enforceable and matches the other CLI commands. See TML-2536.\n const stack = createControlStack(config);\n const familyInstance = config.family.create(stack);\n\n const contractPathAbsolute = resolveContractPath(config);\n let contractRaw: Contract;\n let contractContent: string;\n try {\n contractContent = await readFile(contractPathAbsolute, 'utf-8');\n } catch (error) {\n if (error instanceof Error && (error as { code?: string }).code === 'ENOENT') {\n return notOk(\n errorFileNotFound(contractPathAbsolute, {\n why: `Contract file not found at ${contractPathAbsolute}`,\n fix: 'Run `prisma-next contract emit` to generate a valid contract.json, then retry.',\n }),\n );\n }\n return notOk(\n errorContractValidationFailed(\n `Failed to read contract file: ${error instanceof Error ? error.message : String(error)}`,\n { where: { path: contractPathAbsolute } },\n ),\n );\n }\n try {\n contractRaw = familyInstance.deserializeContract(JSON.parse(contractContent) as unknown);\n } catch (error) {\n return notOk(\n errorContractValidationFailed(\n `Contract at ${contractPathAbsolute} failed to deserialize: ${error instanceof Error ? error.message : String(error)}`,\n { where: { path: contractPathAbsolute } },\n ),\n );\n }\n\n const loadedAggregate = await loadContractSpaceAggregateForCli({\n targetId: config.target.targetId,\n migrationsDir,\n appContract: contractRaw,\n extensionPacks: config.extensionPacks ?? [],\n deserializeContract: (json) => familyInstance.deserializeContract(json),\n });\n if (!loadedAggregate.ok) {\n return notOk(loadedAggregate.failure);\n }\n const aggregate = loadedAggregate.value;\n const integrityFailure = refuseContractSpaceIntegrity(aggregate, {\n declaredExtensions: toDeclaredExtensionsFromRaw(\n (config.extensionPacks ?? []) as ReadonlyArray<unknown>,\n ),\n checkContracts: true,\n });\n if (integrityFailure) {\n return notOk(integrityFailure);\n }\n\n let refEntry: RefEntry | undefined;\n let refName: string | undefined;\n if (toArg) {\n const refs = aggregate.app.refs;\n const refResult = parseContractRef(toArg, { graph: aggregate.app.graph(), refs });\n if (!refResult.ok) {\n return notOk(mapRefResolutionError(refResult.failure));\n }\n if (refResult.value.provenance.kind === 'ref') {\n refName = refResult.value.provenance.refName;\n const resolved = refs[refName];\n if (resolved) refEntry = resolved;\n } else {\n refEntry = { hash: refResult.value.hash, invariants: [] };\n }\n }\n\n if (!flags.json && !flags.quiet) {\n const details: Array<{ label: string; value: string }> = [\n { label: 'config', value: configPath },\n { label: 'migrations', value: appMigrationsRelative },\n ];\n if (typeof dbConnection === 'string') {\n details.push({\n label: 'database',\n value: maskConnectionUrl(dbConnection),\n });\n }\n if (toArg) {\n details.push({ label: 'to', value: toArg });\n }\n const header = formatStyledHeader({\n command: 'migrate',\n description: 'Apply planned migrations to advance the database',\n url: 'https://pris.ly/migrate',\n details,\n flags,\n });\n ui.stderr(header);\n }\n\n const appGraph = aggregate.app.graph();\n\n const client = createControlClient({\n family: config.family,\n target: config.target,\n adapter: config.adapter,\n driver: config.driver,\n extensionPacks: config.extensionPacks ?? [],\n });\n\n try {\n await client.connect(dbConnection);\n\n const allMarkers = await client.readAllMarkers();\n const appMarker = allMarkers.get('app') ?? null;\n\n if (appMarker !== null && !isGraphNode(appMarker.storageHash, appGraph)) {\n return notOk(\n errorMarkerMismatch(\n appMarker.storageHash,\n [...appGraph.nodes].sort(),\n findLatestMigration(appGraph)?.to ?? null,\n ),\n );\n }\n\n if (refEntry && refEntry.invariants.length > 0) {\n const declared = collectDeclaredInvariants(appGraph);\n const known = new Set<string>(declared);\n for (const id of appMarker?.invariants ?? []) known.add(id);\n const unknown = refEntry.invariants.filter((id) => !known.has(id));\n if (unknown.length > 0) {\n return notOk(\n mapMigrationToolsError(\n errorUnknownInvariant({\n ...ifDefined('refName', toArg),\n unknown,\n declared: [...declared].sort(),\n }),\n ),\n );\n }\n }\n\n if (!flags.quiet && !flags.json) {\n ui.step('Loading contract spaces…');\n }\n\n // When `--to` resolves to an on-disk graph node with a matching bundle,\n // verify and apply against THAT bundle's destination contract via\n // `contractAt` — not the emitted `contract.json`. With `--to` omitted,\n // or a target with no matching bundle, the emitted contract stays the\n // apply contract (the only migrate-specific default). The same\n // `contractAt` artifacts feed the optional ref-advancement snapshot.\n let applyContract: Contract = contractRaw;\n let snapshotContractJson: Record<string, unknown> = JSON.parse(contractContent);\n let snapshotContractDts: string | undefined;\n if (toArg && refEntry) {\n const targetHash = refEntry.hash;\n const matchingBundle = aggregate.app.packages.find((p) => p.metadata.to === targetHash);\n if (matchingBundle) {\n try {\n const at = await aggregate.app.contractAt(\n targetHash,\n refName !== undefined ? { refName } : undefined,\n );\n applyContract = at.contract;\n snapshotContractJson = at.contractJson as Record<string, unknown>;\n snapshotContractDts = at.contractDts;\n } catch (error) {\n return mapContractAtError(error, { artifactRole: 'to' });\n }\n }\n }\n\n const applyResult = await client.migrate({\n contract: applyContract,\n migrationsDir,\n ...ifDefined('refHash', refEntry?.hash),\n ...(refEntry?.invariants ? { refInvariants: refEntry.invariants } : {}),\n ...(refEntry !== undefined ? ifDefined('refName', toArg) : {}),\n });\n\n if (!applyResult.ok) {\n return notOk(mapApplyFailure(applyResult.failure));\n }\n\n const { value } = applyResult;\n\n let advancedRef: { name: string; hash: string } | null = null;\n if (options.advanceRef !== undefined) {\n try {\n const contractIR =\n snapshotContractDts !== undefined\n ? { contract: snapshotContractJson, contractDts: snapshotContractDts }\n : await readContractIR(snapshotContractJson, contractPathAbsolute);\n advancedRef = await executeRefAdvancement(\n refsDir,\n migrationsDir,\n options.advanceRef,\n value.markerHash,\n contractIR,\n );\n } catch (error) {\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n throw error;\n }\n }\n\n return ok({\n ok: true,\n migrationsApplied: value.migrationsApplied,\n migrationsTotal: value.perSpace.length,\n markerHash: value.markerHash,\n applied: value.applied,\n summary: value.summary,\n perSpace: value.perSpace,\n ...ifDefined('pathDecision', value.pathDecision),\n timings: { total: Date.now() - startTime },\n advancedRef,\n });\n } catch (error) {\n if (CliStructuredError.is(error)) {\n return notOk(error);\n }\n if (MigrationToolsError.is(error)) {\n return notOk(mapMigrationToolsError(error));\n }\n return notOk(\n errorUnexpected(error instanceof Error ? error.message : String(error), {\n why: `Unexpected error during migrate: ${error instanceof Error ? error.message : String(error)}`,\n }),\n );\n } finally {\n await client.close();\n }\n}\n\nexport function createMigrateCommand(): Command {\n const command = new Command('migrate');\n setCommandDescriptions(\n command,\n 'Apply planned migrations to advance the database',\n 'Walks every contract space (app + extensions) and applies pending\\n' +\n 'on-disk migrations in canonical order (extensions alphabetically,\\n' +\n 'then app). Graph-walks the on-disk migration graph for every space.\\n' +\n 'Use --to to target a specific contract (hash, ref name, migration dir).\\n' +\n 'Use --show for a read-only preview of the path that would run.',\n );\n setCommandExamples(command, [\n 'prisma-next migrate --db $DATABASE_URL',\n 'prisma-next migrate --to production --db $DATABASE_URL',\n 'prisma-next migrate --to abc123 --db $DATABASE_URL',\n 'prisma-next migrate --show --db $DATABASE_URL',\n 'prisma-next migrate --show --from @contract --to production',\n ]);\n addGlobalOptions(command)\n .option('--db <url>', 'Database connection string')\n .option('--config <path>', 'Path to prisma-next.config.ts')\n .option(\n '--to <contract>',\n 'Target contract reference (hash, prefix, ref name, migration dir name, <dir>^, or ./path)',\n )\n .option('--advance-ref <name>', 'Advance the named ref to the post-apply marker after success')\n .option('--show', 'Preview the migration path without applying (read-only)')\n .option(\n '--from <contract>',\n 'From-state for --show preview (@contract, @db, hash, ref name, or migration dir)',\n )\n .action(async (options: MigrateCommandOptions) => {\n const flags = parseGlobalFlagsOrExit(options);\n const startTime = Date.now();\n\n const ui = createTerminalUI(flags);\n\n if (options.show) {\n // Read-only path: compute the migration plan and print the ordered list.\n // NEVER reaches runMigration() or any write boundary.\n const result = await executeMigrateShowCommand(options, flags, ui);\n\n const exitCode = handleResult(result, flags, ui, (showResult) => {\n if (flags.json) {\n ui.output(JSON.stringify(showResult, null, 2));\n } else {\n // Print directly to stdout — not via ui.log() which injects Clack's │ gutter.\n ui.output(formatMigrateShowOutput(showResult, flags));\n }\n });\n\n process.exit(exitCode);\n return;\n }\n\n const result = await executeMigrateCommand(options, flags, ui, startTime);\n\n const exitCode = handleResult(result, flags, ui, (migrateResult) => {\n if (flags.json) {\n ui.output(JSON.stringify(migrateResult, null, 2));\n } else if (!flags.quiet) {\n ui.log(formatMigrationApplyCommandOutput(migrateResult, flags));\n }\n });\n\n process.exit(exitCode);\n });\n\n return command;\n}\n"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"migration-check.d.mts","names":[],"sources":["../../src/commands/migration-check.ts"],"mappings":";;;;;;;;;;;;;;;;UAiKiB;WACN;WACA,mBAAmB;WACnB,MAAM;WACN,OAAO;WACP;WACA;;WAEA;;;;;;;;;;iBAWW,qBACpB,WAAW,wBACX,+BACC,iBAAiB;;;;;;;UA2GH;WACN,iBAAiB;WACjB;;;;;;;;;;;;;;iBAeW,kBACpB,QAAQ,0BACP,QAAQ,OAAO,sBAAsB;iBAmTxB,+BAA+B"}
1
+ {"version":3,"file":"migration-check.d.mts","names":[],"sources":["../../src/commands/migration-check.ts"],"mappings":";;;;;;;;;;;;;;;;UAkKiB;WACN;WACA,mBAAmB;WACnB,MAAM;WACN,OAAO;WACP;WACA;;WAEA;;;;;;;;;;iBAWW,qBACpB,WAAW,wBACX,+BACC,iBAAiB;;;;;;;UA2GH;WACN,iBAAiB;WACjB;;;;;;;;;;;;;;iBAeW,kBACpB,QAAQ,0BACP,QAAQ,OAAO,sBAAsB;iBAmTxB,+BAA+B"}
@@ -1,3 +1,3 @@
1
- import { n as enumerateCheckSpaces, r as runMigrationCheck, t as createMigrationCheckCommand } from "../migration-check-DMxPzbHl.mjs";
1
+ import { n as enumerateCheckSpaces, r as runMigrationCheck, t as createMigrationCheckCommand } from "../migration-check-C_4gozCn.mjs";
2
2
  import { t as migrationCheckResultSchema } from "../schemas-KhXMzNA_.mjs";
3
3
  export { createMigrationCheckCommand, enumerateCheckSpaces, migrationCheckResultSchema, runMigrationCheck };
@@ -1,7 +1,7 @@
1
1
  import { A as formatStyledHeader, _ as createTerminalUI, d as setCommandSeeAlso, g as parseGlobalFlagsOrExit, l as setCommandDescriptions, s as resolveMigrationPaths, t as addGlobalOptions, u as setCommandExamples, y as handleResult } from "../command-helpers-CVn3U9Uz.mjs";
2
2
  import { n as buildReadAggregate } from "../contract-space-aggregate-loader-hPVymNLw.mjs";
3
- import { a as renderMigrationGraphLegend, f as indentMigrationGraphTreeBlock, l as computeGlobalMaxDirNameWidth, p as renderMigrationGraphSpaceTree, u as computeGlobalMaxEdgeTreePrefixWidth } from "../migration-graph-command-render-B83xrnNy.mjs";
4
- import { c as validateLegendOptions, i as migrationSpaceListEntriesFromAggregate, o as runMigrationList, r as listRefsByContractHash, s as shouldShowLegend } from "../migration-list-cnSKilYH.mjs";
3
+ import { a as renderMigrationGraphLegend, f as indentMigrationGraphTreeBlock, l as computeGlobalMaxDirNameWidth, p as renderMigrationGraphSpaceTree, u as computeGlobalMaxEdgeTreePrefixWidth } from "../migration-graph-command-render-DgQg5App.mjs";
4
+ import { c as validateLegendOptions, i as migrationSpaceListEntriesFromAggregate, o as runMigrationList, r as listRefsByContractHash, s as shouldShowLegend } from "../migration-list-BwEwRv25.mjs";
5
5
  import { Command } from "commander";
6
6
  import { loadConfig } from "@prisma-next/config-loader";
7
7
  import { ifDefined } from "@prisma-next/utils/defined";
@@ -1,2 +1,2 @@
1
- import { a as renderMigrationListHumanOutput, i as migrationSpaceListEntriesFromAggregate, n as executeMigrationListCommand, o as runMigrationList, r as listRefsByContractHash, t as createMigrationListCommand } from "../migration-list-cnSKilYH.mjs";
1
+ import { a as renderMigrationListHumanOutput, i as migrationSpaceListEntriesFromAggregate, n as executeMigrationListCommand, o as runMigrationList, r as listRefsByContractHash, t as createMigrationListCommand } from "../migration-list-BwEwRv25.mjs";
2
2
  export { createMigrationListCommand, executeMigrationListCommand, listRefsByContractHash, migrationSpaceListEntriesFromAggregate, renderMigrationListHumanOutput, runMigrationList };
@@ -1,2 +1,2 @@
1
- import { n as executeMigrationLogCommand, t as createMigrationLogCommand } from "../migration-log-CGfn5C_I.mjs";
1
+ import { n as executeMigrationLogCommand, t as createMigrationLogCommand } from "../migration-log-C3RMIsUI.mjs";
2
2
  export { createMigrationLogCommand, executeMigrationLogCommand };
@@ -130,7 +130,7 @@ async function executeMigrationNewCommand(options) {
130
130
  function createMigrationNewCommand() {
131
131
  const command = new Command("new");
132
132
  setCommandDescriptions(command, "Scaffold a new migration for manual authoring", "Creates a migration package with a migration.ts file for manual authoring.\nWrite the migration body in migration.ts, then run the file with Node\n(`node migration.ts`) to self-emit ops.json and attest the package.");
133
- setCommandExamples(command, ["prisma-next migration new --name split-name", "prisma-next migration new --name custom-fk --from sha256:abc..."]);
133
+ setCommandExamples(command, ["prisma-next migration new --name split-name", "prisma-next migration new --name custom-fk --from abc123..."]);
134
134
  addGlobalOptions(command).option("--name <slug>", "Migration name (used in directory name)").option("--from <hash>", "Starting contract hash (default: latest migration target)").option("--config <path>", "Path to prisma-next.config.ts").action(async (options) => {
135
135
  const flags = parseGlobalFlagsOrExit(options);
136
136
  const ui = createTerminalUI(flags);
@@ -1 +1 @@
1
- {"version":3,"file":"migration-new.mjs","names":[],"sources":["../../src/commands/migration-new.ts"],"sourcesContent":["/**\n * `migration new` — scaffolds a migration package with a `migration.ts` file\n * for manual authoring.\n *\n * The planner's `emptyMigration(context)` returns a\n * `MigrationPlanWithAuthoringSurface`, whose `renderTypeScript()` produces\n * the target-appropriate empty stub. The CLI writes the returned source\n * verbatim.\n */\n\nimport { readFile } from 'node:fs/promises';\nimport { loadConfig } from '@prisma-next/config-loader';\nimport type { Contract } from '@prisma-next/contract/types';\nimport { getEmittedArtifactPaths } from '@prisma-next/emitter';\nimport { APP_SPACE_ID, createControlStack } from '@prisma-next/framework-components/control';\nimport { loadContractSpaceAggregate } from '@prisma-next/migration-tools/aggregate';\nimport {\n contractSnapshotDir,\n snapshotsImportPathFrom,\n writeContractSnapshot,\n} from '@prisma-next/migration-tools/contract-snapshot-store';\nimport { computeMigrationHash } from '@prisma-next/migration-tools/hash';\nimport { formatMigrationDirName, writeMigrationPackage } from '@prisma-next/migration-tools/io';\nimport type { MigrationMetadata } from '@prisma-next/migration-tools/metadata';\nimport { findLatestMigration } from '@prisma-next/migration-tools/migration-graph';\nimport { writeMigrationTs } from '@prisma-next/migration-tools/migration-ts';\nimport { notOk, ok, type Result } from '@prisma-next/utils/result';\nimport { Command } from 'commander';\nimport { join, relative } from 'pathe';\nimport {\n CliStructuredError,\n errorRuntime,\n errorTargetMigrationNotSupported,\n errorUnexpected,\n} from '../utils/cli-errors';\nimport {\n addGlobalOptions,\n getTargetMigrations,\n resolveContractPath,\n resolveMigrationPaths,\n setCommandDescriptions,\n setCommandExamples,\n} from '../utils/command-helpers';\nimport { refusePackageCorruptionOnAggregate } from '../utils/contract-space-aggregate-loader';\nimport { formatStyledHeader } from '../utils/formatters/styled';\nimport { assertFrameworkComponentsCompatible } from '../utils/framework-components';\nimport type { CommonCommandOptions } from '../utils/global-flags';\nimport { parseGlobalFlagsOrExit } from '../utils/global-flags';\nimport { handleResult } from '../utils/result-handler';\nimport { createTerminalUI } from '../utils/terminal-ui';\n\ninterface MigrationNewOptions extends CommonCommandOptions {\n readonly name?: string;\n readonly from?: string;\n readonly config?: string;\n}\n\ninterface MigrationNewResult {\n readonly ok: true;\n readonly dir: string;\n readonly from: string | null;\n readonly to: string;\n readonly summary: string;\n}\n\nasync function executeMigrationNewCommand(\n options: MigrationNewOptions,\n): Promise<Result<MigrationNewResult, CliStructuredError>> {\n const config = await loadConfig(options.config);\n const { migrationsDir, appMigrationsDir, appMigrationsRelative } = resolveMigrationPaths(\n options.config,\n config,\n );\n\n // Construct the family instance up-front so the on-disk contract read\n // below crosses the serializer seam (`familyInstance.deserializeContract`)\n // at the read site, not somewhere downstream. See TML-2536.\n const stack = createControlStack(config);\n const familyInstance = config.family.create(stack);\n const controlAdapter = config.adapter.create(stack);\n\n const contractPathAbsolute = resolveContractPath(config);\n\n let contractJsonContent: string;\n try {\n contractJsonContent = await readFile(contractPathAbsolute, 'utf-8');\n } catch (error) {\n if (error instanceof Error && (error as { code?: string }).code === 'ENOENT') {\n return notOk(\n errorRuntime(`Contract file not found at ${contractPathAbsolute}`, {\n why: `Contract file not found at ${contractPathAbsolute}`,\n fix: 'Run `prisma-next contract emit` first to generate the contract',\n }),\n );\n }\n throw error;\n }\n\n let toContract: Contract;\n try {\n const parsedContract: unknown = JSON.parse(contractJsonContent);\n toContract = familyInstance.deserializeContract(parsedContract);\n } catch (error) {\n return notOk(\n errorRuntime('Contract JSON is invalid', {\n why: `Failed to deserialize ${contractPathAbsolute}: ${error instanceof Error ? error.message : String(error)}`,\n fix: 'Run `prisma-next contract emit` to regenerate the contract',\n }),\n );\n }\n\n const toStorageHash = toContract.storage?.storageHash;\n if (typeof toStorageHash !== 'string') {\n return notOk(\n errorRuntime('Contract is missing storageHash', {\n why: `Contract at ${contractPathAbsolute} has no storageHash`,\n fix: 'Run `prisma-next contract emit` to regenerate the contract',\n }),\n );\n }\n\n const aggregate = await loadContractSpaceAggregate({\n migrationsDir,\n deserializeContract: (json) => familyInstance.deserializeContract(json),\n appContract: toContract,\n });\n const packageCorruptionFailure = refusePackageCorruptionOnAggregate(aggregate);\n if (packageCorruptionFailure) {\n return notOk(packageCorruptionFailure);\n }\n\n const packages = aggregate.app.packages;\n const graph = aggregate.app.graph();\n\n let fromHash: string | null = null;\n\n if (packages.length > 0) {\n if (options.from) {\n const match = packages.find((p) => p.metadata.to.startsWith(options.from!));\n if (!match) {\n return notOk(\n errorRuntime('Starting contract not found', {\n why: `No migration with to hash matching \"${options.from}\" exists in ${appMigrationsRelative}`,\n fix: 'Check that the --from hash matches a known migration target hash.',\n }),\n );\n }\n fromHash = match.metadata.to;\n } else {\n const latestMigration = findLatestMigration(graph);\n if (latestMigration) {\n fromHash = latestMigration.to;\n }\n }\n }\n\n if (fromHash === toStorageHash && !options.from) {\n return notOk(\n errorRuntime('No changes detected', {\n why: 'The from and to contract hashes are identical — there is nothing to migrate.',\n fix: 'Change the contract and run `prisma-next contract emit` before creating a new migration. To author a data-only migration on the current contract hash, pass `--from <hash>` explicitly.',\n }),\n );\n }\n\n const timestamp = new Date();\n const slug = options.name ?? 'migration';\n const dirName = formatMigrationDirName(timestamp, slug);\n const packageDir = join(appMigrationsDir, dirName);\n\n // `migration new` scaffolds an empty `migration.ts` for the user to\n // fill, so we attest over `ops: []`. Re-running self-emit after the\n // user adds operations will produce a different `migrationHash` (over\n // the real ops). This is intentional — there is no on-disk draft.\n const baseMetadata: Omit<MigrationMetadata, 'migrationHash'> = {\n from: fromHash,\n to: toStorageHash,\n providedInvariants: [],\n createdAt: timestamp.toISOString(),\n };\n const metadata: MigrationMetadata = {\n ...baseMetadata,\n migrationHash: computeMigrationHash(baseMetadata, []),\n };\n\n const migrations = getTargetMigrations(config.target);\n if (!migrations) {\n return notOk(\n errorTargetMigrationNotSupported({\n why: `Target \"${config.target.targetId}\" does not support migrations`,\n }),\n );\n }\n\n try {\n assertFrameworkComponentsCompatible(config.family.familyId, config.target.targetId, [\n config.target,\n config.adapter,\n ...(config.extensionPacks ?? []),\n ]);\n\n await writeMigrationPackage(packageDir, metadata, []);\n const destinationArtifacts = getEmittedArtifactPaths(contractPathAbsolute);\n const [contractJsonRaw, contractDts] = await Promise.all([\n readFile(destinationArtifacts.jsonPath, 'utf-8'),\n readFile(destinationArtifacts.dtsPath, 'utf-8'),\n ]);\n await writeContractSnapshot(migrationsDir, toStorageHash, {\n contractJson: JSON.parse(contractJsonRaw) as unknown,\n contractDts,\n });\n\n const planner = migrations.createPlanner(controlAdapter);\n const emptyPlan = planner.emptyMigration(\n {\n packageDir,\n contractJsonPath: join(contractSnapshotDir(migrationsDir, toStorageHash), 'contract.json'),\n fromHash,\n toHash: toStorageHash,\n snapshotsImportPath: snapshotsImportPathFrom(packageDir, migrationsDir),\n },\n APP_SPACE_ID,\n );\n await writeMigrationTs(packageDir, emptyPlan.renderTypeScript());\n\n return ok({\n ok: true as const,\n dir: relative(process.cwd(), packageDir),\n from: fromHash,\n to: toStorageHash,\n summary: `Scaffolded migration at ${relative(process.cwd(), packageDir)}`,\n });\n } catch (error) {\n if (CliStructuredError.is(error)) {\n return notOk(error);\n }\n return notOk(\n errorUnexpected(error instanceof Error ? error.message : String(error), {\n why: `Failed to scaffold migration: ${error instanceof Error ? error.message : String(error)}`,\n }),\n );\n }\n}\n\nexport function createMigrationNewCommand(): Command {\n const command = new Command('new');\n setCommandDescriptions(\n command,\n 'Scaffold a new migration for manual authoring',\n 'Creates a migration package with a migration.ts file for manual authoring.\\n' +\n 'Write the migration body in migration.ts, then run the file with Node\\n' +\n '(`node migration.ts`) to self-emit ops.json and attest the package.',\n );\n setCommandExamples(command, [\n 'prisma-next migration new --name split-name',\n 'prisma-next migration new --name custom-fk --from sha256:abc...',\n ]);\n addGlobalOptions(command)\n .option('--name <slug>', 'Migration name (used in directory name)')\n .option('--from <hash>', 'Starting contract hash (default: latest migration target)')\n .option('--config <path>', 'Path to prisma-next.config.ts')\n .action(async (options: MigrationNewOptions) => {\n const flags = parseGlobalFlagsOrExit(options);\n const ui = createTerminalUI(flags);\n\n if (!flags.json && !flags.quiet) {\n const header = formatStyledHeader({\n command: 'migration new',\n description: 'Scaffold a new migration',\n details: [],\n flags,\n });\n ui.stderr(header);\n }\n\n const result = await executeMigrationNewCommand(options);\n\n const exitCode = handleResult(result, flags, ui, (value) => {\n if (flags.json) {\n ui.output(JSON.stringify(value, null, 2));\n } else if (!flags.quiet) {\n ui.output(`\\nScaffolded migration at ${value.dir}`);\n ui.output(` from: ${value.from}`);\n ui.output(` to: ${value.to}`);\n ui.output(\n `\\nEdit migration.ts, then run it directly (\\`node \"${value.dir}/migration.ts\"\\`) to self-emit and attest.`,\n );\n }\n });\n\n process.exit(exitCode);\n });\n\n return command;\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"migration-new.mjs","names":[],"sources":["../../src/commands/migration-new.ts"],"sourcesContent":["/**\n * `migration new` — scaffolds a migration package with a `migration.ts` file\n * for manual authoring.\n *\n * The planner's `emptyMigration(context)` returns a\n * `MigrationPlanWithAuthoringSurface`, whose `renderTypeScript()` produces\n * the target-appropriate empty stub. The CLI writes the returned source\n * verbatim.\n */\n\nimport { readFile } from 'node:fs/promises';\nimport { loadConfig } from '@prisma-next/config-loader';\nimport type { Contract } from '@prisma-next/contract/types';\nimport { getEmittedArtifactPaths } from '@prisma-next/emitter';\nimport { APP_SPACE_ID, createControlStack } from '@prisma-next/framework-components/control';\nimport { loadContractSpaceAggregate } from '@prisma-next/migration-tools/aggregate';\nimport {\n contractSnapshotDir,\n snapshotsImportPathFrom,\n writeContractSnapshot,\n} from '@prisma-next/migration-tools/contract-snapshot-store';\nimport { computeMigrationHash } from '@prisma-next/migration-tools/hash';\nimport { formatMigrationDirName, writeMigrationPackage } from '@prisma-next/migration-tools/io';\nimport type { MigrationMetadata } from '@prisma-next/migration-tools/metadata';\nimport { findLatestMigration } from '@prisma-next/migration-tools/migration-graph';\nimport { writeMigrationTs } from '@prisma-next/migration-tools/migration-ts';\nimport { notOk, ok, type Result } from '@prisma-next/utils/result';\nimport { Command } from 'commander';\nimport { join, relative } from 'pathe';\nimport {\n CliStructuredError,\n errorRuntime,\n errorTargetMigrationNotSupported,\n errorUnexpected,\n} from '../utils/cli-errors';\nimport {\n addGlobalOptions,\n getTargetMigrations,\n resolveContractPath,\n resolveMigrationPaths,\n setCommandDescriptions,\n setCommandExamples,\n} from '../utils/command-helpers';\nimport { refusePackageCorruptionOnAggregate } from '../utils/contract-space-aggregate-loader';\nimport { formatStyledHeader } from '../utils/formatters/styled';\nimport { assertFrameworkComponentsCompatible } from '../utils/framework-components';\nimport type { CommonCommandOptions } from '../utils/global-flags';\nimport { parseGlobalFlagsOrExit } from '../utils/global-flags';\nimport { handleResult } from '../utils/result-handler';\nimport { createTerminalUI } from '../utils/terminal-ui';\n\ninterface MigrationNewOptions extends CommonCommandOptions {\n readonly name?: string;\n readonly from?: string;\n readonly config?: string;\n}\n\ninterface MigrationNewResult {\n readonly ok: true;\n readonly dir: string;\n readonly from: string | null;\n readonly to: string;\n readonly summary: string;\n}\n\nasync function executeMigrationNewCommand(\n options: MigrationNewOptions,\n): Promise<Result<MigrationNewResult, CliStructuredError>> {\n const config = await loadConfig(options.config);\n const { migrationsDir, appMigrationsDir, appMigrationsRelative } = resolveMigrationPaths(\n options.config,\n config,\n );\n\n // Construct the family instance up-front so the on-disk contract read\n // below crosses the serializer seam (`familyInstance.deserializeContract`)\n // at the read site, not somewhere downstream. See TML-2536.\n const stack = createControlStack(config);\n const familyInstance = config.family.create(stack);\n const controlAdapter = config.adapter.create(stack);\n\n const contractPathAbsolute = resolveContractPath(config);\n\n let contractJsonContent: string;\n try {\n contractJsonContent = await readFile(contractPathAbsolute, 'utf-8');\n } catch (error) {\n if (error instanceof Error && (error as { code?: string }).code === 'ENOENT') {\n return notOk(\n errorRuntime(`Contract file not found at ${contractPathAbsolute}`, {\n why: `Contract file not found at ${contractPathAbsolute}`,\n fix: 'Run `prisma-next contract emit` first to generate the contract',\n }),\n );\n }\n throw error;\n }\n\n let toContract: Contract;\n try {\n const parsedContract: unknown = JSON.parse(contractJsonContent);\n toContract = familyInstance.deserializeContract(parsedContract);\n } catch (error) {\n return notOk(\n errorRuntime('Contract JSON is invalid', {\n why: `Failed to deserialize ${contractPathAbsolute}: ${error instanceof Error ? error.message : String(error)}`,\n fix: 'Run `prisma-next contract emit` to regenerate the contract',\n }),\n );\n }\n\n const toStorageHash = toContract.storage?.storageHash;\n if (typeof toStorageHash !== 'string') {\n return notOk(\n errorRuntime('Contract is missing storageHash', {\n why: `Contract at ${contractPathAbsolute} has no storageHash`,\n fix: 'Run `prisma-next contract emit` to regenerate the contract',\n }),\n );\n }\n\n const aggregate = await loadContractSpaceAggregate({\n migrationsDir,\n deserializeContract: (json) => familyInstance.deserializeContract(json),\n appContract: toContract,\n });\n const packageCorruptionFailure = refusePackageCorruptionOnAggregate(aggregate);\n if (packageCorruptionFailure) {\n return notOk(packageCorruptionFailure);\n }\n\n const packages = aggregate.app.packages;\n const graph = aggregate.app.graph();\n\n let fromHash: string | null = null;\n\n if (packages.length > 0) {\n if (options.from) {\n const match = packages.find((p) => p.metadata.to.startsWith(options.from!));\n if (!match) {\n return notOk(\n errorRuntime('Starting contract not found', {\n why: `No migration with to hash matching \"${options.from}\" exists in ${appMigrationsRelative}`,\n fix: 'Check that the --from hash matches a known migration target hash.',\n }),\n );\n }\n fromHash = match.metadata.to;\n } else {\n const latestMigration = findLatestMigration(graph);\n if (latestMigration) {\n fromHash = latestMigration.to;\n }\n }\n }\n\n if (fromHash === toStorageHash && !options.from) {\n return notOk(\n errorRuntime('No changes detected', {\n why: 'The from and to contract hashes are identical — there is nothing to migrate.',\n fix: 'Change the contract and run `prisma-next contract emit` before creating a new migration. To author a data-only migration on the current contract hash, pass `--from <hash>` explicitly.',\n }),\n );\n }\n\n const timestamp = new Date();\n const slug = options.name ?? 'migration';\n const dirName = formatMigrationDirName(timestamp, slug);\n const packageDir = join(appMigrationsDir, dirName);\n\n // `migration new` scaffolds an empty `migration.ts` for the user to\n // fill, so we attest over `ops: []`. Re-running self-emit after the\n // user adds operations will produce a different `migrationHash` (over\n // the real ops). This is intentional — there is no on-disk draft.\n const baseMetadata: Omit<MigrationMetadata, 'migrationHash'> = {\n from: fromHash,\n to: toStorageHash,\n providedInvariants: [],\n createdAt: timestamp.toISOString(),\n };\n const metadata: MigrationMetadata = {\n ...baseMetadata,\n migrationHash: computeMigrationHash(baseMetadata, []),\n };\n\n const migrations = getTargetMigrations(config.target);\n if (!migrations) {\n return notOk(\n errorTargetMigrationNotSupported({\n why: `Target \"${config.target.targetId}\" does not support migrations`,\n }),\n );\n }\n\n try {\n assertFrameworkComponentsCompatible(config.family.familyId, config.target.targetId, [\n config.target,\n config.adapter,\n ...(config.extensionPacks ?? []),\n ]);\n\n await writeMigrationPackage(packageDir, metadata, []);\n const destinationArtifacts = getEmittedArtifactPaths(contractPathAbsolute);\n const [contractJsonRaw, contractDts] = await Promise.all([\n readFile(destinationArtifacts.jsonPath, 'utf-8'),\n readFile(destinationArtifacts.dtsPath, 'utf-8'),\n ]);\n await writeContractSnapshot(migrationsDir, toStorageHash, {\n contractJson: JSON.parse(contractJsonRaw) as unknown,\n contractDts,\n });\n\n const planner = migrations.createPlanner(controlAdapter);\n const emptyPlan = planner.emptyMigration(\n {\n packageDir,\n contractJsonPath: join(contractSnapshotDir(migrationsDir, toStorageHash), 'contract.json'),\n fromHash,\n toHash: toStorageHash,\n snapshotsImportPath: snapshotsImportPathFrom(packageDir, migrationsDir),\n },\n APP_SPACE_ID,\n );\n await writeMigrationTs(packageDir, emptyPlan.renderTypeScript());\n\n return ok({\n ok: true as const,\n dir: relative(process.cwd(), packageDir),\n from: fromHash,\n to: toStorageHash,\n summary: `Scaffolded migration at ${relative(process.cwd(), packageDir)}`,\n });\n } catch (error) {\n if (CliStructuredError.is(error)) {\n return notOk(error);\n }\n return notOk(\n errorUnexpected(error instanceof Error ? error.message : String(error), {\n why: `Failed to scaffold migration: ${error instanceof Error ? error.message : String(error)}`,\n }),\n );\n }\n}\n\nexport function createMigrationNewCommand(): Command {\n const command = new Command('new');\n setCommandDescriptions(\n command,\n 'Scaffold a new migration for manual authoring',\n 'Creates a migration package with a migration.ts file for manual authoring.\\n' +\n 'Write the migration body in migration.ts, then run the file with Node\\n' +\n '(`node migration.ts`) to self-emit ops.json and attest the package.',\n );\n setCommandExamples(command, [\n 'prisma-next migration new --name split-name',\n 'prisma-next migration new --name custom-fk --from abc123...',\n ]);\n addGlobalOptions(command)\n .option('--name <slug>', 'Migration name (used in directory name)')\n .option('--from <hash>', 'Starting contract hash (default: latest migration target)')\n .option('--config <path>', 'Path to prisma-next.config.ts')\n .action(async (options: MigrationNewOptions) => {\n const flags = parseGlobalFlagsOrExit(options);\n const ui = createTerminalUI(flags);\n\n if (!flags.json && !flags.quiet) {\n const header = formatStyledHeader({\n command: 'migration new',\n description: 'Scaffold a new migration',\n details: [],\n flags,\n });\n ui.stderr(header);\n }\n\n const result = await executeMigrationNewCommand(options);\n\n const exitCode = handleResult(result, flags, ui, (value) => {\n if (flags.json) {\n ui.output(JSON.stringify(value, null, 2));\n } else if (!flags.quiet) {\n ui.output(`\\nScaffolded migration at ${value.dir}`);\n ui.output(` from: ${value.from}`);\n ui.output(` to: ${value.to}`);\n ui.output(\n `\\nEdit migration.ts, then run it directly (\\`node \"${value.dir}/migration.ts\"\\`) to self-emit and attest.`,\n );\n }\n });\n\n process.exit(exitCode);\n });\n\n return command;\n}\n"],"mappings":"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"}
@@ -62,10 +62,9 @@ type PrefixResolutionFailure = {
62
62
  *
63
63
  * Note: matches `metadata.to` (the contract hash this migration produces),
64
64
  * not `metadata.migrationHash` (the package's content-addressed identity).
65
- * Tries exact match first, then prefix match (auto-prepending `sha256:` when
66
- * the needle omits the scheme). Returns the matched package on success, or a
67
- * discriminated failure indicating whether the prefix was ambiguous or simply
68
- * not found.
65
+ * Tries exact match first, then prefix match. Returns the matched package on
66
+ * success, or a discriminated failure indicating whether the prefix was
67
+ * ambiguous or simply not found.
69
68
  *
70
69
  * @internal Exported for testing only.
71
70
  */
@@ -1 +1 @@
1
- {"version":3,"file":"migration-plan.d.mts","names":[],"sources":["../../src/commands/migration-plan.ts"],"mappings":";;;;;UAgKiB;WACN;WACA;WACA;WACA;WACA;WACA;;;;;;;;;;;;;WAaA;aAA0C;aAA0B;;WACpE;aACE;aACA;aACA;;;;;;;WAOF,UAAU;WACV;;;;;;WAMA;WACA;aACE;;;iBAmgBG,8BAA8B;iBA+E9B,0BAA0B,QAAQ,qBAAqB,OAAO;KAkIlE;EACN;EAAqB;;EACrB;;;;;;;;;;;;;;;iBAeU,sBAAsB;EAAY;IAAY;;GAC5D,kBAAkB,KAClB,iBACC,OAAO,GAAG"}
1
+ {"version":3,"file":"migration-plan.d.mts","names":[],"sources":["../../src/commands/migration-plan.ts"],"mappings":";;;;;UAgKiB;WACN;WACA;WACA;WACA;WACA;WACA;;;;;;;;;;;;;WAaA;aAA0C;aAA0B;;WACpE;aACE;aACA;aACA;;;;;;;WAOF,UAAU;WACV;;;;;;WAMA;WACA;aACE;;;iBAmgBG,8BAA8B;iBA+E9B,0BAA0B,QAAQ,qBAAqB,OAAO;KAkIlE;EACN;EAAqB;;EACrB;;;;;;;;;;;;;;iBAcU,sBAAsB;EAAY;IAAY;;GAC5D,kBAAkB,KAClB,iBACC,OAAO,GAAG"}
@@ -1,2 +1,2 @@
1
- import { n as formatMigrationPlanOutput, r as resolveBundleByPrefix, t as createMigrationPlanCommand } from "../migration-plan-BJHulFZC.mjs";
1
+ import { n as formatMigrationPlanOutput, r as resolveBundleByPrefix, t as createMigrationPlanCommand } from "../migration-plan-BzxmK_do.mjs";
2
2
  export { createMigrationPlanCommand, formatMigrationPlanOutput, resolveBundleByPrefix };
@@ -133,7 +133,7 @@ function createMigrationShowCommand() {
133
133
  setCommandDescriptions(command, "Display migration package contents", "Shows the operations, statement preview, and metadata for one app-space migration.\nAccepts a directory path, directory name, or hash prefix.\nOffline — does not consult the database.");
134
134
  setCommandExamples(command, [
135
135
  "prisma-next migration show 20260101_100000_add_user",
136
- "prisma-next migration show sha256:a1b2c3",
136
+ "prisma-next migration show a1b2c3",
137
137
  "prisma-next migration show 20260101_100000_add_user --json"
138
138
  ]);
139
139
  setCommandSeeAlso(command, [