qfai 1.7.4 → 1.7.5

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.
@@ -1707,8 +1707,8 @@ var import_promises7 = require("fs/promises");
1707
1707
  var import_node_path8 = __toESM(require("path"), 1);
1708
1708
  var import_node_url2 = require("url");
1709
1709
  async function resolveToolVersion() {
1710
- if ("1.7.4".length > 0) {
1711
- return "1.7.4";
1710
+ if ("1.7.5".length > 0) {
1711
+ return "1.7.5";
1712
1712
  }
1713
1713
  try {
1714
1714
  const packagePath = resolvePackageJsonPath();
@@ -4072,6 +4072,15 @@ function formatError4(error2) {
4072
4072
  return String(error2);
4073
4073
  }
4074
4074
 
4075
+ // src/core/prototyping/modeResolver.ts
4076
+ var STATIC_OBLIGATIONS = ["source", "route", "state", "contract-level"];
4077
+ var RUNTIME_HEAVY_CHECKS = [
4078
+ "api-non-404",
4079
+ "db-existence",
4080
+ "ui-route-reachability"
4081
+ ];
4082
+ var FULL_HARNESS_OBLIGATIONS = [...STATIC_OBLIGATIONS, ...RUNTIME_HEAVY_CHECKS];
4083
+
4075
4084
  // src/cli/commands/prototyping.ts
4076
4085
  var ENV_AUTOGEN = "QFAI_PROTOTYPE_FIDELITY_AUTOGEN";
4077
4086
  var DEFAULT_EVIDENCE_PATH = ".qfai/evidence/prototyping.json";