@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 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const application_injection_1 = require("../../../src/classifier/application-injection");
|
|
4
|
+
const enhance_1 = require("../../../src/classifier/enhance");
|
|
5
|
+
function makeComponent(overrides) {
|
|
6
|
+
return {
|
|
7
|
+
id: overrides.id,
|
|
8
|
+
name: overrides.name,
|
|
9
|
+
type: overrides.type,
|
|
10
|
+
subType: overrides.subType,
|
|
11
|
+
confidence: overrides.confidence ?? 0.9,
|
|
12
|
+
detectedFrom: overrides.detectedFrom ?? [],
|
|
13
|
+
sourceLocations: overrides.sourceLocations ?? [],
|
|
14
|
+
properties: overrides.properties ?? {},
|
|
15
|
+
description: overrides.description,
|
|
16
|
+
dataFlowIds: overrides.dataFlowIds,
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
describe("classifier/enhance - DP-P0-CLI-203", () => {
|
|
20
|
+
it("applies all Engineering, Privacy, and Security property defaults for asset", () => {
|
|
21
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
22
|
+
id: "c1",
|
|
23
|
+
name: "postgres",
|
|
24
|
+
type: "asset",
|
|
25
|
+
subType: "database",
|
|
26
|
+
properties: {},
|
|
27
|
+
}));
|
|
28
|
+
expect(comp.properties.cloud_provider).toBeDefined();
|
|
29
|
+
expect(comp.properties.technology_stack).toBe("postgres");
|
|
30
|
+
expect(comp.properties.data_categories).toEqual([]);
|
|
31
|
+
expect(comp.properties.data_subject_categories).toEqual([]);
|
|
32
|
+
expect(comp.properties.encrypt_at_rest).toBeDefined();
|
|
33
|
+
expect(comp.properties.audit_logging_enabled).toBe(false);
|
|
34
|
+
expect(comp.properties.risk_rating).toBeDefined();
|
|
35
|
+
});
|
|
36
|
+
it("applies all Engineering, Privacy, and Security property defaults for third_party", () => {
|
|
37
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
38
|
+
id: "c1",
|
|
39
|
+
name: "Stripe",
|
|
40
|
+
type: "third_party",
|
|
41
|
+
subType: "payment_processor",
|
|
42
|
+
properties: {},
|
|
43
|
+
}));
|
|
44
|
+
expect(comp.properties.integration_method).toBe("api");
|
|
45
|
+
expect(comp.properties.hosting_type).toBe("saas");
|
|
46
|
+
expect(comp.properties.gdpr_role).toBeDefined();
|
|
47
|
+
expect(comp.properties.compliance_certifications).toEqual([]);
|
|
48
|
+
expect(comp.properties.risk_rating).toBeDefined();
|
|
49
|
+
});
|
|
50
|
+
it("applies all Engineering, Privacy, and Security property defaults for actor", () => {
|
|
51
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
52
|
+
id: "c1",
|
|
53
|
+
name: "Customer",
|
|
54
|
+
type: "actor",
|
|
55
|
+
subType: "customer",
|
|
56
|
+
properties: {},
|
|
57
|
+
}));
|
|
58
|
+
expect(comp.properties.actions).toEqual([]);
|
|
59
|
+
expect(comp.properties.processing_purpose).toEqual([]);
|
|
60
|
+
expect(comp.properties.isDataSubject).toBe(true);
|
|
61
|
+
expect(comp.properties.risk_rating).toBeDefined();
|
|
62
|
+
});
|
|
63
|
+
it("sets technology_stack from properties.databaseType when missing", () => {
|
|
64
|
+
const component = makeComponent({
|
|
65
|
+
id: "cmp_1",
|
|
66
|
+
name: "postgres",
|
|
67
|
+
type: "asset",
|
|
68
|
+
subType: "database",
|
|
69
|
+
properties: { databaseType: "postgres" },
|
|
70
|
+
});
|
|
71
|
+
const result = (0, enhance_1.enhanceComponent)(component);
|
|
72
|
+
expect(result.properties.technology_stack).toBe("postgres");
|
|
73
|
+
});
|
|
74
|
+
it("leaves technology_stack unset when only subType is database (no specific product)", () => {
|
|
75
|
+
const component = makeComponent({
|
|
76
|
+
id: "cmp_1",
|
|
77
|
+
name: "my-db",
|
|
78
|
+
type: "asset",
|
|
79
|
+
subType: "database",
|
|
80
|
+
properties: {},
|
|
81
|
+
});
|
|
82
|
+
const result = (0, enhance_1.enhanceComponent)(component);
|
|
83
|
+
expect(result.properties.technology_stack).toBeNull();
|
|
84
|
+
});
|
|
85
|
+
it("does not overwrite existing technology_stack", () => {
|
|
86
|
+
const component = makeComponent({
|
|
87
|
+
id: "cmp_1",
|
|
88
|
+
name: "db",
|
|
89
|
+
type: "asset",
|
|
90
|
+
subType: "database",
|
|
91
|
+
properties: { technology_stack: "postgres", databaseType: "postgres" },
|
|
92
|
+
});
|
|
93
|
+
const result = (0, enhance_1.enhanceComponent)(component);
|
|
94
|
+
expect(result.properties.technology_stack).toBe("postgres");
|
|
95
|
+
});
|
|
96
|
+
it("sets hosting_type for third_party when not set", () => {
|
|
97
|
+
const component = makeComponent({
|
|
98
|
+
id: "cmp_1",
|
|
99
|
+
name: "Stripe",
|
|
100
|
+
type: "third_party",
|
|
101
|
+
subType: "payment_processor",
|
|
102
|
+
properties: {},
|
|
103
|
+
});
|
|
104
|
+
const result = (0, enhance_1.enhanceComponent)(component);
|
|
105
|
+
expect(result.properties.hosting_type).toBe("saas");
|
|
106
|
+
});
|
|
107
|
+
it("does not overwrite existing hosting_type for third_party", () => {
|
|
108
|
+
const component = makeComponent({
|
|
109
|
+
id: "cmp_1",
|
|
110
|
+
name: "Stripe",
|
|
111
|
+
type: "third_party",
|
|
112
|
+
subType: "payment_processor",
|
|
113
|
+
properties: { hosting_type: "cloud" },
|
|
114
|
+
});
|
|
115
|
+
const result = (0, enhance_1.enhanceComponent)(component);
|
|
116
|
+
expect(result.properties.hosting_type).toBe("cloud");
|
|
117
|
+
});
|
|
118
|
+
it("sets isMainApplication on first api/service asset in enhanceComponents", () => {
|
|
119
|
+
const components = [
|
|
120
|
+
makeComponent({
|
|
121
|
+
id: "cmp_1",
|
|
122
|
+
name: "DB",
|
|
123
|
+
type: "asset",
|
|
124
|
+
subType: "database",
|
|
125
|
+
properties: {},
|
|
126
|
+
}),
|
|
127
|
+
makeComponent({
|
|
128
|
+
id: "cmp_2",
|
|
129
|
+
name: "App API",
|
|
130
|
+
type: "asset",
|
|
131
|
+
subType: "api",
|
|
132
|
+
properties: {},
|
|
133
|
+
}),
|
|
134
|
+
makeComponent({
|
|
135
|
+
id: "cmp_3",
|
|
136
|
+
name: "Other Service",
|
|
137
|
+
type: "asset",
|
|
138
|
+
subType: "service",
|
|
139
|
+
properties: {},
|
|
140
|
+
}),
|
|
141
|
+
];
|
|
142
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
143
|
+
const apiComp = result.find((c) => c.id === "cmp_2");
|
|
144
|
+
const serviceComp = result.find((c) => c.id === "cmp_3");
|
|
145
|
+
expect(apiComp?.properties.isMainApplication).toBe(true);
|
|
146
|
+
expect(serviceComp?.properties.isMainApplication).toBeUndefined();
|
|
147
|
+
});
|
|
148
|
+
it("sets isMainApplication per section_id (not globally) when multiple api/service assets exist", () => {
|
|
149
|
+
const components = [
|
|
150
|
+
makeComponent({
|
|
151
|
+
id: "cmp_1",
|
|
152
|
+
name: "API A",
|
|
153
|
+
type: "asset",
|
|
154
|
+
subType: "api",
|
|
155
|
+
properties: { section_id: "s1" },
|
|
156
|
+
}),
|
|
157
|
+
makeComponent({
|
|
158
|
+
id: "cmp_2",
|
|
159
|
+
name: "API B",
|
|
160
|
+
type: "asset",
|
|
161
|
+
subType: "api",
|
|
162
|
+
properties: { section_id: "s2" },
|
|
163
|
+
}),
|
|
164
|
+
];
|
|
165
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
166
|
+
const withMain = result.filter((c) => c.properties.isMainApplication === true);
|
|
167
|
+
expect(withMain.length).toBe(2);
|
|
168
|
+
expect(withMain.map((c) => c.id).sort()).toEqual(["cmp_1", "cmp_2"]);
|
|
169
|
+
});
|
|
170
|
+
it("prefers merged HTTP API (express) over outbound https URL api assets", () => {
|
|
171
|
+
const components = [
|
|
172
|
+
makeComponent({
|
|
173
|
+
id: "cmp_http",
|
|
174
|
+
name: "HTTP API",
|
|
175
|
+
type: "asset",
|
|
176
|
+
subType: "api",
|
|
177
|
+
properties: { framework: "express", path: ["/auth"] },
|
|
178
|
+
}),
|
|
179
|
+
makeComponent({
|
|
180
|
+
id: "cmp_vendor",
|
|
181
|
+
name: "https://vendor.example/v1",
|
|
182
|
+
type: "asset",
|
|
183
|
+
subType: "api",
|
|
184
|
+
properties: {
|
|
185
|
+
url: "https://vendor.example/v1",
|
|
186
|
+
client: "fetch",
|
|
187
|
+
},
|
|
188
|
+
}),
|
|
189
|
+
];
|
|
190
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
191
|
+
const main = result.find((c) => c.properties.isMainApplication === true);
|
|
192
|
+
expect(main?.id).toBe("cmp_http");
|
|
193
|
+
});
|
|
194
|
+
it("does not promote Terraform module call shells to isMainApplication", () => {
|
|
195
|
+
const components = [
|
|
196
|
+
makeComponent({
|
|
197
|
+
id: "cmp_mod",
|
|
198
|
+
name: "Module · aurora",
|
|
199
|
+
type: "asset",
|
|
200
|
+
subType: "application",
|
|
201
|
+
properties: {
|
|
202
|
+
section_id: "root",
|
|
203
|
+
terraform_address: "module.aurora",
|
|
204
|
+
},
|
|
205
|
+
}),
|
|
206
|
+
];
|
|
207
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
208
|
+
expect(result[0].properties.isMainApplication).toBeUndefined();
|
|
209
|
+
});
|
|
210
|
+
it("does not promote Terraform VPC networking to isMainApplication", () => {
|
|
211
|
+
const components = [
|
|
212
|
+
makeComponent({
|
|
213
|
+
id: "cmp_vpc",
|
|
214
|
+
name: "main (aws_vpc)",
|
|
215
|
+
type: "asset",
|
|
216
|
+
subType: "application",
|
|
217
|
+
properties: {
|
|
218
|
+
section_id: "root",
|
|
219
|
+
resource_type: "aws_vpc",
|
|
220
|
+
terraform_address: "module.vpc.aws_vpc.main",
|
|
221
|
+
},
|
|
222
|
+
}),
|
|
223
|
+
];
|
|
224
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
225
|
+
expect(result[0].properties.isMainApplication).toBeUndefined();
|
|
226
|
+
});
|
|
227
|
+
it("prefers injected project placeholder over other service assets in the same section", () => {
|
|
228
|
+
const components = [
|
|
229
|
+
makeComponent({
|
|
230
|
+
id: "cmp_ecs",
|
|
231
|
+
name: "API",
|
|
232
|
+
type: "asset",
|
|
233
|
+
subType: "service",
|
|
234
|
+
properties: { section_id: "root" },
|
|
235
|
+
}),
|
|
236
|
+
makeComponent({
|
|
237
|
+
id: "cmp_inj",
|
|
238
|
+
name: "MyProject",
|
|
239
|
+
type: "asset",
|
|
240
|
+
subType: "application",
|
|
241
|
+
properties: {
|
|
242
|
+
section_id: "root",
|
|
243
|
+
sourceContext: application_injection_1.INJECTED_PROJECT_PLACEHOLDER_SOURCE_CONTEXT,
|
|
244
|
+
},
|
|
245
|
+
}),
|
|
246
|
+
];
|
|
247
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
248
|
+
const mains = result.filter((c) => c.properties.isMainApplication === true);
|
|
249
|
+
expect(mains.length).toBe(1);
|
|
250
|
+
expect(mains[0].id).toBe("cmp_inj");
|
|
251
|
+
});
|
|
252
|
+
it("does not set isMainApplication when no api/service asset exists", () => {
|
|
253
|
+
const components = [
|
|
254
|
+
makeComponent({
|
|
255
|
+
id: "cmp_1",
|
|
256
|
+
name: "DB",
|
|
257
|
+
type: "asset",
|
|
258
|
+
subType: "database",
|
|
259
|
+
properties: {},
|
|
260
|
+
}),
|
|
261
|
+
];
|
|
262
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
263
|
+
expect(result[0].properties.isMainApplication).toBeUndefined();
|
|
264
|
+
});
|
|
265
|
+
it("normalizes generic api asset name to API in enhanceComponents", () => {
|
|
266
|
+
const components = [
|
|
267
|
+
makeComponent({
|
|
268
|
+
id: "cmp_1",
|
|
269
|
+
name: "Route Handler",
|
|
270
|
+
type: "asset",
|
|
271
|
+
subType: "api",
|
|
272
|
+
properties: {},
|
|
273
|
+
}),
|
|
274
|
+
];
|
|
275
|
+
const result = (0, enhance_1.enhanceComponents)(components);
|
|
276
|
+
expect(result).toHaveLength(1);
|
|
277
|
+
expect(result[0].name).toBe("API");
|
|
278
|
+
});
|
|
279
|
+
describe("asset: all properties", () => {
|
|
280
|
+
it("sets hosting_type to cloud for api/database assets", () => {
|
|
281
|
+
const apiComp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
282
|
+
id: "c1",
|
|
283
|
+
name: "api",
|
|
284
|
+
type: "asset",
|
|
285
|
+
subType: "api",
|
|
286
|
+
properties: {},
|
|
287
|
+
}));
|
|
288
|
+
const dbComp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
289
|
+
id: "c2",
|
|
290
|
+
name: "db",
|
|
291
|
+
type: "asset",
|
|
292
|
+
subType: "database",
|
|
293
|
+
properties: {},
|
|
294
|
+
}));
|
|
295
|
+
expect(apiComp.properties.hosting_type).toBe("cloud");
|
|
296
|
+
expect(dbComp.properties.hosting_type).toBe("cloud");
|
|
297
|
+
});
|
|
298
|
+
it("sets hosting_type to on_premise for config assets", () => {
|
|
299
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
300
|
+
id: "c1",
|
|
301
|
+
name: "config",
|
|
302
|
+
type: "asset",
|
|
303
|
+
subType: "config",
|
|
304
|
+
properties: {},
|
|
305
|
+
}));
|
|
306
|
+
expect(comp.properties.hosting_type).toBe("on_premise");
|
|
307
|
+
});
|
|
308
|
+
it("sets database_engine from databaseType for database subType", () => {
|
|
309
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
310
|
+
id: "c1",
|
|
311
|
+
name: "pg",
|
|
312
|
+
type: "asset",
|
|
313
|
+
subType: "database",
|
|
314
|
+
properties: { databaseType: "postgres" },
|
|
315
|
+
}));
|
|
316
|
+
expect(comp.properties.database_engine).toBe("Postgres");
|
|
317
|
+
});
|
|
318
|
+
it("sets supported_operations for database and api assets", () => {
|
|
319
|
+
const dbComp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
320
|
+
id: "c1",
|
|
321
|
+
name: "db",
|
|
322
|
+
type: "asset",
|
|
323
|
+
subType: "database",
|
|
324
|
+
properties: {},
|
|
325
|
+
}));
|
|
326
|
+
const apiComp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
327
|
+
id: "c2",
|
|
328
|
+
name: "api",
|
|
329
|
+
type: "asset",
|
|
330
|
+
subType: "api",
|
|
331
|
+
properties: {},
|
|
332
|
+
}));
|
|
333
|
+
expect(dbComp.properties.supported_operations).toEqual([
|
|
334
|
+
"read",
|
|
335
|
+
"write",
|
|
336
|
+
"query",
|
|
337
|
+
]);
|
|
338
|
+
expect(apiComp.properties.supported_operations).toEqual([
|
|
339
|
+
"read",
|
|
340
|
+
"write",
|
|
341
|
+
"query",
|
|
342
|
+
"execute",
|
|
343
|
+
]);
|
|
344
|
+
});
|
|
345
|
+
});
|
|
346
|
+
describe("third_party: all properties", () => {
|
|
347
|
+
it("sets integration_method to api", () => {
|
|
348
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
349
|
+
id: "c1",
|
|
350
|
+
name: "Stripe",
|
|
351
|
+
type: "third_party",
|
|
352
|
+
subType: "payment_processor",
|
|
353
|
+
properties: {},
|
|
354
|
+
}));
|
|
355
|
+
expect(comp.properties.integration_method).toBe("api");
|
|
356
|
+
});
|
|
357
|
+
it("sets vendor from component name (title case)", () => {
|
|
358
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
359
|
+
id: "c1",
|
|
360
|
+
name: "stripe",
|
|
361
|
+
type: "third_party",
|
|
362
|
+
subType: "payment_processor",
|
|
363
|
+
properties: {},
|
|
364
|
+
}));
|
|
365
|
+
expect(comp.properties.vendor).toBe("Stripe");
|
|
366
|
+
});
|
|
367
|
+
it("does not overwrite existing vendor", () => {
|
|
368
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
369
|
+
id: "c1",
|
|
370
|
+
name: "stripe",
|
|
371
|
+
type: "third_party",
|
|
372
|
+
subType: "payment_processor",
|
|
373
|
+
properties: { vendor: "Stripe Inc." },
|
|
374
|
+
}));
|
|
375
|
+
expect(comp.properties.vendor).toBe("Stripe Inc.");
|
|
376
|
+
});
|
|
377
|
+
});
|
|
378
|
+
describe("actor: all properties", () => {
|
|
379
|
+
it("sets isDataSubject to true for customer subType", () => {
|
|
380
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
381
|
+
id: "c1",
|
|
382
|
+
name: "Customer",
|
|
383
|
+
type: "actor",
|
|
384
|
+
subType: "customer",
|
|
385
|
+
properties: {},
|
|
386
|
+
}));
|
|
387
|
+
expect(comp.properties.isDataSubject).toBe(true);
|
|
388
|
+
});
|
|
389
|
+
it("does not set isDataSubject to true for non-customer actor (default remains false)", () => {
|
|
390
|
+
const comp = (0, enhance_1.enhanceComponent)(makeComponent({
|
|
391
|
+
id: "c1",
|
|
392
|
+
name: "Employee",
|
|
393
|
+
type: "actor",
|
|
394
|
+
subType: "employee",
|
|
395
|
+
properties: {},
|
|
396
|
+
}));
|
|
397
|
+
expect(comp.properties.isDataSubject).toBe(false);
|
|
398
|
+
});
|
|
399
|
+
});
|
|
400
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const external_url_third_party_1 = require("../../../src/classifier/external-url-third-party");
|
|
4
|
+
function makeExternalFinding(props, name = "x") {
|
|
5
|
+
return {
|
|
6
|
+
pattern: "external_api_call",
|
|
7
|
+
name,
|
|
8
|
+
confidence: 0.9,
|
|
9
|
+
location: {
|
|
10
|
+
filePath: "svc.js",
|
|
11
|
+
startLine: 1,
|
|
12
|
+
endLine: 1,
|
|
13
|
+
},
|
|
14
|
+
properties: props,
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
describe("classifier/external-url-third-party", () => {
|
|
18
|
+
it("shouldIgnoreExternalHttpUrl ignores placeholders and accepts public hosts", () => {
|
|
19
|
+
expect((0, external_url_third_party_1.shouldIgnoreExternalHttpUrl)(undefined)).toBe(true);
|
|
20
|
+
expect((0, external_url_third_party_1.shouldIgnoreExternalHttpUrl)("https://...")).toBe(true);
|
|
21
|
+
expect((0, external_url_third_party_1.shouldIgnoreExternalHttpUrl)("http://localhost:3000/")).toBe(true);
|
|
22
|
+
expect((0, external_url_third_party_1.shouldIgnoreExternalHttpUrl)("https://api.example.com/v1")).toBe(false);
|
|
23
|
+
});
|
|
24
|
+
it("shouldIgnoreExternalHttpUrl ignores null hostname without throwing", () => {
|
|
25
|
+
const url = new URL("https://api.example.com/v1");
|
|
26
|
+
Object.defineProperty(url, "hostname", { get: () => null });
|
|
27
|
+
const parseSpy = jest.spyOn(globalThis, "URL").mockImplementation(() => url);
|
|
28
|
+
try {
|
|
29
|
+
expect((0, external_url_third_party_1.shouldIgnoreExternalHttpUrl)("https://api.example.com/v1")).toBe(true);
|
|
30
|
+
}
|
|
31
|
+
finally {
|
|
32
|
+
parseSpy.mockRestore();
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
it("defaultServiceNameFromLiteralPublicUrl derives registrable host without YAML", () => {
|
|
36
|
+
expect((0, external_url_third_party_1.defaultServiceNameFromLiteralPublicUrl)("https://api.weirdvendor.example.net/v1")).toBe("example.net");
|
|
37
|
+
expect((0, external_url_third_party_1.defaultServiceNameFromLiteralPublicUrl)("https://clipdrop-api.co/remove-background/v1")).toBe("clipdrop-api.co");
|
|
38
|
+
});
|
|
39
|
+
it("defaultServiceNameFromLiteralPublicUrl returns undefined for placeholder template URLs", () => {
|
|
40
|
+
expect((0, external_url_third_party_1.defaultServiceNameFromLiteralPublicUrl)("https://...")).toBeUndefined();
|
|
41
|
+
expect((0, external_url_third_party_1.inferThirdPartyFromLiteralHttpUrl)(makeExternalFinding({ url: "https://...", client: "fetch" }))).toBeUndefined();
|
|
42
|
+
});
|
|
43
|
+
it("defaultServiceNameFromLiteralPublicUrl returns undefined for env or local URLs", () => {
|
|
44
|
+
expect((0, external_url_third_party_1.defaultServiceNameFromLiteralPublicUrl)("https://x.com${process.env.BASE}")).toBeUndefined();
|
|
45
|
+
expect((0, external_url_third_party_1.defaultServiceNameFromLiteralPublicUrl)("http://localhost:3000/")).toBeUndefined();
|
|
46
|
+
});
|
|
47
|
+
it("urlHostMatchKeys includes hostname and registrable domain", () => {
|
|
48
|
+
const keys = (0, external_url_third_party_1.urlHostMatchKeys)("https://api.thenextleg.io/v2/message/123");
|
|
49
|
+
expect(keys.has("api.thenextleg.io")).toBe(true);
|
|
50
|
+
expect(keys.has("thenextleg.io")).toBe(true);
|
|
51
|
+
});
|
|
52
|
+
it("infers third_party from literal https url property (catalog subType)", () => {
|
|
53
|
+
const out = (0, external_url_third_party_1.inferThirdPartyFromLiteralHttpUrl)(makeExternalFinding({
|
|
54
|
+
url: "https://clipdrop-api.co/remove-background/v1",
|
|
55
|
+
client: "fetch",
|
|
56
|
+
}));
|
|
57
|
+
expect(out?.serviceName).toBe("clipdrop-api.co");
|
|
58
|
+
expect(out?.subType).toBe("ai_provider");
|
|
59
|
+
});
|
|
60
|
+
it("infers ai_provider subType from catalog match on hostname (e.g. OpenAI)", () => {
|
|
61
|
+
const out = (0, external_url_third_party_1.inferThirdPartyFromLiteralHttpUrl)(makeExternalFinding({
|
|
62
|
+
url: "https://api.openai.com/v1/chat/completions",
|
|
63
|
+
client: "fetch",
|
|
64
|
+
}));
|
|
65
|
+
expect(out?.serviceName).toBe("openai.com");
|
|
66
|
+
expect(out?.subType).toBe("ai_provider");
|
|
67
|
+
});
|
|
68
|
+
it("returns undefined when url references process.env", () => {
|
|
69
|
+
expect((0, external_url_third_party_1.inferThirdPartyFromLiteralHttpUrl)(makeExternalFinding({
|
|
70
|
+
url: 'https://api.example.com${process.env.FOO}',
|
|
71
|
+
}))).toBeUndefined();
|
|
72
|
+
});
|
|
73
|
+
it("returns undefined for localhost", () => {
|
|
74
|
+
expect((0, external_url_third_party_1.inferThirdPartyFromLiteralHttpUrl)(makeExternalFinding({ url: "http://localhost:3021/v1" }))).toBeUndefined();
|
|
75
|
+
});
|
|
76
|
+
it("infers saas_service for generic vendor host", () => {
|
|
77
|
+
const out = (0, external_url_third_party_1.inferThirdPartyFromLiteralHttpUrl)(makeExternalFinding({
|
|
78
|
+
url: "https://payments.example-saas.io/v1/charges",
|
|
79
|
+
}));
|
|
80
|
+
expect(out?.serviceName).toBe("example-saas.io");
|
|
81
|
+
expect(out?.subType).toBe("saas_service");
|
|
82
|
+
});
|
|
83
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const classify_1 = require("../../../src/classifier/classify");
|
|
4
|
+
describe("classifier frontend framework grouping", () => {
|
|
5
|
+
it("keeps dependency-manifest frontend framework separate from route API group", () => {
|
|
6
|
+
const findings = [
|
|
7
|
+
{
|
|
8
|
+
pattern: "express_route",
|
|
9
|
+
name: "POST /api/ai-completion",
|
|
10
|
+
confidence: 0.9,
|
|
11
|
+
location: {
|
|
12
|
+
filePath: "dev-server.js",
|
|
13
|
+
startLine: 10,
|
|
14
|
+
endLine: 10,
|
|
15
|
+
},
|
|
16
|
+
properties: {
|
|
17
|
+
framework: "express",
|
|
18
|
+
section_id: "root",
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
pattern: "express_route",
|
|
23
|
+
name: "Frontend Application",
|
|
24
|
+
confidence: 0.75,
|
|
25
|
+
location: {
|
|
26
|
+
filePath: "package.json",
|
|
27
|
+
startLine: 1,
|
|
28
|
+
endLine: 1,
|
|
29
|
+
},
|
|
30
|
+
properties: {
|
|
31
|
+
framework: "react",
|
|
32
|
+
section_id: "root",
|
|
33
|
+
sourceContext: "dependency_manifest",
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
const components = (0, classify_1.classifyRawFindings)(findings);
|
|
38
|
+
const routeApi = components.find((c) => c.name === "HTTP API");
|
|
39
|
+
const frontend = components.find((c) => c.name === "React");
|
|
40
|
+
expect(routeApi).toBeDefined();
|
|
41
|
+
expect(frontend).toBeDefined();
|
|
42
|
+
expect(components.length).toBe(2);
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const component_factory_1 = require("../../../src/classifier/component-factory");
|
|
4
|
+
const enhance_1 = require("../../../src/classifier/enhance");
|
|
5
|
+
function tfResource(address, resourceType, blockName, subType) {
|
|
6
|
+
return {
|
|
7
|
+
pattern: "terraform_resource",
|
|
8
|
+
name: address,
|
|
9
|
+
confidence: 0.9,
|
|
10
|
+
location: { filePath: "main.tf", startLine: 1, endLine: 5 },
|
|
11
|
+
properties: {
|
|
12
|
+
terraform_address: address,
|
|
13
|
+
terraform_block_kind: "resource",
|
|
14
|
+
resource_type: resourceType,
|
|
15
|
+
block_name: blockName,
|
|
16
|
+
componentSubType: subType,
|
|
17
|
+
cloud_provider: "aws",
|
|
18
|
+
section_id: "root",
|
|
19
|
+
section_label: "root",
|
|
20
|
+
terraform_references: [],
|
|
21
|
+
},
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
describe("classifier terraform grouping", () => {
|
|
25
|
+
it("groups each terraform address separately (no merge on normalized labels)", () => {
|
|
26
|
+
const findings = [
|
|
27
|
+
tfResource("aws_s3_bucket.lambda_bucket", "aws_s3_bucket", "lambda_bucket", "storage"),
|
|
28
|
+
tfResource("aws_lambda_function.lambda_bucket", "aws_lambda_function", "lambda_bucket", "function"),
|
|
29
|
+
];
|
|
30
|
+
const components = (0, component_factory_1.classifyRawFindings)(findings);
|
|
31
|
+
expect(components).toHaveLength(2);
|
|
32
|
+
const labels = components.map((c) => c.name).sort();
|
|
33
|
+
expect(labels).toEqual([
|
|
34
|
+
"lambda_bucket (aws_lambda_function)",
|
|
35
|
+
"lambda_bucket (aws_s3_bucket)",
|
|
36
|
+
]);
|
|
37
|
+
});
|
|
38
|
+
it("uses block_name (resource_type) labels so lambda_* bucket names are not confused with Lambda compute", () => {
|
|
39
|
+
const components = (0, component_factory_1.classifyRawFindings)([
|
|
40
|
+
tfResource("aws_s3_bucket.lambda_bucket", "aws_s3_bucket", "lambda_bucket", "storage"),
|
|
41
|
+
]);
|
|
42
|
+
expect(components[0]?.name).toBe("lambda_bucket (aws_s3_bucket)");
|
|
43
|
+
});
|
|
44
|
+
it("classifies terraform_provider findings as third_party cloud providers", () => {
|
|
45
|
+
const components = (0, component_factory_1.classifyRawFindings)([
|
|
46
|
+
{
|
|
47
|
+
pattern: "terraform_provider",
|
|
48
|
+
name: "provider:kubernetes",
|
|
49
|
+
confidence: 0.92,
|
|
50
|
+
location: {
|
|
51
|
+
filePath: "packages/acme/k8s/terraform/main.tf",
|
|
52
|
+
startLine: 4,
|
|
53
|
+
endLine: 6,
|
|
54
|
+
},
|
|
55
|
+
properties: {
|
|
56
|
+
terraform_address: "provider.kubernetes",
|
|
57
|
+
provider_name: "kubernetes",
|
|
58
|
+
serviceName: "Kubernetes",
|
|
59
|
+
section_id: "packages/acme/k8s/terraform",
|
|
60
|
+
section_label: "terraform",
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
]);
|
|
64
|
+
expect(components).toHaveLength(1);
|
|
65
|
+
expect(components[0]?.type).toBe("third_party");
|
|
66
|
+
expect(components[0]?.subType).toBe("cloud_provider");
|
|
67
|
+
expect(components[0]?.name).toBe("Kubernetes");
|
|
68
|
+
expect(components[0]?.properties?.terraform_address).toBe("provider.kubernetes");
|
|
69
|
+
});
|
|
70
|
+
it("drops utility terraform resources (random_pet) from classified components", () => {
|
|
71
|
+
const components = (0, component_factory_1.classifyRawFindings)([
|
|
72
|
+
{
|
|
73
|
+
pattern: "terraform_resource",
|
|
74
|
+
name: "random_pet.lambda_bucket_name",
|
|
75
|
+
confidence: 0.9,
|
|
76
|
+
location: { filePath: "main.tf", startLine: 1, endLine: 3 },
|
|
77
|
+
properties: {
|
|
78
|
+
terraform_address: "random_pet.lambda_bucket_name",
|
|
79
|
+
terraform_block_kind: "resource",
|
|
80
|
+
resource_type: "random_pet",
|
|
81
|
+
block_name: "lambda_bucket_name",
|
|
82
|
+
componentSubType: "application",
|
|
83
|
+
cloud_provider: "terraform",
|
|
84
|
+
section_id: "root",
|
|
85
|
+
section_label: "root",
|
|
86
|
+
terraform_references: [],
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
tfResource("aws_s3_bucket.lambda_bucket", "aws_s3_bucket", "lambda_bucket", "storage"),
|
|
90
|
+
]);
|
|
91
|
+
expect(components).toHaveLength(1);
|
|
92
|
+
expect(components[0]?.properties?.terraform_address).toBe("aws_s3_bucket.lambda_bucket");
|
|
93
|
+
const enhanced = (0, enhance_1.enhanceComponents)(components);
|
|
94
|
+
expect(enhanced.some((c) => c.properties.isMainApplication === true)).toBe(false);
|
|
95
|
+
});
|
|
96
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|