@prisma/composer-cli 0.11.0 → 0.12.0

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 (27) hide show
  1. package/dist/bin.mjs +183 -175
  2. package/dist/bin.mjs.map +1 -1
  3. package/dist/{execute-deploy-destroy-DJ3BlpgU-DpcJjxvk.mjs → execute-deploy-destroy-Bsdh8hf4-BVXNSBmy.mjs} +4 -3
  4. package/dist/{execute-deploy-destroy-DJ3BlpgU-BCTSVylF.mjs.map → execute-deploy-destroy-Bsdh8hf4-BVXNSBmy.mjs.map} +1 -1
  5. package/dist/{execute-deploy-destroy-DJ3BlpgU-BCTSVylF.mjs → execute-deploy-destroy-Bsdh8hf4-CZVPrQtx.mjs} +4 -3
  6. package/dist/{execute-deploy-destroy-DJ3BlpgU-DpcJjxvk.mjs.map → execute-deploy-destroy-Bsdh8hf4-CZVPrQtx.mjs.map} +1 -1
  7. package/dist/{execute-dev-CQ0Lo2eN-DBThEMBv.mjs → execute-dev-CQ0Lo2eN-DxMcOjxh.mjs} +2 -2
  8. package/dist/{execute-dev-CQ0Lo2eN-DBThEMBv.mjs.map → execute-dev-CQ0Lo2eN-DxMcOjxh.mjs.map} +1 -1
  9. package/dist/{execute-dev-CQ0Lo2eN-BBNilsxZ.mjs → execute-dev-CQ0Lo2eN-WebHkuDn.mjs} +2 -2
  10. package/dist/{execute-dev-CQ0Lo2eN-BBNilsxZ.mjs.map → execute-dev-CQ0Lo2eN-WebHkuDn.mjs.map} +1 -1
  11. package/dist/{execute-log-CUzTOzSj-31WISHGD.mjs → execute-log-CUzTOzSj-BndClj6B.mjs} +2 -2
  12. package/dist/{execute-log-CUzTOzSj-31WISHGD.mjs.map → execute-log-CUzTOzSj-BndClj6B.mjs.map} +1 -1
  13. package/dist/{execute-log-CUzTOzSj-ERhhGgwJ.mjs → execute-log-CUzTOzSj-DPxnEKA2.mjs} +2 -2
  14. package/dist/{execute-log-CUzTOzSj-ERhhGgwJ.mjs.map → execute-log-CUzTOzSj-DPxnEKA2.mjs.map} +1 -1
  15. package/dist/{family-BqgXAnt0-BilZvb88.d.mts → family-BqgXAnt0-CU2L1I6j.d.mts} +50 -3
  16. package/dist/{family-BqgXAnt0-BilZvb88.d.mts.map → family-BqgXAnt0-CU2L1I6j.d.mts.map} +1 -1
  17. package/dist/family.d.mts +1 -1
  18. package/dist/family.mjs +182 -174
  19. package/dist/family.mjs.map +1 -1
  20. package/dist/{pipeline-Bt8QocRh-BWGl-fzK.mjs → pipeline-Bt8QocRh-BGjwJqNH.mjs} +138 -10
  21. package/dist/pipeline-Bt8QocRh-BGjwJqNH.mjs.map +1 -0
  22. package/dist/{pipeline-Bt8QocRh-DWh8gbfz.mjs → pipeline-Bt8QocRh-B_yOh-0h.mjs} +138 -10
  23. package/dist/pipeline-Bt8QocRh-B_yOh-0h.mjs.map +1 -0
  24. package/dist/testing.d.mts +1 -1
  25. package/package.json +6 -6
  26. package/dist/pipeline-Bt8QocRh-BWGl-fzK.mjs.map +0 -1
  27. package/dist/pipeline-Bt8QocRh-DWh8gbfz.mjs.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"family.mjs","names":["notOk","CliStructuredError$1"],"sources":["../../../0-framework/3-tooling/cli/dist/log-WOf7R2HN.mjs","../../../0-framework/3-tooling/cli/dist/engine-cli-CMw8Uug4.mjs"],"sourcesContent":["import { n as executorLoadFailure } from \"./shared-BTnATsqm.mjs\";\nimport { notOk } from \"@internal/foundation/result\";\n//#region src/operations/deploy.ts\nasync function deploy(input) {\n\treturn deployWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's RunDeps, unit\n* tests). Deliberately NOT re-exported through `./control` — the seam mirrors\n* internal types and is not part of the published surface. */\nasync function deployWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-deploy-destroy-DJ3BlpgU.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"deploy\", error, cwd));\n\t}\n\treturn executor.executeDeploy(input, deps, cwd);\n}\n//#endregion\n//#region src/operations/destroy.ts\nasync function destroy(input) {\n\treturn destroyWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's RunDeps, unit\n* tests). Deliberately NOT re-exported through `./control` — the seam mirrors\n* internal types and is not part of the published surface. */\nasync function destroyWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-deploy-destroy-DJ3BlpgU.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"destroy\", error, cwd));\n\t}\n\treturn executor.executeDestroy(input, deps, cwd);\n}\n//#endregion\n//#region src/operations/dev.ts\nasync function dev(input) {\n\treturn devWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's RunDeps, unit\n* tests). Deliberately NOT re-exported through `./control` — the seam mirrors\n* internal types and is not part of the published surface. */\nasync function devWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-dev-CQ0Lo2eN.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"dev\", error, cwd));\n\t}\n\treturn executor.executeDev(input, deps, cwd);\n}\n//#endregion\n//#region src/operations/log.ts\nasync function log(input) {\n\treturn logWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's LogRunDeps,\n* unit tests). Deliberately NOT re-exported through `./control` — the seam\n* mirrors internal types and is not part of the published surface. */\nasync function logWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-log-CUzTOzSj.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"log\", error, cwd));\n\t}\n\treturn executor.executeLog(input, deps, cwd);\n}\n//#endregion\nexport { destroy as a, deployWithDeps as c, devWithDeps as i, logWithDeps as n, destroyWithDeps as o, dev as r, deploy as s, log as t };\n\n//# sourceMappingURL=log-WOf7R2HN.mjs.map","import { t as executionDiagnostics } from \"./shared-BTnATsqm.mjs\";\nimport { c as deployWithDeps, i as devWithDeps, n as logWithDeps, o as destroyWithDeps } from \"./log-WOf7R2HN.mjs\";\nimport { t as alchemyCommandLine } from \"./run-alchemy--ZIvgqyU.mjs\";\nimport { DOCS_BASE } from \"@internal/foundation/errors\";\nimport { EnvironmentCredentialManager, createCli, defineCommand, defineCommandFamily, defineConfigSection, defineSessionCommand, exitWithChildStatus, flag, loadConfig, positional } from \"@prisma/cli-engine\";\nimport { CliStructuredError as CliStructuredError$1, notOk, ok } from \"@prisma/cli-engine/protocol\";\nimport { spawn } from \"node:child_process\";\n//#region src/family/translate-error.ts\n/**\n* The family boundary's error translation.\n*\n* Composer and the engine each carry a class called `CliStructuredError`, both\n* descended from the same prisma/prisma foundation, and both recognize errors\n* by duck-typing on `name === 'CliStructuredError'`. That means a composer\n* error handed to the engine untranslated is ACCEPTED — it does not fail\n* loudly, it renders. What it loses is its `fix`: composer's foundation\n* carries remediation as one prose string on that field, the engine carries it\n* as a `nextActions` list and has no `fix` at all, so the fix text is dropped\n* silently and the user is told what broke with no word on what to do about\n* it. Nothing about that failure is visible without a test that looks for the\n* fix on the other side, which is why there is one.\n*\n* Everything else on the envelope survives as-is; only remediation changes\n* representation.\n*/\n/**\n* Composer's `fix` is free prose — \"add this overrides block and reinstall\",\n* \"run the build, then retry\" — with no machine-readable command inside it.\n* `user-choice` is the engine's own kind for exactly that (it is what the\n* engine uses for its own config and prompt failures), so the text carries\n* over verbatim as one action rather than being parsed into a command the\n* author never wrote.\n*/\nfunction fixAsNextActions(fix) {\n\treturn fix === void 0 ? [] : [{\n\t\tkind: \"user-choice\",\n\t\tlabel: fix\n\t}];\n}\n/** Translates a composer failure into the engine's error type. Composer-side detail — `meta`, `where`, `docsUrl` — rides along untouched. */\nfunction toEngineError(error) {\n\treturn new CliStructuredError$1(error.code, error.message, {\n\t\tseverity: error.severity,\n\t\tnextActions: fixAsNextActions(error.fix),\n\t\t...error.why === void 0 ? {} : { why: error.why },\n\t\t...error.where === void 0 ? {} : { where: error.where },\n\t\t...error.meta === void 0 ? {} : { meta: error.meta },\n\t\t...error.docsUrl === void 0 ? {} : { docsUrl: error.docsUrl },\n\t\tcause: error\n\t});\n}\n//#endregion\n//#region src/family/converge.ts\n/** The adapter the operations call, backed by the engine's `ctx.spawn` so the\n* terminal reaches alchemy natively and the engine owns signal policy. */\nfunction convergeSpawn(ctx) {\n\treturn async (invocation) => {\n\t\tconst line = alchemyCommandLine(invocation);\n\t\treturn await ctx.spawn({\n\t\t\tcommand: line.command,\n\t\t\targs: line.args,\n\t\t\tcwd: line.cwd,\n\t\t\tenv: line.env\n\t\t});\n\t};\n}\n/** The in-process leg's deps: composer's existing seam, carrying the engine's\n* own client and workspace id rather than anything read from the env. */\nfunction operationDeps(spec) {\n\treturn {\n\t\talchemy: spec.alchemy,\n\t\tconfigPath: spec.configPath,\n\t\tcredentials: {\n\t\t\tworkspaceId: spec.workspaceId,\n\t\t\tclient: spec.client\n\t\t}\n\t};\n}\n/**\n* The reproduce hint a failed converge carries. Deliberately absent for an\n* aborted one: the user stopped it, so there is nothing to reproduce.\n*/\nfunction reproduceHint(failure) {\n\tconst diagnostics = executionDiagnostics(failure);\n\tif (diagnostics === void 0) return [];\n\treturn [{\n\t\tkind: \"run-command\",\n\t\tlabel: `Run the converge directly from ${diagnostics.cwd} to reproduce this`,\n\t\tcommand: diagnostics.reproduceCommand,\n\t\treason: `Generated stack file: ${diagnostics.stackFilePath}`\n\t}];\n}\n/**\n* How a FAILED converge settles. `deploy`, `destroy` and `dev` all end this\n* way and must not drift apart, so the decision lives here once rather than\n* inline in each handler.\n*\n* A failure that reached the child exits with the child's status verbatim and\n* carries the reproduce hint; a failure that never reached the child is an\n* ordinary structured error and gets the normal envelope. Nothing here reads\n* `signal` — see settleConverge.\n*/\nfunction settleConvergeFailure(failure, ctx) {\n\tconst child = ctx.lastChild();\n\tif (child !== void 0 && child.exitCode !== 0) return ok(exitWithChildStatus({ nextActions: reproduceHint(failure) }));\n\treturn notOk(toEngineError(failure));\n}\n/**\n* How a converge settles, now that the engine owns the child's status.\n*\n* Nothing here reads `signal`. `exitWithChildStatus` settles from the engine's\n* own record of the child, and a signal-killed one overrules whatever this\n* function asked for: 128 + the signal, no failure envelope, and the reproduce\n* hint dropped, because the user stopped the run and there is nothing to\n* reproduce.\n*\n* What is left is the operation's own verdict. A failure that reached the\n* child exits with the child's status verbatim and carries the reproduce hint;\n* a failure that never reached the child is an ordinary structured error and\n* gets the normal envelope.\n*\n* A SUCCESS presents its result even when the child was signal-killed. No\n* composer operation produces that pair today — each one reports a\n* signal-killed converge as a failure — and an operation that ever did would\n* have a real result worth showing. The run still exits 130, because the\n* engine settles a signal-terminated run from its own record of the signal\n* whatever the handler returns.\n*/\nfunction settleConverge(result, ctx, present) {\n\tif (!result.ok) return settleConvergeFailure(result.failure, ctx);\n\treturn ok(present(result.value));\n}\n//#endregion\n//#region src/family/section.ts\n/**\n* Composer's projection into `prisma.config.ts` — the `composer` section.\n*\n* The section is deliberately tiny. Composer's real configuration lives in\n* `prisma-composer.config.ts`, which holds executable values (Effect layers,\n* provider factories, container lifecycles) and can only be understood by\n* evaluating it inside a running command. A config-section validator loads\n* with the command tree at start-up and must be dependency-light and total,\n* so it is the wrong place to evaluate any of that. What the section carries\n* is therefore only the one fact the engine can usefully know before a\n* command runs: WHERE that file is, when the user wants to say so.\n*\n* Its fields grow only by amending the slice contract.\n*/\nconst KNOWN_FIELDS = [\"configPath\"];\nfunction diagnostic(spec) {\n\treturn {\n\t\tcode: spec.code,\n\t\tseverity: spec.severity,\n\t\tsummary: spec.summary,\n\t\t...spec.why === void 0 ? {} : { why: spec.why },\n\t\tnextActions: spec.fix === void 0 ? [] : [{\n\t\t\tkind: \"edit-file\",\n\t\t\tlabel: spec.fix\n\t\t}]\n\t};\n}\nfunction validate(raw) {\n\tif (raw === void 0) return {\n\t\tok: true,\n\t\tvalue: {},\n\t\tdiagnostics: []\n\t};\n\tif (typeof raw !== \"object\" || raw === null || Array.isArray(raw)) return {\n\t\tok: false,\n\t\tdiagnostics: [diagnostic({\n\t\t\tcode: \"CONFIG.FIELD_INVALID\",\n\t\t\tseverity: \"error\",\n\t\t\tsummary: \"The `composer` section of prisma.config.ts must be an object.\",\n\t\t\tfix: \"Write `composer: { configPath: \\\"./prisma-composer.config.ts\\\" }`, or remove the section entirely.\"\n\t\t})]\n\t};\n\tlet record;\n\ttry {\n\t\trecord = { ...raw };\n\t} catch {\n\t\treturn {\n\t\t\tok: false,\n\t\t\tdiagnostics: [diagnostic({\n\t\t\t\tcode: \"CONFIG.FIELD_INVALID\",\n\t\t\t\tseverity: \"error\",\n\t\t\t\tsummary: \"The `composer` section of prisma.config.ts could not be read.\",\n\t\t\t\twhy: \"Reading its fields threw, so nothing in it can be trusted.\",\n\t\t\t\tfix: \"Write it as a plain object literal, e.g. `composer: { configPath: \\\"./prisma-composer.config.ts\\\" }`.\"\n\t\t\t})]\n\t\t};\n\t}\n\tconst configPath = record[\"configPath\"];\n\tif (configPath !== void 0 && (typeof configPath !== \"string\" || configPath.length === 0)) return {\n\t\tok: false,\n\t\tdiagnostics: [diagnostic({\n\t\t\tcode: \"CONFIG.FIELD_INVALID\",\n\t\t\tseverity: \"error\",\n\t\t\tsummary: \"`composer.configPath` must be a non-empty string.\",\n\t\t\twhy: \"It names the prisma-composer.config.ts file to load.\",\n\t\t\tfix: \"Set it to a path, or remove it to search upward from the entry.\"\n\t\t})]\n\t};\n\tconst unknown = Object.keys(record).filter((key) => !KNOWN_FIELDS.includes(key));\n\treturn {\n\t\tok: true,\n\t\tvalue: configPath === void 0 ? {} : { configPath },\n\t\tdiagnostics: unknown.map((key) => diagnostic({\n\t\t\tcode: \"CONFIG.FIELD_UNKNOWN\",\n\t\t\tseverity: \"warn\",\n\t\t\tsummary: `The \\`composer\\` section has no field \\`${key}\\`; it is ignored.`,\n\t\t\tfix: `Remove \\`${key}\\`, or check it against the version of @prisma/composer you have installed.`\n\t\t}))\n\t};\n}\nconst composerSection = defineConfigSection({\n\tname: \"composer\",\n\tvalidate\n});\n//#endregion\n//#region src/family/workspace.ts\n/**\n* The workspace the in-process leg acts in, from the engine's credential\n* read. Handlers never decode a token and never read PRISMA_WORKSPACE_ID:\n* whether the credential came from a stored session or the environment, the\n* engine has already resolved it, and branching on where it came from is a\n* defect by the credential-manager design.\n*\n* Undefined when the active credential names no workspace — an environment\n* token whose claims carry none. The container descriptors raise their own\n* \"workspace required\" error in that case, which is the error the user needs.\n*/\nasync function workspaceIdOf(ctx) {\n\treturn (await ctx.activeCredential())?.workspaceId;\n}\n//#endregion\n//#region src/family/commands/deploy.ts\n/**\n* `deploy <entry>` — a result command that hands the terminal to alchemy.\n*\n* `--production` is gone. It was accepted and then always errored (\"only\n* valid with destroy\"), so no invocation using it could ever have succeeded;\n* deploy targets production by default when no `--stage` is given.\n*/\nconst createDeployCommand = (operations) => defineCommand({\n\thelp: {\n\t\tsummary: \"Deploy the application whose root node is <entry>'s default export.\",\n\t\texamples: [\"{bin} deploy src/service.ts\", \"{bin} deploy src/service.ts --stage feat-auth\"]\n\t},\n\targs: {\n\t\tpositionals: { entry: positional.string({\n\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\tplaceholder: \"entry\"\n\t\t}) },\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the deploy's application name.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\tstage: flag.string({\n\t\t\t\tbrief: \"Deploy scope to target; omit for production.\",\n\t\t\t\tplaceholder: \"stage\"\n\t\t\t}),\n\t\t\treport: flag.string({\n\t\t\t\tbrief: \"Write the deploy's outcome as JSON to this path — resources, preview URLs, and the failure cause. Also settable as PRISMA_COMPOSER_REPORT_FILE.\",\n\t\t\t\tplaceholder: \"path\"\n\t\t\t}),\n\t\t\tbuildId: flag.string({\n\t\t\t\tbrief: \"Join the deploy record your CI already created rather than letting the target create one. Each target also reads its own environment variable for this; the flag wins.\",\n\t\t\t\tplaceholder: \"id\"\n\t\t\t})\n\t\t}\n\t},\n\tneeds: {\n\t\tconfig: composerSection,\n\t\tcredentials: \"child\"\n\t},\n\tmaySpawn: true,\n\thandler: async (args, ctx) => {\n\t\tconst alchemy = convergeSpawn(ctx);\n\t\treturn settleConverge(await operations.deploy({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\tstage: args.flags.stage,\n\t\t\tcwd: ctx.cwd,\n\t\t\treportPath: args.flags.report,\n\t\t\treportId: args.flags.buildId\n\t\t}, operationDeps({\n\t\t\talchemy,\n\t\t\tconfigPath: ctx.config.configPath,\n\t\t\tworkspaceId: await workspaceIdOf(ctx),\n\t\t\tclient: ctx.api\n\t\t})), ctx, ({ summary }) => ctx.present({ data: { summary: summary ?? null } }, {\n\t\t\thuman: (ui) => summary === void 0 ? [{\n\t\t\t\tkind: \"summary\",\n\t\t\t\tstatus: \"ok\",\n\t\t\t\ttext: \"Deployed.\"\n\t\t\t}] : [{\n\t\t\t\tkind: \"summary\",\n\t\t\t\tstatus: \"ok\",\n\t\t\t\ttext: `Deployed ${ui.emphasize(summary.app)}.`\n\t\t\t}, {\n\t\t\t\tkind: \"table\",\n\t\t\t\tcolumns: [\"Address\", \"Deployed\"],\n\t\t\t\trows: summary.nodes.map((node) => [node.address, node.entities.map((entity) => `${entity.kind} ${entity.id}`).join(\", \")])\n\t\t\t}],\n\t\t\tstdout: () => [],\n\t\t\tjson: () => ({ summary: summary ?? null }),\n\t\t\tnext: () => []\n\t\t}));\n\t}\n});\n//#endregion\n//#region src/family/target.ts\n/**\n* `destroy`'s target, from its two mutually exclusive flags. Kept out of the\n* grammar because the engine's flag layer has no \"exactly one of these\"\n* construct — and because both wrong shapes need their own remedy, which a\n* generic arity error could not give.\n*/\nfunction targetOf(stage, production) {\n\tif (stage !== void 0 && production) return notOk(new CliStructuredError$1(\"DEPLOY.TARGET_CONFLICT\", \"Pass either --stage <name> or --production to `destroy`, not both.\"));\n\tif (stage === void 0 && !production) return notOk(new CliStructuredError$1(\"DEPLOY.TARGET_MISSING\", \"`destroy` requires an explicit target.\", { nextActions: [{\n\t\tkind: \"user-choice\",\n\t\tlabel: \"Pass --stage <name> to tear down a branch environment, or --production to tear down the production environment.\"\n\t}] }));\n\treturn ok(stage !== void 0 ? {\n\t\tkind: \"stage\",\n\t\tstage\n\t} : { kind: \"production\" });\n}\n//#endregion\n//#region src/family/commands/destroy.ts\n/**\n* `destroy <entry>` — deploy's mirror: same derivation, alchemy destroy.\n*\n* No confirmation prompt, matching the CLI this replaces. The front door\n* cannot know what the child will tear down, so a consent step here would be\n* asking the user to approve a list nobody has computed yet; if destroy\n* deserves one it belongs in composer's own operation, not in the grammar.\n*/\nconst createDestroyCommand = (operations) => defineCommand({\n\thelp: {\n\t\tsummary: \"Tear down the application whose root node is <entry>'s default export.\",\n\t\tdescription: \"Same derivation as deploy. Requires an explicit target: --stage <name> for a branch environment, or --production for the production environment.\",\n\t\texamples: [\"{bin} destroy src/service.ts --stage feat-auth\", \"{bin} destroy src/service.ts --production\"]\n\t},\n\targs: {\n\t\tpositionals: { entry: positional.string({\n\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\tplaceholder: \"entry\"\n\t\t}) },\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the application name to tear down.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\tstage: flag.string({\n\t\t\t\tbrief: \"Tear down this branch environment.\",\n\t\t\t\tplaceholder: \"stage\"\n\t\t\t}),\n\t\t\tproduction: flag.boolean({ brief: \"Tear down the project-level production environment.\" })\n\t\t}\n\t},\n\tneeds: {\n\t\tconfig: composerSection,\n\t\tcredentials: \"child\"\n\t},\n\tmaySpawn: true,\n\thandler: async (args, ctx) => {\n\t\tconst target = targetOf(args.flags.stage, args.flags.production);\n\t\tif (!target.ok) return target;\n\t\tconst alchemy = convergeSpawn(ctx);\n\t\treturn settleConverge(await operations.destroy({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\ttarget: target.value,\n\t\t\tcwd: ctx.cwd,\n\t\t\tonEvent: (event) => {\n\t\t\t\tif (event.kind !== \"no-local-deploy-state\") return;\n\t\t\t\tctx.report({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `No prior deploy state under ${event.cwd} — if you deployed from a different directory, run destroy from there; otherwise this is a no-op.`\n\t\t\t\t});\n\t\t\t}\n\t\t}, operationDeps({\n\t\t\talchemy,\n\t\t\tconfigPath: ctx.config.configPath,\n\t\t\tworkspaceId: await workspaceIdOf(ctx),\n\t\t\tclient: ctx.api\n\t\t})), ctx, () => ctx.present({ data: void 0 }, {\n\t\t\thuman: () => [{\n\t\t\t\tkind: \"summary\",\n\t\t\t\tstatus: \"ok\",\n\t\t\t\ttext: \"Destroyed.\"\n\t\t\t}],\n\t\t\tstdout: () => [],\n\t\t\tjson: () => void 0,\n\t\t\tnext: () => []\n\t\t}));\n\t}\n});\n//#endregion\n//#region src/family/commands/dev.ts\nconst STOP_STEP = \"Stopping the app's services — emulators and data stay up\";\n/** Resolves when the run is asked to stop. */\nfunction stopRequested(signal) {\n\tif (signal.aborted) return Promise.resolve();\n\treturn new Promise((resolve) => {\n\t\tsignal.addEventListener(\"abort\", () => resolve(), { once: true });\n\t});\n}\n/**\n* One converge at a time. `ctx.spawn` refuses a second live child, and the\n* watch loop can well fire a rebuild while the previous converge is still\n* running — so a request that arrives during a live converge joins the single\n* queued follow-up instead of starting its own. That extends the coalescing\n* the watcher already does across a burst of edits to cover the converge\n* itself, and it is sound because every dev converge is the SAME invocation:\n* one stack file at one fixed path, rewritten in place before each request.\n*/\nfunction coalescedConverge(run) {\n\tlet live;\n\tlet queued;\n\tconst start = (invocation) => {\n\t\tconst outcome = run(invocation);\n\t\tconst settled = outcome.then(() => void 0, () => void 0);\n\t\tlive = settled;\n\t\tsettled.then(() => {\n\t\t\tif (live === settled) live = void 0;\n\t\t});\n\t\treturn outcome;\n\t};\n\treturn (invocation) => {\n\t\tconst running = live;\n\t\tif (running === void 0) return start(invocation);\n\t\tqueued ??= running.then(() => {\n\t\t\tqueued = void 0;\n\t\t\treturn start(invocation);\n\t\t});\n\t\treturn queued;\n\t};\n}\n/** The front door, ordered by address depth (fewest dots first) then lexicographically. */\nfunction frontDoorOrder(endpoints) {\n\treturn [...endpoints].sort((a, b) => {\n\t\tconst depth = a.address.split(\".\").length - b.address.split(\".\").length;\n\t\tif (depth !== 0) return depth;\n\t\treturn a.address < b.address ? -1 : a.address > b.address ? 1 : 0;\n\t});\n}\n/**\n* The operation's events as engine events. The legacy `[dev]` console prefix\n* is gone: these are commentary the engine renders and frames.\n*/\nfunction reportDevEvent(report, lastChild) {\n\tlet stopFailed = false;\n\treturn (event) => {\n\t\tswitch (event.kind) {\n\t\t\tcase \"ready\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"status\",\n\t\t\t\t\tsubject: \"dev\",\n\t\t\t\t\tstatus: \"ready\"\n\t\t\t\t});\n\t\t\t\tfor (const endpoint of frontDoorOrder(event.endpoints)) report({\n\t\t\t\t\tkind: \"endpoint\",\n\t\t\t\t\tname: endpoint.address,\n\t\t\t\t\turl: endpoint.url\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"unwatchable\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `${event.address} has no watchable inputs.`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"rebuild-failed\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `Rebuild failed: ${event.message}`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"watch-error\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `Watch error: ${event.message}`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"converge-failed\": {\n\t\t\t\tconst child = lastChild();\n\t\t\t\tif (child !== void 0 && child.signal !== null) return;\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `Converge failed — the running app is untouched; still watching.\nGenerated stack file: ${event.stackFilePath}\\nRun \\`${event.reproduceCommand}\\` from ${event.cwd} to reproduce this directly.`\n\t\t\t\t});\n\t\t\t\treport({\n\t\t\t\t\tkind: \"remediation\",\n\t\t\t\t\taction: {\n\t\t\t\t\t\tkind: \"run-command\",\n\t\t\t\t\t\tlabel: `Run the converge directly from ${event.cwd} to reproduce this`,\n\t\t\t\t\t\tcommand: event.reproduceCommand,\n\t\t\t\t\t\treason: `Generated stack file: ${event.stackFilePath}`\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tcase \"stopping\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"step-started\",\n\t\t\t\t\tstep: STOP_STEP,\n\t\t\t\t\tid: \"dev-stop\"\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"stop-error\":\n\t\t\t\tstopFailed = true;\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `A service refused to stop: ${event.message}`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"stopped\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"step-finished\",\n\t\t\t\t\tstep: STOP_STEP,\n\t\t\t\t\tid: \"dev-stop\",\n\t\t\t\t\toutcome: stopFailed ? \"warning\" : \"ok\"\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t}\n\t};\n}\nconst createDevCommand = (operations) => defineSessionCommand({\n\thelp: {\n\t\tsummary: \"Bring up the application whose root node is <entry>'s default export, entirely on this machine.\",\n\t\tdescription: \"Runs credential-free and watches the app for changes, reconverging on every edit. Logs are a separate command; run `log <entry>` to tail them.\",\n\t\texamples: [\"{bin} dev src/service.ts\", \"{bin} dev src/service.ts --fresh\"]\n\t},\n\targs: {\n\t\tpositionals: { entry: positional.string({\n\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\tplaceholder: \"entry\"\n\t\t}) },\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the dev instance's application name.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\tfresh: flag.boolean({ brief: \"Destroy the dev stack and wipe the dev state directory before starting.\" })\n\t\t}\n\t},\n\tneeds: { config: composerSection },\n\tmaySpawn: true,\n\thandler: async (args, ctx) => {\n\t\tconst alchemy = convergeSpawn(ctx);\n\t\tconst result = await operations.dev({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\tfresh: args.flags.fresh,\n\t\t\tcwd: ctx.cwd,\n\t\t\tonEvent: reportDevEvent(ctx.report, ctx.lastChild)\n\t\t}, {\n\t\t\talchemy: coalescedConverge(alchemy),\n\t\t\tconfigPath: ctx.config.configPath\n\t\t});\n\t\tif (!result.ok) return settleConvergeFailure(result.failure, ctx);\n\t\tawait stopRequested(ctx.signal);\n\t\tawait result.value.stop();\n\t\treturn ok(void 0);\n\t}\n});\n//#endregion\n//#region src/family/commands/log.ts\n/**\n* `log <entry> [address]` — a session command that tails the merged logs of\n* the app running locally on this machine.\n*\n* It reads the LOCAL dev-emulator daemon, not the platform's logs surface, so\n* it is credential-free. It hands the terminal to nothing, which is why it\n* does not declare `maySpawn` and keeps json support: the log lines ARE its\n* json surface.\n*\n* Windows is refused inside the operation itself (LOG.PLATFORM_UNSUPPORTED),\n* which is why nothing here reads the platform.\n*/\n/** An empty screen reads as broken, so show a little recent history before going live. */\nconst DEFAULT_TAIL = 20;\nconst createLogCommand = (operations) => defineSessionCommand({\n\thelp: {\n\t\tsummary: \"Tail the merged logs of the locally-running application whose root node is <entry>'s default export.\",\n\t\texamples: [\"{bin} log src/service.ts\", \"{bin} log src/service.ts catalog.service\"]\n\t},\n\targs: {\n\t\tpositionals: {\n\t\t\tentry: positional.string({\n\t\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\t\tplaceholder: \"entry\"\n\t\t\t}),\n\t\t\taddress: positional.optionalString({\n\t\t\t\tbrief: \"Only this service's lines, by its dotted address (catalog.service); every service when absent.\",\n\t\t\t\tplaceholder: \"address\"\n\t\t\t})\n\t\t},\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the dev instance's application name.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\ttail: flag.number({\n\t\t\t\tbrief: `How many trailing history lines to show before live output (default ${String(DEFAULT_TAIL)}).`,\n\t\t\t\tplaceholder: \"lines\",\n\t\t\t\tdefault: DEFAULT_TAIL\n\t\t\t})\n\t\t}\n\t},\n\tneeds: { config: composerSection },\n\thandler: async (args, ctx) => {\n\t\tconst reportLogEvent = (event) => {\n\t\t\tctx.report({\n\t\t\t\tkind: \"message\",\n\t\t\t\tseverity: \"warn\",\n\t\t\t\ttext: event.kind === \"stream-failed\" ? `Stream failed: ${event.message}` : `Falling behind — dropped the ${String(event.count)} oldest lines.`\n\t\t\t});\n\t\t};\n\t\tconst result = await operations.log({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\taddress: args.positionals.address,\n\t\t\ttail: args.flags.tail ?? DEFAULT_TAIL,\n\t\t\tcwd: ctx.cwd,\n\t\t\tsignal: ctx.signal,\n\t\t\tonEvent: reportLogEvent\n\t\t}, { configPath: ctx.config.configPath });\n\t\tif (!result.ok) return notOk(toEngineError(result.failure));\n\t\tconst attached = result.value;\n\t\tif (attached.services.length === 0) {\n\t\t\tctx.report({\n\t\t\t\tkind: \"message\",\n\t\t\t\tseverity: \"warn\",\n\t\t\t\ttext: `No running services for \"${attached.appName}\" — start it first with \\`dev ${args.positionals.entry}\\`.`\n\t\t\t});\n\t\t\treturn ok(void 0);\n\t\t}\n\t\tfor await (const { service, line } of attached.lines) ctx.report({\n\t\t\tkind: \"output\",\n\t\t\tsource: service,\n\t\t\tchannel: \"data\",\n\t\t\tline: `[${service}] ${line}`\n\t\t});\n\t\treturn ok(void 0);\n\t}\n});\n//#endregion\n//#region src/family/family.ts\n/**\n* Composer's `CommandFamily` — the unit the engine mounts, whether the process\n* is composer's own CLI or the `prisma` bin.\n*\n* This module and everything it reaches statically must stay free of alchemy\n* and of effect VALUE imports: the `prisma` bin imports the family directly,\n* so anything in this static graph loads on `prisma --version`. The mechanism\n* that holds it is the existing lazy boundary inside the operation modules —\n* `operations/deploy.ts`, `destroy.ts`, `dev.ts` and `log.ts` each `await\n* import()` their executor, and it is the executors that reach the provider\n* tree. Importing the operations here is therefore free; importing an\n* executor, or flattening one of those dynamic imports, is not.\n* scripts/check-family-static-graph.mjs enforces this against BUILT output,\n* where type-only imports have already been erased.\n*\n* The four commands close over the operations they are given, so a host can\n* mount this family against the test double and exercise real grammar, real\n* arg validation and real handlers with no alchemy behind them.\n*/\nconst realOperations = {\n\tdeploy: deployWithDeps,\n\tdestroy: destroyWithDeps,\n\tdev: devWithDeps,\n\tlog: logWithDeps\n};\nfunction createComposerFamily(options = {}) {\n\tconst operations = options.operations ?? realOperations;\n\treturn defineCommandFamily({\n\t\tconfigSection: composerSection,\n\t\tcommands: {\n\t\t\tdeploy: createDeployCommand(operations),\n\t\t\tdestroy: createDestroyCommand(operations),\n\t\t\tdev: createDevCommand(operations),\n\t\t\tlog: createLogCommand(operations)\n\t\t},\n\t\tdocsBaseUrl: DOCS_BASE\n\t});\n}\n//#endregion\n//#region src/family/runtime.ts\n/**\n* Everything environmental the engine needs, assembled from a host process.\n*\n* The engine takes no globals: streams, cwd, env, TTY-ness, exit and signal\n* subscription all arrive through `Runtime`, which is what lets a test drive a\n* whole run without touching `process`. Composing one is the substantive part\n* of hosting the engine — `createCli` and `Cli.run` are two calls.\n*\n* Credentials come from the engine's own environment-only manager, which\n* composes a session from PRISMA_SERVICE_TOKEN / PRISMA_WORKSPACE_ID and\n* refuses every mutation. That is the whole of composer's standalone auth\n* story: this CLI has no login flow and mounts no auth commands, so there is\n* nothing to store — the two variables ARE the credential.\n*/\n/** Where the management API lives. Matches the lowering client's default origin; the env var is the escape hatch for staging. */\nconst DEFAULT_MANAGEMENT_API_BASE_URL = \"https://api.prisma.io\";\nconst DEFAULT_AUTH_BASE_URL = \"https://auth.prisma.io\";\n/**\n* Starts the converge child: inherited stdio, this process's own group, no\n* `detached` and no new console — which is what lets the terminal deliver\n* Ctrl-C to the child natively instead of the CLI forwarding it. The engine\n* never imports node:child_process; this adapter is the whole of the host's\n* side of that seam.\n*/\nconst spawnChild = (request) => {\n\tconst child = spawn(request.command, [...request.args], {\n\t\tcwd: request.cwd,\n\t\tstdio: \"inherit\",\n\t\tenv: request.env\n\t});\n\treturn {\n\t\tended: new Promise((resolve, reject) => {\n\t\t\tchild.on(\"error\", reject);\n\t\t\tchild.on(\"close\", (exitCode, signal) => {\n\t\t\t\tresolve({\n\t\t\t\t\texitCode,\n\t\t\t\t\tsignal\n\t\t\t\t});\n\t\t\t});\n\t\t}),\n\t\tkill: (signal) => {\n\t\t\tchild.kill(signal);\n\t\t}\n\t};\n};\n/**\n* The SDK's client construction config. The engine requires all four fields\n* whenever a credential manager is wired, but this host reaches none of the\n* login paths: an environment credential carries no refresh token, so nothing\n* ever refreshes and `clientId`/`redirectUri` are never read. They are\n* env-overridable rather than hard-coded so a staging run can point the whole\n* client somewhere else in one place.\n*/\nfunction clientConfig(env, apiBaseUrl) {\n\treturn {\n\t\tclientId: env[\"PRISMA_CLIENT_ID\"] ?? \"prisma-composer-cli\",\n\t\tredirectUri: env[\"PRISMA_REDIRECT_URI\"] ?? \"http://127.0.0.1/callback\",\n\t\tapiBaseUrl,\n\t\tauthBaseUrl: env[\"PRISMA_AUTH_URL\"] ?? DEFAULT_AUTH_BASE_URL\n\t};\n}\n/**\n* What this process runs on, for `ctx.host`. Bun and Deno both announce\n* themselves in `versions`; nothing else does, so an absent marker means Node.\n*/\nfunction describeHost(host) {\n\tconst name = [\"bun\", \"deno\"].find((candidate) => host.versions[candidate] !== void 0) ?? \"node\";\n\treturn {\n\t\truntime: {\n\t\t\tname,\n\t\t\tversion: host.versions[name] ?? host.version\n\t\t},\n\t\tplatform: host.platform,\n\t\tarch: host.arch\n\t};\n}\n/**\n* Which package manager invoked us, read from the `npm_config_user_agent`\n* every major manager sets (`pnpm/10.27.0 npm/? node/v24.16.0 darwin arm64`).\n* `undefined` when the CLI was run directly rather than through a manager — a\n* normal case, not a failure, so nothing is inferred from the filesystem, and\n* the engine falls back to its own detection from the project at cwd.\n*/\nfunction detectPackageManager(env) {\n\tconst agent = env[\"npm_config_user_agent\"];\n\tif (agent === void 0) return void 0;\n\tconst name = agent.split(\"/\")[0];\n\tswitch (name) {\n\t\tcase \"npm\":\n\t\tcase \"pnpm\":\n\t\tcase \"yarn\":\n\t\tcase \"bun\":\n\t\tcase \"deno\": return name;\n\t\tdefault: return;\n\t}\n}\n/**\n* The config loader arrives as a function rather than an already-loaded config\n* because the engine reads `prisma.config.ts` on demand — only when the command\n* it is about to run declares a config section, and with whatever file\n* `--config` named. A host that loaded the file up front would read it for runs\n* that never needed it, and would have nowhere to put `--config`.\n*\n* Nothing here answers \"is this CI\": the engine detects it from `env` itself,\n* and `isCIOverride` exists only for hosts where that detection cannot be\n* right — composer is not one.\n*/\nconst nonEmpty = (value) => value !== void 0 && value.length > 0 ? value : void 0;\nfunction createRuntime(host, loadConfig) {\n\tconst env = host.env;\n\tconst apiBaseUrl = nonEmpty(env[\"PRISMA_API_URL\"]) ?? nonEmpty(env[\"PRISMA_MANAGEMENT_API_URL\"]) ?? DEFAULT_MANAGEMENT_API_BASE_URL;\n\tconst packageManager = detectPackageManager(env);\n\treturn {\n\t\tstdout: host.stdout,\n\t\tstderr: host.stderr,\n\t\tstdin: host.stdin,\n\t\tcwd: host.cwd(),\n\t\tenv,\n\t\tisTty: {\n\t\t\tstdin: host.stdin.isTTY === true,\n\t\t\tstdout: host.stdout.isTTY === true,\n\t\t\tstderr: host.stderr.isTTY === true\n\t\t},\n\t\texit: (code) => host.exit(code),\n\t\tonSignal: (cb) => {\n\t\t\tconst onSigint = () => {\n\t\t\t\tcb(\"SIGINT\");\n\t\t\t};\n\t\t\tconst onSigterm = () => {\n\t\t\t\tcb(\"SIGTERM\");\n\t\t\t};\n\t\t\thost.on(\"SIGINT\", onSigint);\n\t\t\thost.on(\"SIGTERM\", onSigterm);\n\t\t\treturn () => {\n\t\t\t\thost.off(\"SIGINT\", onSigint);\n\t\t\t\thost.off(\"SIGTERM\", onSigterm);\n\t\t\t};\n\t\t},\n\t\tloadConfig,\n\t\tcredentialManager: new EnvironmentCredentialManager({ env }),\n\t\tmanagementApiClientConfig: clientConfig(env, apiBaseUrl),\n\t\tspawn: spawnChild,\n\t\tmanagementApi: { baseUrl: apiBaseUrl },\n\t\t...packageManager !== void 0 && { packageManager },\n\t\thost: describeHost(host)\n\t};\n}\n//#endregion\n//#region src/family/engine-cli.ts\n/**\n* Composer's own CLI, rebuilt as a thin composition of the family it\n* publishes: `createCli` over `createComposerFamily()`, `Cli.run` with a\n* Runtime. Grammar, help, arg validation, output framing, exit codes and\n* signal ownership all belong to the engine now — this module contributes the\n* family and the environment, and nothing else.\n*\n* Running composer's commands through the same path an external host uses is\n* the point: it is what proves the family works standalone before the `prisma`\n* bin mounts it.\n*\n* This IS composer's CLI. The clipanion shell it replaced, and the bespoke\n* runner that shelled out to alchemy, are gone; `bin.ts` is a call into here.\n*/\nconst BINARY_NAME = \"prisma-composer\";\n/**\n* Composer's commands mount at the top level of its own CLI (`prisma-composer\n* deploy`); under the `prisma` bin the same family mounts one level down\n* (`prisma composer deploy`). The family is identical either way — only the\n* mount paths differ, which is exactly the split `createCli` draws between\n* `commandFamilies` and `commands`.\n*/\nfunction mountedTree(family) {\n\treturn { ...family.commands };\n}\nfunction createComposerCli(spec) {\n\tconst family = createComposerFamily({ operations: spec.operations });\n\treturn createCli({\n\t\tname: BINARY_NAME,\n\t\tversion: spec.version,\n\t\tcommandFamilies: [family],\n\t\tgroups: {},\n\t\tcommands: mountedTree(family)\n\t});\n}\n/**\n* Composes the Runtime and runs one invocation. Returns the exit code rather\n* than exiting, so the caller owns the process — a bin assigns it to\n* `process.exitCode` and lets the streams drain, as composer's CLI has always\n* done.\n*\n* `prisma.config.ts` is not read here. The loader goes in as a function, and the\n* engine calls it only when the command it is about to run declares a config\n* section, passing it the file `--config` named; the loader resolves that\n* against the host's cwd.\n*/\nfunction runComposerCli(argv, host, spec, hooks) {\n\tconst runtime = createRuntime(host, (configPath) => loadConfig(host.cwd(), configPath));\n\treturn createComposerCli(spec).run(argv, runtime, hooks);\n}\n//#endregion\nexport { realOperations as a, createComposerFamily as i, createComposerCli as n, composerSection as o, runComposerCli as r, toEngineError as s, BINARY_NAME as t };\n\n//# sourceMappingURL=engine-cli-CMw8Uug4.mjs.map"],"mappings":"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"}
