@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,6 @@
|
|
|
1
|
+
import type { ScanResult } from "../types";
|
|
2
|
+
import { type DiagramGraphJsonSchema } from "../schema";
|
|
3
|
+
/**
|
|
4
|
+
* Build a `DiagramGraphJson` from a validated `ScanResult`.
|
|
5
|
+
*/
|
|
6
|
+
export declare function buildDiagramGraphFromScanResult(scanResult: ScanResult): DiagramGraphJsonSchema;
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.buildDiagramGraphFromScanResult = buildDiagramGraphFromScanResult;
|
|
4
|
+
const schema_1 = require("../schema");
|
|
5
|
+
const app_section_layout_1 = require("./diagram-layout/app-section-layout");
|
|
6
|
+
const constants_1 = require("./diagram-layout/constants");
|
|
7
|
+
const edge_handles_1 = require("./diagram-layout/edge-handles");
|
|
8
|
+
const managed_provider_layout_1 = require("./diagram-layout/managed-provider-layout");
|
|
9
|
+
const minimal_terraform_layout_1 = require("./diagram-layout/minimal-terraform-layout");
|
|
10
|
+
const section_helpers_1 = require("./diagram-layout/section-helpers");
|
|
11
|
+
const terraform_lane_layout_1 = require("./diagram-layout/terraform-lane-layout");
|
|
12
|
+
const terraform_minimal_services_1 = require("./terraform-minimal-services");
|
|
13
|
+
function stripCodeFromSourceLocation(loc) {
|
|
14
|
+
if (!loc)
|
|
15
|
+
return undefined;
|
|
16
|
+
const { code: _code, ...rest } = loc;
|
|
17
|
+
return rest;
|
|
18
|
+
}
|
|
19
|
+
function stripCodeFromDetectedFromRef(ref) {
|
|
20
|
+
return {
|
|
21
|
+
pattern: ref.pattern,
|
|
22
|
+
sourceLocation: stripCodeFromSourceLocation(ref.sourceLocation),
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function stripCodeFromSourceLocationsArray(locs) {
|
|
26
|
+
if (!locs)
|
|
27
|
+
return undefined;
|
|
28
|
+
return locs
|
|
29
|
+
.map((l) => stripCodeFromSourceLocation(l))
|
|
30
|
+
.filter((l) => l !== undefined);
|
|
31
|
+
}
|
|
32
|
+
function stripCodeFromSourceLocationsField(value) {
|
|
33
|
+
if (!value)
|
|
34
|
+
return value;
|
|
35
|
+
if (typeof value === "object" && !Array.isArray(value)) {
|
|
36
|
+
const loc = value;
|
|
37
|
+
const { code: _code, ...rest } = loc;
|
|
38
|
+
return rest;
|
|
39
|
+
}
|
|
40
|
+
if (Array.isArray(value)) {
|
|
41
|
+
return value
|
|
42
|
+
.map((v) => {
|
|
43
|
+
if (typeof v !== "object" || v === null)
|
|
44
|
+
return v;
|
|
45
|
+
const loc = v;
|
|
46
|
+
const { code: _code, ...rest } = loc;
|
|
47
|
+
return rest;
|
|
48
|
+
})
|
|
49
|
+
.filter((v) => v !== undefined);
|
|
50
|
+
}
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
function mapComponentTypeToNodeType(type) {
|
|
54
|
+
switch (type) {
|
|
55
|
+
case "asset":
|
|
56
|
+
return "asset";
|
|
57
|
+
case "actor":
|
|
58
|
+
return "actor";
|
|
59
|
+
case "third_party":
|
|
60
|
+
return "third_party_service";
|
|
61
|
+
default:
|
|
62
|
+
return type;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
function createNodePosition(sectionIndex, indexWithinSection) {
|
|
66
|
+
const row = Math.floor(indexWithinSection / constants_1.NODES_PER_ROW);
|
|
67
|
+
const col = indexWithinSection % constants_1.NODES_PER_ROW;
|
|
68
|
+
const sectionXOffset = sectionIndex * constants_1.SECTION_BLOCK_WIDTH;
|
|
69
|
+
return {
|
|
70
|
+
x: sectionXOffset + col * constants_1.NODE_HORIZONTAL_SPACING,
|
|
71
|
+
y: row * constants_1.NODE_VERTICAL_SPACING,
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
function mapComponentToNode(component, sectionIndex, indexWithinSection) {
|
|
75
|
+
const baseData = {
|
|
76
|
+
label: component.name,
|
|
77
|
+
description: component.description,
|
|
78
|
+
privacy: {},
|
|
79
|
+
security: {},
|
|
80
|
+
engineering: {},
|
|
81
|
+
};
|
|
82
|
+
baseData.componentType = component.type;
|
|
83
|
+
if (component.subType) {
|
|
84
|
+
baseData.componentSubType = component.subType;
|
|
85
|
+
}
|
|
86
|
+
if (component.detectedFrom?.length) {
|
|
87
|
+
baseData.detectedFrom = component.detectedFrom.map((ref) => stripCodeFromDetectedFromRef(ref));
|
|
88
|
+
}
|
|
89
|
+
if (component.sourceLocations?.length) {
|
|
90
|
+
baseData.sourceLocations =
|
|
91
|
+
stripCodeFromSourceLocationsArray(component.sourceLocations);
|
|
92
|
+
}
|
|
93
|
+
for (const [key, value] of Object.entries(component.properties ?? {})) {
|
|
94
|
+
if (value === undefined)
|
|
95
|
+
continue;
|
|
96
|
+
if (key === "label" || key === "description")
|
|
97
|
+
continue;
|
|
98
|
+
if (key === "privacy" || key === "security" || key === "engineering") {
|
|
99
|
+
continue;
|
|
100
|
+
}
|
|
101
|
+
const dataRecord = baseData;
|
|
102
|
+
if (dataRecord[key] === undefined) {
|
|
103
|
+
dataRecord[key] = value;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
return {
|
|
107
|
+
id: component.id,
|
|
108
|
+
type: mapComponentTypeToNodeType(component.type),
|
|
109
|
+
position: createNodePosition(sectionIndex, indexWithinSection),
|
|
110
|
+
data: baseData,
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
function normalizeDataFlowType(type) {
|
|
114
|
+
return type;
|
|
115
|
+
}
|
|
116
|
+
function normalizeTransformation(transformation) {
|
|
117
|
+
if (!transformation || transformation.length === 0) {
|
|
118
|
+
return "none";
|
|
119
|
+
}
|
|
120
|
+
const first = transformation[0];
|
|
121
|
+
const lower = first.toLowerCase();
|
|
122
|
+
if (lower.includes("anonym"))
|
|
123
|
+
return "anonymized";
|
|
124
|
+
if (lower.includes("pseudonym"))
|
|
125
|
+
return "pseudonymized";
|
|
126
|
+
if (lower.includes("aggregat"))
|
|
127
|
+
return "aggregated";
|
|
128
|
+
if (lower.includes("encrypt"))
|
|
129
|
+
return "encrypted";
|
|
130
|
+
if (lower.includes("token"))
|
|
131
|
+
return "tokenized";
|
|
132
|
+
if (lower.includes("mask"))
|
|
133
|
+
return "masked";
|
|
134
|
+
if (lower.includes("redact"))
|
|
135
|
+
return "redacted";
|
|
136
|
+
return "none";
|
|
137
|
+
}
|
|
138
|
+
function buildFlowName(flow, componentsById) {
|
|
139
|
+
const source = componentsById.get(flow.sourceComponentId);
|
|
140
|
+
const target = componentsById.get(flow.targetComponentId);
|
|
141
|
+
const sourceName = source?.name ?? flow.sourceComponentId;
|
|
142
|
+
const targetName = target?.name ?? flow.targetComponentId;
|
|
143
|
+
return `${sourceName} → ${targetName} (${flow.type})`;
|
|
144
|
+
}
|
|
145
|
+
function mapDataFlowToEdge(flow, componentsById) {
|
|
146
|
+
if (!componentsById.has(flow.sourceComponentId) ||
|
|
147
|
+
!componentsById.has(flow.targetComponentId)) {
|
|
148
|
+
return undefined;
|
|
149
|
+
}
|
|
150
|
+
const name = buildFlowName(flow, componentsById);
|
|
151
|
+
const engineering = {
|
|
152
|
+
transferType: normalizeDataFlowType(flow.type),
|
|
153
|
+
name,
|
|
154
|
+
description: flow.description,
|
|
155
|
+
frequency: "unspecified",
|
|
156
|
+
};
|
|
157
|
+
if (flow.actions && flow.actions.length > 0) {
|
|
158
|
+
engineering.actions = flow.actions;
|
|
159
|
+
}
|
|
160
|
+
const privacy = {
|
|
161
|
+
dataCategories: flow.dataCategories ?? [],
|
|
162
|
+
dataSubjectCategories: flow.dataSubjectCategories,
|
|
163
|
+
processingPurpose: flow.processingPurpose,
|
|
164
|
+
crossBorder: false,
|
|
165
|
+
adequacyDecision: false,
|
|
166
|
+
};
|
|
167
|
+
const security = {
|
|
168
|
+
encryption: "none",
|
|
169
|
+
transformation: normalizeTransformation(flow.transformation),
|
|
170
|
+
auditLogging: false,
|
|
171
|
+
riskLevel: "medium",
|
|
172
|
+
};
|
|
173
|
+
if (flow.enrichmentConfidence !== undefined) {
|
|
174
|
+
security.enrichmentConfidence = flow.enrichmentConfidence;
|
|
175
|
+
}
|
|
176
|
+
if (flow.enrichmentNotes) {
|
|
177
|
+
security.enrichmentNotes = flow.enrichmentNotes;
|
|
178
|
+
}
|
|
179
|
+
const properties = {
|
|
180
|
+
engineering,
|
|
181
|
+
privacy,
|
|
182
|
+
security,
|
|
183
|
+
};
|
|
184
|
+
const flowEntries = Object.entries(flow);
|
|
185
|
+
for (const [key, value] of flowEntries) {
|
|
186
|
+
if (value === undefined)
|
|
187
|
+
continue;
|
|
188
|
+
if (key in properties)
|
|
189
|
+
continue;
|
|
190
|
+
if (key === "id" || key === "sourceComponentId" || key === "targetComponentId") {
|
|
191
|
+
continue;
|
|
192
|
+
}
|
|
193
|
+
if (key === "type")
|
|
194
|
+
continue;
|
|
195
|
+
if (!(key in properties)) {
|
|
196
|
+
if (key === "sourceLocation" || key === "sourceLocations") {
|
|
197
|
+
properties[key] = stripCodeFromSourceLocationsField(value);
|
|
198
|
+
}
|
|
199
|
+
else {
|
|
200
|
+
properties[key] = value;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
const edge = {
|
|
205
|
+
id: flow.id,
|
|
206
|
+
source: flow.sourceComponentId,
|
|
207
|
+
target: flow.targetComponentId,
|
|
208
|
+
type: "data_flow",
|
|
209
|
+
data: {
|
|
210
|
+
label: name,
|
|
211
|
+
properties,
|
|
212
|
+
},
|
|
213
|
+
};
|
|
214
|
+
(0, edge_handles_1.applyDirectionalEdgeHandles)(edge, componentsById.get(flow.sourceComponentId), componentsById.get(flow.targetComponentId));
|
|
215
|
+
return edge;
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* Build a `DiagramGraphJson` from a validated `ScanResult`.
|
|
219
|
+
*/
|
|
220
|
+
function buildDiagramGraphFromScanResult(scanResult) {
|
|
221
|
+
const componentsById = new Map(scanResult.components.map((component) => [component.id, component]));
|
|
222
|
+
const buckets = new Map();
|
|
223
|
+
for (const component of scanResult.components) {
|
|
224
|
+
const sectionId = (0, section_helpers_1.getSectionIdFromComponent)(component);
|
|
225
|
+
const entry = buckets.get(sectionId) ??
|
|
226
|
+
({
|
|
227
|
+
label: (0, section_helpers_1.getSectionLabelFromComponent)(component),
|
|
228
|
+
components: [],
|
|
229
|
+
});
|
|
230
|
+
entry.components.push(component);
|
|
231
|
+
buckets.set(sectionId, entry);
|
|
232
|
+
}
|
|
233
|
+
const sectionIds = Array.from(buckets.keys());
|
|
234
|
+
const mixedAppWithTerraform = (0, terraform_minimal_services_1.isMixedAppTerraformScan)(scanResult.components);
|
|
235
|
+
sectionIds.sort((a, b) => {
|
|
236
|
+
if (mixedAppWithTerraform) {
|
|
237
|
+
if (a === "root" && b !== "root")
|
|
238
|
+
return 1;
|
|
239
|
+
if (b === "root" && a !== "root")
|
|
240
|
+
return -1;
|
|
241
|
+
}
|
|
242
|
+
else {
|
|
243
|
+
if (a === "root" && b !== "root")
|
|
244
|
+
return -1;
|
|
245
|
+
if (b === "root" && a !== "root")
|
|
246
|
+
return 1;
|
|
247
|
+
}
|
|
248
|
+
const labelA = buckets.get(a)?.label ?? a;
|
|
249
|
+
const labelB = buckets.get(b)?.label ?? b;
|
|
250
|
+
const labelCompare = labelA.localeCompare(labelB);
|
|
251
|
+
if (labelCompare !== 0)
|
|
252
|
+
return labelCompare;
|
|
253
|
+
return a.localeCompare(b);
|
|
254
|
+
});
|
|
255
|
+
const nodes = [];
|
|
256
|
+
sectionIds.forEach((sectionId, sectionIndex) => {
|
|
257
|
+
const bucket = buckets.get(sectionId);
|
|
258
|
+
if (!bucket)
|
|
259
|
+
return;
|
|
260
|
+
const ordered = [...bucket.components].sort((c1, c2) => {
|
|
261
|
+
const keyA = (0, section_helpers_1.componentSortKey)(c1);
|
|
262
|
+
const keyB = (0, section_helpers_1.componentSortKey)(c2);
|
|
263
|
+
if (keyA !== keyB)
|
|
264
|
+
return keyA.localeCompare(keyB);
|
|
265
|
+
const nameCompare = (c1.name ?? "").localeCompare(c2.name ?? "");
|
|
266
|
+
if (nameCompare !== 0)
|
|
267
|
+
return nameCompare;
|
|
268
|
+
return c1.type.localeCompare(c2.type);
|
|
269
|
+
});
|
|
270
|
+
ordered.forEach((component, indexWithinSection) => {
|
|
271
|
+
nodes.push(mapComponentToNode(component, sectionIndex, indexWithinSection));
|
|
272
|
+
});
|
|
273
|
+
});
|
|
274
|
+
const edges = [];
|
|
275
|
+
const useMinimalTfLayout = (0, terraform_minimal_services_1.shouldUseTerraformMinimalServiceDiagramLayout)(scanResult.components);
|
|
276
|
+
if (useMinimalTfLayout) {
|
|
277
|
+
(0, minimal_terraform_layout_1.applyTerraformMinimalServiceDiagramLayout)(nodes, componentsById);
|
|
278
|
+
(0, managed_provider_layout_1.repositionManagedProviderNodes)(nodes, componentsById);
|
|
279
|
+
}
|
|
280
|
+
else {
|
|
281
|
+
(0, terraform_lane_layout_1.applyTerraformLaneLayout)(nodes, componentsById, sectionIds);
|
|
282
|
+
(0, app_section_layout_1.applyAppSectionStackLayout)(nodes, componentsById, sectionIds);
|
|
283
|
+
(0, managed_provider_layout_1.repositionManagedProviderNodes)(nodes, componentsById);
|
|
284
|
+
}
|
|
285
|
+
for (const flow of scanResult.dataFlows) {
|
|
286
|
+
const edge = mapDataFlowToEdge(flow, componentsById);
|
|
287
|
+
if (edge) {
|
|
288
|
+
edges.push(edge);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
const graph = {
|
|
292
|
+
nodes,
|
|
293
|
+
edges,
|
|
294
|
+
viewport: {
|
|
295
|
+
x: 0,
|
|
296
|
+
y: 0,
|
|
297
|
+
zoom: 1,
|
|
298
|
+
},
|
|
299
|
+
};
|
|
300
|
+
const validation = schema_1.diagramGraphJsonSchema.safeParse(graph);
|
|
301
|
+
if (!validation.success) {
|
|
302
|
+
const messages = validation.error.issues
|
|
303
|
+
.map((issue) => `${issue.path.join(".") || "<root>"}: ${issue.message}`)
|
|
304
|
+
.join("; ");
|
|
305
|
+
throw new Error(`Invalid DiagramGraphJson: ${messages}`);
|
|
306
|
+
}
|
|
307
|
+
return validation.data;
|
|
308
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../types/component";
|
|
2
|
+
import type { ScanResult } from "../types/result";
|
|
3
|
+
/**
|
|
4
|
+
* Repo has deployable application code outside the Terraform stack (monorepo apps).
|
|
5
|
+
*/
|
|
6
|
+
export declare function isMixedAppTerraformScan(components: DetectedComponent[]): boolean;
|
|
7
|
+
/** In mixed scans, keep app nodes plus Terraform provider hub and module call shells only. */
|
|
8
|
+
export declare function shouldKeepComponentInMixedAppTerraformScan(component: DetectedComponent): boolean;
|
|
9
|
+
/**
|
|
10
|
+
* When application packages and a Terraform stack coexist, drop per-resource
|
|
11
|
+
* Terraform nodes (VPC subnets, RDS instances, etc.) and keep provider + module shells.
|
|
12
|
+
*/
|
|
13
|
+
export declare function applyMixedAppTerraformScanResult(scanResult: ScanResult): ScanResult;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isMixedAppTerraformScan = isMixedAppTerraformScan;
|
|
4
|
+
exports.shouldKeepComponentInMixedAppTerraformScan = shouldKeepComponentInMixedAppTerraformScan;
|
|
5
|
+
exports.applyMixedAppTerraformScanResult = applyMixedAppTerraformScanResult;
|
|
6
|
+
const main_application_selection_1 = require("../../classifier/main-application-selection");
|
|
7
|
+
const sectioning_1 = require("../../classifier/sectioning");
|
|
8
|
+
const component_predicates_1 = require("../terraform/component-predicates");
|
|
9
|
+
const section_runtime_1 = require("../sectioning/section-runtime");
|
|
10
|
+
const terraform_flow_utils_1 = require("./terraform-flow-utils");
|
|
11
|
+
function isDeployableAppAssetOutsideTerraformStack(component) {
|
|
12
|
+
if (component.type !== "asset" || (0, component_predicates_1.hasTerraformAddress)(component))
|
|
13
|
+
return false;
|
|
14
|
+
const sub = component.subType;
|
|
15
|
+
if (sub !== "api" && sub !== "service" && sub !== "application") {
|
|
16
|
+
return false;
|
|
17
|
+
}
|
|
18
|
+
const sid = (0, sectioning_1.getSectionIdFromProperties)(component.properties);
|
|
19
|
+
if ((0, section_runtime_1.isTerraformStackSection)({ id: sid, sectionDir: sid })) {
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
if ((0, component_predicates_1.isRootLikeSectionId)(sid)) {
|
|
23
|
+
return (0, component_predicates_1.hasNonTerraformAppSignals)(component);
|
|
24
|
+
}
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Repo has deployable application code outside the Terraform stack (monorepo apps).
|
|
29
|
+
*/
|
|
30
|
+
function isMixedAppTerraformScan(components) {
|
|
31
|
+
if (!components.some(component_predicates_1.hasTerraformAddress))
|
|
32
|
+
return false;
|
|
33
|
+
return components.some(isDeployableAppAssetOutsideTerraformStack);
|
|
34
|
+
}
|
|
35
|
+
/** In mixed scans, keep app nodes plus Terraform provider hub and module call shells only. */
|
|
36
|
+
function shouldKeepComponentInMixedAppTerraformScan(component) {
|
|
37
|
+
if (!(0, component_predicates_1.hasTerraformAddress)(component))
|
|
38
|
+
return true;
|
|
39
|
+
if ((0, component_predicates_1.isTerraformProviderComponent)(component))
|
|
40
|
+
return true;
|
|
41
|
+
if ((0, main_application_selection_1.isTerraformModuleCallShellAsset)(component))
|
|
42
|
+
return true;
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
function ensureMixedAppTerraformProviderToModuleShellFlows(components, flows) {
|
|
46
|
+
const provider = (0, terraform_flow_utils_1.findPrimaryTerraformProvider)(components);
|
|
47
|
+
const shells = (0, terraform_flow_utils_1.listTerraformModuleShells)(components);
|
|
48
|
+
if (!provider || shells.length === 0)
|
|
49
|
+
return flows;
|
|
50
|
+
const next = [...flows];
|
|
51
|
+
shells.sort((a, b) => a.id.localeCompare(b.id));
|
|
52
|
+
const push = (sourceId, targetId) => {
|
|
53
|
+
if ((0, terraform_flow_utils_1.hasDirectedFlow)(next, sourceId, targetId))
|
|
54
|
+
return;
|
|
55
|
+
next.push({
|
|
56
|
+
id: (0, terraform_flow_utils_1.nextSyntheticFlowId)(next),
|
|
57
|
+
sourceComponentId: sourceId,
|
|
58
|
+
targetComponentId: targetId,
|
|
59
|
+
type: "api_call",
|
|
60
|
+
confidence: 0.72,
|
|
61
|
+
description: "mixed_app_terraform_module_shell",
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
for (const shell of shells) {
|
|
65
|
+
push(provider.id, shell.id);
|
|
66
|
+
}
|
|
67
|
+
return next;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* When application packages and a Terraform stack coexist, drop per-resource
|
|
71
|
+
* Terraform nodes (VPC subnets, RDS instances, etc.) and keep provider + module shells.
|
|
72
|
+
*/
|
|
73
|
+
function applyMixedAppTerraformScanResult(scanResult) {
|
|
74
|
+
if (!isMixedAppTerraformScan(scanResult.components))
|
|
75
|
+
return scanResult;
|
|
76
|
+
const components = scanResult.components.filter(shouldKeepComponentInMixedAppTerraformScan);
|
|
77
|
+
const keptIds = new Set(components.map((c) => c.id));
|
|
78
|
+
let flows = scanResult.dataFlows.filter((f) => keptIds.has(f.sourceComponentId) && keptIds.has(f.targetComponentId));
|
|
79
|
+
flows = ensureMixedAppTerraformProviderToModuleShellFlows(components, flows);
|
|
80
|
+
return { ...scanResult, components, dataFlows: flows };
|
|
81
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { ScanConfiguration, ScanProgress } from "../types";
|
|
2
|
+
import type { OrchestratorScanResult } from "./orchestrator-result";
|
|
3
|
+
export type { OrchestratorScanResult } from "./orchestrator-result";
|
|
4
|
+
/**
|
|
5
|
+
* Construct a complete `ScanConfiguration` from a set of overrides.
|
|
6
|
+
*
|
|
7
|
+
* This is the single place where default scan behaviour is defined. Callers
|
|
8
|
+
* (CLI, tests, future SDKs) should always go through this helper rather than
|
|
9
|
+
* hand-rolling configuration objects so that new fields pick up sensible
|
|
10
|
+
* defaults automatically.
|
|
11
|
+
*
|
|
12
|
+
* By default, co-located tests, Playwright config, and Storybook artifacts are not
|
|
13
|
+
* scanned (`DEFAULT_EXCLUDED_FILE_GLOBS` and directory skips in `patterns/scan-exclusions.ts`).
|
|
14
|
+
*/
|
|
15
|
+
export declare function createDefaultScanConfiguration(overrides?: Partial<ScanConfiguration>): ScanConfiguration;
|
|
16
|
+
/**
|
|
17
|
+
* Run the full structural scan pipeline for a given project root.
|
|
18
|
+
*
|
|
19
|
+
* This is the primary entrypoint for code that wants to scan a project:
|
|
20
|
+
* the CLI, tests, and any future programmatic consumers should call `scan`
|
|
21
|
+
* rather than reaching into individual ingest/analyzer/classifier modules.
|
|
22
|
+
*
|
|
23
|
+
* When LangSmith tracing is enabled (see `tracing/langsmith-tracing.ts`), the
|
|
24
|
+
* full run is recorded as a root trace; AI inference is a nested trace.
|
|
25
|
+
*/
|
|
26
|
+
export declare function scan(rootPath: string, config: ScanConfiguration, onProgress?: (progress: ScanProgress) => void): Promise<OrchestratorScanResult>;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createDefaultScanConfiguration = createDefaultScanConfiguration;
|
|
4
|
+
exports.scan = scan;
|
|
5
|
+
const scan_exclusions_1 = require("../../patterns/scan-exclusions");
|
|
6
|
+
const langsmith_tracing_1 = require("../../tracing/langsmith-tracing");
|
|
7
|
+
const scan_pipeline_1 = require("./scan-pipeline");
|
|
8
|
+
/**
|
|
9
|
+
* Construct a complete `ScanConfiguration` from a set of overrides.
|
|
10
|
+
*
|
|
11
|
+
* This is the single place where default scan behaviour is defined. Callers
|
|
12
|
+
* (CLI, tests, future SDKs) should always go through this helper rather than
|
|
13
|
+
* hand-rolling configuration objects so that new fields pick up sensible
|
|
14
|
+
* defaults automatically.
|
|
15
|
+
*
|
|
16
|
+
* By default, co-located tests, Playwright config, and Storybook artifacts are not
|
|
17
|
+
* scanned (`DEFAULT_EXCLUDED_FILE_GLOBS` and directory skips in `patterns/scan-exclusions.ts`).
|
|
18
|
+
*/
|
|
19
|
+
function createDefaultScanConfiguration(overrides = {}) {
|
|
20
|
+
const { excludePaths: userExcludePaths, ...restOverrides } = overrides;
|
|
21
|
+
const base = {
|
|
22
|
+
projectName: undefined,
|
|
23
|
+
excludePaths: [],
|
|
24
|
+
enableAPIDetection: true,
|
|
25
|
+
enableDatabaseDetection: true,
|
|
26
|
+
enableDataFlowDetection: true,
|
|
27
|
+
languages: undefined,
|
|
28
|
+
minimumConfidence: 0.5,
|
|
29
|
+
deepAnalysis: false,
|
|
30
|
+
enableAiInference: false,
|
|
31
|
+
aiProvider: "mock",
|
|
32
|
+
aiModel: "heuristic",
|
|
33
|
+
aiEndpoint: undefined,
|
|
34
|
+
aiApiKey: undefined,
|
|
35
|
+
aiTemperature: 0.1,
|
|
36
|
+
aiMaxTokens: 1024,
|
|
37
|
+
aiMaxModelCalls: 12,
|
|
38
|
+
aiBudgetTokens: 12000,
|
|
39
|
+
aiProviderConcurrency: 4,
|
|
40
|
+
aiMaxCandidatesPerAgent: 25,
|
|
41
|
+
aiInferenceScope: "default",
|
|
42
|
+
aiVerbose: false,
|
|
43
|
+
aiToolLoopMaxRounds: 3,
|
|
44
|
+
aiToolLoopMaxFiles: 8,
|
|
45
|
+
aiToolLoopMaxSearches: 6,
|
|
46
|
+
aiThirdPartyDataFlowEnabled: false,
|
|
47
|
+
/** Infer Terraform stack section depth from `.tf` layout when depth is unset. */
|
|
48
|
+
autoInferTerraformStackSectionPathDepth: true,
|
|
49
|
+
/** Default workspace package depth (`packages/*`). Override via flag or config. */
|
|
50
|
+
monorepoPackageSectionPathDepth: 2,
|
|
51
|
+
autoInferMonorepoPackageSectionPathDepth: true,
|
|
52
|
+
};
|
|
53
|
+
return {
|
|
54
|
+
...base,
|
|
55
|
+
...restOverrides,
|
|
56
|
+
excludePaths: [
|
|
57
|
+
...scan_exclusions_1.DEFAULT_EXCLUDED_FILE_GLOBS,
|
|
58
|
+
...(userExcludePaths ?? []),
|
|
59
|
+
],
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Run the full structural scan pipeline for a given project root.
|
|
64
|
+
*
|
|
65
|
+
* This is the primary entrypoint for code that wants to scan a project:
|
|
66
|
+
* the CLI, tests, and any future programmatic consumers should call `scan`
|
|
67
|
+
* rather than reaching into individual ingest/analyzer/classifier modules.
|
|
68
|
+
*
|
|
69
|
+
* When LangSmith tracing is enabled (see `tracing/langsmith-tracing.ts`), the
|
|
70
|
+
* full run is recorded as a root trace; AI inference is a nested trace.
|
|
71
|
+
*/
|
|
72
|
+
async function scan(rootPath, config, onProgress) {
|
|
73
|
+
return (0, langsmith_tracing_1.traceDataparadeScan)({
|
|
74
|
+
rootPath: rootPath.toString(),
|
|
75
|
+
projectName: config.projectName,
|
|
76
|
+
enableAiInference: config.enableAiInference,
|
|
77
|
+
run: () => (0, scan_pipeline_1.runScanPipeline)(rootPath, config, onProgress),
|
|
78
|
+
});
|
|
79
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.resolvePathUnderScanRoot = resolvePathUnderScanRoot;
|
|
37
|
+
const path = __importStar(require("path"));
|
|
38
|
+
function resolvePathUnderScanRoot(scanRootDir, userPath) {
|
|
39
|
+
const trimmed = userPath.trim();
|
|
40
|
+
if (!trimmed) {
|
|
41
|
+
return { ok: false, message: "path is empty" };
|
|
42
|
+
}
|
|
43
|
+
const scanRoot = path.resolve(scanRootDir);
|
|
44
|
+
const abs = path.isAbsolute(trimmed)
|
|
45
|
+
? path.normalize(trimmed)
|
|
46
|
+
: path.resolve(scanRoot, trimmed);
|
|
47
|
+
const prefix = `${scanRoot}${path.sep}`;
|
|
48
|
+
if (abs !== scanRoot && !abs.startsWith(prefix)) {
|
|
49
|
+
return {
|
|
50
|
+
ok: false,
|
|
51
|
+
message: `path must be under scan root: ${userPath}`,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
return { ok: true, resolved: abs };
|
|
55
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ScanConfiguration, ScanProgress } from "../types";
|
|
2
|
+
import type { OrchestratorScanResult } from "./orchestrator-result";
|
|
3
|
+
/**
|
|
4
|
+
* Internal scan implementation (ingest → classify → flows → optional AI → validate).
|
|
5
|
+
*/
|
|
6
|
+
export declare function runScanPipeline(rootPath: string, config: ScanConfiguration, onProgress?: (progress: ScanProgress) => void): Promise<OrchestratorScanResult>;
|