@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,510 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mergeProperties = mergeProperties;
|
|
4
|
+
exports.dedupeSourceLocations = dedupeSourceLocations;
|
|
5
|
+
exports.compareSourceLocations = compareSourceLocations;
|
|
6
|
+
exports.compareDetectedFromRefs = compareDetectedFromRefs;
|
|
7
|
+
exports.getDatabaseCanonicalKey = getDatabaseCanonicalKey;
|
|
8
|
+
exports.dedupeComponents = dedupeComponents;
|
|
9
|
+
exports.mergeGlobalIdentityProviderThirdParties = mergeGlobalIdentityProviderThirdParties;
|
|
10
|
+
exports.mergeDatabaseAssetsByType = mergeDatabaseAssetsByType;
|
|
11
|
+
exports.compactAuthServiceComponents = compactAuthServiceComponents;
|
|
12
|
+
const config_1 = require("./config");
|
|
13
|
+
const naming_1 = require("./naming");
|
|
14
|
+
const sectioning_1 = require("./sectioning");
|
|
15
|
+
function aggregateComponentConfidence(components, strategy) {
|
|
16
|
+
if (components.length === 0)
|
|
17
|
+
return 0;
|
|
18
|
+
if (strategy === "average") {
|
|
19
|
+
const sum = components.reduce((acc, c) => acc + c.confidence, 0);
|
|
20
|
+
return Math.min(1, Math.max(0, sum / components.length));
|
|
21
|
+
}
|
|
22
|
+
const max = components.reduce((acc, c) => (c.confidence > acc ? c.confidence : acc), 0);
|
|
23
|
+
return Math.min(1, Math.max(0, max));
|
|
24
|
+
}
|
|
25
|
+
function mergeProperties(target, source) {
|
|
26
|
+
for (const [key, value] of Object.entries(source)) {
|
|
27
|
+
if (!(key in target)) {
|
|
28
|
+
target[key] = value;
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
31
|
+
const existing = target[key];
|
|
32
|
+
if (existing === value) {
|
|
33
|
+
continue;
|
|
34
|
+
}
|
|
35
|
+
const existingArray = Array.isArray(existing) ? existing : [existing];
|
|
36
|
+
const incomingArray = Array.isArray(value) ? value : [value];
|
|
37
|
+
const merged = [...existingArray];
|
|
38
|
+
for (const v of incomingArray) {
|
|
39
|
+
if (!merged.includes(v)) {
|
|
40
|
+
merged.push(v);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
target[key] = merged;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
function dedupeSourceLocations(locations) {
|
|
47
|
+
const seen = new Set();
|
|
48
|
+
const result = [];
|
|
49
|
+
for (const loc of locations) {
|
|
50
|
+
const key = `${loc.filePath}:${loc.startLine}:${loc.endLine}`;
|
|
51
|
+
if (seen.has(key))
|
|
52
|
+
continue;
|
|
53
|
+
seen.add(key);
|
|
54
|
+
result.push(loc);
|
|
55
|
+
}
|
|
56
|
+
return result;
|
|
57
|
+
}
|
|
58
|
+
function compareSourceLocations(a, b) {
|
|
59
|
+
const fileCmp = a.filePath.localeCompare(b.filePath);
|
|
60
|
+
if (fileCmp !== 0)
|
|
61
|
+
return fileCmp;
|
|
62
|
+
if (a.startLine !== b.startLine)
|
|
63
|
+
return a.startLine - b.startLine;
|
|
64
|
+
if (a.endLine !== b.endLine)
|
|
65
|
+
return a.endLine - b.endLine;
|
|
66
|
+
return 0;
|
|
67
|
+
}
|
|
68
|
+
function compareDetectedFromRefs(a, b) {
|
|
69
|
+
const patternCmp = String(a.pattern).localeCompare(String(b.pattern));
|
|
70
|
+
if (patternCmp !== 0)
|
|
71
|
+
return patternCmp;
|
|
72
|
+
const al = a.sourceLocation;
|
|
73
|
+
const bl = b.sourceLocation;
|
|
74
|
+
if (!al && !bl)
|
|
75
|
+
return 0;
|
|
76
|
+
if (!al)
|
|
77
|
+
return 1;
|
|
78
|
+
if (!bl)
|
|
79
|
+
return -1;
|
|
80
|
+
return compareSourceLocations(al, bl);
|
|
81
|
+
}
|
|
82
|
+
function compareComponentsForDeterministicBase(a, b) {
|
|
83
|
+
if (a.confidence !== b.confidence)
|
|
84
|
+
return b.confidence - a.confidence;
|
|
85
|
+
const nameCmp = a.name.localeCompare(b.name);
|
|
86
|
+
if (nameCmp !== 0)
|
|
87
|
+
return nameCmp;
|
|
88
|
+
const typeCmp = a.type.localeCompare(b.type);
|
|
89
|
+
if (typeCmp !== 0)
|
|
90
|
+
return typeCmp;
|
|
91
|
+
return a.id.localeCompare(b.id);
|
|
92
|
+
}
|
|
93
|
+
function buildComponentDedupeKey(component, nameNormalization) {
|
|
94
|
+
const sectionId = (0, sectioning_1.getSectionIdFromProperties)(component.properties);
|
|
95
|
+
if (component.type === "asset") {
|
|
96
|
+
const tfAddr = component.properties?.terraform_address;
|
|
97
|
+
if (typeof tfAddr === "string" &&
|
|
98
|
+
tfAddr.trim() &&
|
|
99
|
+
!tfAddr.trim().startsWith("provider.")) {
|
|
100
|
+
return `asset:tf:${sectionId}:${tfAddr.trim().toLowerCase()}`;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
if (component.type === "asset" && component.subType === "auth_service") {
|
|
104
|
+
return `asset:auth_service:${sectionId}`;
|
|
105
|
+
}
|
|
106
|
+
if (component.type === "asset" && component.subType === "database") {
|
|
107
|
+
return `asset:database:${sectionId}:${getDatabaseCanonicalKey(component)}`;
|
|
108
|
+
}
|
|
109
|
+
if (component.type === "third_party") {
|
|
110
|
+
const serviceName = component.properties.serviceName;
|
|
111
|
+
if (typeof serviceName === "string" && serviceName.trim()) {
|
|
112
|
+
const key = serviceName.trim().toLowerCase();
|
|
113
|
+
return `third_party:${sectionId}:${key}`;
|
|
114
|
+
}
|
|
115
|
+
const normalized = (0, naming_1.normalizeComponentName)(component.name, nameNormalization);
|
|
116
|
+
const keyName = normalized || component.name.trim().toLowerCase() || "<unknown>";
|
|
117
|
+
return `third_party:${sectionId}:${keyName}`;
|
|
118
|
+
}
|
|
119
|
+
const normalized = (0, naming_1.normalizeComponentName)(component.name, nameNormalization);
|
|
120
|
+
const keyName = normalized || component.name.trim().toLowerCase() || "<unknown>";
|
|
121
|
+
return `${component.type}:${sectionId}:${keyName}`;
|
|
122
|
+
}
|
|
123
|
+
/** Map client/database identifiers to a canonical key for merging same logical DB per project. */
|
|
124
|
+
function getDatabaseCanonicalKey(component) {
|
|
125
|
+
const dbType = component.properties.databaseType;
|
|
126
|
+
if (typeof dbType === "string" && dbType.trim()) {
|
|
127
|
+
return dbType.trim().toLowerCase();
|
|
128
|
+
}
|
|
129
|
+
const client = component.properties.client;
|
|
130
|
+
if (typeof client === "string" && client.trim()) {
|
|
131
|
+
const c = client.trim().toLowerCase();
|
|
132
|
+
if (c === "supabase" || c === "pg" || c === "postgres")
|
|
133
|
+
return "postgres";
|
|
134
|
+
if (c === "redis")
|
|
135
|
+
return "redis";
|
|
136
|
+
if (c === "mongo" || c === "mongoose")
|
|
137
|
+
return "mongo";
|
|
138
|
+
if (c === "mysql" || c === "mysql2")
|
|
139
|
+
return "mysql";
|
|
140
|
+
return c;
|
|
141
|
+
}
|
|
142
|
+
const fallbackName = (component.name || "")
|
|
143
|
+
.trim()
|
|
144
|
+
.toLowerCase()
|
|
145
|
+
.replace(/[\s_-]+/g, " ");
|
|
146
|
+
return fallbackName || component.id;
|
|
147
|
+
}
|
|
148
|
+
function dedupeComponents(components) {
|
|
149
|
+
if (!components || components.length === 0) {
|
|
150
|
+
return [];
|
|
151
|
+
}
|
|
152
|
+
const config = (0, config_1.loadClassifierConfig)();
|
|
153
|
+
const groups = new Map();
|
|
154
|
+
for (const component of components) {
|
|
155
|
+
const key = buildComponentDedupeKey(component, config.nameNormalization);
|
|
156
|
+
const list = groups.get(key);
|
|
157
|
+
if (list) {
|
|
158
|
+
list.push(component);
|
|
159
|
+
}
|
|
160
|
+
else {
|
|
161
|
+
groups.set(key, [component]);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
const deduped = [];
|
|
165
|
+
for (const [, group] of groups) {
|
|
166
|
+
const groupSorted = [...group].sort(compareComponentsForDeterministicBase);
|
|
167
|
+
const base = groupSorted[0];
|
|
168
|
+
let subType = base.subType;
|
|
169
|
+
if (!subType) {
|
|
170
|
+
subType = groupSorted.find((c) => c.subType)?.subType;
|
|
171
|
+
}
|
|
172
|
+
const confidence = aggregateComponentConfidence(groupSorted, config.resolution.confidenceAggregation);
|
|
173
|
+
const allLocations = [];
|
|
174
|
+
for (const c of groupSorted) {
|
|
175
|
+
allLocations.push(...c.sourceLocations);
|
|
176
|
+
}
|
|
177
|
+
const sourceLocations = dedupeSourceLocations(allLocations).sort(compareSourceLocations);
|
|
178
|
+
const detectedFromMap = new Map();
|
|
179
|
+
for (const c of groupSorted) {
|
|
180
|
+
for (const ref of c.detectedFrom) {
|
|
181
|
+
const loc = ref.sourceLocation;
|
|
182
|
+
const locKey = loc != null
|
|
183
|
+
? `${ref.pattern}:${loc.filePath}:${loc.startLine}:${loc.endLine}`
|
|
184
|
+
: `${ref.pattern}:<no-location>`;
|
|
185
|
+
if (!detectedFromMap.has(locKey)) {
|
|
186
|
+
detectedFromMap.set(locKey, ref);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
const detectedFrom = Array.from(detectedFromMap.values()).sort(compareDetectedFromRefs);
|
|
191
|
+
const mergedProperties = {};
|
|
192
|
+
for (const c of groupSorted) {
|
|
193
|
+
mergeProperties(mergedProperties, c.properties);
|
|
194
|
+
}
|
|
195
|
+
deduped.push({
|
|
196
|
+
...base,
|
|
197
|
+
subType,
|
|
198
|
+
confidence,
|
|
199
|
+
detectedFrom,
|
|
200
|
+
sourceLocations,
|
|
201
|
+
properties: mergedProperties,
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
deduped.sort((a, b) => {
|
|
205
|
+
const nameCompare = a.name.localeCompare(b.name);
|
|
206
|
+
if (nameCompare !== 0)
|
|
207
|
+
return nameCompare;
|
|
208
|
+
return a.type.localeCompare(b.type);
|
|
209
|
+
});
|
|
210
|
+
return deduped;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Identity providers are external SaaS: the same vendor (e.g. Auth0) detected from
|
|
214
|
+
* backend guards and frontend routes should be one third_party node so data-flow
|
|
215
|
+
* detection targets a single id. Per-section dedupe keys intentionally keep other
|
|
216
|
+
* third_party vendors separate.
|
|
217
|
+
*/
|
|
218
|
+
function getGlobalIdentityProviderMergeKey(component) {
|
|
219
|
+
if (component.type !== "third_party")
|
|
220
|
+
return undefined;
|
|
221
|
+
const svcRaw = component.properties?.serviceName;
|
|
222
|
+
const svc = typeof svcRaw === "string" ? svcRaw.trim().toLowerCase() : "";
|
|
223
|
+
const nm = (component.name || "").trim().toLowerCase();
|
|
224
|
+
const hay = `${svc} ${nm}`;
|
|
225
|
+
if (hay.includes("auth0"))
|
|
226
|
+
return "idp:auth0";
|
|
227
|
+
if (hay.includes("okta"))
|
|
228
|
+
return "idp:okta";
|
|
229
|
+
if (hay.includes("clerk"))
|
|
230
|
+
return "idp:clerk";
|
|
231
|
+
if (hay.includes("keycloak"))
|
|
232
|
+
return "idp:keycloak";
|
|
233
|
+
if (hay.includes("cognito"))
|
|
234
|
+
return "idp:cognito";
|
|
235
|
+
if (hay.includes("stytch"))
|
|
236
|
+
return "idp:stytch";
|
|
237
|
+
if (hay.includes("azure") && (hay.includes("ad") || hay.includes("b2c"))) {
|
|
238
|
+
return "idp:azure_ad";
|
|
239
|
+
}
|
|
240
|
+
return undefined;
|
|
241
|
+
}
|
|
242
|
+
/** Prefer merge base with repo paths under `backend/` so one IdP node stays section-scoped to API/auth code, not only the SPA. */
|
|
243
|
+
function backendEvidencePathScore(component) {
|
|
244
|
+
const pathMatchesBackend = (filePath) => /(^|[\\/])backend([\\/]|$)/.test(filePath);
|
|
245
|
+
let n = 0;
|
|
246
|
+
for (const loc of component.sourceLocations) {
|
|
247
|
+
if (pathMatchesBackend(loc.filePath))
|
|
248
|
+
n += 1;
|
|
249
|
+
}
|
|
250
|
+
for (const ref of component.detectedFrom) {
|
|
251
|
+
const fp = ref.sourceLocation?.filePath;
|
|
252
|
+
if (typeof fp === "string" && pathMatchesBackend(fp))
|
|
253
|
+
n += 1;
|
|
254
|
+
}
|
|
255
|
+
return n;
|
|
256
|
+
}
|
|
257
|
+
function compareIdentityProviderMergeBase(a, b) {
|
|
258
|
+
const scoreDelta = backendEvidencePathScore(b) - backendEvidencePathScore(a);
|
|
259
|
+
if (scoreDelta !== 0)
|
|
260
|
+
return scoreDelta;
|
|
261
|
+
return compareComponentsForDeterministicBase(a, b);
|
|
262
|
+
}
|
|
263
|
+
function mergeGlobalIdentityProviderThirdParties(components) {
|
|
264
|
+
if (!components?.length)
|
|
265
|
+
return [];
|
|
266
|
+
const config = (0, config_1.loadClassifierConfig)();
|
|
267
|
+
const groups = new Map();
|
|
268
|
+
for (const c of components) {
|
|
269
|
+
const key = getGlobalIdentityProviderMergeKey(c);
|
|
270
|
+
if (!key)
|
|
271
|
+
continue;
|
|
272
|
+
const list = groups.get(key);
|
|
273
|
+
if (list)
|
|
274
|
+
list.push(c);
|
|
275
|
+
else
|
|
276
|
+
groups.set(key, [c]);
|
|
277
|
+
}
|
|
278
|
+
const removeIds = new Set();
|
|
279
|
+
const mergedByCanonicalId = new Map();
|
|
280
|
+
for (const [, group] of groups) {
|
|
281
|
+
if (group.length < 2)
|
|
282
|
+
continue;
|
|
283
|
+
const groupSorted = [...group].sort(compareIdentityProviderMergeBase);
|
|
284
|
+
const base = groupSorted[0];
|
|
285
|
+
let subType = base.subType;
|
|
286
|
+
if (!subType) {
|
|
287
|
+
subType = groupSorted.find((c) => c.subType)?.subType;
|
|
288
|
+
}
|
|
289
|
+
const confidence = aggregateComponentConfidence(groupSorted, config.resolution.confidenceAggregation);
|
|
290
|
+
const allLocations = [];
|
|
291
|
+
for (const c of groupSorted) {
|
|
292
|
+
allLocations.push(...c.sourceLocations);
|
|
293
|
+
}
|
|
294
|
+
const sourceLocations = dedupeSourceLocations(allLocations).sort(compareSourceLocations);
|
|
295
|
+
const detectedFromMap = new Map();
|
|
296
|
+
for (const c of groupSorted) {
|
|
297
|
+
for (const ref of c.detectedFrom) {
|
|
298
|
+
const loc = ref.sourceLocation;
|
|
299
|
+
const locKey = loc != null
|
|
300
|
+
? `${ref.pattern}:${loc.filePath}:${loc.startLine}:${loc.endLine}`
|
|
301
|
+
: `${ref.pattern}:<no-location>`;
|
|
302
|
+
if (!detectedFromMap.has(locKey)) {
|
|
303
|
+
detectedFromMap.set(locKey, ref);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
const detectedFrom = Array.from(detectedFromMap.values()).sort(compareDetectedFromRefs);
|
|
308
|
+
const mergedProperties = {};
|
|
309
|
+
for (const c of groupSorted) {
|
|
310
|
+
mergeProperties(mergedProperties, c.properties);
|
|
311
|
+
}
|
|
312
|
+
// Keep a single section scope for tooling that expects string section_id.
|
|
313
|
+
mergedProperties.section_id = base.properties.section_id;
|
|
314
|
+
mergedProperties.section_label = base.properties.section_label;
|
|
315
|
+
mergedProperties.section_role = base.properties.section_role;
|
|
316
|
+
const merged = {
|
|
317
|
+
...base,
|
|
318
|
+
subType,
|
|
319
|
+
confidence,
|
|
320
|
+
detectedFrom,
|
|
321
|
+
sourceLocations,
|
|
322
|
+
properties: mergedProperties,
|
|
323
|
+
};
|
|
324
|
+
mergedByCanonicalId.set(base.id, merged);
|
|
325
|
+
for (let i = 1; i < groupSorted.length; i++) {
|
|
326
|
+
removeIds.add(groupSorted[i].id);
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
const out = [];
|
|
330
|
+
for (const c of components) {
|
|
331
|
+
if (removeIds.has(c.id))
|
|
332
|
+
continue;
|
|
333
|
+
out.push(mergedByCanonicalId.get(c.id) ?? c);
|
|
334
|
+
}
|
|
335
|
+
out.sort((a, b) => {
|
|
336
|
+
const nameCompare = a.name.localeCompare(b.name);
|
|
337
|
+
if (nameCompare !== 0)
|
|
338
|
+
return nameCompare;
|
|
339
|
+
return a.type.localeCompare(b.type);
|
|
340
|
+
});
|
|
341
|
+
return out;
|
|
342
|
+
}
|
|
343
|
+
function mergeDatabaseAssetsByType(components) {
|
|
344
|
+
if (!components?.length)
|
|
345
|
+
return [];
|
|
346
|
+
const config = (0, config_1.loadClassifierConfig)();
|
|
347
|
+
const databaseComponents = [];
|
|
348
|
+
const other = [];
|
|
349
|
+
for (const c of components) {
|
|
350
|
+
if (c.type === "asset" && c.subType === "database") {
|
|
351
|
+
databaseComponents.push(c);
|
|
352
|
+
}
|
|
353
|
+
else {
|
|
354
|
+
other.push(c);
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
if (databaseComponents.length <= 1) {
|
|
358
|
+
return components;
|
|
359
|
+
}
|
|
360
|
+
const byKey = new Map();
|
|
361
|
+
for (const c of databaseComponents) {
|
|
362
|
+
const sectionId = (0, sectioning_1.getSectionIdFromProperties)(c.properties);
|
|
363
|
+
const key = `${sectionId}::${getDatabaseCanonicalKey(c)}`;
|
|
364
|
+
const list = byKey.get(key);
|
|
365
|
+
if (list)
|
|
366
|
+
list.push(c);
|
|
367
|
+
else
|
|
368
|
+
byKey.set(key, [c]);
|
|
369
|
+
}
|
|
370
|
+
const merged = [];
|
|
371
|
+
const byKeyEntries = Array.from(byKey.entries()).sort(([a], [b]) => a.localeCompare(b));
|
|
372
|
+
for (const [, group] of byKeyEntries) {
|
|
373
|
+
if (group.length === 1) {
|
|
374
|
+
merged.push(group[0]);
|
|
375
|
+
continue;
|
|
376
|
+
}
|
|
377
|
+
const groupSorted = [...group].sort(compareComponentsForDeterministicBase);
|
|
378
|
+
const base = groupSorted[0];
|
|
379
|
+
let subType = base.subType;
|
|
380
|
+
if (!subType) {
|
|
381
|
+
subType = groupSorted.find((c) => c.subType)?.subType;
|
|
382
|
+
}
|
|
383
|
+
const confidence = aggregateComponentConfidence(groupSorted, config.resolution.confidenceAggregation);
|
|
384
|
+
const allLocations = [];
|
|
385
|
+
for (const c of groupSorted)
|
|
386
|
+
allLocations.push(...c.sourceLocations);
|
|
387
|
+
const sourceLocations = dedupeSourceLocations(allLocations).sort(compareSourceLocations);
|
|
388
|
+
const detectedFromMap = new Map();
|
|
389
|
+
for (const c of groupSorted) {
|
|
390
|
+
for (const ref of c.detectedFrom) {
|
|
391
|
+
const loc = ref.sourceLocation;
|
|
392
|
+
const locKey = loc != null
|
|
393
|
+
? `${ref.pattern}:${loc.filePath}:${loc.startLine}:${loc.endLine}`
|
|
394
|
+
: `${ref.pattern}:<no-location>`;
|
|
395
|
+
if (!detectedFromMap.has(locKey))
|
|
396
|
+
detectedFromMap.set(locKey, ref);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
const detectedFrom = Array.from(detectedFromMap.values()).sort(compareDetectedFromRefs);
|
|
400
|
+
const mergedProperties = {};
|
|
401
|
+
for (const c of groupSorted)
|
|
402
|
+
mergeProperties(mergedProperties, c.properties);
|
|
403
|
+
const preferredName = base.properties.databaseType ?? base.properties.client ?? base.name;
|
|
404
|
+
const displayName = typeof preferredName === "string"
|
|
405
|
+
? preferredName.trim()
|
|
406
|
+
: base.name;
|
|
407
|
+
const name = displayName.length > 0
|
|
408
|
+
? (0, naming_1.toDisplayName)(displayName.toLowerCase(), displayName)
|
|
409
|
+
: base.name;
|
|
410
|
+
merged.push({
|
|
411
|
+
...base,
|
|
412
|
+
name,
|
|
413
|
+
subType,
|
|
414
|
+
confidence,
|
|
415
|
+
detectedFrom,
|
|
416
|
+
sourceLocations,
|
|
417
|
+
properties: mergedProperties,
|
|
418
|
+
});
|
|
419
|
+
}
|
|
420
|
+
merged.sort((a, b) => a.name.localeCompare(b.name));
|
|
421
|
+
return [...other, ...merged].sort((a, b) => {
|
|
422
|
+
const nameCompare = a.name.localeCompare(b.name);
|
|
423
|
+
if (nameCompare !== 0)
|
|
424
|
+
return nameCompare;
|
|
425
|
+
return a.type.localeCompare(b.type);
|
|
426
|
+
});
|
|
427
|
+
}
|
|
428
|
+
function isAuthProviderThirdParty(component) {
|
|
429
|
+
if (component.type !== "third_party")
|
|
430
|
+
return false;
|
|
431
|
+
const serviceName = component.properties?.serviceName;
|
|
432
|
+
const normalizedService = typeof serviceName === "string" ? serviceName.trim().toLowerCase() : "";
|
|
433
|
+
const normalizedName = (component.name || "").trim().toLowerCase();
|
|
434
|
+
return normalizedService.includes("auth0") || normalizedName.includes("auth0");
|
|
435
|
+
}
|
|
436
|
+
function mergeAuthServiceIntoTarget(authService, target) {
|
|
437
|
+
const mergedProperties = {};
|
|
438
|
+
mergeProperties(mergedProperties, target.properties);
|
|
439
|
+
mergeProperties(mergedProperties, authService.properties);
|
|
440
|
+
const confidence = Math.max(target.confidence, authService.confidence);
|
|
441
|
+
const sourceLocations = dedupeSourceLocations([
|
|
442
|
+
...target.sourceLocations,
|
|
443
|
+
...authService.sourceLocations,
|
|
444
|
+
]).sort(compareSourceLocations);
|
|
445
|
+
const detectedFromMap = new Map();
|
|
446
|
+
for (const ref of [...target.detectedFrom, ...authService.detectedFrom]) {
|
|
447
|
+
const loc = ref.sourceLocation;
|
|
448
|
+
const locKey = loc != null
|
|
449
|
+
? `${ref.pattern}:${loc.filePath}:${loc.startLine}:${loc.endLine}`
|
|
450
|
+
: `${ref.pattern}:<no-location>`;
|
|
451
|
+
if (!detectedFromMap.has(locKey))
|
|
452
|
+
detectedFromMap.set(locKey, ref);
|
|
453
|
+
}
|
|
454
|
+
return {
|
|
455
|
+
...target,
|
|
456
|
+
confidence,
|
|
457
|
+
sourceLocations,
|
|
458
|
+
detectedFrom: Array.from(detectedFromMap.values()).sort(compareDetectedFromRefs),
|
|
459
|
+
properties: mergedProperties,
|
|
460
|
+
};
|
|
461
|
+
}
|
|
462
|
+
function isTerraformScannedResourceAsset(component) {
|
|
463
|
+
const addr = component.properties?.terraform_address;
|
|
464
|
+
return (typeof addr === "string" &&
|
|
465
|
+
Boolean(addr.trim()) &&
|
|
466
|
+
!addr.trim().startsWith("provider."));
|
|
467
|
+
}
|
|
468
|
+
function compactAuthServiceComponents(components) {
|
|
469
|
+
if (!components?.length)
|
|
470
|
+
return [];
|
|
471
|
+
const bySection = new Map();
|
|
472
|
+
for (const c of components) {
|
|
473
|
+
const sid = (0, sectioning_1.getSectionIdFromProperties)(c.properties);
|
|
474
|
+
const list = bySection.get(sid);
|
|
475
|
+
if (list)
|
|
476
|
+
list.push(c);
|
|
477
|
+
else
|
|
478
|
+
bySection.set(sid, [c]);
|
|
479
|
+
}
|
|
480
|
+
const replacementById = new Map();
|
|
481
|
+
const removeIds = new Set();
|
|
482
|
+
for (const [, sectionComponents] of bySection) {
|
|
483
|
+
const authServices = sectionComponents.filter((c) => c.type === "asset" &&
|
|
484
|
+
c.subType === "auth_service" &&
|
|
485
|
+
!isTerraformScannedResourceAsset(c));
|
|
486
|
+
if (authServices.length === 0)
|
|
487
|
+
continue;
|
|
488
|
+
const authThirdParty = sectionComponents.find(isAuthProviderThirdParty);
|
|
489
|
+
const mainApp = sectionComponents.find((c) => c.type === "asset" &&
|
|
490
|
+
(c.properties?.isMainApplication === true ||
|
|
491
|
+
c.properties?.isMainApplication === "true"));
|
|
492
|
+
const fallbackAsset = sectionComponents.find((c) => c.type === "asset");
|
|
493
|
+
const mergeTarget = authThirdParty ?? mainApp ?? fallbackAsset;
|
|
494
|
+
if (!mergeTarget)
|
|
495
|
+
continue;
|
|
496
|
+
let nextTarget = replacementById.get(mergeTarget.id) ?? mergeTarget;
|
|
497
|
+
for (const authService of authServices) {
|
|
498
|
+
nextTarget = mergeAuthServiceIntoTarget(authService, nextTarget);
|
|
499
|
+
removeIds.add(authService.id);
|
|
500
|
+
}
|
|
501
|
+
replacementById.set(mergeTarget.id, nextTarget);
|
|
502
|
+
}
|
|
503
|
+
const out = [];
|
|
504
|
+
for (const c of components) {
|
|
505
|
+
if (removeIds.has(c.id))
|
|
506
|
+
continue;
|
|
507
|
+
out.push(replacementById.get(c.id) ?? c);
|
|
508
|
+
}
|
|
509
|
+
return out;
|
|
510
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
export declare function getSectionIdFromProperties(properties: Record<string, unknown> | undefined): string;
|
|
3
|
+
export declare function pickDefaultSectionId(components: DetectedComponent[]): string;
|
|
4
|
+
export declare function pickSectionRoleForSectionId(components: DetectedComponent[], sectionId: string): string;
|
|
5
|
+
export declare function getSectionLabelFromProperties(properties: Record<string, unknown> | undefined): string | undefined;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getSectionIdFromProperties = getSectionIdFromProperties;
|
|
4
|
+
exports.pickDefaultSectionId = pickDefaultSectionId;
|
|
5
|
+
exports.pickSectionRoleForSectionId = pickSectionRoleForSectionId;
|
|
6
|
+
exports.getSectionLabelFromProperties = getSectionLabelFromProperties;
|
|
7
|
+
function getSectionIdFromProperties(properties) {
|
|
8
|
+
const raw = properties?.section_id;
|
|
9
|
+
if (typeof raw === "string" && raw.trim())
|
|
10
|
+
return raw.trim();
|
|
11
|
+
return "<unsectioned>";
|
|
12
|
+
}
|
|
13
|
+
function pickDefaultSectionId(components) {
|
|
14
|
+
const counts = new Map();
|
|
15
|
+
for (const c of components) {
|
|
16
|
+
const sid = getSectionIdFromProperties(c.properties);
|
|
17
|
+
counts.set(sid, (counts.get(sid) ?? 0) + 1);
|
|
18
|
+
}
|
|
19
|
+
if (counts.size === 0)
|
|
20
|
+
return "<unsectioned>";
|
|
21
|
+
// Prefer a concrete section over the synthetic "<unsectioned>" bucket.
|
|
22
|
+
const globalCount = counts.get("global") ?? 0;
|
|
23
|
+
let bestSectionId = "<unsectioned>";
|
|
24
|
+
let bestCount = -1;
|
|
25
|
+
for (const [sid, count] of counts.entries()) {
|
|
26
|
+
if (sid === "<unsectioned>")
|
|
27
|
+
continue;
|
|
28
|
+
// When we have a shared/global bucket, don't pick it for the injected
|
|
29
|
+
// Application/User nodes unless it's the only available section.
|
|
30
|
+
if (sid === "global")
|
|
31
|
+
continue;
|
|
32
|
+
if (count > bestCount) {
|
|
33
|
+
bestCount = count;
|
|
34
|
+
bestSectionId = sid;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
if (bestCount >= 0)
|
|
38
|
+
return bestSectionId;
|
|
39
|
+
if (globalCount > 0)
|
|
40
|
+
return "global";
|
|
41
|
+
return "<unsectioned>";
|
|
42
|
+
}
|
|
43
|
+
function pickSectionRoleForSectionId(components, sectionId) {
|
|
44
|
+
// Prefer an existing role from components that already carry section metadata.
|
|
45
|
+
for (const c of components) {
|
|
46
|
+
if (getSectionIdFromProperties(c.properties) !== sectionId)
|
|
47
|
+
continue;
|
|
48
|
+
const rawRole = c.properties?.section_role;
|
|
49
|
+
if (typeof rawRole === "string" && rawRole.trim())
|
|
50
|
+
return rawRole.trim();
|
|
51
|
+
}
|
|
52
|
+
// Fall back to the convention used by the sectioning layer and tests.
|
|
53
|
+
return sectionId === "root" ? "root" : "service";
|
|
54
|
+
}
|
|
55
|
+
function getSectionLabelFromProperties(properties) {
|
|
56
|
+
const raw = properties?.section_label;
|
|
57
|
+
if (typeof raw === "string" && raw.trim())
|
|
58
|
+
return raw.trim();
|
|
59
|
+
return undefined;
|
|
60
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
/**
|
|
3
|
+
* Picks a single Terraform `provider.*` third_party node to act as the cloud
|
|
4
|
+
* control-plane hub (User → provider → resources) when there is no app asset.
|
|
5
|
+
*/
|
|
6
|
+
export declare function findTerraformPrimaryProviderHub(components: DetectedComponent[], sectionId?: string): DetectedComponent | undefined;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.findTerraformPrimaryProviderHub = findTerraformPrimaryProviderHub;
|
|
4
|
+
const PRIMARY_PROVIDER_LOCAL_NAMES = [
|
|
5
|
+
"aws",
|
|
6
|
+
"azurerm",
|
|
7
|
+
"google",
|
|
8
|
+
"google-beta",
|
|
9
|
+
];
|
|
10
|
+
/**
|
|
11
|
+
* Picks a single Terraform `provider.*` third_party node to act as the cloud
|
|
12
|
+
* control-plane hub (User → provider → resources) when there is no app asset.
|
|
13
|
+
*/
|
|
14
|
+
function findTerraformPrimaryProviderHub(components, sectionId) {
|
|
15
|
+
let pool = components.filter((c) => c.type === "third_party" &&
|
|
16
|
+
typeof c.properties?.terraform_address === "string" &&
|
|
17
|
+
c.properties.terraform_address.startsWith("provider."));
|
|
18
|
+
if (sectionId && sectionId.trim()) {
|
|
19
|
+
pool = pool.filter((c) => String(c.properties?.section_id ?? "") === sectionId);
|
|
20
|
+
if (pool.length === 0)
|
|
21
|
+
return undefined;
|
|
22
|
+
}
|
|
23
|
+
if (pool.length === 0)
|
|
24
|
+
return undefined;
|
|
25
|
+
const byLocal = new Map();
|
|
26
|
+
for (const p of pool) {
|
|
27
|
+
const addr = String(p.properties?.terraform_address ?? "");
|
|
28
|
+
const local = addr.replace(/^provider\./, "").trim();
|
|
29
|
+
if (local)
|
|
30
|
+
byLocal.set(local, p);
|
|
31
|
+
}
|
|
32
|
+
for (const name of PRIMARY_PROVIDER_LOCAL_NAMES) {
|
|
33
|
+
const hit = byLocal.get(name);
|
|
34
|
+
if (hit)
|
|
35
|
+
return hit;
|
|
36
|
+
}
|
|
37
|
+
return [...pool].sort((a, b) => String(a.properties?.terraform_address ?? "").localeCompare(String(b.properties?.terraform_address ?? "")))[0];
|
|
38
|
+
}
|