@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,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const platform_proxy_provider_1 = require("../../../src/ai-enrichment/providers/platform-proxy-provider");
|
|
4
|
+
describe("PlatformProxyProvider", () => {
|
|
5
|
+
const originalFetch = global.fetch;
|
|
6
|
+
afterEach(() => {
|
|
7
|
+
global.fetch = originalFetch;
|
|
8
|
+
});
|
|
9
|
+
it("submits a task and polls until completed", async () => {
|
|
10
|
+
const calls = [];
|
|
11
|
+
global.fetch = jest.fn(async (input, init) => {
|
|
12
|
+
const url = String(input);
|
|
13
|
+
const method = init?.method ?? "GET";
|
|
14
|
+
calls.push({ url, method });
|
|
15
|
+
if (url.endsWith("/api/scans/cli/ai/infer/tasks") && method === "POST") {
|
|
16
|
+
return new Response(JSON.stringify({
|
|
17
|
+
tasks: [{ taskId: "t-1", status: "pending" }],
|
|
18
|
+
}), { status: 202 });
|
|
19
|
+
}
|
|
20
|
+
if (url.includes("/api/scans/cli/ai/infer/tasks?") && method === "GET") {
|
|
21
|
+
const done = calls.filter((c) => c.method === "GET").length >= 2;
|
|
22
|
+
return new Response(JSON.stringify({
|
|
23
|
+
tasks: [
|
|
24
|
+
{
|
|
25
|
+
taskId: "t-1",
|
|
26
|
+
status: done ? "completed" : "running",
|
|
27
|
+
proposals: [{ kind: "setProperties", candidateType: "component" }],
|
|
28
|
+
usage: { inputTokens: 1, outputTokens: 2, totalTokens: 3 },
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
}), { status: 200 });
|
|
32
|
+
}
|
|
33
|
+
return new Response("not found", { status: 404 });
|
|
34
|
+
});
|
|
35
|
+
const provider = new platform_proxy_provider_1.PlatformProxyProvider({
|
|
36
|
+
apiBaseUrl: "https://api.example.com",
|
|
37
|
+
workspaceApiKey: "dp_test",
|
|
38
|
+
jobId: "job-1",
|
|
39
|
+
pollIntervalMs: 1,
|
|
40
|
+
pollTimeoutMs: 5000,
|
|
41
|
+
});
|
|
42
|
+
const result = await provider.infer({
|
|
43
|
+
prompt: "test",
|
|
44
|
+
model: "gpt-4o-mini",
|
|
45
|
+
});
|
|
46
|
+
expect(result.proposals).toHaveLength(1);
|
|
47
|
+
expect(result.usage?.totalTokens).toBe(3);
|
|
48
|
+
expect(calls.some((c) => c.method === "POST")).toBe(true);
|
|
49
|
+
expect(calls.filter((c) => c.method === "GET").length).toBeGreaterThanOrEqual(1);
|
|
50
|
+
});
|
|
51
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const provider_contract_1 = require("../../../src/ai-enrichment/providers/provider-contract");
|
|
4
|
+
describe("strictParseAndNormalizeProposals / propertyEvidence", () => {
|
|
5
|
+
const defaults = {
|
|
6
|
+
provider: "openai",
|
|
7
|
+
model: "gpt-4o-mini",
|
|
8
|
+
agent: "propertyAgent",
|
|
9
|
+
};
|
|
10
|
+
const basePatch = {
|
|
11
|
+
kind: "component_patch",
|
|
12
|
+
targetComponentId: "c1",
|
|
13
|
+
candidateType: "third_party",
|
|
14
|
+
setProperties: { flag: true },
|
|
15
|
+
confidence: { score: 0.9, band: "high" },
|
|
16
|
+
propertyEvidence: {
|
|
17
|
+
flag: [
|
|
18
|
+
{
|
|
19
|
+
filePath: "a.ts",
|
|
20
|
+
startLine: 1,
|
|
21
|
+
endLine: 1,
|
|
22
|
+
reason: "literal true in source",
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
it("clamps line range to excerpt length instead of dropping the property", () => {
|
|
28
|
+
const raw = {
|
|
29
|
+
proposals: [
|
|
30
|
+
{
|
|
31
|
+
...basePatch,
|
|
32
|
+
propertyEvidence: {
|
|
33
|
+
flag: [
|
|
34
|
+
{
|
|
35
|
+
filePath: "a.ts",
|
|
36
|
+
startLine: 1,
|
|
37
|
+
endLine: 99,
|
|
38
|
+
reason: "model overshot endLine",
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
};
|
|
45
|
+
const userPrompt = JSON.stringify({
|
|
46
|
+
relevantFileContents: { "a.ts": "only one line" },
|
|
47
|
+
componentContext: {
|
|
48
|
+
c1: {
|
|
49
|
+
detectedFrom: [{ filePath: "a.ts", pattern: "p" }],
|
|
50
|
+
sourceLocations: [],
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
});
|
|
54
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)(raw, defaults, {
|
|
55
|
+
debugLabel: "test",
|
|
56
|
+
userPrompt,
|
|
57
|
+
});
|
|
58
|
+
expect(out).toHaveLength(1);
|
|
59
|
+
if (out[0]?.kind === "component_patch") {
|
|
60
|
+
expect(out[0].propertyEvidence?.flag?.[0]?.endLine).toBe(1);
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
it("keeps a property when line range fits the excerpt", () => {
|
|
64
|
+
const raw = { proposals: [basePatch] };
|
|
65
|
+
const userPrompt = JSON.stringify({
|
|
66
|
+
relevantFileContents: { "a.ts": "only one line" },
|
|
67
|
+
componentContext: {
|
|
68
|
+
c1: {
|
|
69
|
+
detectedFrom: [{ filePath: "a.ts", pattern: "p" }],
|
|
70
|
+
sourceLocations: [],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)(raw, defaults, {
|
|
75
|
+
debugLabel: "test",
|
|
76
|
+
userPrompt,
|
|
77
|
+
});
|
|
78
|
+
expect(out).toHaveLength(1);
|
|
79
|
+
if (out[0]?.kind === "component_patch") {
|
|
80
|
+
expect(out[0].setProperties.flag).toBe(true);
|
|
81
|
+
expect(out[0].propertyEvidence?.flag).toHaveLength(1);
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
it("accepts evidence file basename when it matches an excerpt/component path basename", () => {
|
|
85
|
+
const raw = { proposals: [basePatch] };
|
|
86
|
+
const userPrompt = JSON.stringify({
|
|
87
|
+
relevantFileContents: { "backend/lambdas/create-db/index.js": "line1\nline2\n" },
|
|
88
|
+
componentContext: {
|
|
89
|
+
c1: {
|
|
90
|
+
detectedFrom: [
|
|
91
|
+
{ filePath: "backend/lambdas/create-db/index.js", pattern: "p" },
|
|
92
|
+
],
|
|
93
|
+
sourceLocations: [],
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
});
|
|
97
|
+
const patch = {
|
|
98
|
+
...basePatch,
|
|
99
|
+
propertyEvidence: {
|
|
100
|
+
flag: [
|
|
101
|
+
{
|
|
102
|
+
filePath: "index.js",
|
|
103
|
+
startLine: 1,
|
|
104
|
+
endLine: 2,
|
|
105
|
+
reason: "basename only",
|
|
106
|
+
},
|
|
107
|
+
],
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)({ proposals: [patch] }, defaults, {
|
|
111
|
+
debugLabel: "test",
|
|
112
|
+
userPrompt,
|
|
113
|
+
});
|
|
114
|
+
expect(out).toHaveLength(1);
|
|
115
|
+
});
|
|
116
|
+
it("drops a property when filePath is not in excerpt or component paths", () => {
|
|
117
|
+
const raw = { proposals: [basePatch] };
|
|
118
|
+
const userPrompt = JSON.stringify({
|
|
119
|
+
relevantFileContents: { "allowed.ts": "x" },
|
|
120
|
+
componentContext: {
|
|
121
|
+
c1: {
|
|
122
|
+
detectedFrom: [{ filePath: "allowed.ts", pattern: "p" }],
|
|
123
|
+
sourceLocations: [],
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
});
|
|
127
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)(raw, defaults, {
|
|
128
|
+
debugLabel: "test",
|
|
129
|
+
userPrompt,
|
|
130
|
+
});
|
|
131
|
+
expect(out).toHaveLength(0);
|
|
132
|
+
});
|
|
133
|
+
it("buildProposalsValidationContext returns null on non-JSON", () => {
|
|
134
|
+
expect((0, provider_contract_1.buildProposalsValidationContext)("not json")).toBeNull();
|
|
135
|
+
});
|
|
136
|
+
it("coerces object-shaped proposals into an array before validation", () => {
|
|
137
|
+
const raw = {
|
|
138
|
+
proposals: {
|
|
139
|
+
"0": basePatch,
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
const userPrompt = JSON.stringify({
|
|
143
|
+
relevantFileContents: { "a.ts": "only one line" },
|
|
144
|
+
componentContext: {
|
|
145
|
+
c1: {
|
|
146
|
+
detectedFrom: [{ filePath: "a.ts", pattern: "p" }],
|
|
147
|
+
sourceLocations: [],
|
|
148
|
+
},
|
|
149
|
+
},
|
|
150
|
+
});
|
|
151
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)(raw, defaults, {
|
|
152
|
+
debugLabel: "test",
|
|
153
|
+
userPrompt,
|
|
154
|
+
});
|
|
155
|
+
expect(out).toHaveLength(1);
|
|
156
|
+
if (out[0]?.kind === "component_patch") {
|
|
157
|
+
expect(out[0].targetComponentId).toBe("c1");
|
|
158
|
+
expect(out[0].setProperties.flag).toBe(true);
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
it("coerces propertyEvidence object entries into evidence arrays", () => {
|
|
162
|
+
const raw = {
|
|
163
|
+
proposals: [
|
|
164
|
+
{
|
|
165
|
+
...basePatch,
|
|
166
|
+
propertyEvidence: {
|
|
167
|
+
flag: {
|
|
168
|
+
filePath: "a.ts",
|
|
169
|
+
startLine: 1,
|
|
170
|
+
endLine: 1,
|
|
171
|
+
reason: "single object instead of array",
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
};
|
|
177
|
+
const userPrompt = JSON.stringify({
|
|
178
|
+
relevantFileContents: { "a.ts": "only one line" },
|
|
179
|
+
componentContext: {
|
|
180
|
+
c1: {
|
|
181
|
+
detectedFrom: [{ filePath: "a.ts", pattern: "p" }],
|
|
182
|
+
sourceLocations: [],
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
});
|
|
186
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)(raw, defaults, {
|
|
187
|
+
debugLabel: "test",
|
|
188
|
+
userPrompt,
|
|
189
|
+
});
|
|
190
|
+
expect(out).toHaveLength(1);
|
|
191
|
+
if (out[0]?.kind === "component_patch") {
|
|
192
|
+
expect(out[0].propertyEvidence?.flag).toHaveLength(1);
|
|
193
|
+
expect(out[0].propertyEvidence?.flag?.[0]?.reason).toContain("single object");
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
it("normalizes third-party data categories and derives cloud_provider for UI compatibility", () => {
|
|
197
|
+
const raw = {
|
|
198
|
+
proposals: [
|
|
199
|
+
{
|
|
200
|
+
kind: "component_patch",
|
|
201
|
+
targetComponentId: "c1",
|
|
202
|
+
candidateType: "third_party",
|
|
203
|
+
setProperties: {
|
|
204
|
+
data_categories_received: ["document_files", "document_metadata"],
|
|
205
|
+
processing_purpose: ["document_processing"],
|
|
206
|
+
cloud_services_used: ["aws", "storage"],
|
|
207
|
+
},
|
|
208
|
+
confidence: { score: 0.9, band: "high" },
|
|
209
|
+
propertyEvidence: {
|
|
210
|
+
data_categories_received: [
|
|
211
|
+
{ filePath: "a.ts", startLine: 1, endLine: 1, reason: "docs mention files" },
|
|
212
|
+
],
|
|
213
|
+
processing_purpose: [
|
|
214
|
+
{ filePath: "a.ts", startLine: 1, endLine: 1, reason: "service purpose" },
|
|
215
|
+
],
|
|
216
|
+
cloud_services_used: [
|
|
217
|
+
{ filePath: "a.ts", startLine: 1, endLine: 1, reason: "aws sdk usage" },
|
|
218
|
+
],
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
};
|
|
223
|
+
const userPrompt = JSON.stringify({
|
|
224
|
+
relevantFileContents: { "a.ts": "line" },
|
|
225
|
+
componentContext: {
|
|
226
|
+
c1: {
|
|
227
|
+
detectedFrom: [{ filePath: "a.ts", pattern: "p" }],
|
|
228
|
+
sourceLocations: [],
|
|
229
|
+
},
|
|
230
|
+
},
|
|
231
|
+
});
|
|
232
|
+
const out = (0, provider_contract_1.strictParseAndNormalizeProposals)(raw, defaults, {
|
|
233
|
+
debugLabel: "test",
|
|
234
|
+
userPrompt,
|
|
235
|
+
});
|
|
236
|
+
expect(out).toHaveLength(1);
|
|
237
|
+
if (out[0]?.kind === "component_patch") {
|
|
238
|
+
expect(out[0].setProperties.data_categories_received).toEqual(["other"]);
|
|
239
|
+
expect(out[0].setProperties.processing_purpose).toEqual(["service_provision"]);
|
|
240
|
+
expect(out[0].setProperties.cloud_provider).toBe("AWS");
|
|
241
|
+
expect(out[0].propertyEvidence?.cloud_provider).toHaveLength(1);
|
|
242
|
+
}
|
|
243
|
+
});
|
|
244
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const provider_json_parse_1 = require("../../../src/ai-enrichment/providers/provider-json-parse");
|
|
4
|
+
describe("provider-json-parse", () => {
|
|
5
|
+
it("stripJsonFences removes markdown fence", () => {
|
|
6
|
+
expect((0, provider_json_parse_1.stripJsonFences)('```json\n{"a":1}\n```')).toBe('{"a":1}');
|
|
7
|
+
});
|
|
8
|
+
it("extractBalancedJsonObject respects strings and nesting", () => {
|
|
9
|
+
const inner = '{"k":"}"}';
|
|
10
|
+
const full = ` ${inner} trailing junk`;
|
|
11
|
+
const start = full.indexOf("{");
|
|
12
|
+
expect((0, provider_json_parse_1.extractBalancedJsonObject)(full, start)).toBe(inner);
|
|
13
|
+
});
|
|
14
|
+
it("parseProviderJsonContent parses trailing non-JSON after object", () => {
|
|
15
|
+
const r = (0, provider_json_parse_1.parseProviderJsonContent)('{"proposals":[]}\n\nextra');
|
|
16
|
+
expect(r.ok).toBe(true);
|
|
17
|
+
if (r.ok)
|
|
18
|
+
expect(r.value).toEqual({ proposals: [] });
|
|
19
|
+
});
|
|
20
|
+
it("parseProviderJsonContent fails cleanly on truncated object", () => {
|
|
21
|
+
const r = (0, provider_json_parse_1.parseProviderJsonContent)('{"proposals":[{"k":');
|
|
22
|
+
expect(r.ok).toBe(false);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const provider_output_token_budget_1 = require("../../../src/ai-enrichment/providers/provider-output-token-budget");
|
|
4
|
+
describe("clampStructuredJsonCompletionTokens", () => {
|
|
5
|
+
it("defaults to 8192 when undefined", () => {
|
|
6
|
+
expect((0, provider_output_token_budget_1.clampStructuredJsonCompletionTokens)(undefined)).toBe(8192);
|
|
7
|
+
});
|
|
8
|
+
it("floors small values to 4096", () => {
|
|
9
|
+
expect((0, provider_output_token_budget_1.clampStructuredJsonCompletionTokens)(256)).toBe(4096);
|
|
10
|
+
expect((0, provider_output_token_budget_1.clampStructuredJsonCompletionTokens)(4096)).toBe(4096);
|
|
11
|
+
});
|
|
12
|
+
it("caps at 16384", () => {
|
|
13
|
+
expect((0, provider_output_token_budget_1.clampStructuredJsonCompletionTokens)(100_000)).toBe(16_384);
|
|
14
|
+
});
|
|
15
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const provider_prompt_1 = require("../../../src/ai-enrichment/provider-prompt");
|
|
4
|
+
describe("buildFileExcerptsForQueue env safety", () => {
|
|
5
|
+
it("does not include .env file content in excerpts", () => {
|
|
6
|
+
const components = [
|
|
7
|
+
{
|
|
8
|
+
id: "cmp_1",
|
|
9
|
+
name: "api",
|
|
10
|
+
type: "asset",
|
|
11
|
+
confidence: 0.9,
|
|
12
|
+
detectedFrom: [
|
|
13
|
+
{
|
|
14
|
+
pattern: "file",
|
|
15
|
+
sourceLocation: { filePath: "src/api.ts", startLine: 1, endLine: 5 },
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
sourceLocations: [{ filePath: "src/api.ts", startLine: 1, endLine: 5 }],
|
|
19
|
+
properties: {},
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
const files = [
|
|
23
|
+
{
|
|
24
|
+
path: "src/api.ts",
|
|
25
|
+
name: "api.ts",
|
|
26
|
+
content: "export const x = 1;",
|
|
27
|
+
language: "typescript",
|
|
28
|
+
size: 20,
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
path: ".env",
|
|
32
|
+
name: ".env",
|
|
33
|
+
content: "API_KEY=super-secret",
|
|
34
|
+
language: "env",
|
|
35
|
+
size: 18,
|
|
36
|
+
},
|
|
37
|
+
];
|
|
38
|
+
const queue = [
|
|
39
|
+
{
|
|
40
|
+
id: "c1",
|
|
41
|
+
candidateType: "node_property",
|
|
42
|
+
priority: 1,
|
|
43
|
+
componentId: "cmp_1",
|
|
44
|
+
missingFields: [],
|
|
45
|
+
rationale: "test",
|
|
46
|
+
hints: [],
|
|
47
|
+
},
|
|
48
|
+
];
|
|
49
|
+
const excerpts = (0, provider_prompt_1.buildFileExcerptsForQueue)(files, queue, components, []);
|
|
50
|
+
expect(excerpts["src/api.ts"]).toContain("export const");
|
|
51
|
+
expect(excerpts[".env"]).toBeUndefined();
|
|
52
|
+
expect(JSON.stringify(excerpts)).not.toContain("super-secret");
|
|
53
|
+
});
|
|
54
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const provider_prompt_1 = require("../../../src/ai-enrichment/provider-prompt");
|
|
4
|
+
describe("provider-prompt", () => {
|
|
5
|
+
it("slimComponentForLlm keeps detectedFrom paths and splits sparse keys", () => {
|
|
6
|
+
const c = {
|
|
7
|
+
id: "tp_1",
|
|
8
|
+
name: "Acme API",
|
|
9
|
+
type: "third_party",
|
|
10
|
+
confidence: 0.9,
|
|
11
|
+
detectedFrom: [
|
|
12
|
+
{
|
|
13
|
+
pattern: "import",
|
|
14
|
+
sourceLocation: {
|
|
15
|
+
filePath: "src/lib/acme.ts",
|
|
16
|
+
startLine: 3,
|
|
17
|
+
endLine: 3,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
sourceLocations: [
|
|
22
|
+
{ filePath: "src/lib/acme.ts", startLine: 1, endLine: 20 },
|
|
23
|
+
],
|
|
24
|
+
properties: {
|
|
25
|
+
section_id: "backend",
|
|
26
|
+
vendor: null,
|
|
27
|
+
integration_method: [],
|
|
28
|
+
inference_status: undefined,
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
const slim = (0, provider_prompt_1.slimComponentForLlm)(c);
|
|
32
|
+
expect(slim.detectedFrom).toHaveLength(1);
|
|
33
|
+
expect(slim.detectedFrom[0]?.filePath).toBe("src/lib/acme.ts");
|
|
34
|
+
expect(slim.propertiesSet).toEqual({ section_id: "backend" });
|
|
35
|
+
expect(slim.sparsePropertyKeys).toContain("vendor");
|
|
36
|
+
expect(slim.sparsePropertyKeys).not.toContain("inference_status");
|
|
37
|
+
});
|
|
38
|
+
it("buildProviderPromptPayload includes componentContext for queued componentIds", () => {
|
|
39
|
+
const components = [
|
|
40
|
+
{
|
|
41
|
+
id: "tp_1",
|
|
42
|
+
name: "X",
|
|
43
|
+
type: "third_party",
|
|
44
|
+
confidence: 0.8,
|
|
45
|
+
detectedFrom: [],
|
|
46
|
+
sourceLocations: [],
|
|
47
|
+
properties: {},
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
const payload = (0, provider_prompt_1.buildProviderPromptPayload)({
|
|
51
|
+
agent: "tpAgent",
|
|
52
|
+
queue: [
|
|
53
|
+
{
|
|
54
|
+
id: "c1",
|
|
55
|
+
candidateType: "third_party",
|
|
56
|
+
priority: 90,
|
|
57
|
+
componentId: "tp_1",
|
|
58
|
+
missingFields: [],
|
|
59
|
+
rationale: "test",
|
|
60
|
+
hints: [],
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
components,
|
|
64
|
+
dataFlows: [],
|
|
65
|
+
});
|
|
66
|
+
expect(payload.agent).toBe("tpAgent");
|
|
67
|
+
expect(payload.componentContext.tp_1).toBeDefined();
|
|
68
|
+
expect(payload.componentContext.tp_1.name).toBe("X");
|
|
69
|
+
expect(String(payload.instructions)).toContain("targetComponentId` must be exactly one of canonicalComponentIds");
|
|
70
|
+
expect(payload.canonicalComponentIds).toEqual(["tp_1"]);
|
|
71
|
+
});
|
|
72
|
+
it("collectReferencedPathsForQueue includes flow endpoint component paths", () => {
|
|
73
|
+
const components = [
|
|
74
|
+
{
|
|
75
|
+
id: "a",
|
|
76
|
+
name: "A",
|
|
77
|
+
type: "asset",
|
|
78
|
+
confidence: 0.9,
|
|
79
|
+
detectedFrom: [],
|
|
80
|
+
sourceLocations: [{ filePath: "src/a.ts", startLine: 1, endLine: 2 }],
|
|
81
|
+
properties: {},
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
id: "b",
|
|
85
|
+
name: "B",
|
|
86
|
+
type: "asset",
|
|
87
|
+
confidence: 0.9,
|
|
88
|
+
detectedFrom: [],
|
|
89
|
+
sourceLocations: [{ filePath: "src/b.ts", startLine: 1, endLine: 2 }],
|
|
90
|
+
properties: {},
|
|
91
|
+
},
|
|
92
|
+
];
|
|
93
|
+
const dataFlows = [
|
|
94
|
+
{
|
|
95
|
+
id: "f1",
|
|
96
|
+
sourceComponentId: "a",
|
|
97
|
+
targetComponentId: "b",
|
|
98
|
+
type: "api_call",
|
|
99
|
+
confidence: 0.8,
|
|
100
|
+
},
|
|
101
|
+
];
|
|
102
|
+
const paths = (0, provider_prompt_1.collectReferencedPathsForQueue)([
|
|
103
|
+
{
|
|
104
|
+
id: "c1",
|
|
105
|
+
candidateType: "flow_direction",
|
|
106
|
+
priority: 1,
|
|
107
|
+
flowId: "f1",
|
|
108
|
+
missingFields: [],
|
|
109
|
+
rationale: "",
|
|
110
|
+
hints: [],
|
|
111
|
+
},
|
|
112
|
+
], components, dataFlows);
|
|
113
|
+
expect(paths).toEqual(["src/a.ts", "src/b.ts"]);
|
|
114
|
+
});
|
|
115
|
+
it("buildFileExcerptsForQueue maps scan files to referenced paths", () => {
|
|
116
|
+
const components = [
|
|
117
|
+
{
|
|
118
|
+
id: "tp_1",
|
|
119
|
+
name: "X",
|
|
120
|
+
type: "third_party",
|
|
121
|
+
confidence: 0.8,
|
|
122
|
+
detectedFrom: [
|
|
123
|
+
{
|
|
124
|
+
pattern: "external_api_call",
|
|
125
|
+
sourceLocation: {
|
|
126
|
+
filePath: "pkg/handler.ts",
|
|
127
|
+
startLine: 10,
|
|
128
|
+
endLine: 12,
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
sourceLocations: [],
|
|
133
|
+
properties: {},
|
|
134
|
+
},
|
|
135
|
+
];
|
|
136
|
+
const files = [
|
|
137
|
+
{
|
|
138
|
+
path: "pkg/handler.ts",
|
|
139
|
+
name: "handler.ts",
|
|
140
|
+
content: "export const x = 1;\n",
|
|
141
|
+
language: "typescript",
|
|
142
|
+
size: 20,
|
|
143
|
+
},
|
|
144
|
+
];
|
|
145
|
+
const excerpts = (0, provider_prompt_1.buildFileExcerptsForQueue)(files, [
|
|
146
|
+
{
|
|
147
|
+
id: "c1",
|
|
148
|
+
candidateType: "third_party",
|
|
149
|
+
priority: 1,
|
|
150
|
+
componentId: "tp_1",
|
|
151
|
+
missingFields: [],
|
|
152
|
+
rationale: "",
|
|
153
|
+
hints: [],
|
|
154
|
+
},
|
|
155
|
+
], components, []);
|
|
156
|
+
expect(excerpts["pkg/handler.ts"]).toContain("export const x");
|
|
157
|
+
});
|
|
158
|
+
it("buildProviderPromptPayload adds relevantFileContents when files match queue", () => {
|
|
159
|
+
const components = [
|
|
160
|
+
{
|
|
161
|
+
id: "tp_1",
|
|
162
|
+
name: "X",
|
|
163
|
+
type: "third_party",
|
|
164
|
+
confidence: 0.8,
|
|
165
|
+
detectedFrom: [
|
|
166
|
+
{
|
|
167
|
+
pattern: "external_api_call",
|
|
168
|
+
sourceLocation: {
|
|
169
|
+
filePath: "lib/x.ts",
|
|
170
|
+
startLine: 1,
|
|
171
|
+
endLine: 1,
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
sourceLocations: [],
|
|
176
|
+
properties: {},
|
|
177
|
+
},
|
|
178
|
+
];
|
|
179
|
+
const payload = (0, provider_prompt_1.buildProviderPromptPayload)({
|
|
180
|
+
agent: "tpAgent",
|
|
181
|
+
queue: [
|
|
182
|
+
{
|
|
183
|
+
id: "c1",
|
|
184
|
+
candidateType: "third_party",
|
|
185
|
+
priority: 1,
|
|
186
|
+
componentId: "tp_1",
|
|
187
|
+
missingFields: [],
|
|
188
|
+
rationale: "",
|
|
189
|
+
hints: [],
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
components,
|
|
193
|
+
dataFlows: [],
|
|
194
|
+
files: [
|
|
195
|
+
{
|
|
196
|
+
path: "lib/x.ts",
|
|
197
|
+
name: "x.ts",
|
|
198
|
+
content: "void 0;",
|
|
199
|
+
language: "typescript",
|
|
200
|
+
size: 6,
|
|
201
|
+
},
|
|
202
|
+
],
|
|
203
|
+
});
|
|
204
|
+
expect(payload.relevantFileContents?.["lib/x.ts"]).toBe("void 0;");
|
|
205
|
+
});
|
|
206
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const provider_topology_shared_1 = require("../../../src/ai-enrichment/provider-topology-shared");
|
|
4
|
+
describe("provider topology — AWS Terraform resource_type rules", () => {
|
|
5
|
+
const awsS3Node = {
|
|
6
|
+
key: "s3",
|
|
7
|
+
usageSignals: ["s3", "bucket"],
|
|
8
|
+
terraformResourceTypes: [],
|
|
9
|
+
terraformResourceTypePrefixes: ["aws_s3_"],
|
|
10
|
+
};
|
|
11
|
+
const awsLambdaNode = {
|
|
12
|
+
key: "lambda",
|
|
13
|
+
usageSignals: ["lambda", "function"],
|
|
14
|
+
terraformResourceTypes: [],
|
|
15
|
+
terraformResourceTypePrefixes: ["aws_lambda_"],
|
|
16
|
+
};
|
|
17
|
+
it("matches HashiCorp aws_s3_* types by prefix only", () => {
|
|
18
|
+
expect((0, provider_topology_shared_1.terraformResourceTypeMatchesTopologyRule)("aws_s3_bucket", [], ["aws_s3_"])).toBe(true);
|
|
19
|
+
expect((0, provider_topology_shared_1.terraformResourceTypeMatchesTopologyRule)("aws_s3_bucket_acl", [], ["aws_s3_"])).toBe(true);
|
|
20
|
+
expect((0, provider_topology_shared_1.terraformResourceTypeMatchesTopologyRule)("aws_lambda_function", [], ["aws_s3_"])).toBe(false);
|
|
21
|
+
});
|
|
22
|
+
it("matches aws_db_instance by exact type", () => {
|
|
23
|
+
expect((0, provider_topology_shared_1.terraformResourceTypeMatchesTopologyRule)("aws_db_instance", ["aws_db_instance"], [])).toBe(true);
|
|
24
|
+
expect((0, provider_topology_shared_1.terraformResourceTypeMatchesTopologyRule)("aws_db_subnet_group", ["aws_db_instance"], [])).toBe(false);
|
|
25
|
+
});
|
|
26
|
+
it("does not treat lambda_* block naming as Lambda when resource_type is S3", () => {
|
|
27
|
+
const bucket = {
|
|
28
|
+
id: "b1",
|
|
29
|
+
name: "lambda_bucket",
|
|
30
|
+
type: "asset",
|
|
31
|
+
confidence: 1,
|
|
32
|
+
detectedFrom: [],
|
|
33
|
+
sourceLocations: [],
|
|
34
|
+
properties: {
|
|
35
|
+
resource_type: "aws_s3_bucket",
|
|
36
|
+
block_name: "lambda_bucket",
|
|
37
|
+
terraform_address: "aws_s3_bucket.lambda_bucket",
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
expect((0, provider_topology_shared_1.terraformAssetMatchesManagedServiceTopologyRule)(bucket, awsLambdaNode)).toBe(false);
|
|
41
|
+
expect((0, provider_topology_shared_1.terraformAssetMatchesManagedServiceTopologyRule)(bucket, awsS3Node)).toBe(true);
|
|
42
|
+
});
|
|
43
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|