@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,260 @@
|
|
|
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.clearClassifierConfigCacheForTest = clearClassifierConfigCacheForTest;
|
|
7
|
+
exports.loadClassifierConfig = loadClassifierConfig;
|
|
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 detection_1 = require("../core/types/detection");
|
|
13
|
+
const thirdPartyEntrySchema = zod_1.z.object({
|
|
14
|
+
serviceName: zod_1.z.string(),
|
|
15
|
+
matchKeys: zod_1.z.array(zod_1.z.string()).default([]),
|
|
16
|
+
type: zod_1.z.literal("third_party"),
|
|
17
|
+
subType: zod_1.z.string(),
|
|
18
|
+
});
|
|
19
|
+
const rawClassifierConfigSchema = zod_1.z.object({
|
|
20
|
+
name_normalization: zod_1.z
|
|
21
|
+
.object({
|
|
22
|
+
remove_suffixes: zod_1.z.array(zod_1.z.string()).default([]),
|
|
23
|
+
remove_suffix_patterns: zod_1.z.array(zod_1.z.string()).default([]),
|
|
24
|
+
trim_chars: zod_1.z.string().default(" _-"),
|
|
25
|
+
})
|
|
26
|
+
.default({
|
|
27
|
+
remove_suffixes: [],
|
|
28
|
+
remove_suffix_patterns: [],
|
|
29
|
+
trim_chars: " _-",
|
|
30
|
+
}),
|
|
31
|
+
pattern_defaults: zod_1.z.record(zod_1.z.string(), zod_1.z.object({
|
|
32
|
+
type: zod_1.z.enum(["asset", "actor", "third_party"]),
|
|
33
|
+
subType: zod_1.z.string().optional(),
|
|
34
|
+
priority: zod_1.z.number().int().optional(),
|
|
35
|
+
})),
|
|
36
|
+
database_type_mapping: zod_1.z
|
|
37
|
+
.record(zod_1.z.string(), zod_1.z.object({
|
|
38
|
+
subType: zod_1.z.string(),
|
|
39
|
+
}))
|
|
40
|
+
.default({}),
|
|
41
|
+
third_parties: zod_1.z.array(thirdPartyEntrySchema).default([]),
|
|
42
|
+
resolution: zod_1.z
|
|
43
|
+
.object({
|
|
44
|
+
prefer_third_party_over_asset: zod_1.z.boolean().default(true),
|
|
45
|
+
confidence_aggregation: zod_1.z.enum(["max", "average"]).default("max"),
|
|
46
|
+
})
|
|
47
|
+
.default({
|
|
48
|
+
prefer_third_party_over_asset: true,
|
|
49
|
+
confidence_aggregation: "max",
|
|
50
|
+
}),
|
|
51
|
+
env_variable_exclude_keys: zod_1.z.array(zod_1.z.string()).default([]),
|
|
52
|
+
});
|
|
53
|
+
const rawActorPatternDefaultsSchema = zod_1.z.object({
|
|
54
|
+
pattern_defaults: zod_1.z.record(zod_1.z.string(), zod_1.z.object({
|
|
55
|
+
type: zod_1.z.enum(["asset", "actor", "third_party"]),
|
|
56
|
+
subType: zod_1.z.string().optional(),
|
|
57
|
+
priority: zod_1.z.number().int().optional(),
|
|
58
|
+
})),
|
|
59
|
+
});
|
|
60
|
+
const thirdPartyCatalogSchema = zod_1.z.object({
|
|
61
|
+
third_parties: zod_1.z.array(thirdPartyEntrySchema).default([]),
|
|
62
|
+
});
|
|
63
|
+
function validatePatternId(rawValue, context) {
|
|
64
|
+
const id = String(rawValue);
|
|
65
|
+
if (!detection_1.PATTERN_IDS.includes(id)) {
|
|
66
|
+
throw new Error(`Invalid patternId '${rawValue}' in ${context}`);
|
|
67
|
+
}
|
|
68
|
+
return id;
|
|
69
|
+
}
|
|
70
|
+
function compileRegex(pattern) {
|
|
71
|
+
try {
|
|
72
|
+
return new RegExp(pattern, "i");
|
|
73
|
+
}
|
|
74
|
+
catch (err) {
|
|
75
|
+
const message = err instanceof Error ? err.message : "Unknown regex compilation error";
|
|
76
|
+
throw new Error(`Invalid regex pattern '${pattern}': ${message}`);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
function normalizeRawConfig(raw, actorPatterns) {
|
|
80
|
+
const nn = raw.name_normalization;
|
|
81
|
+
const nameNormalization = {
|
|
82
|
+
removeSuffixes: nn.remove_suffixes.map((s) => s.toLowerCase()),
|
|
83
|
+
removeSuffixPatterns: nn.remove_suffix_patterns.map((p) => compileRegex(p)),
|
|
84
|
+
trimChars: nn.trim_chars,
|
|
85
|
+
};
|
|
86
|
+
const patternDefaults = [];
|
|
87
|
+
for (const [patternKey, def] of Object.entries(raw.pattern_defaults)) {
|
|
88
|
+
const patternId = validatePatternId(patternKey, `pattern_defaults['${patternKey}']`);
|
|
89
|
+
patternDefaults.push({
|
|
90
|
+
patternId,
|
|
91
|
+
type: def.type,
|
|
92
|
+
subType: def.subType,
|
|
93
|
+
priority: def.priority ?? 100,
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
if (actorPatterns) {
|
|
97
|
+
for (const [patternKey, def] of Object.entries(actorPatterns.pattern_defaults)) {
|
|
98
|
+
const patternId = validatePatternId(patternKey, `actor.pattern_defaults['${patternKey}']`);
|
|
99
|
+
patternDefaults.push({
|
|
100
|
+
patternId,
|
|
101
|
+
type: def.type,
|
|
102
|
+
subType: def.subType,
|
|
103
|
+
priority: def.priority ?? 100,
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
const databaseTypeMapping = {};
|
|
108
|
+
for (const [key, value] of Object.entries(raw.database_type_mapping)) {
|
|
109
|
+
const normalizedKey = key.toLowerCase();
|
|
110
|
+
databaseTypeMapping[normalizedKey] = {
|
|
111
|
+
subType: value.subType,
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
const thirdParties = normalizeThirdParties(raw.third_parties);
|
|
115
|
+
const resolution = {
|
|
116
|
+
preferThirdPartyOverAsset: raw.resolution.prefer_third_party_over_asset ?? true,
|
|
117
|
+
confidenceAggregation: raw.resolution.confidence_aggregation ?? "max",
|
|
118
|
+
};
|
|
119
|
+
const envVariableExcludeKeys = new Set((raw.env_variable_exclude_keys ?? []).map((k) => k.toUpperCase()));
|
|
120
|
+
return {
|
|
121
|
+
nameNormalization,
|
|
122
|
+
patternDefaults,
|
|
123
|
+
databaseTypeMapping,
|
|
124
|
+
thirdParties,
|
|
125
|
+
resolution,
|
|
126
|
+
envVariableExcludeKeys,
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
function normalizeThirdParties(rawThirdParties) {
|
|
130
|
+
return rawThirdParties.map((tp) => ({
|
|
131
|
+
serviceName: tp.serviceName,
|
|
132
|
+
matchKeys: tp.matchKeys.map((k) => k.toLowerCase()),
|
|
133
|
+
type: "third_party",
|
|
134
|
+
subType: tp.subType,
|
|
135
|
+
}));
|
|
136
|
+
}
|
|
137
|
+
let cachedConfig;
|
|
138
|
+
function clearClassifierConfigCacheForTest() {
|
|
139
|
+
cachedConfig = undefined;
|
|
140
|
+
}
|
|
141
|
+
function getPatternsFilePath() {
|
|
142
|
+
const parts = __dirname.split(path_1.default.sep);
|
|
143
|
+
const distIndex = parts.lastIndexOf("dist");
|
|
144
|
+
let cliRoot;
|
|
145
|
+
if (distIndex !== -1) {
|
|
146
|
+
// e.g. /path/to/cli/dist/src/classifier -> /path/to/cli
|
|
147
|
+
cliRoot = parts.slice(0, distIndex).join(path_1.default.sep);
|
|
148
|
+
}
|
|
149
|
+
else {
|
|
150
|
+
// e.g. /path/to/cli/src/classifier -> /path/to/cli
|
|
151
|
+
cliRoot = path_1.default.resolve(__dirname, "..", "..");
|
|
152
|
+
}
|
|
153
|
+
return path_1.default.join(cliRoot, "patterns", "classifier", "components.classifier.yaml");
|
|
154
|
+
}
|
|
155
|
+
function loadClassifierConfig() {
|
|
156
|
+
if (cachedConfig) {
|
|
157
|
+
return cachedConfig;
|
|
158
|
+
}
|
|
159
|
+
const configPath = getPatternsFilePath();
|
|
160
|
+
const thirdPartyConfigPath = (() => {
|
|
161
|
+
const parts = __dirname.split(path_1.default.sep);
|
|
162
|
+
const distIndex = parts.lastIndexOf("dist");
|
|
163
|
+
let cliRoot;
|
|
164
|
+
if (distIndex !== -1) {
|
|
165
|
+
cliRoot = parts.slice(0, distIndex).join(path_1.default.sep);
|
|
166
|
+
}
|
|
167
|
+
else {
|
|
168
|
+
cliRoot = path_1.default.resolve(__dirname, "..", "..");
|
|
169
|
+
}
|
|
170
|
+
return path_1.default.join(cliRoot, "patterns", "classifier", "third-party.classifier.yaml");
|
|
171
|
+
})();
|
|
172
|
+
const actorPatternsPath = (() => {
|
|
173
|
+
const parts = __dirname.split(path_1.default.sep);
|
|
174
|
+
const distIndex = parts.lastIndexOf("dist");
|
|
175
|
+
let cliRoot;
|
|
176
|
+
if (distIndex !== -1) {
|
|
177
|
+
cliRoot = parts.slice(0, distIndex).join(path_1.default.sep);
|
|
178
|
+
}
|
|
179
|
+
else {
|
|
180
|
+
cliRoot = path_1.default.resolve(__dirname, "..", "..");
|
|
181
|
+
}
|
|
182
|
+
return path_1.default.join(cliRoot, "patterns", "classifier", "actors.classifier.yaml");
|
|
183
|
+
})();
|
|
184
|
+
let raw;
|
|
185
|
+
try {
|
|
186
|
+
raw = fs_1.default.readFileSync(configPath, "utf8");
|
|
187
|
+
}
|
|
188
|
+
catch (err) {
|
|
189
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
190
|
+
throw new Error(`Classifier config is required but could not be read from '${configPath}': ${message}`);
|
|
191
|
+
}
|
|
192
|
+
let parsed;
|
|
193
|
+
try {
|
|
194
|
+
parsed = yaml_1.default.parse(raw);
|
|
195
|
+
}
|
|
196
|
+
catch (err) {
|
|
197
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
198
|
+
throw new Error(`Classifier config at '${configPath}' could not be parsed as YAML: ${message}`);
|
|
199
|
+
}
|
|
200
|
+
let rawConfig;
|
|
201
|
+
try {
|
|
202
|
+
rawConfig = rawClassifierConfigSchema.parse(parsed);
|
|
203
|
+
}
|
|
204
|
+
catch (err) {
|
|
205
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
206
|
+
throw new Error(`Classifier config at '${configPath}' failed schema validation: ${message}`);
|
|
207
|
+
}
|
|
208
|
+
let actorPatterns;
|
|
209
|
+
try {
|
|
210
|
+
const rawActors = fs_1.default.readFileSync(actorPatternsPath, "utf8");
|
|
211
|
+
const parsedActors = yaml_1.default.parse(rawActors);
|
|
212
|
+
actorPatterns = rawActorPatternDefaultsSchema.parse(parsedActors);
|
|
213
|
+
}
|
|
214
|
+
catch (err) {
|
|
215
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
216
|
+
throw new Error(`Classifier actor config at '${actorPatternsPath}' could not be loaded or validated: ${message}`);
|
|
217
|
+
}
|
|
218
|
+
let normalized;
|
|
219
|
+
try {
|
|
220
|
+
normalized = normalizeRawConfig(rawConfig, actorPatterns);
|
|
221
|
+
}
|
|
222
|
+
catch (err) {
|
|
223
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
224
|
+
throw new Error(`Classifier config at '${configPath}' is invalid: ${message}`);
|
|
225
|
+
}
|
|
226
|
+
let thirdPartyRaw;
|
|
227
|
+
try {
|
|
228
|
+
thirdPartyRaw = fs_1.default.readFileSync(thirdPartyConfigPath, "utf8");
|
|
229
|
+
}
|
|
230
|
+
catch (err) {
|
|
231
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
232
|
+
throw new Error(`Third-party classifier catalog is required but could not be read from '${thirdPartyConfigPath}': ${message}`);
|
|
233
|
+
}
|
|
234
|
+
let thirdPartyParsed;
|
|
235
|
+
try {
|
|
236
|
+
thirdPartyParsed = yaml_1.default.parse(thirdPartyRaw);
|
|
237
|
+
}
|
|
238
|
+
catch (err) {
|
|
239
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
240
|
+
throw new Error(`Third-party classifier catalog at '${thirdPartyConfigPath}' could not be parsed as YAML: ${message}`);
|
|
241
|
+
}
|
|
242
|
+
let thirdPartyRawConfig;
|
|
243
|
+
try {
|
|
244
|
+
thirdPartyRawConfig = thirdPartyCatalogSchema.parse(thirdPartyParsed);
|
|
245
|
+
}
|
|
246
|
+
catch (err) {
|
|
247
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
248
|
+
throw new Error(`Third-party classifier catalog at '${thirdPartyConfigPath}' failed schema validation: ${message}`);
|
|
249
|
+
}
|
|
250
|
+
try {
|
|
251
|
+
const extraThirdParties = normalizeThirdParties(thirdPartyRawConfig.third_parties);
|
|
252
|
+
normalized.thirdParties = [...normalized.thirdParties, ...extraThirdParties];
|
|
253
|
+
cachedConfig = normalized;
|
|
254
|
+
return normalized;
|
|
255
|
+
}
|
|
256
|
+
catch (err) {
|
|
257
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
258
|
+
throw new Error(`Third-party classifier catalog at '${thirdPartyConfigPath}' is invalid: ${message}`);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Default values for all Engineering, Privacy, and Security properties
|
|
3
|
+
* per DataParade property models (Asset, Third Party, Actor).
|
|
4
|
+
*
|
|
5
|
+
* Property keys use snake_case to match backend DB column names
|
|
6
|
+
* (e.g. diagram_asset_contexts.hosting_type, technology_stack, encrypt_at_rest).
|
|
7
|
+
* Frontend API mappers accept both snake_case and camelCase when reading.
|
|
8
|
+
*
|
|
9
|
+
* Pattern detection (patterns/property.patterns.yaml + property-detection.ts) can set
|
|
10
|
+
* a subset of these from code/env/config; see DETECTABLE_PROPERTY_KEYS below.
|
|
11
|
+
* The rest are defaults-only (e.g. technical_owner, dpa_expiry_date) until we add
|
|
12
|
+
* detection rules or user input. Total: Asset ~115, Third Party ~90, Actor ~35 keys.
|
|
13
|
+
*/
|
|
14
|
+
export type PropertyDefaults = Record<string, unknown>;
|
|
15
|
+
/** Property keys that can be set by pattern detection (findings → component properties). */
|
|
16
|
+
export declare const DETECTABLE_PROPERTY_KEYS: ReadonlySet<string>;
|
|
17
|
+
/** All Asset properties (Engineering + Privacy + Security) from ASSET_PROPERTY_MODEL. */
|
|
18
|
+
export declare const ASSET_PROPERTY_DEFAULTS: PropertyDefaults;
|
|
19
|
+
/** Backend DB column names (snake_case) for asset context - align property keys with these where applicable. */
|
|
20
|
+
export declare const ASSET_CONTEXT_DB_COLUMNS: readonly ["hosting_type", "technology_stack", "cloud_provider", "region", "programming_language", "repository_url", "encrypt_at_rest", "access_controls", "access_control", "audit_logging_enabled", "data_categories", "data_retention_period_days", "data_deletion_process", "anonymization_capabilities", "pseudonymization_capabilities", "data_subject_categories", "processing_purpose", "supported_operations"];
|
|
21
|
+
/** All Third Party properties (Engineering + Privacy + Security) from THIRD_PARTY_PROPERTY_MODEL. */
|
|
22
|
+
export declare const THIRD_PARTY_PROPERTY_DEFAULTS: PropertyDefaults;
|
|
23
|
+
/** All Actor properties (Engineering + Privacy + Security) from ACTOR_PROPERTY_MODEL. */
|
|
24
|
+
export declare const ACTOR_PROPERTY_DEFAULTS: PropertyDefaults;
|
|
25
|
+
/**
|
|
26
|
+
* Returns the full property defaults for the given component type.
|
|
27
|
+
*/
|
|
28
|
+
export declare function getDefaultsForType(type: "asset" | "actor" | "third_party"): PropertyDefaults;
|
|
@@ -0,0 +1,369 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Default values for all Engineering, Privacy, and Security properties
|
|
4
|
+
* per DataParade property models (Asset, Third Party, Actor).
|
|
5
|
+
*
|
|
6
|
+
* Property keys use snake_case to match backend DB column names
|
|
7
|
+
* (e.g. diagram_asset_contexts.hosting_type, technology_stack, encrypt_at_rest).
|
|
8
|
+
* Frontend API mappers accept both snake_case and camelCase when reading.
|
|
9
|
+
*
|
|
10
|
+
* Pattern detection (patterns/property.patterns.yaml + property-detection.ts) can set
|
|
11
|
+
* a subset of these from code/env/config; see DETECTABLE_PROPERTY_KEYS below.
|
|
12
|
+
* The rest are defaults-only (e.g. technical_owner, dpa_expiry_date) until we add
|
|
13
|
+
* detection rules or user input. Total: Asset ~115, Third Party ~90, Actor ~35 keys.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ACTOR_PROPERTY_DEFAULTS = exports.THIRD_PARTY_PROPERTY_DEFAULTS = exports.ASSET_CONTEXT_DB_COLUMNS = exports.ASSET_PROPERTY_DEFAULTS = exports.DETECTABLE_PROPERTY_KEYS = void 0;
|
|
17
|
+
exports.getDefaultsForType = getDefaultsForType;
|
|
18
|
+
/** Property keys that can be set by pattern detection (findings → component properties). */
|
|
19
|
+
exports.DETECTABLE_PROPERTY_KEYS = new Set([
|
|
20
|
+
"mfa_required",
|
|
21
|
+
"authentication_method",
|
|
22
|
+
"audit_logging_enabled",
|
|
23
|
+
"cloud_provider",
|
|
24
|
+
"encrypt_at_rest",
|
|
25
|
+
"connection_encryption",
|
|
26
|
+
"integration_method",
|
|
27
|
+
"request_validation",
|
|
28
|
+
"region_location",
|
|
29
|
+
"key_rotation_period",
|
|
30
|
+
"backup_frequency",
|
|
31
|
+
"backup_encryption",
|
|
32
|
+
"sso_integration",
|
|
33
|
+
"https_enforced",
|
|
34
|
+
"api_type",
|
|
35
|
+
"request_logging_level",
|
|
36
|
+
"data_retention_period_days",
|
|
37
|
+
"ip_allowlisting",
|
|
38
|
+
"vendor_jurisdiction",
|
|
39
|
+
"documentation_url",
|
|
40
|
+
"api_version",
|
|
41
|
+
"integration_status",
|
|
42
|
+
"service_url_api_endpoint",
|
|
43
|
+
"sdk_available",
|
|
44
|
+
"code_reference_package",
|
|
45
|
+
]);
|
|
46
|
+
/** All Asset properties (Engineering + Privacy + Security) from ASSET_PROPERTY_MODEL. */
|
|
47
|
+
exports.ASSET_PROPERTY_DEFAULTS = {
|
|
48
|
+
// Engineering (common + database, application, service, api, config, etc.)
|
|
49
|
+
cloud_provider: null,
|
|
50
|
+
region_location: null,
|
|
51
|
+
technical_owner: null,
|
|
52
|
+
technology_stack: null,
|
|
53
|
+
hosting_type: null,
|
|
54
|
+
vendor: null,
|
|
55
|
+
version: null,
|
|
56
|
+
network_zone: null,
|
|
57
|
+
programming_language: null,
|
|
58
|
+
repository_url: null,
|
|
59
|
+
sdk_third_party_libraries: [],
|
|
60
|
+
database_engine: null,
|
|
61
|
+
high_availability_configuration: null,
|
|
62
|
+
read_replicas: false,
|
|
63
|
+
data_catalog_integration: null,
|
|
64
|
+
schema_enforcement: null,
|
|
65
|
+
infrastructure_type: null,
|
|
66
|
+
physical_deployment_location: null,
|
|
67
|
+
remote_access_capability: false,
|
|
68
|
+
service_tier_plan: null,
|
|
69
|
+
api_endpoint: null,
|
|
70
|
+
integration_method: [],
|
|
71
|
+
vendor_support_contact: null,
|
|
72
|
+
website_type: null,
|
|
73
|
+
cdn_provider: null,
|
|
74
|
+
static_vs_dynamic: null,
|
|
75
|
+
api_type: null,
|
|
76
|
+
api_versioning_strategy: null,
|
|
77
|
+
api_documentation_url: null,
|
|
78
|
+
rate_limiting: null,
|
|
79
|
+
api_visibility: null,
|
|
80
|
+
storage_service: null,
|
|
81
|
+
storage_class: null,
|
|
82
|
+
object_naming_convention: null,
|
|
83
|
+
app_store_urls: null,
|
|
84
|
+
distribution_method: null,
|
|
85
|
+
minimum_os_version: null,
|
|
86
|
+
disaster_recovery_setup: null,
|
|
87
|
+
failover_configuration: null,
|
|
88
|
+
waf_provider: null,
|
|
89
|
+
api_gateway: null,
|
|
90
|
+
backup_frequency: null,
|
|
91
|
+
backup_location: null,
|
|
92
|
+
default_credentials_changed: false,
|
|
93
|
+
network_segmentation: false,
|
|
94
|
+
intrusion_detection: false,
|
|
95
|
+
ddos_protection: false,
|
|
96
|
+
physical_security_measures: null,
|
|
97
|
+
vendor_soc2_iso27001: [],
|
|
98
|
+
// Privacy (common)
|
|
99
|
+
data_categories: [],
|
|
100
|
+
data_subject_categories: [],
|
|
101
|
+
processing_purpose: [],
|
|
102
|
+
supported_operations: null,
|
|
103
|
+
data_retention_period_days: null,
|
|
104
|
+
data_deletion_process: null,
|
|
105
|
+
anonymization_capabilities: false,
|
|
106
|
+
pseudonymization_capabilities: false,
|
|
107
|
+
vendor_jurisdiction: null,
|
|
108
|
+
data_residency_options: null,
|
|
109
|
+
data_processing_agreement_dpa: false,
|
|
110
|
+
dpa_expiry_date: null,
|
|
111
|
+
row_level_security: false,
|
|
112
|
+
column_level_encryption: false,
|
|
113
|
+
audit_table_exists: false,
|
|
114
|
+
data_classification: false,
|
|
115
|
+
sensitive_data_masking: false,
|
|
116
|
+
request_logging_level: null,
|
|
117
|
+
pii_in_request_response: false,
|
|
118
|
+
temporary_storage: false,
|
|
119
|
+
temporary_storage_duration: null,
|
|
120
|
+
cookie_usage: [],
|
|
121
|
+
cookie_consent_banner: false,
|
|
122
|
+
analytics_tools: [],
|
|
123
|
+
third_party_embeds: [],
|
|
124
|
+
user_accounts_required: false,
|
|
125
|
+
app_permissions_requested: [],
|
|
126
|
+
offline_functionality: false,
|
|
127
|
+
background_data_collection: false,
|
|
128
|
+
analytics_sdks: [],
|
|
129
|
+
local_data_storage: false,
|
|
130
|
+
// Security (common)
|
|
131
|
+
encrypt_at_rest: null,
|
|
132
|
+
key_rotation_period: null,
|
|
133
|
+
key_rotation: null,
|
|
134
|
+
pen_testing: false,
|
|
135
|
+
pen_test_frequency: null,
|
|
136
|
+
audit_logging_enabled: false,
|
|
137
|
+
access_control: null,
|
|
138
|
+
risk_rating: null,
|
|
139
|
+
backup_encryption: false,
|
|
140
|
+
point_in_time_recovery: false,
|
|
141
|
+
multi_region_replication: false,
|
|
142
|
+
database_firewall_rules: null,
|
|
143
|
+
connection_encryption: false,
|
|
144
|
+
ip_allowlisting: false,
|
|
145
|
+
sso_integration: false,
|
|
146
|
+
session_timeout_configuration: null,
|
|
147
|
+
request_validation: false,
|
|
148
|
+
response_filtering: false,
|
|
149
|
+
authentication_methods: [],
|
|
150
|
+
waf_web_application_firewall: false,
|
|
151
|
+
content_security_policy: false,
|
|
152
|
+
https_enforced: false,
|
|
153
|
+
security_headers: [],
|
|
154
|
+
cors_configuration: null,
|
|
155
|
+
access_logging: false,
|
|
156
|
+
versioning_enabled: false,
|
|
157
|
+
bucket_container_public_access: null,
|
|
158
|
+
lifecycle_policies: false,
|
|
159
|
+
cross_region_replication: false,
|
|
160
|
+
object_lock_immutability: false,
|
|
161
|
+
certificate_pinning: false,
|
|
162
|
+
jailbreak_root_detection: false,
|
|
163
|
+
code_obfuscation: false,
|
|
164
|
+
// isMainApplication omitted: only set to true on first api/service in enhanceComponents; others stay undefined
|
|
165
|
+
};
|
|
166
|
+
/** Backend DB column names (snake_case) for asset context - align property keys with these where applicable. */
|
|
167
|
+
exports.ASSET_CONTEXT_DB_COLUMNS = [
|
|
168
|
+
"hosting_type",
|
|
169
|
+
"technology_stack",
|
|
170
|
+
"cloud_provider",
|
|
171
|
+
"region",
|
|
172
|
+
"programming_language",
|
|
173
|
+
"repository_url",
|
|
174
|
+
"encrypt_at_rest",
|
|
175
|
+
"access_controls",
|
|
176
|
+
"access_control",
|
|
177
|
+
"audit_logging_enabled",
|
|
178
|
+
"data_categories",
|
|
179
|
+
"data_retention_period_days",
|
|
180
|
+
"data_deletion_process",
|
|
181
|
+
"anonymization_capabilities",
|
|
182
|
+
"pseudonymization_capabilities",
|
|
183
|
+
"data_subject_categories",
|
|
184
|
+
"processing_purpose",
|
|
185
|
+
"supported_operations",
|
|
186
|
+
];
|
|
187
|
+
/** All Third Party properties (Engineering + Privacy + Security) from THIRD_PARTY_PROPERTY_MODEL. */
|
|
188
|
+
exports.THIRD_PARTY_PROPERTY_DEFAULTS = {
|
|
189
|
+
// Engineering
|
|
190
|
+
technical_owner_team: null,
|
|
191
|
+
integration_method: null,
|
|
192
|
+
service_url_api_endpoint: null,
|
|
193
|
+
authentication_method: null,
|
|
194
|
+
integration_status: null,
|
|
195
|
+
documentation_url: null,
|
|
196
|
+
api_version: null,
|
|
197
|
+
technical_function: null,
|
|
198
|
+
service_tier_plan: null,
|
|
199
|
+
vendor: null,
|
|
200
|
+
rate_limits: null,
|
|
201
|
+
code_reference_package: null,
|
|
202
|
+
sla_uptime_guarantee: null,
|
|
203
|
+
vendor_support_contact: null,
|
|
204
|
+
customer_tier_plan: null,
|
|
205
|
+
customer_environment: null,
|
|
206
|
+
supported_export_formats: [],
|
|
207
|
+
webhook_endpoints_configured: false,
|
|
208
|
+
onboarding_status: null,
|
|
209
|
+
payment_methods_supported: [],
|
|
210
|
+
settlement_currency: [],
|
|
211
|
+
sandbox_test_environment: false,
|
|
212
|
+
webhook_events_configured: [],
|
|
213
|
+
cloud_services_used: [],
|
|
214
|
+
regions_availability_zones: [],
|
|
215
|
+
account_id: null,
|
|
216
|
+
support_plan: null,
|
|
217
|
+
resource_tagging_policy: false,
|
|
218
|
+
infrastructure_as_code: false,
|
|
219
|
+
api_type: null,
|
|
220
|
+
sdk_available: false,
|
|
221
|
+
response_format: [],
|
|
222
|
+
average_latency: null,
|
|
223
|
+
data_delivery_method: null,
|
|
224
|
+
update_frequency: null,
|
|
225
|
+
data_format: [],
|
|
226
|
+
data_volume: null,
|
|
227
|
+
etl_pipeline: null,
|
|
228
|
+
submission_method: null,
|
|
229
|
+
submission_frequency: null,
|
|
230
|
+
portal_url: null,
|
|
231
|
+
required_formats: [],
|
|
232
|
+
automated_submission: false,
|
|
233
|
+
// Privacy
|
|
234
|
+
gdpr_role: null,
|
|
235
|
+
processing_purpose: [],
|
|
236
|
+
data_processing_agreement_dpa: false,
|
|
237
|
+
dpa_expiry_date: null,
|
|
238
|
+
data_transfer_mechanism: null,
|
|
239
|
+
vendor_jurisdiction_country: null,
|
|
240
|
+
adequacy_decision_country: false,
|
|
241
|
+
privacy_policy_url: null,
|
|
242
|
+
customer_jurisdiction: null,
|
|
243
|
+
end_user_data_involved: false,
|
|
244
|
+
data_portability_obligations: false,
|
|
245
|
+
data_retention_period_days: null,
|
|
246
|
+
data_residency: null,
|
|
247
|
+
sub_processors: [],
|
|
248
|
+
right_to_deletion_support: false,
|
|
249
|
+
data_export_capability: false,
|
|
250
|
+
data_minimization_practices: null,
|
|
251
|
+
pci_scope: null,
|
|
252
|
+
cardholder_data_stored: false,
|
|
253
|
+
tokenization_used: false,
|
|
254
|
+
processing_locations: [],
|
|
255
|
+
data_encryption_managed_by: null,
|
|
256
|
+
mandatory_reporting_requirements: null,
|
|
257
|
+
legal_basis: null,
|
|
258
|
+
data_minimization_required: false,
|
|
259
|
+
retention_requirements_imposed: null,
|
|
260
|
+
pii_in_requests: false,
|
|
261
|
+
pii_in_responses: false,
|
|
262
|
+
temporary_data_storage_by_provider: false,
|
|
263
|
+
temporary_storage_duration: null,
|
|
264
|
+
source_data_collection_method: null,
|
|
265
|
+
legal_basis_for_provider_collection: null,
|
|
266
|
+
data_accuracy_guarantee: false,
|
|
267
|
+
data_categories_received: [],
|
|
268
|
+
// Security
|
|
269
|
+
encrypt_at_rest: null,
|
|
270
|
+
key_rotation_period: null,
|
|
271
|
+
compliance_certifications: [],
|
|
272
|
+
risk_rating: null,
|
|
273
|
+
last_assessment_date: null,
|
|
274
|
+
security_questionnaire_completed: false,
|
|
275
|
+
pen_testing: false,
|
|
276
|
+
pen_test_frequency: null,
|
|
277
|
+
audit_logging_enabled: false,
|
|
278
|
+
customer_security_requirements: null,
|
|
279
|
+
data_isolation_level: null,
|
|
280
|
+
tenant_isolation_type: null,
|
|
281
|
+
customer_compliance_requirements: [],
|
|
282
|
+
vendor_soc2_iso27001: [],
|
|
283
|
+
sso_integration: false,
|
|
284
|
+
ip_allowlisting: false,
|
|
285
|
+
session_timeout_configuration: null,
|
|
286
|
+
vendor_security_contact: null,
|
|
287
|
+
pci_dss_level: null,
|
|
288
|
+
pci_dss_validated: false,
|
|
289
|
+
fraud_detection_capabilities: false,
|
|
290
|
+
three_d_secure_support: false,
|
|
291
|
+
shared_responsibility_model_documented: false,
|
|
292
|
+
iam_configuration: null,
|
|
293
|
+
network_controls: [],
|
|
294
|
+
compliance_programs: [],
|
|
295
|
+
api_key_management: null,
|
|
296
|
+
mtls_support: false,
|
|
297
|
+
request_signing: false,
|
|
298
|
+
https_enforced: false,
|
|
299
|
+
delivery_encryption: false,
|
|
300
|
+
data_integrity_checks: false,
|
|
301
|
+
access_controls_for_delivery: null,
|
|
302
|
+
secure_submission_channel: false,
|
|
303
|
+
authentication_required: false,
|
|
304
|
+
audit_trail_required: false,
|
|
305
|
+
encryption_in_transit: false,
|
|
306
|
+
digital_signature_required: false,
|
|
307
|
+
hosting_type: null,
|
|
308
|
+
};
|
|
309
|
+
/** All Actor properties (Engineering + Privacy + Security) from ACTOR_PROPERTY_MODEL. */
|
|
310
|
+
exports.ACTOR_PROPERTY_DEFAULTS = {
|
|
311
|
+
// Engineering
|
|
312
|
+
actions: [],
|
|
313
|
+
authentication_method: null,
|
|
314
|
+
access_method: [],
|
|
315
|
+
session_duration: null,
|
|
316
|
+
customer_tier: null,
|
|
317
|
+
connected_asset: null,
|
|
318
|
+
access_role: null,
|
|
319
|
+
department_team: null,
|
|
320
|
+
authorization_model: null,
|
|
321
|
+
access_granularity: null,
|
|
322
|
+
provisioning_method: null,
|
|
323
|
+
access_frequency: null,
|
|
324
|
+
access_environment: [],
|
|
325
|
+
ip_restriction: false,
|
|
326
|
+
acl_reference: null,
|
|
327
|
+
privileged_access: false,
|
|
328
|
+
breakglass_access: false,
|
|
329
|
+
temporary_access: false,
|
|
330
|
+
emergency_access_procedure: null,
|
|
331
|
+
deprovisioning_process: null,
|
|
332
|
+
// Privacy
|
|
333
|
+
isDataSubject: false,
|
|
334
|
+
data_categories_provided: [],
|
|
335
|
+
processing_purpose: [],
|
|
336
|
+
consent_required: false,
|
|
337
|
+
jurisdiction_location: null,
|
|
338
|
+
data_view_filtering: null,
|
|
339
|
+
purpose_limitation_enforced: false,
|
|
340
|
+
data_minimization_applied: false,
|
|
341
|
+
privacy_training_completed: false,
|
|
342
|
+
data_access_scope: null,
|
|
343
|
+
cross_border_access: false,
|
|
344
|
+
// Security
|
|
345
|
+
risk_rating: null,
|
|
346
|
+
mfa_required: false,
|
|
347
|
+
account_expiry: false,
|
|
348
|
+
account_expiry_date: null,
|
|
349
|
+
least_privilege_enforced: false,
|
|
350
|
+
separation_of_duties: false,
|
|
351
|
+
need_to_know: false,
|
|
352
|
+
access_review_frequency: null,
|
|
353
|
+
last_access_review_date: null,
|
|
354
|
+
security_training_completed: false,
|
|
355
|
+
background_check_completed: false,
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* Returns the full property defaults for the given component type.
|
|
359
|
+
*/
|
|
360
|
+
function getDefaultsForType(type) {
|
|
361
|
+
switch (type) {
|
|
362
|
+
case "asset":
|
|
363
|
+
return { ...exports.ASSET_PROPERTY_DEFAULTS };
|
|
364
|
+
case "third_party":
|
|
365
|
+
return { ...exports.THIRD_PARTY_PROPERTY_DEFAULTS };
|
|
366
|
+
case "actor":
|
|
367
|
+
return { ...exports.ACTOR_PROPERTY_DEFAULTS };
|
|
368
|
+
}
|
|
369
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
2
|
+
/**
|
|
3
|
+
* Enhances a single component with defaults for all inferrable properties
|
|
4
|
+
* per node type (asset, actor, third_party). Does not set isMainApplication
|
|
5
|
+
* (that is applied in enhanceComponents).
|
|
6
|
+
*/
|
|
7
|
+
export declare function enhanceComponent(component: DetectedComponent): DetectedComponent;
|
|
8
|
+
/**
|
|
9
|
+
* Enhances all components with defaults for all node types, then sets
|
|
10
|
+
* isMainApplication on a "primary" app asset per section_id (framework-aware),
|
|
11
|
+
* and normalizes generic API display names.
|
|
12
|
+
*/
|
|
13
|
+
export declare function enhanceComponents(components: DetectedComponent[]): DetectedComponent[];
|