@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,15 @@
|
|
|
1
|
+
export * from "./types";
|
|
2
|
+
export * from "./candidate-selector";
|
|
3
|
+
export * from "./planner";
|
|
4
|
+
export * from "./merge-rules";
|
|
5
|
+
export * from "./pipeline";
|
|
6
|
+
export * from "./fallbacks";
|
|
7
|
+
export * from "./agent-orchestrator";
|
|
8
|
+
export * from "./tools";
|
|
9
|
+
export * from "./providers";
|
|
10
|
+
export * from "./agents";
|
|
11
|
+
export * from "./types";
|
|
12
|
+
export * from "./merge-rules";
|
|
13
|
+
export * from "./candidate-selector";
|
|
14
|
+
export * from "./planner";
|
|
15
|
+
export * from "./pipeline";
|
|
@@ -0,0 +1,31 @@
|
|
|
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
__exportStar(require("./candidate-selector"), exports);
|
|
19
|
+
__exportStar(require("./planner"), exports);
|
|
20
|
+
__exportStar(require("./merge-rules"), exports);
|
|
21
|
+
__exportStar(require("./pipeline"), exports);
|
|
22
|
+
__exportStar(require("./fallbacks"), exports);
|
|
23
|
+
__exportStar(require("./agent-orchestrator"), exports);
|
|
24
|
+
__exportStar(require("./tools"), exports);
|
|
25
|
+
__exportStar(require("./providers"), exports);
|
|
26
|
+
__exportStar(require("./agents"), exports);
|
|
27
|
+
__exportStar(require("./types"), exports);
|
|
28
|
+
__exportStar(require("./merge-rules"), exports);
|
|
29
|
+
__exportStar(require("./candidate-selector"), exports);
|
|
30
|
+
__exportStar(require("./planner"), exports);
|
|
31
|
+
__exportStar(require("./pipeline"), exports);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
import type { DetectedDataFlow } from "../core/types/data-flow";
|
|
3
|
+
import type { AiMergeResult, AiMergeThresholds, AiProposal } from "./types";
|
|
4
|
+
/** When true, flow_patch proposals are not applied — data-flow graph stays exactly as detected before AI. */
|
|
5
|
+
export interface MergeAiProposalsOptions {
|
|
6
|
+
preserveDataFlowTopology?: boolean;
|
|
7
|
+
enforceIntraSectionFlowChangesOnly?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare function mergeAiProposals(components: DetectedComponent[], dataFlows: DetectedDataFlow[], proposals: Array<{
|
|
10
|
+
id: string;
|
|
11
|
+
proposal: AiProposal;
|
|
12
|
+
}>, thresholds?: Partial<AiMergeThresholds>, options?: MergeAiProposalsOptions): AiMergeResult;
|
|
@@ -0,0 +1,321 @@
|
|
|
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
|
+
exports.mergeAiProposals = mergeAiProposals;
|
|
7
|
+
const third_party_subtype_1 = require("./third-party-subtype");
|
|
8
|
+
const sorting_1 = require("../core/pipeline/sorting");
|
|
9
|
+
const path_1 = __importDefault(require("path"));
|
|
10
|
+
const util_1 = require("util");
|
|
11
|
+
const DEFAULT_THRESHOLDS = {
|
|
12
|
+
minComponentPatchConfidence: 0.7,
|
|
13
|
+
minFlowPatchConfidence: 0.75,
|
|
14
|
+
minInsertFlowConfidence: 0.85,
|
|
15
|
+
};
|
|
16
|
+
function normalizeAlias(raw) {
|
|
17
|
+
return raw
|
|
18
|
+
.trim()
|
|
19
|
+
.replace(/\\/g, "/")
|
|
20
|
+
.replace(/^\.\//, "")
|
|
21
|
+
.replace(/\/+$/, "")
|
|
22
|
+
.toLowerCase();
|
|
23
|
+
}
|
|
24
|
+
function stripIndexSuffix(p) {
|
|
25
|
+
const normalized = normalizeAlias(p);
|
|
26
|
+
const base = path_1.default.posix.basename(normalized);
|
|
27
|
+
const stem = base.replace(/\.[^.]+$/, "");
|
|
28
|
+
if (stem !== "index")
|
|
29
|
+
return normalized;
|
|
30
|
+
const dir = path_1.default.posix.dirname(normalized);
|
|
31
|
+
return dir === "." ? normalized : normalizeAlias(dir);
|
|
32
|
+
}
|
|
33
|
+
function addAlias(aliasMap, alias, componentId) {
|
|
34
|
+
const key = normalizeAlias(alias);
|
|
35
|
+
if (!key)
|
|
36
|
+
return;
|
|
37
|
+
const set = aliasMap.get(key) ?? new Set();
|
|
38
|
+
set.add(componentId);
|
|
39
|
+
aliasMap.set(key, set);
|
|
40
|
+
}
|
|
41
|
+
function buildComponentAliasMap(components) {
|
|
42
|
+
const aliasMap = new Map();
|
|
43
|
+
for (const component of components) {
|
|
44
|
+
addAlias(aliasMap, component.id, component.id);
|
|
45
|
+
addAlias(aliasMap, component.name, component.id);
|
|
46
|
+
for (const loc of component.sourceLocations ?? []) {
|
|
47
|
+
if (!loc.filePath)
|
|
48
|
+
continue;
|
|
49
|
+
const fp = normalizeAlias(loc.filePath);
|
|
50
|
+
addAlias(aliasMap, fp, component.id);
|
|
51
|
+
addAlias(aliasMap, stripIndexSuffix(fp), component.id);
|
|
52
|
+
addAlias(aliasMap, path_1.default.posix.dirname(fp), component.id);
|
|
53
|
+
}
|
|
54
|
+
for (const ref of component.detectedFrom ?? []) {
|
|
55
|
+
const fp = ref.sourceLocation?.filePath;
|
|
56
|
+
if (!fp)
|
|
57
|
+
continue;
|
|
58
|
+
const normalized = normalizeAlias(fp);
|
|
59
|
+
addAlias(aliasMap, normalized, component.id);
|
|
60
|
+
addAlias(aliasMap, stripIndexSuffix(normalized), component.id);
|
|
61
|
+
addAlias(aliasMap, path_1.default.posix.dirname(normalized), component.id);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
return aliasMap;
|
|
65
|
+
}
|
|
66
|
+
function remapComponentPatchTarget(patch, componentIds, aliasMap) {
|
|
67
|
+
if (componentIds.has(patch.targetComponentId))
|
|
68
|
+
return patch;
|
|
69
|
+
const key = normalizeAlias(patch.targetComponentId);
|
|
70
|
+
const matches = aliasMap.get(key);
|
|
71
|
+
if (!matches || matches.size !== 1)
|
|
72
|
+
return patch;
|
|
73
|
+
const [mappedId] = [...matches];
|
|
74
|
+
if (!mappedId || !componentIds.has(mappedId))
|
|
75
|
+
return patch;
|
|
76
|
+
return {
|
|
77
|
+
...patch,
|
|
78
|
+
targetComponentId: mappedId,
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
function proposalTargetKey(proposal) {
|
|
82
|
+
if (proposal.kind === "component_patch") {
|
|
83
|
+
const propKeys = Object.keys(proposal.setProperties ?? {}).sort().join("|");
|
|
84
|
+
const sub = proposal.setSubType ? `sub:${proposal.setSubType}` : "";
|
|
85
|
+
const desc = proposal.setDescription ? "desc" : "";
|
|
86
|
+
return `component:${proposal.targetComponentId}:${propKeys}:${sub}:${desc}`;
|
|
87
|
+
}
|
|
88
|
+
if (proposal.targetFlowId) {
|
|
89
|
+
return `flow:${proposal.targetFlowId}`;
|
|
90
|
+
}
|
|
91
|
+
return `flow:${proposal.sourceComponentId}->${proposal.targetComponentId}`;
|
|
92
|
+
}
|
|
93
|
+
function proposalRank(proposal) {
|
|
94
|
+
const confidenceScore = proposal.confidence.score;
|
|
95
|
+
const evidenceWeight = proposal.evidence.length / 100;
|
|
96
|
+
const insertPenalty = proposal.kind === "flow_patch" && proposal.insertIfMissing ? -0.02 : 0;
|
|
97
|
+
const llmBonus = proposal.provider !== "mock" ? 0.25 : 0;
|
|
98
|
+
return confidenceScore + evidenceWeight + insertPenalty + llmBonus;
|
|
99
|
+
}
|
|
100
|
+
function sortedProposals(proposals) {
|
|
101
|
+
return [...proposals].sort((a, b) => {
|
|
102
|
+
const rankDelta = proposalRank(b.proposal) - proposalRank(a.proposal);
|
|
103
|
+
if (rankDelta !== 0)
|
|
104
|
+
return rankDelta;
|
|
105
|
+
const aKey = proposalTargetKey(a.proposal);
|
|
106
|
+
const bKey = proposalTargetKey(b.proposal);
|
|
107
|
+
if (aKey !== bKey)
|
|
108
|
+
return aKey.localeCompare(bKey);
|
|
109
|
+
return a.id.localeCompare(b.id);
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
function toProvenance(proposal, confidence) {
|
|
113
|
+
return {
|
|
114
|
+
source: "ai_agent",
|
|
115
|
+
provider: proposal.provider,
|
|
116
|
+
model: proposal.model,
|
|
117
|
+
agent: proposal.agent,
|
|
118
|
+
candidateType: proposal.candidateType,
|
|
119
|
+
confidence,
|
|
120
|
+
confidenceBand: proposal.confidence.band,
|
|
121
|
+
evidence: proposal.evidence,
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
function mergeComponentPatch(components, patch) {
|
|
125
|
+
const component = components.find((item) => item.id === patch.targetComponentId);
|
|
126
|
+
if (!component)
|
|
127
|
+
return false;
|
|
128
|
+
let changed = false;
|
|
129
|
+
const normalizedSubType = (0, third_party_subtype_1.normalizeThirdPartySubType)(patch.setSubType);
|
|
130
|
+
if (normalizedSubType && normalizedSubType !== component.subType) {
|
|
131
|
+
component.subType = normalizedSubType;
|
|
132
|
+
changed = true;
|
|
133
|
+
}
|
|
134
|
+
if (patch.setDescription && patch.setDescription !== component.description) {
|
|
135
|
+
component.description = patch.setDescription;
|
|
136
|
+
changed = true;
|
|
137
|
+
}
|
|
138
|
+
const currentProperties = component.properties ?? {};
|
|
139
|
+
const nextProperties = { ...currentProperties };
|
|
140
|
+
for (const [key, value] of Object.entries(patch.setProperties ?? {})) {
|
|
141
|
+
const currentValue = currentProperties[key];
|
|
142
|
+
if (key === "inference_status" && value === "needs_review") {
|
|
143
|
+
continue;
|
|
144
|
+
}
|
|
145
|
+
const normalizedCurrent = normalizeEmptyLikeValue(currentValue);
|
|
146
|
+
const normalizedNext = normalizeEmptyLikeValue(value);
|
|
147
|
+
if ((0, util_1.isDeepStrictEqual)(normalizedCurrent, normalizedNext)) {
|
|
148
|
+
continue;
|
|
149
|
+
}
|
|
150
|
+
nextProperties[key] = value;
|
|
151
|
+
changed = true;
|
|
152
|
+
}
|
|
153
|
+
component.properties = nextProperties;
|
|
154
|
+
return changed;
|
|
155
|
+
}
|
|
156
|
+
function normalizeEmptyLikeValue(value) {
|
|
157
|
+
if (value == null)
|
|
158
|
+
return "__empty__";
|
|
159
|
+
if (typeof value === "string" && value.trim().toLowerCase() === "none") {
|
|
160
|
+
return "__empty__";
|
|
161
|
+
}
|
|
162
|
+
if (Array.isArray(value) && value.length === 0)
|
|
163
|
+
return "__empty__";
|
|
164
|
+
return value;
|
|
165
|
+
}
|
|
166
|
+
function normalizeSectionId(raw) {
|
|
167
|
+
if (raw == null)
|
|
168
|
+
return undefined;
|
|
169
|
+
const section = String(raw).trim();
|
|
170
|
+
return section.length > 0 ? section : undefined;
|
|
171
|
+
}
|
|
172
|
+
function resolveFlowPatchEndpoints(patch, flows) {
|
|
173
|
+
if (patch.targetFlowId) {
|
|
174
|
+
const targetFlow = flows.find((flow) => flow.id === patch.targetFlowId);
|
|
175
|
+
if (!targetFlow)
|
|
176
|
+
return undefined;
|
|
177
|
+
return {
|
|
178
|
+
sourceComponentId: targetFlow.sourceComponentId,
|
|
179
|
+
targetComponentId: targetFlow.targetComponentId,
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
if (patch.sourceComponentId && patch.targetComponentId) {
|
|
183
|
+
return {
|
|
184
|
+
sourceComponentId: patch.sourceComponentId,
|
|
185
|
+
targetComponentId: patch.targetComponentId,
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
return undefined;
|
|
189
|
+
}
|
|
190
|
+
function isIntraSectionFlowPatch(patch, componentsById, flows) {
|
|
191
|
+
const endpoints = resolveFlowPatchEndpoints(patch, flows);
|
|
192
|
+
if (!endpoints)
|
|
193
|
+
return false;
|
|
194
|
+
const source = componentsById.get(endpoints.sourceComponentId);
|
|
195
|
+
const target = componentsById.get(endpoints.targetComponentId);
|
|
196
|
+
if (!source || !target)
|
|
197
|
+
return false;
|
|
198
|
+
const sourceSectionId = normalizeSectionId(source.properties?.section_id);
|
|
199
|
+
const targetSectionId = normalizeSectionId(target.properties?.section_id);
|
|
200
|
+
return sourceSectionId === targetSectionId;
|
|
201
|
+
}
|
|
202
|
+
function mergeFlowPatch(flows, patch) {
|
|
203
|
+
const flow = patch.targetFlowId
|
|
204
|
+
? flows.find((item) => item.id === patch.targetFlowId)
|
|
205
|
+
: flows.find((item) => item.sourceComponentId === patch.sourceComponentId &&
|
|
206
|
+
item.targetComponentId === patch.targetComponentId);
|
|
207
|
+
if (!flow) {
|
|
208
|
+
if (!patch.insertIfMissing)
|
|
209
|
+
return false;
|
|
210
|
+
if (!patch.sourceComponentId || !patch.targetComponentId)
|
|
211
|
+
return false;
|
|
212
|
+
const inserted = {
|
|
213
|
+
id: `flow_ai_${patch.sourceComponentId}_${patch.targetComponentId}_${flows.length + 1}`,
|
|
214
|
+
sourceComponentId: patch.sourceComponentId,
|
|
215
|
+
targetComponentId: patch.targetComponentId,
|
|
216
|
+
type: patch.setType ?? "api_call",
|
|
217
|
+
description: patch.setDescription,
|
|
218
|
+
confidence: patch.confidence.score,
|
|
219
|
+
method: patch.setMethod,
|
|
220
|
+
endpoint: patch.setEndpoint,
|
|
221
|
+
sourceLocations: patch.evidence.map((e) => ({
|
|
222
|
+
filePath: e.filePath,
|
|
223
|
+
startLine: e.startLine,
|
|
224
|
+
endLine: e.endLine,
|
|
225
|
+
})),
|
|
226
|
+
};
|
|
227
|
+
flows.push(inserted);
|
|
228
|
+
return true;
|
|
229
|
+
}
|
|
230
|
+
if (patch.setType)
|
|
231
|
+
flow.type = patch.setType;
|
|
232
|
+
if (patch.setMethod)
|
|
233
|
+
flow.method = patch.setMethod;
|
|
234
|
+
if (patch.setEndpoint)
|
|
235
|
+
flow.endpoint = patch.setEndpoint;
|
|
236
|
+
if (patch.setDescription)
|
|
237
|
+
flow.description = patch.setDescription;
|
|
238
|
+
flow.confidence = Math.max(flow.confidence, patch.confidence.score);
|
|
239
|
+
return true;
|
|
240
|
+
}
|
|
241
|
+
function mergeAiProposals(components, dataFlows, proposals, thresholds = {}, options = {}) {
|
|
242
|
+
const mergedThresholds = { ...DEFAULT_THRESHOLDS, ...thresholds };
|
|
243
|
+
const nextComponents = components.map((component) => ({
|
|
244
|
+
...component,
|
|
245
|
+
properties: { ...component.properties },
|
|
246
|
+
}));
|
|
247
|
+
const nextFlows = dataFlows.map((flow) => ({ ...flow }));
|
|
248
|
+
const appliedProposalIds = [];
|
|
249
|
+
const rejectedProposalIds = [];
|
|
250
|
+
const provenanceByTarget = {};
|
|
251
|
+
const componentIds = new Set(nextComponents.map((c) => c.id));
|
|
252
|
+
const aliasMap = buildComponentAliasMap(nextComponents);
|
|
253
|
+
const componentsById = new Map(nextComponents.map((c) => [c.id, c]));
|
|
254
|
+
for (const { id, proposal } of sortedProposals(proposals)) {
|
|
255
|
+
const resolvedProposal = proposal.kind === "component_patch"
|
|
256
|
+
? remapComponentPatchTarget(proposal, componentIds, aliasMap)
|
|
257
|
+
: proposal;
|
|
258
|
+
if (options.preserveDataFlowTopology && proposal.kind === "flow_patch") {
|
|
259
|
+
rejectedProposalIds.push({
|
|
260
|
+
proposalId: id,
|
|
261
|
+
reason: "data_flow_topology_preserved",
|
|
262
|
+
});
|
|
263
|
+
continue;
|
|
264
|
+
}
|
|
265
|
+
if (options.enforceIntraSectionFlowChangesOnly &&
|
|
266
|
+
resolvedProposal.kind === "flow_patch" &&
|
|
267
|
+
!isIntraSectionFlowPatch(resolvedProposal, componentsById, nextFlows)) {
|
|
268
|
+
rejectedProposalIds.push({
|
|
269
|
+
proposalId: id,
|
|
270
|
+
reason: "cross_section_flow_change_blocked",
|
|
271
|
+
});
|
|
272
|
+
continue;
|
|
273
|
+
}
|
|
274
|
+
const minConfidence = resolvedProposal.kind === "component_patch"
|
|
275
|
+
? mergedThresholds.minComponentPatchConfidence
|
|
276
|
+
: resolvedProposal.insertIfMissing
|
|
277
|
+
? mergedThresholds.minInsertFlowConfidence
|
|
278
|
+
: mergedThresholds.minFlowPatchConfidence;
|
|
279
|
+
if (resolvedProposal.confidence.score < minConfidence) {
|
|
280
|
+
rejectedProposalIds.push({
|
|
281
|
+
proposalId: id,
|
|
282
|
+
reason: `confidence_below_threshold:${minConfidence}`,
|
|
283
|
+
});
|
|
284
|
+
continue;
|
|
285
|
+
}
|
|
286
|
+
if (resolvedProposal.evidence.length === 0) {
|
|
287
|
+
rejectedProposalIds.push({ proposalId: id, reason: "missing_evidence" });
|
|
288
|
+
continue;
|
|
289
|
+
}
|
|
290
|
+
const targetKey = proposalTargetKey(resolvedProposal);
|
|
291
|
+
if (provenanceByTarget[targetKey]) {
|
|
292
|
+
rejectedProposalIds.push({
|
|
293
|
+
proposalId: id,
|
|
294
|
+
reason: "target_already_modified_by_higher_ranked_proposal",
|
|
295
|
+
});
|
|
296
|
+
continue;
|
|
297
|
+
}
|
|
298
|
+
const merged = resolvedProposal.kind === "component_patch"
|
|
299
|
+
? mergeComponentPatch(nextComponents, resolvedProposal)
|
|
300
|
+
: mergeFlowPatch(nextFlows, resolvedProposal);
|
|
301
|
+
if (!merged) {
|
|
302
|
+
rejectedProposalIds.push({
|
|
303
|
+
proposalId: id,
|
|
304
|
+
reason: resolvedProposal.kind === "component_patch"
|
|
305
|
+
? "no_meaningful_changes"
|
|
306
|
+
: "target_not_found",
|
|
307
|
+
});
|
|
308
|
+
continue;
|
|
309
|
+
}
|
|
310
|
+
appliedProposalIds.push(id);
|
|
311
|
+
provenanceByTarget[targetKey] = toProvenance(resolvedProposal, resolvedProposal.confidence.score);
|
|
312
|
+
}
|
|
313
|
+
(0, sorting_1.sortDataFlowsDeterministically)(nextFlows);
|
|
314
|
+
return {
|
|
315
|
+
components: nextComponents,
|
|
316
|
+
dataFlows: nextFlows,
|
|
317
|
+
appliedProposalIds,
|
|
318
|
+
rejectedProposalIds,
|
|
319
|
+
provenanceByTarget,
|
|
320
|
+
};
|
|
321
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface NonPiiSignalRule {
|
|
2
|
+
id: string;
|
|
3
|
+
category: "auth_artifacts" | "usage_metadata" | "telemetry" | "content_files" | "identifiers";
|
|
4
|
+
labels: string[];
|
|
5
|
+
patterns: RegExp[];
|
|
6
|
+
capabilities: string[];
|
|
7
|
+
directionHint?: "outbound_to_third_party" | "inbound_from_third_party";
|
|
8
|
+
}
|
|
9
|
+
export declare function clearNonPiiSignalRulesCacheForTest(): void;
|
|
10
|
+
export declare function loadNonPiiSignalRules(): NonPiiSignalRule[];
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
exports.clearNonPiiSignalRulesCacheForTest = clearNonPiiSignalRulesCacheForTest;
|
|
7
|
+
exports.loadNonPiiSignalRules = loadNonPiiSignalRules;
|
|
8
|
+
const fs_1 = __importDefault(require("fs"));
|
|
9
|
+
const path_1 = __importDefault(require("path"));
|
|
10
|
+
const yaml_1 = __importDefault(require("yaml"));
|
|
11
|
+
const zod_1 = require("zod");
|
|
12
|
+
const nonPiiSignalRuleSchema = zod_1.z.object({
|
|
13
|
+
id: zod_1.z.string().min(1),
|
|
14
|
+
category: zod_1.z.enum(["auth_artifacts", "usage_metadata", "telemetry", "content_files", "identifiers"]),
|
|
15
|
+
labels: zod_1.z.array(zod_1.z.string().min(1)).default([]),
|
|
16
|
+
patterns: zod_1.z.array(zod_1.z.string().min(1)).default([]),
|
|
17
|
+
capabilities: zod_1.z.array(zod_1.z.string().min(1)).default([]),
|
|
18
|
+
directionHint: zod_1.z.enum(["outbound_to_third_party", "inbound_from_third_party"]).optional(),
|
|
19
|
+
});
|
|
20
|
+
const nonPiiSignalCatalogSchema = zod_1.z.object({
|
|
21
|
+
non_pii_signal_rules: zod_1.z.array(nonPiiSignalRuleSchema).default([]),
|
|
22
|
+
});
|
|
23
|
+
let cachedRules;
|
|
24
|
+
function clearNonPiiSignalRulesCacheForTest() {
|
|
25
|
+
cachedRules = undefined;
|
|
26
|
+
}
|
|
27
|
+
function getNonPiiSignalRulesPath() {
|
|
28
|
+
const parts = __dirname.split(path_1.default.sep);
|
|
29
|
+
const distIndex = parts.lastIndexOf("dist");
|
|
30
|
+
const cliRoot = distIndex !== -1
|
|
31
|
+
? parts.slice(0, distIndex).join(path_1.default.sep)
|
|
32
|
+
: path_1.default.resolve(__dirname, "..", "..");
|
|
33
|
+
return path_1.default.join(cliRoot, "patterns", "non-pii-signals.rules.yaml");
|
|
34
|
+
}
|
|
35
|
+
function loadNonPiiSignalRules() {
|
|
36
|
+
if (cachedRules)
|
|
37
|
+
return cachedRules;
|
|
38
|
+
const configPath = getNonPiiSignalRulesPath();
|
|
39
|
+
let raw;
|
|
40
|
+
try {
|
|
41
|
+
raw = fs_1.default.readFileSync(configPath, "utf8");
|
|
42
|
+
}
|
|
43
|
+
catch (err) {
|
|
44
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
45
|
+
throw new Error(`Non-PII signal rules are required but could not be read from '${configPath}': ${message}`);
|
|
46
|
+
}
|
|
47
|
+
let parsed;
|
|
48
|
+
try {
|
|
49
|
+
parsed = yaml_1.default.parse(raw);
|
|
50
|
+
}
|
|
51
|
+
catch (err) {
|
|
52
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
53
|
+
throw new Error(`Non-PII signal rules at '${configPath}' could not be parsed as YAML: ${message}`);
|
|
54
|
+
}
|
|
55
|
+
let normalized;
|
|
56
|
+
try {
|
|
57
|
+
normalized = nonPiiSignalCatalogSchema.parse(parsed);
|
|
58
|
+
}
|
|
59
|
+
catch (err) {
|
|
60
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
61
|
+
throw new Error(`Non-PII signal rules at '${configPath}' failed schema validation: ${message}`);
|
|
62
|
+
}
|
|
63
|
+
cachedRules = normalized.non_pii_signal_rules.map((rule) => ({
|
|
64
|
+
id: rule.id.trim().toLowerCase(),
|
|
65
|
+
category: rule.category,
|
|
66
|
+
labels: rule.labels.map((label) => label.trim()).filter(Boolean),
|
|
67
|
+
patterns: rule.patterns.map((pattern) => new RegExp(pattern, "i")),
|
|
68
|
+
capabilities: rule.capabilities.map((cap) => cap.trim().toLowerCase()).filter(Boolean),
|
|
69
|
+
directionHint: rule.directionHint,
|
|
70
|
+
}));
|
|
71
|
+
return cachedRules;
|
|
72
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schema for OpenAI Chat Completions structured outputs (`response_format.type: json_schema`).
|
|
3
|
+
* Kept in sync with {@link normalizeProposal} shapes in `provider-contract.ts`.
|
|
4
|
+
*/
|
|
5
|
+
import { z } from "zod";
|
|
6
|
+
export declare const openAiProposalsResponseSchema: z.ZodObject<{
|
|
7
|
+
proposals: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8
|
+
kind: z.ZodLiteral<"component_patch">;
|
|
9
|
+
targetComponentId: z.ZodString;
|
|
10
|
+
candidateType: z.ZodEnum<{
|
|
11
|
+
third_party: "third_party";
|
|
12
|
+
node_property: "node_property";
|
|
13
|
+
flow_direction: "flow_direction";
|
|
14
|
+
missing_interaction: "missing_interaction";
|
|
15
|
+
}>;
|
|
16
|
+
setSubType: z.ZodOptional<z.ZodString>;
|
|
17
|
+
setDescription: z.ZodOptional<z.ZodString>;
|
|
18
|
+
setProperties: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
19
|
+
propertyEvidence: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
20
|
+
filePath: z.ZodString;
|
|
21
|
+
startLine: z.ZodNumber;
|
|
22
|
+
endLine: z.ZodNumber;
|
|
23
|
+
reason: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>>;
|
|
25
|
+
confidence: z.ZodObject<{
|
|
26
|
+
score: z.ZodNumber;
|
|
27
|
+
band: z.ZodEnum<{
|
|
28
|
+
high: "high";
|
|
29
|
+
medium: "medium";
|
|
30
|
+
low: "low";
|
|
31
|
+
}>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
evidence: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
34
|
+
filePath: z.ZodString;
|
|
35
|
+
startLine: z.ZodNumber;
|
|
36
|
+
endLine: z.ZodNumber;
|
|
37
|
+
reason: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>>;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
kind: z.ZodLiteral<"flow_patch">;
|
|
41
|
+
candidateType: z.ZodEnum<{
|
|
42
|
+
third_party: "third_party";
|
|
43
|
+
node_property: "node_property";
|
|
44
|
+
flow_direction: "flow_direction";
|
|
45
|
+
missing_interaction: "missing_interaction";
|
|
46
|
+
}>;
|
|
47
|
+
targetFlowId: z.ZodOptional<z.ZodString>;
|
|
48
|
+
insertIfMissing: z.ZodOptional<z.ZodBoolean>;
|
|
49
|
+
sourceComponentId: z.ZodOptional<z.ZodString>;
|
|
50
|
+
targetComponentId: z.ZodOptional<z.ZodString>;
|
|
51
|
+
setType: z.ZodOptional<z.ZodEnum<{
|
|
52
|
+
api_call: "api_call";
|
|
53
|
+
database_query: "database_query";
|
|
54
|
+
message_queue: "message_queue";
|
|
55
|
+
file_transfer: "file_transfer";
|
|
56
|
+
webhook: "webhook";
|
|
57
|
+
rpc: "rpc";
|
|
58
|
+
}>>;
|
|
59
|
+
setDirection: z.ZodOptional<z.ZodEnum<{
|
|
60
|
+
reverse: "reverse";
|
|
61
|
+
forward: "forward";
|
|
62
|
+
}>>;
|
|
63
|
+
setMethod: z.ZodOptional<z.ZodString>;
|
|
64
|
+
setEndpoint: z.ZodOptional<z.ZodString>;
|
|
65
|
+
setDescription: z.ZodOptional<z.ZodString>;
|
|
66
|
+
confidence: z.ZodObject<{
|
|
67
|
+
score: z.ZodNumber;
|
|
68
|
+
band: z.ZodEnum<{
|
|
69
|
+
high: "high";
|
|
70
|
+
medium: "medium";
|
|
71
|
+
low: "low";
|
|
72
|
+
}>;
|
|
73
|
+
}, z.core.$strip>;
|
|
74
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
75
|
+
filePath: z.ZodString;
|
|
76
|
+
startLine: z.ZodNumber;
|
|
77
|
+
endLine: z.ZodNumber;
|
|
78
|
+
reason: z.ZodString;
|
|
79
|
+
}, z.core.$strip>>;
|
|
80
|
+
}, z.core.$strip>], "kind">>;
|
|
81
|
+
}, z.core.$strip>;
|
|
82
|
+
export type OpenAiProposalsResponse = z.infer<typeof openAiProposalsResponseSchema>;
|
|
83
|
+
/**
|
|
84
|
+
* JSON Schema for `response_format.json_schema`, with `$schema` removed for broader API compatibility.
|
|
85
|
+
* Use `strict: false` so Zod optional fields (OpenAI: non–all-required) remain valid.
|
|
86
|
+
*/
|
|
87
|
+
export declare function getOpenAiProposalsResponseJsonSchemaForApi(options?: {
|
|
88
|
+
/** OpenAI `json_schema.strict`; requires every object to list all keys — keep false with Zod optionals. */
|
|
89
|
+
strict?: boolean;
|
|
90
|
+
}): {
|
|
91
|
+
name: string;
|
|
92
|
+
strict: boolean;
|
|
93
|
+
schema: Record<string, unknown>;
|
|
94
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.openAiProposalsResponseSchema = void 0;
|
|
4
|
+
exports.getOpenAiProposalsResponseJsonSchemaForApi = getOpenAiProposalsResponseJsonSchemaForApi;
|
|
5
|
+
/**
|
|
6
|
+
* Zod schema for OpenAI Chat Completions structured outputs (`response_format.type: json_schema`).
|
|
7
|
+
* Kept in sync with {@link normalizeProposal} shapes in `provider-contract.ts`.
|
|
8
|
+
*/
|
|
9
|
+
const zod_1 = require("zod");
|
|
10
|
+
const aiCandidateTypeSchema = zod_1.z.enum([
|
|
11
|
+
"third_party",
|
|
12
|
+
"node_property",
|
|
13
|
+
"flow_direction",
|
|
14
|
+
"missing_interaction",
|
|
15
|
+
]);
|
|
16
|
+
const evidenceSchema = zod_1.z.object({
|
|
17
|
+
filePath: zod_1.z.string().describe("Path from scan payload (detectedFrom / sourceLocations)."),
|
|
18
|
+
startLine: zod_1.z.number(),
|
|
19
|
+
endLine: zod_1.z.number(),
|
|
20
|
+
reason: zod_1.z.string(),
|
|
21
|
+
});
|
|
22
|
+
const confidenceSchema = zod_1.z.object({
|
|
23
|
+
score: zod_1.z.number().min(0).max(1),
|
|
24
|
+
band: zod_1.z.enum(["high", "medium", "low"]),
|
|
25
|
+
});
|
|
26
|
+
/** Property bag: snake_case keys; values as returned by the model (strings, bools, numbers, arrays, null). */
|
|
27
|
+
const setPropertiesSchema = zod_1.z
|
|
28
|
+
.record(zod_1.z.string(), zod_1.z.unknown())
|
|
29
|
+
.describe("setProperties: snake_case keys from sparsePropertyKeys; arrays for multi-value fields.");
|
|
30
|
+
const propertyEvidenceSchema = zod_1.z
|
|
31
|
+
.record(zod_1.z.string(), zod_1.z.array(evidenceSchema))
|
|
32
|
+
.describe("Map each setProperties key you output to a non-empty array of evidence rows (filePath, line range, reason).");
|
|
33
|
+
const componentPatchSchema = zod_1.z.object({
|
|
34
|
+
kind: zod_1.z.literal("component_patch"),
|
|
35
|
+
targetComponentId: zod_1.z.string(),
|
|
36
|
+
candidateType: aiCandidateTypeSchema,
|
|
37
|
+
setSubType: zod_1.z.string().optional(),
|
|
38
|
+
setDescription: zod_1.z.string().optional(),
|
|
39
|
+
setProperties: setPropertiesSchema,
|
|
40
|
+
propertyEvidence: propertyEvidenceSchema,
|
|
41
|
+
confidence: confidenceSchema,
|
|
42
|
+
evidence: zod_1.z.array(evidenceSchema).optional(),
|
|
43
|
+
});
|
|
44
|
+
const dataFlowTypeSchema = zod_1.z.enum([
|
|
45
|
+
"api_call",
|
|
46
|
+
"database_query",
|
|
47
|
+
"message_queue",
|
|
48
|
+
"file_transfer",
|
|
49
|
+
"webhook",
|
|
50
|
+
"rpc",
|
|
51
|
+
]);
|
|
52
|
+
const flowPatchSchema = zod_1.z.object({
|
|
53
|
+
kind: zod_1.z.literal("flow_patch"),
|
|
54
|
+
candidateType: aiCandidateTypeSchema,
|
|
55
|
+
targetFlowId: zod_1.z.string().optional(),
|
|
56
|
+
insertIfMissing: zod_1.z.boolean().optional(),
|
|
57
|
+
sourceComponentId: zod_1.z.string().optional(),
|
|
58
|
+
targetComponentId: zod_1.z.string().optional(),
|
|
59
|
+
setType: dataFlowTypeSchema.optional(),
|
|
60
|
+
setDirection: zod_1.z.enum(["forward", "reverse"]).optional(),
|
|
61
|
+
setMethod: zod_1.z.string().optional(),
|
|
62
|
+
setEndpoint: zod_1.z.string().optional(),
|
|
63
|
+
setDescription: zod_1.z.string().optional(),
|
|
64
|
+
confidence: confidenceSchema,
|
|
65
|
+
evidence: zod_1.z.array(evidenceSchema),
|
|
66
|
+
});
|
|
67
|
+
exports.openAiProposalsResponseSchema = zod_1.z.object({
|
|
68
|
+
proposals: zod_1.z.array(zod_1.z.discriminatedUnion("kind", [componentPatchSchema, flowPatchSchema])),
|
|
69
|
+
});
|
|
70
|
+
/**
|
|
71
|
+
* JSON Schema for `response_format.json_schema`, with `$schema` removed for broader API compatibility.
|
|
72
|
+
* Use `strict: false` so Zod optional fields (OpenAI: non–all-required) remain valid.
|
|
73
|
+
*/
|
|
74
|
+
function getOpenAiProposalsResponseJsonSchemaForApi(options) {
|
|
75
|
+
const raw = zod_1.z.toJSONSchema(exports.openAiProposalsResponseSchema);
|
|
76
|
+
delete raw.$schema;
|
|
77
|
+
return {
|
|
78
|
+
name: "dataparade_proposals",
|
|
79
|
+
strict: options?.strict ?? false,
|
|
80
|
+
schema: raw,
|
|
81
|
+
};
|
|
82
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface PiiSignalRule {
|
|
2
|
+
id: string;
|
|
3
|
+
category: "identifiers" | "profile_data" | "credentials";
|
|
4
|
+
labels: string[];
|
|
5
|
+
patterns: RegExp[];
|
|
6
|
+
}
|
|
7
|
+
export declare function clearPiiSignalRulesCacheForTest(): void;
|
|
8
|
+
export declare function loadPiiSignalRules(): PiiSignalRule[];
|