no-mistakes 0.63.0 → 0.64.1

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.
@@ -100,6 +100,18 @@ export type AnalyzeProjectReportRequest =
100
100
  type: "resolveCheck";
101
101
  id?: string;
102
102
  } & BatchedQueryFileOptions<ResolveCheckOptions | ResolveCheckFilesOptions>)
103
+ | {
104
+ /** Checks the union of seed and reachable files from dependency reports in this request. */
105
+ type: "resolveCheckDependencies";
106
+ id?: string;
107
+ dependencyReportIds: string[];
108
+ /** Project root. Defaults to the current working directory. */
109
+ root?: string;
110
+ /** Path to tsconfig.json for alias resolution. Searched upward if omitted. */
111
+ tsconfig?: string;
112
+ /** Path to the no-mistakes config file (e.g. .no-mistakes.yml). Auto-discovered in root if omitted. */
113
+ config?: string;
114
+ }
103
115
  | ({ type: "fetches"; id?: string } & BatchedRootConfigOptions<FetchesOptions>)
104
116
  | ({ type: "dataPw"; id?: string } & BatchedRootConfigOptions<DataPwOptions>)
105
117
  | ({ type: "registryExtension"; id?: string } & Omit<RegistryExtensionOptions, "root">)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "no-mistakes",
3
- "version": "0.63.0",
3
+ "version": "0.64.1",
4
4
  "description": "Deterministic impact maps, test plans, Playwright coverage, and repository checks for coding agents",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -45,9 +45,9 @@
45
45
  "access": "public"
46
46
  },
47
47
  "optionalDependencies": {
48
- "no-mistakes-darwin-arm64": "0.63.0",
49
- "no-mistakes-linux-arm64-gnu": "0.63.0",
50
- "no-mistakes-linux-x64-gnu": "0.63.0",
51
- "no-mistakes-win32-x64-msvc": "0.63.0"
48
+ "no-mistakes-darwin-arm64": "0.64.1",
49
+ "no-mistakes-linux-arm64-gnu": "0.64.1",
50
+ "no-mistakes-linux-x64-gnu": "0.64.1",
51
+ "no-mistakes-win32-x64-msvc": "0.64.1"
52
52
  }
53
53
  }