1
+ {"version":3,"file":"family.mjs","names":["notOk","CliStructuredError$1"],"sources":["../../../0-framework/3-tooling/cli/dist/log-E_5UMZl8.mjs","../../../0-framework/3-tooling/cli/dist/engine-cli-BI4fPmYY.mjs"],"sourcesContent":["import { n as executorLoadFailure } from \"./shared-BTnATsqm.mjs\";\nimport { notOk } from \"@internal/foundation/result\";\n//#region src/operations/deploy.ts\nasync function deploy(input) {\n\treturn deployWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's RunDeps, unit\n* tests). Deliberately NOT re-exported through `./control` — the seam mirrors\n* internal types and is not part of the published surface. */\nasync function deployWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-deploy-destroy-Bsdh8hf4.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"deploy\", error, cwd));\n\t}\n\treturn executor.executeDeploy(input, deps, cwd);\n}\n//#endregion\n//#region src/operations/destroy.ts\nasync function destroy(input) {\n\treturn destroyWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's RunDeps, unit\n* tests). Deliberately NOT re-exported through `./control` — the seam mirrors\n* internal types and is not part of the published surface. */\nasync function destroyWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-deploy-destroy-Bsdh8hf4.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"destroy\", error, cwd));\n\t}\n\treturn executor.executeDestroy(input, deps, cwd);\n}\n//#endregion\n//#region src/operations/dev.ts\nasync function dev(input) {\n\treturn devWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's RunDeps, unit\n* tests). Deliberately NOT re-exported through `./control` — the seam mirrors\n* internal types and is not part of the published surface. */\nasync function devWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-dev-CQ0Lo2eN.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"dev\", error, cwd));\n\t}\n\treturn executor.executeDev(input, deps, cwd);\n}\n//#endregion\n//#region src/operations/log.ts\nasync function log(input) {\n\treturn logWithDeps(input, {});\n}\n/** In-package variant threading the injection seam (the CLI's LogRunDeps,\n* unit tests). Deliberately NOT re-exported through `./control` — the seam\n* mirrors internal types and is not part of the published surface. */\nasync function logWithDeps(input, deps) {\n\tconst cwd = input.cwd ?? process.cwd();\n\tlet executor;\n\ttry {\n\t\texecutor = await import(\"./execute-log-CUzTOzSj.mjs\");\n\t} catch (error) {\n\t\treturn notOk(executorLoadFailure(\"log\", error, cwd));\n\t}\n\treturn executor.executeLog(input, deps, cwd);\n}\n//#endregion\nexport { destroy as a, deployWithDeps as c, devWithDeps as i, logWithDeps as n, destroyWithDeps as o, dev as r, deploy as s, log as t };\n\n//# sourceMappingURL=log-E_5UMZl8.mjs.map","import { t as executionDiagnostics } from \"./shared-BTnATsqm.mjs\";\nimport { t as alchemyCommandLine } from \"./run-alchemy--ZIvgqyU.mjs\";\nimport { c as deployWithDeps, i as devWithDeps, n as logWithDeps, o as destroyWithDeps } from \"./log-E_5UMZl8.mjs\";\nimport { DOCS_BASE } from \"@internal/foundation/errors\";\nimport { EnvironmentCredentialManager, createCli, defineCommand, defineCommandFamily, defineConfigSection, defineSessionCommand, exitWithChildStatus, flag, loadConfig, positional } from \"@prisma/cli-engine\";\nimport { CliStructuredError as CliStructuredError$1, notOk, ok } from \"@prisma/cli-engine/protocol\";\nimport { spawn } from \"node:child_process\";\n//#region src/family/translate-error.ts\n/**\n* The family boundary's error translation.\n*\n* Composer and the engine each carry a class called `CliStructuredError`, both\n* descended from the same prisma/prisma foundation, and both recognize errors\n* by duck-typing on `name === 'CliStructuredError'`. That means a composer\n* error handed to the engine untranslated is ACCEPTED — it does not fail\n* loudly, it renders. What it loses is its `fix`: composer's foundation\n* carries remediation as one prose string on that field, the engine carries it\n* as a `nextActions` list and has no `fix` at all, so the fix text is dropped\n* silently and the user is told what broke with no word on what to do about\n* it. Nothing about that failure is visible without a test that looks for the\n* fix on the other side, which is why there is one.\n*\n* Everything else on the envelope survives as-is; only remediation changes\n* representation.\n*/\n/**\n* Composer's `fix` is free prose — \"add this overrides block and reinstall\",\n* \"run the build, then retry\" — with no machine-readable command inside it.\n* `user-choice` is the engine's own kind for exactly that (it is what the\n* engine uses for its own config and prompt failures), so the text carries\n* over verbatim as one action rather than being parsed into a command the\n* author never wrote.\n*/\nfunction fixAsNextActions(fix) {\n\treturn fix === void 0 ? [] : [{\n\t\tkind: \"user-choice\",\n\t\tlabel: fix\n\t}];\n}\n/** Translates a composer failure into the engine's error type. Composer-side detail — `meta`, `where`, `docsUrl` — rides along untouched. */\nfunction toEngineError(error) {\n\treturn new CliStructuredError$1(error.code, error.message, {\n\t\tseverity: error.severity,\n\t\tnextActions: fixAsNextActions(error.fix),\n\t\t...error.why === void 0 ? {} : { why: error.why },\n\t\t...error.where === void 0 ? {} : { where: error.where },\n\t\t...error.meta === void 0 ? {} : { meta: error.meta },\n\t\t...error.docsUrl === void 0 ? {} : { docsUrl: error.docsUrl },\n\t\tcause: error\n\t});\n}\n//#endregion\n//#region src/family/converge.ts\n/** The adapter the operations call, backed by the engine's `ctx.spawn` so the\n* terminal reaches alchemy natively and the engine owns signal policy. */\nfunction convergeSpawn(ctx) {\n\treturn async (invocation) => {\n\t\tconst line = alchemyCommandLine(invocation);\n\t\treturn await ctx.spawn({\n\t\t\tcommand: line.command,\n\t\t\targs: line.args,\n\t\t\tcwd: line.cwd,\n\t\t\tenv: line.env\n\t\t});\n\t};\n}\n/** The in-process leg's deps: composer's existing seam, carrying the engine's\n* own client and workspace id rather than anything read from the env. */\nfunction operationDeps(spec) {\n\treturn {\n\t\talchemy: spec.alchemy,\n\t\tconfigPath: spec.configPath,\n\t\tcredentials: {\n\t\t\tworkspaceId: spec.workspaceId,\n\t\t\tclient: spec.client\n\t\t}\n\t};\n}\n/**\n* The reproduce hint a failed converge carries. Deliberately absent for an\n* aborted one: the user stopped it, so there is nothing to reproduce.\n*/\nfunction reproduceHint(failure) {\n\tconst diagnostics = executionDiagnostics(failure);\n\tif (diagnostics === void 0) return [];\n\treturn [{\n\t\tkind: \"run-command\",\n\t\tlabel: `Run the converge directly from ${diagnostics.cwd} to reproduce this`,\n\t\tcommand: diagnostics.reproduceCommand,\n\t\treason: `Generated stack file: ${diagnostics.stackFilePath}`\n\t}];\n}\n/**\n* How a FAILED converge settles. `deploy`, `destroy` and `dev` all end this\n* way and must not drift apart, so the decision lives here once rather than\n* inline in each handler.\n*\n* A failure that reached the child exits with the child's status verbatim and\n* carries the reproduce hint; a failure that never reached the child is an\n* ordinary structured error and gets the normal envelope. Nothing here reads\n* `signal` — see settleConverge.\n*/\nfunction settleConvergeFailure(failure, ctx) {\n\tconst child = ctx.lastChild();\n\tif (child !== void 0 && child.exitCode !== 0) return ok(exitWithChildStatus({ nextActions: reproduceHint(failure) }));\n\treturn notOk(toEngineError(failure));\n}\n/**\n* How a converge settles, now that the engine owns the child's status.\n*\n* Nothing here reads `signal`. `exitWithChildStatus` settles from the engine's\n* own record of the child, and a signal-killed one overrules whatever this\n* function asked for: 128 + the signal, no failure envelope, and the reproduce\n* hint dropped, because the user stopped the run and there is nothing to\n* reproduce.\n*\n* What is left is the operation's own verdict. A failure that reached the\n* child exits with the child's status verbatim and carries the reproduce hint;\n* a failure that never reached the child is an ordinary structured error and\n* gets the normal envelope.\n*\n* A SUCCESS presents its result even when the child was signal-killed. No\n* composer operation produces that pair today — each one reports a\n* signal-killed converge as a failure — and an operation that ever did would\n* have a real result worth showing. The run still exits 130, because the\n* engine settles a signal-terminated run from its own record of the signal\n* whatever the handler returns.\n*/\nfunction settleConverge(result, ctx, present) {\n\tif (!result.ok) return settleConvergeFailure(result.failure, ctx);\n\treturn ok(present(result.value));\n}\n//#endregion\n//#region src/family/section.ts\n/**\n* Composer's projection into `prisma.config.ts` — the `composer` section.\n*\n* The section is deliberately tiny. Composer's real configuration lives in\n* `prisma-composer.config.ts`, which holds executable values (Effect layers,\n* provider factories, container lifecycles) and can only be understood by\n* evaluating it inside a running command. A config-section validator loads\n* with the command tree at start-up and must be dependency-light and total,\n* so it is the wrong place to evaluate any of that. What the section carries\n* is therefore only the one fact the engine can usefully know before a\n* command runs: WHERE that file is, when the user wants to say so.\n*\n* Its fields grow only by amending the slice contract.\n*/\nconst KNOWN_FIELDS = [\"configPath\"];\nfunction diagnostic(spec) {\n\treturn {\n\t\tcode: spec.code,\n\t\tseverity: spec.severity,\n\t\tsummary: spec.summary,\n\t\t...spec.why === void 0 ? {} : { why: spec.why },\n\t\tnextActions: spec.fix === void 0 ? [] : [{\n\t\t\tkind: \"edit-file\",\n\t\t\tlabel: spec.fix\n\t\t}]\n\t};\n}\nfunction validate(raw) {\n\tif (raw === void 0) return {\n\t\tok: true,\n\t\tvalue: {},\n\t\tdiagnostics: []\n\t};\n\tif (typeof raw !== \"object\" || raw === null || Array.isArray(raw)) return {\n\t\tok: false,\n\t\tdiagnostics: [diagnostic({\n\t\t\tcode: \"CONFIG.FIELD_INVALID\",\n\t\t\tseverity: \"error\",\n\t\t\tsummary: \"The `composer` section of prisma.config.ts must be an object.\",\n\t\t\tfix: \"Write `composer: { configPath: \\\"./prisma-composer.config.ts\\\" }`, or remove the section entirely.\"\n\t\t})]\n\t};\n\tlet record;\n\ttry {\n\t\trecord = { ...raw };\n\t} catch {\n\t\treturn {\n\t\t\tok: false,\n\t\t\tdiagnostics: [diagnostic({\n\t\t\t\tcode: \"CONFIG.FIELD_INVALID\",\n\t\t\t\tseverity: \"error\",\n\t\t\t\tsummary: \"The `composer` section of prisma.config.ts could not be read.\",\n\t\t\t\twhy: \"Reading its fields threw, so nothing in it can be trusted.\",\n\t\t\t\tfix: \"Write it as a plain object literal, e.g. `composer: { configPath: \\\"./prisma-composer.config.ts\\\" }`.\"\n\t\t\t})]\n\t\t};\n\t}\n\tconst configPath = record[\"configPath\"];\n\tif (configPath !== void 0 && (typeof configPath !== \"string\" || configPath.length === 0)) return {\n\t\tok: false,\n\t\tdiagnostics: [diagnostic({\n\t\t\tcode: \"CONFIG.FIELD_INVALID\",\n\t\t\tseverity: \"error\",\n\t\t\tsummary: \"`composer.configPath` must be a non-empty string.\",\n\t\t\twhy: \"It names the prisma-composer.config.ts file to load.\",\n\t\t\tfix: \"Set it to a path, or remove it to search upward from the entry.\"\n\t\t})]\n\t};\n\tconst unknown = Object.keys(record).filter((key) => !KNOWN_FIELDS.includes(key));\n\treturn {\n\t\tok: true,\n\t\tvalue: configPath === void 0 ? {} : { configPath },\n\t\tdiagnostics: unknown.map((key) => diagnostic({\n\t\t\tcode: \"CONFIG.FIELD_UNKNOWN\",\n\t\t\tseverity: \"warn\",\n\t\t\tsummary: `The \\`composer\\` section has no field \\`${key}\\`; it is ignored.`,\n\t\t\tfix: `Remove \\`${key}\\`, or check it against the version of @prisma/composer you have installed.`\n\t\t}))\n\t};\n}\nconst composerSection = defineConfigSection({\n\tname: \"composer\",\n\tvalidate\n});\n//#endregion\n//#region src/family/target.ts\n/**\n* `destroy`'s target, from its two mutually exclusive flags. Kept out of the\n* grammar because the engine's flag layer has no \"exactly one of these\"\n* construct — and because both wrong shapes need their own remedy, which a\n* generic arity error could not give.\n*/\nfunction targetOf(stage, production) {\n\tif (stage !== void 0 && production) return notOk(new CliStructuredError$1(\"DEPLOY.TARGET_CONFLICT\", \"Pass either --stage <name> or --production to `destroy`, not both.\"));\n\tif (stage === void 0 && !production) return notOk(new CliStructuredError$1(\"DEPLOY.TARGET_MISSING\", \"`destroy` requires an explicit target.\", { nextActions: [{\n\t\tkind: \"user-choice\",\n\t\tlabel: \"Pass --stage <name> to tear down a branch environment, or --production to tear down the production environment.\"\n\t}] }));\n\treturn ok(stage !== void 0 ? {\n\t\tkind: \"stage\",\n\t\tstage\n\t} : { kind: \"production\" });\n}\n//#endregion\n//#region src/family/workspace.ts\n/**\n* The workspace the in-process leg acts in, from the engine's credential\n* read. Handlers never decode a token and never read PRISMA_WORKSPACE_ID:\n* whether the credential came from a stored session or the environment, the\n* engine has already resolved it, and branching on where it came from is a\n* defect by the credential-manager design.\n*\n* Undefined when the active credential names no workspace — an environment\n* token whose claims carry none. The container descriptors raise their own\n* \"workspace required\" error in that case, which is the error the user needs.\n*/\nasync function workspaceIdOf(ctx) {\n\treturn (await ctx.activeCredential())?.workspaceId;\n}\n//#endregion\n//#region src/family/commands/destroy.ts\n/**\n* `destroy <entry>` — deploy's mirror: same derivation, alchemy destroy.\n*\n* No confirmation prompt, matching the CLI this replaces. The front door\n* cannot know what the child will tear down, so a consent step here would be\n* asking the user to approve a list nobody has computed yet; if destroy\n* deserves one it belongs in composer's own operation, not in the grammar.\n*/\nconst createDestroyCommand = (operations) => defineCommand({\n\thelp: {\n\t\tsummary: \"Tear down the application whose root node is <entry>'s default export.\",\n\t\tdescription: \"Same derivation as deploy. Requires an explicit target: --stage <name> for a branch environment, or --production for the production environment.\",\n\t\texamples: [\"{bin} destroy src/service.ts --stage feat-auth\", \"{bin} destroy src/service.ts --production\"]\n\t},\n\targs: {\n\t\tpositionals: { entry: positional.string({\n\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\tplaceholder: \"entry\"\n\t\t}) },\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the application name to tear down.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\tstage: flag.string({\n\t\t\t\tbrief: \"Tear down this branch environment.\",\n\t\t\t\tplaceholder: \"stage\"\n\t\t\t}),\n\t\t\tproduction: flag.boolean({ brief: \"Tear down the project-level production environment.\" })\n\t\t}\n\t},\n\tneeds: {\n\t\tconfig: composerSection,\n\t\tcredentials: \"child\"\n\t},\n\tmaySpawn: true,\n\thandler: async (args, ctx) => {\n\t\tconst target = targetOf(args.flags.stage, args.flags.production);\n\t\tif (!target.ok) return target;\n\t\tconst alchemy = convergeSpawn(ctx);\n\t\treturn settleConverge(await operations.destroy({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\ttarget: target.value,\n\t\t\tcwd: ctx.cwd,\n\t\t\tonEvent: (event) => {\n\t\t\t\tif (event.kind !== \"no-local-deploy-state\") return;\n\t\t\t\tctx.report({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `No prior deploy state under ${event.cwd} — if you deployed from a different directory, run destroy from there; otherwise this is a no-op.`\n\t\t\t\t});\n\t\t\t}\n\t\t}, operationDeps({\n\t\t\talchemy,\n\t\t\tconfigPath: ctx.config.configPath,\n\t\t\tworkspaceId: await workspaceIdOf(ctx),\n\t\t\tclient: ctx.api\n\t\t})), ctx, () => ctx.present({ data: void 0 }, {\n\t\t\thuman: () => [{\n\t\t\t\tkind: \"summary\",\n\t\t\t\tstatus: \"ok\",\n\t\t\t\ttext: \"Destroyed.\"\n\t\t\t}],\n\t\t\tstdout: () => [],\n\t\t\tjson: () => void 0,\n\t\t\tnext: () => []\n\t\t}));\n\t}\n});\n//#endregion\n//#region src/family/commands/log.ts\n/**\n* `log <entry> [address]` — a session command that tails the merged logs of\n* the app running locally on this machine.\n*\n* It reads the LOCAL dev-emulator daemon, not the platform's logs surface, so\n* it is credential-free. It hands the terminal to nothing, which is why it\n* does not declare `maySpawn` and keeps json support: the log lines ARE its\n* json surface.\n*\n* Windows is refused inside the operation itself (LOG.PLATFORM_UNSUPPORTED),\n* which is why nothing here reads the platform.\n*/\n/** An empty screen reads as broken, so show a little recent history before going live. */\nconst DEFAULT_TAIL = 20;\nconst createLogCommand = (operations) => defineSessionCommand({\n\thelp: {\n\t\tsummary: \"Tail the merged logs of the locally-running application whose root node is <entry>'s default export.\",\n\t\texamples: [\"{bin} log src/service.ts\", \"{bin} log src/service.ts catalog.service\"]\n\t},\n\targs: {\n\t\tpositionals: {\n\t\t\tentry: positional.string({\n\t\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\t\tplaceholder: \"entry\"\n\t\t\t}),\n\t\t\taddress: positional.optionalString({\n\t\t\t\tbrief: \"Only this service's lines, by its dotted address (catalog.service); every service when absent.\",\n\t\t\t\tplaceholder: \"address\"\n\t\t\t})\n\t\t},\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the dev instance's application name.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\ttail: flag.number({\n\t\t\t\tbrief: `How many trailing history lines to show before live output (default ${String(DEFAULT_TAIL)}).`,\n\t\t\t\tplaceholder: \"lines\",\n\t\t\t\tdefault: DEFAULT_TAIL\n\t\t\t})\n\t\t}\n\t},\n\tneeds: { config: composerSection },\n\thandler: async (args, ctx) => {\n\t\tconst reportLogEvent = (event) => {\n\t\t\tctx.report({\n\t\t\t\tkind: \"message\",\n\t\t\t\tseverity: \"warn\",\n\t\t\t\ttext: event.kind === \"stream-failed\" ? `Stream failed: ${event.message}` : `Falling behind — dropped the ${String(event.count)} oldest lines.`\n\t\t\t});\n\t\t};\n\t\tconst result = await operations.log({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\taddress: args.positionals.address,\n\t\t\ttail: args.flags.tail ?? DEFAULT_TAIL,\n\t\t\tcwd: ctx.cwd,\n\t\t\tsignal: ctx.signal,\n\t\t\tonEvent: reportLogEvent\n\t\t}, { configPath: ctx.config.configPath });\n\t\tif (!result.ok) return notOk(toEngineError(result.failure));\n\t\tconst attached = result.value;\n\t\tif (attached.services.length === 0) {\n\t\t\tctx.report({\n\t\t\t\tkind: \"message\",\n\t\t\t\tseverity: \"warn\",\n\t\t\t\ttext: `No running services for \"${attached.appName}\" — start it first with \\`dev ${args.positionals.entry}\\`.`\n\t\t\t});\n\t\t\treturn ok(void 0);\n\t\t}\n\t\tfor await (const { service, line } of attached.lines) ctx.report({\n\t\t\tkind: \"output\",\n\t\t\tsource: service,\n\t\t\tchannel: \"data\",\n\t\t\tline: `[${service}] ${line}`\n\t\t});\n\t\treturn ok(void 0);\n\t}\n});\n//#endregion\n//#region src/family/commands/deploy.ts\n/**\n* `deploy <entry>` — a result command that hands the terminal to alchemy.\n*\n* `--production` is gone. It was accepted and then always errored (\"only\n* valid with destroy\"), so no invocation using it could ever have succeeded;\n* deploy targets production by default when no `--stage` is given.\n*/\nconst createDeployCommand = (operations) => defineCommand({\n\thelp: {\n\t\tsummary: \"Deploy the application whose root node is <entry>'s default export.\",\n\t\texamples: [\"{bin} deploy src/service.ts\", \"{bin} deploy src/service.ts --stage feat-auth\"]\n\t},\n\targs: {\n\t\tpositionals: { entry: positional.string({\n\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\tplaceholder: \"entry\"\n\t\t}) },\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the deploy's application name.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\tstage: flag.string({\n\t\t\t\tbrief: \"Deploy scope to target; omit for production.\",\n\t\t\t\tplaceholder: \"stage\"\n\t\t\t}),\n\t\t\treport: flag.string({\n\t\t\t\tbrief: \"Write the deploy's outcome as JSON to this path — resources, preview URLs, and the failure cause. Also settable as PRISMA_COMPOSER_REPORT_FILE.\",\n\t\t\t\tplaceholder: \"path\"\n\t\t\t}),\n\t\t\tbuildId: flag.string({\n\t\t\t\tbrief: \"Join the deploy record your CI already created rather than letting the target create one. Each target also reads its own environment variable for this; the flag wins.\",\n\t\t\t\tplaceholder: \"id\"\n\t\t\t})\n\t\t}\n\t},\n\tneeds: {\n\t\tconfig: composerSection,\n\t\tcredentials: \"child\"\n\t},\n\tmaySpawn: true,\n\thandler: async (args, ctx) => {\n\t\tconst alchemy = convergeSpawn(ctx);\n\t\treturn settleConverge(await operations.deploy({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\tstage: args.flags.stage,\n\t\t\tcwd: ctx.cwd,\n\t\t\treportPath: args.flags.report,\n\t\t\treportId: args.flags.buildId\n\t\t}, operationDeps({\n\t\t\talchemy,\n\t\t\tconfigPath: ctx.config.configPath,\n\t\t\tworkspaceId: await workspaceIdOf(ctx),\n\t\t\tclient: ctx.api\n\t\t})), ctx, ({ summary }) => ctx.present({ data: { summary: summary ?? null } }, {\n\t\t\thuman: (ui) => summary === void 0 ? [{\n\t\t\t\tkind: \"summary\",\n\t\t\t\tstatus: \"ok\",\n\t\t\t\ttext: \"Deployed.\"\n\t\t\t}] : [{\n\t\t\t\tkind: \"summary\",\n\t\t\t\tstatus: \"ok\",\n\t\t\t\ttext: `Deployed ${ui.emphasize(summary.app)}.`\n\t\t\t}, {\n\t\t\t\tkind: \"table\",\n\t\t\t\tcolumns: [\"Address\", \"Deployed\"],\n\t\t\t\trows: summary.nodes.map((node) => [node.address, node.entities.map((entity) => `${entity.kind} ${entity.id}`).join(\", \")])\n\t\t\t}],\n\t\t\tstdout: () => [],\n\t\t\tjson: () => ({ summary: summary ?? null }),\n\t\t\tnext: () => []\n\t\t}));\n\t}\n});\n//#endregion\n//#region src/family/commands/dev.ts\nconst STOP_STEP = \"Stopping the app's services — emulators and data stay up\";\n/** Resolves when the run is asked to stop. */\nfunction stopRequested(signal) {\n\tif (signal.aborted) return Promise.resolve();\n\treturn new Promise((resolve) => {\n\t\tsignal.addEventListener(\"abort\", () => resolve(), { once: true });\n\t});\n}\n/**\n* One converge at a time. `ctx.spawn` refuses a second live child, and the\n* watch loop can well fire a rebuild while the previous converge is still\n* running — so a request that arrives during a live converge joins the single\n* queued follow-up instead of starting its own. That extends the coalescing\n* the watcher already does across a burst of edits to cover the converge\n* itself, and it is sound because every dev converge is the SAME invocation:\n* one stack file at one fixed path, rewritten in place before each request.\n*/\nfunction coalescedConverge(run) {\n\tlet live;\n\tlet queued;\n\tconst start = (invocation) => {\n\t\tconst outcome = run(invocation);\n\t\tconst settled = outcome.then(() => void 0, () => void 0);\n\t\tlive = settled;\n\t\tsettled.then(() => {\n\t\t\tif (live === settled) live = void 0;\n\t\t});\n\t\treturn outcome;\n\t};\n\treturn (invocation) => {\n\t\tconst running = live;\n\t\tif (running === void 0) return start(invocation);\n\t\tqueued ??= running.then(() => {\n\t\t\tqueued = void 0;\n\t\t\treturn start(invocation);\n\t\t});\n\t\treturn queued;\n\t};\n}\n/** The front door, ordered by address depth (fewest dots first) then lexicographically. */\nfunction frontDoorOrder(endpoints) {\n\treturn [...endpoints].sort((a, b) => {\n\t\tconst depth = a.address.split(\".\").length - b.address.split(\".\").length;\n\t\tif (depth !== 0) return depth;\n\t\treturn a.address < b.address ? -1 : a.address > b.address ? 1 : 0;\n\t});\n}\n/**\n* The operation's events as engine events. The legacy `[dev]` console prefix\n* is gone: these are commentary the engine renders and frames.\n*/\nfunction reportDevEvent(report, lastChild) {\n\tlet stopFailed = false;\n\treturn (event) => {\n\t\tswitch (event.kind) {\n\t\t\tcase \"ready\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"status\",\n\t\t\t\t\tsubject: \"dev\",\n\t\t\t\t\tstatus: \"ready\"\n\t\t\t\t});\n\t\t\t\tfor (const endpoint of frontDoorOrder(event.endpoints)) report({\n\t\t\t\t\tkind: \"endpoint\",\n\t\t\t\t\tname: endpoint.address,\n\t\t\t\t\turl: endpoint.url\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"unwatchable\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `${event.address} has no watchable inputs.`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"rebuild-failed\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `Rebuild failed: ${event.message}`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"watch-error\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `Watch error: ${event.message}`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"converge-failed\": {\n\t\t\t\tconst child = lastChild();\n\t\t\t\tif (child !== void 0 && child.signal !== null) return;\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `Converge failed — the running app is untouched; still watching.\nGenerated stack file: ${event.stackFilePath}\\nRun \\`${event.reproduceCommand}\\` from ${event.cwd} to reproduce this directly.`\n\t\t\t\t});\n\t\t\t\treport({\n\t\t\t\t\tkind: \"remediation\",\n\t\t\t\t\taction: {\n\t\t\t\t\t\tkind: \"run-command\",\n\t\t\t\t\t\tlabel: `Run the converge directly from ${event.cwd} to reproduce this`,\n\t\t\t\t\t\tcommand: event.reproduceCommand,\n\t\t\t\t\t\treason: `Generated stack file: ${event.stackFilePath}`\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tcase \"stopping\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"step-started\",\n\t\t\t\t\tstep: STOP_STEP,\n\t\t\t\t\tid: \"dev-stop\"\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"stop-error\":\n\t\t\t\tstopFailed = true;\n\t\t\t\treport({\n\t\t\t\t\tkind: \"message\",\n\t\t\t\t\tseverity: \"warn\",\n\t\t\t\t\ttext: `A service refused to stop: ${event.message}`\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\tcase \"stopped\":\n\t\t\t\treport({\n\t\t\t\t\tkind: \"step-finished\",\n\t\t\t\t\tstep: STOP_STEP,\n\t\t\t\t\tid: \"dev-stop\",\n\t\t\t\t\toutcome: stopFailed ? \"warning\" : \"ok\"\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t}\n\t};\n}\nconst createDevCommand = (operations) => defineSessionCommand({\n\thelp: {\n\t\tsummary: \"Bring up the application whose root node is <entry>'s default export, entirely on this machine.\",\n\t\tdescription: \"Runs credential-free and watches the app for changes, reconverging on every edit.\",\n\t\texamples: [\"{bin} dev src/service.ts\", \"{bin} dev src/service.ts --fresh\"]\n\t},\n\targs: {\n\t\tpositionals: { entry: positional.string({\n\t\t\tbrief: \"The module whose default export is the application root.\",\n\t\t\tplaceholder: \"entry\"\n\t\t}) },\n\t\tflags: {\n\t\t\tname: flag.string({\n\t\t\t\tbrief: \"Override the root node's name — the dev instance's application name.\",\n\t\t\t\tplaceholder: \"name\"\n\t\t\t}),\n\t\t\tfresh: flag.boolean({ brief: \"Destroy the dev stack and wipe the dev state directory before starting.\" })\n\t\t}\n\t},\n\tneeds: { config: composerSection },\n\tmaySpawn: true,\n\thandler: async (args, ctx) => {\n\t\tconst alchemy = convergeSpawn(ctx);\n\t\tconst result = await operations.dev({\n\t\t\tentry: args.positionals.entry,\n\t\t\tname: args.flags.name,\n\t\t\tfresh: args.flags.fresh,\n\t\t\tcwd: ctx.cwd,\n\t\t\tonEvent: reportDevEvent(ctx.report, ctx.lastChild)\n\t\t}, {\n\t\t\talchemy: coalescedConverge(alchemy),\n\t\t\tconfigPath: ctx.config.configPath\n\t\t});\n\t\tif (!result.ok) return settleConvergeFailure(result.failure, ctx);\n\t\tawait stopRequested(ctx.signal);\n\t\tawait result.value.stop();\n\t\treturn ok(void 0);\n\t}\n});\n//#endregion\n//#region src/family/family.ts\n/**\n* Composer's `CommandFamily` — the unit the engine mounts, whether the process\n* is composer's own CLI or the `prisma` bin.\n*\n* This module and everything it reaches statically must stay free of alchemy\n* and of effect VALUE imports: the `prisma` bin imports the family directly,\n* so anything in this static graph loads on `prisma --version`. The mechanism\n* that holds it is the existing lazy boundary inside the operation modules —\n* `operations/deploy.ts`, `destroy.ts`, `dev.ts` and `log.ts` each `await\n* import()` their executor, and it is the executors that reach the provider\n* tree. Importing the operations here is therefore free; importing an\n* executor, or flattening one of those dynamic imports, is not.\n* scripts/check-family-static-graph.mjs enforces this against BUILT output,\n* where type-only imports have already been erased.\n*\n* The commands close over the operations they are given, so a host can\n* mount this family against the test double and exercise real grammar, real\n* arg validation and real handlers with no alchemy behind them.\n*\n* The family ships `deploy` and `dev` only: `destroy` and `log` were retired\n* from the family surface (2026-08-21 PM review), so hosts mounting the family\n* — the `prisma` bin — never see them. They remain first-class commands of\n* composer's own bin, mounted on top of the family in engine-cli.ts.\n*/\nconst realOperations = {\n\tdeploy: deployWithDeps,\n\tdestroy: destroyWithDeps,\n\tdev: devWithDeps,\n\tlog: logWithDeps\n};\nfunction createComposerFamily(options = {}) {\n\tconst operations = options.operations ?? realOperations;\n\treturn defineCommandFamily({\n\t\tconfigSection: composerSection,\n\t\tcommands: {\n\t\t\tdeploy: createDeployCommand(operations),\n\t\t\tdev: createDevCommand(operations)\n\t\t},\n\t\tdocsBaseUrl: DOCS_BASE\n\t});\n}\n//#endregion\n//#region src/family/runtime.ts\n/**\n* Everything environmental the engine needs, assembled from a host process.\n*\n* The engine takes no globals: streams, cwd, env, TTY-ness, exit and signal\n* subscription all arrive through `Runtime`, which is what lets a test drive a\n* whole run without touching `process`. Composing one is the substantive part\n* of hosting the engine — `createCli` and `Cli.run` are two calls.\n*\n* Credentials come from the engine's own environment-only manager, which\n* composes a session from PRISMA_SERVICE_TOKEN / PRISMA_WORKSPACE_ID and\n* refuses every mutation. That is the whole of composer's standalone auth\n* story: this CLI has no login flow and mounts no auth commands, so there is\n* nothing to store — the two variables ARE the credential.\n*/\n/** Where the management API lives. Matches the lowering client's default origin; the env var is the escape hatch for staging. */\nconst DEFAULT_MANAGEMENT_API_BASE_URL = \"https://api.prisma.io\";\nconst DEFAULT_AUTH_BASE_URL = \"https://auth.prisma.io\";\n/**\n* Starts the converge child: inherited stdio, this process's own group, no\n* `detached` and no new console — which is what lets the terminal deliver\n* Ctrl-C to the child natively instead of the CLI forwarding it. The engine\n* never imports node:child_process; this adapter is the whole of the host's\n* side of that seam.\n*/\nconst spawnChild = (request) => {\n\tconst child = spawn(request.command, [...request.args], {\n\t\tcwd: request.cwd,\n\t\tstdio: \"inherit\",\n\t\tenv: request.env\n\t});\n\treturn {\n\t\tended: new Promise((resolve, reject) => {\n\t\t\tchild.on(\"error\", reject);\n\t\t\tchild.on(\"close\", (exitCode, signal) => {\n\t\t\t\tresolve({\n\t\t\t\t\texitCode,\n\t\t\t\t\tsignal\n\t\t\t\t});\n\t\t\t});\n\t\t}),\n\t\tkill: (signal) => {\n\t\t\tchild.kill(signal);\n\t\t}\n\t};\n};\n/**\n* The SDK's client construction config. The engine requires all four fields\n* whenever a credential manager is wired, but this host reaches none of the\n* login paths: an environment credential carries no refresh token, so nothing\n* ever refreshes and `clientId`/`redirectUri` are never read. They are\n* env-overridable rather than hard-coded so a staging run can point the whole\n* client somewhere else in one place.\n*/\nfunction clientConfig(env, apiBaseUrl) {\n\treturn {\n\t\tclientId: env[\"PRISMA_CLIENT_ID\"] ?? \"prisma-composer-cli\",\n\t\tredirectUri: env[\"PRISMA_REDIRECT_URI\"] ?? \"http://127.0.0.1/callback\",\n\t\tapiBaseUrl,\n\t\tauthBaseUrl: env[\"PRISMA_AUTH_URL\"] ?? DEFAULT_AUTH_BASE_URL\n\t};\n}\n/**\n* What this process runs on, for `ctx.host`. Bun and Deno both announce\n* themselves in `versions`; nothing else does, so an absent marker means Node.\n*/\nfunction describeHost(host) {\n\tconst name = [\"bun\", \"deno\"].find((candidate) => host.versions[candidate] !== void 0) ?? \"node\";\n\treturn {\n\t\truntime: {\n\t\t\tname,\n\t\t\tversion: host.versions[name] ?? host.version\n\t\t},\n\t\tplatform: host.platform,\n\t\tarch: host.arch\n\t};\n}\n/**\n* Which package manager invoked us, read from the `npm_config_user_agent`\n* every major manager sets (`pnpm/10.27.0 npm/? node/v24.16.0 darwin arm64`).\n* `undefined` when the CLI was run directly rather than through a manager — a\n* normal case, not a failure, so nothing is inferred from the filesystem, and\n* the engine falls back to its own detection from the project at cwd.\n*/\nfunction detectPackageManager(env) {\n\tconst agent = env[\"npm_config_user_agent\"];\n\tif (agent === void 0) return void 0;\n\tconst name = agent.split(\"/\")[0];\n\tswitch (name) {\n\t\tcase \"npm\":\n\t\tcase \"pnpm\":\n\t\tcase \"yarn\":\n\t\tcase \"bun\":\n\t\tcase \"deno\": return name;\n\t\tdefault: return;\n\t}\n}\n/**\n* The config loader arrives as a function rather than an already-loaded config\n* because the engine reads `prisma.config.ts` on demand — only when the command\n* it is about to run declares a config section, and with whatever file\n* `--config` named. A host that loaded the file up front would read it for runs\n* that never needed it, and would have nowhere to put `--config`.\n*\n* Nothing here answers \"is this CI\": the engine detects it from `env` itself,\n* and `isCIOverride` exists only for hosts where that detection cannot be\n* right — composer is not one.\n*/\nconst nonEmpty = (value) => value !== void 0 && value.length > 0 ? value : void 0;\nfunction createRuntime(host, loadConfig) {\n\tconst env = host.env;\n\tconst apiBaseUrl = nonEmpty(env[\"PRISMA_API_URL\"]) ?? nonEmpty(env[\"PRISMA_MANAGEMENT_API_URL\"]) ?? DEFAULT_MANAGEMENT_API_BASE_URL;\n\tconst packageManager = detectPackageManager(env);\n\treturn {\n\t\tstdout: host.stdout,\n\t\tstderr: host.stderr,\n\t\tstdin: host.stdin,\n\t\tcwd: host.cwd(),\n\t\tenv,\n\t\tisTty: {\n\t\t\tstdin: host.stdin.isTTY === true,\n\t\t\tstdout: host.stdout.isTTY === true,\n\t\t\tstderr: host.stderr.isTTY === true\n\t\t},\n\t\texit: (code) => host.exit(code),\n\t\tonSignal: (cb) => {\n\t\t\tconst onSigint = () => {\n\t\t\t\tcb(\"SIGINT\");\n\t\t\t};\n\t\t\tconst onSigterm = () => {\n\t\t\t\tcb(\"SIGTERM\");\n\t\t\t};\n\t\t\thost.on(\"SIGINT\", onSigint);\n\t\t\thost.on(\"SIGTERM\", onSigterm);\n\t\t\treturn () => {\n\t\t\t\thost.off(\"SIGINT\", onSigint);\n\t\t\t\thost.off(\"SIGTERM\", onSigterm);\n\t\t\t};\n\t\t},\n\t\tloadConfig,\n\t\tcredentialManager: new EnvironmentCredentialManager({ env }),\n\t\tmanagementApiClientConfig: clientConfig(env, apiBaseUrl),\n\t\tspawn: spawnChild,\n\t\tmanagementApi: { baseUrl: apiBaseUrl },\n\t\t...packageManager !== void 0 && { packageManager },\n\t\thost: describeHost(host)\n\t};\n}\n//#endregion\n//#region src/family/engine-cli.ts\n/**\n* Composer's own CLI, rebuilt as a thin composition of the family it\n* publishes: `createCli` over `createComposerFamily()`, `Cli.run` with a\n* Runtime. Grammar, help, arg validation, output framing, exit codes and\n* signal ownership all belong to the engine now — this module contributes the\n* family and the environment, and nothing else.\n*\n* Running composer's commands through the same path an external host uses is\n* the point: it is what proves the family works standalone before the `prisma`\n* bin mounts it.\n*\n* This IS composer's CLI. The clipanion shell it replaced, and the bespoke\n* runner that shelled out to alchemy, are gone; `bin.ts` is a call into here.\n*/\nconst BINARY_NAME = \"prisma-composer\";\n/**\n* Composer's commands mount at the top level of its own CLI (`prisma-composer\n* deploy`). The bin mounts more than the family carries: `destroy` and `log`\n* were retired from the family (the surface the `prisma` bin mounts, per the\n* 2026-08-21 PM review) but stay first-class commands of `prisma-composer`\n* itself, so their definitions are mounted here on top of the family.\n*/\nfunction mountedTree(family, operations) {\n\treturn {\n\t\t...family.commands,\n\t\tdestroy: createDestroyCommand(operations),\n\t\tlog: createLogCommand(operations)\n\t};\n}\nfunction createComposerCli(spec) {\n\tconst operations = spec.operations ?? realOperations;\n\tconst family = createComposerFamily({ operations });\n\treturn createCli({\n\t\tname: BINARY_NAME,\n\t\tversion: spec.version,\n\t\tcommandFamilies: [family],\n\t\tgroups: {},\n\t\tcommands: mountedTree(family, operations)\n\t});\n}\n/**\n* Composes the Runtime and runs one invocation. Returns the exit code rather\n* than exiting, so the caller owns the process — a bin assigns it to\n* `process.exitCode` and lets the streams drain, as composer's CLI has always\n* done.\n*\n* `prisma.config.ts` is not read here. The loader goes in as a function, and the\n* engine calls it only when the command it is about to run declares a config\n* section, passing it the file `--config` named; the loader resolves that\n* against the host's cwd.\n*/\nfunction runComposerCli(argv, host, spec, hooks) {\n\tconst runtime = createRuntime(host, (configPath) => loadConfig(host.cwd(), configPath));\n\treturn createComposerCli(spec).run(argv, runtime, hooks);\n}\n//#endregion\nexport { realOperations as a, createComposerFamily as i, createComposerCli as n, composerSection as o, runComposerCli as r, toEngineError as s, BINARY_NAME as t };\n\n//# sourceMappingURL=engine-cli-BI4fPmYY.mjs.map"],"mappings":";;;;;;;;;;AASA,eAAe,eAAe,OAAO,MAAM;CAC1C,MAAM,MAAM,MAAM,OAAO,QAAQ,IAAI;CACrC,IAAI;CACJ,IAAI;EACH,WAAW,MAAM,OAAO;CACzB,SAAS,OAAO;EACf,OAAOA,QAAM,oBAAoB,UAAU,OAAO,GAAG,CAAC;CACvD;CACA,OAAO,SAAS,cAAc,OAAO,MAAM,GAAG;AAC/C;;;;AASA,eAAe,gBAAgB,OAAO,MAAM;CAC3C,MAAM,MAAM,MAAM,OAAO,QAAQ,IAAI;CACrC,IAAI;CACJ,IAAI;EACH,WAAW,MAAM,OAAO;CACzB,SAAS,OAAO;EACf,OAAOA,QAAM,oBAAoB,WAAW,OAAO,GAAG,CAAC;CACxD;CACA,OAAO,SAAS,eAAe,OAAO,MAAM,GAAG;AAChD;;;;AASA,eAAe,YAAY,OAAO,MAAM;CACvC,MAAM,MAAM,MAAM,OAAO,QAAQ,IAAI;CACrC,IAAI;CACJ,IAAI;EACH,WAAW,MAAM,OAAO;CACzB,SAAS,OAAO;EACf,OAAOA,QAAM,oBAAoB,OAAO,OAAO,GAAG,CAAC;CACpD;CACA,OAAO,SAAS,WAAW,OAAO,MAAM,GAAG;AAC5C;;;;AASA,eAAe,YAAY,OAAO,MAAM;CACvC,MAAM,MAAM,MAAM,OAAO,QAAQ,IAAI;CACrC,IAAI;CACJ,IAAI;EACH,WAAW,MAAM,OAAO;CACzB,SAAS,OAAO;EACf,OAAOA,QAAM,oBAAoB,OAAO,OAAO,GAAG,CAAC;CACpD;CACA,OAAO,SAAS,WAAW,OAAO,MAAM,GAAG;AAC5C;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACvCA,SAAS,iBAAiB,KAAK;CAC9B,OAAO,QAAQ,KAAK,IAAI,CAAC,IAAI,CAAC;EAC7B,MAAM;EACN,OAAO;CACR,CAAC;AACF;;AAEA,SAAS,cAAc,OAAO;CAC7B,OAAO,IAAIC,mBAAqB,MAAM,MAAM,MAAM,SAAS;EAC1D,UAAU,MAAM;EAChB,aAAa,iBAAiB,MAAM,GAAG;EACvC,GAAG,MAAM,QAAQ,KAAK,IAAI,CAAC,IAAI,EAAE,KAAK,MAAM,IAAI;EAChD,GAAG,MAAM,UAAU,KAAK,IAAI,CAAC,IAAI,EAAE,OAAO,MAAM,MAAM;EACtD,GAAG,MAAM,SAAS,KAAK,IAAI,CAAC,IAAI,EAAE,MAAM,MAAM,KAAK;EACnD,GAAG,MAAM,YAAY,KAAK,IAAI,CAAC,IAAI,EAAE,SAAS,MAAM,QAAQ;EAC5D,OAAO;CACR,CAAC;AACF;;;AAKA,SAAS,cAAc,KAAK;CAC3B,OAAO,OAAO,eAAe;EAC5B,MAAM,OAAO,mBAAmB,UAAU;EAC1C,OAAO,MAAM,IAAI,MAAM;GACtB,SAAS,KAAK;GACd,MAAM,KAAK;GACX,KAAK,KAAK;GACV,KAAK,KAAK;EACX,CAAC;CACF;AACD;;;AAGA,SAAS,cAAc,MAAM;CAC5B,OAAO;EACN,SAAS,KAAK;EACd,YAAY,KAAK;EACjB,aAAa;GACZ,aAAa,KAAK;GAClB,QAAQ,KAAK;EACd;CACD;AACD;;;;;AAKA,SAAS,cAAc,SAAS;CAC/B,MAAM,cAAc,qBAAqB,OAAO;CAChD,IAAI,gBAAgB,KAAK,GAAG,OAAO,CAAC;CACpC,OAAO,CAAC;EACP,MAAM;EACN,OAAO,kCAAkC,YAAY,IAAI;EACzD,SAAS,YAAY;EACrB,QAAQ,yBAAyB,YAAY;CAC9C,CAAC;AACF;;;;;;;;;;;AAWA,SAAS,sBAAsB,SAAS,KAAK;CAC5C,MAAM,QAAQ,IAAI,UAAU;CAC5B,IAAI,UAAU,KAAK,KAAK,MAAM,aAAa,GAAG,OAAO,GAAG,oBAAoB,EAAE,aAAa,cAAc,OAAO,EAAE,CAAC,CAAC;CACpH,OAAO,MAAM,cAAc,OAAO,CAAC;AACpC;;;;;;;;;;;;;;;;;;;;;;AAsBA,SAAS,eAAe,QAAQ,KAAK,SAAS;CAC7C,IAAI,CAAC,OAAO,IAAI,OAAO,sBAAsB,OAAO,SAAS,GAAG;CAChE,OAAO,GAAG,QAAQ,OAAO,KAAK,CAAC;AAChC;;;;;;;;;;;;;;;AAiBA,MAAM,eAAe,CAAC,YAAY;AAClC,SAAS,WAAW,MAAM;CACzB,OAAO;EACN,MAAM,KAAK;EACX,UAAU,KAAK;EACf,SAAS,KAAK;EACd,GAAG,KAAK,QAAQ,KAAK,IAAI,CAAC,IAAI,EAAE,KAAK,KAAK,IAAI;EAC9C,aAAa,KAAK,QAAQ,KAAK,IAAI,CAAC,IAAI,CAAC;GACxC,MAAM;GACN,OAAO,KAAK;EACb,CAAC;CACF;AACD;AACA,SAAS,SAAS,KAAK;CACtB,IAAI,QAAQ,KAAK,GAAG,OAAO;EAC1B,IAAI;EACJ,OAAO,CAAC;EACR,aAAa,CAAC;CACf;CACA,IAAI,OAAO,QAAQ,YAAY,QAAQ,QAAQ,MAAM,QAAQ,GAAG,GAAG,OAAO;EACzE,IAAI;EACJ,aAAa,CAAC,WAAW;GACxB,MAAM;GACN,UAAU;GACV,SAAS;GACT,KAAK;EACN,CAAC,CAAC;CACH;CACA,IAAI;CACJ,IAAI;EACH,SAAS,EAAE,GAAG,IAAI;CACnB,QAAQ;EACP,OAAO;GACN,IAAI;GACJ,aAAa,CAAC,WAAW;IACxB,MAAM;IACN,UAAU;IACV,SAAS;IACT,KAAK;IACL,KAAK;GACN,CAAC,CAAC;EACH;CACD;CACA,MAAM,aAAa,OAAO;CAC1B,IAAI,eAAe,KAAK,MAAM,OAAO,eAAe,YAAY,WAAW,WAAW,IAAI,OAAO;EAChG,IAAI;EACJ,aAAa,CAAC,WAAW;GACxB,MAAM;GACN,UAAU;GACV,SAAS;GACT,KAAK;GACL,KAAK;EACN,CAAC,CAAC;CACH;CACA,MAAM,UAAU,OAAO,KAAK,MAAM,CAAC,CAAC,QAAQ,QAAQ,CAAC,aAAa,SAAS,GAAG,CAAC;CAC/E,OAAO;EACN,IAAI;EACJ,OAAO,eAAe,KAAK,IAAI,CAAC,IAAI,EAAE,WAAW;EACjD,aAAa,QAAQ,KAAK,QAAQ,WAAW;GAC5C,MAAM;GACN,UAAU;GACV,SAAS,2CAA2C,IAAI;GACxD,KAAK,YAAY,IAAI;EACtB,CAAC,CAAC;CACH;AACD;AACA,MAAM,kBAAkB,oBAAoB;CAC3C,MAAM;CACN;AACD,CAAC;;;;;;;AASD,SAAS,SAAS,OAAO,YAAY;CACpC,IAAI,UAAU,KAAK,KAAK,YAAY,OAAO,MAAM,IAAIA,mBAAqB,0BAA0B,oEAAoE,CAAC;CACzK,IAAI,UAAU,KAAK,KAAK,CAAC,YAAY,OAAO,MAAM,IAAIA,mBAAqB,yBAAyB,0CAA0C,EAAE,aAAa,CAAC;EAC7J,MAAM;EACN,OAAO;CACR,CAAC,EAAE,CAAC,CAAC;CACL,OAAO,GAAG,UAAU,KAAK,IAAI;EAC5B,MAAM;EACN;CACD,IAAI,EAAE,MAAM,aAAa,CAAC;AAC3B;;;;;;;;;;;;AAcA,eAAe,cAAc,KAAK;CACjC,QAAQ,MAAM,IAAI,iBAAiB,EAAA,EAAI;AACxC;;;;;;;;;AAWA,MAAM,wBAAwB,eAAe,cAAc;CAC1D,MAAM;EACL,SAAS;EACT,aAAa;EACb,UAAU,CAAC,kDAAkD,2CAA2C;CACzG;CACA,MAAM;EACL,aAAa,EAAE,OAAO,WAAW,OAAO;GACvC,OAAO;GACP,aAAa;EACd,CAAC,EAAE;EACH,OAAO;GACN,MAAM,KAAK,OAAO;IACjB,OAAO;IACP,aAAa;GACd,CAAC;GACD,OAAO,KAAK,OAAO;IAClB,OAAO;IACP,aAAa;GACd,CAAC;GACD,YAAY,KAAK,QAAQ,EAAE,OAAO,sDAAsD,CAAC;EAC1F;CACD;CACA,OAAO;EACN,QAAQ;EACR,aAAa;CACd;CACA,UAAU;CACV,SAAS,OAAO,MAAM,QAAQ;EAC7B,MAAM,SAAS,SAAS,KAAK,MAAM,OAAO,KAAK,MAAM,UAAU;EAC/D,IAAI,CAAC,OAAO,IAAI,OAAO;EACvB,MAAM,UAAU,cAAc,GAAG;EACjC,OAAO,eAAe,MAAM,WAAW,QAAQ;GAC9C,OAAO,KAAK,YAAY;GACxB,MAAM,KAAK,MAAM;GACjB,QAAQ,OAAO;GACf,KAAK,IAAI;GACT,UAAU,UAAU;IACnB,IAAI,MAAM,SAAS,yBAAyB;IAC5C,IAAI,OAAO;KACV,MAAM;KACN,UAAU;KACV,MAAM,+BAA+B,MAAM,IAAI;IAChD,CAAC;GACF;EACD,GAAG,cAAc;GAChB;GACA,YAAY,IAAI,OAAO;GACvB,aAAa,MAAM,cAAc,GAAG;GACpC,QAAQ,IAAI;EACb,CAAC,CAAC,GAAG,WAAW,IAAI,QAAQ,EAAE,MAAM,KAAK,EAAE,GAAG;GAC7C,aAAa,CAAC;IACb,MAAM;IACN,QAAQ;IACR,MAAM;GACP,CAAC;GACD,cAAc,CAAC;GACf,YAAY,KAAK;GACjB,YAAY,CAAC;EACd,CAAC,CAAC;CACH;AACD,CAAC;;;;;;;;;;;;;;AAgBD,MAAM,eAAe;AACrB,MAAM,oBAAoB,eAAe,qBAAqB;CAC7D,MAAM;EACL,SAAS;EACT,UAAU,CAAC,4BAA4B,0CAA0C;CAClF;CACA,MAAM;EACL,aAAa;GACZ,OAAO,WAAW,OAAO;IACxB,OAAO;IACP,aAAa;GACd,CAAC;GACD,SAAS,WAAW,eAAe;IAClC,OAAO;IACP,aAAa;GACd,CAAC;EACF;EACA,OAAO;GACN,MAAM,KAAK,OAAO;IACjB,OAAO;IACP,aAAa;GACd,CAAC;GACD,MAAM,KAAK,OAAO;IACjB,OAAO,uEAAuE,OAAO,YAAY,EAAE;IACnG,aAAa;IACb,SAAS;GACV,CAAC;EACF;CACD;CACA,OAAO,EAAE,QAAQ,gBAAgB;CACjC,SAAS,OAAO,MAAM,QAAQ;EAC7B,MAAM,kBAAkB,UAAU;GACjC,IAAI,OAAO;IACV,MAAM;IACN,UAAU;IACV,MAAM,MAAM,SAAS,kBAAkB,kBAAkB,MAAM,YAAY,gCAAgC,OAAO,MAAM,KAAK,EAAE;GAChI,CAAC;EACF;EACA,MAAM,SAAS,MAAM,WAAW,IAAI;GACnC,OAAO,KAAK,YAAY;GACxB,MAAM,KAAK,MAAM;GACjB,SAAS,KAAK,YAAY;GAC1B,MAAM,KAAK,MAAM,QAAQ;GACzB,KAAK,IAAI;GACT,QAAQ,IAAI;GACZ,SAAS;EACV,GAAG,EAAE,YAAY,IAAI,OAAO,WAAW,CAAC;EACxC,IAAI,CAAC,OAAO,IAAI,OAAO,MAAM,cAAc,OAAO,OAAO,CAAC;EAC1D,MAAM,WAAW,OAAO;EACxB,IAAI,SAAS,SAAS,WAAW,GAAG;GACnC,IAAI,OAAO;IACV,MAAM;IACN,UAAU;IACV,MAAM,4BAA4B,SAAS,QAAQ,gCAAgC,KAAK,YAAY,MAAM;GAC3G,CAAC;GACD,OAAO,GAAG,KAAK,CAAC;EACjB;EACA,WAAW,MAAM,EAAE,SAAS,UAAU,SAAS,OAAO,IAAI,OAAO;GAChE,MAAM;GACN,QAAQ;GACR,SAAS;GACT,MAAM,IAAI,QAAQ,IAAI;EACvB,CAAC;EACD,OAAO,GAAG,KAAK,CAAC;CACjB;AACD,CAAC;;;;;;;;AAUD,MAAM,uBAAuB,eAAe,cAAc;CACzD,MAAM;EACL,SAAS;EACT,UAAU,CAAC,+BAA+B,+CAA+C;CAC1F;CACA,MAAM;EACL,aAAa,EAAE,OAAO,WAAW,OAAO;GACvC,OAAO;GACP,aAAa;EACd,CAAC,EAAE;EACH,OAAO;GACN,MAAM,KAAK,OAAO;IACjB,OAAO;IACP,aAAa;GACd,CAAC;GACD,OAAO,KAAK,OAAO;IAClB,OAAO;IACP,aAAa;GACd,CAAC;GACD,QAAQ,KAAK,OAAO;IACnB,OAAO;IACP,aAAa;GACd,CAAC;GACD,SAAS,KAAK,OAAO;IACpB,OAAO;IACP,aAAa;GACd,CAAC;EACF;CACD;CACA,OAAO;EACN,QAAQ;EACR,aAAa;CACd;CACA,UAAU;CACV,SAAS,OAAO,MAAM,QAAQ;EAC7B,MAAM,UAAU,cAAc,GAAG;EACjC,OAAO,eAAe,MAAM,WAAW,OAAO;GAC7C,OAAO,KAAK,YAAY;GACxB,MAAM,KAAK,MAAM;GACjB,OAAO,KAAK,MAAM;GAClB,KAAK,IAAI;GACT,YAAY,KAAK,MAAM;GACvB,UAAU,KAAK,MAAM;EACtB,GAAG,cAAc;GAChB;GACA,YAAY,IAAI,OAAO;GACvB,aAAa,MAAM,cAAc,GAAG;GACpC,QAAQ,IAAI;EACb,CAAC,CAAC,GAAG,MAAM,EAAE,cAAc,IAAI,QAAQ,EAAE,MAAM,EAAE,SAAS,WAAW,KAAK,EAAE,GAAG;GAC9E,QAAQ,OAAO,YAAY,KAAK,IAAI,CAAC;IACpC,MAAM;IACN,QAAQ;IACR,MAAM;GACP,CAAC,IAAI,CAAC;IACL,MAAM;IACN,QAAQ;IACR,MAAM,YAAY,GAAG,UAAU,QAAQ,GAAG,EAAE;GAC7C,GAAG;IACF,MAAM;IACN,SAAS,CAAC,WAAW,UAAU;IAC/B,MAAM,QAAQ,MAAM,KAAK,SAAS,CAAC,KAAK,SAAS,KAAK,SAAS,KAAK,WAAW,GAAG,OAAO,KAAK,GAAG,OAAO,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC;GAC1H,CAAC;GACD,cAAc,CAAC;GACf,aAAa,EAAE,SAAS,WAAW,KAAK;GACxC,YAAY,CAAC;EACd,CAAC,CAAC;CACH;AACD,CAAC;AAGD,MAAM,YAAY;;AAElB,SAAS,cAAc,QAAQ;CAC9B,IAAI,OAAO,SAAS,OAAO,QAAQ,QAAQ;CAC3C,OAAO,IAAI,SAAS,YAAY;EAC/B,OAAO,iBAAiB,eAAe,QAAQ,GAAG,EAAE,MAAM,KAAK,CAAC;CACjE,CAAC;AACF;;;;;;;;;;AAUA,SAAS,kBAAkB,KAAK;CAC/B,IAAI;CACJ,IAAI;CACJ,MAAM,SAAS,eAAe;EAC7B,MAAM,UAAU,IAAI,UAAU;EAC9B,MAAM,UAAU,QAAQ,WAAW,KAAK,SAAS,KAAK,CAAC;EACvD,OAAO;EACP,QAAQ,WAAW;GAClB,IAAI,SAAS,SAAS,OAAO,KAAK;EACnC,CAAC;EACD,OAAO;CACR;CACA,QAAQ,eAAe;EACtB,MAAM,UAAU;EAChB,IAAI,YAAY,KAAK,GAAG,OAAO,MAAM,UAAU;EAC/C,WAAW,QAAQ,WAAW;GAC7B,SAAS,KAAK;GACd,OAAO,MAAM,UAAU;EACxB,CAAC;EACD,OAAO;CACR;AACD;;AAEA,SAAS,eAAe,WAAW;CAClC,OAAO,CAAC,GAAG,SAAS,CAAC,CAAC,MAAM,GAAG,MAAM;EACpC,MAAM,QAAQ,EAAE,QAAQ,MAAM,GAAG,CAAC,CAAC,SAAS,EAAE,QAAQ,MAAM,GAAG,CAAC,CAAC;EACjE,IAAI,UAAU,GAAG,OAAO;EACxB,OAAO,EAAE,UAAU,EAAE,UAAU,KAAK,EAAE,UAAU,EAAE,UAAU,IAAI;CACjE,CAAC;AACF;;;;;AAKA,SAAS,eAAe,QAAQ,WAAW;CAC1C,IAAI,aAAa;CACjB,QAAQ,UAAU;EACjB,QAAQ,MAAM,MAAd;GACC,KAAK;IACJ,OAAO;KACN,MAAM;KACN,SAAS;KACT,QAAQ;IACT,CAAC;IACD,KAAK,MAAM,YAAY,eAAe,MAAM,SAAS,GAAG,OAAO;KAC9D,MAAM;KACN,MAAM,SAAS;KACf,KAAK,SAAS;IACf,CAAC;IACD;GACD,KAAK;IACJ,OAAO;KACN,MAAM;KACN,UAAU;KACV,MAAM,GAAG,MAAM,QAAQ;IACxB,CAAC;IACD;GACD,KAAK;IACJ,OAAO;KACN,MAAM;KACN,UAAU;KACV,MAAM,mBAAmB,MAAM;IAChC,CAAC;IACD;GACD,KAAK;IACJ,OAAO;KACN,MAAM;KACN,UAAU;KACV,MAAM,gBAAgB,MAAM;IAC7B,CAAC;IACD;GACD,KAAK,mBAAmB;IACvB,MAAM,QAAQ,UAAU;IACxB,IAAI,UAAU,KAAK,KAAK,MAAM,WAAW,MAAM;IAC/C,OAAO;KACN,MAAM;KACN,UAAU;KACV,MAAM;wBACa,MAAM,cAAc,UAAU,MAAM,iBAAiB,UAAU,MAAM,IAAI;IAC7F,CAAC;IACD,OAAO;KACN,MAAM;KACN,QAAQ;MACP,MAAM;MACN,OAAO,kCAAkC,MAAM,IAAI;MACnD,SAAS,MAAM;MACf,QAAQ,yBAAyB,MAAM;KACxC;IACD,CAAC;IACD;GACD;GACA,KAAK;IACJ,OAAO;KACN,MAAM;KACN,MAAM;KACN,IAAI;IACL,CAAC;IACD;GACD,KAAK;IACJ,aAAa;IACb,OAAO;KACN,MAAM;KACN,UAAU;KACV,MAAM,8BAA8B,MAAM;IAC3C,CAAC;IACD;GACD,KAAK;IACJ,OAAO;KACN,MAAM;KACN,MAAM;KACN,IAAI;KACJ,SAAS,aAAa,YAAY;IACnC,CAAC;IACD;EACF;CACD;AACD;AACA,MAAM,oBAAoB,eAAe,qBAAqB;CAC7D,MAAM;EACL,SAAS;EACT,aAAa;EACb,UAAU,CAAC,4BAA4B,kCAAkC;CAC1E;CACA,MAAM;EACL,aAAa,EAAE,OAAO,WAAW,OAAO;GACvC,OAAO;GACP,aAAa;EACd,CAAC,EAAE;EACH,OAAO;GACN,MAAM,KAAK,OAAO;IACjB,OAAO;IACP,aAAa;GACd,CAAC;GACD,OAAO,KAAK,QAAQ,EAAE,OAAO,0EAA0E,CAAC;EACzG;CACD;CACA,OAAO,EAAE,QAAQ,gBAAgB;CACjC,UAAU;CACV,SAAS,OAAO,MAAM,QAAQ;EAC7B,MAAM,UAAU,cAAc,GAAG;EACjC,MAAM,SAAS,MAAM,WAAW,IAAI;GACnC,OAAO,KAAK,YAAY;GACxB,MAAM,KAAK,MAAM;GACjB,OAAO,KAAK,MAAM;GAClB,KAAK,IAAI;GACT,SAAS,eAAe,IAAI,QAAQ,IAAI,SAAS;EAClD,GAAG;GACF,SAAS,kBAAkB,OAAO;GAClC,YAAY,IAAI,OAAO;EACxB,CAAC;EACD,IAAI,CAAC,OAAO,IAAI,OAAO,sBAAsB,OAAO,SAAS,GAAG;EAChE,MAAM,cAAc,IAAI,MAAM;EAC9B,MAAM,OAAO,MAAM,KAAK;EACxB,OAAO,GAAG,KAAK,CAAC;CACjB;AACD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;AA2BD,MAAM,iBAAiB;CACtB,QAAQ;CACR,SAAS;CACT,KAAK;CACL,KAAK;AACN;AACA,SAAS,qBAAqB,UAAU,CAAC,GAAG;CAC3C,MAAM,aAAa,QAAQ,cAAc;CACzC,OAAO,oBAAoB;EAC1B,eAAe;EACf,UAAU;GACT,QAAQ,oBAAoB,UAAU;GACtC,KAAK,iBAAiB,UAAU;EACjC;EACA,aAAa;CACd,CAAC;AACF;;;;;;;;;;;;;;;;AAkBA,MAAM,kCAAkC;AACxC,MAAM,wBAAwB;;;;;;;;AAQ9B,MAAM,cAAc,YAAY;CAC/B,MAAM,QAAQ,MAAM,QAAQ,SAAS,CAAC,GAAG,QAAQ,IAAI,GAAG;EACvD,KAAK,QAAQ;EACb,OAAO;EACP,KAAK,QAAQ;CACd,CAAC;CACD,OAAO;EACN,OAAO,IAAI,SAAS,SAAS,WAAW;GACvC,MAAM,GAAG,SAAS,MAAM;GACxB,MAAM,GAAG,UAAU,UAAU,WAAW;IACvC,QAAQ;KACP;KACA;IACD,CAAC;GACF,CAAC;EACF,CAAC;EACD,OAAO,WAAW;GACjB,MAAM,KAAK,MAAM;EAClB;CACD;AACD;;;;;;;;;AASA,SAAS,aAAa,KAAK,YAAY;CACtC,OAAO;EACN,UAAU,IAAI,uBAAuB;EACrC,aAAa,IAAI,0BAA0B;EAC3C;EACA,aAAa,IAAI,sBAAsB;CACxC;AACD;;;;;AAKA,SAAS,aAAa,MAAM;CAC3B,MAAM,OAAO,CAAC,OAAO,MAAM,CAAC,CAAC,MAAM,cAAc,KAAK,SAAS,eAAe,KAAK,CAAC,KAAK;CACzF,OAAO;EACN,SAAS;GACR;GACA,SAAS,KAAK,SAAS,SAAS,KAAK;EACtC;EACA,UAAU,KAAK;EACf,MAAM,KAAK;CACZ;AACD;;;;;;;;AAQA,SAAS,qBAAqB,KAAK;CAClC,MAAM,QAAQ,IAAI;CAClB,IAAI,UAAU,KAAK,GAAG,OAAO,KAAK;CAClC,MAAM,OAAO,MAAM,MAAM,GAAG,CAAC,CAAC;CAC9B,QAAQ,MAAR;EACC,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK,QAAQ,OAAO;EACpB,SAAS;CACV;AACD;;;;;;;;;;;;AAYA,MAAM,YAAY,UAAU,UAAU,KAAK,KAAK,MAAM,SAAS,IAAI,QAAQ,KAAK;AAChF,SAAS,cAAc,MAAM,YAAY;CACxC,MAAM,MAAM,KAAK;CACjB,MAAM,aAAa,SAAS,IAAI,iBAAiB,KAAK,SAAS,IAAI,4BAA4B,KAAK;CACpG,MAAM,iBAAiB,qBAAqB,GAAG;CAC/C,OAAO;EACN,QAAQ,KAAK;EACb,QAAQ,KAAK;EACb,OAAO,KAAK;EACZ,KAAK,KAAK,IAAI;EACd;EACA,OAAO;GACN,OAAO,KAAK,MAAM,UAAU;GAC5B,QAAQ,KAAK,OAAO,UAAU;GAC9B,QAAQ,KAAK,OAAO,UAAU;EAC/B;EACA,OAAO,SAAS,KAAK,KAAK,IAAI;EAC9B,WAAW,OAAO;GACjB,MAAM,iBAAiB;IACtB,GAAG,QAAQ;GACZ;GACA,MAAM,kBAAkB;IACvB,GAAG,SAAS;GACb;GACA,KAAK,GAAG,UAAU,QAAQ;GAC1B,KAAK,GAAG,WAAW,SAAS;GAC5B,aAAa;IACZ,KAAK,IAAI,UAAU,QAAQ;IAC3B,KAAK,IAAI,WAAW,SAAS;GAC9B;EACD;EACA;EACA,mBAAmB,IAAI,6BAA6B,EAAE,IAAI,CAAC;EAC3D,2BAA2B,aAAa,KAAK,UAAU;EACvD,OAAO;EACP,eAAe,EAAE,SAAS,WAAW;EACrC,GAAG,mBAAmB,KAAK,KAAK,EAAE,eAAe;EACjD,MAAM,aAAa,IAAI;CACxB;AACD;;;;;;;;;;;;;;;AAiBA,MAAM,cAAc;;;;;;;;AAQpB,SAAS,YAAY,QAAQ,YAAY;CACxC,OAAO;EACN,GAAG,OAAO;EACV,SAAS,qBAAqB,UAAU;EACxC,KAAK,iBAAiB,UAAU;CACjC;AACD;AACA,SAAS,kBAAkB,MAAM;CAChC,MAAM,aAAa,KAAK,cAAc;CACtC,MAAM,SAAS,qBAAqB,EAAE,WAAW,CAAC;CAClD,OAAO,UAAU;EAChB,MAAM;EACN,SAAS,KAAK;EACd,iBAAiB,CAAC,MAAM;EACxB,QAAQ,CAAC;EACT,UAAU,YAAY,QAAQ,UAAU;CACzC,CAAC;AACF;;;;;;;;;;;;AAYA,SAAS,eAAe,MAAM,MAAM,MAAM,OAAO;CAChD,MAAM,UAAU,cAAc,OAAO,eAAe,WAAW,KAAK,IAAI,GAAG,UAAU,CAAC;CACtF,OAAO,kBAAkB,IAAI,CAAC,CAAC,IAAI,MAAM,SAAS,KAAK;AACxD"}
@@ -6,7 +6,9 @@ import { existsSync } from "node:fs";
6
6
  import * as path from "node:path";
