@doccov/sdk 0.28.3 → 0.29.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.
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -666,7 +666,7 @@ import { OpenPkg as OpenPkg3 } from "@openpkg-ts/spec";
|
|
|
666
666
|
/** Current cache format version - bump when spec extraction logic changes */
|
|
667
667
|
declare const CACHE_VERSION = "1.1.0";
|
|
668
668
|
/** Default cache file path */
|
|
669
|
-
declare const SPEC_CACHE_FILE = ".doccov/spec.cache.json";
|
|
669
|
+
declare const SPEC_CACHE_FILE = ".doccov/cache/spec.cache.json";
|
|
670
670
|
/**
|
|
671
671
|
* Configuration that affects spec generation output.
|
|
672
672
|
*/
|
|
@@ -2580,7 +2580,7 @@ interface SpecSummary {
|
|
|
2580
2580
|
* ```
|
|
2581
2581
|
*/
|
|
2582
2582
|
declare function extractSpecSummary(openpkg: OpenPkg8, doccov: DocCovSpec4): SpecSummary;
|
|
2583
|
-
import { OpenPkg as
|
|
2583
|
+
import { OpenPkg as OpenPkg_krlvfzpjos } from "@openpkg-ts/spec";
|
|
2584
2584
|
/**
|
|
2585
2585
|
* Build Plan types for AI-powered repository scanning.
|
|
2586
2586
|
*/
|
|
@@ -2677,7 +2677,7 @@ interface BuildPlanExecutionResult {
|
|
|
2677
2677
|
/** Whether all required steps succeeded */
|
|
2678
2678
|
success: boolean;
|
|
2679
2679
|
/** Generated OpenPkg spec (if successful) */
|
|
2680
|
-
spec?:
|
|
2680
|
+
spec?: OpenPkg_krlvfzpjos;
|
|
2681
2681
|
/** Results for each step */
|
|
2682
2682
|
stepResults: BuildPlanStepResult[];
|
|
2683
2683
|
/** Total execution time in milliseconds */
|
package/dist/index.js
CHANGED
|
@@ -349,7 +349,7 @@ function diffHashes(cached, current) {
|
|
|
349
349
|
import * as fs3 from "node:fs";
|
|
350
350
|
import * as path5 from "node:path";
|
|
351
351
|
var CACHE_VERSION = "1.1.0";
|
|
352
|
-
var SPEC_CACHE_FILE = ".doccov/spec.cache.json";
|
|
352
|
+
var SPEC_CACHE_FILE = ".doccov/cache/spec.cache.json";
|
|
353
353
|
function loadSpecCache(cwd) {
|
|
354
354
|
try {
|
|
355
355
|
const cachePath = path5.resolve(cwd, SPEC_CACHE_FILE);
|