@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.
- package/LICENSE +674 -0
- package/README.md +592 -0
- package/dist/bin/cli.d.ts +2 -0
- package/dist/bin/cli.js +7 -0
- package/dist/bin/load-env.d.ts +2 -0
- package/dist/bin/load-env.js +4 -0
- package/dist/src/ai-enrichment/agent-orchestrator.d.ts +28 -0
- package/dist/src/ai-enrichment/agent-orchestrator.js +476 -0
- package/dist/src/ai-enrichment/agents/index.d.ts +4 -0
- package/dist/src/ai-enrichment/agents/index.js +50 -0
- package/dist/src/ai-enrichment/candidate-selector.d.ts +10 -0
- package/dist/src/ai-enrichment/candidate-selector.js +158 -0
- package/dist/src/ai-enrichment/fallbacks.d.ts +6 -0
- package/dist/src/ai-enrichment/fallbacks.js +762 -0
- package/dist/src/ai-enrichment/index.d.ts +15 -0
- package/dist/src/ai-enrichment/index.js +31 -0
- package/dist/src/ai-enrichment/merge-rules.d.ts +12 -0
- package/dist/src/ai-enrichment/merge-rules.js +321 -0
- package/dist/src/ai-enrichment/non-pii-signal-rules.d.ts +10 -0
- package/dist/src/ai-enrichment/non-pii-signal-rules.js +72 -0
- package/dist/src/ai-enrichment/openai-proposals-response.schema.d.ts +94 -0
- package/dist/src/ai-enrichment/openai-proposals-response.schema.js +82 -0
- package/dist/src/ai-enrichment/pii-signal-rules.d.ts +8 -0
- package/dist/src/ai-enrichment/pii-signal-rules.js +68 -0
- package/dist/src/ai-enrichment/pipeline.d.ts +2 -0
- package/dist/src/ai-enrichment/pipeline.js +48 -0
- package/dist/src/ai-enrichment/planner.d.ts +2 -0
- package/dist/src/ai-enrichment/planner.js +60 -0
- package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.d.ts +12 -0
- package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.js +45 -0
- package/dist/src/ai-enrichment/provider-prompt.d.ts +32 -0
- package/dist/src/ai-enrichment/provider-prompt.js +222 -0
- package/dist/src/ai-enrichment/provider-topology-rules.d.ts +52 -0
- package/dist/src/ai-enrichment/provider-topology-rules.js +190 -0
- package/dist/src/ai-enrichment/provider-topology-shared.d.ts +48 -0
- package/dist/src/ai-enrichment/provider-topology-shared.js +329 -0
- package/dist/src/ai-enrichment/providers/endpoint-resolution.d.ts +13 -0
- package/dist/src/ai-enrichment/providers/endpoint-resolution.js +41 -0
- package/dist/src/ai-enrichment/providers/families/chat-completions-family.d.ts +13 -0
- package/dist/src/ai-enrichment/providers/families/chat-completions-family.js +181 -0
- package/dist/src/ai-enrichment/providers/families/generate-content-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/generate-content-family.js +93 -0
- package/dist/src/ai-enrichment/providers/families/messages-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/messages-family.js +86 -0
- package/dist/src/ai-enrichment/providers/families/ollama-generate-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/ollama-generate-family.js +69 -0
- package/dist/src/ai-enrichment/providers/fetch-with-timeout.d.ts +2 -0
- package/dist/src/ai-enrichment/providers/fetch-with-timeout.js +22 -0
- package/dist/src/ai-enrichment/providers/index.d.ts +16 -0
- package/dist/src/ai-enrichment/providers/index.js +40 -0
- package/dist/src/ai-enrichment/providers/mock.d.ts +5 -0
- package/dist/src/ai-enrichment/providers/mock.js +12 -0
- package/dist/src/ai-enrichment/providers/platform-proxy-provider.d.ts +20 -0
- package/dist/src/ai-enrichment/providers/platform-proxy-provider.js +116 -0
- package/dist/src/ai-enrichment/providers/presets.d.ts +14 -0
- package/dist/src/ai-enrichment/providers/presets.js +50 -0
- package/dist/src/ai-enrichment/providers/provider-contract.d.ts +20 -0
- package/dist/src/ai-enrichment/providers/provider-contract.js +703 -0
- package/dist/src/ai-enrichment/providers/provider-json-parse.d.ts +23 -0
- package/dist/src/ai-enrichment/providers/provider-json-parse.js +96 -0
- package/dist/src/ai-enrichment/providers/provider-output-token-budget.d.ts +5 -0
- package/dist/src/ai-enrichment/providers/provider-output-token-budget.js +11 -0
- package/dist/src/ai-enrichment/providers/provider-pricing.d.ts +7 -0
- package/dist/src/ai-enrichment/providers/provider-pricing.js +32 -0
- package/dist/src/ai-enrichment/providers/provider-runtime.d.ts +9 -0
- package/dist/src/ai-enrichment/providers/provider-runtime.js +54 -0
- package/dist/src/ai-enrichment/providers/resolve-provider.d.ts +27 -0
- package/dist/src/ai-enrichment/providers/resolve-provider.js +41 -0
- package/dist/src/ai-enrichment/providers/types.d.ts +24 -0
- package/dist/src/ai-enrichment/providers/types.js +2 -0
- package/dist/src/ai-enrichment/scan-paths.d.ts +9 -0
- package/dist/src/ai-enrichment/scan-paths.js +28 -0
- package/dist/src/ai-enrichment/sensitive-paths.d.ts +5 -0
- package/dist/src/ai-enrichment/sensitive-paths.js +10 -0
- package/dist/src/ai-enrichment/third-party-data-flow.d.ts +27 -0
- package/dist/src/ai-enrichment/third-party-data-flow.js +518 -0
- package/dist/src/ai-enrichment/third-party-evidence.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-evidence.js +426 -0
- package/dist/src/ai-enrichment/third-party-property-matrix.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-property-matrix.js +52 -0
- package/dist/src/ai-enrichment/third-party-subtype.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-subtype.js +166 -0
- package/dist/src/ai-enrichment/tools/index.d.ts +39 -0
- package/dist/src/ai-enrichment/tools/index.js +121 -0
- package/dist/src/ai-enrichment/types.d.ts +170 -0
- package/dist/src/ai-enrichment/types.js +12 -0
- package/dist/src/analyzers/python/dependency-manifests.d.ts +8 -0
- package/dist/src/analyzers/python/dependency-manifests.js +131 -0
- package/dist/src/analyzers/python/detector.d.ts +3 -0
- package/dist/src/analyzers/python/detector.js +22 -0
- package/dist/src/analyzers/python/index.d.ts +2 -0
- package/dist/src/analyzers/python/index.js +11 -0
- package/dist/src/analyzers/python/manifest-parsers.d.ts +3 -0
- package/dist/src/analyzers/python/manifest-parsers.js +134 -0
- package/dist/src/analyzers/python/parser.d.ts +26 -0
- package/dist/src/analyzers/python/parser.js +187 -0
- package/dist/src/analyzers/python/patterns.d.ts +7 -0
- package/dist/src/analyzers/python/patterns.js +106 -0
- package/dist/src/analyzers/python/python-detection-config.d.ts +75 -0
- package/dist/src/analyzers/python/python-detection-config.js +148 -0
- package/dist/src/analyzers/registry.d.ts +13 -0
- package/dist/src/analyzers/registry.js +60 -0
- package/dist/src/analyzers/shared/manifest-budgets.d.ts +19 -0
- package/dist/src/analyzers/shared/manifest-budgets.js +21 -0
- package/dist/src/analyzers/shared/manifest-fs.d.ts +13 -0
- package/dist/src/analyzers/shared/manifest-fs.js +138 -0
- package/dist/src/analyzers/shared/property-inference.d.ts +8 -0
- package/dist/src/analyzers/shared/property-inference.js +165 -0
- package/dist/src/analyzers/terraform/detector.d.ts +10 -0
- package/dist/src/analyzers/terraform/detector.js +198 -0
- package/dist/src/analyzers/terraform/index.d.ts +2 -0
- package/dist/src/analyzers/terraform/index.js +13 -0
- package/dist/src/analyzers/terraform/parser.d.ts +29 -0
- package/dist/src/analyzers/terraform/parser.js +202 -0
- package/dist/src/analyzers/terraform/terraform-detection-config.d.ts +48 -0
- package/dist/src/analyzers/terraform/terraform-detection-config.js +218 -0
- package/dist/src/analyzers/terraform/terraform-exec.d.ts +11 -0
- package/dist/src/analyzers/terraform/terraform-exec.js +35 -0
- package/dist/src/analyzers/terraform/terraform-module-manifest.d.ts +19 -0
- package/dist/src/analyzers/terraform/terraform-module-manifest.js +75 -0
- package/dist/src/analyzers/terraform/terraform-show-json.d.ts +15 -0
- package/dist/src/analyzers/terraform/terraform-show-json.js +188 -0
- package/dist/src/analyzers/terraform/terraform-utility-resource.d.ts +12 -0
- package/dist/src/analyzers/terraform/terraform-utility-resource.js +30 -0
- package/dist/src/analyzers/types.d.ts +5 -0
- package/dist/src/analyzers/types.js +2 -0
- package/dist/src/analyzers/typescript/actor-detection.d.ts +4 -0
- package/dist/src/analyzers/typescript/actor-detection.js +15 -0
- package/dist/src/analyzers/typescript/dependency-manifests.d.ts +9 -0
- package/dist/src/analyzers/typescript/dependency-manifests.js +131 -0
- package/dist/src/analyzers/typescript/detector.d.ts +3 -0
- package/dist/src/analyzers/typescript/detector.js +23 -0
- package/dist/src/analyzers/typescript/index.d.ts +2 -0
- package/dist/src/analyzers/typescript/index.js +11 -0
- package/dist/src/analyzers/typescript/manifest-parsers.d.ts +1 -0
- package/dist/src/analyzers/typescript/manifest-parsers.js +30 -0
- package/dist/src/analyzers/typescript/parser.d.ts +44 -0
- package/dist/src/analyzers/typescript/parser.js +287 -0
- package/dist/src/analyzers/typescript/third-party-detection.d.ts +4 -0
- package/dist/src/analyzers/typescript/third-party-detection.js +16 -0
- package/dist/src/analyzers/typescript/typescript-detection-config.d.ts +68 -0
- package/dist/src/analyzers/typescript/typescript-detection-config.js +171 -0
- package/dist/src/analyzers/typescript/typescript-detection.d.ts +10 -0
- package/dist/src/analyzers/typescript/typescript-detection.js +57 -0
- package/dist/src/classifier/application-injection.d.ts +12 -0
- package/dist/src/classifier/application-injection.js +335 -0
- package/dist/src/classifier/classify.d.ts +3 -0
- package/dist/src/classifier/classify.js +15 -0
- package/dist/src/classifier/component-factory.d.ts +3 -0
- package/dist/src/classifier/component-factory.js +488 -0
- package/dist/src/classifier/config.d.ts +38 -0
- package/dist/src/classifier/config.js +260 -0
- package/dist/src/classifier/enhance-defaults.d.ts +28 -0
- package/dist/src/classifier/enhance-defaults.js +369 -0
- package/dist/src/classifier/enhance.d.ts +13 -0
- package/dist/src/classifier/enhance.js +295 -0
- package/dist/src/classifier/external-url-third-party.d.ts +26 -0
- package/dist/src/classifier/external-url-third-party.js +195 -0
- package/dist/src/classifier/grouping.d.ts +1 -0
- package/dist/src/classifier/grouping.js +2 -0
- package/dist/src/classifier/main-application-selection.d.ts +41 -0
- package/dist/src/classifier/main-application-selection.js +222 -0
- package/dist/src/classifier/naming.d.ts +4 -0
- package/dist/src/classifier/naming.js +78 -0
- package/dist/src/classifier/postprocessing.d.ts +12 -0
- package/dist/src/classifier/postprocessing.js +510 -0
- package/dist/src/classifier/sectioning.d.ts +5 -0
- package/dist/src/classifier/sectioning.js +60 -0
- package/dist/src/classifier/terraform-provider-hub.d.ts +6 -0
- package/dist/src/classifier/terraform-provider-hub.js +38 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +498 -0
- package/dist/src/config/actor-detection-config.d.ts +21 -0
- package/dist/src/config/actor-detection-config.js +97 -0
- package/dist/src/config/env.d.ts +2 -0
- package/dist/src/config/env.js +75 -0
- package/dist/src/config/file.d.ts +6 -0
- package/dist/src/config/file.js +74 -0
- package/dist/src/config/inference-scope.d.ts +2 -0
- package/dist/src/config/inference-scope.js +15 -0
- package/dist/src/config/load-cli-env.d.ts +1 -0
- package/dist/src/config/load-cli-env.js +54 -0
- package/dist/src/config/normalize-ai-provider.d.ts +5 -0
- package/dist/src/config/normalize-ai-provider.js +18 -0
- package/dist/src/config/property-detection-config.d.ts +27 -0
- package/dist/src/config/property-detection-config.js +355 -0
- package/dist/src/config/redact.d.ts +3 -0
- package/dist/src/config/redact.js +14 -0
- package/dist/src/config/resolve.d.ts +15 -0
- package/dist/src/config/resolve.js +361 -0
- package/dist/src/config/scan-env.d.ts +7 -0
- package/dist/src/config/scan-env.js +38 -0
- package/dist/src/config/third-party-detection-config.d.ts +25 -0
- package/dist/src/config/third-party-detection-config.js +97 -0
- package/dist/src/config/types.d.ts +106 -0
- package/dist/src/config/types.js +2 -0
- package/dist/src/config/validate-scan-ai.d.ts +3 -0
- package/dist/src/config/validate-scan-ai.js +33 -0
- package/dist/src/core/pipeline/ai-orchestrator-options.d.ts +6 -0
- package/dist/src/core/pipeline/ai-orchestrator-options.js +46 -0
- package/dist/src/core/pipeline/classifier-phase.d.ts +7 -0
- package/dist/src/core/pipeline/classifier-phase.js +78 -0
- package/dist/src/core/pipeline/dataflow-phase.d.ts +7 -0
- package/dist/src/core/pipeline/dataflow-phase.js +10 -0
- package/dist/src/core/pipeline/diagram-layout/app-section-layout.d.ts +7 -0
- package/dist/src/core/pipeline/diagram-layout/app-section-layout.js +74 -0
- package/dist/src/core/pipeline/diagram-layout/constants.d.ts +11 -0
- package/dist/src/core/pipeline/diagram-layout/constants.js +14 -0
- package/dist/src/core/pipeline/diagram-layout/edge-handles.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/edge-handles.js +26 -0
- package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.js +40 -0
- package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.d.ts +6 -0
- package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.js +53 -0
- package/dist/src/core/pipeline/diagram-layout/section-helpers.d.ts +30 -0
- package/dist/src/core/pipeline/diagram-layout/section-helpers.js +62 -0
- package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.js +109 -0
- package/dist/src/core/pipeline/diagram-layout/types.d.ts +2 -0
- package/dist/src/core/pipeline/diagram-layout/types.js +2 -0
- package/dist/src/core/pipeline/graph-mapping.d.ts +6 -0
- package/dist/src/core/pipeline/graph-mapping.js +308 -0
- package/dist/src/core/pipeline/mixed-app-terraform-scan.d.ts +13 -0
- package/dist/src/core/pipeline/mixed-app-terraform-scan.js +81 -0
- package/dist/src/core/pipeline/orchestrator-result.d.ts +6 -0
- package/dist/src/core/pipeline/orchestrator-result.js +2 -0
- package/dist/src/core/pipeline/orchestrator.d.ts +26 -0
- package/dist/src/core/pipeline/orchestrator.js +79 -0
- package/dist/src/core/pipeline/resolve-path-under-scan-root.d.ts +7 -0
- package/dist/src/core/pipeline/resolve-path-under-scan-root.js +55 -0
- package/dist/src/core/pipeline/scan-pipeline.d.ts +6 -0
- package/dist/src/core/pipeline/scan-pipeline.js +364 -0
- package/dist/src/core/pipeline/sorting.d.ts +3 -0
- package/dist/src/core/pipeline/sorting.js +48 -0
- package/dist/src/core/pipeline/stable-component-ids.d.ts +15 -0
- package/dist/src/core/pipeline/stable-component-ids.js +68 -0
- package/dist/src/core/pipeline/structural-scan.d.ts +19 -0
- package/dist/src/core/pipeline/structural-scan.js +304 -0
- package/dist/src/core/pipeline/terraform-flow-utils.d.ts +6 -0
- package/dist/src/core/pipeline/terraform-flow-utils.js +32 -0
- package/dist/src/core/pipeline/terraform-minimal-services.d.ts +31 -0
- package/dist/src/core/pipeline/terraform-minimal-services.js +225 -0
- package/dist/src/core/schema/dataflow-wrapper.schema.d.ts +83 -0
- package/dist/src/core/schema/dataflow-wrapper.schema.js +40 -0
- package/dist/src/core/schema/diagram-graph.schema.d.ts +93 -0
- package/dist/src/core/schema/diagram-graph.schema.js +55 -0
- package/dist/src/core/schema/index.d.ts +4 -0
- package/dist/src/core/schema/index.js +20 -0
- package/dist/src/core/schema/scan-config.schema.d.ts +66 -0
- package/dist/src/core/schema/scan-config.schema.js +67 -0
- package/dist/src/core/schema/scan-result.schema.d.ts +450 -0
- package/dist/src/core/schema/scan-result.schema.js +236 -0
- package/dist/src/core/sectioning/discover-service-sections.d.ts +80 -0
- package/dist/src/core/sectioning/discover-service-sections.js +468 -0
- package/dist/src/core/sectioning/section-runtime.d.ts +21 -0
- package/dist/src/core/sectioning/section-runtime.js +148 -0
- package/dist/src/core/terraform/component-predicates.d.ts +13 -0
- package/dist/src/core/terraform/component-predicates.js +71 -0
- package/dist/src/core/types/component.d.ts +18 -0
- package/dist/src/core/types/component.js +2 -0
- package/dist/src/core/types/config.d.ts +57 -0
- package/dist/src/core/types/config.js +2 -0
- package/dist/src/core/types/data-flow.d.ts +24 -0
- package/dist/src/core/types/data-flow.js +2 -0
- package/dist/src/core/types/detection.d.ts +12 -0
- package/dist/src/core/types/detection.js +19 -0
- package/dist/src/core/types/file.d.ts +14 -0
- package/dist/src/core/types/file.js +2 -0
- package/dist/src/core/types/index.d.ts +7 -0
- package/dist/src/core/types/index.js +23 -0
- package/dist/src/core/types/progress.d.ts +9 -0
- package/dist/src/core/types/progress.js +2 -0
- package/dist/src/core/types/result.d.ts +140 -0
- package/dist/src/core/types/result.js +2 -0
- package/dist/src/data-flow/application-hub.d.ts +7 -0
- package/dist/src/data-flow/application-hub.js +88 -0
- package/dist/src/data-flow/dedupe.d.ts +7 -0
- package/dist/src/data-flow/dedupe.js +92 -0
- package/dist/src/data-flow/detect.d.ts +16 -0
- package/dist/src/data-flow/detect.js +203 -0
- package/dist/src/data-flow/detector.d.ts +15 -0
- package/dist/src/data-flow/detector.js +18 -0
- package/dist/src/data-flow/drop-cross-section-flows.d.ts +8 -0
- package/dist/src/data-flow/drop-cross-section-flows.js +32 -0
- package/dist/src/data-flow/ensure-actor-flow.d.ts +16 -0
- package/dist/src/data-flow/ensure-actor-flow.js +101 -0
- package/dist/src/data-flow/ensure-manifest-declared-flows.d.ts +14 -0
- package/dist/src/data-flow/ensure-manifest-declared-flows.js +76 -0
- package/dist/src/data-flow/ensure-section-api-flows.d.ts +6 -0
- package/dist/src/data-flow/ensure-section-api-flows.js +57 -0
- package/dist/src/data-flow/flow-builder.d.ts +5 -0
- package/dist/src/data-flow/flow-builder.js +80 -0
- package/dist/src/data-flow/import-graph.d.ts +10 -0
- package/dist/src/data-flow/import-graph.js +147 -0
- package/dist/src/data-flow/index.d.ts +8 -0
- package/dist/src/data-flow/index.js +20 -0
- package/dist/src/data-flow/internal-fetch.d.ts +8 -0
- package/dist/src/data-flow/internal-fetch.js +209 -0
- package/dist/src/data-flow/postprocess.d.ts +9 -0
- package/dist/src/data-flow/postprocess.js +63 -0
- package/dist/src/data-flow/rewire.d.ts +10 -0
- package/dist/src/data-flow/rewire.js +93 -0
- package/dist/src/data-flow/source-attribution.d.ts +8 -0
- package/dist/src/data-flow/source-attribution.js +131 -0
- package/dist/src/data-flow/source-resolution.d.ts +13 -0
- package/dist/src/data-flow/source-resolution.js +61 -0
- package/dist/src/data-flow/target-matching.d.ts +21 -0
- package/dist/src/data-flow/target-matching.js +253 -0
- package/dist/src/data-flow/terraform-flows.d.ts +32 -0
- package/dist/src/data-flow/terraform-flows.js +170 -0
- package/dist/src/evals/metrics.d.ts +18 -0
- package/dist/src/evals/metrics.js +58 -0
- package/dist/src/evals/run-model-matrix.d.ts +1 -0
- package/dist/src/evals/run-model-matrix.js +68 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +20 -0
- package/dist/src/ingest/file-system.d.ts +17 -0
- package/dist/src/ingest/file-system.js +239 -0
- package/dist/src/ingest/gitignore.d.ts +12 -0
- package/dist/src/ingest/gitignore.js +127 -0
- package/dist/src/ingest/sensitive-paths.d.ts +2 -0
- package/dist/src/ingest/sensitive-paths.js +8 -0
- package/dist/src/observability/scan-sentry.d.ts +20 -0
- package/dist/src/observability/scan-sentry.js +133 -0
- package/dist/src/output/json.d.ts +51 -0
- package/dist/src/output/json.js +59 -0
- package/dist/src/patterns/config.d.ts +22 -0
- package/dist/src/patterns/config.js +119 -0
- package/dist/src/patterns/detectors/helpers.d.ts +19 -0
- package/dist/src/patterns/detectors/helpers.js +68 -0
- package/dist/src/patterns/detectors/python.d.ts +8 -0
- package/dist/src/patterns/detectors/python.js +412 -0
- package/dist/src/patterns/detectors/typescript.d.ts +8 -0
- package/dist/src/patterns/detectors/typescript.js +328 -0
- package/dist/src/patterns/engine.d.ts +40 -0
- package/dist/src/patterns/engine.js +111 -0
- package/dist/src/patterns/flow-source-patterns.d.ts +6 -0
- package/dist/src/patterns/flow-source-patterns.js +39 -0
- package/dist/src/patterns/frontend-frameworks.d.ts +4 -0
- package/dist/src/patterns/frontend-frameworks.js +25 -0
- package/dist/src/patterns/scan-exclusions.d.ts +14 -0
- package/dist/src/patterns/scan-exclusions.js +76 -0
- package/dist/src/platform-api/dataparade-api-base-url.d.ts +8 -0
- package/dist/src/platform-api/dataparade-api-base-url.js +17 -0
- package/dist/src/platform-api/estimate-scan-footprint.d.ts +8 -0
- package/dist/src/platform-api/estimate-scan-footprint.js +120 -0
- package/dist/src/platform-api/scan-quota-client.d.ts +28 -0
- package/dist/src/platform-api/scan-quota-client.js +79 -0
- package/dist/src/tracing/langsmith-tracing.d.ts +37 -0
- package/dist/src/tracing/langsmith-tracing.js +171 -0
- package/dist/tests/cli/cli.spec.d.ts +1 -0
- package/dist/tests/cli/cli.spec.js +87 -0
- package/dist/tests/fixtures/e2e-ts-sample/db-client-import.d.ts +2 -0
- package/dist/tests/fixtures/e2e-ts-sample/db-client-import.js +8 -0
- package/dist/tests/fixtures/e2e-ts-sample/db.d.ts +3 -0
- package/dist/tests/fixtures/e2e-ts-sample/db.js +7 -0
- package/dist/tests/fixtures/e2e-ts-sample/external-api.d.ts +1 -0
- package/dist/tests/fixtures/e2e-ts-sample/external-api.js +18 -0
- package/dist/tests/fixtures/e2e-ts-sample/pg-client.d.ts +3 -0
- package/dist/tests/fixtures/e2e-ts-sample/pg-client.js +7 -0
- package/dist/tests/fixtures/e2e-ts-sample/server.d.ts +14 -0
- package/dist/tests/fixtures/e2e-ts-sample/server.js +4 -0
- package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.d.ts +1 -0
- package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.js +24 -0
- package/dist/tests/fixtures/ingest-basic/src/index.d.ts +1 -0
- package/dist/tests/fixtures/ingest-basic/src/index.js +6 -0
- package/dist/tests/fixtures/mixed-language-basic/api.d.ts +2 -0
- package/dist/tests/fixtures/mixed-language-basic/api.js +12 -0
- package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.js +6 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.js +6 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.js +7 -0
- package/dist/tests/fixtures/typescript-basic/app/route.d.ts +1 -0
- package/dist/tests/fixtures/typescript-basic/app/route.js +7 -0
- package/dist/tests/fixtures/typescript-basic/db-client-import.d.ts +2 -0
- package/dist/tests/fixtures/typescript-basic/db-client-import.js +8 -0
- package/dist/tests/fixtures/typescript-basic/db.d.ts +3 -0
- package/dist/tests/fixtures/typescript-basic/db.js +7 -0
- package/dist/tests/fixtures/typescript-basic/external-api.d.ts +1 -0
- package/dist/tests/fixtures/typescript-basic/external-api.js +18 -0
- package/dist/tests/fixtures/typescript-basic/pg-client.d.ts +3 -0
- package/dist/tests/fixtures/typescript-basic/pg-client.js +7 -0
- package/dist/tests/fixtures/typescript-basic/server.d.ts +14 -0
- package/dist/tests/fixtures/typescript-basic/server.js +4 -0
- package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.d.ts +0 -0
- package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.js +2 -0
- package/dist/tests/helpers/scan-result-builders.d.ts +2 -0
- package/dist/tests/helpers/scan-result-builders.js +15 -0
- package/dist/tests/schema/dataflow-wrapper.schema.spec.d.ts +1 -0
- package/dist/tests/schema/dataflow-wrapper.schema.spec.js +89 -0
- package/dist/tests/schema/diagram-graph.schema.spec.d.ts +1 -0
- package/dist/tests/schema/diagram-graph.schema.spec.js +48 -0
- package/dist/tests/schema/scan-config.schema.spec.d.ts +1 -0
- package/dist/tests/schema/scan-config.schema.spec.js +135 -0
- package/dist/tests/schema/scan-result.schema.spec.d.ts +1 -0
- package/dist/tests/schema/scan-result.schema.spec.js +177 -0
- package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.js +483 -0
- package/dist/tests/unit/ai-enrichment/candidate-selector.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/candidate-selector.spec.js +106 -0
- package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.js +32 -0
- package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.js +47 -0
- package/dist/tests/unit/ai-enrichment/fallbacks.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/fallbacks.spec.js +1304 -0
- package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.js +219 -0
- package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.js +119 -0
- package/dist/tests/unit/ai-enrichment/families/messages-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/messages-family.spec.js +129 -0
- package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.js +69 -0
- package/dist/tests/unit/ai-enrichment/merge-rules.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/merge-rules.spec.js +422 -0
- package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.js +30 -0
- package/dist/tests/unit/ai-enrichment/pipeline.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/pipeline.spec.js +120 -0
- package/dist/tests/unit/ai-enrichment/planner.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/planner.spec.js +106 -0
- package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.js +51 -0
- package/dist/tests/unit/ai-enrichment/provider-contract.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-contract.spec.js +244 -0
- package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.js +24 -0
- package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.js +15 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.js +54 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt.spec.js +206 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.js +43 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.js +40 -0
- package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.js +22 -0
- package/dist/tests/unit/ai-enrichment/resolve-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/resolve-provider.spec.js +67 -0
- package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.js +35 -0
- package/dist/tests/unit/ai-enrichment/scan-paths.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/scan-paths.spec.js +21 -0
- package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.js +20 -0
- package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.js +963 -0
- package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.js +117 -0
- package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.js +45 -0
- package/dist/tests/unit/ai-enrichment/tools-validation.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/tools-validation.spec.js +66 -0
- package/dist/tests/unit/analyzers/python/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/python/parser.spec.js +104 -0
- package/dist/tests/unit/analyzers/python/patterns.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/python/patterns.spec.js +289 -0
- package/dist/tests/unit/analyzers/registry.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/registry.spec.js +234 -0
- package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.js +87 -0
- package/dist/tests/unit/analyzers/terraform/detector.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/detector.spec.js +110 -0
- package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.js +53 -0
- package/dist/tests/unit/analyzers/terraform/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/parser.spec.js +56 -0
- package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.js +63 -0
- package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.js +19 -0
- package/dist/tests/unit/analyzers/terraform-exec.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform-exec.spec.js +27 -0
- package/dist/tests/unit/analyzers/terraform-show-json.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform-show-json.spec.js +77 -0
- package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.js +61 -0
- package/dist/tests/unit/analyzers/typescript/detector.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/detector.spec.js +225 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.js +49 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.js +27 -0
- package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.js +64 -0
- package/dist/tests/unit/analyzers/typescript/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/parser.spec.js +99 -0
- package/dist/tests/unit/analyzers/typescript/pattern-config.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/pattern-config.spec.js +24 -0
- package/dist/tests/unit/analyzers/typescript/property-detection.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/property-detection.spec.js +138 -0
- package/dist/tests/unit/classifier/classify.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/classify.spec.js +1453 -0
- package/dist/tests/unit/classifier/enhance.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/enhance.spec.js +400 -0
- package/dist/tests/unit/classifier/external-url-third-party.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/external-url-third-party.spec.js +83 -0
- package/dist/tests/unit/classifier/frontend-framework-grouping.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/frontend-framework-grouping.spec.js +44 -0
- package/dist/tests/unit/classifier/terraform-grouping.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/terraform-grouping.spec.js +96 -0
- package/dist/tests/unit/cli/config-command.spec.d.ts +1 -0
- package/dist/tests/unit/cli/config-command.spec.js +51 -0
- package/dist/tests/unit/cli/scan-command-ai-flags.spec.d.ts +0 -0
- package/dist/tests/unit/cli/scan-command-ai-flags.spec.js +149 -0
- package/dist/tests/unit/cli/scan-command-diagram-graph.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-diagram-graph.spec.js +26 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.js +107 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.js +74 -0
- package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.js +43 -0
- package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.js +62 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.js +41 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.js +85 -0
- package/dist/tests/unit/cli/scan-command-exit-code.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-exit-code.spec.js +131 -0
- package/dist/tests/unit/cli/scan-quota-flow.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-quota-flow.spec.js +76 -0
- package/dist/tests/unit/config/property-detection-config.spec.d.ts +1 -0
- package/dist/tests/unit/config/property-detection-config.spec.js +38 -0
- package/dist/tests/unit/config/redact.spec.d.ts +1 -0
- package/dist/tests/unit/config/redact.spec.js +19 -0
- package/dist/tests/unit/config/resolve-config.spec.d.ts +1 -0
- package/dist/tests/unit/config/resolve-config.spec.js +172 -0
- package/dist/tests/unit/config/scan-env-debug.spec.d.ts +1 -0
- package/dist/tests/unit/config/scan-env-debug.spec.js +17 -0
- package/dist/tests/unit/config/validate-scan-ai.spec.d.ts +1 -0
- package/dist/tests/unit/config/validate-scan-ai.spec.js +53 -0
- package/dist/tests/unit/core/classifier-phase-regressions.spec.d.ts +1 -0
- package/dist/tests/unit/core/classifier-phase-regressions.spec.js +68 -0
- package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.d.ts +1 -0
- package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.js +66 -0
- package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.d.ts +1 -0
- package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.js +132 -0
- package/dist/tests/unit/core/discover-service-sections.spec.d.ts +1 -0
- package/dist/tests/unit/core/discover-service-sections.spec.js +204 -0
- package/dist/tests/unit/core/graph-mapping.spec.d.ts +1 -0
- package/dist/tests/unit/core/graph-mapping.spec.js +779 -0
- package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.d.ts +1 -0
- package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.js +64 -0
- package/dist/tests/unit/core/manifest-package-hub.spec.d.ts +1 -0
- package/dist/tests/unit/core/manifest-package-hub.spec.js +53 -0
- package/dist/tests/unit/core/monorepo-package-sections.spec.d.ts +1 -0
- package/dist/tests/unit/core/monorepo-package-sections.spec.js +121 -0
- package/dist/tests/unit/core/no-source-code-leakage.spec.d.ts +1 -0
- package/dist/tests/unit/core/no-source-code-leakage.spec.js +48 -0
- package/dist/tests/unit/core/orchestrator.spec.d.ts +1 -0
- package/dist/tests/unit/core/orchestrator.spec.js +252 -0
- package/dist/tests/unit/core/output-json.spec.d.ts +1 -0
- package/dist/tests/unit/core/output-json.spec.js +65 -0
- package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.d.ts +1 -0
- package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.js +42 -0
- package/dist/tests/unit/core/resolve-path-under-scan-root.spec.d.ts +1 -0
- package/dist/tests/unit/core/resolve-path-under-scan-root.spec.js +54 -0
- package/dist/tests/unit/core/scan-result-language-stats.spec.d.ts +1 -0
- package/dist/tests/unit/core/scan-result-language-stats.spec.js +15 -0
- package/dist/tests/unit/core/section-discovery-excludes.spec.d.ts +1 -0
- package/dist/tests/unit/core/section-discovery-excludes.spec.js +49 -0
- package/dist/tests/unit/core/section-runtime.spec.d.ts +1 -0
- package/dist/tests/unit/core/section-runtime.spec.js +166 -0
- package/dist/tests/unit/core/stable-component-ids.spec.d.ts +1 -0
- package/dist/tests/unit/core/stable-component-ids.spec.js +112 -0
- package/dist/tests/unit/core/structural-scan.spec.d.ts +1 -0
- package/dist/tests/unit/core/structural-scan.spec.js +83 -0
- package/dist/tests/unit/core/terraform-json-overlay.spec.d.ts +1 -0
- package/dist/tests/unit/core/terraform-json-overlay.spec.js +36 -0
- package/dist/tests/unit/core/terraform-minimal-services.spec.d.ts +1 -0
- package/dist/tests/unit/core/terraform-minimal-services.spec.js +378 -0
- package/dist/tests/unit/data-flow/application-hub.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/application-hub.spec.js +48 -0
- package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.js +95 -0
- package/dist/tests/unit/data-flow/dedupe.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/dedupe.spec.js +134 -0
- package/dist/tests/unit/data-flow/detector.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/detector.spec.js +1254 -0
- package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.js +132 -0
- package/dist/tests/unit/data-flow/ensure-actor-flow.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-actor-flow.spec.js +233 -0
- package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.js +125 -0
- package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.js +40 -0
- package/dist/tests/unit/data-flow/postprocess.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/postprocess.spec.js +78 -0
- package/dist/tests/unit/data-flow/rewire.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/rewire.spec.js +194 -0
- package/dist/tests/unit/data-flow/terraform-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/terraform-flows.spec.js +199 -0
- package/dist/tests/unit/evals/metrics.spec.d.ts +1 -0
- package/dist/tests/unit/evals/metrics.spec.js +54 -0
- package/dist/tests/unit/ingest/env-exclusion.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/env-exclusion.spec.js +43 -0
- package/dist/tests/unit/ingest/file-system.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/file-system.spec.js +180 -0
- package/dist/tests/unit/ingest/gitignore.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/gitignore.spec.js +30 -0
- package/dist/tests/unit/observability/scan-sentry.spec.d.ts +1 -0
- package/dist/tests/unit/observability/scan-sentry.spec.js +60 -0
- package/dist/tests/unit/patterns/scan-exclusions.spec.d.ts +1 -0
- package/dist/tests/unit/patterns/scan-exclusions.spec.js +58 -0
- package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.d.ts +1 -0
- package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.js +19 -0
- package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.d.ts +1 -0
- package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.js +19 -0
- package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.d.ts +1 -0
- package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.js +50 -0
- package/dist/tests/unit/tracing/langsmith-tracing.spec.d.ts +1 -0
- package/dist/tests/unit/tracing/langsmith-tracing.spec.js +118 -0
- package/package.json +84 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isManifestOnlyThirdPartyComponent = isManifestOnlyThirdPartyComponent;
|
|
4
|
+
exports.ensureManifestDeclaredThirdPartyFlows = ensureManifestDeclaredThirdPartyFlows;
|
|
5
|
+
const application_hub_1 = require("./application-hub");
|
|
6
|
+
const MANIFEST_FILE_NAMES = new Set([
|
|
7
|
+
"package.json",
|
|
8
|
+
"pyproject.toml",
|
|
9
|
+
"pipfile",
|
|
10
|
+
"requirements.txt",
|
|
11
|
+
]);
|
|
12
|
+
function isManifestMetadataPath(filePath) {
|
|
13
|
+
if (!filePath?.trim())
|
|
14
|
+
return false;
|
|
15
|
+
const base = filePath.replace(/\\/g, "/").split("/").pop()?.toLowerCase() ?? "";
|
|
16
|
+
return MANIFEST_FILE_NAMES.has(base);
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Third parties inferred only from dependency manifests (e.g. `package.json`
|
|
20
|
+
* imports), not from runtime call sites.
|
|
21
|
+
*/
|
|
22
|
+
function isManifestOnlyThirdPartyComponent(component) {
|
|
23
|
+
if (component.type !== "third_party")
|
|
24
|
+
return false;
|
|
25
|
+
if (component.properties?.sourceContext === "dependency_manifest") {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
const refs = component.detectedFrom ?? [];
|
|
29
|
+
if (refs.length === 0)
|
|
30
|
+
return false;
|
|
31
|
+
return refs.every((ref) => {
|
|
32
|
+
if (ref.pattern !== "external_api_call")
|
|
33
|
+
return false;
|
|
34
|
+
const fp = ref.sourceLocation?.filePath;
|
|
35
|
+
return isManifestMetadataPath(fp);
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Connects each workspace package hub to third parties declared in its manifest.
|
|
40
|
+
* Runtime call sites still produce their own flows; this only fills gaps for
|
|
41
|
+
* manifest-only vendors (e.g. Anthropic listed in `package.json` but called via
|
|
42
|
+
* OpenRouter at runtime).
|
|
43
|
+
*/
|
|
44
|
+
function ensureManifestDeclaredThirdPartyFlows(components, flows) {
|
|
45
|
+
const manifestThirdParties = components.filter(isManifestOnlyThirdPartyComponent);
|
|
46
|
+
if (manifestThirdParties.length === 0)
|
|
47
|
+
return flows;
|
|
48
|
+
const existingKeys = new Set(flows.map((f) => `${f.sourceComponentId}\t${f.targetComponentId}\t${f.type}`));
|
|
49
|
+
let maxFlowNum = flows.reduce((max, f) => {
|
|
50
|
+
const m = /^flow_(\d+)$/.exec(f.id);
|
|
51
|
+
return m ? Math.max(max, Number.parseInt(m[1], 10)) : max;
|
|
52
|
+
}, 0);
|
|
53
|
+
const synthetic = [];
|
|
54
|
+
const sortedThirdParties = [...manifestThirdParties].sort((a, b) => a.id.localeCompare(b.id));
|
|
55
|
+
for (const thirdParty of sortedThirdParties) {
|
|
56
|
+
const sectionId = String(thirdParty.properties?.section_id ?? "").trim();
|
|
57
|
+
const hub = (0, application_hub_1.findApplicationHubForFlows)(components, sectionId || undefined);
|
|
58
|
+
if (!hub || hub.id === thirdParty.id)
|
|
59
|
+
continue;
|
|
60
|
+
const key = `${hub.id}\t${thirdParty.id}\tapi_call`;
|
|
61
|
+
if (existingKeys.has(key))
|
|
62
|
+
continue;
|
|
63
|
+
existingKeys.add(key);
|
|
64
|
+
maxFlowNum += 1;
|
|
65
|
+
synthetic.push({
|
|
66
|
+
id: `flow_${maxFlowNum}`,
|
|
67
|
+
sourceComponentId: hub.id,
|
|
68
|
+
targetComponentId: thirdParty.id,
|
|
69
|
+
type: "api_call",
|
|
70
|
+
confidence: 0.65,
|
|
71
|
+
description: "Declared dependency (package.json)",
|
|
72
|
+
enrichmentNotes: "declared_dependency",
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
return synthetic.length > 0 ? [...flows, ...synthetic] : flows;
|
|
76
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
import type { DetectedDataFlow } from "../core/types/data-flow";
|
|
3
|
+
/**
|
|
4
|
+
* Links the section main app to API assets that have no flows yet
|
|
5
|
+
*/
|
|
6
|
+
export declare function ensureMainToUnlinkedSectionApiFlows(components: DetectedComponent[], flows: DetectedDataFlow[]): DetectedDataFlow[];
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ensureMainToUnlinkedSectionApiFlows = ensureMainToUnlinkedSectionApiFlows;
|
|
4
|
+
function getSectionId(component) {
|
|
5
|
+
const sid = component.properties?.section_id;
|
|
6
|
+
return typeof sid === "string" && sid.trim() ? sid.trim() : "";
|
|
7
|
+
}
|
|
8
|
+
function isMainApp(component) {
|
|
9
|
+
return (component.type === "asset" &&
|
|
10
|
+
(component.properties?.isMainApplication === true ||
|
|
11
|
+
component.properties?.isMainApplication === "true"));
|
|
12
|
+
}
|
|
13
|
+
function isSyntheticSectionApiNode(component) {
|
|
14
|
+
return (component.properties?.isSectionApiNode === true ||
|
|
15
|
+
component.properties?.isSectionApiNode === "true");
|
|
16
|
+
}
|
|
17
|
+
function componentHasFlow(componentId, flows) {
|
|
18
|
+
return flows.some((f) => f.sourceComponentId === componentId || f.targetComponentId === componentId);
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Links the section main app to API assets that have no flows yet
|
|
22
|
+
*/
|
|
23
|
+
function ensureMainToUnlinkedSectionApiFlows(components, flows) {
|
|
24
|
+
const flowKeys = new Set(flows.map((f) => `${f.sourceComponentId}\t${f.targetComponentId}\t${f.type}`));
|
|
25
|
+
let maxFlowNum = flows.reduce((max, f) => {
|
|
26
|
+
const m = /^flow_(\d+)$/.exec(f.id);
|
|
27
|
+
return m ? Math.max(max, Number.parseInt(m[1], 10)) : max;
|
|
28
|
+
}, 0);
|
|
29
|
+
const synthetic = [];
|
|
30
|
+
const apiAssets = components
|
|
31
|
+
.filter((c) => c.type === "asset" &&
|
|
32
|
+
c.subType === "api" &&
|
|
33
|
+
!isSyntheticSectionApiNode(c))
|
|
34
|
+
.sort((a, b) => a.id.localeCompare(b.id));
|
|
35
|
+
for (const api of apiAssets) {
|
|
36
|
+
if (componentHasFlow(api.id, flows))
|
|
37
|
+
continue;
|
|
38
|
+
const sectionId = getSectionId(api);
|
|
39
|
+
const main = components.find((c) => isMainApp(c) && getSectionId(c) === sectionId);
|
|
40
|
+
if (!main || main.id === api.id)
|
|
41
|
+
continue;
|
|
42
|
+
const key = `${main.id}\t${api.id}\tapi_call`;
|
|
43
|
+
if (flowKeys.has(key))
|
|
44
|
+
continue;
|
|
45
|
+
flowKeys.add(key);
|
|
46
|
+
maxFlowNum += 1;
|
|
47
|
+
synthetic.push({
|
|
48
|
+
id: `flow_${maxFlowNum}`,
|
|
49
|
+
sourceComponentId: main.id,
|
|
50
|
+
targetComponentId: api.id,
|
|
51
|
+
type: "api_call",
|
|
52
|
+
confidence: 0.75,
|
|
53
|
+
description: "Section main to API surface",
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
return synthetic.length > 0 ? [...flows, ...synthetic] : flows;
|
|
57
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
import type { DataFlowType, DetectedDataFlow } from "../core/types/data-flow";
|
|
3
|
+
import type { RawFinding } from "../core/types/detection";
|
|
4
|
+
export declare function flowTypeForExternalApi(finding: RawFinding): DataFlowType;
|
|
5
|
+
export declare function buildFlow(sourceId: string, targetId: string, type: DataFlowType, finding: RawFinding, index: number, sourceComponent: DetectedComponent, targetComponent: DetectedComponent): DetectedDataFlow;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.flowTypeForExternalApi = flowTypeForExternalApi;
|
|
4
|
+
exports.buildFlow = buildFlow;
|
|
5
|
+
function getSectionIdFromMaybeUnknown(raw) {
|
|
6
|
+
if (typeof raw !== "string")
|
|
7
|
+
return undefined;
|
|
8
|
+
const v = raw.trim();
|
|
9
|
+
return v ? v : undefined;
|
|
10
|
+
}
|
|
11
|
+
function getSectionIdFromComponent(component) {
|
|
12
|
+
return getSectionIdFromMaybeUnknown(component.properties?.section_id);
|
|
13
|
+
}
|
|
14
|
+
function inferTargetScope(sourceComponent, targetComponent) {
|
|
15
|
+
if (targetComponent.type === "third_party") {
|
|
16
|
+
return {
|
|
17
|
+
targetScope: "external",
|
|
18
|
+
targetScopeConfidence: "high",
|
|
19
|
+
targetScopeReason: "third-party-target",
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
const sourceSectionId = getSectionIdFromComponent(sourceComponent);
|
|
23
|
+
const targetSectionId = getSectionIdFromComponent(targetComponent);
|
|
24
|
+
if (!sourceSectionId || !targetSectionId) {
|
|
25
|
+
return {
|
|
26
|
+
targetScope: "unknown",
|
|
27
|
+
targetScopeConfidence: "low",
|
|
28
|
+
targetScopeReason: "missing-section-id",
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
if (sourceSectionId === targetSectionId) {
|
|
32
|
+
return {
|
|
33
|
+
targetScope: "local",
|
|
34
|
+
targetScopeConfidence: "high",
|
|
35
|
+
targetScopeReason: "same-section-id",
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
targetScope: "cross_section_internal",
|
|
40
|
+
targetScopeConfidence: "high",
|
|
41
|
+
targetScopeReason: "different-section-id",
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function flowTypeForExternalApi(finding) {
|
|
45
|
+
const method = typeof finding.properties?.httpMethod === "string"
|
|
46
|
+
? finding.properties.httpMethod.toUpperCase()
|
|
47
|
+
: "";
|
|
48
|
+
const url = typeof finding.properties?.url === "string"
|
|
49
|
+
? finding.properties.url.toLowerCase()
|
|
50
|
+
: "";
|
|
51
|
+
if (url && (url.includes("webhook") || url.includes("callback"))) {
|
|
52
|
+
return "webhook";
|
|
53
|
+
}
|
|
54
|
+
if (method === "POST" && url && (url.includes("hook") || url.includes("event"))) {
|
|
55
|
+
return "webhook";
|
|
56
|
+
}
|
|
57
|
+
return "api_call";
|
|
58
|
+
}
|
|
59
|
+
function buildFlow(sourceId, targetId, type, finding, index, sourceComponent, targetComponent) {
|
|
60
|
+
const method = typeof finding.properties?.httpMethod === "string"
|
|
61
|
+
? finding.properties.httpMethod
|
|
62
|
+
: undefined;
|
|
63
|
+
const endpoint = typeof finding.properties?.url === "string"
|
|
64
|
+
? finding.properties.url
|
|
65
|
+
: undefined;
|
|
66
|
+
const scope = inferTargetScope(sourceComponent, targetComponent);
|
|
67
|
+
return {
|
|
68
|
+
id: `flow_${index}`,
|
|
69
|
+
sourceComponentId: sourceId,
|
|
70
|
+
targetComponentId: targetId,
|
|
71
|
+
type,
|
|
72
|
+
confidence: typeof finding.confidence === "number" ? finding.confidence : 0.8,
|
|
73
|
+
sourceLocation: finding.location,
|
|
74
|
+
method: method ?? undefined,
|
|
75
|
+
endpoint: endpoint ?? undefined,
|
|
76
|
+
targetScope: scope.targetScope,
|
|
77
|
+
targetScopeConfidence: scope.targetScopeConfidence,
|
|
78
|
+
targetScopeReason: scope.targetScopeReason,
|
|
79
|
+
};
|
|
80
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FileInfo } from "../core/types/file";
|
|
2
|
+
/** Normalize repo-relative paths for stable comparisons (POSIX, no leading ./). */
|
|
3
|
+
export declare function normalizeProjectPath(p: string): string;
|
|
4
|
+
/**
|
|
5
|
+
* Parse static relative imports (default, namespace, named, side-effect) and require() for bindings.
|
|
6
|
+
*/
|
|
7
|
+
export declare function parseStaticImportBindings(fromFile: string, content: string, knownPaths: Set<string>): Map<string, string>;
|
|
8
|
+
export declare function buildKnownPathsSet(files: FileInfo[]): Set<string>;
|
|
9
|
+
export declare function buildImportAdjacency(files: FileInfo[], knownPaths: Set<string>): Map<string, Set<string>>;
|
|
10
|
+
export declare function shortestImportDistance(graph: Map<string, Set<string>>, from: string, to: string): number | undefined;
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.normalizeProjectPath = normalizeProjectPath;
|
|
7
|
+
exports.parseStaticImportBindings = parseStaticImportBindings;
|
|
8
|
+
exports.buildKnownPathsSet = buildKnownPathsSet;
|
|
9
|
+
exports.buildImportAdjacency = buildImportAdjacency;
|
|
10
|
+
exports.shortestImportDistance = shortestImportDistance;
|
|
11
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
12
|
+
function toPosixPath(p) {
|
|
13
|
+
return p.replace(/\\/g, "/");
|
|
14
|
+
}
|
|
15
|
+
/** Normalize repo-relative paths for stable comparisons (POSIX, no leading ./). */
|
|
16
|
+
function normalizeProjectPath(p) {
|
|
17
|
+
return node_path_1.default.posix.normalize(toPosixPath(p));
|
|
18
|
+
}
|
|
19
|
+
function resolveRelativeModule(fromFile, specifier, knownPaths) {
|
|
20
|
+
if (!specifier.startsWith("."))
|
|
21
|
+
return undefined;
|
|
22
|
+
const dir = node_path_1.default.posix.dirname(normalizeProjectPath(fromFile));
|
|
23
|
+
const raw = node_path_1.default.posix.normalize(node_path_1.default.posix.join(dir, specifier));
|
|
24
|
+
const candidates = [
|
|
25
|
+
raw,
|
|
26
|
+
`${raw}.ts`,
|
|
27
|
+
`${raw}.tsx`,
|
|
28
|
+
`${raw}.js`,
|
|
29
|
+
`${raw}.mjs`,
|
|
30
|
+
`${raw}.cjs`,
|
|
31
|
+
node_path_1.default.posix.join(raw, "index.ts"),
|
|
32
|
+
node_path_1.default.posix.join(raw, "index.tsx"),
|
|
33
|
+
node_path_1.default.posix.join(raw, "index.js"),
|
|
34
|
+
node_path_1.default.posix.join(raw, "index.mjs"),
|
|
35
|
+
];
|
|
36
|
+
for (const c of candidates) {
|
|
37
|
+
const n = normalizeProjectPath(c);
|
|
38
|
+
if (knownPaths.has(n))
|
|
39
|
+
return n;
|
|
40
|
+
}
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Parse static relative imports (default, namespace, named, side-effect) and require() for bindings.
|
|
45
|
+
*/
|
|
46
|
+
function parseStaticImportBindings(fromFile, content, knownPaths) {
|
|
47
|
+
const bindings = new Map();
|
|
48
|
+
const lines = content.split(/\r?\n/);
|
|
49
|
+
for (const line of lines) {
|
|
50
|
+
const trimmed = line.trim();
|
|
51
|
+
let m = trimmed.match(/^import\s+(\w+)\s+from\s+['"](\.[^'"]+)['"]/);
|
|
52
|
+
if (m) {
|
|
53
|
+
const resolved = resolveRelativeModule(fromFile, m[2], knownPaths);
|
|
54
|
+
if (resolved)
|
|
55
|
+
bindings.set(m[1], resolved);
|
|
56
|
+
continue;
|
|
57
|
+
}
|
|
58
|
+
m = trimmed.match(/^import\s+\*\s+as\s+(\w+)\s+from\s+['"](\.[^'"]+)['"]/);
|
|
59
|
+
if (m) {
|
|
60
|
+
const resolved = resolveRelativeModule(fromFile, m[2], knownPaths);
|
|
61
|
+
if (resolved)
|
|
62
|
+
bindings.set(m[1], resolved);
|
|
63
|
+
continue;
|
|
64
|
+
}
|
|
65
|
+
m = trimmed.match(/^import\s+\{([^}]+)\}\s+from\s+['"](\.[^'"]+)['"]/);
|
|
66
|
+
if (m) {
|
|
67
|
+
const resolved = resolveRelativeModule(fromFile, m[2], knownPaths);
|
|
68
|
+
if (resolved) {
|
|
69
|
+
for (const part of m[1].split(",")) {
|
|
70
|
+
const seg = part.trim();
|
|
71
|
+
const asMatch = seg.match(/^(\w+)\s+as\s+(\w+)$/);
|
|
72
|
+
if (asMatch)
|
|
73
|
+
bindings.set(asMatch[2], resolved);
|
|
74
|
+
else if (/^\w+$/.test(seg))
|
|
75
|
+
bindings.set(seg, resolved);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
continue;
|
|
79
|
+
}
|
|
80
|
+
m = trimmed.match(/^import\s+['"](\.[^'"]+)['"]/);
|
|
81
|
+
if (m) {
|
|
82
|
+
void resolveRelativeModule(fromFile, m[1], knownPaths);
|
|
83
|
+
continue;
|
|
84
|
+
}
|
|
85
|
+
m = trimmed.match(/(?:const|let|var)\s+(\w+)\s*=\s*require\s*\(\s*['"](\.[^'"]+)['"]\s*\)/);
|
|
86
|
+
if (m) {
|
|
87
|
+
const resolved = resolveRelativeModule(fromFile, m[2], knownPaths);
|
|
88
|
+
if (resolved)
|
|
89
|
+
bindings.set(m[1], resolved);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
return bindings;
|
|
93
|
+
}
|
|
94
|
+
function collectDirectImportedModules(fromFile, content, knownPaths) {
|
|
95
|
+
const edges = new Set();
|
|
96
|
+
const bindings = parseStaticImportBindings(fromFile, content, knownPaths);
|
|
97
|
+
for (const resolved of bindings.values()) {
|
|
98
|
+
edges.add(resolved);
|
|
99
|
+
}
|
|
100
|
+
for (const match of content.matchAll(/import\s+['"](\.[^'"]+)['"]/g)) {
|
|
101
|
+
const resolved = resolveRelativeModule(fromFile, match[1], knownPaths);
|
|
102
|
+
if (resolved)
|
|
103
|
+
edges.add(resolved);
|
|
104
|
+
}
|
|
105
|
+
return edges;
|
|
106
|
+
}
|
|
107
|
+
function buildKnownPathsSet(files) {
|
|
108
|
+
const set = new Set();
|
|
109
|
+
for (const f of files) {
|
|
110
|
+
set.add(normalizeProjectPath(f.path));
|
|
111
|
+
}
|
|
112
|
+
return set;
|
|
113
|
+
}
|
|
114
|
+
function buildImportAdjacency(files, knownPaths) {
|
|
115
|
+
const graph = new Map();
|
|
116
|
+
for (const file of files) {
|
|
117
|
+
if (!file.content)
|
|
118
|
+
continue;
|
|
119
|
+
const fp = normalizeProjectPath(file.path);
|
|
120
|
+
graph.set(fp, collectDirectImportedModules(fp, file.content, knownPaths));
|
|
121
|
+
}
|
|
122
|
+
return graph;
|
|
123
|
+
}
|
|
124
|
+
function shortestImportDistance(graph, from, to) {
|
|
125
|
+
const start = normalizeProjectPath(from);
|
|
126
|
+
const end = normalizeProjectPath(to);
|
|
127
|
+
if (start === end)
|
|
128
|
+
return 0;
|
|
129
|
+
const seen = new Set();
|
|
130
|
+
const queue = [{ node: start, d: 0 }];
|
|
131
|
+
while (queue.length > 0) {
|
|
132
|
+
const { node, d } = queue.shift();
|
|
133
|
+
if (seen.has(node))
|
|
134
|
+
continue;
|
|
135
|
+
seen.add(node);
|
|
136
|
+
const neighbors = graph.get(node);
|
|
137
|
+
if (!neighbors)
|
|
138
|
+
continue;
|
|
139
|
+
for (const n of neighbors) {
|
|
140
|
+
if (n === end)
|
|
141
|
+
return d + 1;
|
|
142
|
+
if (!seen.has(n))
|
|
143
|
+
queue.push({ node: n, d: d + 1 });
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
return undefined;
|
|
147
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { detectDataFlows } from "./detector";
|
|
2
|
+
export { dedupeDataFlows } from "./dedupe";
|
|
3
|
+
export { rewireFlowsThroughApplication } from "./rewire";
|
|
4
|
+
export { ensureActorToAppFlow } from "./ensure-actor-flow";
|
|
5
|
+
export { ensureManifestDeclaredThirdPartyFlows, isManifestOnlyThirdPartyComponent, } from "./ensure-manifest-declared-flows";
|
|
6
|
+
export { ensureMainToUnlinkedSectionApiFlows } from "./ensure-section-api-flows";
|
|
7
|
+
export { detectDataFlows as detectRawDataFlows } from "./detect";
|
|
8
|
+
export { postprocessDataFlows } from "./postprocess";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.postprocessDataFlows = exports.detectRawDataFlows = exports.ensureMainToUnlinkedSectionApiFlows = exports.isManifestOnlyThirdPartyComponent = exports.ensureManifestDeclaredThirdPartyFlows = exports.ensureActorToAppFlow = exports.rewireFlowsThroughApplication = exports.dedupeDataFlows = exports.detectDataFlows = void 0;
|
|
4
|
+
var detector_1 = require("./detector");
|
|
5
|
+
Object.defineProperty(exports, "detectDataFlows", { enumerable: true, get: function () { return detector_1.detectDataFlows; } });
|
|
6
|
+
var dedupe_1 = require("./dedupe");
|
|
7
|
+
Object.defineProperty(exports, "dedupeDataFlows", { enumerable: true, get: function () { return dedupe_1.dedupeDataFlows; } });
|
|
8
|
+
var rewire_1 = require("./rewire");
|
|
9
|
+
Object.defineProperty(exports, "rewireFlowsThroughApplication", { enumerable: true, get: function () { return rewire_1.rewireFlowsThroughApplication; } });
|
|
10
|
+
var ensure_actor_flow_1 = require("./ensure-actor-flow");
|
|
11
|
+
Object.defineProperty(exports, "ensureActorToAppFlow", { enumerable: true, get: function () { return ensure_actor_flow_1.ensureActorToAppFlow; } });
|
|
12
|
+
var ensure_manifest_declared_flows_1 = require("./ensure-manifest-declared-flows");
|
|
13
|
+
Object.defineProperty(exports, "ensureManifestDeclaredThirdPartyFlows", { enumerable: true, get: function () { return ensure_manifest_declared_flows_1.ensureManifestDeclaredThirdPartyFlows; } });
|
|
14
|
+
Object.defineProperty(exports, "isManifestOnlyThirdPartyComponent", { enumerable: true, get: function () { return ensure_manifest_declared_flows_1.isManifestOnlyThirdPartyComponent; } });
|
|
15
|
+
var ensure_section_api_flows_1 = require("./ensure-section-api-flows");
|
|
16
|
+
Object.defineProperty(exports, "ensureMainToUnlinkedSectionApiFlows", { enumerable: true, get: function () { return ensure_section_api_flows_1.ensureMainToUnlinkedSectionApiFlows; } });
|
|
17
|
+
var detect_1 = require("./detect");
|
|
18
|
+
Object.defineProperty(exports, "detectRawDataFlows", { enumerable: true, get: function () { return detect_1.detectDataFlows; } });
|
|
19
|
+
var postprocess_1 = require("./postprocess");
|
|
20
|
+
Object.defineProperty(exports, "postprocessDataFlows", { enumerable: true, get: function () { return postprocess_1.postprocessDataFlows; } });
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
import type { DetectedDataFlow } from "../core/types/data-flow";
|
|
3
|
+
import type { FileInfo } from "../core/types/file";
|
|
4
|
+
import type { ServiceSection } from "../core/sectioning/discover-service-sections";
|
|
5
|
+
export declare function detectInternalFetchCalls(files: FileInfo[], components: DetectedComponent[], sourceComponent: DetectedComponent, startIndex: number, sections?: ServiceSection[]): {
|
|
6
|
+
flows: DetectedDataFlow[];
|
|
7
|
+
nextIndex: number;
|
|
8
|
+
};
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.detectInternalFetchCalls = detectInternalFetchCalls;
|
|
4
|
+
const flow_builder_1 = require("./flow-builder");
|
|
5
|
+
const source_resolution_1 = require("./source-resolution");
|
|
6
|
+
function normalizeKey(s) {
|
|
7
|
+
return s.trim().toLowerCase().replace(/\s+/g, " ");
|
|
8
|
+
}
|
|
9
|
+
function componentDeclaredPathsMatch(component, normalizedPath) {
|
|
10
|
+
const raw = component.properties?.path;
|
|
11
|
+
const pathStrings = [];
|
|
12
|
+
if (typeof raw === "string") {
|
|
13
|
+
pathStrings.push(raw);
|
|
14
|
+
}
|
|
15
|
+
else if (Array.isArray(raw)) {
|
|
16
|
+
for (const p of raw) {
|
|
17
|
+
if (typeof p === "string")
|
|
18
|
+
pathStrings.push(p);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
for (const pathStr of pathStrings) {
|
|
22
|
+
const compPath = normalizeKey(pathStr);
|
|
23
|
+
if (compPath &&
|
|
24
|
+
(compPath === normalizedPath || normalizedPath.startsWith(compPath))) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
return false;
|
|
29
|
+
}
|
|
30
|
+
function findTargetApiComponentByPath(pathStr, components, opts) {
|
|
31
|
+
const normalizedPath = normalizeKey(pathStr);
|
|
32
|
+
if (!normalizedPath)
|
|
33
|
+
return undefined;
|
|
34
|
+
for (const c of components) {
|
|
35
|
+
if (c.type !== "asset" || c.subType !== "api")
|
|
36
|
+
continue;
|
|
37
|
+
if (opts?.preferredSectionId &&
|
|
38
|
+
(0, source_resolution_1.getSectionIdFromComponent)(c) !== opts.preferredSectionId) {
|
|
39
|
+
continue;
|
|
40
|
+
}
|
|
41
|
+
if (opts?.excludeComponentId && c.id === opts.excludeComponentId) {
|
|
42
|
+
continue;
|
|
43
|
+
}
|
|
44
|
+
if (opts?.excludeMainApplicationTargets &&
|
|
45
|
+
(c.properties?.isMainApplication === true ||
|
|
46
|
+
c.properties?.isMainApplication === "true")) {
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
const compName = normalizeKey(c.name);
|
|
50
|
+
if (componentDeclaredPathsMatch(c, normalizedPath)) {
|
|
51
|
+
return c;
|
|
52
|
+
}
|
|
53
|
+
if (compName && (compName === normalizedPath || compName.includes(normalizedPath))) {
|
|
54
|
+
return c;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
// Fallback: we couldn't match by path/name. Pick the main API asset within
|
|
58
|
+
// the preferred section (if any), so internal calls do not create
|
|
59
|
+
// cross-section edges.
|
|
60
|
+
const apiCandidates = components.filter((c) => c.type === "asset" && c.subType === "api");
|
|
61
|
+
const filtered = opts?.preferredSectionId
|
|
62
|
+
? apiCandidates.filter((c) => (0, source_resolution_1.getSectionIdFromComponent)(c) === opts.preferredSectionId)
|
|
63
|
+
: apiCandidates;
|
|
64
|
+
const filteredNoExclude = opts?.excludeComponentId && filtered.length > 0
|
|
65
|
+
? filtered.filter((c) => c.id !== opts.excludeComponentId)
|
|
66
|
+
: filtered;
|
|
67
|
+
const filteredNoMain = opts?.excludeMainApplicationTargets && filteredNoExclude.length > 0
|
|
68
|
+
? filteredNoExclude.filter((c) => c.properties?.isMainApplication !== true &&
|
|
69
|
+
c.properties?.isMainApplication !== "true")
|
|
70
|
+
: filteredNoExclude;
|
|
71
|
+
const main = filteredNoMain.find((c) => c.properties?.isMainApplication === true ||
|
|
72
|
+
c.properties?.isMainApplication === "true");
|
|
73
|
+
return main ?? filteredNoMain[0];
|
|
74
|
+
}
|
|
75
|
+
function detectInternalFetchCalls(files, components, sourceComponent, startIndex, sections) {
|
|
76
|
+
const flows = [];
|
|
77
|
+
let index = startIndex;
|
|
78
|
+
const stringFetchRegex = /fetch\(\s*(['"`])(\/[^'"`]+)\1/g;
|
|
79
|
+
const templateFetchRegex = /fetch\(\s*`(\/[^`]+)`/g;
|
|
80
|
+
// Matches template-string fetch calls where the backend path is appended to
|
|
81
|
+
// a base URL variable, e.g. fetch(`${API_BASE_URL}/auth/login`, ...)
|
|
82
|
+
const templateFetchWithBaseRegex = /fetch\(\s*`([^`]+)`/g;
|
|
83
|
+
const findNearestSectionIdForFilePath = (filePathRelPosix) => {
|
|
84
|
+
if (!sections || sections.length === 0)
|
|
85
|
+
return "root";
|
|
86
|
+
let bestId;
|
|
87
|
+
let bestLen = -1;
|
|
88
|
+
for (const s of sections) {
|
|
89
|
+
if (!s.sectionDir)
|
|
90
|
+
continue; // root handled as fallback
|
|
91
|
+
if (filePathRelPosix === s.sectionDir ||
|
|
92
|
+
filePathRelPosix.startsWith(`${s.sectionDir}/`)) {
|
|
93
|
+
if (s.sectionDir.length > bestLen) {
|
|
94
|
+
bestId = s.id;
|
|
95
|
+
bestLen = s.sectionDir.length;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return (bestId ??
|
|
100
|
+
sections.find((s) => s.id === "root")?.id ??
|
|
101
|
+
sections[0]?.id ??
|
|
102
|
+
"root");
|
|
103
|
+
};
|
|
104
|
+
const findSectionApiNodeForSection = (sectionId) => components.find((c) => c.type === "asset" &&
|
|
105
|
+
c.subType === "api" &&
|
|
106
|
+
(0, source_resolution_1.getSectionIdFromComponent)(c) === sectionId &&
|
|
107
|
+
(c.properties?.isSectionApiNode === true ||
|
|
108
|
+
c.properties?.isSectionApiNode === "true"));
|
|
109
|
+
for (const file of files) {
|
|
110
|
+
if (!file.content)
|
|
111
|
+
continue;
|
|
112
|
+
const fileSectionId = findNearestSectionIdForFilePath(file.path);
|
|
113
|
+
const sourceForFile = (0, source_resolution_1.findSourceComponent)(components, fileSectionId) ?? sourceComponent;
|
|
114
|
+
const sourceForFileApi = findSectionApiNodeForSection(fileSectionId) ?? sourceForFile;
|
|
115
|
+
const lines = file.content.split(/\r?\n/);
|
|
116
|
+
const scan = (regex) => {
|
|
117
|
+
regex.lastIndex = 0;
|
|
118
|
+
let match;
|
|
119
|
+
while ((match = regex.exec(file.content)) !== null) {
|
|
120
|
+
const fullPath = match[2] ?? match[1];
|
|
121
|
+
if (!fullPath || typeof fullPath !== "string")
|
|
122
|
+
continue;
|
|
123
|
+
const target = findTargetApiComponentByPath(fullPath, components, {
|
|
124
|
+
preferredSectionId: fileSectionId,
|
|
125
|
+
excludeComponentId: sourceForFileApi.id,
|
|
126
|
+
excludeMainApplicationTargets: sourceForFileApi.properties?.isSectionApiNode === true ||
|
|
127
|
+
sourceForFileApi.properties?.isSectionApiNode === "true",
|
|
128
|
+
});
|
|
129
|
+
if (!target)
|
|
130
|
+
continue;
|
|
131
|
+
const offset = match.index;
|
|
132
|
+
const prefix = file.content.slice(0, offset);
|
|
133
|
+
const line = prefix.split(/\r?\n/).length;
|
|
134
|
+
const location = {
|
|
135
|
+
filePath: file.path,
|
|
136
|
+
startLine: line,
|
|
137
|
+
endLine: line,
|
|
138
|
+
code: lines[line - 1],
|
|
139
|
+
};
|
|
140
|
+
const syntheticFinding = {
|
|
141
|
+
pattern: "express_route",
|
|
142
|
+
name: `INTERNAL_FETCH ${fullPath}`,
|
|
143
|
+
confidence: 0.8,
|
|
144
|
+
location,
|
|
145
|
+
properties: {
|
|
146
|
+
httpMethod: "GET",
|
|
147
|
+
url: fullPath,
|
|
148
|
+
},
|
|
149
|
+
};
|
|
150
|
+
const flow = (0, flow_builder_1.buildFlow)(sourceForFileApi.id, target.id, "api_call", syntheticFinding, ++index, sourceForFileApi, target);
|
|
151
|
+
flows.push(flow);
|
|
152
|
+
}
|
|
153
|
+
};
|
|
154
|
+
scan(stringFetchRegex);
|
|
155
|
+
scan(templateFetchRegex);
|
|
156
|
+
// Extra pass for template strings that include a base URL expression.
|
|
157
|
+
templateFetchWithBaseRegex.lastIndex = 0;
|
|
158
|
+
let match;
|
|
159
|
+
while ((match = templateFetchWithBaseRegex.exec(file.content)) !== null) {
|
|
160
|
+
const templateContent = match[1];
|
|
161
|
+
if (typeof templateContent !== "string")
|
|
162
|
+
continue;
|
|
163
|
+
// Attempt to extract the trailing literal path after the last `${...}`.
|
|
164
|
+
// Example: "${API_BASE_URL}/auth/login" => "/auth/login"
|
|
165
|
+
const lastBrace = templateContent.lastIndexOf("}");
|
|
166
|
+
let fullPath;
|
|
167
|
+
if (lastBrace !== -1) {
|
|
168
|
+
const after = templateContent.slice(lastBrace + 1);
|
|
169
|
+
if (after.startsWith("/"))
|
|
170
|
+
fullPath = after;
|
|
171
|
+
}
|
|
172
|
+
// If it doesn't include a base URL expression, fall back to literal path.
|
|
173
|
+
if (!fullPath && templateContent.startsWith("/"))
|
|
174
|
+
fullPath = templateContent;
|
|
175
|
+
if (!fullPath)
|
|
176
|
+
continue;
|
|
177
|
+
const target = findTargetApiComponentByPath(fullPath, components, {
|
|
178
|
+
preferredSectionId: fileSectionId,
|
|
179
|
+
excludeComponentId: sourceForFileApi.id,
|
|
180
|
+
excludeMainApplicationTargets: sourceForFileApi.properties?.isSectionApiNode === true ||
|
|
181
|
+
sourceForFileApi.properties?.isSectionApiNode === "true",
|
|
182
|
+
});
|
|
183
|
+
if (!target)
|
|
184
|
+
continue;
|
|
185
|
+
const offset = match.index;
|
|
186
|
+
const prefix = file.content.slice(0, offset);
|
|
187
|
+
const line = prefix.split(/\r?\n/).length;
|
|
188
|
+
const location = {
|
|
189
|
+
filePath: file.path,
|
|
190
|
+
startLine: line,
|
|
191
|
+
endLine: line,
|
|
192
|
+
code: lines[line - 1],
|
|
193
|
+
};
|
|
194
|
+
const syntheticFinding = {
|
|
195
|
+
pattern: "express_route",
|
|
196
|
+
name: `INTERNAL_FETCH ${fullPath}`,
|
|
197
|
+
confidence: 0.8,
|
|
198
|
+
location,
|
|
199
|
+
properties: {
|
|
200
|
+
httpMethod: "GET",
|
|
201
|
+
url: fullPath,
|
|
202
|
+
},
|
|
203
|
+
};
|
|
204
|
+
const flow = (0, flow_builder_1.buildFlow)(sourceForFileApi.id, target.id, "api_call", syntheticFinding, ++index, sourceForFileApi, target);
|
|
205
|
+
flows.push(flow);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
return { flows, nextIndex: index };
|
|
209
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
import type { DetectedDataFlow } from "../core/types/data-flow";
|
|
3
|
+
/**
|
|
4
|
+
* Applies structural post-processing to raw detected data flows:
|
|
5
|
+
* - structural deduplication
|
|
6
|
+
* - rewiring actor → infra flows through the main application
|
|
7
|
+
* - ensuring at least one actor → app flow per section
|
|
8
|
+
*/
|
|
9
|
+
export declare function postprocessDataFlows(components: DetectedComponent[], flows: DetectedDataFlow[]): DetectedDataFlow[];
|