@prisma/orm-framework 8.0.0-rc.1-dev.21 → 8.0.0-rc.1-dev.23

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 (49) hide show
  1. package/dist/config-types-BqhNxw0z.mjs +67 -0
  2. package/dist/config-types-BqhNxw0z.mjs.map +1 -0
  3. package/dist/{config-types-W-87vhZ4-DQk0SSmj.d.mts → config-types-gou0jUAD.d.mts} +19 -5
  4. package/dist/config-types-gou0jUAD.d.mts.map +1 -0
  5. package/dist/config-validation-DPt5hwQx.mjs +168 -0
  6. package/dist/config-validation-DPt5hwQx.mjs.map +1 -0
  7. package/dist/config-validation-Wiqew2J9.d.mts +21 -0
  8. package/dist/config-validation-Wiqew2J9.d.mts.map +1 -0
  9. package/dist/config.d.mts +3 -4
  10. package/dist/config.mjs +3 -3
  11. package/dist/config__config-types.d.mts +2 -3
  12. package/dist/config__config-types.mjs +2 -2
  13. package/dist/config__config-validation.d.mts +2 -2
  14. package/dist/config__config-validation.mjs +2 -2
  15. package/dist/{control-CwRPkRJ7-Dk0c6D_5.d.mts → control-BWHddgfQ-CHZkHCnz.d.mts} +17 -3
  16. package/dist/control-BWHddgfQ-CHZkHCnz.d.mts.map +1 -0
  17. package/dist/{control-NxsoLvV7-CEAZQk3h.mjs → control-C_8057XM-DMCFN-Wb.mjs} +33 -4
  18. package/dist/control-C_8057XM-DMCFN-Wb.mjs.map +1 -0
  19. package/dist/errors.d.mts +4 -4
  20. package/dist/errors.mjs +4 -4
  21. package/dist/errors__control.d.mts +2 -2
  22. package/dist/errors__control.mjs +2 -2
  23. package/dist/errors__execution.d.mts +1 -1
  24. package/dist/errors__execution.mjs +1 -1
  25. package/dist/errors__migration.d.mts +1 -1
  26. package/dist/errors__migration.mjs +1 -1
  27. package/dist/{execution-D1Tn68OX.mjs → execution-BRMViM_W.mjs} +2 -2
  28. package/dist/{execution-D1Tn68OX.mjs.map → execution-BRMViM_W.mjs.map} +1 -1
  29. package/dist/{execution-D_ARq2Yb.d.mts → execution-CStuUgUf.d.mts} +2 -2
  30. package/dist/{execution-D_ARq2Yb.d.mts.map → execution-CStuUgUf.d.mts.map} +1 -1
  31. package/dist/{migration-Ds6n8w-H.mjs → migration-DdUmzx06.mjs} +2 -2
  32. package/dist/{migration-Ds6n8w-H.mjs.map → migration-DdUmzx06.mjs.map} +1 -1
  33. package/dist/{migration-C02YXQMR.d.mts → migration-dka5vLtm.d.mts} +2 -2
  34. package/dist/{migration-C02YXQMR.d.mts.map → migration-dka5vLtm.d.mts.map} +1 -1
  35. package/dist/psl-parser__interpret.d.mts +1 -2
  36. package/dist/psl-parser__interpret.d.mts.map +1 -1
  37. package/package.json +15 -15
  38. package/dist/config-errors-CBdiX587-DwIyJIX9.mjs +0 -9
  39. package/dist/config-errors-CBdiX587-DwIyJIX9.mjs.map +0 -1
  40. package/dist/config-types-C9MZ-mH9.d.mts +0 -1
  41. package/dist/config-types-Cf9lVsHR.mjs +0 -62
  42. package/dist/config-types-Cf9lVsHR.mjs.map +0 -1
  43. package/dist/config-types-W-87vhZ4-DQk0SSmj.d.mts.map +0 -1
  44. package/dist/config-validation-9rldVCTn.d.mts +0 -14
  45. package/dist/config-validation-9rldVCTn.d.mts.map +0 -1
  46. package/dist/config-validation-ByGTw6zQ.mjs +0 -99
  47. package/dist/config-validation-ByGTw6zQ.mjs.map +0 -1
  48. package/dist/control-CwRPkRJ7-Dk0c6D_5.d.mts.map +0 -1
  49. package/dist/control-NxsoLvV7-CEAZQk3h.mjs.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"file":"control-NxsoLvV7-CEAZQk3h.mjs","names":[],"sources":["../../../../1-framework/1-core/errors/dist/control-NxsoLvV7.mjs"],"sourcesContent":["import { ifDefined } from \"@internal/utils/defined\";\nimport { docsUrlFor } from \"@internal/utils/structured-error\";\n//#region src/control.ts\n/**\n* Structured CLI error that contains all information needed for error envelopes.\n* Call sites throw these errors with full context.\n*\n* A `CliStructuredError` is a `StructuredError` (see\n* `@internal/utils/structured-error`): `code` is a dotted\n* `NAMESPACE.SUBCODE` string, and the namespace prefix is the error's\n* category — there is no separate `domain` field. See\n* [ADR 239](../../../../../docs/architecture%20docs/adrs/ADR%20239%20-%20Errors%20are%20structural%20envelopes%20with%20dotted%20namespace%20codes.md)\n* for the namespace taxonomy.\n*/\nvar CliStructuredError = class extends Error {\n\tcode;\n\tseverity;\n\tconstructor(code, summary, options) {\n\t\tsuper(summary, options?.cause !== void 0 ? { cause: options.cause } : void 0);\n\t\tthis.name = \"CliStructuredError\";\n\t\tthis.code = code;\n\t\tthis.severity = options?.severity ?? \"error\";\n\t\tconst fix = options?.fix === options?.why ? void 0 : options?.fix;\n\t\tconst where = options?.where ? {\n\t\t\t...ifDefined(\"path\", options.where.path),\n\t\t\t...ifDefined(\"line\", options.where.line)\n\t\t} : void 0;\n\t\tObject.assign(this, {\n\t\t\t...ifDefined(\"why\", options?.why),\n\t\t\t...ifDefined(\"fix\", fix),\n\t\t\t...ifDefined(\"where\", where),\n\t\t\t...ifDefined(\"meta\", options?.meta),\n\t\t\t...ifDefined(\"docsUrl\", options?.docsUrl)\n\t\t});\n\t}\n\t/**\n\t* Converts this error to a CLI error envelope for output formatting.\n\t*/\n\ttoEnvelope() {\n\t\treturn {\n\t\t\tok: false,\n\t\t\tcode: this.code,\n\t\t\tseverity: this.severity,\n\t\t\tsummary: this.message,\n\t\t\t...ifDefined(\"why\", this.why),\n\t\t\t...ifDefined(\"fix\", this.fix),\n\t\t\t...ifDefined(\"where\", this.where),\n\t\t\t...ifDefined(\"meta\", this.meta),\n\t\t\t...ifDefined(\"docsUrl\", this.docsUrl)\n\t\t};\n\t}\n\t/**\n\t* Type guard to check if an error is a CliStructuredError.\n\t* Uses duck-typing to work across module boundaries where instanceof may fail.\n\t*/\n\tstatic is(error) {\n\t\tif (!(error instanceof Error)) return false;\n\t\tconst candidate = error;\n\t\treturn candidate.name === \"CliStructuredError\" && typeof candidate.code === \"string\" && typeof candidate.toEnvelope === \"function\";\n\t}\n};\n/**\n* Config file not found or missing.\n*/\nfunction errorConfigFileNotFound(configPath, options) {\n\treturn new CliStructuredError(\"CONFIG.FILE_NOT_FOUND\", \"Config file not found\", {\n\t\t...options?.why ? { why: options.why } : { why: \"Config file not found\" },\n\t\tfix: \"Run 'prisma-next init' to create a config file\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.FILE_NOT_FOUND\"),\n\t\t...configPath ? { where: { path: configPath } } : {}\n\t});\n}\n/**\n* Contract configuration missing from config.\n*/\nfunction errorContractConfigMissing(options) {\n\treturn new CliStructuredError(\"CONFIG.CONTRACT_MISSING\", \"Contract configuration missing\", {\n\t\twhy: options?.why ?? \"The contract configuration is required for emit\",\n\t\tfix: \"Add contract configuration to your prisma-next.config.ts\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.CONTRACT_MISSING\")\n\t});\n}\n/**\n* Contract validation failed.\n*/\nfunction errorContractValidationFailed(reason, options) {\n\treturn new CliStructuredError(\"CONTRACT.VALIDATION_FAILED\", \"Contract validation failed\", {\n\t\twhy: reason,\n\t\tfix: \"Re-run `prisma-next contract emit`, or fix the contract file and try again\",\n\t\tdocsUrl: docsUrlFor(\"CONTRACT.VALIDATION_FAILED\"),\n\t\t...options?.where ? { where: options.where } : {},\n\t\t...ifDefined(\"cause\", options?.cause)\n\t});\n}\n/**\n* File not found.\n*/\nfunction errorFileNotFound(filePath, options) {\n\treturn new CliStructuredError(\"CLI.FILE_NOT_FOUND\", \"File not found\", {\n\t\twhy: options?.why ?? `File not found: ${filePath}`,\n\t\tfix: options?.fix ?? \"Check that the file path is correct\",\n\t\twhere: { path: filePath },\n\t\t...options?.docsUrl ? { docsUrl: options.docsUrl } : {},\n\t\t...ifDefined(\"cause\", options?.cause)\n\t});\n}\n/**\n* Database connection is required but not provided.\n*/\nfunction errorDatabaseConnectionRequired(options) {\n\tconst runHint = options?.retryCommand ? `Run \\`${options.retryCommand}\\`` : options?.commandName ? `Run \\`prisma-next ${options.commandName} --db <url>\\`` : \"Provide `--db <url>`\";\n\treturn new CliStructuredError(\"CONFIG.DB_CONNECTION_REQUIRED\", \"Database connection is required\", {\n\t\twhy: options?.why ?? \"Database connection is required for this command\",\n\t\tfix: `${runHint}, or set \\`db: { connection: \"postgres://…\" }\\` in prisma-next.config.ts`,\n\t\t...options?.missingFlags !== void 0 ? { meta: { missingFlags: [...options.missingFlags] } } : {}\n\t});\n}\n/**\n* Query runner factory is required but not provided in config.\n*/\nfunction errorQueryRunnerFactoryRequired(options) {\n\treturn new CliStructuredError(\"CONFIG.QUERY_RUNNER_FACTORY_REQUIRED\", \"Query runner factory is required\", {\n\t\twhy: options?.why ?? \"Config.db.queryRunnerFactory is required for db verify\",\n\t\tfix: \"Add db.queryRunnerFactory to prisma-next.config.ts\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.QUERY_RUNNER_FACTORY_REQUIRED\")\n\t});\n}\n/**\n* Family verify.readMarker is required but not provided.\n*/\nfunction errorFamilyReadMarkerSqlRequired(options) {\n\treturn new CliStructuredError(\"CONFIG.FAMILY_READ_MARKER_REQUIRED\", \"Family readMarker() is required\", {\n\t\twhy: options?.why ?? \"Family verify.readMarker is required for db verify\",\n\t\tfix: \"Ensure family.verify.readMarker() is exported by your family package\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.FAMILY_READ_MARKER_REQUIRED\")\n\t});\n}\n/**\n* JSON output format not supported.\n*/\nfunction errorJsonFormatNotSupported(options) {\n\treturn new CliStructuredError(\"CLI.JSON_FORMAT_UNSUPPORTED\", \"Unsupported JSON format\", {\n\t\twhy: `The ${options.command} command does not support --json ${options.format}`,\n\t\tfix: `Use --json ${options.supportedFormats.join(\" or \")}, or omit --json for human output`,\n\t\tmeta: {\n\t\t\tcommand: options.command,\n\t\t\tformat: options.format,\n\t\t\tsupportedFormats: options.supportedFormats\n\t\t}\n\t});\n}\n/**\n* Driver is required for DB-connected commands but not provided.\n*/\nfunction errorDriverRequired(options) {\n\treturn new CliStructuredError(\"CONFIG.DRIVER_REQUIRED\", \"Driver is required for DB-connected commands\", {\n\t\twhy: options?.why ?? \"Config.driver is required for DB-connected commands\",\n\t\tfix: \"Add a control-plane driver to prisma-next.config.ts (e.g. import a driver descriptor and set `driver: postgresDriver`)\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.DRIVER_REQUIRED\")\n\t});\n}\n/**\n* Contract requires extension packs that are not provided by config descriptors.\n*/\nfunction errorContractMissingExtensions(options) {\n\tconst missing = [...options.missingExtensions].sort();\n\treturn new CliStructuredError(\"CONFIG.MISSING_EXTENSION_PACKS\", \"Missing extension packs in config\", {\n\t\twhy: missing.length === 1 ? `Contract requires extension pack '${missing[0]}', but CLI config does not provide a matching descriptor.` : `Contract requires extension packs ${missing.map((p) => `'${p}'`).join(\", \")}, but CLI config does not provide matching descriptors.`,\n\t\tfix: \"Add the missing extension descriptors to `extensions` in prisma-next.config.ts\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.MISSING_EXTENSION_PACKS\"),\n\t\tmeta: {\n\t\t\tmissingExtensions: missing,\n\t\t\tprovidedComponentIds: [...options.providedComponentIds].sort()\n\t\t}\n\t});\n}\n/**\n* Migration planning failed due to conflicts.\n*/\nfunction errorMigrationPlanningFailed(options) {\n\tconst conflictSummaries = options.conflicts.map((c) => c.summary);\n\tconst computedWhy = options.why ?? conflictSummaries.join(\"\\n\");\n\tconst conflictFixes = options.conflicts.map((c) => c.why).filter((why) => typeof why === \"string\");\n\treturn new CliStructuredError(\"MIGRATION.PLANNING_FAILED\", \"Migration planning failed\", {\n\t\twhy: computedWhy,\n\t\tfix: conflictFixes.length > 0 ? conflictFixes.join(\"\\n\") : \"Use `db verify --schema-only` to inspect conflicts, or ensure the database is empty\",\n\t\tmeta: { conflicts: options.conflicts },\n\t\tdocsUrl: docsUrlFor(\"MIGRATION.PLANNING_FAILED\")\n\t});\n}\n/**\n* Target does not support migrations (missing createPlanner/createRunner).\n*/\nfunction errorTargetMigrationNotSupported(options) {\n\treturn new CliStructuredError(\"MIGRATION.TARGET_UNSUPPORTED\", \"Target does not support migrations\", {\n\t\twhy: options?.why ?? \"The configured target does not provide migration planner/runner\",\n\t\tfix: \"Select a target that provides migrations (it must export `target.migrations` for db init)\",\n\t\tdocsUrl: docsUrlFor(\"MIGRATION.TARGET_UNSUPPORTED\")\n\t});\n}\n/**\n* The migration-file CLI received `--config` without a path argument (either\n* a bare trailing `--config`, or `--config` followed by another flag like\n* `--config --dry-run`). Surfacing this as a structured error fails fast\n* rather than silently consuming the next flag as the config path or\n* falling back to default discovery against the wrong project.\n*/\nfunction errorMigrationCliInvalidConfigArg(options) {\n\treturn new CliStructuredError(\"CLI.CONFIG_ARG_MISSING_PATH\", \"--config flag requires a path argument\", {\n\t\twhy: options?.nextToken !== void 0 ? `\\`--config\\` was followed by another flag (\\`${options.nextToken}\\`) instead of a path argument.` : \"`--config` was passed without a following path argument.\",\n\t\tfix: \"Pass a config path: `--config <path>` or `--config=<path>`.\",\n\t\tmeta: options?.nextToken !== void 0 ? { nextToken: options.nextToken } : {}\n\t});\n}\n/**\n* The migration-file CLI received a flag it does not recognise. Surfaced as a\n* structured error so consumers can render their own \"did you mean\"\n* suggestions from `meta.knownFlags` rather than parsing the message.\n*\n* Designed to wrap clipanion's `UnknownSyntaxError` at the parser boundary:\n* pass the offending token as `flag` and the option declarations as\n* `knownFlags`.\n*/\nfunction errorMigrationCliUnknownFlag(options) {\n\tconst knownList = options.knownFlags.join(\", \");\n\treturn new CliStructuredError(\"CLI.UNKNOWN_FLAG\", \"Unknown migration CLI flag\", {\n\t\twhy: `Unknown flag \\`${options.flag}\\`.`,\n\t\tfix: `Known flags: ${knownList}. Run with \\`--help\\` to see the full list.`,\n\t\tmeta: {\n\t\t\tflag: options.flag,\n\t\t\tknownFlags: options.knownFlags\n\t\t}\n\t});\n}\n/**\n* The main CLI received an unsupported `--format` value.\n*/\nfunction errorInvalidOutputFormat(value) {\n\treturn new CliStructuredError(\"CLI.INVALID_OUTPUT_FORMAT\", `Invalid --format value \"${value}\". Allowed values: pretty, json.`, { meta: {\n\t\tvalue,\n\t\tallowed: [\"pretty\", \"json\"]\n\t} });\n}\n/**\n* The main CLI received mutually exclusive output format flags\n* (`--format pretty` together with `--json`).\n*/\nfunction errorOutputFormatMutex() {\n\treturn new CliStructuredError(\"CLI.OUTPUT_FORMAT_CONFLICT\", \"Cannot use --format pretty together with --json. Use --format json or --json alone for JSON output.\");\n}\n/**\n* Config validation error (missing required fields).\n*/\nfunction errorConfigValidation(field, options) {\n\treturn new CliStructuredError(\"CONFIG.VALIDATION_FAILED\", \"Config validation error\", {\n\t\twhy: options?.why ?? `Config must have a \"${field}\" field`,\n\t\tfix: \"Check your prisma-next.config.ts and ensure all required fields are provided\",\n\t\tdocsUrl: docsUrlFor(\"CONFIG.VALIDATION_FAILED\")\n\t});\n}\n/**\n* An enum declares a codecId that no component in the contract's pack stack provides,\n* so its member values cannot be encoded. Thrown by both authoring paths (TS `defineContract`\n* and PSL interpretation) when the codec lookup built from the contract's packs has no\n* descriptor for the codecId.\n*/\nfunction errorEnumCodecNotInPackStack(options) {\n\treturn new CliStructuredError(\"CONTRACT.ENUM_CODEC_NOT_IN_PACK_STACK\", `Enum codec \"${options.codecId}\" is not part of the contract's pack stack`, {\n\t\twhy: `An enum uses codec \"${options.codecId}\", but no family, target, or extension pack in the contract provides it.`,\n\t\tfix: \"Use a codec provided by the contract's target/extension packs, or add the pack that supplies this codec.\",\n\t\tmeta: { codecId: options.codecId }\n\t});\n}\n/**\n* Generic unexpected error.\n*/\nfunction errorUnexpected(message, options) {\n\treturn new CliStructuredError(\"CLI.UNEXPECTED\", \"Unexpected error\", {\n\t\twhy: options?.why ?? message,\n\t\tfix: options?.fix ?? \"Check the error message and try again\",\n\t\t...ifDefined(\"cause\", options?.cause)\n\t});\n}\n//#endregion\nexport { errorOutputFormatMutex as _, errorContractMissingExtensions as a, errorUnexpected as b, errorDriverRequired as c, errorFileNotFound as d, errorInvalidOutputFormat as f, errorMigrationPlanningFailed as g, errorMigrationCliUnknownFlag as h, errorContractConfigMissing as i, errorEnumCodecNotInPackStack as l, errorMigrationCliInvalidConfigArg as m, errorConfigFileNotFound as n, errorContractValidationFailed as o, errorJsonFormatNotSupported as p, errorConfigValidation as r, errorDatabaseConnectionRequired as s, CliStructuredError as t, errorFamilyReadMarkerSqlRequired as u, errorQueryRunnerFactoryRequired as v, errorTargetMigrationNotSupported as y };\n\n//# sourceMappingURL=control-NxsoLvV7.mjs.map"],"mappings":"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"}