@doccov/sdk 0.25.9 → 0.25.10

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.
@@ -38,7 +38,7 @@ import {
38
38
  renderSparkline,
39
39
  saveReport,
40
40
  saveSnapshot
41
- } from "../shared/chunk-03yx6qfs.js";
41
+ } from "../shared/chunk-pwkn1dtb.js";
42
42
  import"../shared/chunk-esptwrfq.js";
43
43
  export {
44
44
  saveSnapshot,
package/dist/index.d.ts CHANGED
@@ -2515,7 +2515,7 @@ interface SpecSummary {
2515
2515
  * ```
2516
2516
  */
2517
2517
  declare function extractSpecSummary(openpkg: OpenPkg8, doccov: DocCovSpec4): SpecSummary;
2518
- import { OpenPkg as OpenPkg_gniycepely } from "@openpkg-ts/spec";
2518
+ import { OpenPkg as OpenPkg_egrmjglodl } from "@openpkg-ts/spec";
2519
2519
  /**
2520
2520
  * Build Plan types for AI-powered repository scanning.
2521
2521
  */
@@ -2612,7 +2612,7 @@ interface BuildPlanExecutionResult {
2612
2612
  /** Whether all required steps succeeded */
2613
2613
  success: boolean;
2614
2614
  /** Generated OpenPkg spec (if successful) */
2615
- spec?: OpenPkg_gniycepely;
2615
+ spec?: OpenPkg_egrmjglodl;
2616
2616
  /** Results for each step */
2617
2617
  stepResults: BuildPlanStepResult[];
2618
2618
  /** Total execution time in milliseconds */
package/dist/index.js CHANGED
@@ -55,7 +55,7 @@ import {
55
55
  saveSnapshot,
56
56
  serializeJSDoc,
57
57
  ts
58
- } from "./shared/chunk-03yx6qfs.js";
58
+ } from "./shared/chunk-pwkn1dtb.js";
59
59
  import {
60
60
  mergeFilters,
61
61
  parseListFlag
@@ -1964,6 +1964,19 @@ function buildExportRegistry(spec) {
1964
1964
  all.add(entry.name);
1965
1965
  if (entry.id)
1966
1966
  all.add(entry.id);
1967
+ if (entry.kind === "namespace" && entry.members) {
1968
+ for (const member of entry.members) {
1969
+ if (!member.name)
1970
+ continue;
1971
+ const memberInfo = {
1972
+ name: member.name,
1973
+ kind: member.kind ?? "unknown",
1974
+ isCallable: ["function", "class"].includes(member.kind ?? "")
1975
+ };
1976
+ exports.set(member.name, memberInfo);
1977
+ all.add(member.name);
1978
+ }
1979
+ }
1967
1980
  }
1968
1981
  for (const type of spec.types ?? []) {
1969
1982
  types.add(type.name);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doccov/sdk",
3
- "version": "0.25.9",
3
+ "version": "0.25.10",
4
4
  "description": "DocCov SDK - Documentation coverage and drift detection for TypeScript",
5
5
  "keywords": [
6
6
  "typescript",
@@ -48,7 +48,7 @@
48
48
  ],
49
49
  "dependencies": {
50
50
  "@doccov/spec": "^0.24.1",
51
- "@openpkg-ts/extract": "^0.14.3",
51
+ "@openpkg-ts/extract": "^0.14.5",
52
52
  "@openpkg-ts/spec": "^0.12.0",
53
53
  "@vercel/sandbox": "^1.0.3",
54
54
  "mdast": "^3.0.0",