@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,180 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const file_system_1 = require("../../../src/ingest/file-system");
|
|
10
|
+
describe("ingest/file-system - DP-P0-CLI-101", () => {
|
|
11
|
+
const fixtureRoot = path_1.default.resolve(__dirname, "../../fixtures/ingest-basic");
|
|
12
|
+
it("applies default excluded directories and .gitignore rules", async () => {
|
|
13
|
+
const files = await (0, file_system_1.ingestFileSystem)(fixtureRoot);
|
|
14
|
+
const paths = files.map((f) => f.path);
|
|
15
|
+
const excludedDirNames = [
|
|
16
|
+
"node_modules",
|
|
17
|
+
".git",
|
|
18
|
+
"dist",
|
|
19
|
+
"build",
|
|
20
|
+
".next",
|
|
21
|
+
"out",
|
|
22
|
+
"coverage",
|
|
23
|
+
".vscode",
|
|
24
|
+
".idea",
|
|
25
|
+
];
|
|
26
|
+
for (const p of paths) {
|
|
27
|
+
for (const dirName of excludedDirNames) {
|
|
28
|
+
expect(p).not.toContain(`${dirName}/`);
|
|
29
|
+
expect(p).not.toContain(`/${dirName}`);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
// .gitignore at root should ignore ignored.ts and temp/**
|
|
33
|
+
expect(paths).not.toContain("ignored.ts");
|
|
34
|
+
expect(paths.some((p) => p.startsWith("temp/"))).toBe(false);
|
|
35
|
+
// .gitignore in src should ignore ignored-in-src.ts
|
|
36
|
+
expect(paths).not.toContain("src/ignored-in-src.ts");
|
|
37
|
+
// Normal files under non-excluded directories should still be present
|
|
38
|
+
expect(paths).toContain("src/index.ts");
|
|
39
|
+
expect(paths).toContain("src/app.jsx");
|
|
40
|
+
expect(paths).toContain("config/app.yaml");
|
|
41
|
+
expect(paths).toContain("data/sample.json");
|
|
42
|
+
});
|
|
43
|
+
it("maps extensions to FileLanguage and skips unsupported ones", async () => {
|
|
44
|
+
const files = await (0, file_system_1.ingestFileSystem)(fixtureRoot);
|
|
45
|
+
const byPath = new Map(files.map((f) => [f.path, f]));
|
|
46
|
+
expect(byPath.get("src/index.ts")?.language).toBe("typescript");
|
|
47
|
+
expect(byPath.get("src/app.jsx")?.language).toBe("javascript");
|
|
48
|
+
expect(byPath.get("config/app.yaml")?.language).toBe("yaml");
|
|
49
|
+
expect(byPath.get("data/sample.json")?.language).toBe("json");
|
|
50
|
+
// Python files should be detected as python
|
|
51
|
+
const pyFile = byPath.get("scripts/example.py");
|
|
52
|
+
if (pyFile) {
|
|
53
|
+
expect(pyFile.language).toBe("python");
|
|
54
|
+
}
|
|
55
|
+
// Unsupported extension (.md) should not be included
|
|
56
|
+
expect(byPath.has("README.md")).toBe(false);
|
|
57
|
+
});
|
|
58
|
+
it("populates content and size for included files", async () => {
|
|
59
|
+
const files = await (0, file_system_1.ingestFileSystem)(fixtureRoot);
|
|
60
|
+
const file = files.find((f) => f.path === "src/index.ts");
|
|
61
|
+
expect(file).toBeDefined();
|
|
62
|
+
expect(file?.content.length).toBeGreaterThan(0);
|
|
63
|
+
expect(file?.size).toBeGreaterThan(0);
|
|
64
|
+
});
|
|
65
|
+
it("skips files that exceed maxFileSizeBytes", async () => {
|
|
66
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-ingest-"));
|
|
67
|
+
const warnings = [];
|
|
68
|
+
try {
|
|
69
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "small.ts"), "x", "utf8");
|
|
70
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "big.ts"), "a".repeat(20), "utf8");
|
|
71
|
+
const files = await (0, file_system_1.ingestFileSystem)(tempRoot, {
|
|
72
|
+
maxFileSizeBytes: 10,
|
|
73
|
+
maxFileCount: 100,
|
|
74
|
+
maxTotalBytes: 10_000,
|
|
75
|
+
onWarning: (w) => warnings.push(w),
|
|
76
|
+
});
|
|
77
|
+
const paths = files.map((f) => f.path);
|
|
78
|
+
expect(paths).toContain("small.ts");
|
|
79
|
+
expect(paths).not.toContain("big.ts");
|
|
80
|
+
expect(warnings.some((w) => w.includes("exceeds max file size"))).toBe(true);
|
|
81
|
+
}
|
|
82
|
+
finally {
|
|
83
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
it("stops ingest when maxFileCount is reached", async () => {
|
|
87
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-ingest-"));
|
|
88
|
+
const warnings = [];
|
|
89
|
+
try {
|
|
90
|
+
for (let i = 0; i < 10; i += 1) {
|
|
91
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, `f${i}.ts`), `console.log(${i});`, "utf8");
|
|
92
|
+
}
|
|
93
|
+
const files = await (0, file_system_1.ingestFileSystem)(tempRoot, {
|
|
94
|
+
maxFileSizeBytes: 10_000,
|
|
95
|
+
maxFileCount: 3,
|
|
96
|
+
maxTotalBytes: 10_000_000,
|
|
97
|
+
onWarning: (w) => warnings.push(w),
|
|
98
|
+
});
|
|
99
|
+
expect(files).toHaveLength(3);
|
|
100
|
+
expect(warnings.some((w) => w.includes("max file count") && w.includes("Stopped"))).toBe(true);
|
|
101
|
+
}
|
|
102
|
+
finally {
|
|
103
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
it("maps .tf and .tfvars to terraform language", async () => {
|
|
107
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-ingest-tf-"));
|
|
108
|
+
try {
|
|
109
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "main.tf"), 'resource "null_resource" "x" {}\n', "utf8");
|
|
110
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "prod.auto.tfvars"), 'region = "us-east-1"\n', "utf8");
|
|
111
|
+
const files = await (0, file_system_1.ingestFileSystem)(tempRoot);
|
|
112
|
+
const byName = new Map(files.map((f) => [f.name, f]));
|
|
113
|
+
expect(byName.get("main.tf")?.language).toBe("terraform");
|
|
114
|
+
expect(byName.get("prod.auto.tfvars")?.language).toBe("terraform");
|
|
115
|
+
}
|
|
116
|
+
finally {
|
|
117
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
describe("ingest/file-system - DP-P0-CLI-105", () => {
|
|
122
|
+
const FIXTURE_ROOT = path_1.default.join(__dirname, "../../fixtures/typescript-basic");
|
|
123
|
+
it("returns FileInfo[] for TypeScript files with correct metadata", async () => {
|
|
124
|
+
const files = await (0, file_system_1.ingestFileSystem)(FIXTURE_ROOT);
|
|
125
|
+
const tsFiles = files.filter((f) => f.language === "typescript");
|
|
126
|
+
const paths = tsFiles.map((f) => f.path).sort();
|
|
127
|
+
expect(tsFiles.length).toBeGreaterThanOrEqual(3);
|
|
128
|
+
expect(paths).toContain("server.ts");
|
|
129
|
+
expect(paths).toContain("db.ts");
|
|
130
|
+
expect(paths).toContain("external-api.ts");
|
|
131
|
+
for (const file of tsFiles) {
|
|
132
|
+
expect(file.name.endsWith(".ts")).toBe(true);
|
|
133
|
+
expect(file.size).toBeGreaterThan(0);
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
it("applies default excluded directories such as node_modules", async () => {
|
|
137
|
+
const files = await (0, file_system_1.ingestFileSystem)(FIXTURE_ROOT);
|
|
138
|
+
const nodeModuleFiles = files.filter((f) => f.path.includes("node_modules/"));
|
|
139
|
+
expect(nodeModuleFiles).toHaveLength(0);
|
|
140
|
+
});
|
|
141
|
+
it("respects .gitignore rules under the fixture root", async () => {
|
|
142
|
+
const files = await (0, file_system_1.ingestFileSystem)(FIXTURE_ROOT);
|
|
143
|
+
const ignored = files.find((f) => f.path.endsWith("ignored.ts"));
|
|
144
|
+
expect(ignored).toBeUndefined();
|
|
145
|
+
});
|
|
146
|
+
it("ingests a single file when the path is a supported source file", async () => {
|
|
147
|
+
const tfPath = path_1.default.resolve(__dirname, "../../fixtures/terraform-basic/main.tf");
|
|
148
|
+
const files = await (0, file_system_1.ingestFileSystem)(tfPath);
|
|
149
|
+
expect(files).toHaveLength(1);
|
|
150
|
+
expect(files[0]?.path).toBe("main.tf");
|
|
151
|
+
expect(files[0]?.language).toBe("terraform");
|
|
152
|
+
expect(files[0]?.content).toContain("resource");
|
|
153
|
+
});
|
|
154
|
+
it("skips a single .env file path with a security warning", async () => {
|
|
155
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-ingest-env-"));
|
|
156
|
+
const warnings = [];
|
|
157
|
+
try {
|
|
158
|
+
const envPath = path_1.default.join(tempRoot, ".env");
|
|
159
|
+
fs_1.default.writeFileSync(envPath, "SECRET=x", "utf8");
|
|
160
|
+
const files = await (0, file_system_1.ingestFileSystem)(envPath, {
|
|
161
|
+
onWarning: (w) => warnings.push(w),
|
|
162
|
+
});
|
|
163
|
+
expect(files).toHaveLength(0);
|
|
164
|
+
expect(warnings.some((w) => w.includes("excluded for security"))).toBe(true);
|
|
165
|
+
}
|
|
166
|
+
finally {
|
|
167
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
it("resolveScanFilesystemEntry maps a file to its parent directory", async () => {
|
|
171
|
+
const tfPath = path_1.default.resolve(__dirname, "../../fixtures/terraform-basic/main.tf");
|
|
172
|
+
const dir = path_1.default.dirname(tfPath);
|
|
173
|
+
const entry = await (0, file_system_1.resolveScanFilesystemEntry)(tfPath);
|
|
174
|
+
expect(entry.scanRootDir).toBe(dir);
|
|
175
|
+
expect(entry.ingestTarget).toBe(tfPath);
|
|
176
|
+
const dirEntry = await (0, file_system_1.resolveScanFilesystemEntry)(dir);
|
|
177
|
+
expect(dirEntry.scanRootDir).toBe(dir);
|
|
178
|
+
expect(dirEntry.ingestTarget).toBe(dir);
|
|
179
|
+
});
|
|
180
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const file_system_1 = require("../../../src/ingest/file-system");
|
|
10
|
+
describe("ingest/gitignore", () => {
|
|
11
|
+
it("skips paths matched by test-project-scan/* at any depth", async () => {
|
|
12
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-gitignore-scan-"));
|
|
13
|
+
try {
|
|
14
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, ".gitignore"), "test-project-scan/*\n", "utf8");
|
|
15
|
+
fs_1.default.mkdirSync(path_1.default.join(tempRoot, "test-project-scan", "app", "src"), {
|
|
16
|
+
recursive: true,
|
|
17
|
+
});
|
|
18
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "test-project-scan", "app", "src", "index.ts"), "export const x = 1;\n", "utf8");
|
|
19
|
+
fs_1.default.mkdirSync(path_1.default.join(tempRoot, "included"), { recursive: true });
|
|
20
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "included", "index.ts"), "export const y = 2;\n", "utf8");
|
|
21
|
+
const files = await (0, file_system_1.ingestFileSystem)(tempRoot);
|
|
22
|
+
const paths = files.map((f) => f.path);
|
|
23
|
+
expect(paths).toContain("included/index.ts");
|
|
24
|
+
expect(paths.some((p) => p.startsWith("test-project-scan/"))).toBe(false);
|
|
25
|
+
}
|
|
26
|
+
finally {
|
|
27
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const mockCaptureException = jest.fn();
|
|
4
|
+
const mockFlush = jest.fn().mockResolvedValue(true);
|
|
5
|
+
const mockWithScope = jest.fn((cb) => {
|
|
6
|
+
cb({
|
|
7
|
+
setTag: jest.fn(),
|
|
8
|
+
setExtra: jest.fn(),
|
|
9
|
+
setExtras: jest.fn(),
|
|
10
|
+
});
|
|
11
|
+
});
|
|
12
|
+
const mockInit = jest.fn();
|
|
13
|
+
jest.mock("@sentry/node", () => ({
|
|
14
|
+
init: mockInit,
|
|
15
|
+
captureException: mockCaptureException,
|
|
16
|
+
flush: mockFlush,
|
|
17
|
+
withScope: mockWithScope,
|
|
18
|
+
}));
|
|
19
|
+
const scan_sentry_1 = require("../../../src/observability/scan-sentry");
|
|
20
|
+
describe("scan-sentry", () => {
|
|
21
|
+
const originalEnv = process.env;
|
|
22
|
+
beforeEach(() => {
|
|
23
|
+
jest.clearAllMocks();
|
|
24
|
+
(0, scan_sentry_1.resetCliSentryForTests)();
|
|
25
|
+
process.env = { ...originalEnv };
|
|
26
|
+
delete process.env.SCAN_SENTRY_ENABLED;
|
|
27
|
+
delete process.env.SENTRY_DSN;
|
|
28
|
+
delete process.env.SENTRY_ENVIRONMENT;
|
|
29
|
+
});
|
|
30
|
+
afterAll(() => {
|
|
31
|
+
process.env = originalEnv;
|
|
32
|
+
(0, scan_sentry_1.resetCliSentryForTests)();
|
|
33
|
+
});
|
|
34
|
+
it("reports scan errors with cli tags when enabled", async () => {
|
|
35
|
+
process.env.SENTRY_DSN = "https://example@sentry.io/1";
|
|
36
|
+
await (0, scan_sentry_1.reportScanCliError)({
|
|
37
|
+
error: new Error("scan blew up"),
|
|
38
|
+
scanRoot: "/tmp/proj",
|
|
39
|
+
jobId: "job-1",
|
|
40
|
+
aiMode: "byok",
|
|
41
|
+
aiProvider: "openai",
|
|
42
|
+
failurePhase: "scan_pipeline",
|
|
43
|
+
failureCode: "scan_errors",
|
|
44
|
+
});
|
|
45
|
+
expect(mockInit).toHaveBeenCalled();
|
|
46
|
+
expect(mockCaptureException).toHaveBeenCalledWith(expect.any(Error));
|
|
47
|
+
expect(mockFlush).toHaveBeenCalled();
|
|
48
|
+
});
|
|
49
|
+
it("is a no-op when SCAN_SENTRY_ENABLED=false", async () => {
|
|
50
|
+
process.env.SCAN_SENTRY_ENABLED = "false";
|
|
51
|
+
process.env.SENTRY_DSN = "https://example@sentry.io/1";
|
|
52
|
+
await (0, scan_sentry_1.reportScanCliError)({ error: new Error("ignored") });
|
|
53
|
+
expect(mockInit).not.toHaveBeenCalled();
|
|
54
|
+
expect(mockCaptureException).not.toHaveBeenCalled();
|
|
55
|
+
});
|
|
56
|
+
it("flushCliSentry does nothing when never initialized", async () => {
|
|
57
|
+
await (0, scan_sentry_1.flushCliSentry)();
|
|
58
|
+
expect(mockFlush).not.toHaveBeenCalled();
|
|
59
|
+
});
|
|
60
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const scan_exclusions_1 = require("../../../src/patterns/scan-exclusions");
|
|
10
|
+
const file_system_1 = require("../../../src/ingest/file-system");
|
|
11
|
+
describe("patterns/scan-exclusions", () => {
|
|
12
|
+
it("skips __stories__ and storybook-static directory names", () => {
|
|
13
|
+
expect((0, scan_exclusions_1.shouldSkipDirectoryName)("__stories__")).toBe(true);
|
|
14
|
+
expect((0, scan_exclusions_1.shouldSkipDirectoryName)("storybook-static")).toBe(true);
|
|
15
|
+
expect((0, scan_exclusions_1.shouldSkipDirectoryName)("__tests__")).toBe(true);
|
|
16
|
+
expect((0, scan_exclusions_1.shouldSkipDirectoryName)("src")).toBe(false);
|
|
17
|
+
});
|
|
18
|
+
it("skips .storybook as a hidden directory", () => {
|
|
19
|
+
expect((0, scan_exclusions_1.shouldSkipDirectoryName)(".storybook")).toBe(true);
|
|
20
|
+
});
|
|
21
|
+
it("excludes Storybook story files via default file globs", async () => {
|
|
22
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-stories-"));
|
|
23
|
+
try {
|
|
24
|
+
fs_1.default.mkdirSync(path_1.default.join(tempRoot, "src"), { recursive: true });
|
|
25
|
+
fs_1.default.mkdirSync(path_1.default.join(tempRoot, "__stories__"), { recursive: true });
|
|
26
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "src", "app.ts"), "export {};\n", "utf8");
|
|
27
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "Button.stories.tsx"), "export default {};\n", "utf8");
|
|
28
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "__stories__", "Demo.stories.tsx"), "export default {};\n", "utf8");
|
|
29
|
+
const files = await (0, file_system_1.ingestFileSystem)(tempRoot, {
|
|
30
|
+
excludePaths: [...scan_exclusions_1.DEFAULT_EXCLUDED_FILE_GLOBS],
|
|
31
|
+
maxFileCount: 100,
|
|
32
|
+
});
|
|
33
|
+
const paths = files.map((f) => f.path);
|
|
34
|
+
expect(paths).toContain("src/app.ts");
|
|
35
|
+
expect(paths).not.toContain("Button.stories.tsx");
|
|
36
|
+
expect(paths.some((p) => p.includes("__stories__"))).toBe(false);
|
|
37
|
+
}
|
|
38
|
+
finally {
|
|
39
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
it("skips __stories__ directories even without explicit file globs", async () => {
|
|
43
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-stories-dir-"));
|
|
44
|
+
try {
|
|
45
|
+
fs_1.default.mkdirSync(path_1.default.join(tempRoot, "src"), { recursive: true });
|
|
46
|
+
fs_1.default.mkdirSync(path_1.default.join(tempRoot, "__stories__"), { recursive: true });
|
|
47
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "src", "app.ts"), "export {};\n", "utf8");
|
|
48
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "__stories__", "only-in-stories.ts"), "export {};\n", "utf8");
|
|
49
|
+
const files = await (0, file_system_1.ingestFileSystem)(tempRoot, { maxFileCount: 100 });
|
|
50
|
+
const paths = files.map((f) => f.path);
|
|
51
|
+
expect(paths).toContain("src/app.ts");
|
|
52
|
+
expect(paths.some((p) => p.includes("__stories__"))).toBe(false);
|
|
53
|
+
}
|
|
54
|
+
finally {
|
|
55
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const ai_orchestrator_options_1 = require("../../../src/core/pipeline/ai-orchestrator-options");
|
|
4
|
+
describe("buildAgentOrchestratorOptions", () => {
|
|
5
|
+
it("forces providerConcurrency=1 for platform-billed scans", () => {
|
|
6
|
+
const config = {
|
|
7
|
+
enableAiInference: true,
|
|
8
|
+
workspaceApiKey: "dp_test_key",
|
|
9
|
+
cliQuotaJobId: "job-1",
|
|
10
|
+
aiProviderConcurrency: 4,
|
|
11
|
+
};
|
|
12
|
+
const options = (0, ai_orchestrator_options_1.buildAgentOrchestratorOptions)(config, {
|
|
13
|
+
llmEnabled: true,
|
|
14
|
+
skipStructuralHeuristics: false,
|
|
15
|
+
});
|
|
16
|
+
expect(options.platformProxy).toBeDefined();
|
|
17
|
+
expect(options.providerConcurrency).toBe(1);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const dataparade_api_base_url_1 = require("../../../src/platform-api/dataparade-api-base-url");
|
|
4
|
+
describe("getDataparadeApiBaseUrl", () => {
|
|
5
|
+
it("defaults to production AWS API when unset", () => {
|
|
6
|
+
expect((0, dataparade_api_base_url_1.getDataparadeApiBaseUrl)({})).toBe(dataparade_api_base_url_1.DEFAULT_DATAPARADE_API_BASE_URL);
|
|
7
|
+
});
|
|
8
|
+
it("prefers DATAPARADE_API_BASE_URL over legacy DATAPARADE_API_URL", () => {
|
|
9
|
+
expect((0, dataparade_api_base_url_1.getDataparadeApiBaseUrl)({
|
|
10
|
+
DATAPARADE_API_BASE_URL: "http://localhost:3000/",
|
|
11
|
+
DATAPARADE_API_URL: "https://other.example.com",
|
|
12
|
+
})).toBe("http://localhost:3000");
|
|
13
|
+
});
|
|
14
|
+
it("strips trailing slash", () => {
|
|
15
|
+
expect((0, dataparade_api_base_url_1.getDataparadeApiBaseUrl)({
|
|
16
|
+
DATAPARADE_API_URL: "https://api.example.com/",
|
|
17
|
+
})).toBe("https://api.example.com");
|
|
18
|
+
});
|
|
19
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const fs = __importStar(require("fs"));
|
|
37
|
+
const os = __importStar(require("os"));
|
|
38
|
+
const path = __importStar(require("path"));
|
|
39
|
+
const estimate_scan_footprint_1 = require("../../../src/platform-api/estimate-scan-footprint");
|
|
40
|
+
describe("estimateScanFootprint", () => {
|
|
41
|
+
it("counts files and bytes under scan root", async () => {
|
|
42
|
+
const root = await fs.promises.mkdtemp(path.join(os.tmpdir(), "dp-footprint-"));
|
|
43
|
+
await fs.promises.writeFile(path.join(root, "a.ts"), "hello");
|
|
44
|
+
await fs.promises.mkdir(path.join(root, "node_modules"), { recursive: true });
|
|
45
|
+
await fs.promises.writeFile(path.join(root, "node_modules", "skip.js"), "ignored");
|
|
46
|
+
const footprint = await (0, estimate_scan_footprint_1.estimateScanFootprint)(root);
|
|
47
|
+
expect(footprint.fileCount).toBeGreaterThanOrEqual(1);
|
|
48
|
+
expect(footprint.bytesIngested).toBeGreaterThanOrEqual(5);
|
|
49
|
+
});
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const langsmith_tracing_1 = require("../../../src/tracing/langsmith-tracing");
|
|
4
|
+
describe("tracing/langsmith-tracing", () => {
|
|
5
|
+
const originalEnv = process.env;
|
|
6
|
+
beforeEach(() => {
|
|
7
|
+
process.env = { ...originalEnv };
|
|
8
|
+
delete process.env.LANGSMITH_API_KEY;
|
|
9
|
+
delete process.env.LANGCHAIN_API_KEY;
|
|
10
|
+
delete process.env.LANGCHAIN_TRACING_V2;
|
|
11
|
+
delete process.env.LANGSMITH_TRACING;
|
|
12
|
+
});
|
|
13
|
+
afterAll(() => {
|
|
14
|
+
process.env = originalEnv;
|
|
15
|
+
});
|
|
16
|
+
it("isLangSmithTracingEnabled requires key and tracing flag", () => {
|
|
17
|
+
expect((0, langsmith_tracing_1.isLangSmithTracingEnabled)()).toBe(false);
|
|
18
|
+
process.env.LANGSMITH_API_KEY = "test-key";
|
|
19
|
+
expect((0, langsmith_tracing_1.isLangSmithTracingEnabled)()).toBe(false);
|
|
20
|
+
process.env.LANGCHAIN_TRACING_V2 = "true";
|
|
21
|
+
expect((0, langsmith_tracing_1.isLangSmithTracingEnabled)()).toBe(true);
|
|
22
|
+
});
|
|
23
|
+
it("buildLangSmithScanTraceSummary omits full component payloads", () => {
|
|
24
|
+
const result = {
|
|
25
|
+
files: [],
|
|
26
|
+
findings: [{ pattern: "x", name: "n", confidence: 1, properties: {} }],
|
|
27
|
+
scanResult: {
|
|
28
|
+
components: [
|
|
29
|
+
{
|
|
30
|
+
id: "cmp_1",
|
|
31
|
+
name: "Payments API",
|
|
32
|
+
type: "asset",
|
|
33
|
+
confidence: 0.9,
|
|
34
|
+
detectedFrom: [],
|
|
35
|
+
sourceLocations: [],
|
|
36
|
+
properties: { section_id: "packages/server" },
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
dataFlows: [],
|
|
40
|
+
filesScanned: 42,
|
|
41
|
+
filesSkipped: 1,
|
|
42
|
+
totalLines: 100,
|
|
43
|
+
scanDurationMs: 500,
|
|
44
|
+
warnings: ["w1"],
|
|
45
|
+
errors: [],
|
|
46
|
+
aiInferenceSummary: {
|
|
47
|
+
ran: true,
|
|
48
|
+
candidatesConsidered: 3,
|
|
49
|
+
proposalsGenerated: 2,
|
|
50
|
+
proposalsApplied: 1,
|
|
51
|
+
proposalsRejected: 1,
|
|
52
|
+
proposalsGeneratedHeuristic: 1,
|
|
53
|
+
proposalsAppliedHeuristic: 1,
|
|
54
|
+
proposalsGeneratedProvider: 1,
|
|
55
|
+
proposalsAppliedProvider: 0,
|
|
56
|
+
providerCalls: 1,
|
|
57
|
+
inputTokens: 10,
|
|
58
|
+
outputTokens: 5,
|
|
59
|
+
totalTokens: 15,
|
|
60
|
+
aiProvider: "mock",
|
|
61
|
+
aiModel: "heuristic",
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
const summary = (0, langsmith_tracing_1.buildLangSmithScanTraceSummary)(result);
|
|
66
|
+
expect(summary.filesScanned).toBe(42);
|
|
67
|
+
expect(summary.componentCount).toBe(1);
|
|
68
|
+
expect(summary.findingCount).toBe(1);
|
|
69
|
+
expect(summary.sectionIds).toEqual(["packages/server"]);
|
|
70
|
+
expect(summary).not.toHaveProperty("components");
|
|
71
|
+
expect(summary.aiInference.proposalsGenerated).toBe(2);
|
|
72
|
+
});
|
|
73
|
+
it("buildLangSmithInferencePipelineTraceSummary summarizes pipeline output", () => {
|
|
74
|
+
const summary = (0, langsmith_tracing_1.buildLangSmithInferencePipelineTraceSummary)({
|
|
75
|
+
candidates: [{ id: "c1" }],
|
|
76
|
+
plan: { queues: [], droppedCandidates: [] },
|
|
77
|
+
proposals: [{ id: "p1", proposal: {} }],
|
|
78
|
+
mergeResult: {
|
|
79
|
+
components: [],
|
|
80
|
+
dataFlows: [],
|
|
81
|
+
appliedProposalIds: ["p1"],
|
|
82
|
+
rejectedProposalIds: [],
|
|
83
|
+
provenanceByTarget: {},
|
|
84
|
+
},
|
|
85
|
+
usageSummary: {
|
|
86
|
+
providerCalls: 2,
|
|
87
|
+
inputTokens: 100,
|
|
88
|
+
outputTokens: 50,
|
|
89
|
+
totalTokens: 150,
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
expect(summary.candidateCount).toBe(1);
|
|
93
|
+
expect(summary.proposalCount).toBe(1);
|
|
94
|
+
expect(summary.appliedProposalCount).toBe(1);
|
|
95
|
+
expect(summary.usageSummary).toEqual(expect.objectContaining({ providerCalls: 2, totalTokens: 150 }));
|
|
96
|
+
});
|
|
97
|
+
it("buildLangSmithAiInferenceTraceSummary copies summary counters", () => {
|
|
98
|
+
const summary = (0, langsmith_tracing_1.buildLangSmithAiInferenceTraceSummary)({
|
|
99
|
+
ran: true,
|
|
100
|
+
candidatesConsidered: 5,
|
|
101
|
+
proposalsGenerated: 4,
|
|
102
|
+
proposalsApplied: 2,
|
|
103
|
+
proposalsRejected: 2,
|
|
104
|
+
proposalsGeneratedHeuristic: 2,
|
|
105
|
+
proposalsAppliedHeuristic: 1,
|
|
106
|
+
proposalsGeneratedProvider: 2,
|
|
107
|
+
proposalsAppliedProvider: 1,
|
|
108
|
+
providerCalls: 2,
|
|
109
|
+
inputTokens: 20,
|
|
110
|
+
outputTokens: 10,
|
|
111
|
+
totalTokens: 30,
|
|
112
|
+
aiProvider: "openai",
|
|
113
|
+
aiModel: "gpt-4",
|
|
114
|
+
});
|
|
115
|
+
expect(summary.proposalsGenerated).toBe(4);
|
|
116
|
+
expect(summary.aiProvider).toBe("openai");
|
|
117
|
+
});
|
|
118
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dataparade/cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "dataPARADE CLI — scan codebases for privacy and security data flows",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public",
|
|
7
|
+
"registry": "https://registry.npmjs.org/"
|
|
8
|
+
},
|
|
9
|
+
"license": "GPL-3.0-or-later",
|
|
10
|
+
"author": "DataParade",
|
|
11
|
+
"homepage": "https://github.com/DataParade-io/dataparade-cli#readme",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/DataParade-io/dataparade-cli.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/DataParade-io/dataparade-cli/issues"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=20"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"dataparade",
|
|
24
|
+
"privacy",
|
|
25
|
+
"data-flow",
|
|
26
|
+
"security",
|
|
27
|
+
"cli",
|
|
28
|
+
"scanner"
|
|
29
|
+
],
|
|
30
|
+
"private": false,
|
|
31
|
+
"main": "dist/src/index.js",
|
|
32
|
+
"types": "dist/src/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/src/index.d.ts",
|
|
36
|
+
"default": "./dist/src/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./ai-providers": {
|
|
39
|
+
"types": "./dist/src/ai-enrichment/providers/index.d.ts",
|
|
40
|
+
"default": "./dist/src/ai-enrichment/providers/index.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"bin": {
|
|
44
|
+
"@dataparade/cli": "dist/bin/cli.js"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"generate:terraform-provider-hints": "node scripts/generate-terraform-provider-hints.mjs",
|
|
48
|
+
"generate:aws-terraform-hints": "node scripts/generate-aws-terraform-hints.mjs",
|
|
49
|
+
"generate:azure-terraform-hints": "node scripts/generate-terraform-provider-hints.mjs --azure-only",
|
|
50
|
+
"generate:kubernetes-terraform-hints": "node scripts/generate-terraform-provider-hints.mjs --kubernetes-only",
|
|
51
|
+
"build": "pnpm exec tsc -p tsconfig.json",
|
|
52
|
+
"prepublishOnly": "pnpm run build && pnpm run test",
|
|
53
|
+
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
54
|
+
"pretest": "pnpm run build",
|
|
55
|
+
"test": "jest",
|
|
56
|
+
"scan": "node dist/bin/cli.js scan",
|
|
57
|
+
"eval:models": "pnpm exec node dist/src/evals/run-model-matrix.js"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@sentry/node": "^10.38.0",
|
|
61
|
+
"dotenv": "^16.4.7",
|
|
62
|
+
"langsmith": "^0.3.14",
|
|
63
|
+
"commander": "^12.1.0",
|
|
64
|
+
"yaml": "^2.8.2",
|
|
65
|
+
"zod": "^4.3.5"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@eslint/js": "^9.18.0",
|
|
69
|
+
"@types/jest": "^29.5.14",
|
|
70
|
+
"@types/node": "^22.0.0",
|
|
71
|
+
"eslint": "^9.18.0",
|
|
72
|
+
"globals": "^15.14.0",
|
|
73
|
+
"jest": "^29.7.0",
|
|
74
|
+
"ts-jest": "^29.2.5",
|
|
75
|
+
"typescript": "^5.7.3",
|
|
76
|
+
"typescript-eslint": "^8.20.0"
|
|
77
|
+
},
|
|
78
|
+
"files": [
|
|
79
|
+
"dist",
|
|
80
|
+
"LICENSE",
|
|
81
|
+
"README.md",
|
|
82
|
+
"package.json"
|
|
83
|
+
]
|
|
84
|
+
}
|