7
7
  import { fileURLToPath, pathToFileURL } from "node:url";
8
8
  import * as c12 from "c12";
9
- //#region ../../0-framework/1-core/core/dist/graph-BJgUfGB0.mjs
9
+ //#region ../../0-framework/1-core/core/dist/graph-BfKAg2Ap.mjs
10
+ /** The reserved name of a resource's single anonymous output port. Rejected as a user-declared port name (node.ts). */
11
+ const RESOURCE_OUT_PORT = "$out";
10
12
  /**
11
13
  * Thrown by Load when the graph is malformed. Structured at origin
12
14
  * (base-type rule 6): one type-level code covers every raise site until a
@@ -102,6 +104,35 @@ function topoSort(nodes, edges) {
102
104
  if (order.length !== nodes.length) throw new InternalError(`topological sort processed ${order.length} of ${nodes.length} nodes — the graph contains a cycle that slipped past the DAG validation.`);
103
105
  return order.map((id) => byId.get(id)).filter((n) => n !== void 0);
104
106
  }
107
+ /**
108
+ * The declared boundary ports of a module or service node at `id`: dep slots
109
+ * as `in` ports (contractKind = the slot's `type`), exposed contracts as
110
+ * `out` ports (contractKind = the contract's `kind`). A resource's one
111
+ * `$out` port is recorded at its provision site instead (load-module.ts).
112
+ */
113
+ function boundaryPortsOf(id, node) {
114
+ const ports = [];
115
+ const slots = node.kind === "module" ? node.deps : node.inputs;
116
+ for (const [name, slot] of Object.entries(slots)) {
117
+ const type = typeof slot === "object" && slot !== null && "type" in slot && typeof slot.type === "string" ? slot.type : void 0;
118
+ ports.push({
119
+ node: id,
120
+ direction: "in",
121
+ name,
122
+ contractKind: type
123
+ });
124
+ }
125
+ for (const [name, contract] of Object.entries(node.expose ?? {})) {
126
+ const kind = typeof contract === "object" && contract !== null && "kind" in contract && typeof contract.kind === "string" ? contract.kind : void 0;
127
+ ports.push({
128
+ node: id,
129
+ direction: "out",
130
+ name,
131
+ contractKind: kind
132
+ });
133
+ }
134
+ return ports;
135
+ }
105
136
  function serviceInputs(service, serviceId) {
106
137
  if (typeof service.inputs !== "object" || service.inputs === null) throw new LoadError(`Service "${serviceId}" has no inputs map.`);
107
138
  const nodes = [];
@@ -114,6 +145,7 @@ function serviceInputs(service, serviceId) {
114
145
  const id = `${serviceId}.${input}`;
115
146
  nodes.push({
116
147
  id,
148
+ parent: serviceId,
117
149
  node: value
118
150
  });
119
151
  edges.push({
@@ -133,6 +165,7 @@ function loadService(root, rootId) {
133
165
  if (root.inputSchema !== void 0) throw new LoadError(`Service "${rootId}" declares an input schema but is being loaded directly — a lone service has no enclosing scope to bind its input. Compose it inside a module whose provision() call binds \`input: { … }\` (ADR-0042).`);
134
166
  const rootGraphNode = {
135
167
  id: rootId,
168
+ parent: void 0,
136
169
  node: root
137
170
  };
138
171
  const { nodes, edges } = serviceInputs(root, rootId);
@@ -140,11 +173,31 @@ function loadService(root, rootId) {
140
173
  root: rootGraphNode,
141
174
  nodes: [...topoSort(nodes, edges), rootGraphNode],
142
175
  edges,
176
+ ports: boundaryPortsOf(rootId, root),
177
+ authoredEdges: [],
143
178
  inputBindings: [],
144
179
  params: []
145
180
  };
146
181
  }
147
182
  /**
183
+ * Brands a ref-port with the AUTHORED endpoint it stands for — which port of
184
+ * which node the author wired, before any forwarding chain resolves. Read
185
+ * only by `authoredSourceOf`; `__providerId` keeps carrying the resolved
186
+ * producer for the flat (post-dereference) edges.
187
+ */
188
+ const AUTHORED_PORT = Symbol("prisma:authored-port");
189
+ /** The authored out-port brand carried by `ref`, if any. */
190
+ function authoredPortOf(ref) {
191
+ if (typeof ref !== "object" || ref === null) return void 0;
192
+ const brand = blindCast(ref)[AUTHORED_PORT];
193
+ if (typeof brand !== "object" || brand === null) return void 0;
194
+ const { node, name } = blindCast(brand);
195
+ return typeof node === "string" && typeof name === "string" ? {
196
+ node,
197
+ name
198
+ } : void 0;
199
+ }
200
+ /**
148
201
  * Builds the ref a provision() call hands back: the id (so a producer with no
149
202
  * exposed ports — or an untyped slot — can still be wired wholesale) plus one
150
203
  * ref-port per exposed contract, each the contract's own runtime value (so
@@ -154,7 +207,11 @@ function refFor(id, service) {
154
207
  const ports = {};
155
208
  for (const [port, contract] of Object.entries(service.expose ?? {})) ports[port] = {
156
209
  ...contract,
157
- __providerId: id
210
+ __providerId: id,
211
+ [AUTHORED_PORT]: {
212
+ node: id,
213
+ name: port
214
+ }
158
215
  };
159
216
  return blindCast({
160
217
  id,
@@ -164,14 +221,18 @@ function refFor(id, service) {
164
221
  /**
165
222
  * The resource variant of refFor: a resource has exactly one port — the
166
223
  * contract it provides — flattened onto the ref itself, tagged with the
167
- * provider id. `id` is written last so a hostile contract value cannot
168
- * clobber it.
224
+ * provider id. `id` and the authored brand are written last so a hostile
225
+ * contract value cannot clobber them.
169
226
  */
170
227
  function refForResource(id, resource) {
171
228
  return blindCast({
172
229
  ...resource.provides,
173
230
  __providerId: id,
174
- id
231
+ id,
232
+ [AUTHORED_PORT]: {
233
+ node: id,
234
+ name: RESOURCE_OUT_PORT
235
+ }
175
236
  });
176
237
  }
177
238
  /** A wired value's producer id: a ref-port's `__providerId`, or a bare ref's `id`. */
@@ -304,8 +365,14 @@ function validateParamNeedBinding(child, id, paramWiring, enclosingModuleName) {
304
365
  * across the ENTIRE recursive flatten, not per scope — a nested module may
305
366
  * forward in a producer provisioned by an ancestor scope, and it is the
306
367
  * shared `byId` (keyed by full address) that lets that resolve.
368
+ *
369
+ * `selfId` is this module's own node id — the root's given id when `address`
370
+ * is `undefined`, the full address otherwise. It anchors the authored view:
371
+ * children carry it as their `parent`, and this module's own boundary ports
372
+ * (and the authored edges touching them) are recorded against it.
307
373
  */
308
- function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes, edges, pending, inputBindings, paramBindings, byId) {
374
+ function flatten(moduleNode, address, selfId, wiring, secretWiring, paramWiring, nodes, edges, pending, inputBindings, paramBindings, byId, ports, authoredEdges) {
375
+ ports.push(...boundaryPortsOf(selfId, moduleNode));
309
376
  const localIds = /* @__PURE__ */ new Set();
310
377
  const used = /* @__PURE__ */ new Set();
311
378
  const usedSecrets = /* @__PURE__ */ new Set();
@@ -321,6 +388,33 @@ function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes,
321
388
  const markUsed = (values) => {
322
389
  for (const value of values) for (const key of Object.keys(ctxInputs)) if (value === ctxInputs[key]) used.add(key);
323
390
  };
391
+ const authoredSourceOf = (value) => {
392
+ for (const key of Object.keys(ctxInputs)) if (value === ctxInputs[key]) return {
393
+ node: selfId,
394
+ direction: "in",
395
+ name: key
396
+ };
397
+ const brand = authoredPortOf(value);
398
+ return brand === void 0 ? void 0 : {
399
+ node: brand.node,
400
+ direction: "out",
401
+ name: brand.name
402
+ };
403
+ };
404
+ /** Records the authored edge each wiring entry declares: source port → the target's own `in` port. */
405
+ const recordAuthoredWiring = (targetId, targetWiring) => {
406
+ for (const [input, ref] of Object.entries(targetWiring)) {
407
+ const from = authoredSourceOf(ref);
408
+ if (from !== void 0) authoredEdges.push({
409
+ from,
410
+ to: {
411
+ node: targetId,
412
+ direction: "in",
413
+ name: input
414
+ }
415
+ });
416
+ }
417
+ };
324
418
  const ctxSecrets = {};
325
419
  for (const key of Object.keys(moduleNode.secretSlots)) {
326
420
  const bound = secretWiring[key];
@@ -365,8 +459,15 @@ function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes,
365
459
  byId.set(fullAddress, child);
366
460
  nodes.push({
367
461
  id: fullAddress,
462
+ parent: selfId,
368
463
  node: child
369
464
  });
465
+ ports.push({
466
+ node: fullAddress,
467
+ direction: "out",
468
+ name: RESOURCE_OUT_PORT,
469
+ contractKind: child.provides.kind
470
+ });
370
471
  return refForResource(fullAddress, child);
371
472
  }
372
473
  const localWiring = { ...provisionWiring ?? {} };
@@ -398,9 +499,12 @@ function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes,
398
499
  const inputs = serviceInputs(child, fullAddress);
399
500
  nodes.push(...inputs.nodes, {
400
501
  id: fullAddress,
502
+ parent: selfId,
401
503
  node: child
402
504
  });
403
505
  edges.push(...inputs.edges, ...wiringEdges(localWiring, fullAddress));
506
+ ports.push(...boundaryPortsOf(fullAddress, child));
507
+ recordAuthoredWiring(fullAddress, localWiring);
404
508
  pending.push({
405
509
  deps: child.inputs,
406
510
  wiring: localWiring,
@@ -415,6 +519,7 @@ function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes,
415
519
  validateSecretBinding(child, id, localSecrets, moduleNode.name);
416
520
  validateParamNeedBinding(child, id, localParams, moduleNode.name);
417
521
  edges.push(...wiringEdges(localWiring, fullAddress));
522
+ recordAuthoredWiring(fullAddress, localWiring);
418
523
  pending.push({
419
524
  deps: child.deps,
420
525
  wiring: localWiring,
@@ -422,15 +527,24 @@ function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes,
422
527
  targetKind: "module",
423
528
  enclosingModuleName: moduleNode.name
424
529
  });
425
- const childOutputs = flatten(child, fullAddress, localWiring, localSecrets, localParams, nodes, edges, pending, inputBindings, paramBindings, byId);
530
+ const childOutputs = flatten(child, fullAddress, fullAddress, localWiring, localSecrets, localParams, nodes, edges, pending, inputBindings, paramBindings, byId, ports, authoredEdges);
426
531
  nodes.push({
427
532
  id: fullAddress,
533
+ parent: selfId,
428
534
  node: child
429
535
  });
430
536
  byId.set(fullAddress, child);
537
+ const brandedOutputs = {};
538
+ for (const [key, value] of Object.entries(childOutputs)) brandedOutputs[key] = typeof value === "object" && value !== null ? {
539
+ ...value,
540
+ [AUTHORED_PORT]: {
541
+ node: fullAddress,
542
+ name: key
543
+ }
544
+ } : value;
431
545
  return blindCast({
432
546
  id: fullAddress,
433
- ...childOutputs
547
+ ...brandedOutputs
434
548
  });
435
549
  };
436
550
  const ctx = blindCast({
@@ -448,6 +562,15 @@ function flatten(moduleNode, address, wiring, secretWiring, paramWiring, nodes,
448
562
  const port = outputs[key];
449
563
  if (port === void 0) throw new LoadError(`Module "${moduleNode.name}" declares expose "${key}" but its body did not return a port for it.`);
450
564
  if (!satisfiesRequired(port, contract)) throw new LoadError(`Module "${moduleNode.name}"'s returned port for expose "${key}" does not satisfy its declared contract.`);
565
+ const from = authoredSourceOf(port);
566
+ if (from !== void 0) authoredEdges.push({
567
+ from,
568
+ to: {
569
+ node: selfId,
570
+ direction: "out",
571
+ name: key
572
+ }
573
+ });
451
574
  }
452
575
  return outputs;
453
576
  }
@@ -474,17 +597,22 @@ function loadModule(root, opts) {
474
597
  const inputBindings = [];
475
598
  const paramBindings = [];
476
599
  const byId = /* @__PURE__ */ new Map();
477
- flatten(root, void 0, {}, {}, {}, nodes, edges, pending, inputBindings, paramBindings, byId);
600
+ const ports = [];
601
+ const authoredEdges = [];
602
+ flatten(root, void 0, rootId, {}, {}, {}, nodes, edges, pending, inputBindings, paramBindings, byId, ports, authoredEdges);
478
603
  for (const entry of pending) validateWiring(entry, byId);
479
604
  assertDependencyDag(edges);
480
605
  const rootGraphNode = {
481
606
  id: rootId,
607
+ parent: void 0,
482
608
  node: root
483
609
  };
484
610
  return {
485
611
  root: rootGraphNode,
486
612
  nodes: [...topoSort(nodes, edges), rootGraphNode],
487
613
  edges,
614
+ ports,
615
+ authoredEdges,
488
616
  inputBindings,
489
617
  params: paramBindings
490
618
  };
@@ -1066,4 +1194,4 @@ async function runPipeline(entry, overrideName, cwd, deps = {}, onAssembleError)
1066
1194
  //#endregion
1067
1195
  export { runPipeline as n, resolveAppIdentity as t };
1068
1196
 
1069
- //# sourceMappingURL=pipeline-Bt8QocRh-BWGl-fzK.mjs.map
1197
+ //# sourceMappingURL=pipeline-Bt8QocRh-BGjwJqNH.mjs.map