@ztothez/design-engineering 2.0.0
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 +15 -0
- package/README.md +448 -0
- package/ROADMAP.md +127 -0
- package/SKILL.md +698 -0
- package/V2-ROADMAP.md +431 -0
- package/V3-ROADMAP.md +605 -0
- package/V4-ROADMAP.md +283 -0
- package/clean-room-ux-design-spec.md +1431 -0
- package/dist/cli/aggregate-gates.d.ts +2 -0
- package/dist/cli/aggregate-gates.js +86 -0
- package/dist/cli/aggregate-gates.js.map +1 -0
- package/dist/cli/assess-maintainer-review.d.ts +2 -0
- package/dist/cli/assess-maintainer-review.js +72 -0
- package/dist/cli/assess-maintainer-review.js.map +1 -0
- package/dist/cli/audit.d.ts +2 -0
- package/dist/cli/audit.js +71 -0
- package/dist/cli/audit.js.map +1 -0
- package/dist/cli/compile-comparison-review.d.ts +2 -0
- package/dist/cli/compile-comparison-review.js +154 -0
- package/dist/cli/compile-comparison-review.js.map +1 -0
- package/dist/cli/compile-plan.d.ts +2 -0
- package/dist/cli/compile-plan.js +66 -0
- package/dist/cli/compile-plan.js.map +1 -0
- package/dist/cli/evaluate-corpus.d.ts +2 -0
- package/dist/cli/evaluate-corpus.js +65 -0
- package/dist/cli/evaluate-corpus.js.map +1 -0
- package/dist/cli/generate-react.d.ts +2 -0
- package/dist/cli/generate-react.js +83 -0
- package/dist/cli/generate-react.js.map +1 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +58 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/portfolio.d.ts +2 -0
- package/dist/cli/portfolio.js +316 -0
- package/dist/cli/portfolio.js.map +1 -0
- package/dist/cli/quality-gate.d.ts +2 -0
- package/dist/cli/quality-gate.js +131 -0
- package/dist/cli/quality-gate.js.map +1 -0
- package/dist/cli/repair-react.d.ts +2 -0
- package/dist/cli/repair-react.js +163 -0
- package/dist/cli/repair-react.js.map +1 -0
- package/dist/cli/review-heuristics.d.ts +2 -0
- package/dist/cli/review-heuristics.js +68 -0
- package/dist/cli/review-heuristics.js.map +1 -0
- package/dist/cli/validate-brief.d.ts +2 -0
- package/dist/cli/validate-brief.js +58 -0
- package/dist/cli/validate-brief.js.map +1 -0
- package/dist/cli/validate-comparison.d.ts +2 -0
- package/dist/cli/validate-comparison.js +68 -0
- package/dist/cli/validate-comparison.js.map +1 -0
- package/dist/cli/validate-contract.d.ts +2 -0
- package/dist/cli/validate-contract.js +54 -0
- package/dist/cli/validate-contract.js.map +1 -0
- package/dist/cli/validate-design.d.ts +2 -0
- package/dist/cli/validate-design.js +53 -0
- package/dist/cli/validate-design.js.map +1 -0
- package/dist/cli/validate-information.d.ts +2 -0
- package/dist/cli/validate-information.js +53 -0
- package/dist/cli/validate-information.js.map +1 -0
- package/dist/cli/validate-trust.d.ts +2 -0
- package/dist/cli/validate-trust.js +53 -0
- package/dist/cli/validate-trust.js.map +1 -0
- package/dist/cli/verify-ui.d.ts +2 -0
- package/dist/cli/verify-ui.js +181 -0
- package/dist/cli/verify-ui.js.map +1 -0
- package/dist/src/acceptance/evaluator.d.ts +13 -0
- package/dist/src/acceptance/evaluator.js +201 -0
- package/dist/src/acceptance/evaluator.js.map +1 -0
- package/dist/src/acceptance/loader.d.ts +2 -0
- package/dist/src/acceptance/loader.js +18 -0
- package/dist/src/acceptance/loader.js.map +1 -0
- package/dist/src/acceptance/report.d.ts +2 -0
- package/dist/src/acceptance/report.js +18 -0
- package/dist/src/acceptance/report.js.map +1 -0
- package/dist/src/acceptance/schema.d.ts +64 -0
- package/dist/src/acceptance/schema.js +57 -0
- package/dist/src/acceptance/schema.js.map +1 -0
- package/dist/src/acceptance/types.d.ts +47 -0
- package/dist/src/acceptance/types.js +2 -0
- package/dist/src/acceptance/types.js.map +1 -0
- package/dist/src/aggregate/report.d.ts +2 -0
- package/dist/src/aggregate/report.js +33 -0
- package/dist/src/aggregate/report.js.map +1 -0
- package/dist/src/aggregate/runner.d.ts +2 -0
- package/dist/src/aggregate/runner.js +165 -0
- package/dist/src/aggregate/runner.js.map +1 -0
- package/dist/src/aggregate/schema.d.ts +182 -0
- package/dist/src/aggregate/schema.js +54 -0
- package/dist/src/aggregate/schema.js.map +1 -0
- package/dist/src/aggregate/types.d.ts +57 -0
- package/dist/src/aggregate/types.js +2 -0
- package/dist/src/aggregate/types.js.map +1 -0
- package/dist/src/audit/policy.d.ts +3 -0
- package/dist/src/audit/policy.js +45 -0
- package/dist/src/audit/policy.js.map +1 -0
- package/dist/src/audit/report.d.ts +2 -0
- package/dist/src/audit/report.js +32 -0
- package/dist/src/audit/report.js.map +1 -0
- package/dist/src/audit/rules/accessibility-name.d.ts +2 -0
- package/dist/src/audit/rules/accessibility-name.js +64 -0
- package/dist/src/audit/rules/accessibility-name.js.map +1 -0
- package/dist/src/audit/rules/component-size.d.ts +2 -0
- package/dist/src/audit/rules/component-size.js +27 -0
- package/dist/src/audit/rules/component-size.js.map +1 -0
- package/dist/src/audit/rules/credential-placeholder.d.ts +2 -0
- package/dist/src/audit/rules/credential-placeholder.js +83 -0
- package/dist/src/audit/rules/credential-placeholder.js.map +1 -0
- package/dist/src/audit/rules/helpers.d.ts +16 -0
- package/dist/src/audit/rules/helpers.js +64 -0
- package/dist/src/audit/rules/helpers.js.map +1 -0
- package/dist/src/audit/rules/index.d.ts +2 -0
- package/dist/src/audit/rules/index.js +23 -0
- package/dist/src/audit/rules/index.js.map +1 -0
- package/dist/src/audit/rules/interactive-integrity.d.ts +2 -0
- package/dist/src/audit/rules/interactive-integrity.js +111 -0
- package/dist/src/audit/rules/interactive-integrity.js.map +1 -0
- package/dist/src/audit/rules/mixed-responsibilities.d.ts +2 -0
- package/dist/src/audit/rules/mixed-responsibilities.js +39 -0
- package/dist/src/audit/rules/mixed-responsibilities.js.map +1 -0
- package/dist/src/audit/rules/mock-production-path.d.ts +2 -0
- package/dist/src/audit/rules/mock-production-path.js +39 -0
- package/dist/src/audit/rules/mock-production-path.js.map +1 -0
- package/dist/src/audit/rules/network-state.d.ts +2 -0
- package/dist/src/audit/rules/network-state.js +39 -0
- package/dist/src/audit/rules/network-state.js.map +1 -0
- package/dist/src/audit/rules/operational-claim.d.ts +2 -0
- package/dist/src/audit/rules/operational-claim.js +94 -0
- package/dist/src/audit/rules/operational-claim.js.map +1 -0
- package/dist/src/audit/rules/placeholder-interaction.d.ts +2 -0
- package/dist/src/audit/rules/placeholder-interaction.js +46 -0
- package/dist/src/audit/rules/placeholder-interaction.js.map +1 -0
- package/dist/src/audit/rules/raw-design-values.d.ts +2 -0
- package/dist/src/audit/rules/raw-design-values.js +97 -0
- package/dist/src/audit/rules/raw-design-values.js.map +1 -0
- package/dist/src/audit/scanner.d.ts +2 -0
- package/dist/src/audit/scanner.js +215 -0
- package/dist/src/audit/scanner.js.map +1 -0
- package/dist/src/audit/types.d.ts +62 -0
- package/dist/src/audit/types.js +2 -0
- package/dist/src/audit/types.js.map +1 -0
- package/dist/src/comparison/evaluator.d.ts +2 -0
- package/dist/src/comparison/evaluator.js +478 -0
- package/dist/src/comparison/evaluator.js.map +1 -0
- package/dist/src/comparison/loader.d.ts +3 -0
- package/dist/src/comparison/loader.js +26 -0
- package/dist/src/comparison/loader.js.map +1 -0
- package/dist/src/comparison/maintainer.d.ts +47 -0
- package/dist/src/comparison/maintainer.js +218 -0
- package/dist/src/comparison/maintainer.js.map +1 -0
- package/dist/src/comparison/report.d.ts +2 -0
- package/dist/src/comparison/report.js +48 -0
- package/dist/src/comparison/report.js.map +1 -0
- package/dist/src/comparison/schema.d.ts +464 -0
- package/dist/src/comparison/schema.js +502 -0
- package/dist/src/comparison/schema.js.map +1 -0
- package/dist/src/contracts/archetypes.d.ts +21 -0
- package/dist/src/contracts/archetypes.js +102 -0
- package/dist/src/contracts/archetypes.js.map +1 -0
- package/dist/src/contracts/journeys.d.ts +7 -0
- package/dist/src/contracts/journeys.js +32 -0
- package/dist/src/contracts/journeys.js.map +1 -0
- package/dist/src/contracts/report.d.ts +2 -0
- package/dist/src/contracts/report.js +33 -0
- package/dist/src/contracts/report.js.map +1 -0
- package/dist/src/contracts/schema.d.ts +1038 -0
- package/dist/src/contracts/schema.js +385 -0
- package/dist/src/contracts/schema.js.map +1 -0
- package/dist/src/contracts/validator.d.ts +12 -0
- package/dist/src/contracts/validator.js +303 -0
- package/dist/src/contracts/validator.js.map +1 -0
- package/dist/src/corpus/evaluator.d.ts +2 -0
- package/dist/src/corpus/evaluator.js +203 -0
- package/dist/src/corpus/evaluator.js.map +1 -0
- package/dist/src/corpus/loader.d.ts +2 -0
- package/dist/src/corpus/loader.js +20 -0
- package/dist/src/corpus/loader.js.map +1 -0
- package/dist/src/corpus/report.d.ts +2 -0
- package/dist/src/corpus/report.js +33 -0
- package/dist/src/corpus/report.js.map +1 -0
- package/dist/src/corpus/schema.d.ts +316 -0
- package/dist/src/corpus/schema.js +269 -0
- package/dist/src/corpus/schema.js.map +1 -0
- package/dist/src/design-intelligence/loader.d.ts +2 -0
- package/dist/src/design-intelligence/loader.js +21 -0
- package/dist/src/design-intelligence/loader.js.map +1 -0
- package/dist/src/design-intelligence/report.d.ts +2 -0
- package/dist/src/design-intelligence/report.js +36 -0
- package/dist/src/design-intelligence/report.js.map +1 -0
- package/dist/src/design-intelligence/schema.d.ts +838 -0
- package/dist/src/design-intelligence/schema.js +854 -0
- package/dist/src/design-intelligence/schema.js.map +1 -0
- package/dist/src/design-intelligence/validator.d.ts +2 -0
- package/dist/src/design-intelligence/validator.js +1371 -0
- package/dist/src/design-intelligence/validator.js.map +1 -0
- package/dist/src/design-plan/compiler.d.ts +8 -0
- package/dist/src/design-plan/compiler.js +288 -0
- package/dist/src/design-plan/compiler.js.map +1 -0
- package/dist/src/design-plan/report.d.ts +2 -0
- package/dist/src/design-plan/report.js +28 -0
- package/dist/src/design-plan/report.js.map +1 -0
- package/dist/src/design-plan/schema.d.ts +202 -0
- package/dist/src/design-plan/schema.js +76 -0
- package/dist/src/design-plan/schema.js.map +1 -0
- package/dist/src/generation/loader.d.ts +2 -0
- package/dist/src/generation/loader.js +21 -0
- package/dist/src/generation/loader.js.map +1 -0
- package/dist/src/generation/policy.d.ts +12 -0
- package/dist/src/generation/policy.js +62 -0
- package/dist/src/generation/policy.js.map +1 -0
- package/dist/src/generation/react-typescript.d.ts +6 -0
- package/dist/src/generation/react-typescript.js +538 -0
- package/dist/src/generation/react-typescript.js.map +1 -0
- package/dist/src/generation/report.d.ts +2 -0
- package/dist/src/generation/report.js +21 -0
- package/dist/src/generation/report.js.map +1 -0
- package/dist/src/generation/schema.d.ts +44 -0
- package/dist/src/generation/schema.js +50 -0
- package/dist/src/generation/schema.js.map +1 -0
- package/dist/src/generation/templates/tokens.d.ts +1 -0
- package/dist/src/generation/templates/tokens.js +59 -0
- package/dist/src/generation/templates/tokens.js.map +1 -0
- package/dist/src/heuristics/evaluator.d.ts +2 -0
- package/dist/src/heuristics/evaluator.js +65 -0
- package/dist/src/heuristics/evaluator.js.map +1 -0
- package/dist/src/heuristics/loader.d.ts +2 -0
- package/dist/src/heuristics/loader.js +21 -0
- package/dist/src/heuristics/loader.js.map +1 -0
- package/dist/src/heuristics/report.d.ts +3 -0
- package/dist/src/heuristics/report.js +31 -0
- package/dist/src/heuristics/report.js.map +1 -0
- package/dist/src/heuristics/schema.d.ts +198 -0
- package/dist/src/heuristics/schema.js +197 -0
- package/dist/src/heuristics/schema.js.map +1 -0
- package/dist/src/information-design/loader.d.ts +2 -0
- package/dist/src/information-design/loader.js +21 -0
- package/dist/src/information-design/loader.js.map +1 -0
- package/dist/src/information-design/report.d.ts +2 -0
- package/dist/src/information-design/report.js +27 -0
- package/dist/src/information-design/report.js.map +1 -0
- package/dist/src/information-design/schema.d.ts +370 -0
- package/dist/src/information-design/schema.js +329 -0
- package/dist/src/information-design/schema.js.map +1 -0
- package/dist/src/information-design/validator.d.ts +2 -0
- package/dist/src/information-design/validator.js +242 -0
- package/dist/src/information-design/validator.js.map +1 -0
- package/dist/src/interface-trust/loader.d.ts +2 -0
- package/dist/src/interface-trust/loader.js +21 -0
- package/dist/src/interface-trust/loader.js.map +1 -0
- package/dist/src/interface-trust/report.d.ts +2 -0
- package/dist/src/interface-trust/report.js +26 -0
- package/dist/src/interface-trust/report.js.map +1 -0
- package/dist/src/interface-trust/schema.d.ts +299 -0
- package/dist/src/interface-trust/schema.js +238 -0
- package/dist/src/interface-trust/schema.js.map +1 -0
- package/dist/src/interface-trust/validator.d.ts +2 -0
- package/dist/src/interface-trust/validator.js +283 -0
- package/dist/src/interface-trust/validator.js.map +1 -0
- package/dist/src/portfolio/adapter-report.d.ts +3 -0
- package/dist/src/portfolio/adapter-report.js +38 -0
- package/dist/src/portfolio/adapter-report.js.map +1 -0
- package/dist/src/portfolio/adapters.d.ts +37 -0
- package/dist/src/portfolio/adapters.js +325 -0
- package/dist/src/portfolio/adapters.js.map +1 -0
- package/dist/src/portfolio/evidence.d.ts +9 -0
- package/dist/src/portfolio/evidence.js +233 -0
- package/dist/src/portfolio/evidence.js.map +1 -0
- package/dist/src/portfolio/files.d.ts +8 -0
- package/dist/src/portfolio/files.js +77 -0
- package/dist/src/portfolio/files.js.map +1 -0
- package/dist/src/portfolio/fixture-server.d.ts +11 -0
- package/dist/src/portfolio/fixture-server.js +131 -0
- package/dist/src/portfolio/fixture-server.js.map +1 -0
- package/dist/src/portfolio/loader.d.ts +2 -0
- package/dist/src/portfolio/loader.js +21 -0
- package/dist/src/portfolio/loader.js.map +1 -0
- package/dist/src/portfolio/mcp.d.ts +186 -0
- package/dist/src/portfolio/mcp.js +117 -0
- package/dist/src/portfolio/mcp.js.map +1 -0
- package/dist/src/portfolio/promotion-schema.d.ts +220 -0
- package/dist/src/portfolio/promotion-schema.js +148 -0
- package/dist/src/portfolio/promotion-schema.js.map +1 -0
- package/dist/src/portfolio/promotion.d.ts +4 -0
- package/dist/src/portfolio/promotion.js +160 -0
- package/dist/src/portfolio/promotion.js.map +1 -0
- package/dist/src/portfolio/qualification-schema.d.ts +268 -0
- package/dist/src/portfolio/qualification-schema.js +112 -0
- package/dist/src/portfolio/qualification-schema.js.map +1 -0
- package/dist/src/portfolio/qualification.d.ts +4 -0
- package/dist/src/portfolio/qualification.js +157 -0
- package/dist/src/portfolio/qualification.js.map +1 -0
- package/dist/src/portfolio/registry.d.ts +34 -0
- package/dist/src/portfolio/registry.js +240 -0
- package/dist/src/portfolio/registry.js.map +1 -0
- package/dist/src/portfolio/report.d.ts +4 -0
- package/dist/src/portfolio/report.js +47 -0
- package/dist/src/portfolio/report.js.map +1 -0
- package/dist/src/portfolio/run-schema.d.ts +135 -0
- package/dist/src/portfolio/run-schema.js +81 -0
- package/dist/src/portfolio/run-schema.js.map +1 -0
- package/dist/src/portfolio/runner.d.ts +118 -0
- package/dist/src/portfolio/runner.js +423 -0
- package/dist/src/portfolio/runner.js.map +1 -0
- package/dist/src/portfolio/schema.d.ts +251 -0
- package/dist/src/portfolio/schema.js +317 -0
- package/dist/src/portfolio/schema.js.map +1 -0
- package/dist/src/portfolio/snapshot.d.ts +89 -0
- package/dist/src/portfolio/snapshot.js +548 -0
- package/dist/src/portfolio/snapshot.js.map +1 -0
- package/dist/src/portfolio/taxonomy-schema.d.ts +215 -0
- package/dist/src/portfolio/taxonomy-schema.js +74 -0
- package/dist/src/portfolio/taxonomy-schema.js.map +1 -0
- package/dist/src/portfolio/taxonomy.d.ts +5 -0
- package/dist/src/portfolio/taxonomy.js +236 -0
- package/dist/src/portfolio/taxonomy.js.map +1 -0
- package/dist/src/portfolio/vault.d.ts +53 -0
- package/dist/src/portfolio/vault.js +176 -0
- package/dist/src/portfolio/vault.js.map +1 -0
- package/dist/src/product-brief/loader.d.ts +2 -0
- package/dist/src/product-brief/loader.js +21 -0
- package/dist/src/product-brief/loader.js.map +1 -0
- package/dist/src/product-brief/report.d.ts +2 -0
- package/dist/src/product-brief/report.js +22 -0
- package/dist/src/product-brief/report.js.map +1 -0
- package/dist/src/product-brief/schema.d.ts +367 -0
- package/dist/src/product-brief/schema.js +272 -0
- package/dist/src/product-brief/schema.js.map +1 -0
- package/dist/src/product-brief/validator.d.ts +2 -0
- package/dist/src/product-brief/validator.js +251 -0
- package/dist/src/product-brief/validator.js.map +1 -0
- package/dist/src/product.d.ts +7 -0
- package/dist/src/product.js +28 -0
- package/dist/src/product.js.map +1 -0
- package/dist/src/quality-gate/report.d.ts +2 -0
- package/dist/src/quality-gate/report.js +46 -0
- package/dist/src/quality-gate/report.js.map +1 -0
- package/dist/src/quality-gate/runner.d.ts +2 -0
- package/dist/src/quality-gate/runner.js +175 -0
- package/dist/src/quality-gate/runner.js.map +1 -0
- package/dist/src/quality-gate/schema.d.ts +75 -0
- package/dist/src/quality-gate/schema.js +37 -0
- package/dist/src/quality-gate/schema.js.map +1 -0
- package/dist/src/quality-gate/types.d.ts +49 -0
- package/dist/src/quality-gate/types.js +2 -0
- package/dist/src/quality-gate/types.js.map +1 -0
- package/dist/src/repair/loader.d.ts +2 -0
- package/dist/src/repair/loader.js +11 -0
- package/dist/src/repair/loader.js.map +1 -0
- package/dist/src/repair/policy.d.ts +16 -0
- package/dist/src/repair/policy.js +65 -0
- package/dist/src/repair/policy.js.map +1 -0
- package/dist/src/repair/report.d.ts +2 -0
- package/dist/src/repair/report.js +32 -0
- package/dist/src/repair/report.js.map +1 -0
- package/dist/src/repair/runner.d.ts +17 -0
- package/dist/src/repair/runner.js +511 -0
- package/dist/src/repair/runner.js.map +1 -0
- package/dist/src/repair/schema.d.ts +264 -0
- package/dist/src/repair/schema.js +202 -0
- package/dist/src/repair/schema.js.map +1 -0
- package/dist/src/retrieval/report.d.ts +2 -0
- package/dist/src/retrieval/report.js +21 -0
- package/dist/src/retrieval/report.js.map +1 -0
- package/dist/src/retrieval/schema.d.ts +123 -0
- package/dist/src/retrieval/schema.js +77 -0
- package/dist/src/retrieval/schema.js.map +1 -0
- package/dist/src/retrieval/search.d.ts +26 -0
- package/dist/src/retrieval/search.js +415 -0
- package/dist/src/retrieval/search.js.map +1 -0
- package/dist/src/runtime/advanced-checks.d.ts +6 -0
- package/dist/src/runtime/advanced-checks.js +487 -0
- package/dist/src/runtime/advanced-checks.js.map +1 -0
- package/dist/src/runtime/composition-checks.d.ts +5 -0
- package/dist/src/runtime/composition-checks.js +307 -0
- package/dist/src/runtime/composition-checks.js.map +1 -0
- package/dist/src/runtime/interface-checks.d.ts +12 -0
- package/dist/src/runtime/interface-checks.js +224 -0
- package/dist/src/runtime/interface-checks.js.map +1 -0
- package/dist/src/runtime/policy.d.ts +13 -0
- package/dist/src/runtime/policy.js +97 -0
- package/dist/src/runtime/policy.js.map +1 -0
- package/dist/src/runtime/report.d.ts +2 -0
- package/dist/src/runtime/report.js +48 -0
- package/dist/src/runtime/report.js.map +1 -0
- package/dist/src/runtime/schema.d.ts +406 -0
- package/dist/src/runtime/schema.js +308 -0
- package/dist/src/runtime/schema.js.map +1 -0
- package/dist/src/runtime/types.d.ts +177 -0
- package/dist/src/runtime/types.js +2 -0
- package/dist/src/runtime/types.js.map +1 -0
- package/dist/src/runtime/verifier.d.ts +2 -0
- package/dist/src/runtime/verifier.js +1201 -0
- package/dist/src/runtime/verifier.js.map +1 -0
- package/dist/src/server.d.ts +2 -0
- package/dist/src/server.js +1352 -0
- package/dist/src/server.js.map +1 -0
- package/docs/installation.md +337 -0
- package/knowledge-base/INDEX.md +285 -0
- package/knowledge-base/benchmarks/aegisops/CALIBRATION.md +52 -0
- package/knowledge-base/benchmarks/aegisops/MANIFEST.md +56 -0
- package/knowledge-base/benchmarks/aegisops/SOURCE-EVIDENCE.md +45 -0
- package/knowledge-base/benchmarks/aegisops/acceptance-criteria.md +42 -0
- package/knowledge-base/benchmarks/aegisops/anti-patterns.md +19 -0
- package/knowledge-base/benchmarks/aegisops/attestations.template.yaml +3 -0
- package/knowledge-base/benchmarks/aegisops/attestations.yaml +115 -0
- package/knowledge-base/benchmarks/aegisops/journeys.json +91 -0
- package/knowledge-base/benchmarks/aegisops/product-contract.yaml +328 -0
- package/knowledge-base/benchmarks/azure-optimizer/SOURCE-EVIDENCE.md +26 -0
- package/knowledge-base/benchmarks/azure-optimizer/V2-IMPLEMENTATION.md +39 -0
- package/knowledge-base/benchmarks/azure-optimizer/acceptance-criteria.md +23 -0
- package/knowledge-base/benchmarks/azure-optimizer/anti-patterns.md +13 -0
- package/knowledge-base/benchmarks/azure-optimizer/journeys.json +88 -0
- package/knowledge-base/benchmarks/azure-optimizer/product-contract.yaml +216 -0
- package/knowledge-base/benchmarks/azure-optimizer/v2-human-review-methodology.yaml +171 -0
- package/knowledge-base/benchmarks/azure-optimizer/v2-journeys.json +139 -0
- package/knowledge-base/benchmarks/corpus/PROVENANCE.md +21 -0
- package/knowledge-base/benchmarks/corpus/README.md +30 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-negative/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-negative/src/FakeDashboard.tsx +10 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-positive/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-positive/src/Progress.tsx +15 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-negative/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-negative/src/OperationsPanel.tsx +40 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-positive/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-positive/src/Dashboard.tsx +17 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-positive/src/theme.css +15 -0
- package/knowledge-base/benchmarks/corpus/cases/task-incomplete/SOURCE-EVIDENCE.md +3 -0
- package/knowledge-base/benchmarks/corpus/cases/task-incomplete/journeys.json +20 -0
- package/knowledge-base/benchmarks/corpus/cases/task-incomplete/product-contract.yaml +78 -0
- package/knowledge-base/benchmarks/corpus/corpus.schema.yaml +159 -0
- package/knowledge-base/benchmarks/corpus/corpus.yaml +209 -0
- package/knowledge-base/benchmarks/interface-quality/README.md +26 -0
- package/knowledge-base/benchmarks/interface-quality/SOLO-MAINTAINER-TRACK.md +35 -0
- package/knowledge-base/benchmarks/interface-quality/comparison-methodology-v1.1.schema.yaml +288 -0
- package/knowledge-base/benchmarks/interface-quality/comparison-methodology.schema.yaml +235 -0
- package/knowledge-base/benchmarks/interface-quality/comparison-methodology.template.yaml +181 -0
- package/knowledge-base/benchmarks/interface-quality/evidence/example-runtime-report.json +11 -0
- package/knowledge-base/benchmarks/interface-quality/review-session.schema.yaml +14 -0
- package/knowledge-base/benchmarks/interface-quality/review.schema.yaml +296 -0
- package/knowledge-base/benchmarks/interface-quality/review.template.yaml +43 -0
- package/knowledge-base/benchmarks/portfolio-corpus/ADAPTERS.md +68 -0
- package/knowledge-base/benchmarks/portfolio-corpus/PORTFOLIO-RUNNER.md +131 -0
- package/knowledge-base/benchmarks/portfolio-corpus/PRODUCT-TASK-CONTRACTS.md +29 -0
- package/knowledge-base/benchmarks/portfolio-corpus/PROMOTED-RULES.md +31 -0
- package/knowledge-base/benchmarks/portfolio-corpus/archetype-profiles.yaml +26 -0
- package/knowledge-base/benchmarks/portfolio-corpus/product-task-profile.schema.yaml +105 -0
- package/knowledge-base/benchmarks/portfolio-corpus/registry.schema.yaml +188 -0
- package/knowledge-base/benchmarks/portfolio-corpus/registry.template.yaml +63 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/component-size-abstention.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/component-size-negative.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/component-size-positive.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/interactive-integrity-abstention.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/interactive-integrity-negative.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/interactive-integrity-positive.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/raw-design-values-abstention.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/raw-design-values-negative.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/raw-design-values-positive.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-holdout-evaluation.template.json +14 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-promotion-evidence.template.json +24 -0
- package/knowledge-base/benchmarks/portfolio-corpus/v3-command-evidence.template.json +17 -0
- package/knowledge-base/benchmarks/portfolio-corpus/v3-qualification-evidence.template.json +29 -0
- package/knowledge-base/benchmarks/scenestart/CALIBRATION.md +95 -0
- package/knowledge-base/benchmarks/scenestart/MANIFEST.md +53 -0
- package/knowledge-base/benchmarks/scenestart/SOURCE-EVIDENCE.md +43 -0
- package/knowledge-base/benchmarks/scenestart/acceptance-criteria.md +59 -0
- package/knowledge-base/benchmarks/scenestart/anti-patterns.md +26 -0
- package/knowledge-base/benchmarks/scenestart/attestations.template.yaml +3 -0
- package/knowledge-base/benchmarks/scenestart/attestations.yaml +21 -0
- package/knowledge-base/benchmarks/scenestart/human-review.md +99 -0
- package/knowledge-base/benchmarks/scenestart/human-review.template.md +105 -0
- package/knowledge-base/benchmarks/scenestart/journeys.json +141 -0
- package/knowledge-base/benchmarks/scenestart/product-contract.yaml +427 -0
- package/knowledge-base/dependencies.yaml +69 -0
- package/knowledge-base/design-intelligence/MASTER.md +87 -0
- package/knowledge-base/design-intelligence/asset-generation.md +66 -0
- package/knowledge-base/design-intelligence/brand-systems.md +69 -0
- package/knowledge-base/design-intelligence/closed-loop-repair.md +95 -0
- package/knowledge-base/design-intelligence/design-deliverable.schema.yaml +1194 -0
- package/knowledge-base/design-intelligence/design-deliverable.template.yaml +591 -0
- package/knowledge-base/design-intelligence/design-plan.md +78 -0
- package/knowledge-base/design-intelligence/design-plan.schema.yaml +621 -0
- package/knowledge-base/design-intelligence/figma-production.md +63 -0
- package/knowledge-base/design-intelligence/generation-adapter.md +72 -0
- package/knowledge-base/design-intelligence/generation-adapter.schema.yaml +47 -0
- package/knowledge-base/design-intelligence/iconography.md +46 -0
- package/knowledge-base/design-intelligence/information-design.md +104 -0
- package/knowledge-base/design-intelligence/information-design.schema.yaml +390 -0
- package/knowledge-base/design-intelligence/information-design.template.yaml +281 -0
- package/knowledge-base/design-intelligence/interaction-recovery-verification.md +72 -0
- package/knowledge-base/design-intelligence/interface-trust.md +103 -0
- package/knowledge-base/design-intelligence/interface-trust.schema.yaml +263 -0
- package/knowledge-base/design-intelligence/interface-trust.template.yaml +173 -0
- package/knowledge-base/design-intelligence/licensing-and-provenance.md +59 -0
- package/knowledge-base/design-intelligence/presentation-design.md +56 -0
- package/knowledge-base/design-intelligence/product-design-brief.md +67 -0
- package/knowledge-base/design-intelligence/product-design-brief.schema.yaml +279 -0
- package/knowledge-base/design-intelligence/product-design-brief.template.yaml +225 -0
- package/knowledge-base/design-intelligence/repair-request.schema.yaml +95 -0
- package/knowledge-base/design-intelligence/repair-request.template.yaml +39 -0
- package/knowledge-base/design-intelligence/visual-accessibility.md +56 -0
- package/knowledge-base/design-intelligence/visual-polish.md +172 -0
- package/knowledge-base/maintained/architecture/MASTER.md +22 -0
- package/knowledge-base/maintained/architecture/component-boundaries.md +30 -0
- package/knowledge-base/maintained/architecture/product-platforms.md +25 -0
- package/knowledge-base/maintained/architecture/quality-attributes-and-evaluation.md +35 -0
- package/knowledge-base/maintained/product-patterns/MASTER.md +10 -0
- package/knowledge-base/maintained/product-patterns/ai-workspaces.md +26 -0
- package/knowledge-base/maintained/product-patterns/operational-dashboards.md +22 -0
- package/knowledge-base/provenance.yaml +196 -0
- package/knowledge-base/retrieval-scope.yaml +43 -0
- package/knowledge-base/usability-evaluation/HEURISTIC_EVALUATION.md +115 -0
- package/knowledge-base/usability-evaluation/heuristic-review.schema.yaml +210 -0
- package/knowledge-base/usability-evaluation/heuristic-review.template.yaml +37 -0
- package/package.json +133 -0
|
@@ -0,0 +1,838 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const deliverableKindSchema: z.ZodEnum<{
|
|
3
|
+
"interface-system": "interface-system";
|
|
4
|
+
"brand-system": "brand-system";
|
|
5
|
+
"figma-library": "figma-library";
|
|
6
|
+
"asset-set": "asset-set";
|
|
7
|
+
"icon-system": "icon-system";
|
|
8
|
+
presentation: "presentation";
|
|
9
|
+
}>;
|
|
10
|
+
export declare const generationStageSchema: z.ZodEnum<{
|
|
11
|
+
"product-task": "product-task";
|
|
12
|
+
"truth-data-source-contract": "truth-data-source-contract";
|
|
13
|
+
"information-architecture": "information-architecture";
|
|
14
|
+
"interaction-state-model": "interaction-state-model";
|
|
15
|
+
"visual-direction": "visual-direction";
|
|
16
|
+
"token-architecture": "token-architecture";
|
|
17
|
+
implementation: "implementation";
|
|
18
|
+
"automated-verification": "automated-verification";
|
|
19
|
+
"human-visual-review": "human-visual-review";
|
|
20
|
+
}>;
|
|
21
|
+
export declare const designDeliverableSchema: z.ZodObject<{
|
|
22
|
+
version: z.ZodEnum<{
|
|
23
|
+
"1.0": "1.0";
|
|
24
|
+
2.1: "2.1";
|
|
25
|
+
"2.0": "2.0";
|
|
26
|
+
}>;
|
|
27
|
+
id: z.ZodString;
|
|
28
|
+
product: z.ZodString;
|
|
29
|
+
preparedAt: z.ZodString;
|
|
30
|
+
preparedBy: z.ZodObject<{
|
|
31
|
+
type: z.ZodEnum<{
|
|
32
|
+
agent: "agent";
|
|
33
|
+
human: "human";
|
|
34
|
+
mixed: "mixed";
|
|
35
|
+
}>;
|
|
36
|
+
name: z.ZodString;
|
|
37
|
+
}, z.core.$strict>;
|
|
38
|
+
scope: z.ZodObject<{
|
|
39
|
+
deliverables: z.ZodArray<z.ZodEnum<{
|
|
40
|
+
"interface-system": "interface-system";
|
|
41
|
+
"brand-system": "brand-system";
|
|
42
|
+
"figma-library": "figma-library";
|
|
43
|
+
"asset-set": "asset-set";
|
|
44
|
+
"icon-system": "icon-system";
|
|
45
|
+
presentation: "presentation";
|
|
46
|
+
}>>;
|
|
47
|
+
audience: z.ZodString;
|
|
48
|
+
channels: z.ZodArray<z.ZodEnum<{
|
|
49
|
+
desktop: "desktop";
|
|
50
|
+
presentation: "presentation";
|
|
51
|
+
web: "web";
|
|
52
|
+
mobile: "mobile";
|
|
53
|
+
print: "print";
|
|
54
|
+
social: "social";
|
|
55
|
+
}>>;
|
|
56
|
+
}, z.core.$strict>;
|
|
57
|
+
tokenSystem: z.ZodObject<{
|
|
58
|
+
tokens: z.ZodArray<z.ZodObject<{
|
|
59
|
+
name: z.ZodString;
|
|
60
|
+
type: z.ZodEnum<{
|
|
61
|
+
number: "number";
|
|
62
|
+
duration: "duration";
|
|
63
|
+
dimension: "dimension";
|
|
64
|
+
color: "color";
|
|
65
|
+
"font-family": "font-family";
|
|
66
|
+
"font-weight": "font-weight";
|
|
67
|
+
shadow: "shadow";
|
|
68
|
+
}>;
|
|
69
|
+
level: z.ZodEnum<{
|
|
70
|
+
component: "component";
|
|
71
|
+
primitive: "primitive";
|
|
72
|
+
semantic: "semantic";
|
|
73
|
+
}>;
|
|
74
|
+
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
75
|
+
reference: z.ZodOptional<z.ZodString>;
|
|
76
|
+
description: z.ZodString;
|
|
77
|
+
}, z.core.$strict>>;
|
|
78
|
+
modes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
79
|
+
name: z.ZodString;
|
|
80
|
+
overrides: z.ZodArray<z.ZodObject<{
|
|
81
|
+
token: z.ZodString;
|
|
82
|
+
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
83
|
+
reference: z.ZodOptional<z.ZodString>;
|
|
84
|
+
}, z.core.$strict>>;
|
|
85
|
+
}, z.core.$strict>>>;
|
|
86
|
+
}, z.core.$strict>;
|
|
87
|
+
productTask: z.ZodOptional<z.ZodObject<{
|
|
88
|
+
productContractId: z.ZodString;
|
|
89
|
+
contractPath: z.ZodString;
|
|
90
|
+
primaryUser: z.ZodString;
|
|
91
|
+
task: z.ZodString;
|
|
92
|
+
successCriteria: z.ZodArray<z.ZodString>;
|
|
93
|
+
consequentialActions: z.ZodArray<z.ZodString>;
|
|
94
|
+
}, z.core.$strict>>;
|
|
95
|
+
interfaceTrust: z.ZodOptional<z.ZodObject<{
|
|
96
|
+
contractId: z.ZodString;
|
|
97
|
+
contractPath: z.ZodString;
|
|
98
|
+
version: z.ZodLiteral<"1.0">;
|
|
99
|
+
status: z.ZodEnum<{
|
|
100
|
+
declared: "declared";
|
|
101
|
+
validated: "validated";
|
|
102
|
+
}>;
|
|
103
|
+
requiredScenarios: z.ZodArray<z.ZodEnum<{
|
|
104
|
+
disconnected: "disconnected";
|
|
105
|
+
stale: "stale";
|
|
106
|
+
fallback: "fallback";
|
|
107
|
+
demo: "demo";
|
|
108
|
+
live: "live";
|
|
109
|
+
}>>;
|
|
110
|
+
reportPath: z.ZodOptional<z.ZodString>;
|
|
111
|
+
evidenceRef: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, z.core.$strict>>;
|
|
113
|
+
informationHierarchy: z.ZodOptional<z.ZodObject<{
|
|
114
|
+
contractId: z.ZodString;
|
|
115
|
+
contractPath: z.ZodString;
|
|
116
|
+
version: z.ZodLiteral<"1.0">;
|
|
117
|
+
status: z.ZodEnum<{
|
|
118
|
+
declared: "declared";
|
|
119
|
+
validated: "validated";
|
|
120
|
+
}>;
|
|
121
|
+
levels: z.ZodArray<z.ZodEnum<{
|
|
122
|
+
"context-provenance": "context-provenance";
|
|
123
|
+
"primary-outcome-action": "primary-outcome-action";
|
|
124
|
+
"critical-exceptions": "critical-exceptions";
|
|
125
|
+
"health-impact-metrics": "health-impact-metrics";
|
|
126
|
+
"prioritized-findings": "prioritized-findings";
|
|
127
|
+
"operational-telemetry": "operational-telemetry";
|
|
128
|
+
"evidence-audit-trail": "evidence-audit-trail";
|
|
129
|
+
"history-exports": "history-exports";
|
|
130
|
+
}>>;
|
|
131
|
+
reportPath: z.ZodOptional<z.ZodString>;
|
|
132
|
+
evidenceRef: z.ZodOptional<z.ZodString>;
|
|
133
|
+
}, z.core.$strict>>;
|
|
134
|
+
metricContracts: z.ZodOptional<z.ZodObject<{
|
|
135
|
+
informationContractId: z.ZodString;
|
|
136
|
+
metrics: z.ZodArray<z.ZodObject<{
|
|
137
|
+
metricId: z.ZodString;
|
|
138
|
+
decision: z.ZodString;
|
|
139
|
+
hierarchyLevel: z.ZodEnum<{
|
|
140
|
+
"primary-outcome-action": "primary-outcome-action";
|
|
141
|
+
"health-impact-metrics": "health-impact-metrics";
|
|
142
|
+
"operational-telemetry": "operational-telemetry";
|
|
143
|
+
}>;
|
|
144
|
+
chartRefs: z.ZodArray<z.ZodString>;
|
|
145
|
+
}, z.core.$strict>>;
|
|
146
|
+
}, z.core.$strict>>;
|
|
147
|
+
generationWorkflow: z.ZodOptional<z.ZodObject<{
|
|
148
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
149
|
+
stage: z.ZodEnum<{
|
|
150
|
+
"product-task": "product-task";
|
|
151
|
+
"truth-data-source-contract": "truth-data-source-contract";
|
|
152
|
+
"information-architecture": "information-architecture";
|
|
153
|
+
"interaction-state-model": "interaction-state-model";
|
|
154
|
+
"visual-direction": "visual-direction";
|
|
155
|
+
"token-architecture": "token-architecture";
|
|
156
|
+
implementation: "implementation";
|
|
157
|
+
"automated-verification": "automated-verification";
|
|
158
|
+
"human-visual-review": "human-visual-review";
|
|
159
|
+
}>;
|
|
160
|
+
status: z.ZodEnum<{
|
|
161
|
+
required: "required";
|
|
162
|
+
verified: "verified";
|
|
163
|
+
declared: "declared";
|
|
164
|
+
implemented: "implemented";
|
|
165
|
+
"review-required": "review-required";
|
|
166
|
+
"review-completed": "review-completed";
|
|
167
|
+
}>;
|
|
168
|
+
artifactRefs: z.ZodArray<z.ZodString>;
|
|
169
|
+
}, z.core.$strict>>;
|
|
170
|
+
}, z.core.$strict>>;
|
|
171
|
+
visualDirection: z.ZodOptional<z.ZodObject<{
|
|
172
|
+
domain: z.ZodString;
|
|
173
|
+
intent: z.ZodString;
|
|
174
|
+
principles: z.ZodArray<z.ZodString>;
|
|
175
|
+
avoid: z.ZodArray<z.ZodString>;
|
|
176
|
+
tokenRefs: z.ZodArray<z.ZodString>;
|
|
177
|
+
ornamentPolicy: z.ZodObject<{
|
|
178
|
+
decorativeAgentDiagrams: z.ZodLiteral<false>;
|
|
179
|
+
excessiveGlow: z.ZodLiteral<false>;
|
|
180
|
+
meaninglessGradients: z.ZodLiteral<false>;
|
|
181
|
+
ornamentalStatusElements: z.ZodLiteral<false>;
|
|
182
|
+
}, z.core.$strict>;
|
|
183
|
+
referenceEvidenceRefs: z.ZodArray<z.ZodString>;
|
|
184
|
+
}, z.core.$strict>>;
|
|
185
|
+
typography: z.ZodOptional<z.ZodObject<{
|
|
186
|
+
minimumBodySizePx: z.ZodNumber;
|
|
187
|
+
maximumLineLengthCharacters: z.ZodNumber;
|
|
188
|
+
numericAlignment: z.ZodEnum<{
|
|
189
|
+
tabular: "tabular";
|
|
190
|
+
proportional: "proportional";
|
|
191
|
+
}>;
|
|
192
|
+
roles: z.ZodArray<z.ZodObject<{
|
|
193
|
+
role: z.ZodEnum<{
|
|
194
|
+
label: "label";
|
|
195
|
+
code: "code";
|
|
196
|
+
evidence: "evidence";
|
|
197
|
+
body: "body";
|
|
198
|
+
heading: "heading";
|
|
199
|
+
metadata: "metadata";
|
|
200
|
+
metric: "metric";
|
|
201
|
+
log: "log";
|
|
202
|
+
}>;
|
|
203
|
+
familyToken: z.ZodString;
|
|
204
|
+
sizeToken: z.ZodString;
|
|
205
|
+
weightToken: z.ZodString;
|
|
206
|
+
lineHeightToken: z.ZodString;
|
|
207
|
+
colorToken: z.ZodString;
|
|
208
|
+
usage: z.ZodString;
|
|
209
|
+
}, z.core.$strict>>;
|
|
210
|
+
}, z.core.$strict>>;
|
|
211
|
+
composition: z.ZodOptional<z.ZodObject<{
|
|
212
|
+
contentWidth: z.ZodObject<{
|
|
213
|
+
strategy: z.ZodEnum<{
|
|
214
|
+
fluid: "fluid";
|
|
215
|
+
bounded: "bounded";
|
|
216
|
+
hybrid: "hybrid";
|
|
217
|
+
}>;
|
|
218
|
+
maximumPx: z.ZodNumber;
|
|
219
|
+
}, z.core.$strict>;
|
|
220
|
+
grids: z.ZodArray<z.ZodObject<{
|
|
221
|
+
viewport: z.ZodUnion<readonly [z.ZodLiteral<375>, z.ZodLiteral<768>, z.ZodLiteral<1024>, z.ZodLiteral<1440>]>;
|
|
222
|
+
columns: z.ZodNumber;
|
|
223
|
+
gutterToken: z.ZodString;
|
|
224
|
+
marginToken: z.ZodString;
|
|
225
|
+
composition: z.ZodString;
|
|
226
|
+
}, z.core.$strict>>;
|
|
227
|
+
spacingRhythm: z.ZodObject<{
|
|
228
|
+
baseToken: z.ZodString;
|
|
229
|
+
allowedStepTokens: z.ZodArray<z.ZodString>;
|
|
230
|
+
}, z.core.$strict>;
|
|
231
|
+
alignmentRules: z.ZodArray<z.ZodString>;
|
|
232
|
+
stableDimensions: z.ZodArray<z.ZodObject<{
|
|
233
|
+
component: z.ZodString;
|
|
234
|
+
behavior: z.ZodEnum<{
|
|
235
|
+
fixed: "fixed";
|
|
236
|
+
bounded: "bounded";
|
|
237
|
+
"aspect-ratio": "aspect-ratio";
|
|
238
|
+
}>;
|
|
239
|
+
tokenRefs: z.ZodArray<z.ZodString>;
|
|
240
|
+
rationale: z.ZodString;
|
|
241
|
+
}, z.core.$strict>>;
|
|
242
|
+
surfaces: z.ZodArray<z.ZodObject<{
|
|
243
|
+
role: z.ZodEnum<{
|
|
244
|
+
canvas: "canvas";
|
|
245
|
+
subtle: "subtle";
|
|
246
|
+
raised: "raised";
|
|
247
|
+
overlay: "overlay";
|
|
248
|
+
inverse: "inverse";
|
|
249
|
+
}>;
|
|
250
|
+
tokenRef: z.ZodString;
|
|
251
|
+
}, z.core.$strict>>;
|
|
252
|
+
borders: z.ZodArray<z.ZodObject<{
|
|
253
|
+
role: z.ZodEnum<{
|
|
254
|
+
default: "default";
|
|
255
|
+
strong: "strong";
|
|
256
|
+
focus: "focus";
|
|
257
|
+
selected: "selected";
|
|
258
|
+
}>;
|
|
259
|
+
tokenRef: z.ZodString;
|
|
260
|
+
}, z.core.$strict>>;
|
|
261
|
+
elevations: z.ZodArray<z.ZodObject<{
|
|
262
|
+
role: z.ZodEnum<{
|
|
263
|
+
raised: "raised";
|
|
264
|
+
overlay: "overlay";
|
|
265
|
+
base: "base";
|
|
266
|
+
}>;
|
|
267
|
+
tokenRef: z.ZodString;
|
|
268
|
+
}, z.core.$strict>>;
|
|
269
|
+
emphasis: z.ZodArray<z.ZodObject<{
|
|
270
|
+
level: z.ZodEnum<{
|
|
271
|
+
primary: "primary";
|
|
272
|
+
secondary: "secondary";
|
|
273
|
+
tertiary: "tertiary";
|
|
274
|
+
muted: "muted";
|
|
275
|
+
}>;
|
|
276
|
+
textToken: z.ZodString;
|
|
277
|
+
surfaceToken: z.ZodString;
|
|
278
|
+
}, z.core.$strict>>;
|
|
279
|
+
selectedState: z.ZodObject<{
|
|
280
|
+
backgroundToken: z.ZodString;
|
|
281
|
+
borderToken: z.ZodString;
|
|
282
|
+
indicator: z.ZodString;
|
|
283
|
+
nonColorCue: z.ZodString;
|
|
284
|
+
}, z.core.$strict>;
|
|
285
|
+
}, z.core.$strict>>;
|
|
286
|
+
densityProfile: z.ZodOptional<z.ZodObject<{
|
|
287
|
+
mode: z.ZodEnum<{
|
|
288
|
+
comfortable: "comfortable";
|
|
289
|
+
compact: "compact";
|
|
290
|
+
dense: "dense";
|
|
291
|
+
adaptive: "adaptive";
|
|
292
|
+
}>;
|
|
293
|
+
rationale: z.ZodString;
|
|
294
|
+
controlHeightToken: z.ZodString;
|
|
295
|
+
rowHeightToken: z.ZodString;
|
|
296
|
+
compactRowHeightToken: z.ZodString;
|
|
297
|
+
spacingTokenRefs: z.ZodArray<z.ZodString>;
|
|
298
|
+
maximumPrimaryActions: z.ZodNumber;
|
|
299
|
+
viewportBehavior: z.ZodArray<z.ZodObject<{
|
|
300
|
+
viewport: z.ZodUnion<readonly [z.ZodLiteral<375>, z.ZodLiteral<768>, z.ZodLiteral<1024>, z.ZodLiteral<1440>]>;
|
|
301
|
+
mode: z.ZodEnum<{
|
|
302
|
+
comfortable: "comfortable";
|
|
303
|
+
compact: "compact";
|
|
304
|
+
dense: "dense";
|
|
305
|
+
}>;
|
|
306
|
+
visiblePriorities: z.ZodArray<z.ZodString>;
|
|
307
|
+
priorityRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
308
|
+
findings: "findings";
|
|
309
|
+
evidence: "evidence";
|
|
310
|
+
"critical-exceptions": "critical-exceptions";
|
|
311
|
+
context: "context";
|
|
312
|
+
"primary-outcome": "primary-outcome";
|
|
313
|
+
impact: "impact";
|
|
314
|
+
"next-action": "next-action";
|
|
315
|
+
"supporting-metrics": "supporting-metrics";
|
|
316
|
+
telemetry: "telemetry";
|
|
317
|
+
history: "history";
|
|
318
|
+
}>>>;
|
|
319
|
+
}, z.core.$strict>>;
|
|
320
|
+
}, z.core.$strict>>;
|
|
321
|
+
interactionStates: z.ZodOptional<z.ZodObject<{
|
|
322
|
+
states: z.ZodArray<z.ZodObject<{
|
|
323
|
+
state: z.ZodEnum<{
|
|
324
|
+
error: "error";
|
|
325
|
+
warning: "warning";
|
|
326
|
+
disabled: "disabled";
|
|
327
|
+
success: "success";
|
|
328
|
+
loading: "loading";
|
|
329
|
+
empty: "empty";
|
|
330
|
+
partial: "partial";
|
|
331
|
+
focus: "focus";
|
|
332
|
+
selected: "selected";
|
|
333
|
+
}>;
|
|
334
|
+
behavior: z.ZodString;
|
|
335
|
+
tokenRefs: z.ZodArray<z.ZodString>;
|
|
336
|
+
textCue: z.ZodBoolean;
|
|
337
|
+
iconCue: z.ZodBoolean;
|
|
338
|
+
}, z.core.$strict>>;
|
|
339
|
+
}, z.core.$strict>>;
|
|
340
|
+
motion: z.ZodOptional<z.ZodObject<{
|
|
341
|
+
durationTokens: z.ZodObject<{
|
|
342
|
+
instant: z.ZodString;
|
|
343
|
+
feedback: z.ZodString;
|
|
344
|
+
transition: z.ZodString;
|
|
345
|
+
emphasis: z.ZodString;
|
|
346
|
+
}, z.core.$strict>;
|
|
347
|
+
motions: z.ZodArray<z.ZodObject<{
|
|
348
|
+
id: z.ZodString;
|
|
349
|
+
purpose: z.ZodString;
|
|
350
|
+
trigger: z.ZodString;
|
|
351
|
+
property: z.ZodEnum<{
|
|
352
|
+
transform: "transform";
|
|
353
|
+
opacity: "opacity";
|
|
354
|
+
color: "color";
|
|
355
|
+
size: "size";
|
|
356
|
+
position: "position";
|
|
357
|
+
progress: "progress";
|
|
358
|
+
}>;
|
|
359
|
+
durationCategory: z.ZodEnum<{
|
|
360
|
+
transition: "transition";
|
|
361
|
+
emphasis: "emphasis";
|
|
362
|
+
instant: "instant";
|
|
363
|
+
feedback: "feedback";
|
|
364
|
+
}>;
|
|
365
|
+
interruptible: z.ZodBoolean;
|
|
366
|
+
}, z.core.$strict>>;
|
|
367
|
+
reducedMotion: z.ZodObject<{
|
|
368
|
+
strategy: z.ZodEnum<{
|
|
369
|
+
replace: "replace";
|
|
370
|
+
remove: "remove";
|
|
371
|
+
shorten: "shorten";
|
|
372
|
+
}>;
|
|
373
|
+
equivalents: z.ZodArray<z.ZodObject<{
|
|
374
|
+
motionRef: z.ZodString;
|
|
375
|
+
behavior: z.ZodString;
|
|
376
|
+
}, z.core.$strict>>;
|
|
377
|
+
}, z.core.$strict>;
|
|
378
|
+
}, z.core.$strict>>;
|
|
379
|
+
chartContracts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
380
|
+
id: z.ZodString;
|
|
381
|
+
purpose: z.ZodString;
|
|
382
|
+
type: z.ZodEnum<{
|
|
383
|
+
bar: "bar";
|
|
384
|
+
line: "line";
|
|
385
|
+
area: "area";
|
|
386
|
+
scatter: "scatter";
|
|
387
|
+
distribution: "distribution";
|
|
388
|
+
timeline: "timeline";
|
|
389
|
+
"table-first": "table-first";
|
|
390
|
+
}>;
|
|
391
|
+
metricRefs: z.ZodArray<z.ZodString>;
|
|
392
|
+
labelStrategy: z.ZodEnum<{
|
|
393
|
+
"table-first": "table-first";
|
|
394
|
+
direct: "direct";
|
|
395
|
+
"axis-and-legend": "axis-and-legend";
|
|
396
|
+
}>;
|
|
397
|
+
titleVisible: z.ZodBoolean;
|
|
398
|
+
valuesVisible: z.ZodBoolean;
|
|
399
|
+
legend: z.ZodObject<{
|
|
400
|
+
visible: z.ZodBoolean;
|
|
401
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
402
|
+
}, z.core.$strict>;
|
|
403
|
+
comparison: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
404
|
+
status: z.ZodLiteral<"available">;
|
|
405
|
+
context: z.ZodString;
|
|
406
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
407
|
+
status: z.ZodLiteral<"not-applicable">;
|
|
408
|
+
reason: z.ZodString;
|
|
409
|
+
}, z.core.$strict>], "status">;
|
|
410
|
+
alternative: z.ZodObject<{
|
|
411
|
+
kind: z.ZodEnum<{
|
|
412
|
+
text: "text";
|
|
413
|
+
table: "table";
|
|
414
|
+
}>;
|
|
415
|
+
path: z.ZodString;
|
|
416
|
+
}, z.core.$strict>;
|
|
417
|
+
states: z.ZodObject<{
|
|
418
|
+
loading: z.ZodString;
|
|
419
|
+
empty: z.ZodString;
|
|
420
|
+
partial: z.ZodString;
|
|
421
|
+
error: z.ZodString;
|
|
422
|
+
}, z.core.$strict>;
|
|
423
|
+
tokenRefs: z.ZodArray<z.ZodString>;
|
|
424
|
+
backgroundToken: z.ZodOptional<z.ZodString>;
|
|
425
|
+
nonColorCues: z.ZodArray<z.ZodEnum<{
|
|
426
|
+
value: "value";
|
|
427
|
+
pattern: "pattern";
|
|
428
|
+
text: "text";
|
|
429
|
+
color: "color";
|
|
430
|
+
position: "position";
|
|
431
|
+
icon: "icon";
|
|
432
|
+
shape: "shape";
|
|
433
|
+
"line-style": "line-style";
|
|
434
|
+
}>>;
|
|
435
|
+
decorative: z.ZodLiteral<false>;
|
|
436
|
+
}, z.core.$strict>>>;
|
|
437
|
+
renderedEvidence: z.ZodOptional<z.ZodObject<{
|
|
438
|
+
fixture: z.ZodObject<{
|
|
439
|
+
id: z.ZodString;
|
|
440
|
+
sourcePath: z.ZodString;
|
|
441
|
+
route: z.ZodString;
|
|
442
|
+
}, z.core.$strict>;
|
|
443
|
+
captures: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
444
|
+
viewport: z.ZodUnion<readonly [z.ZodLiteral<375>, z.ZodLiteral<768>, z.ZodLiteral<1024>, z.ZodLiteral<1440>]>;
|
|
445
|
+
status: z.ZodLiteral<"planned">;
|
|
446
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
447
|
+
viewport: z.ZodUnion<readonly [z.ZodLiteral<375>, z.ZodLiteral<768>, z.ZodLiteral<1024>, z.ZodLiteral<1440>]>;
|
|
448
|
+
status: z.ZodEnum<{
|
|
449
|
+
verified: "verified";
|
|
450
|
+
captured: "captured";
|
|
451
|
+
}>;
|
|
452
|
+
screenshotPath: z.ZodString;
|
|
453
|
+
runtimeReportPath: z.ZodString;
|
|
454
|
+
sha256: z.ZodString;
|
|
455
|
+
}, z.core.$strict>], "status">>;
|
|
456
|
+
}, z.core.$strict>>;
|
|
457
|
+
humanVisualReview: z.ZodOptional<z.ZodObject<{
|
|
458
|
+
status: z.ZodEnum<{
|
|
459
|
+
required: "required";
|
|
460
|
+
completed: "completed";
|
|
461
|
+
}>;
|
|
462
|
+
dimensions: z.ZodArray<z.ZodEnum<{
|
|
463
|
+
hierarchy: "hierarchy";
|
|
464
|
+
balance: "balance";
|
|
465
|
+
scanability: "scanability";
|
|
466
|
+
density: "density";
|
|
467
|
+
"domain-fit": "domain-fit";
|
|
468
|
+
}>>;
|
|
469
|
+
reviewers: z.ZodArray<z.ZodObject<{
|
|
470
|
+
name: z.ZodString;
|
|
471
|
+
role: z.ZodString;
|
|
472
|
+
reviewedAt: z.ZodString;
|
|
473
|
+
evidenceRef: z.ZodString;
|
|
474
|
+
}, z.core.$strict>>;
|
|
475
|
+
}, z.core.$strict>>;
|
|
476
|
+
brand: z.ZodOptional<z.ZodObject<{
|
|
477
|
+
promise: z.ZodString;
|
|
478
|
+
audiences: z.ZodArray<z.ZodString>;
|
|
479
|
+
attributes: z.ZodArray<z.ZodString>;
|
|
480
|
+
avoid: z.ZodArray<z.ZodString>;
|
|
481
|
+
voicePrinciples: z.ZodArray<z.ZodString>;
|
|
482
|
+
marks: z.ZodArray<z.ZodObject<{
|
|
483
|
+
id: z.ZodString;
|
|
484
|
+
role: z.ZodEnum<{
|
|
485
|
+
symbol: "symbol";
|
|
486
|
+
primary: "primary";
|
|
487
|
+
compact: "compact";
|
|
488
|
+
monochrome: "monochrome";
|
|
489
|
+
wordmark: "wordmark";
|
|
490
|
+
}>;
|
|
491
|
+
asset: z.ZodString;
|
|
492
|
+
clearSpace: z.ZodString;
|
|
493
|
+
minimumSize: z.ZodString;
|
|
494
|
+
allowedBackgrounds: z.ZodArray<z.ZodString>;
|
|
495
|
+
}, z.core.$strict>>;
|
|
496
|
+
}, z.core.$strict>>;
|
|
497
|
+
figma: z.ZodOptional<z.ZodObject<{
|
|
498
|
+
pages: z.ZodArray<z.ZodObject<{
|
|
499
|
+
name: z.ZodString;
|
|
500
|
+
role: z.ZodEnum<{
|
|
501
|
+
archive: "archive";
|
|
502
|
+
patterns: "patterns";
|
|
503
|
+
cover: "cover";
|
|
504
|
+
foundations: "foundations";
|
|
505
|
+
components: "components";
|
|
506
|
+
templates: "templates";
|
|
507
|
+
sandbox: "sandbox";
|
|
508
|
+
}>;
|
|
509
|
+
purpose: z.ZodString;
|
|
510
|
+
}, z.core.$strict>>;
|
|
511
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
512
|
+
name: z.ZodString;
|
|
513
|
+
modes: z.ZodArray<z.ZodString>;
|
|
514
|
+
tokens: z.ZodArray<z.ZodString>;
|
|
515
|
+
}, z.core.$strict>>;
|
|
516
|
+
components: z.ZodArray<z.ZodObject<{
|
|
517
|
+
name: z.ZodString;
|
|
518
|
+
purpose: z.ZodString;
|
|
519
|
+
interactive: z.ZodBoolean;
|
|
520
|
+
properties: z.ZodArray<z.ZodObject<{
|
|
521
|
+
name: z.ZodString;
|
|
522
|
+
type: z.ZodEnum<{
|
|
523
|
+
boolean: "boolean";
|
|
524
|
+
text: "text";
|
|
525
|
+
"instance-swap": "instance-swap";
|
|
526
|
+
variant: "variant";
|
|
527
|
+
slot: "slot";
|
|
528
|
+
}>;
|
|
529
|
+
}, z.core.$strict>>;
|
|
530
|
+
states: z.ZodArray<z.ZodString>;
|
|
531
|
+
documented: z.ZodBoolean;
|
|
532
|
+
}, z.core.$strict>>;
|
|
533
|
+
}, z.core.$strict>>;
|
|
534
|
+
assets: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
535
|
+
id: z.ZodString;
|
|
536
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
537
|
+
kind: z.ZodEnum<{
|
|
538
|
+
screenshot: "screenshot";
|
|
539
|
+
icon: "icon";
|
|
540
|
+
logo: "logo";
|
|
541
|
+
illustration: "illustration";
|
|
542
|
+
photo: "photo";
|
|
543
|
+
texture: "texture";
|
|
544
|
+
chart: "chart";
|
|
545
|
+
video: "video";
|
|
546
|
+
audio: "audio";
|
|
547
|
+
font: "font";
|
|
548
|
+
}>;
|
|
549
|
+
path: z.ZodString;
|
|
550
|
+
source: z.ZodObject<{
|
|
551
|
+
origin: z.ZodEnum<{
|
|
552
|
+
original: "original";
|
|
553
|
+
"user-provided": "user-provided";
|
|
554
|
+
generated: "generated";
|
|
555
|
+
commissioned: "commissioned";
|
|
556
|
+
licensed: "licensed";
|
|
557
|
+
"open-source": "open-source";
|
|
558
|
+
"public-domain": "public-domain";
|
|
559
|
+
}>;
|
|
560
|
+
creator: z.ZodString;
|
|
561
|
+
sourceUrl: z.ZodOptional<z.ZodString>;
|
|
562
|
+
}, z.core.$strict>;
|
|
563
|
+
rights: z.ZodObject<{
|
|
564
|
+
status: z.ZodEnum<{
|
|
565
|
+
unknown: "unknown";
|
|
566
|
+
approved: "approved";
|
|
567
|
+
pending: "pending";
|
|
568
|
+
rejected: "rejected";
|
|
569
|
+
}>;
|
|
570
|
+
basis: z.ZodEnum<{
|
|
571
|
+
contract: "contract";
|
|
572
|
+
"public-domain": "public-domain";
|
|
573
|
+
owned: "owned";
|
|
574
|
+
"terms-of-service": "terms-of-service";
|
|
575
|
+
"spdx-license": "spdx-license";
|
|
576
|
+
permission: "permission";
|
|
577
|
+
}>;
|
|
578
|
+
spdxExpression: z.ZodOptional<z.ZodString>;
|
|
579
|
+
evidence: z.ZodOptional<z.ZodString>;
|
|
580
|
+
attribution: z.ZodOptional<z.ZodString>;
|
|
581
|
+
restrictions: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
582
|
+
reviewedBy: z.ZodOptional<z.ZodString>;
|
|
583
|
+
reviewedAt: z.ZodOptional<z.ZodString>;
|
|
584
|
+
}, z.core.$strict>;
|
|
585
|
+
generation: z.ZodOptional<z.ZodObject<{
|
|
586
|
+
provider: z.ZodString;
|
|
587
|
+
model: z.ZodString;
|
|
588
|
+
promptRecord: z.ZodString;
|
|
589
|
+
humanContributions: z.ZodArray<z.ZodString>;
|
|
590
|
+
references: z.ZodArray<z.ZodObject<{
|
|
591
|
+
source: z.ZodString;
|
|
592
|
+
rightsStatus: z.ZodEnum<{
|
|
593
|
+
unknown: "unknown";
|
|
594
|
+
approved: "approved";
|
|
595
|
+
pending: "pending";
|
|
596
|
+
rejected: "rejected";
|
|
597
|
+
}>;
|
|
598
|
+
evidence: z.ZodOptional<z.ZodString>;
|
|
599
|
+
}, z.core.$strict>>;
|
|
600
|
+
}, z.core.$strict>>;
|
|
601
|
+
alternative: z.ZodObject<{
|
|
602
|
+
kind: z.ZodEnum<{
|
|
603
|
+
decorative: "decorative";
|
|
604
|
+
"short-text": "short-text";
|
|
605
|
+
"long-description": "long-description";
|
|
606
|
+
"data-table": "data-table";
|
|
607
|
+
caption: "caption";
|
|
608
|
+
transcript: "transcript";
|
|
609
|
+
}>;
|
|
610
|
+
content: z.ZodOptional<z.ZodString>;
|
|
611
|
+
}, z.core.$strict>;
|
|
612
|
+
failureBehavior: z.ZodOptional<z.ZodObject<{
|
|
613
|
+
strategy: z.ZodEnum<{
|
|
614
|
+
"hide-decorative": "hide-decorative";
|
|
615
|
+
"text-alternative": "text-alternative";
|
|
616
|
+
placeholder: "placeholder";
|
|
617
|
+
retry: "retry";
|
|
618
|
+
block: "block";
|
|
619
|
+
}>;
|
|
620
|
+
behavior: z.ZodString;
|
|
621
|
+
}, z.core.$strict>>;
|
|
622
|
+
}, z.core.$strict>>>;
|
|
623
|
+
iconSystem: z.ZodOptional<z.ZodObject<{
|
|
624
|
+
name: z.ZodString;
|
|
625
|
+
grid: z.ZodNumber;
|
|
626
|
+
sizes: z.ZodArray<z.ZodNumber>;
|
|
627
|
+
stroke: z.ZodObject<{
|
|
628
|
+
style: z.ZodEnum<{
|
|
629
|
+
mixed: "mixed";
|
|
630
|
+
outline: "outline";
|
|
631
|
+
filled: "filled";
|
|
632
|
+
duotone: "duotone";
|
|
633
|
+
}>;
|
|
634
|
+
weight: z.ZodNumber;
|
|
635
|
+
linecap: z.ZodEnum<{
|
|
636
|
+
round: "round";
|
|
637
|
+
square: "square";
|
|
638
|
+
butt: "butt";
|
|
639
|
+
}>;
|
|
640
|
+
linejoin: z.ZodEnum<{
|
|
641
|
+
round: "round";
|
|
642
|
+
bevel: "bevel";
|
|
643
|
+
miter: "miter";
|
|
644
|
+
}>;
|
|
645
|
+
}, z.core.$strict>;
|
|
646
|
+
icons: z.ZodArray<z.ZodObject<{
|
|
647
|
+
id: z.ZodString;
|
|
648
|
+
name: z.ZodString;
|
|
649
|
+
meaning: z.ZodString;
|
|
650
|
+
asset: z.ZodString;
|
|
651
|
+
decorative: z.ZodBoolean;
|
|
652
|
+
accessibleName: z.ZodOptional<z.ZodString>;
|
|
653
|
+
}, z.core.$strict>>;
|
|
654
|
+
}, z.core.$strict>>;
|
|
655
|
+
presentations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
656
|
+
id: z.ZodString;
|
|
657
|
+
purpose: z.ZodString;
|
|
658
|
+
audience: z.ZodString;
|
|
659
|
+
aspectRatio: z.ZodEnum<{
|
|
660
|
+
"16:9": "16:9";
|
|
661
|
+
"4:3": "4:3";
|
|
662
|
+
"1:1": "1:1";
|
|
663
|
+
"a4-landscape": "a4-landscape";
|
|
664
|
+
"a4-portrait": "a4-portrait";
|
|
665
|
+
}>;
|
|
666
|
+
masterLayouts: z.ZodArray<z.ZodString>;
|
|
667
|
+
slides: z.ZodArray<z.ZodObject<{
|
|
668
|
+
id: z.ZodString;
|
|
669
|
+
title: z.ZodString;
|
|
670
|
+
purpose: z.ZodString;
|
|
671
|
+
layout: z.ZodString;
|
|
672
|
+
readingOrder: z.ZodArray<z.ZodString>;
|
|
673
|
+
assets: z.ZodArray<z.ZodString>;
|
|
674
|
+
speakerNotes: z.ZodOptional<z.ZodString>;
|
|
675
|
+
}, z.core.$strict>>;
|
|
676
|
+
}, z.core.$strict>>>;
|
|
677
|
+
accessibility: z.ZodObject<{
|
|
678
|
+
contrastPairs: z.ZodArray<z.ZodObject<{
|
|
679
|
+
id: z.ZodString;
|
|
680
|
+
foreground: z.ZodString;
|
|
681
|
+
background: z.ZodString;
|
|
682
|
+
usage: z.ZodEnum<{
|
|
683
|
+
"normal-text": "normal-text";
|
|
684
|
+
"large-text": "large-text";
|
|
685
|
+
"non-text": "non-text";
|
|
686
|
+
}>;
|
|
687
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
688
|
+
fontSizePx: z.ZodOptional<z.ZodNumber>;
|
|
689
|
+
fontWeight: z.ZodOptional<z.ZodNumber>;
|
|
690
|
+
}, z.core.$strict>>;
|
|
691
|
+
nonColorCues: z.ZodArray<z.ZodObject<{
|
|
692
|
+
meaning: z.ZodString;
|
|
693
|
+
cues: z.ZodArray<z.ZodEnum<{
|
|
694
|
+
value: "value";
|
|
695
|
+
pattern: "pattern";
|
|
696
|
+
text: "text";
|
|
697
|
+
color: "color";
|
|
698
|
+
position: "position";
|
|
699
|
+
icon: "icon";
|
|
700
|
+
shape: "shape";
|
|
701
|
+
underline: "underline";
|
|
702
|
+
}>>;
|
|
703
|
+
}, z.core.$strict>>;
|
|
704
|
+
}, z.core.$strict>;
|
|
705
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
706
|
+
id: z.ZodString;
|
|
707
|
+
kind: z.ZodEnum<{
|
|
708
|
+
export: "export";
|
|
709
|
+
runtime: "runtime";
|
|
710
|
+
source: "source";
|
|
711
|
+
license: "license";
|
|
712
|
+
review: "review";
|
|
713
|
+
contrast: "contrast";
|
|
714
|
+
}>;
|
|
715
|
+
path: z.ZodString;
|
|
716
|
+
detail: z.ZodString;
|
|
717
|
+
}, z.core.$strict>>;
|
|
718
|
+
}, z.core.$strict>;
|
|
719
|
+
export declare const designIntelligenceFindingSchema: z.ZodObject<{
|
|
720
|
+
ruleId: z.ZodString;
|
|
721
|
+
severity: z.ZodEnum<{
|
|
722
|
+
error: "error";
|
|
723
|
+
warning: "warning";
|
|
724
|
+
info: "info";
|
|
725
|
+
}>;
|
|
726
|
+
path: z.ZodString;
|
|
727
|
+
message: z.ZodString;
|
|
728
|
+
remediation: z.ZodString;
|
|
729
|
+
}, z.core.$strict>;
|
|
730
|
+
export declare const designDeliverableReportSchema: z.ZodObject<{
|
|
731
|
+
version: z.ZodString;
|
|
732
|
+
generatedAt: z.ZodString;
|
|
733
|
+
sourcePath: z.ZodString;
|
|
734
|
+
manifestId: z.ZodString;
|
|
735
|
+
product: z.ZodString;
|
|
736
|
+
deliverables: z.ZodArray<z.ZodEnum<{
|
|
737
|
+
"interface-system": "interface-system";
|
|
738
|
+
"brand-system": "brand-system";
|
|
739
|
+
"figma-library": "figma-library";
|
|
740
|
+
"asset-set": "asset-set";
|
|
741
|
+
"icon-system": "icon-system";
|
|
742
|
+
presentation: "presentation";
|
|
743
|
+
}>>;
|
|
744
|
+
findings: z.ZodArray<z.ZodObject<{
|
|
745
|
+
ruleId: z.ZodString;
|
|
746
|
+
severity: z.ZodEnum<{
|
|
747
|
+
error: "error";
|
|
748
|
+
warning: "warning";
|
|
749
|
+
info: "info";
|
|
750
|
+
}>;
|
|
751
|
+
path: z.ZodString;
|
|
752
|
+
message: z.ZodString;
|
|
753
|
+
remediation: z.ZodString;
|
|
754
|
+
}, z.core.$strict>>;
|
|
755
|
+
contrastResults: z.ZodArray<z.ZodObject<{
|
|
756
|
+
id: z.ZodString;
|
|
757
|
+
ratio: z.ZodNumber;
|
|
758
|
+
required: z.ZodNumber;
|
|
759
|
+
passed: z.ZodBoolean;
|
|
760
|
+
}, z.core.$strict>>;
|
|
761
|
+
coverage: z.ZodObject<{
|
|
762
|
+
tokens: z.ZodNumber;
|
|
763
|
+
assets: z.ZodNumber;
|
|
764
|
+
icons: z.ZodNumber;
|
|
765
|
+
presentations: z.ZodNumber;
|
|
766
|
+
slides: z.ZodNumber;
|
|
767
|
+
contrastPairs: z.ZodNumber;
|
|
768
|
+
typographyRoles: z.ZodNumber;
|
|
769
|
+
interactionStates: z.ZodNumber;
|
|
770
|
+
chartContracts: z.ZodNumber;
|
|
771
|
+
renderedViewports: z.ZodNumber;
|
|
772
|
+
metricContracts: z.ZodNumber;
|
|
773
|
+
generationStages: z.ZodNumber;
|
|
774
|
+
}, z.core.$strict>;
|
|
775
|
+
integration: z.ZodObject<{
|
|
776
|
+
generationReady: z.ZodBoolean;
|
|
777
|
+
trustStatus: z.ZodEnum<{
|
|
778
|
+
missing: "missing";
|
|
779
|
+
declared: "declared";
|
|
780
|
+
validated: "validated";
|
|
781
|
+
}>;
|
|
782
|
+
informationStatus: z.ZodEnum<{
|
|
783
|
+
missing: "missing";
|
|
784
|
+
declared: "declared";
|
|
785
|
+
validated: "validated";
|
|
786
|
+
}>;
|
|
787
|
+
contractsValidated: z.ZodBoolean;
|
|
788
|
+
automatedVerificationReady: z.ZodBoolean;
|
|
789
|
+
humanReviewReady: z.ZodBoolean;
|
|
790
|
+
releaseReady: z.ZodBoolean;
|
|
791
|
+
stages: z.ZodRecord<z.ZodEnum<{
|
|
792
|
+
"product-task": "product-task";
|
|
793
|
+
"truth-data-source-contract": "truth-data-source-contract";
|
|
794
|
+
"information-architecture": "information-architecture";
|
|
795
|
+
"interaction-state-model": "interaction-state-model";
|
|
796
|
+
"visual-direction": "visual-direction";
|
|
797
|
+
"token-architecture": "token-architecture";
|
|
798
|
+
implementation: "implementation";
|
|
799
|
+
"automated-verification": "automated-verification";
|
|
800
|
+
"human-visual-review": "human-visual-review";
|
|
801
|
+
}>, z.ZodEnum<{
|
|
802
|
+
required: "required";
|
|
803
|
+
missing: "missing";
|
|
804
|
+
verified: "verified";
|
|
805
|
+
declared: "declared";
|
|
806
|
+
implemented: "implemented";
|
|
807
|
+
"review-required": "review-required";
|
|
808
|
+
"review-completed": "review-completed";
|
|
809
|
+
}>>;
|
|
810
|
+
}, z.core.$strict>;
|
|
811
|
+
visualPolish: z.ZodObject<{
|
|
812
|
+
declared: z.ZodBoolean;
|
|
813
|
+
requiredViewports: z.ZodRecord<z.ZodEnum<{
|
|
814
|
+
375: "375";
|
|
815
|
+
768: "768";
|
|
816
|
+
1024: "1024";
|
|
817
|
+
1440: "1440";
|
|
818
|
+
}>, z.ZodEnum<{
|
|
819
|
+
missing: "missing";
|
|
820
|
+
verified: "verified";
|
|
821
|
+
planned: "planned";
|
|
822
|
+
captured: "captured";
|
|
823
|
+
}>>;
|
|
824
|
+
renderedEvidenceReady: z.ZodBoolean;
|
|
825
|
+
humanReviewReady: z.ZodBoolean;
|
|
826
|
+
releaseReady: z.ZodBoolean;
|
|
827
|
+
}, z.core.$strict>;
|
|
828
|
+
summary: z.ZodObject<{
|
|
829
|
+
errors: z.ZodNumber;
|
|
830
|
+
warnings: z.ZodNumber;
|
|
831
|
+
info: z.ZodNumber;
|
|
832
|
+
}, z.core.$strict>;
|
|
833
|
+
passed: z.ZodBoolean;
|
|
834
|
+
limitations: z.ZodArray<z.ZodString>;
|
|
835
|
+
}, z.core.$strict>;
|
|
836
|
+
export type DesignDeliverable = z.infer<typeof designDeliverableSchema>;
|
|
837
|
+
export type DesignIntelligenceFinding = z.infer<typeof designIntelligenceFindingSchema>;
|
|
838
|
+
export type DesignDeliverableReport = z.infer<typeof designDeliverableReportSchema>;
|