@dataparade/cli 0.0.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.
Files changed (621) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +592 -0
  3. package/dist/bin/cli.d.ts +2 -0
  4. package/dist/bin/cli.js +7 -0
  5. package/dist/bin/load-env.d.ts +2 -0
  6. package/dist/bin/load-env.js +4 -0
  7. package/dist/src/ai-enrichment/agent-orchestrator.d.ts +28 -0
  8. package/dist/src/ai-enrichment/agent-orchestrator.js +476 -0
  9. package/dist/src/ai-enrichment/agents/index.d.ts +4 -0
  10. package/dist/src/ai-enrichment/agents/index.js +50 -0
  11. package/dist/src/ai-enrichment/candidate-selector.d.ts +10 -0
  12. package/dist/src/ai-enrichment/candidate-selector.js +158 -0
  13. package/dist/src/ai-enrichment/fallbacks.d.ts +6 -0
  14. package/dist/src/ai-enrichment/fallbacks.js +762 -0
  15. package/dist/src/ai-enrichment/index.d.ts +15 -0
  16. package/dist/src/ai-enrichment/index.js +31 -0
  17. package/dist/src/ai-enrichment/merge-rules.d.ts +12 -0
  18. package/dist/src/ai-enrichment/merge-rules.js +321 -0
  19. package/dist/src/ai-enrichment/non-pii-signal-rules.d.ts +10 -0
  20. package/dist/src/ai-enrichment/non-pii-signal-rules.js +72 -0
  21. package/dist/src/ai-enrichment/openai-proposals-response.schema.d.ts +94 -0
  22. package/dist/src/ai-enrichment/openai-proposals-response.schema.js +82 -0
  23. package/dist/src/ai-enrichment/pii-signal-rules.d.ts +8 -0
  24. package/dist/src/ai-enrichment/pii-signal-rules.js +68 -0
  25. package/dist/src/ai-enrichment/pipeline.d.ts +2 -0
  26. package/dist/src/ai-enrichment/pipeline.js +48 -0
  27. package/dist/src/ai-enrichment/planner.d.ts +2 -0
  28. package/dist/src/ai-enrichment/planner.js +60 -0
  29. package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.d.ts +12 -0
  30. package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.js +45 -0
  31. package/dist/src/ai-enrichment/provider-prompt.d.ts +32 -0
  32. package/dist/src/ai-enrichment/provider-prompt.js +222 -0
  33. package/dist/src/ai-enrichment/provider-topology-rules.d.ts +52 -0
  34. package/dist/src/ai-enrichment/provider-topology-rules.js +190 -0
  35. package/dist/src/ai-enrichment/provider-topology-shared.d.ts +48 -0
  36. package/dist/src/ai-enrichment/provider-topology-shared.js +329 -0
  37. package/dist/src/ai-enrichment/providers/endpoint-resolution.d.ts +13 -0
  38. package/dist/src/ai-enrichment/providers/endpoint-resolution.js +41 -0
  39. package/dist/src/ai-enrichment/providers/families/chat-completions-family.d.ts +13 -0
  40. package/dist/src/ai-enrichment/providers/families/chat-completions-family.js +181 -0
  41. package/dist/src/ai-enrichment/providers/families/generate-content-family.d.ts +10 -0
  42. package/dist/src/ai-enrichment/providers/families/generate-content-family.js +93 -0
  43. package/dist/src/ai-enrichment/providers/families/messages-family.d.ts +10 -0
  44. package/dist/src/ai-enrichment/providers/families/messages-family.js +86 -0
  45. package/dist/src/ai-enrichment/providers/families/ollama-generate-family.d.ts +10 -0
  46. package/dist/src/ai-enrichment/providers/families/ollama-generate-family.js +69 -0
  47. package/dist/src/ai-enrichment/providers/fetch-with-timeout.d.ts +2 -0
  48. package/dist/src/ai-enrichment/providers/fetch-with-timeout.js +22 -0
  49. package/dist/src/ai-enrichment/providers/index.d.ts +16 -0
  50. package/dist/src/ai-enrichment/providers/index.js +40 -0
  51. package/dist/src/ai-enrichment/providers/mock.d.ts +5 -0
  52. package/dist/src/ai-enrichment/providers/mock.js +12 -0
  53. package/dist/src/ai-enrichment/providers/platform-proxy-provider.d.ts +20 -0
  54. package/dist/src/ai-enrichment/providers/platform-proxy-provider.js +116 -0
  55. package/dist/src/ai-enrichment/providers/presets.d.ts +14 -0
  56. package/dist/src/ai-enrichment/providers/presets.js +50 -0
  57. package/dist/src/ai-enrichment/providers/provider-contract.d.ts +20 -0
  58. package/dist/src/ai-enrichment/providers/provider-contract.js +703 -0
  59. package/dist/src/ai-enrichment/providers/provider-json-parse.d.ts +23 -0
  60. package/dist/src/ai-enrichment/providers/provider-json-parse.js +96 -0
  61. package/dist/src/ai-enrichment/providers/provider-output-token-budget.d.ts +5 -0
  62. package/dist/src/ai-enrichment/providers/provider-output-token-budget.js +11 -0
  63. package/dist/src/ai-enrichment/providers/provider-pricing.d.ts +7 -0
  64. package/dist/src/ai-enrichment/providers/provider-pricing.js +32 -0
  65. package/dist/src/ai-enrichment/providers/provider-runtime.d.ts +9 -0
  66. package/dist/src/ai-enrichment/providers/provider-runtime.js +54 -0
  67. package/dist/src/ai-enrichment/providers/resolve-provider.d.ts +27 -0
  68. package/dist/src/ai-enrichment/providers/resolve-provider.js +41 -0
  69. package/dist/src/ai-enrichment/providers/types.d.ts +24 -0
  70. package/dist/src/ai-enrichment/providers/types.js +2 -0
  71. package/dist/src/ai-enrichment/scan-paths.d.ts +9 -0
  72. package/dist/src/ai-enrichment/scan-paths.js +28 -0
  73. package/dist/src/ai-enrichment/sensitive-paths.d.ts +5 -0
  74. package/dist/src/ai-enrichment/sensitive-paths.js +10 -0
  75. package/dist/src/ai-enrichment/third-party-data-flow.d.ts +27 -0
  76. package/dist/src/ai-enrichment/third-party-data-flow.js +518 -0
  77. package/dist/src/ai-enrichment/third-party-evidence.d.ts +14 -0
  78. package/dist/src/ai-enrichment/third-party-evidence.js +426 -0
  79. package/dist/src/ai-enrichment/third-party-property-matrix.d.ts +14 -0
  80. package/dist/src/ai-enrichment/third-party-property-matrix.js +52 -0
  81. package/dist/src/ai-enrichment/third-party-subtype.d.ts +14 -0
  82. package/dist/src/ai-enrichment/third-party-subtype.js +166 -0
  83. package/dist/src/ai-enrichment/tools/index.d.ts +39 -0
  84. package/dist/src/ai-enrichment/tools/index.js +121 -0
  85. package/dist/src/ai-enrichment/types.d.ts +170 -0
  86. package/dist/src/ai-enrichment/types.js +12 -0
  87. package/dist/src/analyzers/python/dependency-manifests.d.ts +8 -0
  88. package/dist/src/analyzers/python/dependency-manifests.js +131 -0
  89. package/dist/src/analyzers/python/detector.d.ts +3 -0
  90. package/dist/src/analyzers/python/detector.js +22 -0
  91. package/dist/src/analyzers/python/index.d.ts +2 -0
  92. package/dist/src/analyzers/python/index.js +11 -0
  93. package/dist/src/analyzers/python/manifest-parsers.d.ts +3 -0
  94. package/dist/src/analyzers/python/manifest-parsers.js +134 -0
  95. package/dist/src/analyzers/python/parser.d.ts +26 -0
  96. package/dist/src/analyzers/python/parser.js +187 -0
  97. package/dist/src/analyzers/python/patterns.d.ts +7 -0
  98. package/dist/src/analyzers/python/patterns.js +106 -0
  99. package/dist/src/analyzers/python/python-detection-config.d.ts +75 -0
  100. package/dist/src/analyzers/python/python-detection-config.js +148 -0
  101. package/dist/src/analyzers/registry.d.ts +13 -0
  102. package/dist/src/analyzers/registry.js +60 -0
  103. package/dist/src/analyzers/shared/manifest-budgets.d.ts +19 -0
  104. package/dist/src/analyzers/shared/manifest-budgets.js +21 -0
  105. package/dist/src/analyzers/shared/manifest-fs.d.ts +13 -0
  106. package/dist/src/analyzers/shared/manifest-fs.js +138 -0
  107. package/dist/src/analyzers/shared/property-inference.d.ts +8 -0
  108. package/dist/src/analyzers/shared/property-inference.js +165 -0
  109. package/dist/src/analyzers/terraform/detector.d.ts +10 -0
  110. package/dist/src/analyzers/terraform/detector.js +198 -0
  111. package/dist/src/analyzers/terraform/index.d.ts +2 -0
  112. package/dist/src/analyzers/terraform/index.js +13 -0
  113. package/dist/src/analyzers/terraform/parser.d.ts +29 -0
  114. package/dist/src/analyzers/terraform/parser.js +202 -0
  115. package/dist/src/analyzers/terraform/terraform-detection-config.d.ts +48 -0
  116. package/dist/src/analyzers/terraform/terraform-detection-config.js +218 -0
  117. package/dist/src/analyzers/terraform/terraform-exec.d.ts +11 -0
  118. package/dist/src/analyzers/terraform/terraform-exec.js +35 -0
  119. package/dist/src/analyzers/terraform/terraform-module-manifest.d.ts +19 -0
  120. package/dist/src/analyzers/terraform/terraform-module-manifest.js +75 -0
  121. package/dist/src/analyzers/terraform/terraform-show-json.d.ts +15 -0
  122. package/dist/src/analyzers/terraform/terraform-show-json.js +188 -0
  123. package/dist/src/analyzers/terraform/terraform-utility-resource.d.ts +12 -0
  124. package/dist/src/analyzers/terraform/terraform-utility-resource.js +30 -0
  125. package/dist/src/analyzers/types.d.ts +5 -0
  126. package/dist/src/analyzers/types.js +2 -0
  127. package/dist/src/analyzers/typescript/actor-detection.d.ts +4 -0
  128. package/dist/src/analyzers/typescript/actor-detection.js +15 -0
  129. package/dist/src/analyzers/typescript/dependency-manifests.d.ts +9 -0
  130. package/dist/src/analyzers/typescript/dependency-manifests.js +131 -0
  131. package/dist/src/analyzers/typescript/detector.d.ts +3 -0
  132. package/dist/src/analyzers/typescript/detector.js +23 -0
  133. package/dist/src/analyzers/typescript/index.d.ts +2 -0
  134. package/dist/src/analyzers/typescript/index.js +11 -0
  135. package/dist/src/analyzers/typescript/manifest-parsers.d.ts +1 -0
  136. package/dist/src/analyzers/typescript/manifest-parsers.js +30 -0
  137. package/dist/src/analyzers/typescript/parser.d.ts +44 -0
  138. package/dist/src/analyzers/typescript/parser.js +287 -0
  139. package/dist/src/analyzers/typescript/third-party-detection.d.ts +4 -0
  140. package/dist/src/analyzers/typescript/third-party-detection.js +16 -0
  141. package/dist/src/analyzers/typescript/typescript-detection-config.d.ts +68 -0
  142. package/dist/src/analyzers/typescript/typescript-detection-config.js +171 -0
  143. package/dist/src/analyzers/typescript/typescript-detection.d.ts +10 -0
  144. package/dist/src/analyzers/typescript/typescript-detection.js +57 -0
  145. package/dist/src/classifier/application-injection.d.ts +12 -0
  146. package/dist/src/classifier/application-injection.js +335 -0
  147. package/dist/src/classifier/classify.d.ts +3 -0
  148. package/dist/src/classifier/classify.js +15 -0
  149. package/dist/src/classifier/component-factory.d.ts +3 -0
  150. package/dist/src/classifier/component-factory.js +488 -0
  151. package/dist/src/classifier/config.d.ts +38 -0
  152. package/dist/src/classifier/config.js +260 -0
  153. package/dist/src/classifier/enhance-defaults.d.ts +28 -0
  154. package/dist/src/classifier/enhance-defaults.js +369 -0
  155. package/dist/src/classifier/enhance.d.ts +13 -0
  156. package/dist/src/classifier/enhance.js +295 -0
  157. package/dist/src/classifier/external-url-third-party.d.ts +26 -0
  158. package/dist/src/classifier/external-url-third-party.js +195 -0
  159. package/dist/src/classifier/grouping.d.ts +1 -0
  160. package/dist/src/classifier/grouping.js +2 -0
  161. package/dist/src/classifier/main-application-selection.d.ts +41 -0
  162. package/dist/src/classifier/main-application-selection.js +222 -0
  163. package/dist/src/classifier/naming.d.ts +4 -0
  164. package/dist/src/classifier/naming.js +78 -0
  165. package/dist/src/classifier/postprocessing.d.ts +12 -0
  166. package/dist/src/classifier/postprocessing.js +510 -0
  167. package/dist/src/classifier/sectioning.d.ts +5 -0
  168. package/dist/src/classifier/sectioning.js +60 -0
  169. package/dist/src/classifier/terraform-provider-hub.d.ts +6 -0
  170. package/dist/src/classifier/terraform-provider-hub.js +38 -0
  171. package/dist/src/cli.d.ts +2 -0
  172. package/dist/src/cli.js +498 -0
  173. package/dist/src/config/actor-detection-config.d.ts +21 -0
  174. package/dist/src/config/actor-detection-config.js +97 -0
  175. package/dist/src/config/env.d.ts +2 -0
  176. package/dist/src/config/env.js +75 -0
  177. package/dist/src/config/file.d.ts +6 -0
  178. package/dist/src/config/file.js +74 -0
  179. package/dist/src/config/inference-scope.d.ts +2 -0
  180. package/dist/src/config/inference-scope.js +15 -0
  181. package/dist/src/config/load-cli-env.d.ts +1 -0
  182. package/dist/src/config/load-cli-env.js +54 -0
  183. package/dist/src/config/normalize-ai-provider.d.ts +5 -0
  184. package/dist/src/config/normalize-ai-provider.js +18 -0
  185. package/dist/src/config/property-detection-config.d.ts +27 -0
  186. package/dist/src/config/property-detection-config.js +355 -0
  187. package/dist/src/config/redact.d.ts +3 -0
  188. package/dist/src/config/redact.js +14 -0
  189. package/dist/src/config/resolve.d.ts +15 -0
  190. package/dist/src/config/resolve.js +361 -0
  191. package/dist/src/config/scan-env.d.ts +7 -0
  192. package/dist/src/config/scan-env.js +38 -0
  193. package/dist/src/config/third-party-detection-config.d.ts +25 -0
  194. package/dist/src/config/third-party-detection-config.js +97 -0
  195. package/dist/src/config/types.d.ts +106 -0
  196. package/dist/src/config/types.js +2 -0
  197. package/dist/src/config/validate-scan-ai.d.ts +3 -0
  198. package/dist/src/config/validate-scan-ai.js +33 -0
  199. package/dist/src/core/pipeline/ai-orchestrator-options.d.ts +6 -0
  200. package/dist/src/core/pipeline/ai-orchestrator-options.js +46 -0
  201. package/dist/src/core/pipeline/classifier-phase.d.ts +7 -0
  202. package/dist/src/core/pipeline/classifier-phase.js +78 -0
  203. package/dist/src/core/pipeline/dataflow-phase.d.ts +7 -0
  204. package/dist/src/core/pipeline/dataflow-phase.js +10 -0
  205. package/dist/src/core/pipeline/diagram-layout/app-section-layout.d.ts +7 -0
  206. package/dist/src/core/pipeline/diagram-layout/app-section-layout.js +74 -0
  207. package/dist/src/core/pipeline/diagram-layout/constants.d.ts +11 -0
  208. package/dist/src/core/pipeline/diagram-layout/constants.js +14 -0
  209. package/dist/src/core/pipeline/diagram-layout/edge-handles.d.ts +3 -0
  210. package/dist/src/core/pipeline/diagram-layout/edge-handles.js +26 -0
  211. package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.d.ts +3 -0
  212. package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.js +40 -0
  213. package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.d.ts +6 -0
  214. package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.js +53 -0
  215. package/dist/src/core/pipeline/diagram-layout/section-helpers.d.ts +30 -0
  216. package/dist/src/core/pipeline/diagram-layout/section-helpers.js +62 -0
  217. package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.d.ts +3 -0
  218. package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.js +109 -0
  219. package/dist/src/core/pipeline/diagram-layout/types.d.ts +2 -0
  220. package/dist/src/core/pipeline/diagram-layout/types.js +2 -0
  221. package/dist/src/core/pipeline/graph-mapping.d.ts +6 -0
  222. package/dist/src/core/pipeline/graph-mapping.js +308 -0
  223. package/dist/src/core/pipeline/mixed-app-terraform-scan.d.ts +13 -0
  224. package/dist/src/core/pipeline/mixed-app-terraform-scan.js +81 -0
  225. package/dist/src/core/pipeline/orchestrator-result.d.ts +6 -0
  226. package/dist/src/core/pipeline/orchestrator-result.js +2 -0
  227. package/dist/src/core/pipeline/orchestrator.d.ts +26 -0
  228. package/dist/src/core/pipeline/orchestrator.js +79 -0
  229. package/dist/src/core/pipeline/resolve-path-under-scan-root.d.ts +7 -0
  230. package/dist/src/core/pipeline/resolve-path-under-scan-root.js +55 -0
  231. package/dist/src/core/pipeline/scan-pipeline.d.ts +6 -0
  232. package/dist/src/core/pipeline/scan-pipeline.js +364 -0
  233. package/dist/src/core/pipeline/sorting.d.ts +3 -0
  234. package/dist/src/core/pipeline/sorting.js +48 -0
  235. package/dist/src/core/pipeline/stable-component-ids.d.ts +15 -0
  236. package/dist/src/core/pipeline/stable-component-ids.js +68 -0
  237. package/dist/src/core/pipeline/structural-scan.d.ts +19 -0
  238. package/dist/src/core/pipeline/structural-scan.js +304 -0
  239. package/dist/src/core/pipeline/terraform-flow-utils.d.ts +6 -0
  240. package/dist/src/core/pipeline/terraform-flow-utils.js +32 -0
  241. package/dist/src/core/pipeline/terraform-minimal-services.d.ts +31 -0
  242. package/dist/src/core/pipeline/terraform-minimal-services.js +225 -0
  243. package/dist/src/core/schema/dataflow-wrapper.schema.d.ts +83 -0
  244. package/dist/src/core/schema/dataflow-wrapper.schema.js +40 -0
  245. package/dist/src/core/schema/diagram-graph.schema.d.ts +93 -0
  246. package/dist/src/core/schema/diagram-graph.schema.js +55 -0
  247. package/dist/src/core/schema/index.d.ts +4 -0
  248. package/dist/src/core/schema/index.js +20 -0
  249. package/dist/src/core/schema/scan-config.schema.d.ts +66 -0
  250. package/dist/src/core/schema/scan-config.schema.js +67 -0
  251. package/dist/src/core/schema/scan-result.schema.d.ts +450 -0
  252. package/dist/src/core/schema/scan-result.schema.js +236 -0
  253. package/dist/src/core/sectioning/discover-service-sections.d.ts +80 -0
  254. package/dist/src/core/sectioning/discover-service-sections.js +468 -0
  255. package/dist/src/core/sectioning/section-runtime.d.ts +21 -0
  256. package/dist/src/core/sectioning/section-runtime.js +148 -0
  257. package/dist/src/core/terraform/component-predicates.d.ts +13 -0
  258. package/dist/src/core/terraform/component-predicates.js +71 -0
  259. package/dist/src/core/types/component.d.ts +18 -0
  260. package/dist/src/core/types/component.js +2 -0
  261. package/dist/src/core/types/config.d.ts +57 -0
  262. package/dist/src/core/types/config.js +2 -0
  263. package/dist/src/core/types/data-flow.d.ts +24 -0
  264. package/dist/src/core/types/data-flow.js +2 -0
  265. package/dist/src/core/types/detection.d.ts +12 -0
  266. package/dist/src/core/types/detection.js +19 -0
  267. package/dist/src/core/types/file.d.ts +14 -0
  268. package/dist/src/core/types/file.js +2 -0
  269. package/dist/src/core/types/index.d.ts +7 -0
  270. package/dist/src/core/types/index.js +23 -0
  271. package/dist/src/core/types/progress.d.ts +9 -0
  272. package/dist/src/core/types/progress.js +2 -0
  273. package/dist/src/core/types/result.d.ts +140 -0
  274. package/dist/src/core/types/result.js +2 -0
  275. package/dist/src/data-flow/application-hub.d.ts +7 -0
  276. package/dist/src/data-flow/application-hub.js +88 -0
  277. package/dist/src/data-flow/dedupe.d.ts +7 -0
  278. package/dist/src/data-flow/dedupe.js +92 -0
  279. package/dist/src/data-flow/detect.d.ts +16 -0
  280. package/dist/src/data-flow/detect.js +203 -0
  281. package/dist/src/data-flow/detector.d.ts +15 -0
  282. package/dist/src/data-flow/detector.js +18 -0
  283. package/dist/src/data-flow/drop-cross-section-flows.d.ts +8 -0
  284. package/dist/src/data-flow/drop-cross-section-flows.js +32 -0
  285. package/dist/src/data-flow/ensure-actor-flow.d.ts +16 -0
  286. package/dist/src/data-flow/ensure-actor-flow.js +101 -0
  287. package/dist/src/data-flow/ensure-manifest-declared-flows.d.ts +14 -0
  288. package/dist/src/data-flow/ensure-manifest-declared-flows.js +76 -0
  289. package/dist/src/data-flow/ensure-section-api-flows.d.ts +6 -0
  290. package/dist/src/data-flow/ensure-section-api-flows.js +57 -0
  291. package/dist/src/data-flow/flow-builder.d.ts +5 -0
  292. package/dist/src/data-flow/flow-builder.js +80 -0
  293. package/dist/src/data-flow/import-graph.d.ts +10 -0
  294. package/dist/src/data-flow/import-graph.js +147 -0
  295. package/dist/src/data-flow/index.d.ts +8 -0
  296. package/dist/src/data-flow/index.js +20 -0
  297. package/dist/src/data-flow/internal-fetch.d.ts +8 -0
  298. package/dist/src/data-flow/internal-fetch.js +209 -0
  299. package/dist/src/data-flow/postprocess.d.ts +9 -0
  300. package/dist/src/data-flow/postprocess.js +63 -0
  301. package/dist/src/data-flow/rewire.d.ts +10 -0
  302. package/dist/src/data-flow/rewire.js +93 -0
  303. package/dist/src/data-flow/source-attribution.d.ts +8 -0
  304. package/dist/src/data-flow/source-attribution.js +131 -0
  305. package/dist/src/data-flow/source-resolution.d.ts +13 -0
  306. package/dist/src/data-flow/source-resolution.js +61 -0
  307. package/dist/src/data-flow/target-matching.d.ts +21 -0
  308. package/dist/src/data-flow/target-matching.js +253 -0
  309. package/dist/src/data-flow/terraform-flows.d.ts +32 -0
  310. package/dist/src/data-flow/terraform-flows.js +170 -0
  311. package/dist/src/evals/metrics.d.ts +18 -0
  312. package/dist/src/evals/metrics.js +58 -0
  313. package/dist/src/evals/run-model-matrix.d.ts +1 -0
  314. package/dist/src/evals/run-model-matrix.js +68 -0
  315. package/dist/src/index.d.ts +2 -0
  316. package/dist/src/index.js +20 -0
  317. package/dist/src/ingest/file-system.d.ts +17 -0
  318. package/dist/src/ingest/file-system.js +239 -0
  319. package/dist/src/ingest/gitignore.d.ts +12 -0
  320. package/dist/src/ingest/gitignore.js +127 -0
  321. package/dist/src/ingest/sensitive-paths.d.ts +2 -0
  322. package/dist/src/ingest/sensitive-paths.js +8 -0
  323. package/dist/src/observability/scan-sentry.d.ts +20 -0
  324. package/dist/src/observability/scan-sentry.js +133 -0
  325. package/dist/src/output/json.d.ts +51 -0
  326. package/dist/src/output/json.js +59 -0
  327. package/dist/src/patterns/config.d.ts +22 -0
  328. package/dist/src/patterns/config.js +119 -0
  329. package/dist/src/patterns/detectors/helpers.d.ts +19 -0
  330. package/dist/src/patterns/detectors/helpers.js +68 -0
  331. package/dist/src/patterns/detectors/python.d.ts +8 -0
  332. package/dist/src/patterns/detectors/python.js +412 -0
  333. package/dist/src/patterns/detectors/typescript.d.ts +8 -0
  334. package/dist/src/patterns/detectors/typescript.js +328 -0
  335. package/dist/src/patterns/engine.d.ts +40 -0
  336. package/dist/src/patterns/engine.js +111 -0
  337. package/dist/src/patterns/flow-source-patterns.d.ts +6 -0
  338. package/dist/src/patterns/flow-source-patterns.js +39 -0
  339. package/dist/src/patterns/frontend-frameworks.d.ts +4 -0
  340. package/dist/src/patterns/frontend-frameworks.js +25 -0
  341. package/dist/src/patterns/scan-exclusions.d.ts +14 -0
  342. package/dist/src/patterns/scan-exclusions.js +76 -0
  343. package/dist/src/platform-api/dataparade-api-base-url.d.ts +8 -0
  344. package/dist/src/platform-api/dataparade-api-base-url.js +17 -0
  345. package/dist/src/platform-api/estimate-scan-footprint.d.ts +8 -0
  346. package/dist/src/platform-api/estimate-scan-footprint.js +120 -0
  347. package/dist/src/platform-api/scan-quota-client.d.ts +28 -0
  348. package/dist/src/platform-api/scan-quota-client.js +79 -0
  349. package/dist/src/tracing/langsmith-tracing.d.ts +37 -0
  350. package/dist/src/tracing/langsmith-tracing.js +171 -0
  351. package/dist/tests/cli/cli.spec.d.ts +1 -0
  352. package/dist/tests/cli/cli.spec.js +87 -0
  353. package/dist/tests/fixtures/e2e-ts-sample/db-client-import.d.ts +2 -0
  354. package/dist/tests/fixtures/e2e-ts-sample/db-client-import.js +8 -0
  355. package/dist/tests/fixtures/e2e-ts-sample/db.d.ts +3 -0
  356. package/dist/tests/fixtures/e2e-ts-sample/db.js +7 -0
  357. package/dist/tests/fixtures/e2e-ts-sample/external-api.d.ts +1 -0
  358. package/dist/tests/fixtures/e2e-ts-sample/external-api.js +18 -0
  359. package/dist/tests/fixtures/e2e-ts-sample/pg-client.d.ts +3 -0
  360. package/dist/tests/fixtures/e2e-ts-sample/pg-client.js +7 -0
  361. package/dist/tests/fixtures/e2e-ts-sample/server.d.ts +14 -0
  362. package/dist/tests/fixtures/e2e-ts-sample/server.js +4 -0
  363. package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.d.ts +1 -0
  364. package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.js +24 -0
  365. package/dist/tests/fixtures/ingest-basic/src/index.d.ts +1 -0
  366. package/dist/tests/fixtures/ingest-basic/src/index.js +6 -0
  367. package/dist/tests/fixtures/mixed-language-basic/api.d.ts +2 -0
  368. package/dist/tests/fixtures/mixed-language-basic/api.js +12 -0
  369. package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.d.ts +1 -0
  370. package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.js +6 -0
  371. package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.d.ts +1 -0
  372. package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.js +6 -0
  373. package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.d.ts +1 -0
  374. package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.js +7 -0
  375. package/dist/tests/fixtures/typescript-basic/app/route.d.ts +1 -0
  376. package/dist/tests/fixtures/typescript-basic/app/route.js +7 -0
  377. package/dist/tests/fixtures/typescript-basic/db-client-import.d.ts +2 -0
  378. package/dist/tests/fixtures/typescript-basic/db-client-import.js +8 -0
  379. package/dist/tests/fixtures/typescript-basic/db.d.ts +3 -0
  380. package/dist/tests/fixtures/typescript-basic/db.js +7 -0
  381. package/dist/tests/fixtures/typescript-basic/external-api.d.ts +1 -0
  382. package/dist/tests/fixtures/typescript-basic/external-api.js +18 -0
  383. package/dist/tests/fixtures/typescript-basic/pg-client.d.ts +3 -0
  384. package/dist/tests/fixtures/typescript-basic/pg-client.js +7 -0
  385. package/dist/tests/fixtures/typescript-basic/server.d.ts +14 -0
  386. package/dist/tests/fixtures/typescript-basic/server.js +4 -0
  387. package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.d.ts +0 -0
  388. package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.js +2 -0
  389. package/dist/tests/helpers/scan-result-builders.d.ts +2 -0
  390. package/dist/tests/helpers/scan-result-builders.js +15 -0
  391. package/dist/tests/schema/dataflow-wrapper.schema.spec.d.ts +1 -0
  392. package/dist/tests/schema/dataflow-wrapper.schema.spec.js +89 -0
  393. package/dist/tests/schema/diagram-graph.schema.spec.d.ts +1 -0
  394. package/dist/tests/schema/diagram-graph.schema.spec.js +48 -0
  395. package/dist/tests/schema/scan-config.schema.spec.d.ts +1 -0
  396. package/dist/tests/schema/scan-config.schema.spec.js +135 -0
  397. package/dist/tests/schema/scan-result.schema.spec.d.ts +1 -0
  398. package/dist/tests/schema/scan-result.schema.spec.js +177 -0
  399. package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.d.ts +1 -0
  400. package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.js +483 -0
  401. package/dist/tests/unit/ai-enrichment/candidate-selector.spec.d.ts +1 -0
  402. package/dist/tests/unit/ai-enrichment/candidate-selector.spec.js +106 -0
  403. package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.d.ts +1 -0
  404. package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.js +32 -0
  405. package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.d.ts +1 -0
  406. package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.js +47 -0
  407. package/dist/tests/unit/ai-enrichment/fallbacks.spec.d.ts +1 -0
  408. package/dist/tests/unit/ai-enrichment/fallbacks.spec.js +1304 -0
  409. package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.d.ts +1 -0
  410. package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.js +219 -0
  411. package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.d.ts +1 -0
  412. package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.js +119 -0
  413. package/dist/tests/unit/ai-enrichment/families/messages-family.spec.d.ts +1 -0
  414. package/dist/tests/unit/ai-enrichment/families/messages-family.spec.js +129 -0
  415. package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.d.ts +1 -0
  416. package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.js +69 -0
  417. package/dist/tests/unit/ai-enrichment/merge-rules.spec.d.ts +1 -0
  418. package/dist/tests/unit/ai-enrichment/merge-rules.spec.js +422 -0
  419. package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.d.ts +1 -0
  420. package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.js +30 -0
  421. package/dist/tests/unit/ai-enrichment/pipeline.spec.d.ts +1 -0
  422. package/dist/tests/unit/ai-enrichment/pipeline.spec.js +120 -0
  423. package/dist/tests/unit/ai-enrichment/planner.spec.d.ts +1 -0
  424. package/dist/tests/unit/ai-enrichment/planner.spec.js +106 -0
  425. package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.d.ts +1 -0
  426. package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.js +51 -0
  427. package/dist/tests/unit/ai-enrichment/provider-contract.spec.d.ts +1 -0
  428. package/dist/tests/unit/ai-enrichment/provider-contract.spec.js +244 -0
  429. package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.d.ts +1 -0
  430. package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.js +24 -0
  431. package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.d.ts +1 -0
  432. package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.js +15 -0
  433. package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.d.ts +1 -0
  434. package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.js +54 -0
  435. package/dist/tests/unit/ai-enrichment/provider-prompt.spec.d.ts +1 -0
  436. package/dist/tests/unit/ai-enrichment/provider-prompt.spec.js +206 -0
  437. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.d.ts +1 -0
  438. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.js +43 -0
  439. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.d.ts +1 -0
  440. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.js +40 -0
  441. package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.d.ts +1 -0
  442. package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.js +22 -0
  443. package/dist/tests/unit/ai-enrichment/resolve-provider.spec.d.ts +1 -0
  444. package/dist/tests/unit/ai-enrichment/resolve-provider.spec.js +67 -0
  445. package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.d.ts +1 -0
  446. package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.js +35 -0
  447. package/dist/tests/unit/ai-enrichment/scan-paths.spec.d.ts +1 -0
  448. package/dist/tests/unit/ai-enrichment/scan-paths.spec.js +21 -0
  449. package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.d.ts +1 -0
  450. package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.js +20 -0
  451. package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.d.ts +1 -0
  452. package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.js +963 -0
  453. package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.d.ts +1 -0
  454. package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.js +117 -0
  455. package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.d.ts +1 -0
  456. package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.js +45 -0
  457. package/dist/tests/unit/ai-enrichment/tools-validation.spec.d.ts +1 -0
  458. package/dist/tests/unit/ai-enrichment/tools-validation.spec.js +66 -0
  459. package/dist/tests/unit/analyzers/python/parser.spec.d.ts +1 -0
  460. package/dist/tests/unit/analyzers/python/parser.spec.js +104 -0
  461. package/dist/tests/unit/analyzers/python/patterns.spec.d.ts +1 -0
  462. package/dist/tests/unit/analyzers/python/patterns.spec.js +289 -0
  463. package/dist/tests/unit/analyzers/registry.spec.d.ts +1 -0
  464. package/dist/tests/unit/analyzers/registry.spec.js +234 -0
  465. package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.d.ts +1 -0
  466. package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.js +87 -0
  467. package/dist/tests/unit/analyzers/terraform/detector.spec.d.ts +1 -0
  468. package/dist/tests/unit/analyzers/terraform/detector.spec.js +110 -0
  469. package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.d.ts +1 -0
  470. package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.js +53 -0
  471. package/dist/tests/unit/analyzers/terraform/parser.spec.d.ts +1 -0
  472. package/dist/tests/unit/analyzers/terraform/parser.spec.js +56 -0
  473. package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.d.ts +1 -0
  474. package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.js +63 -0
  475. package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.d.ts +1 -0
  476. package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.js +19 -0
  477. package/dist/tests/unit/analyzers/terraform-exec.spec.d.ts +1 -0
  478. package/dist/tests/unit/analyzers/terraform-exec.spec.js +27 -0
  479. package/dist/tests/unit/analyzers/terraform-show-json.spec.d.ts +1 -0
  480. package/dist/tests/unit/analyzers/terraform-show-json.spec.js +77 -0
  481. package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.d.ts +1 -0
  482. package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.js +61 -0
  483. package/dist/tests/unit/analyzers/typescript/detector.spec.d.ts +1 -0
  484. package/dist/tests/unit/analyzers/typescript/detector.spec.js +225 -0
  485. package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.d.ts +1 -0
  486. package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.js +49 -0
  487. package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.d.ts +1 -0
  488. package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.js +27 -0
  489. package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.d.ts +1 -0
  490. package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.js +64 -0
  491. package/dist/tests/unit/analyzers/typescript/parser.spec.d.ts +1 -0
  492. package/dist/tests/unit/analyzers/typescript/parser.spec.js +99 -0
  493. package/dist/tests/unit/analyzers/typescript/pattern-config.spec.d.ts +1 -0
  494. package/dist/tests/unit/analyzers/typescript/pattern-config.spec.js +24 -0
  495. package/dist/tests/unit/analyzers/typescript/property-detection.spec.d.ts +1 -0
  496. package/dist/tests/unit/analyzers/typescript/property-detection.spec.js +138 -0
  497. package/dist/tests/unit/classifier/classify.spec.d.ts +1 -0
  498. package/dist/tests/unit/classifier/classify.spec.js +1453 -0
  499. package/dist/tests/unit/classifier/enhance.spec.d.ts +1 -0
  500. package/dist/tests/unit/classifier/enhance.spec.js +400 -0
  501. package/dist/tests/unit/classifier/external-url-third-party.spec.d.ts +1 -0
  502. package/dist/tests/unit/classifier/external-url-third-party.spec.js +83 -0
  503. package/dist/tests/unit/classifier/frontend-framework-grouping.spec.d.ts +1 -0
  504. package/dist/tests/unit/classifier/frontend-framework-grouping.spec.js +44 -0
  505. package/dist/tests/unit/classifier/terraform-grouping.spec.d.ts +1 -0
  506. package/dist/tests/unit/classifier/terraform-grouping.spec.js +96 -0
  507. package/dist/tests/unit/cli/config-command.spec.d.ts +1 -0
  508. package/dist/tests/unit/cli/config-command.spec.js +51 -0
  509. package/dist/tests/unit/cli/scan-command-ai-flags.spec.d.ts +0 -0
  510. package/dist/tests/unit/cli/scan-command-ai-flags.spec.js +149 -0
  511. package/dist/tests/unit/cli/scan-command-diagram-graph.spec.d.ts +1 -0
  512. package/dist/tests/unit/cli/scan-command-diagram-graph.spec.js +26 -0
  513. package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.d.ts +1 -0
  514. package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.js +107 -0
  515. package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.d.ts +1 -0
  516. package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.js +74 -0
  517. package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.d.ts +1 -0
  518. package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.js +43 -0
  519. package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.d.ts +1 -0
  520. package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.js +62 -0
  521. package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.d.ts +1 -0
  522. package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.js +41 -0
  523. package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.d.ts +1 -0
  524. package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.js +85 -0
  525. package/dist/tests/unit/cli/scan-command-exit-code.spec.d.ts +1 -0
  526. package/dist/tests/unit/cli/scan-command-exit-code.spec.js +131 -0
  527. package/dist/tests/unit/cli/scan-quota-flow.spec.d.ts +1 -0
  528. package/dist/tests/unit/cli/scan-quota-flow.spec.js +76 -0
  529. package/dist/tests/unit/config/property-detection-config.spec.d.ts +1 -0
  530. package/dist/tests/unit/config/property-detection-config.spec.js +38 -0
  531. package/dist/tests/unit/config/redact.spec.d.ts +1 -0
  532. package/dist/tests/unit/config/redact.spec.js +19 -0
  533. package/dist/tests/unit/config/resolve-config.spec.d.ts +1 -0
  534. package/dist/tests/unit/config/resolve-config.spec.js +172 -0
  535. package/dist/tests/unit/config/scan-env-debug.spec.d.ts +1 -0
  536. package/dist/tests/unit/config/scan-env-debug.spec.js +17 -0
  537. package/dist/tests/unit/config/validate-scan-ai.spec.d.ts +1 -0
  538. package/dist/tests/unit/config/validate-scan-ai.spec.js +53 -0
  539. package/dist/tests/unit/core/classifier-phase-regressions.spec.d.ts +1 -0
  540. package/dist/tests/unit/core/classifier-phase-regressions.spec.js +68 -0
  541. package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.d.ts +1 -0
  542. package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.js +66 -0
  543. package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.d.ts +1 -0
  544. package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.js +132 -0
  545. package/dist/tests/unit/core/discover-service-sections.spec.d.ts +1 -0
  546. package/dist/tests/unit/core/discover-service-sections.spec.js +204 -0
  547. package/dist/tests/unit/core/graph-mapping.spec.d.ts +1 -0
  548. package/dist/tests/unit/core/graph-mapping.spec.js +779 -0
  549. package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.d.ts +1 -0
  550. package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.js +64 -0
  551. package/dist/tests/unit/core/manifest-package-hub.spec.d.ts +1 -0
  552. package/dist/tests/unit/core/manifest-package-hub.spec.js +53 -0
  553. package/dist/tests/unit/core/monorepo-package-sections.spec.d.ts +1 -0
  554. package/dist/tests/unit/core/monorepo-package-sections.spec.js +121 -0
  555. package/dist/tests/unit/core/no-source-code-leakage.spec.d.ts +1 -0
  556. package/dist/tests/unit/core/no-source-code-leakage.spec.js +48 -0
  557. package/dist/tests/unit/core/orchestrator.spec.d.ts +1 -0
  558. package/dist/tests/unit/core/orchestrator.spec.js +252 -0
  559. package/dist/tests/unit/core/output-json.spec.d.ts +1 -0
  560. package/dist/tests/unit/core/output-json.spec.js +65 -0
  561. package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.d.ts +1 -0
  562. package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.js +42 -0
  563. package/dist/tests/unit/core/resolve-path-under-scan-root.spec.d.ts +1 -0
  564. package/dist/tests/unit/core/resolve-path-under-scan-root.spec.js +54 -0
  565. package/dist/tests/unit/core/scan-result-language-stats.spec.d.ts +1 -0
  566. package/dist/tests/unit/core/scan-result-language-stats.spec.js +15 -0
  567. package/dist/tests/unit/core/section-discovery-excludes.spec.d.ts +1 -0
  568. package/dist/tests/unit/core/section-discovery-excludes.spec.js +49 -0
  569. package/dist/tests/unit/core/section-runtime.spec.d.ts +1 -0
  570. package/dist/tests/unit/core/section-runtime.spec.js +166 -0
  571. package/dist/tests/unit/core/stable-component-ids.spec.d.ts +1 -0
  572. package/dist/tests/unit/core/stable-component-ids.spec.js +112 -0
  573. package/dist/tests/unit/core/structural-scan.spec.d.ts +1 -0
  574. package/dist/tests/unit/core/structural-scan.spec.js +83 -0
  575. package/dist/tests/unit/core/terraform-json-overlay.spec.d.ts +1 -0
  576. package/dist/tests/unit/core/terraform-json-overlay.spec.js +36 -0
  577. package/dist/tests/unit/core/terraform-minimal-services.spec.d.ts +1 -0
  578. package/dist/tests/unit/core/terraform-minimal-services.spec.js +378 -0
  579. package/dist/tests/unit/data-flow/application-hub.spec.d.ts +1 -0
  580. package/dist/tests/unit/data-flow/application-hub.spec.js +48 -0
  581. package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.d.ts +1 -0
  582. package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.js +95 -0
  583. package/dist/tests/unit/data-flow/dedupe.spec.d.ts +1 -0
  584. package/dist/tests/unit/data-flow/dedupe.spec.js +134 -0
  585. package/dist/tests/unit/data-flow/detector.spec.d.ts +1 -0
  586. package/dist/tests/unit/data-flow/detector.spec.js +1254 -0
  587. package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.d.ts +1 -0
  588. package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.js +132 -0
  589. package/dist/tests/unit/data-flow/ensure-actor-flow.spec.d.ts +1 -0
  590. package/dist/tests/unit/data-flow/ensure-actor-flow.spec.js +233 -0
  591. package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.d.ts +1 -0
  592. package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.js +125 -0
  593. package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.d.ts +1 -0
  594. package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.js +40 -0
  595. package/dist/tests/unit/data-flow/postprocess.spec.d.ts +1 -0
  596. package/dist/tests/unit/data-flow/postprocess.spec.js +78 -0
  597. package/dist/tests/unit/data-flow/rewire.spec.d.ts +1 -0
  598. package/dist/tests/unit/data-flow/rewire.spec.js +194 -0
  599. package/dist/tests/unit/data-flow/terraform-flows.spec.d.ts +1 -0
  600. package/dist/tests/unit/data-flow/terraform-flows.spec.js +199 -0
  601. package/dist/tests/unit/evals/metrics.spec.d.ts +1 -0
  602. package/dist/tests/unit/evals/metrics.spec.js +54 -0
  603. package/dist/tests/unit/ingest/env-exclusion.spec.d.ts +1 -0
  604. package/dist/tests/unit/ingest/env-exclusion.spec.js +43 -0
  605. package/dist/tests/unit/ingest/file-system.spec.d.ts +1 -0
  606. package/dist/tests/unit/ingest/file-system.spec.js +180 -0
  607. package/dist/tests/unit/ingest/gitignore.spec.d.ts +1 -0
  608. package/dist/tests/unit/ingest/gitignore.spec.js +30 -0
  609. package/dist/tests/unit/observability/scan-sentry.spec.d.ts +1 -0
  610. package/dist/tests/unit/observability/scan-sentry.spec.js +60 -0
  611. package/dist/tests/unit/patterns/scan-exclusions.spec.d.ts +1 -0
  612. package/dist/tests/unit/patterns/scan-exclusions.spec.js +58 -0
  613. package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.d.ts +1 -0
  614. package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.js +19 -0
  615. package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.d.ts +1 -0
  616. package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.js +19 -0
  617. package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.d.ts +1 -0
  618. package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.js +50 -0
  619. package/dist/tests/unit/tracing/langsmith-tracing.spec.d.ts +1 -0
  620. package/dist/tests/unit/tracing/langsmith-tracing.spec.js +118 -0
  621. package/package.json +84 -0
