@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,328 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.detectTypeScriptJavaScriptExternalApisFromHttpClients = detectTypeScriptJavaScriptExternalApisFromHttpClients;
|
|
4
|
+
exports.detectTypeScriptRoutesFromConfig = detectTypeScriptRoutesFromConfig;
|
|
5
|
+
exports.detectTypeScriptDatabaseFromConfig = detectTypeScriptDatabaseFromConfig;
|
|
6
|
+
exports.detectTypeScriptAuthFromConfig = detectTypeScriptAuthFromConfig;
|
|
7
|
+
exports.detectTypeScriptEnvAndConfigFromConfig = detectTypeScriptEnvAndConfigFromConfig;
|
|
8
|
+
const external_url_third_party_1 = require("../../classifier/external-url-third-party");
|
|
9
|
+
const helpers_1 = require("./helpers");
|
|
10
|
+
function detectTypeScriptJavaScriptExternalApisFromHttpClients(ctx, config) {
|
|
11
|
+
if ((ctx.language !== "typescript" && ctx.language !== "javascript") ||
|
|
12
|
+
!ctx.includeThirdPartyHttpLinePatterns) {
|
|
13
|
+
return [];
|
|
14
|
+
}
|
|
15
|
+
const content = ctx.file.content ?? "";
|
|
16
|
+
const findings = [];
|
|
17
|
+
const urlHostPatterns = (0, helpers_1.buildThirdPartyUrlHostPatterns)(config);
|
|
18
|
+
for (const client of config.thirdParty.httpClients) {
|
|
19
|
+
for (const regex of client.callRegexes) {
|
|
20
|
+
const httpMatches = (0, helpers_1.findLineMatches)(content, regex);
|
|
21
|
+
for (const { line, match } of httpMatches) {
|
|
22
|
+
const [, clientName, methodMaybe, url] = match;
|
|
23
|
+
if ((0, external_url_third_party_1.shouldIgnoreExternalHttpUrl)(url)) {
|
|
24
|
+
continue;
|
|
25
|
+
}
|
|
26
|
+
const method = typeof methodMaybe === "string"
|
|
27
|
+
? methodMaybe.toUpperCase()
|
|
28
|
+
: undefined;
|
|
29
|
+
const serviceName = (0, helpers_1.inferServiceNameFromUrl)(url, urlHostPatterns) ??
|
|
30
|
+
(0, external_url_third_party_1.defaultServiceNameFromLiteralPublicUrl)(url);
|
|
31
|
+
findings.push({
|
|
32
|
+
pattern: client.patternId,
|
|
33
|
+
name: url,
|
|
34
|
+
confidence: client.confidence,
|
|
35
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
36
|
+
properties: {
|
|
37
|
+
client: clientName,
|
|
38
|
+
url,
|
|
39
|
+
httpMethod: method,
|
|
40
|
+
...(serviceName ? { serviceName } : {}),
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return findings;
|
|
47
|
+
}
|
|
48
|
+
function detectTypeScriptRoutesFromConfig(ctx, config) {
|
|
49
|
+
if ((ctx.language !== "typescript" && ctx.language !== "javascript") ||
|
|
50
|
+
!ctx.normalizedPath) {
|
|
51
|
+
return [];
|
|
52
|
+
}
|
|
53
|
+
const content = ctx.file.content ?? "";
|
|
54
|
+
const findings = [];
|
|
55
|
+
const tsCfg = config.typescript;
|
|
56
|
+
for (const fw of tsCfg.routes.frameworks) {
|
|
57
|
+
const hasFrameworkImport = fw.imports.length === 0
|
|
58
|
+
? false
|
|
59
|
+
: fw.imports.some((mod) => (ctx.imports ?? []).some((imp) => imp.module === mod ||
|
|
60
|
+
imp.module.includes(mod) ||
|
|
61
|
+
imp.names.some((name) => name === mod || name.includes(mod))));
|
|
62
|
+
if (!hasFrameworkImport)
|
|
63
|
+
continue;
|
|
64
|
+
if (fw.id === "express") {
|
|
65
|
+
for (const regex of fw.routeCallRegexes) {
|
|
66
|
+
const matches = (0, helpers_1.findLineMatches)(content, regex);
|
|
67
|
+
for (const { line, match } of matches) {
|
|
68
|
+
const [, , method, path] = match;
|
|
69
|
+
const upperMethod = typeof method === "string" && method.toUpperCase
|
|
70
|
+
? method.toUpperCase()
|
|
71
|
+
: "GET";
|
|
72
|
+
findings.push({
|
|
73
|
+
pattern: fw.patternId,
|
|
74
|
+
name: `${upperMethod} ${path}`,
|
|
75
|
+
confidence: fw.confidence,
|
|
76
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
77
|
+
properties: {
|
|
78
|
+
framework: "express",
|
|
79
|
+
httpMethods: [upperMethod],
|
|
80
|
+
path,
|
|
81
|
+
},
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
else if (fw.id === "nest") {
|
|
87
|
+
for (const regex of fw.controllerDecoratorRegexes) {
|
|
88
|
+
const controllerMatches = (0, helpers_1.findLineMatches)(content, regex);
|
|
89
|
+
for (const { line, match } of controllerMatches) {
|
|
90
|
+
const [, basePath] = match;
|
|
91
|
+
findings.push({
|
|
92
|
+
pattern: fw.patternId,
|
|
93
|
+
name: `NEST_CONTROLLER ${basePath || "/"}`,
|
|
94
|
+
confidence: fw.confidence,
|
|
95
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
96
|
+
properties: {
|
|
97
|
+
framework: "nest",
|
|
98
|
+
httpMethods: [],
|
|
99
|
+
path: basePath || "/",
|
|
100
|
+
},
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
for (const regex of fw.routeDecoratorRegexes) {
|
|
105
|
+
const decoratorMatches = (0, helpers_1.findLineMatches)(content, regex);
|
|
106
|
+
for (const { line, match } of decoratorMatches) {
|
|
107
|
+
const [, method, routePath] = match;
|
|
108
|
+
const upperMethod = typeof method === "string" && method.toUpperCase
|
|
109
|
+
? method.toUpperCase()
|
|
110
|
+
: "GET";
|
|
111
|
+
findings.push({
|
|
112
|
+
pattern: fw.patternId,
|
|
113
|
+
name: `${upperMethod} ${routePath || "/"}`,
|
|
114
|
+
confidence: fw.confidence,
|
|
115
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
116
|
+
properties: {
|
|
117
|
+
framework: "nest",
|
|
118
|
+
httpMethods: [upperMethod],
|
|
119
|
+
path: routePath || "/",
|
|
120
|
+
},
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
const normalizedPath = ctx.normalizedPath.toLowerCase();
|
|
127
|
+
if (normalizedPath.includes("pages/api/") ||
|
|
128
|
+
normalizedPath.includes("/app/") ||
|
|
129
|
+
normalizedPath.endsWith("route.ts") ||
|
|
130
|
+
normalizedPath.endsWith("route.js")) {
|
|
131
|
+
const { regex, confidence } = tsCfg.heuristics.nextRouteHandler;
|
|
132
|
+
const handlerMatches = (0, helpers_1.findLineMatches)(content, regex);
|
|
133
|
+
for (const { line, match } of handlerMatches) {
|
|
134
|
+
findings.push({
|
|
135
|
+
pattern: "express_route",
|
|
136
|
+
name: "Route handler",
|
|
137
|
+
confidence,
|
|
138
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
139
|
+
properties: {
|
|
140
|
+
framework: "next_or_react_route",
|
|
141
|
+
httpMethods: [],
|
|
142
|
+
path: undefined,
|
|
143
|
+
},
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return findings;
|
|
148
|
+
}
|
|
149
|
+
function detectTypeScriptDatabaseFromConfig(ctx, config) {
|
|
150
|
+
if ((ctx.language !== "typescript" && ctx.language !== "javascript") ||
|
|
151
|
+
!ctx.normalizedPath) {
|
|
152
|
+
return [];
|
|
153
|
+
}
|
|
154
|
+
const content = ctx.file.content ?? "";
|
|
155
|
+
const findings = [];
|
|
156
|
+
const tsCfg = config.typescript;
|
|
157
|
+
for (const client of tsCfg.dbClients) {
|
|
158
|
+
const hasImport = client.importModules.some((mod) => (ctx.imports ?? []).some((imp) => imp.module === mod ||
|
|
159
|
+
imp.module.includes(mod) ||
|
|
160
|
+
imp.names.some((name) => name === mod || name.includes(mod))));
|
|
161
|
+
for (const regex of client.creationRegexes) {
|
|
162
|
+
const matches = (0, helpers_1.findLineMatches)(content, regex);
|
|
163
|
+
for (const { line, match } of matches) {
|
|
164
|
+
const matchedSnippet = String(match[0] ?? "").toLowerCase();
|
|
165
|
+
const hasClientHintInSnippet = matchedSnippet.includes(client.id.toLowerCase()) ||
|
|
166
|
+
matchedSnippet.includes(client.databaseType.toLowerCase());
|
|
167
|
+
if (!hasImport && !hasClientHintInSnippet) {
|
|
168
|
+
continue;
|
|
169
|
+
}
|
|
170
|
+
findings.push({
|
|
171
|
+
pattern: client.patternId,
|
|
172
|
+
name: client.id,
|
|
173
|
+
confidence: client.confidence,
|
|
174
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
175
|
+
properties: {
|
|
176
|
+
client: client.id,
|
|
177
|
+
databaseType: client.databaseType,
|
|
178
|
+
},
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
if (hasImport) {
|
|
183
|
+
findings.push({
|
|
184
|
+
pattern: client.patternId,
|
|
185
|
+
name: client.id,
|
|
186
|
+
confidence: Math.max(0.5, client.confidence - 0.2),
|
|
187
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, 1),
|
|
188
|
+
properties: {
|
|
189
|
+
client: client.id,
|
|
190
|
+
databaseType: client.databaseType,
|
|
191
|
+
},
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
const hasAnyDbClientImport = tsCfg.dbClients.some((client) => client.importModules.some((mod) => (ctx.imports ?? []).some((imp) => imp.module === mod ||
|
|
196
|
+
imp.module.includes(mod) ||
|
|
197
|
+
imp.names.some((name) => name === mod || name.includes(mod)))));
|
|
198
|
+
if (hasAnyDbClientImport &&
|
|
199
|
+
tsCfg.heuristics.sqlKeyword.regex.test(content)) {
|
|
200
|
+
findings.push({
|
|
201
|
+
pattern: tsCfg.heuristics.sqlKeyword.patternId,
|
|
202
|
+
name: "sql_query_detected",
|
|
203
|
+
confidence: tsCfg.heuristics.sqlKeyword.confidence,
|
|
204
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, 1),
|
|
205
|
+
properties: { hint: "raw_sql_keyword" },
|
|
206
|
+
});
|
|
207
|
+
}
|
|
208
|
+
return findings;
|
|
209
|
+
}
|
|
210
|
+
function detectTypeScriptAuthFromConfig(ctx, config) {
|
|
211
|
+
if ((ctx.language !== "typescript" && ctx.language !== "javascript") ||
|
|
212
|
+
!ctx.normalizedPath) {
|
|
213
|
+
return [];
|
|
214
|
+
}
|
|
215
|
+
const content = ctx.file.content ?? "";
|
|
216
|
+
const findings = [];
|
|
217
|
+
const tsCfg = config.typescript;
|
|
218
|
+
for (const lib of tsCfg.auth.libraries) {
|
|
219
|
+
const hasLibraryImport = lib.importFragments.some((frag) => (ctx.imports ?? []).some((imp) => imp.module === frag ||
|
|
220
|
+
imp.module.includes(frag) ||
|
|
221
|
+
imp.names.some((name) => name === frag || name.includes(frag))));
|
|
222
|
+
if (!hasLibraryImport)
|
|
223
|
+
continue;
|
|
224
|
+
if (lib.id === "passport") {
|
|
225
|
+
let emittedSpecific = false;
|
|
226
|
+
for (const regex of lib.callRegexes) {
|
|
227
|
+
const passportMatches = (0, helpers_1.findLineMatches)(content, regex);
|
|
228
|
+
for (const { line, match } of passportMatches) {
|
|
229
|
+
const [, strategy] = match;
|
|
230
|
+
emittedSpecific = true;
|
|
231
|
+
findings.push({
|
|
232
|
+
pattern: lib.patternId,
|
|
233
|
+
name: `passport:${strategy}`,
|
|
234
|
+
confidence: lib.confidence,
|
|
235
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
236
|
+
properties: {
|
|
237
|
+
library: "passport",
|
|
238
|
+
strategy,
|
|
239
|
+
},
|
|
240
|
+
});
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
if (!emittedSpecific) {
|
|
244
|
+
findings.push({
|
|
245
|
+
pattern: lib.patternId,
|
|
246
|
+
name: "passport",
|
|
247
|
+
confidence: lib.confidence - 0.15,
|
|
248
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, 1),
|
|
249
|
+
properties: {
|
|
250
|
+
library: "passport",
|
|
251
|
+
},
|
|
252
|
+
});
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
else if (lib.id === "jsonwebtoken") {
|
|
256
|
+
if (content.includes("jwt.sign(") || content.includes("jwt.verify(")) {
|
|
257
|
+
findings.push({
|
|
258
|
+
pattern: lib.patternId,
|
|
259
|
+
name: "jwt",
|
|
260
|
+
confidence: lib.confidence,
|
|
261
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, 1),
|
|
262
|
+
properties: {
|
|
263
|
+
library: "jsonwebtoken",
|
|
264
|
+
},
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
else if (lib.id === "nest_auth") {
|
|
269
|
+
if (content.includes("UseGuards(")) {
|
|
270
|
+
findings.push({
|
|
271
|
+
pattern: lib.patternId,
|
|
272
|
+
name: "nest_auth_guard",
|
|
273
|
+
confidence: lib.confidence,
|
|
274
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, 1),
|
|
275
|
+
properties: {
|
|
276
|
+
library: "nestjs_auth",
|
|
277
|
+
},
|
|
278
|
+
});
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
return findings;
|
|
283
|
+
}
|
|
284
|
+
function detectTypeScriptEnvAndConfigFromConfig(ctx, config) {
|
|
285
|
+
if ((ctx.language !== "typescript" && ctx.language !== "javascript") ||
|
|
286
|
+
!ctx.normalizedPath) {
|
|
287
|
+
return [];
|
|
288
|
+
}
|
|
289
|
+
const content = ctx.file.content ?? "";
|
|
290
|
+
const findings = [];
|
|
291
|
+
const tsCfg = config.typescript;
|
|
292
|
+
const { regex: envRegex, confidence: envConfidence } = tsCfg.heuristics.processEnv;
|
|
293
|
+
const envMatches = (0, helpers_1.findLineMatches)(content, envRegex);
|
|
294
|
+
for (const { line, match } of envMatches) {
|
|
295
|
+
const [, key] = match;
|
|
296
|
+
findings.push({
|
|
297
|
+
pattern: "env_variable",
|
|
298
|
+
name: `process.env.${key}`,
|
|
299
|
+
confidence: envConfidence,
|
|
300
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
301
|
+
properties: {
|
|
302
|
+
key,
|
|
303
|
+
},
|
|
304
|
+
});
|
|
305
|
+
}
|
|
306
|
+
const knownKeys = new Set(tsCfg.configKeys.keys.map((k) => k.name));
|
|
307
|
+
if (knownKeys.size > 0) {
|
|
308
|
+
const configRegex = tsCfg.heuristics.configKeyAccess.regex;
|
|
309
|
+
const configMatches = (0, helpers_1.findLineMatches)(content, configRegex);
|
|
310
|
+
for (const { line, match } of configMatches) {
|
|
311
|
+
const [, key] = match;
|
|
312
|
+
if (!knownKeys.has(key))
|
|
313
|
+
continue;
|
|
314
|
+
const keyConfig = tsCfg.configKeys.keys.find((k) => k.name === key);
|
|
315
|
+
const confidence = keyConfig?.confidence ?? 0.8;
|
|
316
|
+
findings.push({
|
|
317
|
+
pattern: keyConfig?.patternId ?? "config_file",
|
|
318
|
+
name: `config.${key}`,
|
|
319
|
+
confidence,
|
|
320
|
+
location: (0, helpers_1.createLocationFromLine)(ctx.file, line, match[0]),
|
|
321
|
+
properties: {
|
|
322
|
+
key,
|
|
323
|
+
},
|
|
324
|
+
});
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
return findings;
|
|
328
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { FileInfo, SourceLocation } from "../core/types/file";
|
|
2
|
+
import type { RawFinding } from "../core/types/detection";
|
|
3
|
+
export interface ImportLike {
|
|
4
|
+
module: string;
|
|
5
|
+
names: string[];
|
|
6
|
+
}
|
|
7
|
+
export interface PatternContext {
|
|
8
|
+
language: string;
|
|
9
|
+
file: FileInfo;
|
|
10
|
+
/**
|
|
11
|
+
* When true for TypeScript/JavaScript, scan file lines using
|
|
12
|
+
* `third-party.patterns.yaml` `http_clients` regexes (fetch/axios/got, etc.).
|
|
13
|
+
* Kept opt-in so other `matchPatterns` callers (routes/DB/auth/env) that pass
|
|
14
|
+
* `normalizedPath` do not duplicate the same external-API line findings.
|
|
15
|
+
*/
|
|
16
|
+
includeThirdPartyHttpLinePatterns?: boolean;
|
|
17
|
+
imports?: ImportLike[];
|
|
18
|
+
moduleLevelCalls?: {
|
|
19
|
+
callee: string;
|
|
20
|
+
argumentsSnippet: string;
|
|
21
|
+
location: SourceLocation;
|
|
22
|
+
}[];
|
|
23
|
+
functions?: {
|
|
24
|
+
name: string;
|
|
25
|
+
decorators: string[];
|
|
26
|
+
location: SourceLocation;
|
|
27
|
+
}[];
|
|
28
|
+
normalizedPath?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Detect known third-party services (catalog-backed `external_api_call`)
|
|
32
|
+
* from a language-agnostic `imports` list.
|
|
33
|
+
*
|
|
34
|
+
* This intentionally does not run other detectors (routes/DB/auth/env/etc).
|
|
35
|
+
*/
|
|
36
|
+
export declare function detectThirdPartyServicesFromImports(ctx: PatternContext): RawFinding[];
|
|
37
|
+
/**
|
|
38
|
+
* Shared entry point for YAML-driven pattern detection across languages.
|
|
39
|
+
*/
|
|
40
|
+
export declare function matchPatterns(ctx: PatternContext): RawFinding[];
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.detectThirdPartyServicesFromImports = detectThirdPartyServicesFromImports;
|
|
4
|
+
exports.matchPatterns = matchPatterns;
|
|
5
|
+
const config_1 = require("./config");
|
|
6
|
+
const python_1 = require("./detectors/python");
|
|
7
|
+
const typescript_1 = require("./detectors/typescript");
|
|
8
|
+
function findFirstLineMatch(content, regex) {
|
|
9
|
+
if (!regex)
|
|
10
|
+
return undefined;
|
|
11
|
+
const lines = content.split(/\r?\n/);
|
|
12
|
+
for (let i = 0; i < lines.length; i += 1) {
|
|
13
|
+
const lineText = lines[i];
|
|
14
|
+
if (regex.test(lineText)) {
|
|
15
|
+
return { line: i + 1, code: lineText };
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
function detectThirdPartyServicesFromImportsWithConfig(ctx, config) {
|
|
21
|
+
const imports = ctx.imports ?? [];
|
|
22
|
+
if (imports.length === 0)
|
|
23
|
+
return [];
|
|
24
|
+
const findings = [];
|
|
25
|
+
for (const svc of config.thirdParty.services) {
|
|
26
|
+
const hasImport = svc.importFragments.some((frag) => imports.some((imp) => imp.module.includes(frag) || imp.names.some((name) => name.includes(frag))));
|
|
27
|
+
if (!hasImport)
|
|
28
|
+
continue;
|
|
29
|
+
findings.push({
|
|
30
|
+
pattern: svc.patternId,
|
|
31
|
+
name: svc.serviceName,
|
|
32
|
+
confidence: svc.confidence,
|
|
33
|
+
location: {
|
|
34
|
+
filePath: ctx.file.path,
|
|
35
|
+
startLine: 1,
|
|
36
|
+
endLine: 1,
|
|
37
|
+
},
|
|
38
|
+
properties: {
|
|
39
|
+
client: svc.serviceName,
|
|
40
|
+
serviceName: svc.serviceName,
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
return findings;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Detect known third-party services (catalog-backed `external_api_call`)
|
|
48
|
+
* from a language-agnostic `imports` list.
|
|
49
|
+
*
|
|
50
|
+
* This intentionally does not run other detectors (routes/DB/auth/env/etc).
|
|
51
|
+
*/
|
|
52
|
+
function detectThirdPartyServicesFromImports(ctx) {
|
|
53
|
+
const config = (0, config_1.loadUnifiedPatternConfig)();
|
|
54
|
+
return detectThirdPartyServicesFromImportsWithConfig(ctx, config);
|
|
55
|
+
}
|
|
56
|
+
function detectActorsFromConfig(ctx, config) {
|
|
57
|
+
const rules = config.actors.rules;
|
|
58
|
+
if (rules.length === 0)
|
|
59
|
+
return [];
|
|
60
|
+
const findings = [];
|
|
61
|
+
const normalizedPath = (ctx.normalizedPath ?? ctx.file.path).toLowerCase();
|
|
62
|
+
const content = ctx.file.content ?? "";
|
|
63
|
+
const lines = content.split(/\r?\n/);
|
|
64
|
+
const firstLine = lines[0] ?? "";
|
|
65
|
+
for (const rule of rules) {
|
|
66
|
+
let lineMatch;
|
|
67
|
+
if (rule.filePathRegex && rule.filePathRegex.test(normalizedPath)) {
|
|
68
|
+
lineMatch = { line: 1, code: firstLine };
|
|
69
|
+
}
|
|
70
|
+
else if (rule.contentRegex) {
|
|
71
|
+
lineMatch = findFirstLineMatch(content, rule.contentRegex);
|
|
72
|
+
}
|
|
73
|
+
if (!lineMatch)
|
|
74
|
+
continue;
|
|
75
|
+
findings.push({
|
|
76
|
+
pattern: rule.patternId,
|
|
77
|
+
name: rule.name,
|
|
78
|
+
confidence: rule.confidence,
|
|
79
|
+
location: {
|
|
80
|
+
filePath: ctx.file.path,
|
|
81
|
+
startLine: lineMatch.line,
|
|
82
|
+
endLine: lineMatch.line,
|
|
83
|
+
code: lineMatch.code,
|
|
84
|
+
},
|
|
85
|
+
properties: {
|
|
86
|
+
...rule.properties,
|
|
87
|
+
},
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
return findings;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Shared entry point for YAML-driven pattern detection across languages.
|
|
94
|
+
*/
|
|
95
|
+
function matchPatterns(ctx) {
|
|
96
|
+
const config = (0, config_1.loadUnifiedPatternConfig)();
|
|
97
|
+
const findings = [];
|
|
98
|
+
findings.push(...detectThirdPartyServicesFromImportsWithConfig(ctx, config));
|
|
99
|
+
findings.push(...(0, typescript_1.detectTypeScriptJavaScriptExternalApisFromHttpClients)(ctx, config));
|
|
100
|
+
findings.push(...detectActorsFromConfig(ctx, config));
|
|
101
|
+
findings.push(...(0, python_1.detectPythonDatabaseConnectionsFromImportsAndContent)(ctx, config));
|
|
102
|
+
findings.push(...(0, python_1.detectPythonAuthFromConfig)(ctx, config));
|
|
103
|
+
findings.push(...(0, python_1.detectPythonEnvAndConfigFromConfig)(ctx, config));
|
|
104
|
+
findings.push(...(0, python_1.detectPythonExternalApisFromConfig)(ctx, config));
|
|
105
|
+
findings.push(...(0, python_1.detectPythonRoutesFromConfig)(ctx, config));
|
|
106
|
+
findings.push(...(0, typescript_1.detectTypeScriptRoutesFromConfig)(ctx, config));
|
|
107
|
+
findings.push(...(0, typescript_1.detectTypeScriptDatabaseFromConfig)(ctx, config));
|
|
108
|
+
findings.push(...(0, typescript_1.detectTypeScriptAuthFromConfig)(ctx, config));
|
|
109
|
+
findings.push(...(0, typescript_1.detectTypeScriptEnvAndConfigFromConfig)(ctx, config));
|
|
110
|
+
return findings;
|
|
111
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const NON_RUNTIME_METADATA_FILE_NAMES: Set<string>;
|
|
2
|
+
export declare const NON_RUNTIME_METADATA_EXTENSIONS: string[];
|
|
3
|
+
export declare const FRONTEND_RUNTIME_PATH_MARKERS: string[];
|
|
4
|
+
export declare const FRONTEND_RUNTIME_FILE_EXTENSIONS: string[];
|
|
5
|
+
export declare const ROUTE_HANDLER_PATH_MARKERS: string[];
|
|
6
|
+
export declare const ROUTE_HANDLER_FILE_SUFFIXES: string[];
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTE_HANDLER_FILE_SUFFIXES = exports.ROUTE_HANDLER_PATH_MARKERS = exports.FRONTEND_RUNTIME_FILE_EXTENSIONS = exports.FRONTEND_RUNTIME_PATH_MARKERS = exports.NON_RUNTIME_METADATA_EXTENSIONS = exports.NON_RUNTIME_METADATA_FILE_NAMES = void 0;
|
|
4
|
+
exports.NON_RUNTIME_METADATA_FILE_NAMES = new Set(["package.json"]);
|
|
5
|
+
exports.NON_RUNTIME_METADATA_EXTENSIONS = [
|
|
6
|
+
".lock",
|
|
7
|
+
".yaml",
|
|
8
|
+
".yml",
|
|
9
|
+
".toml",
|
|
10
|
+
];
|
|
11
|
+
exports.FRONTEND_RUNTIME_PATH_MARKERS = [
|
|
12
|
+
"/components/",
|
|
13
|
+
"/hooks/",
|
|
14
|
+
"/pages/",
|
|
15
|
+
"/app/",
|
|
16
|
+
];
|
|
17
|
+
exports.FRONTEND_RUNTIME_FILE_EXTENSIONS = [".tsx", ".jsx"];
|
|
18
|
+
exports.ROUTE_HANDLER_PATH_MARKERS = [
|
|
19
|
+
"/app/api/",
|
|
20
|
+
"/routers/",
|
|
21
|
+
"/routes/",
|
|
22
|
+
"/controller",
|
|
23
|
+
"/controllers/",
|
|
24
|
+
"/views/",
|
|
25
|
+
"/endpoints/",
|
|
26
|
+
];
|
|
27
|
+
exports.ROUTE_HANDLER_FILE_SUFFIXES = [
|
|
28
|
+
"/route.ts",
|
|
29
|
+
"/route.js",
|
|
30
|
+
"/route.py",
|
|
31
|
+
"/server.ts",
|
|
32
|
+
"/server.js",
|
|
33
|
+
"/server.py",
|
|
34
|
+
"/router.py",
|
|
35
|
+
"/routes.py",
|
|
36
|
+
"/views.py",
|
|
37
|
+
"/main.py",
|
|
38
|
+
"/app.py",
|
|
39
|
+
];
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const FRONTEND_FRAMEWORK_HINTS: readonly ["next_or_react_route", "nextjs", "react", "vue", "angular", "ionic", "electron", "svelte", "solid", "qwik"];
|
|
2
|
+
export declare const FRONTEND_FRAMEWORK_HINTS_SET: Set<string>;
|
|
3
|
+
export declare const PREFERRED_WEB_APP_FRAMEWORKS: Set<string>;
|
|
4
|
+
export declare const SERVER_FRAMEWORK_HINTS: Set<string>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SERVER_FRAMEWORK_HINTS = exports.PREFERRED_WEB_APP_FRAMEWORKS = exports.FRONTEND_FRAMEWORK_HINTS_SET = exports.FRONTEND_FRAMEWORK_HINTS = void 0;
|
|
4
|
+
exports.FRONTEND_FRAMEWORK_HINTS = [
|
|
5
|
+
"next_or_react_route",
|
|
6
|
+
"nextjs",
|
|
7
|
+
"react",
|
|
8
|
+
"vue",
|
|
9
|
+
"angular",
|
|
10
|
+
"ionic",
|
|
11
|
+
"electron",
|
|
12
|
+
"svelte",
|
|
13
|
+
"solid",
|
|
14
|
+
"qwik",
|
|
15
|
+
];
|
|
16
|
+
exports.FRONTEND_FRAMEWORK_HINTS_SET = new Set(exports.FRONTEND_FRAMEWORK_HINTS);
|
|
17
|
+
exports.PREFERRED_WEB_APP_FRAMEWORKS = new Set([
|
|
18
|
+
...exports.FRONTEND_FRAMEWORK_HINTS,
|
|
19
|
+
"frontend",
|
|
20
|
+
]);
|
|
21
|
+
exports.SERVER_FRAMEWORK_HINTS = new Set([
|
|
22
|
+
"nest",
|
|
23
|
+
"express",
|
|
24
|
+
"serverless",
|
|
25
|
+
]);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const DEFAULT_EXCLUDED_DIRS: Set<string>;
|
|
2
|
+
/**
|
|
3
|
+
* Files matching these globs are not scanned by default: they are never ingested and do not
|
|
4
|
+
* contribute findings or AI context. This keeps unit tests (`*.spec.*`, `*.test.*`) and
|
|
5
|
+
* Playwright bootstrap config, Storybook (`__stories__/`, `*.stories.*`) out of the
|
|
6
|
+
* production-oriented graph. (`.storybook/` is skipped as a hidden directory.)
|
|
7
|
+
*
|
|
8
|
+
* Values are passed as `excludePaths`; expanded explicitly (no `{a,b}` brace groups) because
|
|
9
|
+
* the matcher only supports `*`, `**`, `?`.
|
|
10
|
+
*
|
|
11
|
+
* @see createDefaultScanConfiguration — always prepends these before user `excludePaths`.
|
|
12
|
+
*/
|
|
13
|
+
export declare const DEFAULT_EXCLUDED_FILE_GLOBS: readonly string[];
|
|
14
|
+
export declare function shouldSkipDirectoryName(dirName: string): boolean;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DEFAULT_EXCLUDED_FILE_GLOBS = exports.DEFAULT_EXCLUDED_DIRS = void 0;
|
|
4
|
+
exports.shouldSkipDirectoryName = shouldSkipDirectoryName;
|
|
5
|
+
exports.DEFAULT_EXCLUDED_DIRS = new Set([
|
|
6
|
+
"node_modules",
|
|
7
|
+
"venv",
|
|
8
|
+
".venv",
|
|
9
|
+
"site-packages",
|
|
10
|
+
"vendor",
|
|
11
|
+
"test",
|
|
12
|
+
"tests",
|
|
13
|
+
"__tests__",
|
|
14
|
+
"__stories__",
|
|
15
|
+
"e2e",
|
|
16
|
+
"storybook-static",
|
|
17
|
+
".git",
|
|
18
|
+
"dist",
|
|
19
|
+
"build",
|
|
20
|
+
".next",
|
|
21
|
+
"out",
|
|
22
|
+
"coverage",
|
|
23
|
+
".vscode",
|
|
24
|
+
".idea",
|
|
25
|
+
]);
|
|
26
|
+
/**
|
|
27
|
+
* Files matching these globs are not scanned by default: they are never ingested and do not
|
|
28
|
+
* contribute findings or AI context. This keeps unit tests (`*.spec.*`, `*.test.*`) and
|
|
29
|
+
* Playwright bootstrap config, Storybook (`__stories__/`, `*.stories.*`) out of the
|
|
30
|
+
* production-oriented graph. (`.storybook/` is skipped as a hidden directory.)
|
|
31
|
+
*
|
|
32
|
+
* Values are passed as `excludePaths`; expanded explicitly (no `{a,b}` brace groups) because
|
|
33
|
+
* the matcher only supports `*`, `**`, `?`.
|
|
34
|
+
*
|
|
35
|
+
* @see createDefaultScanConfiguration — always prepends these before user `excludePaths`.
|
|
36
|
+
*/
|
|
37
|
+
exports.DEFAULT_EXCLUDED_FILE_GLOBS = [
|
|
38
|
+
"**/*.spec.ts",
|
|
39
|
+
"*.spec.ts",
|
|
40
|
+
"**/*.spec.tsx",
|
|
41
|
+
"*.spec.tsx",
|
|
42
|
+
"**/*.spec.js",
|
|
43
|
+
"*.spec.js",
|
|
44
|
+
"**/*.spec.jsx",
|
|
45
|
+
"*.spec.jsx",
|
|
46
|
+
"**/*.test.ts",
|
|
47
|
+
"*.test.ts",
|
|
48
|
+
"**/*.test.tsx",
|
|
49
|
+
"*.test.tsx",
|
|
50
|
+
"**/*.test.js",
|
|
51
|
+
"*.test.js",
|
|
52
|
+
"**/*.test.jsx",
|
|
53
|
+
"*.test.jsx",
|
|
54
|
+
"**/playwright.config.*",
|
|
55
|
+
"playwright.config.*",
|
|
56
|
+
"**/*.stories.ts",
|
|
57
|
+
"*.stories.ts",
|
|
58
|
+
"**/*.stories.tsx",
|
|
59
|
+
"*.stories.tsx",
|
|
60
|
+
"**/*.stories.js",
|
|
61
|
+
"*.stories.js",
|
|
62
|
+
"**/*.stories.jsx",
|
|
63
|
+
"*.stories.jsx",
|
|
64
|
+
"**/*.stories.mdx",
|
|
65
|
+
"*.stories.mdx",
|
|
66
|
+
"**/.env",
|
|
67
|
+
"**/.env.*",
|
|
68
|
+
".env",
|
|
69
|
+
".env.*",
|
|
70
|
+
];
|
|
71
|
+
function shouldSkipDirectoryName(dirName) {
|
|
72
|
+
// Hidden tooling/cache directories are noisy for structural scanning.
|
|
73
|
+
if (dirName.startsWith("."))
|
|
74
|
+
return true;
|
|
75
|
+
return exports.DEFAULT_EXCLUDED_DIRS.has(dirName);
|
|
76
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Default DataParade platform API (AWS API Gateway). Used when the CLI talks to
|
|
3
|
+
* workspace quota / platform LLM proxy. Override with DATAPARADE_API_BASE_URL for
|
|
4
|
+
* local monorepo dev (e.g. http://localhost:3000).
|
|
5
|
+
*/
|
|
6
|
+
export declare const DEFAULT_DATAPARADE_API_BASE_URL = "https://hrfp8zmxh8.execute-api.us-east-1.amazonaws.com";
|
|
7
|
+
/** Resolve platform API origin (no trailing slash). */
|
|
8
|
+
export declare function getDataparadeApiBaseUrl(env?: NodeJS.ProcessEnv): string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DEFAULT_DATAPARADE_API_BASE_URL = void 0;
|
|
4
|
+
exports.getDataparadeApiBaseUrl = getDataparadeApiBaseUrl;
|
|
5
|
+
/**
|
|
6
|
+
* Default DataParade platform API (AWS API Gateway). Used when the CLI talks to
|
|
7
|
+
* workspace quota / platform LLM proxy. Override with DATAPARADE_API_BASE_URL for
|
|
8
|
+
* local monorepo dev (e.g. http://localhost:3000).
|
|
9
|
+
*/
|
|
10
|
+
exports.DEFAULT_DATAPARADE_API_BASE_URL = "https://hrfp8zmxh8.execute-api.us-east-1.amazonaws.com";
|
|
11
|
+
/** Resolve platform API origin (no trailing slash). */
|
|
12
|
+
function getDataparadeApiBaseUrl(env = process.env) {
|
|
13
|
+
const base = env.DATAPARADE_API_BASE_URL?.trim() ||
|
|
14
|
+
env.DATAPARADE_API_URL?.trim() ||
|
|
15
|
+
exports.DEFAULT_DATAPARADE_API_BASE_URL;
|
|
16
|
+
return base.replace(/\/$/, "");
|
|
17
|
+
}
|