@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,138 @@
|
|
|
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.walkForManifests = walkForManifests;
|
|
37
|
+
const path = __importStar(require("path"));
|
|
38
|
+
const fs_1 = require("fs");
|
|
39
|
+
const gitignore_1 = require("../../ingest/gitignore");
|
|
40
|
+
const scan_exclusions_1 = require("../../patterns/scan-exclusions");
|
|
41
|
+
function patternToRegex(pattern) {
|
|
42
|
+
let escaped = pattern.replace(/[-\\^$+?.()|[\]{}*?]/g, "\\$&");
|
|
43
|
+
escaped = escaped.replace(/\\\*\\\*/g, ".*");
|
|
44
|
+
escaped = escaped.replace(/\\\*/g, "[^/]*");
|
|
45
|
+
escaped = escaped.replace(/\\\?/g, "[^/]");
|
|
46
|
+
return new RegExp(`^${escaped}$`);
|
|
47
|
+
}
|
|
48
|
+
function normalizeUserPattern(pattern) {
|
|
49
|
+
return (0, gitignore_1.toPosixPath)(pattern.replace(/^\.\/+/, "").trim());
|
|
50
|
+
}
|
|
51
|
+
function isExcludedByUserPatterns(relativePath, excludePaths) {
|
|
52
|
+
const rel = (0, gitignore_1.toPosixPath)(relativePath);
|
|
53
|
+
for (const rawPattern of excludePaths) {
|
|
54
|
+
const pattern = normalizeUserPattern(rawPattern);
|
|
55
|
+
if (!pattern)
|
|
56
|
+
continue;
|
|
57
|
+
if (pattern.endsWith("/**")) {
|
|
58
|
+
const prefix = pattern.slice(0, -3).replace(/\/$/, "");
|
|
59
|
+
if (rel === prefix || rel.startsWith(`${prefix}/`))
|
|
60
|
+
return true;
|
|
61
|
+
}
|
|
62
|
+
if (patternToRegex(pattern).test(rel))
|
|
63
|
+
return true;
|
|
64
|
+
}
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
async function walkForManifests(dir, out, options, accumulatedGitignoreRules = []) {
|
|
68
|
+
const { rootDir, state, isManifestFile } = options;
|
|
69
|
+
const excludePaths = options.excludePaths ?? [];
|
|
70
|
+
if (state.stopped)
|
|
71
|
+
return;
|
|
72
|
+
const gitignoreRules = await (0, gitignore_1.gitignoreRulesForDir)(dir, accumulatedGitignoreRules);
|
|
73
|
+
let entries;
|
|
74
|
+
try {
|
|
75
|
+
entries = await fs_1.promises.readdir(dir, { withFileTypes: true });
|
|
76
|
+
}
|
|
77
|
+
catch {
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
for (const entry of entries) {
|
|
81
|
+
if (state.stopped)
|
|
82
|
+
return;
|
|
83
|
+
const entryPath = path.join(dir, entry.name);
|
|
84
|
+
const relativePath = (0, gitignore_1.toPosixPath)(path.relative(rootDir, entryPath));
|
|
85
|
+
if (entry.isDirectory()) {
|
|
86
|
+
if ((0, scan_exclusions_1.shouldSkipDirectoryName)(entry.name))
|
|
87
|
+
continue;
|
|
88
|
+
if (relativePath &&
|
|
89
|
+
isExcludedByUserPatterns(relativePath, excludePaths)) {
|
|
90
|
+
continue;
|
|
91
|
+
}
|
|
92
|
+
if ((0, gitignore_1.isPathIgnored)(entryPath, true, gitignoreRules)) {
|
|
93
|
+
continue;
|
|
94
|
+
}
|
|
95
|
+
await walkForManifests(entryPath, out, options, gitignoreRules);
|
|
96
|
+
continue;
|
|
97
|
+
}
|
|
98
|
+
if (!entry.isFile())
|
|
99
|
+
continue;
|
|
100
|
+
if ((0, gitignore_1.isPathIgnored)(entryPath, false, gitignoreRules)) {
|
|
101
|
+
continue;
|
|
102
|
+
}
|
|
103
|
+
if (relativePath &&
|
|
104
|
+
isExcludedByUserPatterns(relativePath, excludePaths)) {
|
|
105
|
+
continue;
|
|
106
|
+
}
|
|
107
|
+
if (!isManifestFile(entry, entryPath))
|
|
108
|
+
continue;
|
|
109
|
+
const rel = path.relative(rootDir, entryPath);
|
|
110
|
+
if (rel.startsWith("..") || path.isAbsolute(rel))
|
|
111
|
+
continue;
|
|
112
|
+
const stat = await fs_1.promises.stat(entryPath).catch(() => undefined);
|
|
113
|
+
const size = stat?.size ?? 0;
|
|
114
|
+
if (size > state.maxManifestFileSizeBytes) {
|
|
115
|
+
state.onWarning?.(`manifest-scan: skipping oversized manifest (${rel}) - size ${size}B exceeds limit ${state.maxManifestFileSizeBytes}B`);
|
|
116
|
+
continue;
|
|
117
|
+
}
|
|
118
|
+
if (state.manifestFiles >= state.maxManifestFiles) {
|
|
119
|
+
state.stopped = true;
|
|
120
|
+
if (!state.warned) {
|
|
121
|
+
state.warned = true;
|
|
122
|
+
state.onWarning?.(`manifest-scan: manifest scan budget exceeded (maxManifestFiles=${state.maxManifestFiles}). Stopping scan early.`);
|
|
123
|
+
}
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
if (state.totalReadBytes + size > state.maxTotalManifestReadBytes) {
|
|
127
|
+
state.stopped = true;
|
|
128
|
+
if (!state.warned) {
|
|
129
|
+
state.warned = true;
|
|
130
|
+
state.onWarning?.(`manifest-scan: manifest scan budget exceeded (maxTotalManifestReadBytes=${state.maxTotalManifestReadBytes}). Stopping scan early.`);
|
|
131
|
+
}
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
134
|
+
state.manifestFiles += 1;
|
|
135
|
+
state.totalReadBytes += size;
|
|
136
|
+
out.push(entryPath);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Maps YAML-driven pattern detection results to component properties.
|
|
3
|
+
*
|
|
4
|
+
* Property inference is intentionally driven by `cli/patterns/property.patterns.yaml`
|
|
5
|
+
* to avoid hard-coded inference mappings.
|
|
6
|
+
*/
|
|
7
|
+
import type { RawFinding } from "../../core/types/detection";
|
|
8
|
+
export declare function getPropertiesFromFinding(finding: RawFinding, fileContent?: string): Record<string, unknown>;
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Maps YAML-driven pattern detection results to component properties.
|
|
4
|
+
*
|
|
5
|
+
* Property inference is intentionally driven by `cli/patterns/property.patterns.yaml`
|
|
6
|
+
* to avoid hard-coded inference mappings.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.getPropertiesFromFinding = getPropertiesFromFinding;
|
|
10
|
+
const property_detection_config_1 = require("../../config/property-detection-config");
|
|
11
|
+
function isTruthyValue(value) {
|
|
12
|
+
if (value === undefined || value === null)
|
|
13
|
+
return false;
|
|
14
|
+
if (typeof value === "string")
|
|
15
|
+
return value.trim().length > 0;
|
|
16
|
+
if (Array.isArray(value))
|
|
17
|
+
return value.length > 0;
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
function getContextValue(ctx, inputName) {
|
|
21
|
+
return ctx[inputName];
|
|
22
|
+
}
|
|
23
|
+
function evalCondition(when, ctx, out, regexes) {
|
|
24
|
+
if (!when)
|
|
25
|
+
return false;
|
|
26
|
+
if (when.always === true)
|
|
27
|
+
return true;
|
|
28
|
+
if (typeof when.notSet === "string") {
|
|
29
|
+
const key = String(when.notSet);
|
|
30
|
+
return out[key] === undefined;
|
|
31
|
+
}
|
|
32
|
+
if (typeof when.exists === "string") {
|
|
33
|
+
const val = getContextValue(ctx, String(when.exists));
|
|
34
|
+
return isTruthyValue(val);
|
|
35
|
+
}
|
|
36
|
+
if (when.regex && typeof when.regex === "object") {
|
|
37
|
+
const inputName = String(when.regex.input);
|
|
38
|
+
const regexName = String(when.regex.regex);
|
|
39
|
+
const re = regexes[regexName];
|
|
40
|
+
if (!re)
|
|
41
|
+
return false;
|
|
42
|
+
const val = getContextValue(ctx, inputName);
|
|
43
|
+
if (!isTruthyValue(val))
|
|
44
|
+
return false;
|
|
45
|
+
return re.test(String(val));
|
|
46
|
+
}
|
|
47
|
+
if (when.equals && typeof when.equals === "object") {
|
|
48
|
+
const inputName = String(when.equals.input);
|
|
49
|
+
const expected = when.equals.value;
|
|
50
|
+
const val = getContextValue(ctx, inputName);
|
|
51
|
+
if (!isTruthyValue(val))
|
|
52
|
+
return false;
|
|
53
|
+
return String(val) === String(expected);
|
|
54
|
+
}
|
|
55
|
+
if (Array.isArray(when.anyOf)) {
|
|
56
|
+
return when.anyOf.some((c) => evalCondition(c, ctx, out, regexes));
|
|
57
|
+
}
|
|
58
|
+
if (Array.isArray(when.allOf)) {
|
|
59
|
+
return when.allOf.every((c) => evalCondition(c, ctx, out, regexes));
|
|
60
|
+
}
|
|
61
|
+
if (when.not) {
|
|
62
|
+
return !evalCondition(when.not, ctx, out, regexes);
|
|
63
|
+
}
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
function resolveLookupTable(mapName, config) {
|
|
67
|
+
return config.lookupTables?.[mapName];
|
|
68
|
+
}
|
|
69
|
+
function resolveAssignment(assignment, ctx, out, config) {
|
|
70
|
+
if (assignment === undefined)
|
|
71
|
+
return undefined;
|
|
72
|
+
if (assignment === null)
|
|
73
|
+
return null;
|
|
74
|
+
const type = typeof assignment;
|
|
75
|
+
if (type !== "object") {
|
|
76
|
+
// Primitive constant.
|
|
77
|
+
return assignment;
|
|
78
|
+
}
|
|
79
|
+
const obj = assignment;
|
|
80
|
+
if (typeof obj.fromInput === "string") {
|
|
81
|
+
const v = getContextValue(ctx, obj.fromInput);
|
|
82
|
+
return v === undefined ? undefined : v;
|
|
83
|
+
}
|
|
84
|
+
if (obj.preferInputOrConstant &&
|
|
85
|
+
typeof obj.preferInputOrConstant === "object") {
|
|
86
|
+
const inputName = String(obj.preferInputOrConstant.input);
|
|
87
|
+
const fallback = obj.preferInputOrConstant.fallback;
|
|
88
|
+
const v = getContextValue(ctx, inputName);
|
|
89
|
+
return isTruthyValue(v) ? v : fallback;
|
|
90
|
+
}
|
|
91
|
+
if (obj.lookup && typeof obj.lookup === "object") {
|
|
92
|
+
const lookup = obj.lookup;
|
|
93
|
+
const mapName = String(lookup.map);
|
|
94
|
+
const keyInput = String(lookup.keyInput);
|
|
95
|
+
const transform = typeof lookup.transform === "string" ? lookup.transform : undefined;
|
|
96
|
+
const onMissing = lookup.onMissing;
|
|
97
|
+
const table = resolveLookupTable(mapName, config);
|
|
98
|
+
if (!table)
|
|
99
|
+
return undefined;
|
|
100
|
+
const keyVal = getContextValue(ctx, keyInput);
|
|
101
|
+
if (typeof keyVal !== "string")
|
|
102
|
+
return undefined;
|
|
103
|
+
const mapKey = transform === "lowercase" ? keyVal.toLowerCase() : keyVal;
|
|
104
|
+
const found = table[mapKey];
|
|
105
|
+
if (found === undefined) {
|
|
106
|
+
if (onMissing === "skip")
|
|
107
|
+
return undefined;
|
|
108
|
+
return undefined;
|
|
109
|
+
}
|
|
110
|
+
return found;
|
|
111
|
+
}
|
|
112
|
+
// Unknown object shape => treat as unset.
|
|
113
|
+
return undefined;
|
|
114
|
+
}
|
|
115
|
+
function applySet(setSpec, ctx, out, config) {
|
|
116
|
+
if (!setSpec || typeof setSpec !== "object")
|
|
117
|
+
return;
|
|
118
|
+
for (const [key, assignment] of Object.entries(setSpec)) {
|
|
119
|
+
const resolved = resolveAssignment(assignment, ctx, out, config);
|
|
120
|
+
if (resolved === undefined)
|
|
121
|
+
continue;
|
|
122
|
+
out[key] = resolved;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
function getPropertiesFromFinding(finding, fileContent) {
|
|
126
|
+
const config = (0, property_detection_config_1.loadPropertyDetectionConfig)();
|
|
127
|
+
const { regexes, inferenceRules } = config;
|
|
128
|
+
const out = {};
|
|
129
|
+
const content = fileContent ?? "";
|
|
130
|
+
const props = (finding.properties ?? {});
|
|
131
|
+
const strategy = typeof props.strategy === "string" ? props.strategy : undefined;
|
|
132
|
+
const library = typeof props.library === "string" ? props.library : undefined;
|
|
133
|
+
const strategyStr = [strategy, library, content].filter(Boolean).join(" ");
|
|
134
|
+
const context = {
|
|
135
|
+
// Common inputs.
|
|
136
|
+
content,
|
|
137
|
+
key: typeof props.key === "string" ? props.key : undefined,
|
|
138
|
+
library,
|
|
139
|
+
strategy,
|
|
140
|
+
strategyStr,
|
|
141
|
+
// External API inputs.
|
|
142
|
+
serviceName: typeof props.serviceName === "string" ? props.serviceName : undefined,
|
|
143
|
+
documentationUrl: typeof props.documentationUrl === "string"
|
|
144
|
+
? props.documentationUrl
|
|
145
|
+
: undefined,
|
|
146
|
+
apiVersion: typeof props.apiVersion === "string" ? props.apiVersion : undefined,
|
|
147
|
+
url: typeof props.url === "string" ? props.url : undefined,
|
|
148
|
+
// Route inputs.
|
|
149
|
+
httpMethods: props.httpMethods,
|
|
150
|
+
path: typeof props.path === "string" ? props.path : undefined,
|
|
151
|
+
};
|
|
152
|
+
const rules = inferenceRules[finding.pattern];
|
|
153
|
+
if (!Array.isArray(rules))
|
|
154
|
+
return out;
|
|
155
|
+
for (const rawRule of rules) {
|
|
156
|
+
const rule = rawRule;
|
|
157
|
+
if (!rule || typeof rule !== "object")
|
|
158
|
+
continue;
|
|
159
|
+
const ok = evalCondition(rule.when, context, out, regexes);
|
|
160
|
+
if (!ok)
|
|
161
|
+
continue;
|
|
162
|
+
applySet(rule.set, context, out, config);
|
|
163
|
+
}
|
|
164
|
+
return out;
|
|
165
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FileInfo } from "../../core/types/file";
|
|
2
|
+
import type { RawFinding } from "../../core/types/detection";
|
|
3
|
+
import type { TerraformPatternConfig } from "./terraform-detection-config";
|
|
4
|
+
import type { TerraformModuleCallManifest } from "./terraform-module-manifest";
|
|
5
|
+
export interface DetectTerraformPatternsOptions {
|
|
6
|
+
manifest?: TerraformModuleCallManifest;
|
|
7
|
+
/** Scan root path (same as CLI scan target); required when manifest is set */
|
|
8
|
+
scanRootPath?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function detectTerraformPatterns(file: FileInfo, config: TerraformPatternConfig, opts?: DetectTerraformPatternsOptions): RawFinding[];
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.detectTerraformPatterns = detectTerraformPatterns;
|
|
4
|
+
const terraform_detection_config_1 = require("./terraform-detection-config");
|
|
5
|
+
const parser_1 = require("./parser");
|
|
6
|
+
const terraform_utility_resource_1 = require("./terraform-utility-resource");
|
|
7
|
+
const terraform_module_manifest_1 = require("./terraform-module-manifest");
|
|
8
|
+
function findSatelliteParentAddress(block, config) {
|
|
9
|
+
const rt = block.resourceType ?? "";
|
|
10
|
+
if (!rt)
|
|
11
|
+
return undefined;
|
|
12
|
+
for (const rule of config.satelliteRules) {
|
|
13
|
+
if (!rule.childResourceTypeRegex.test(rt))
|
|
14
|
+
continue;
|
|
15
|
+
const lines = block.bodyText.split(/\r?\n/);
|
|
16
|
+
for (const line of lines) {
|
|
17
|
+
const trimmed = (0, parser_1.lineBeforeHashComment)(line).trim();
|
|
18
|
+
const m = rule.parentLineRegex.exec(trimmed);
|
|
19
|
+
const g = m?.[rule.parentCaptureGroup];
|
|
20
|
+
if (typeof g === "string" && g.trim()) {
|
|
21
|
+
return g.trim();
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
return undefined;
|
|
26
|
+
}
|
|
27
|
+
const RESERVED_REF_FIRST = new Set([
|
|
28
|
+
"module",
|
|
29
|
+
"data",
|
|
30
|
+
"provider",
|
|
31
|
+
"var",
|
|
32
|
+
"local",
|
|
33
|
+
"each",
|
|
34
|
+
"path",
|
|
35
|
+
"terraform",
|
|
36
|
+
"count",
|
|
37
|
+
]);
|
|
38
|
+
/**
|
|
39
|
+
* Prefix a `type.name[...]` reference when it refers to another resource in the
|
|
40
|
+
* same module instance (not already absolute with `module.` / `data.` / …).
|
|
41
|
+
*/
|
|
42
|
+
function qualifyTerraformReference(ref, instancePrefix) {
|
|
43
|
+
if (!instancePrefix)
|
|
44
|
+
return ref;
|
|
45
|
+
const first = (ref.split(".")[0] ?? "").toLowerCase();
|
|
46
|
+
if (RESERVED_REF_FIRST.has(first))
|
|
47
|
+
return ref;
|
|
48
|
+
const parts = ref.split(".").filter(Boolean);
|
|
49
|
+
if (parts.length < 2)
|
|
50
|
+
return ref;
|
|
51
|
+
return `${instancePrefix}.${parts[0]}.${parts[1]}`;
|
|
52
|
+
}
|
|
53
|
+
function qualifyTerraformAddress(logicalAddress, instancePrefix) {
|
|
54
|
+
if (!instancePrefix)
|
|
55
|
+
return logicalAddress;
|
|
56
|
+
return `${instancePrefix}.${logicalAddress}`;
|
|
57
|
+
}
|
|
58
|
+
function detectTerraformPatterns(file, config, opts) {
|
|
59
|
+
if (file.language !== "terraform")
|
|
60
|
+
return [];
|
|
61
|
+
const { blocks } = (0, parser_1.parseTerraformFile)(file, config);
|
|
62
|
+
const findings = [];
|
|
63
|
+
const sectionId = (0, parser_1.sectionIdFromFilePath)(file.path);
|
|
64
|
+
const sectionLabel = (0, parser_1.sectionLabelFromFilePath)(file.path);
|
|
65
|
+
const manifest = opts?.manifest;
|
|
66
|
+
const scanRoot = opts?.scanRootPath;
|
|
67
|
+
const instancePrefixes = manifest && scanRoot
|
|
68
|
+
? (0, terraform_module_manifest_1.moduleInstancePrefixesForFile)(manifest, scanRoot, file.path)
|
|
69
|
+
: [];
|
|
70
|
+
const passes = instancePrefixes.length > 0 ? instancePrefixes : [""];
|
|
71
|
+
const emitModuleAndProvider = instancePrefixes.length === 0;
|
|
72
|
+
for (const instancePrefix of passes) {
|
|
73
|
+
const q = (addr) => qualifyTerraformAddress(addr, instancePrefix);
|
|
74
|
+
const addressSet = new Set(blocks.map((b) => q(b.address)));
|
|
75
|
+
const omittedTerraformAddresses = new Set();
|
|
76
|
+
for (const block of blocks) {
|
|
77
|
+
if (block.kind !== "resource" && block.kind !== "data")
|
|
78
|
+
continue;
|
|
79
|
+
const rt = block.resourceType ?? "";
|
|
80
|
+
if (rt && (0, terraform_utility_resource_1.isTerraformOmittedFromServiceGraphResourceType)(rt)) {
|
|
81
|
+
omittedTerraformAddresses.add(q(block.address));
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
const satelliteChildAddresses = new Set();
|
|
85
|
+
const satelliteParentByChild = new Map();
|
|
86
|
+
for (const block of blocks) {
|
|
87
|
+
if (block.kind !== "resource" && block.kind !== "data")
|
|
88
|
+
continue;
|
|
89
|
+
const parentAddr = findSatelliteParentAddress(block, config);
|
|
90
|
+
if (parentAddr && addressSet.has(q(parentAddr))) {
|
|
91
|
+
satelliteChildAddresses.add(q(block.address));
|
|
92
|
+
satelliteParentByChild.set(q(block.address), q(parentAddr));
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
const satellitesByParent = new Map();
|
|
96
|
+
for (const block of blocks) {
|
|
97
|
+
const qa = q(block.address);
|
|
98
|
+
if (!satelliteChildAddresses.has(qa))
|
|
99
|
+
continue;
|
|
100
|
+
const parentAddr = satelliteParentByChild.get(qa);
|
|
101
|
+
if (!parentAddr)
|
|
102
|
+
continue;
|
|
103
|
+
const list = satellitesByParent.get(parentAddr) ?? [];
|
|
104
|
+
list.push(block);
|
|
105
|
+
satellitesByParent.set(parentAddr, list);
|
|
106
|
+
}
|
|
107
|
+
for (const block of blocks) {
|
|
108
|
+
const location = (0, parser_1.blockSourceLocation)(file.path, block.startLine, block.endLine);
|
|
109
|
+
if (block.kind === "resource" || block.kind === "data") {
|
|
110
|
+
const qa = q(block.address);
|
|
111
|
+
if (satelliteChildAddresses.has(qa)) {
|
|
112
|
+
continue;
|
|
113
|
+
}
|
|
114
|
+
const rt = block.resourceType ?? "unknown";
|
|
115
|
+
if ((0, terraform_utility_resource_1.isTerraformOmittedFromServiceGraphResourceType)(rt)) {
|
|
116
|
+
continue;
|
|
117
|
+
}
|
|
118
|
+
const hints = (0, terraform_detection_config_1.lookupTerraformResourceHints)(rt, config);
|
|
119
|
+
const rawRefs = (0, parser_1.extractTerraformReferences)(block.bodyText, config).filter((r) => r !== block.address && !omittedTerraformAddresses.has(q(r)));
|
|
120
|
+
const refs = new Set(rawRefs.map((r) => qualifyTerraformReference(r, instancePrefix)));
|
|
121
|
+
const mergedSats = satellitesByParent.get(qa) ?? [];
|
|
122
|
+
const terraform_satellites = mergedSats.map((s) => ({
|
|
123
|
+
terraform_address: q(s.address),
|
|
124
|
+
resource_type: s.resourceType ?? "unknown",
|
|
125
|
+
start_line: s.startLine,
|
|
126
|
+
end_line: s.endLine,
|
|
127
|
+
}));
|
|
128
|
+
for (const sat of mergedSats) {
|
|
129
|
+
for (const r of (0, parser_1.extractTerraformReferences)(sat.bodyText, config)) {
|
|
130
|
+
if (r !== block.address && !omittedTerraformAddresses.has(q(r))) {
|
|
131
|
+
refs.add(qualifyTerraformReference(r, instancePrefix));
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
findings.push({
|
|
136
|
+
pattern: "terraform_resource",
|
|
137
|
+
name: qa,
|
|
138
|
+
confidence: 0.9,
|
|
139
|
+
location,
|
|
140
|
+
properties: {
|
|
141
|
+
terraform_address: qa,
|
|
142
|
+
terraform_block_kind: block.kind,
|
|
143
|
+
resource_type: rt,
|
|
144
|
+
block_name: block.blockName,
|
|
145
|
+
componentSubType: hints.componentSubType,
|
|
146
|
+
cloud_provider: hints.cloud_provider,
|
|
147
|
+
section_id: sectionId,
|
|
148
|
+
section_label: sectionLabel,
|
|
149
|
+
terraform_references: Array.from(refs).sort((a, b) => a.localeCompare(b)),
|
|
150
|
+
...(instancePrefix
|
|
151
|
+
? { terraform_module_instance: instancePrefix }
|
|
152
|
+
: {}),
|
|
153
|
+
...(terraform_satellites.length > 0
|
|
154
|
+
? { terraform_satellites }
|
|
155
|
+
: {}),
|
|
156
|
+
},
|
|
157
|
+
});
|
|
158
|
+
continue;
|
|
159
|
+
}
|
|
160
|
+
if (!emitModuleAndProvider) {
|
|
161
|
+
continue;
|
|
162
|
+
}
|
|
163
|
+
if (block.kind === "module") {
|
|
164
|
+
findings.push({
|
|
165
|
+
pattern: "terraform_module",
|
|
166
|
+
name: `module:${block.blockName}`,
|
|
167
|
+
confidence: 0.88,
|
|
168
|
+
location,
|
|
169
|
+
properties: {
|
|
170
|
+
terraform_address: block.address,
|
|
171
|
+
module_name: block.blockName,
|
|
172
|
+
componentSubType: "application",
|
|
173
|
+
section_id: sectionId,
|
|
174
|
+
section_label: sectionLabel,
|
|
175
|
+
},
|
|
176
|
+
});
|
|
177
|
+
continue;
|
|
178
|
+
}
|
|
179
|
+
if (block.kind === "provider") {
|
|
180
|
+
const pn = block.blockName;
|
|
181
|
+
findings.push({
|
|
182
|
+
pattern: "terraform_provider",
|
|
183
|
+
name: `provider:${pn}`,
|
|
184
|
+
confidence: 0.92,
|
|
185
|
+
location,
|
|
186
|
+
properties: {
|
|
187
|
+
terraform_address: block.address,
|
|
188
|
+
provider_name: pn,
|
|
189
|
+
serviceName: (0, terraform_detection_config_1.lookupTerraformProviderServiceName)(pn, config),
|
|
190
|
+
section_id: sectionId,
|
|
191
|
+
section_label: sectionLabel,
|
|
192
|
+
},
|
|
193
|
+
});
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
return findings;
|
|
198
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createTerraformAnalyzer = createTerraformAnalyzer;
|
|
4
|
+
const detector_1 = require("./detector");
|
|
5
|
+
const terraform_detection_config_1 = require("./terraform-detection-config");
|
|
6
|
+
function createTerraformAnalyzer() {
|
|
7
|
+
const config = (0, terraform_detection_config_1.loadTerraformPatternConfig)();
|
|
8
|
+
return {
|
|
9
|
+
detect(file) {
|
|
10
|
+
return (0, detector_1.detectTerraformPatterns)(file, config);
|
|
11
|
+
},
|
|
12
|
+
};
|
|
13
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { FileInfo, SourceLocation } from "../../core/types/file";
|
|
2
|
+
import type { TerraformPatternConfig } from "./terraform-detection-config";
|
|
3
|
+
export type TerraformBlockKind = "resource" | "data" | "module" | "provider";
|
|
4
|
+
export interface ParsedTerraformBlock {
|
|
5
|
+
kind: TerraformBlockKind;
|
|
6
|
+
/** First quoted label for resource/data (e.g. aws_lambda_function); provider name for provider; omitted for module. */
|
|
7
|
+
resourceType?: string;
|
|
8
|
+
/** Second quoted label for resource/data; module name for module. */
|
|
9
|
+
blockName: string;
|
|
10
|
+
address: string;
|
|
11
|
+
startLine: number;
|
|
12
|
+
endLine: number;
|
|
13
|
+
bodyText: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ParseTerraformFileResult {
|
|
16
|
+
blocks: ParsedTerraformBlock[];
|
|
17
|
+
warnings: string[];
|
|
18
|
+
}
|
|
19
|
+
export declare function lineBeforeHashComment(raw: string): string;
|
|
20
|
+
/**
|
|
21
|
+
* Net `{` minus `}` on a line, ignoring braces inside double-quoted strings
|
|
22
|
+
* and treating `#` as line comment start (best-effort; heredocs not modeled).
|
|
23
|
+
*/
|
|
24
|
+
export declare function lineBraceDelta(line: string): number;
|
|
25
|
+
export declare function parseTerraformFile(file: FileInfo, config: TerraformPatternConfig): ParseTerraformFileResult;
|
|
26
|
+
export declare function extractTerraformReferences(bodyText: string, config: TerraformPatternConfig): string[];
|
|
27
|
+
export declare function sectionIdFromFilePath(filePath: string): string;
|
|
28
|
+
export declare function sectionLabelFromFilePath(filePath: string): string;
|
|
29
|
+
export declare function blockSourceLocation(filePath: string, startLine: number, endLine: number): SourceLocation;
|