@@ -0,0 +1,1254 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const detect_1 = require("../../../src/data-flow/detect");
4
+ function makeLocation(overrides) {
5
+ return {
6
+ filePath: overrides?.filePath ?? "src/example.ts",
7
+ startLine: overrides?.startLine ?? 1,
8
+ endLine: overrides?.endLine ?? 1,
9
+ code: overrides?.code,
10
+ };
11
+ }
12
+ function makeFinding(overrides) {
13
+ return {
14
+ pattern: overrides.pattern,
15
+ name: overrides.name,
16
+ confidence: overrides.confidence ?? 0.9,
17
+ location: overrides.location ?? makeLocation({}),
18
+ properties: overrides.properties ?? {},
19
+ description: overrides.description,
20
+ };
21
+ }
22
+ function makeComponent(overrides) {
23
+ return {
24
+ id: overrides.id,
25
+ name: overrides.name,
26
+ type: overrides.type,
27
+ subType: overrides.subType,
28
+ confidence: overrides.confidence ?? 0.9,
29
+ detectedFrom: overrides.detectedFrom ?? [],
30
+ sourceLocations: overrides.sourceLocations ?? [],
31
+ properties: overrides.properties ?? {},
32
+ description: overrides.description,
33
+ dataFlowIds: overrides.dataFlowIds,
34
+ };
35
+ }
36
+ const emptyFiles = [];
37
+ describe("data-flow/detector - DP-P0-CLI-301", () => {
38
+ describe("source resolution", () => {
39
+ it("returns empty flows when no source component (no assets)", () => {
40
+ const components = [
41
+ makeComponent({
42
+ id: "cmp_1",
43
+ name: "Stripe",
44
+ type: "third_party",
45
+ subType: "payment_processor",
46
+ properties: {},
47
+ }),
48
+ ];
49
+ const findings = [
50
+ makeFinding({
51
+ pattern: "external_api_call",
52
+ name: "stripe",
53
+ properties: { serviceName: "stripe" },
54
+ }),
55
+ ];
56
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
57
+ expect(flows).toHaveLength(0);
58
+ });
59
+ it("uses asset with isMainApplication as source", () => {
60
+ const components = [
61
+ makeComponent({
62
+ id: "cmp_1",
63
+ name: "Application",
64
+ type: "asset",
65
+ subType: "api",
66
+ properties: { isMainApplication: true },
67
+ }),
68
+ makeComponent({
69
+ id: "cmp_2",
70
+ name: "PostgreSQL",
71
+ type: "asset",
72
+ subType: "database",
73
+ properties: { databaseType: "postgresql" },
74
+ }),
75
+ ];
76
+ const findings = [
77
+ makeFinding({
78
+ pattern: "database_connection",
79
+ name: "pg",
80
+ properties: { client: "pg", databaseType: "postgresql" },
81
+ }),
82
+ ];
83
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
84
+ expect(flows).toHaveLength(1);
85
+ expect(flows[0].sourceComponentId).toBe("cmp_1");
86
+ expect(flows[0].targetComponentId).toBe("cmp_2");
87
+ expect(flows[0].type).toBe("database_query");
88
+ });
89
+ it("falls back to first api/service asset when no isMainApplication", () => {
90
+ const components = [
91
+ makeComponent({
92
+ id: "cmp_1",
93
+ name: "Backend API",
94
+ type: "asset",
95
+ subType: "api",
96
+ properties: {},
97
+ }),
98
+ makeComponent({
99
+ id: "cmp_2",
100
+ name: "Stripe",
101
+ type: "third_party",
102
+ subType: "payment_processor",
103
+ properties: { serviceName: "stripe" },
104
+ }),
105
+ ];
106
+ const findings = [
107
+ makeFinding({
108
+ pattern: "external_api_call",
109
+ name: "stripe",
110
+ properties: { serviceName: "stripe" },
111
+ }),
112
+ ];
113
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
114
+ expect(flows).toHaveLength(1);
115
+ expect(flows[0].sourceComponentId).toBe("cmp_1");
116
+ expect(flows[0].targetComponentId).toBe("cmp_2");
117
+ });
118
+ it("uses isMainApplication source matching finding section_id", () => {
119
+ const components = [
120
+ makeComponent({
121
+ id: "app_s1",
122
+ name: "App S1",
123
+ type: "asset",
124
+ subType: "api",
125
+ properties: { isMainApplication: true, section_id: "s1" },
126
+ }),
127
+ makeComponent({
128
+ id: "app_s2",
129
+ name: "App S2",
130
+ type: "asset",
131
+ subType: "api",
132
+ properties: { isMainApplication: true, section_id: "s2" },
133
+ }),
134
+ makeComponent({
135
+ id: "db_s2",
136
+ name: "PostgreSQL",
137
+ type: "asset",
138
+ subType: "database",
139
+ properties: { databaseType: "postgresql", section_id: "s2" },
140
+ }),
141
+ ];
142
+ const findings = [
143
+ makeFinding({
144
+ pattern: "database_connection",
145
+ name: "pg",
146
+ properties: {
147
+ client: "pg",
148
+ databaseType: "postgresql",
149
+ section_id: "s2",
150
+ },
151
+ }),
152
+ ];
153
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
154
+ expect(flows).toHaveLength(1);
155
+ expect(flows[0].type).toBe("database_query");
156
+ expect(flows[0].sourceComponentId).toBe("app_s2");
157
+ expect(flows[0].targetComponentId).toBe("db_s2");
158
+ });
159
+ });
160
+ describe("database flows", () => {
161
+ it("produces database_query flow from database_connection finding to matching asset", () => {
162
+ const components = [
163
+ makeComponent({
164
+ id: "app",
165
+ name: "Application",
166
+ type: "asset",
167
+ subType: "service",
168
+ properties: { isMainApplication: true },
169
+ }),
170
+ makeComponent({
171
+ id: "db",
172
+ name: "PostgreSQL",
173
+ type: "asset",
174
+ subType: "database",
175
+ properties: { databaseType: "postgresql" },
176
+ }),
177
+ ];
178
+ const findings = [
179
+ makeFinding({
180
+ pattern: "database_connection",
181
+ name: "Primary Postgres",
182
+ location: makeLocation({ filePath: "src/db.ts", startLine: 10, endLine: 12 }),
183
+ properties: { client: "pg", databaseType: "postgresql" },
184
+ }),
185
+ ];
186
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
187
+ expect(flows).toHaveLength(1);
188
+ expect(flows[0].type).toBe("database_query");
189
+ expect(flows[0].sourceComponentId).toBe("app");
190
+ expect(flows[0].targetComponentId).toBe("db");
191
+ expect(flows[0].sourceLocation).toEqual({
192
+ filePath: "src/db.ts",
193
+ startLine: 10,
194
+ endLine: 12,
195
+ });
196
+ });
197
+ it("matches database component by databaseType when names differ", () => {
198
+ const components = [
199
+ makeComponent({
200
+ id: "app",
201
+ name: "App",
202
+ type: "asset",
203
+ subType: "api",
204
+ properties: { isMainApplication: true },
205
+ }),
206
+ makeComponent({
207
+ id: "redis",
208
+ name: "Redis Cache",
209
+ type: "asset",
210
+ subType: "database",
211
+ properties: { databaseType: "redis" },
212
+ }),
213
+ ];
214
+ const findings = [
215
+ makeFinding({
216
+ pattern: "database_connection",
217
+ name: "redis-client",
218
+ properties: { databaseType: "redis", client: "ioredis" },
219
+ }),
220
+ ];
221
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
222
+ expect(flows).toHaveLength(1);
223
+ expect(flows[0].targetComponentId).toBe("redis");
224
+ expect(flows[0].type).toBe("database_query");
225
+ expect(flows[0].targetScope).toBe("unknown");
226
+ expect(flows[0].targetScopeConfidence).toBe("low");
227
+ });
228
+ });
229
+ describe("external API / third-party flows", () => {
230
+ it("produces api_call flow from external_api_call finding to matching third_party", () => {
231
+ const components = [
232
+ makeComponent({
233
+ id: "app",
234
+ name: "Application",
235
+ type: "asset",
236
+ subType: "api",
237
+ properties: { isMainApplication: true },
238
+ }),
239
+ makeComponent({
240
+ id: "tp",
241
+ name: "Stripe",
242
+ type: "third_party",
243
+ subType: "payment_processor",
244
+ properties: { serviceName: "stripe" },
245
+ }),
246
+ ];
247
+ const findings = [
248
+ makeFinding({
249
+ pattern: "external_api_call",
250
+ name: "StripeClient",
251
+ properties: { serviceName: "stripe", client: "stripe" },
252
+ }),
253
+ ];
254
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
255
+ expect(flows).toHaveLength(1);
256
+ expect(flows[0].type).toBe("api_call");
257
+ expect(flows[0].sourceComponentId).toBe("app");
258
+ expect(flows[0].targetComponentId).toBe("tp");
259
+ expect(flows[0].targetScope).toBe("external");
260
+ expect(flows[0].targetScopeConfidence).toBe("high");
261
+ expect(flows[0].targetScopeReason).toBe("third-party-target");
262
+ });
263
+ it("matches third_party by literal url when serviceName is absent on finding", () => {
264
+ const components = [
265
+ makeComponent({
266
+ id: "app",
267
+ name: "HTTP API",
268
+ type: "asset",
269
+ subType: "api",
270
+ properties: { isMainApplication: true, framework: "express" },
271
+ }),
272
+ makeComponent({
273
+ id: "tp_clip",
274
+ name: "Clipdrop",
275
+ type: "third_party",
276
+ subType: "ai_provider",
277
+ properties: {
278
+ serviceName: "clipdrop",
279
+ url: "https://clipdrop-api.co/remove-background/v1",
280
+ },
281
+ }),
282
+ ];
283
+ const findings = [
284
+ makeFinding({
285
+ pattern: "external_api_call",
286
+ name: "https://clipdrop-api.co/remove-background/v1",
287
+ properties: {
288
+ client: "fetch",
289
+ url: "https://clipdrop-api.co/remove-background/v1",
290
+ },
291
+ }),
292
+ ];
293
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
294
+ expect(flows).toHaveLength(1);
295
+ expect(flows[0].sourceComponentId).toBe("app");
296
+ expect(flows[0].targetComponentId).toBe("tp_clip");
297
+ });
298
+ it("attributes external_api_call to Express API route when handler module is imported from route file", () => {
299
+ const devServer = `import express from 'express';
300
+ import aiCompletionHandler from './api/ai-completion.js';
301
+ const app = express();
302
+ app.post('/api/ai-completion', (req, res) => {
303
+ aiCompletionHandler(req, res);
304
+ });
305
+ `;
306
+ const handler = `import OpenAI from 'openai';
307
+ export default async function handler() {
308
+ const client = new OpenAI();
309
+ await client.chat.completions.create({});
310
+ }
311
+ `;
312
+ const files = [
313
+ {
314
+ path: "srv/dev-server.js",
315
+ name: "dev-server.js",
316
+ content: devServer,
317
+ language: "javascript",
318
+ size: devServer.length,
319
+ },
320
+ {
321
+ path: "srv/api/ai-completion.js",
322
+ name: "ai-completion.js",
323
+ content: handler,
324
+ language: "javascript",
325
+ size: handler.length,
326
+ },
327
+ ];
328
+ const components = [
329
+ makeComponent({
330
+ id: "app",
331
+ name: "project",
332
+ type: "asset",
333
+ subType: "application",
334
+ properties: { isMainApplication: true },
335
+ }),
336
+ makeComponent({
337
+ id: "route_ai",
338
+ name: "Post /api/ai Completion",
339
+ type: "asset",
340
+ subType: "api",
341
+ properties: { path: "/api/ai-completion", framework: "express" },
342
+ sourceLocations: [
343
+ {
344
+ filePath: "srv/dev-server.js",
345
+ startLine: 4,
346
+ endLine: 4,
347
+ code: "app.post('/api/ai-completion'",
348
+ },
349
+ ],
350
+ }),
351
+ makeComponent({
352
+ id: "tp_openai",
353
+ name: "Openai",
354
+ type: "third_party",
355
+ subType: "ai_provider",
356
+ properties: { serviceName: "openai", client: "openai" },
357
+ }),
358
+ ];
359
+ const findings = [
360
+ makeFinding({
361
+ pattern: "external_api_call",
362
+ name: "openai",
363
+ location: makeLocation({
364
+ filePath: "srv/api/ai-completion.js",
365
+ startLine: 4,
366
+ endLine: 4,
367
+ }),
368
+ properties: { serviceName: "openai", client: "openai" },
369
+ }),
370
+ ];
371
+ const flows = (0, detect_1.detectDataFlows)(files, components, findings);
372
+ expect(flows).toHaveLength(1);
373
+ expect(flows[0].sourceComponentId).toBe("route_ai");
374
+ expect(flows[0].targetComponentId).toBe("tp_openai");
375
+ });
376
+ it("attributes external_api_call to containing route when call is in same file as route registration", () => {
377
+ const server = `import express from 'express';
378
+ const app = express();
379
+ app.get('/health', (req, res) => res.send('ok'));
380
+ app.post('/data', (req, res) => {
381
+ void fetch('https://api.stripe.com/v1/charges');
382
+ });
383
+ `;
384
+ const files = [
385
+ {
386
+ path: "src/server.ts",
387
+ name: "server.ts",
388
+ content: server,
389
+ language: "typescript",
390
+ size: server.length,
391
+ },
392
+ ];
393
+ const components = [
394
+ makeComponent({
395
+ id: "app",
396
+ name: "App",
397
+ type: "asset",
398
+ subType: "api",
399
+ properties: { isMainApplication: true },
400
+ }),
401
+ makeComponent({
402
+ id: "route_health",
403
+ name: "GET /health",
404
+ type: "asset",
405
+ subType: "api",
406
+ properties: { path: "/health" },
407
+ sourceLocations: [
408
+ { filePath: "src/server.ts", startLine: 3, endLine: 3 },
409
+ ],
410
+ }),
411
+ makeComponent({
412
+ id: "route_data",
413
+ name: "POST /data",
414
+ type: "asset",
415
+ subType: "api",
416
+ properties: { path: "/data" },
417
+ sourceLocations: [
418
+ { filePath: "src/server.ts", startLine: 4, endLine: 4 },
419
+ ],
420
+ }),
421
+ makeComponent({
422
+ id: "tp",
423
+ name: "Stripe",
424
+ type: "third_party",
425
+ subType: "payment_processor",
426
+ properties: { serviceName: "stripe" },
427
+ }),
428
+ ];
429
+ const findings = [
430
+ makeFinding({
431
+ pattern: "external_api_call",
432
+ name: "stripe",
433
+ location: makeLocation({
434
+ filePath: "src/server.ts",
435
+ startLine: 6,
436
+ endLine: 6,
437
+ }),
438
+ properties: { serviceName: "stripe" },
439
+ }),
440
+ ];
441
+ const flows = (0, detect_1.detectDataFlows)(files, components, findings);
442
+ expect(flows).toHaveLength(1);
443
+ expect(flows[0].sourceComponentId).toBe("route_data");
444
+ expect(flows[0].targetComponentId).toBe("tp");
445
+ });
446
+ it("does not attribute external_api_call to outbound URL api assets in the same file", () => {
447
+ const chatgpt = `import OpenAI from 'openai';
448
+ const x = new OpenAI();
449
+ void fetch("https://clipdrop-api.co/remove-background/v1", { method: "POST" });
450
+ `;
451
+ const files = [
452
+ {
453
+ path: "services/chatgpt.js",
454
+ name: "chatgpt.js",
455
+ content: chatgpt,
456
+ language: "javascript",
457
+ size: chatgpt.length,
458
+ },
459
+ ];
460
+ const components = [
461
+ makeComponent({
462
+ id: "http_api",
463
+ name: "HTTP API",
464
+ type: "asset",
465
+ subType: "api",
466
+ properties: { isMainApplication: true, framework: "express" },
467
+ }),
468
+ makeComponent({
469
+ id: "clipdrop",
470
+ name: "https://clipdrop-api.co/remove-background/v1",
471
+ type: "asset",
472
+ subType: "api",
473
+ properties: {
474
+ url: "https://clipdrop-api.co/remove-background/v1",
475
+ client: "fetch",
476
+ },
477
+ sourceLocations: [
478
+ {
479
+ filePath: "services/chatgpt.js",
480
+ startLine: 3,
481
+ endLine: 3,
482
+ },
483
+ ],
484
+ }),
485
+ makeComponent({
486
+ id: "tp_openai",
487
+ name: "Openai",
488
+ type: "third_party",
489
+ subType: "ai_provider",
490
+ properties: { serviceName: "openai", client: "openai" },
491
+ }),
492
+ ];
493
+ const findings = [
494
+ makeFinding({
495
+ pattern: "external_api_call",
496
+ name: "openai",
497
+ location: makeLocation({
498
+ filePath: "services/chatgpt.js",
499
+ startLine: 1,
500
+ endLine: 1,
501
+ }),
502
+ properties: { serviceName: "openai", client: "openai" },
503
+ }),
504
+ ];
505
+ const flows = (0, detect_1.detectDataFlows)(files, components, findings);
506
+ expect(flows).toHaveLength(1);
507
+ expect(flows[0].sourceComponentId).toBe("http_api");
508
+ expect(flows[0].targetComponentId).toBe("tp_openai");
509
+ });
510
+ it("sets method and endpoint from finding properties when available", () => {
511
+ const components = [
512
+ makeComponent({
513
+ id: "app",
514
+ name: "App",
515
+ type: "asset",
516
+ subType: "api",
517
+ properties: { isMainApplication: true },
518
+ }),
519
+ makeComponent({
520
+ id: "tp",
521
+ name: "Auth0",
522
+ type: "third_party",
523
+ subType: "saas_service",
524
+ properties: { serviceName: "auth0" },
525
+ }),
526
+ ];
527
+ const findings = [
528
+ makeFinding({
529
+ pattern: "external_api_call",
530
+ name: "auth0",
531
+ properties: {
532
+ serviceName: "auth0",
533
+ httpMethod: "POST",
534
+ url: "https://auth0.com/oauth/token",
535
+ },
536
+ }),
537
+ ];
538
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
539
+ expect(flows).toHaveLength(1);
540
+ expect(flows[0].method).toBe("POST");
541
+ expect(flows[0].endpoint).toBe("https://auth0.com/oauth/token");
542
+ });
543
+ it("uses webhook type when URL suggests webhook/callback", () => {
544
+ const components = [
545
+ makeComponent({
546
+ id: "app",
547
+ name: "App",
548
+ type: "asset",
549
+ subType: "api",
550
+ properties: { isMainApplication: true },
551
+ }),
552
+ makeComponent({
553
+ id: "tp",
554
+ name: "Stripe",
555
+ type: "third_party",
556
+ subType: "payment_processor",
557
+ properties: { serviceName: "stripe" },
558
+ }),
559
+ ];
560
+ const findings = [
561
+ makeFinding({
562
+ pattern: "external_api_call",
563
+ name: "stripe webhook",
564
+ properties: {
565
+ serviceName: "stripe",
566
+ url: "https://api.stripe.com/webhooks",
567
+ },
568
+ }),
569
+ ];
570
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
571
+ expect(flows).toHaveLength(1);
572
+ expect(flows[0].type).toBe("webhook");
573
+ });
574
+ it("prefers section API source for non-frontend external calls in same section", () => {
575
+ const components = [
576
+ makeComponent({
577
+ id: "main_reedy",
578
+ name: "reedy",
579
+ type: "asset",
580
+ subType: "application",
581
+ properties: { isMainApplication: true, section_id: "reedy" },
582
+ }),
583
+ makeComponent({
584
+ id: "api_reedy",
585
+ name: "API",
586
+ type: "asset",
587
+ subType: "api",
588
+ properties: { isSectionApiNode: true, section_id: "reedy" },
589
+ }),
590
+ makeComponent({
591
+ id: "tp_openai",
592
+ name: "Openai",
593
+ type: "third_party",
594
+ subType: "ai_provider",
595
+ properties: { serviceName: "openai", section_id: "reedy" },
596
+ }),
597
+ ];
598
+ const findings = [
599
+ makeFinding({
600
+ pattern: "external_api_call",
601
+ name: "openai",
602
+ location: makeLocation({
603
+ filePath: "reedy/lib/supabase/client.ts",
604
+ startLine: 1,
605
+ endLine: 1,
606
+ }),
607
+ properties: { serviceName: "openai", section_id: "reedy" },
608
+ }),
609
+ ];
610
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
611
+ const tpFlow = flows.find((f) => f.targetComponentId === "tp_openai");
612
+ expect(tpFlow).toBeDefined();
613
+ expect(tpFlow?.sourceComponentId).toBe("api_reedy");
614
+ });
615
+ it("keeps main app source for clearly frontend runtime external calls", () => {
616
+ const components = [
617
+ makeComponent({
618
+ id: "main_reedy",
619
+ name: "reedy",
620
+ type: "asset",
621
+ subType: "application",
622
+ properties: { isMainApplication: true, section_id: "reedy" },
623
+ }),
624
+ makeComponent({
625
+ id: "api_reedy",
626
+ name: "API",
627
+ type: "asset",
628
+ subType: "api",
629
+ properties: { isSectionApiNode: true, section_id: "reedy" },
630
+ }),
631
+ makeComponent({
632
+ id: "tp_auth0",
633
+ name: "Auth0",
634
+ type: "third_party",
635
+ subType: "saas_service",
636
+ properties: { serviceName: "auth0", section_id: "reedy" },
637
+ }),
638
+ ];
639
+ const findings = [
640
+ makeFinding({
641
+ pattern: "external_api_call",
642
+ name: "auth0",
643
+ location: makeLocation({
644
+ filePath: "reedy/components/header/user-menu.tsx",
645
+ startLine: 42,
646
+ endLine: 42,
647
+ }),
648
+ properties: { serviceName: "auth0", section_id: "reedy" },
649
+ }),
650
+ ];
651
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
652
+ const tpFlow = flows.find((f) => f.targetComponentId === "tp_auth0");
653
+ expect(tpFlow).toBeDefined();
654
+ expect(tpFlow?.sourceComponentId).toBe("main_reedy");
655
+ });
656
+ it("skips manifest-only external_api_call findings", () => {
657
+ const components = [
658
+ makeComponent({
659
+ id: "main_reedy",
660
+ name: "reedy",
661
+ type: "asset",
662
+ subType: "application",
663
+ properties: { isMainApplication: true, section_id: "reedy" },
664
+ }),
665
+ makeComponent({
666
+ id: "tp_openai",
667
+ name: "Openai",
668
+ type: "third_party",
669
+ subType: "ai_provider",
670
+ properties: { serviceName: "openai", section_id: "reedy" },
671
+ }),
672
+ ];
673
+ const findings = [
674
+ makeFinding({
675
+ pattern: "external_api_call",
676
+ name: "openai",
677
+ location: makeLocation({
678
+ filePath: "reedy/package.json",
679
+ startLine: 1,
680
+ endLine: 1,
681
+ }),
682
+ properties: { serviceName: "openai", section_id: "reedy" },
683
+ }),
684
+ ];
685
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
686
+ expect(flows).toHaveLength(0);
687
+ });
688
+ it("prefers section API source for python route-handler style files", () => {
689
+ const components = [
690
+ makeComponent({
691
+ id: "main_backend",
692
+ name: "backend",
693
+ type: "asset",
694
+ subType: "application",
695
+ properties: { isMainApplication: true, section_id: "backend" },
696
+ }),
697
+ makeComponent({
698
+ id: "api_backend",
699
+ name: "API",
700
+ type: "asset",
701
+ subType: "api",
702
+ properties: { isSectionApiNode: true, section_id: "backend" },
703
+ }),
704
+ makeComponent({
705
+ id: "tp_openai",
706
+ name: "Openai",
707
+ type: "third_party",
708
+ subType: "ai_provider",
709
+ properties: { serviceName: "openai", section_id: "backend" },
710
+ }),
711
+ ];
712
+ const findings = [
713
+ makeFinding({
714
+ pattern: "external_api_call",
715
+ name: "openai",
716
+ location: makeLocation({
717
+ filePath: "backend/routers/chat.py",
718
+ startLine: 88,
719
+ endLine: 88,
720
+ }),
721
+ properties: { serviceName: "openai", section_id: "backend" },
722
+ }),
723
+ ];
724
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
725
+ const tpFlow = flows.find((f) => f.targetComponentId === "tp_openai");
726
+ expect(tpFlow).toBeDefined();
727
+ expect(tpFlow?.sourceComponentId).toBe("api_backend");
728
+ });
729
+ });
730
+ describe("service-to-service (express_route)", () => {
731
+ it("produces api_call flow from express_route to matching asset when target is not source", () => {
732
+ const components = [
733
+ makeComponent({
734
+ id: "app",
735
+ name: "Application",
736
+ type: "asset",
737
+ subType: "api",
738
+ properties: { isMainApplication: true },
739
+ }),
740
+ makeComponent({
741
+ id: "auth-api",
742
+ name: "Auth API",
743
+ type: "asset",
744
+ subType: "api",
745
+ properties: {},
746
+ }),
747
+ ];
748
+ const findings = [
749
+ makeFinding({
750
+ pattern: "express_route",
751
+ name: "Auth API",
752
+ properties: { path: "/auth" },
753
+ }),
754
+ ];
755
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
756
+ expect(flows).toHaveLength(1);
757
+ expect(flows[0].type).toBe("api_call");
758
+ expect(flows[0].sourceComponentId).toBe("app");
759
+ expect(flows[0].targetComponentId).toBe("auth-api");
760
+ expect(flows[0].targetScope).toBe("unknown");
761
+ });
762
+ it("classifies targetScope as cross_section_internal for cross-section internal flow", () => {
763
+ const components = [
764
+ makeComponent({
765
+ id: "app-s1",
766
+ name: "Service 1",
767
+ type: "asset",
768
+ subType: "api",
769
+ properties: { isMainApplication: true, section_id: "s1" },
770
+ }),
771
+ makeComponent({
772
+ id: "api-s2",
773
+ name: "Payments API",
774
+ type: "asset",
775
+ subType: "api",
776
+ properties: { section_id: "s2" },
777
+ }),
778
+ ];
779
+ const findings = [
780
+ makeFinding({
781
+ pattern: "express_route",
782
+ name: "Payments API",
783
+ properties: {},
784
+ }),
785
+ ];
786
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
787
+ expect(flows).toHaveLength(1);
788
+ expect(flows[0].targetScope).toBe("cross_section_internal");
789
+ expect(flows[0].targetScopeConfidence).toBe("high");
790
+ expect(flows[0].targetScopeReason).toBe("different-section-id");
791
+ });
792
+ it("uses section API node as source for express_route flows and adds main->API edge", () => {
793
+ const components = [
794
+ makeComponent({
795
+ id: "main-backend",
796
+ name: "Backend",
797
+ type: "asset",
798
+ subType: "application",
799
+ properties: { isMainApplication: true, section_id: "backend" },
800
+ }),
801
+ makeComponent({
802
+ id: "api-backend",
803
+ name: "API",
804
+ type: "asset",
805
+ subType: "api",
806
+ properties: { isSectionApiNode: true, section_id: "backend" },
807
+ }),
808
+ makeComponent({
809
+ id: "payments-service",
810
+ name: "Payments Service",
811
+ type: "asset",
812
+ subType: "service",
813
+ properties: { section_id: "backend" },
814
+ }),
815
+ ];
816
+ const findings = [
817
+ makeFinding({
818
+ pattern: "express_route",
819
+ name: "Payments Service",
820
+ properties: { section_id: "backend", path: "/payments" },
821
+ }),
822
+ ];
823
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
824
+ const routeFlow = flows.find((f) => f.targetComponentId === "payments-service");
825
+ const mainToApi = flows.find((f) => f.sourceComponentId === "main-backend" &&
826
+ f.targetComponentId === "api-backend");
827
+ expect(routeFlow).toBeDefined();
828
+ expect(routeFlow?.sourceComponentId).toBe("api-backend");
829
+ expect(mainToApi).toBeDefined();
830
+ expect(mainToApi?.targetScope).toBe("local");
831
+ expect(mainToApi?.targetScopeReason).toBe("main-to-section-api");
832
+ });
833
+ it("does not target main application from express_route matching", () => {
834
+ const components = [
835
+ makeComponent({
836
+ id: "main-backend",
837
+ name: "reedy",
838
+ type: "asset",
839
+ subType: "application",
840
+ properties: { isMainApplication: true, section_id: "backend" },
841
+ }),
842
+ makeComponent({
843
+ id: "api-backend",
844
+ name: "API",
845
+ type: "asset",
846
+ subType: "api",
847
+ properties: { isSectionApiNode: true, section_id: "backend" },
848
+ }),
849
+ ];
850
+ const findings = [
851
+ makeFinding({
852
+ pattern: "express_route",
853
+ name: "reedy",
854
+ properties: { section_id: "backend" },
855
+ }),
856
+ ];
857
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
858
+ const apiToMain = flows.find((f) => f.sourceComponentId === "api-backend" &&
859
+ f.targetComponentId === "main-backend");
860
+ expect(apiToMain).toBeUndefined();
861
+ });
862
+ });
863
+ describe("internal fetch mapping", () => {
864
+ it("does not create API self-loop when section API node is the source", () => {
865
+ const files = [
866
+ {
867
+ path: "frontend/app/page.tsx",
868
+ name: "page.tsx",
869
+ language: "typescript",
870
+ size: 64,
871
+ content: "async function load(){ await fetch('/api/auth/login'); }",
872
+ },
873
+ ];
874
+ const components = [
875
+ makeComponent({
876
+ id: "main-front",
877
+ name: "Frontend",
878
+ type: "asset",
879
+ subType: "application",
880
+ properties: { isMainApplication: true, section_id: "frontend" },
881
+ }),
882
+ makeComponent({
883
+ id: "api-front",
884
+ name: "API",
885
+ type: "asset",
886
+ subType: "api",
887
+ properties: {
888
+ isSectionApiNode: true,
889
+ section_id: "frontend",
890
+ path: "/api",
891
+ },
892
+ }),
893
+ ];
894
+ const flows = (0, detect_1.detectDataFlows)(files, components, [], [
895
+ {
896
+ id: "frontend",
897
+ label: "frontend",
898
+ role: "service",
899
+ sectionDir: "frontend",
900
+ manifestPaths: ["frontend/package.json"],
901
+ },
902
+ ]);
903
+ const hasSelfLoop = flows.some((f) => f.sourceComponentId === "api-front" && f.targetComponentId === "api-front");
904
+ expect(hasSelfLoop).toBe(false);
905
+ });
906
+ it("falls back to merged HTTP API surface when no route-named asset matches", () => {
907
+ const components = [
908
+ makeComponent({
909
+ id: "app",
910
+ name: "Application",
911
+ type: "asset",
912
+ subType: "api",
913
+ properties: { isMainApplication: true },
914
+ }),
915
+ makeComponent({
916
+ id: "http-api",
917
+ name: "HTTP API",
918
+ type: "asset",
919
+ subType: "api",
920
+ properties: { path: "/users" },
921
+ }),
922
+ ];
923
+ const findings = [
924
+ makeFinding({
925
+ pattern: "express_route",
926
+ name: "GET /users",
927
+ properties: { httpMethod: "GET", path: "/users" },
928
+ }),
929
+ ];
930
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
931
+ expect(flows).toHaveLength(1);
932
+ expect(flows[0].targetComponentId).toBe("http-api");
933
+ });
934
+ });
935
+ describe("actors", () => {
936
+ it("produces api_call flow from matching actor component to application", () => {
937
+ const components = [
938
+ makeComponent({
939
+ id: "app",
940
+ name: "Application",
941
+ type: "asset",
942
+ subType: "api",
943
+ properties: { isMainApplication: true },
944
+ }),
945
+ makeComponent({
946
+ id: "actor",
947
+ name: "Customer",
948
+ type: "actor",
949
+ subType: "customer",
950
+ properties: {},
951
+ }),
952
+ ];
953
+ const findings = [
954
+ makeFinding({
955
+ pattern: "web_actor",
956
+ name: "Customer",
957
+ properties: { actorType: "customer" },
958
+ }),
959
+ ];
960
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
961
+ expect(flows).toHaveLength(1);
962
+ expect(flows[0].type).toBe("api_call");
963
+ expect(flows[0].sourceComponentId).toBe("actor");
964
+ expect(flows[0].targetComponentId).toBe("app");
965
+ });
966
+ it("produces api_call flow from service_actor to the application", () => {
967
+ const components = [
968
+ makeComponent({
969
+ id: "app",
970
+ name: "App",
971
+ type: "asset",
972
+ subType: "service",
973
+ properties: { isMainApplication: true },
974
+ }),
975
+ makeComponent({
976
+ id: "admin",
977
+ name: "Admin user",
978
+ type: "actor",
979
+ subType: "employee",
980
+ properties: {},
981
+ }),
982
+ ];
983
+ const findings = [
984
+ makeFinding({
985
+ pattern: "service_actor",
986
+ name: "Admin user",
987
+ properties: {},
988
+ }),
989
+ ];
990
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
991
+ expect(flows).toHaveLength(1);
992
+ expect(flows[0].sourceComponentId).toBe("admin");
993
+ expect(flows[0].targetComponentId).toBe("app");
994
+ });
995
+ });
996
+ describe("no structural dedupe (handled separately)", () => {
997
+ it("emits a flow per matching finding; structural dedupe is handled by data-flow/dedupe", () => {
998
+ const components = [
999
+ makeComponent({
1000
+ id: "app",
1001
+ name: "App",
1002
+ type: "asset",
1003
+ subType: "api",
1004
+ properties: { isMainApplication: true },
1005
+ }),
1006
+ makeComponent({
1007
+ id: "db",
1008
+ name: "PostgreSQL",
1009
+ type: "asset",
1010
+ subType: "database",
1011
+ properties: { databaseType: "postgresql" },
1012
+ }),
1013
+ ];
1014
+ const findings = [
1015
+ makeFinding({
1016
+ pattern: "database_connection",
1017
+ name: "pg",
1018
+ location: makeLocation({ startLine: 1 }),
1019
+ properties: { databaseType: "postgresql" },
1020
+ }),
1021
+ makeFinding({
1022
+ pattern: "database_connection",
1023
+ name: "pg",
1024
+ location: makeLocation({ startLine: 5 }),
1025
+ properties: { databaseType: "postgresql" },
1026
+ }),
1027
+ ];
1028
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
1029
+ expect(flows).toHaveLength(2);
1030
+ expect(flows[0].sourceComponentId).toBe("app");
1031
+ expect(flows[0].targetComponentId).toBe("db");
1032
+ expect(flows[1].sourceComponentId).toBe("app");
1033
+ expect(flows[1].targetComponentId).toBe("db");
1034
+ });
1035
+ });
1036
+ describe("auth_middleware", () => {
1037
+ it("creates api_call flow from main application to auth_service", () => {
1038
+ const components = [
1039
+ makeComponent({
1040
+ id: "app",
1041
+ name: "HTTP API",
1042
+ type: "asset",
1043
+ subType: "api",
1044
+ properties: { isMainApplication: true, framework: "express" },
1045
+ }),
1046
+ makeComponent({
1047
+ id: "jwt",
1048
+ name: "Jwt",
1049
+ type: "asset",
1050
+ subType: "auth_service",
1051
+ properties: {},
1052
+ }),
1053
+ ];
1054
+ const findings = [
1055
+ makeFinding({
1056
+ pattern: "auth_middleware",
1057
+ name: "jwt",
1058
+ location: makeLocation({ filePath: "src/auth.js", startLine: 5 }),
1059
+ }),
1060
+ ];
1061
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
1062
+ expect(flows).toHaveLength(1);
1063
+ expect(flows[0].sourceComponentId).toBe("app");
1064
+ expect(flows[0].targetComponentId).toBe("jwt");
1065
+ expect(flows[0].type).toBe("api_call");
1066
+ });
1067
+ it("falls back to Auth0 third_party in the same section when auth_service asset is missing", () => {
1068
+ const components = [
1069
+ makeComponent({
1070
+ id: "app-backend",
1071
+ name: "Backend",
1072
+ type: "asset",
1073
+ subType: "application",
1074
+ properties: { isMainApplication: true, section_id: "backend" },
1075
+ }),
1076
+ makeComponent({
1077
+ id: "auth0-backend",
1078
+ name: "Auth0",
1079
+ type: "third_party",
1080
+ subType: "saas_service",
1081
+ properties: { serviceName: "auth0", section_id: "backend" },
1082
+ }),
1083
+ makeComponent({
1084
+ id: "auth0-frontend",
1085
+ name: "Auth0",
1086
+ type: "third_party",
1087
+ subType: "saas_service",
1088
+ properties: { serviceName: "auth0", section_id: "frontend" },
1089
+ }),
1090
+ ];
1091
+ const findings = [
1092
+ makeFinding({
1093
+ pattern: "auth_middleware",
1094
+ name: "auth0 guard",
1095
+ location: makeLocation({
1096
+ filePath: "backend/src/auth/guards/auth0.guard.ts",
1097
+ startLine: 8,
1098
+ }),
1099
+ properties: { section_id: "backend" },
1100
+ }),
1101
+ ];
1102
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
1103
+ expect(flows).toHaveLength(1);
1104
+ expect(flows[0].sourceComponentId).toBe("app-backend");
1105
+ expect(flows[0].targetComponentId).toBe("auth0-backend");
1106
+ expect(flows[0].type).toBe("api_call");
1107
+ });
1108
+ });
1109
+ describe("edge cases", () => {
1110
+ it("returns empty array for empty components", () => {
1111
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, [], []);
1112
+ expect(flows).toHaveLength(0);
1113
+ });
1114
+ it("returns empty array for empty findings", () => {
1115
+ const components = [
1116
+ makeComponent({
1117
+ id: "app",
1118
+ name: "App",
1119
+ type: "asset",
1120
+ subType: "api",
1121
+ properties: { isMainApplication: true },
1122
+ }),
1123
+ ];
1124
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, []);
1125
+ expect(flows).toHaveLength(0);
1126
+ });
1127
+ it("skips database_connection when no matching target component", () => {
1128
+ const components = [
1129
+ makeComponent({
1130
+ id: "app",
1131
+ name: "App",
1132
+ type: "asset",
1133
+ subType: "api",
1134
+ properties: { isMainApplication: true },
1135
+ }),
1136
+ ];
1137
+ const findings = [
1138
+ makeFinding({
1139
+ pattern: "database_connection",
1140
+ name: "unknown-db",
1141
+ properties: { databaseType: "unknown" },
1142
+ }),
1143
+ ];
1144
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
1145
+ expect(flows).toHaveLength(0);
1146
+ });
1147
+ it("skips external_api_call when no matching third_party component", () => {
1148
+ const components = [
1149
+ makeComponent({
1150
+ id: "app",
1151
+ name: "App",
1152
+ type: "asset",
1153
+ subType: "api",
1154
+ properties: { isMainApplication: true },
1155
+ }),
1156
+ ];
1157
+ const findings = [
1158
+ makeFinding({
1159
+ pattern: "external_api_call",
1160
+ name: "unknown-service",
1161
+ properties: { serviceName: "unknown" },
1162
+ }),
1163
+ ];
1164
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
1165
+ expect(flows).toHaveLength(0);
1166
+ });
1167
+ it("assigns unique id and confidence to each flow", () => {
1168
+ const components = [
1169
+ makeComponent({
1170
+ id: "app",
1171
+ name: "App",
1172
+ type: "asset",
1173
+ subType: "api",
1174
+ properties: { isMainApplication: true },
1175
+ }),
1176
+ makeComponent({
1177
+ id: "db",
1178
+ name: "PostgreSQL",
1179
+ type: "asset",
1180
+ subType: "database",
1181
+ properties: { databaseType: "postgresql" },
1182
+ }),
1183
+ makeComponent({
1184
+ id: "tp",
1185
+ name: "Stripe",
1186
+ type: "third_party",
1187
+ subType: "payment_processor",
1188
+ properties: { serviceName: "stripe" },
1189
+ }),
1190
+ ];
1191
+ const findings = [
1192
+ makeFinding({
1193
+ pattern: "database_connection",
1194
+ name: "pg",
1195
+ confidence: 0.85,
1196
+ properties: { databaseType: "postgresql" },
1197
+ }),
1198
+ makeFinding({
1199
+ pattern: "external_api_call",
1200
+ name: "stripe",
1201
+ confidence: 0.95,
1202
+ properties: { serviceName: "stripe" },
1203
+ }),
1204
+ ];
1205
+ const flows = (0, detect_1.detectDataFlows)(emptyFiles, components, findings);
1206
+ expect(flows).toHaveLength(2);
1207
+ const ids = flows.map((f) => f.id);
1208
+ expect(new Set(ids).size).toBe(2);
1209
+ expect(flows.every((f) => typeof f.confidence === "number" && f.confidence >= 0 && f.confidence <= 1)).toBe(true);
1210
+ });
1211
+ it("keeps unique flow ids when adding synthetic main->API edge after internal fetch flows", () => {
1212
+ const files = [
1213
+ {
1214
+ path: "frontend/app/page.tsx",
1215
+ name: "page.tsx",
1216
+ language: "typescript",
1217
+ size: 64,
1218
+ content: "async function load(){ await fetch('/api/auth/login'); }",
1219
+ },
1220
+ ];
1221
+ const components = [
1222
+ makeComponent({
1223
+ id: "main-front",
1224
+ name: "Frontend",
1225
+ type: "asset",
1226
+ subType: "application",
1227
+ properties: { isMainApplication: true, section_id: "frontend" },
1228
+ }),
1229
+ makeComponent({
1230
+ id: "api-front",
1231
+ name: "API",
1232
+ type: "asset",
1233
+ subType: "api",
1234
+ properties: {
1235
+ isSectionApiNode: true,
1236
+ section_id: "frontend",
1237
+ path: "/api",
1238
+ },
1239
+ }),
1240
+ ];
1241
+ const flows = (0, detect_1.detectDataFlows)(files, components, [], [
1242
+ {
1243
+ id: "frontend",
1244
+ label: "frontend",
1245
+ role: "service",
1246
+ sectionDir: "frontend",
1247
+ manifestPaths: ["frontend/package.json"],
1248
+ },
1249
+ ]);
1250
+ const ids = flows.map((f) => f.id);
1251
+ expect(new Set(ids).size).toBe(ids.length);
1252
+ });
1253
+ });
1254
+ });