@devtrack-solution/codesdd 1.2.2
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/.sdd/skills/curated/api-clean-flask-langgraph/SKILL.md +2751 -0
- package/.sdd/skills/curated/devtrack-api/SKILL.md +137 -0
- package/.sdd/skills/curated/devtrack-api/agents/openai.yaml +4 -0
- package/.sdd/skills/curated/devtrack-api/references/application-presentation.md +381 -0
- package/.sdd/skills/curated/devtrack-api/references/architecture-governance.md +219 -0
- package/.sdd/skills/curated/devtrack-api/references/domain-modeling.md +359 -0
- package/.sdd/skills/curated/devtrack-api/references/implementation-checklist.md +127 -0
- package/.sdd/skills/curated/devtrack-api/references/imports-lint.md +207 -0
- package/.sdd/skills/curated/devtrack-api/references/testing-validation.md +167 -0
- package/.sdd/skills/curated/devtrack-api/references/typeorm-infrastructure.md +334 -0
- package/LICENSE +21 -0
- package/README.md +842 -0
- package/bin/codesdd.js +10 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.js +560 -0
- package/dist/commands/change.d.ts +35 -0
- package/dist/commands/change.js +296 -0
- package/dist/commands/completion.d.ts +72 -0
- package/dist/commands/completion.js +258 -0
- package/dist/commands/config.d.ts +36 -0
- package/dist/commands/config.js +552 -0
- package/dist/commands/feedback.d.ts +9 -0
- package/dist/commands/feedback.js +184 -0
- package/dist/commands/schema.d.ts +6 -0
- package/dist/commands/schema.js +870 -0
- package/dist/commands/sdd/execution.d.ts +3 -0
- package/dist/commands/sdd/execution.js +409 -0
- package/dist/commands/sdd/shared.d.ts +9 -0
- package/dist/commands/sdd/shared.js +84 -0
- package/dist/commands/sdd/skills.d.ts +3 -0
- package/dist/commands/sdd/skills.js +154 -0
- package/dist/commands/sdd.d.ts +3 -0
- package/dist/commands/sdd.js +769 -0
- package/dist/commands/show.d.ts +14 -0
- package/dist/commands/show.js +133 -0
- package/dist/commands/spec.d.ts +15 -0
- package/dist/commands/spec.js +228 -0
- package/dist/commands/validate.d.ts +24 -0
- package/dist/commands/validate.js +295 -0
- package/dist/commands/workflow/index.d.ts +17 -0
- package/dist/commands/workflow/index.js +12 -0
- package/dist/commands/workflow/instructions.d.ts +29 -0
- package/dist/commands/workflow/instructions.js +383 -0
- package/dist/commands/workflow/new-change.d.ts +11 -0
- package/dist/commands/workflow/new-change.js +45 -0
- package/dist/commands/workflow/schemas.d.ts +10 -0
- package/dist/commands/workflow/schemas.js +34 -0
- package/dist/commands/workflow/shared.d.ts +57 -0
- package/dist/commands/workflow/shared.js +117 -0
- package/dist/commands/workflow/status.d.ts +14 -0
- package/dist/commands/workflow/status.js +76 -0
- package/dist/commands/workflow/templates.d.ts +16 -0
- package/dist/commands/workflow/templates.js +68 -0
- package/dist/core/archive.d.ts +16 -0
- package/dist/core/archive.js +487 -0
- package/dist/core/artifact-graph/graph.d.ts +56 -0
- package/dist/core/artifact-graph/graph.js +141 -0
- package/dist/core/artifact-graph/index.d.ts +7 -0
- package/dist/core/artifact-graph/index.js +13 -0
- package/dist/core/artifact-graph/instruction-loader.d.ts +143 -0
- package/dist/core/artifact-graph/instruction-loader.js +215 -0
- package/dist/core/artifact-graph/resolver.d.ts +81 -0
- package/dist/core/artifact-graph/resolver.js +258 -0
- package/dist/core/artifact-graph/schema.d.ts +13 -0
- package/dist/core/artifact-graph/schema.js +108 -0
- package/dist/core/artifact-graph/state.d.ts +12 -0
- package/dist/core/artifact-graph/state.js +54 -0
- package/dist/core/artifact-graph/types.d.ts +45 -0
- package/dist/core/artifact-graph/types.js +43 -0
- package/dist/core/available-tools.d.ts +16 -0
- package/dist/core/available-tools.js +30 -0
- package/dist/core/branding.d.ts +8 -0
- package/dist/core/branding.js +12 -0
- package/dist/core/cli/command-matrix.d.ts +23 -0
- package/dist/core/cli/command-matrix.js +123 -0
- package/dist/core/command-generation/adapters/amazon-q.d.ts +13 -0
- package/dist/core/command-generation/adapters/amazon-q.js +26 -0
- package/dist/core/command-generation/adapters/antigravity.d.ts +13 -0
- package/dist/core/command-generation/adapters/antigravity.js +26 -0
- package/dist/core/command-generation/adapters/auggie.d.ts +13 -0
- package/dist/core/command-generation/adapters/auggie.js +27 -0
- package/dist/core/command-generation/adapters/claude.d.ts +13 -0
- package/dist/core/command-generation/adapters/claude.js +50 -0
- package/dist/core/command-generation/adapters/cline.d.ts +14 -0
- package/dist/core/command-generation/adapters/cline.js +27 -0
- package/dist/core/command-generation/adapters/codebuddy.d.ts +13 -0
- package/dist/core/command-generation/adapters/codebuddy.js +28 -0
- package/dist/core/command-generation/adapters/codex.d.ts +16 -0
- package/dist/core/command-generation/adapters/codex.js +39 -0
- package/dist/core/command-generation/adapters/continue.d.ts +13 -0
- package/dist/core/command-generation/adapters/continue.js +28 -0
- package/dist/core/command-generation/adapters/costrict.d.ts +13 -0
- package/dist/core/command-generation/adapters/costrict.js +27 -0
- package/dist/core/command-generation/adapters/crush.d.ts +13 -0
- package/dist/core/command-generation/adapters/crush.js +30 -0
- package/dist/core/command-generation/adapters/cursor.d.ts +14 -0
- package/dist/core/command-generation/adapters/cursor.js +44 -0
- package/dist/core/command-generation/adapters/factory.d.ts +13 -0
- package/dist/core/command-generation/adapters/factory.js +27 -0
- package/dist/core/command-generation/adapters/gemini.d.ts +13 -0
- package/dist/core/command-generation/adapters/gemini.js +26 -0
- package/dist/core/command-generation/adapters/github-copilot.d.ts +13 -0
- package/dist/core/command-generation/adapters/github-copilot.js +26 -0
- package/dist/core/command-generation/adapters/iflow.d.ts +13 -0
- package/dist/core/command-generation/adapters/iflow.js +29 -0
- package/dist/core/command-generation/adapters/index.d.ts +29 -0
- package/dist/core/command-generation/adapters/index.js +29 -0
- package/dist/core/command-generation/adapters/kilocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/kilocode.js +23 -0
- package/dist/core/command-generation/adapters/kiro.d.ts +13 -0
- package/dist/core/command-generation/adapters/kiro.js +26 -0
- package/dist/core/command-generation/adapters/opencode.d.ts +13 -0
- package/dist/core/command-generation/adapters/opencode.js +29 -0
- package/dist/core/command-generation/adapters/pi.d.ts +14 -0
- package/dist/core/command-generation/adapters/pi.js +41 -0
- package/dist/core/command-generation/adapters/qoder.d.ts +13 -0
- package/dist/core/command-generation/adapters/qoder.js +30 -0
- package/dist/core/command-generation/adapters/qwen.d.ts +13 -0
- package/dist/core/command-generation/adapters/qwen.js +26 -0
- package/dist/core/command-generation/adapters/roocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/roocode.js +27 -0
- package/dist/core/command-generation/adapters/windsurf.d.ts +14 -0
- package/dist/core/command-generation/adapters/windsurf.js +51 -0
- package/dist/core/command-generation/generator.d.ts +21 -0
- package/dist/core/command-generation/generator.js +27 -0
- package/dist/core/command-generation/index.d.ts +22 -0
- package/dist/core/command-generation/index.js +24 -0
- package/dist/core/command-generation/registry.d.ts +36 -0
- package/dist/core/command-generation/registry.js +92 -0
- package/dist/core/command-generation/types.d.ts +56 -0
- package/dist/core/command-generation/types.js +8 -0
- package/dist/core/completions/command-registry.d.ts +7 -0
- package/dist/core/completions/command-registry.js +461 -0
- package/dist/core/completions/completion-provider.d.ts +60 -0
- package/dist/core/completions/completion-provider.js +102 -0
- package/dist/core/completions/factory.d.ts +64 -0
- package/dist/core/completions/factory.js +75 -0
- package/dist/core/completions/generators/bash-generator.d.ts +32 -0
- package/dist/core/completions/generators/bash-generator.js +174 -0
- package/dist/core/completions/generators/fish-generator.d.ts +32 -0
- package/dist/core/completions/generators/fish-generator.js +157 -0
- package/dist/core/completions/generators/powershell-generator.d.ts +33 -0
- package/dist/core/completions/generators/powershell-generator.js +207 -0
- package/dist/core/completions/generators/zsh-generator.d.ts +44 -0
- package/dist/core/completions/generators/zsh-generator.js +250 -0
- package/dist/core/completions/installers/bash-installer.d.ts +87 -0
- package/dist/core/completions/installers/bash-installer.js +318 -0
- package/dist/core/completions/installers/fish-installer.d.ts +43 -0
- package/dist/core/completions/installers/fish-installer.js +143 -0
- package/dist/core/completions/installers/powershell-installer.d.ts +88 -0
- package/dist/core/completions/installers/powershell-installer.js +327 -0
- package/dist/core/completions/installers/zsh-installer.d.ts +125 -0
- package/dist/core/completions/installers/zsh-installer.js +452 -0
- package/dist/core/completions/templates/bash-templates.d.ts +6 -0
- package/dist/core/completions/templates/bash-templates.js +24 -0
- package/dist/core/completions/templates/fish-templates.d.ts +7 -0
- package/dist/core/completions/templates/fish-templates.js +39 -0
- package/dist/core/completions/templates/powershell-templates.d.ts +6 -0
- package/dist/core/completions/templates/powershell-templates.js +25 -0
- package/dist/core/completions/templates/zsh-templates.d.ts +6 -0
- package/dist/core/completions/templates/zsh-templates.js +36 -0
- package/dist/core/completions/types.d.ts +79 -0
- package/dist/core/completions/types.js +2 -0
- package/dist/core/config-prompts.d.ts +9 -0
- package/dist/core/config-prompts.js +34 -0
- package/dist/core/config-schema.d.ts +86 -0
- package/dist/core/config-schema.js +213 -0
- package/dist/core/config.d.ts +17 -0
- package/dist/core/config.js +33 -0
- package/dist/core/converters/json-converter.d.ts +6 -0
- package/dist/core/converters/json-converter.js +51 -0
- package/dist/core/global-config.d.ts +44 -0
- package/dist/core/global-config.js +125 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +3 -0
- package/dist/core/init.d.ts +36 -0
- package/dist/core/init.js +576 -0
- package/dist/core/legacy-cleanup.d.ts +162 -0
- package/dist/core/legacy-cleanup.js +512 -0
- package/dist/core/list.d.ts +9 -0
- package/dist/core/list.js +173 -0
- package/dist/core/migration.d.ts +23 -0
- package/dist/core/migration.js +108 -0
- package/dist/core/parsers/change-parser.d.ts +13 -0
- package/dist/core/parsers/change-parser.js +193 -0
- package/dist/core/parsers/markdown-parser.d.ts +22 -0
- package/dist/core/parsers/markdown-parser.js +187 -0
- package/dist/core/parsers/requirement-blocks.d.ts +37 -0
- package/dist/core/parsers/requirement-blocks.js +201 -0
- package/dist/core/profile-sync-drift.d.ts +38 -0
- package/dist/core/profile-sync-drift.js +201 -0
- package/dist/core/profiles.d.ts +26 -0
- package/dist/core/profiles.js +41 -0
- package/dist/core/project-config.d.ts +64 -0
- package/dist/core/project-config.js +223 -0
- package/dist/core/schemas/base.schema.d.ts +13 -0
- package/dist/core/schemas/base.schema.js +13 -0
- package/dist/core/schemas/change.schema.d.ts +73 -0
- package/dist/core/schemas/change.schema.js +31 -0
- package/dist/core/schemas/index.d.ts +4 -0
- package/dist/core/schemas/index.js +4 -0
- package/dist/core/schemas/spec.schema.d.ts +18 -0
- package/dist/core/schemas/spec.schema.js +15 -0
- package/dist/core/sdd/adr-policy.d.ts +7 -0
- package/dist/core/sdd/adr-policy.js +47 -0
- package/dist/core/sdd/adr.d.ts +4 -0
- package/dist/core/sdd/adr.js +27 -0
- package/dist/core/sdd/bootstrap.d.ts +28 -0
- package/dist/core/sdd/bootstrap.js +353 -0
- package/dist/core/sdd/check.d.ts +51 -0
- package/dist/core/sdd/check.js +831 -0
- package/dist/core/sdd/coordination/coordination-adapters.d.ts +73 -0
- package/dist/core/sdd/coordination/coordination-adapters.js +87 -0
- package/dist/core/sdd/coordination/index.d.ts +2 -0
- package/dist/core/sdd/coordination/index.js +2 -0
- package/dist/core/sdd/dedup.d.ts +23 -0
- package/dist/core/sdd/dedup.js +62 -0
- package/dist/core/sdd/default-bootstrap-files.d.ts +23 -0
- package/dist/core/sdd/default-bootstrap-files.js +385 -0
- package/dist/core/sdd/default-skills.d.ts +16 -0
- package/dist/core/sdd/default-skills.js +427 -0
- package/dist/core/sdd/diagnose.d.ts +25 -0
- package/dist/core/sdd/diagnose.js +1312 -0
- package/dist/core/sdd/docs-sync.d.ts +21 -0
- package/dist/core/sdd/docs-sync.js +231 -0
- package/dist/core/sdd/domain/helpers.d.ts +6 -0
- package/dist/core/sdd/domain/helpers.js +37 -0
- package/dist/core/sdd/domain/lifecycle-guardrails.d.ts +22 -0
- package/dist/core/sdd/domain/lifecycle-guardrails.js +31 -0
- package/dist/core/sdd/domain/lifecycle-hooks.d.ts +16 -0
- package/dist/core/sdd/domain/lifecycle-hooks.js +27 -0
- package/dist/core/sdd/domain/post-active-validation.d.ts +15 -0
- package/dist/core/sdd/domain/post-active-validation.js +71 -0
- package/dist/core/sdd/domain/traceability.d.ts +8 -0
- package/dist/core/sdd/domain/traceability.js +83 -0
- package/dist/core/sdd/domain/transition-engine.d.ts +49 -0
- package/dist/core/sdd/domain/transition-engine.js +120 -0
- package/dist/core/sdd/fingerprint.d.ts +23 -0
- package/dist/core/sdd/fingerprint.js +146 -0
- package/dist/core/sdd/import-openspec.d.ts +31 -0
- package/dist/core/sdd/import-openspec.js +232 -0
- package/dist/core/sdd/init.d.ts +36 -0
- package/dist/core/sdd/init.js +65 -0
- package/dist/core/sdd/json-schema.d.ts +6 -0
- package/dist/core/sdd/json-schema.js +59 -0
- package/dist/core/sdd/legacy-operations.d.ts +286 -0
- package/dist/core/sdd/legacy-operations.js +2175 -0
- package/dist/core/sdd/lenses.d.ts +14 -0
- package/dist/core/sdd/lenses.js +97 -0
- package/dist/core/sdd/merge-catalog.d.ts +9 -0
- package/dist/core/sdd/merge-catalog.js +70 -0
- package/dist/core/sdd/migrate-workspace.d.ts +36 -0
- package/dist/core/sdd/migrate-workspace.js +344 -0
- package/dist/core/sdd/migrate.d.ts +24 -0
- package/dist/core/sdd/migrate.js +385 -0
- package/dist/core/sdd/resolve-project-root.d.ts +15 -0
- package/dist/core/sdd/resolve-project-root.js +46 -0
- package/dist/core/sdd/root-resolver.d.ts +16 -0
- package/dist/core/sdd/root-resolver.js +62 -0
- package/dist/core/sdd/sanitize.d.ts +35 -0
- package/dist/core/sdd/sanitize.js +750 -0
- package/dist/core/sdd/services/approve.service.d.ts +20 -0
- package/dist/core/sdd/services/approve.service.js +82 -0
- package/dist/core/sdd/services/audit.service.d.ts +53 -0
- package/dist/core/sdd/services/audit.service.js +136 -0
- package/dist/core/sdd/services/breakdown.service.d.ts +35 -0
- package/dist/core/sdd/services/breakdown.service.js +185 -0
- package/dist/core/sdd/services/context.service.d.ts +346 -0
- package/dist/core/sdd/services/context.service.js +278 -0
- package/dist/core/sdd/services/debate.service.d.ts +16 -0
- package/dist/core/sdd/services/debate.service.js +73 -0
- package/dist/core/sdd/services/decide.service.d.ts +23 -0
- package/dist/core/sdd/services/decide.service.js +81 -0
- package/dist/core/sdd/services/dedup-apply.service.d.ts +39 -0
- package/dist/core/sdd/services/dedup-apply.service.js +259 -0
- package/dist/core/sdd/services/feature-lint.service.d.ts +29 -0
- package/dist/core/sdd/services/feature-lint.service.js +146 -0
- package/dist/core/sdd/services/finalize.service.d.ts +33 -0
- package/dist/core/sdd/services/finalize.service.js +707 -0
- package/dist/core/sdd/services/frontend-gap.service.d.ts +23 -0
- package/dist/core/sdd/services/frontend-gap.service.js +117 -0
- package/dist/core/sdd/services/frontend-impact.service.d.ts +19 -0
- package/dist/core/sdd/services/frontend-impact.service.js +46 -0
- package/dist/core/sdd/services/ingest-deposito.service.d.ts +32 -0
- package/dist/core/sdd/services/ingest-deposito.service.js +231 -0
- package/dist/core/sdd/services/insight.service.d.ts +21 -0
- package/dist/core/sdd/services/insight.service.js +81 -0
- package/dist/core/sdd/services/legacy-capability.service.d.ts +24 -0
- package/dist/core/sdd/services/legacy-capability.service.js +59 -0
- package/dist/core/sdd/services/mcp-runtime.service.d.ts +42 -0
- package/dist/core/sdd/services/mcp-runtime.service.js +144 -0
- package/dist/core/sdd/services/metrics.service.d.ts +49 -0
- package/dist/core/sdd/services/metrics.service.js +181 -0
- package/dist/core/sdd/services/next.service.d.ts +35 -0
- package/dist/core/sdd/services/next.service.js +54 -0
- package/dist/core/sdd/services/onboard.service.d.ts +9 -0
- package/dist/core/sdd/services/onboard.service.js +165 -0
- package/dist/core/sdd/services/rebuild.service.d.ts +31 -0
- package/dist/core/sdd/services/rebuild.service.js +482 -0
- package/dist/core/sdd/services/scan-naming.service.d.ts +43 -0
- package/dist/core/sdd/services/scan-naming.service.js +246 -0
- package/dist/core/sdd/services/skills-invoke.service.d.ts +24 -0
- package/dist/core/sdd/services/skills-invoke.service.js +63 -0
- package/dist/core/sdd/services/skills-sync.service.d.ts +15 -0
- package/dist/core/sdd/services/skills-sync.service.js +117 -0
- package/dist/core/sdd/services/start.service.d.ts +26 -0
- package/dist/core/sdd/services/start.service.js +237 -0
- package/dist/core/sdd/skills.d.ts +15 -0
- package/dist/core/sdd/skills.js +46 -0
- package/dist/core/sdd/state-lock.d.ts +19 -0
- package/dist/core/sdd/state-lock.js +144 -0
- package/dist/core/sdd/state.d.ts +155 -0
- package/dist/core/sdd/state.js +1000 -0
- package/dist/core/sdd/store/in-memory-adapter.d.ts +12 -0
- package/dist/core/sdd/store/in-memory-adapter.js +27 -0
- package/dist/core/sdd/store/index.d.ts +5 -0
- package/dist/core/sdd/store/index.js +5 -0
- package/dist/core/sdd/store/sdd-stores.d.ts +25 -0
- package/dist/core/sdd/store/sdd-stores.js +59 -0
- package/dist/core/sdd/store/state-store.d.ts +32 -0
- package/dist/core/sdd/store/state-store.js +2 -0
- package/dist/core/sdd/store/yaml-file-adapter.d.ts +12 -0
- package/dist/core/sdd/store/yaml-file-adapter.js +43 -0
- package/dist/core/sdd/structural-health.d.ts +557 -0
- package/dist/core/sdd/structural-health.js +187 -0
- package/dist/core/sdd/transaction.d.ts +14 -0
- package/dist/core/sdd/transaction.js +100 -0
- package/dist/core/sdd/types.d.ts +1570 -0
- package/dist/core/sdd/types.js +617 -0
- package/dist/core/sdd/views.d.ts +3 -0
- package/dist/core/sdd/views.js +560 -0
- package/dist/core/sdd/workspace-schemas.d.ts +620 -0
- package/dist/core/sdd/workspace-schemas.js +254 -0
- package/dist/core/sdd/write-manifest.d.ts +25 -0
- package/dist/core/sdd/write-manifest.js +353 -0
- package/dist/core/shared/index.d.ts +8 -0
- package/dist/core/shared/index.js +8 -0
- package/dist/core/shared/skill-generation.d.ts +49 -0
- package/dist/core/shared/skill-generation.js +106 -0
- package/dist/core/shared/tool-detection.d.ts +71 -0
- package/dist/core/shared/tool-detection.js +158 -0
- package/dist/core/specs-apply.d.ts +73 -0
- package/dist/core/specs-apply.js +385 -0
- package/dist/core/styles/palette.d.ts +7 -0
- package/dist/core/styles/palette.js +8 -0
- package/dist/core/templates/index.d.ts +8 -0
- package/dist/core/templates/index.js +9 -0
- package/dist/core/templates/skill-templates.d.ts +20 -0
- package/dist/core/templates/skill-templates.js +19 -0
- package/dist/core/templates/types.d.ts +19 -0
- package/dist/core/templates/types.js +5 -0
- package/dist/core/templates/workflows/apply-change.d.ts +10 -0
- package/dist/core/templates/workflows/apply-change.js +308 -0
- package/dist/core/templates/workflows/archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/archive-change.js +277 -0
- package/dist/core/templates/workflows/bulk-archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/bulk-archive-change.js +502 -0
- package/dist/core/templates/workflows/continue-change.d.ts +10 -0
- package/dist/core/templates/workflows/continue-change.js +232 -0
- package/dist/core/templates/workflows/explore.d.ts +10 -0
- package/dist/core/templates/workflows/explore.js +475 -0
- package/dist/core/templates/workflows/feedback.d.ts +9 -0
- package/dist/core/templates/workflows/feedback.js +108 -0
- package/dist/core/templates/workflows/ff-change.d.ts +10 -0
- package/dist/core/templates/workflows/ff-change.js +206 -0
- package/dist/core/templates/workflows/new-change.d.ts +10 -0
- package/dist/core/templates/workflows/new-change.js +151 -0
- package/dist/core/templates/workflows/onboard.d.ts +10 -0
- package/dist/core/templates/workflows/onboard.js +573 -0
- package/dist/core/templates/workflows/propose.d.ts +10 -0
- package/dist/core/templates/workflows/propose.js +224 -0
- package/dist/core/templates/workflows/sdd.d.ts +10 -0
- package/dist/core/templates/workflows/sdd.js +107 -0
- package/dist/core/templates/workflows/sync-specs.d.ts +10 -0
- package/dist/core/templates/workflows/sync-specs.js +286 -0
- package/dist/core/templates/workflows/verify-change.d.ts +10 -0
- package/dist/core/templates/workflows/verify-change.js +346 -0
- package/dist/core/update.d.ts +77 -0
- package/dist/core/update.js +538 -0
- package/dist/core/validation/constants.d.ts +34 -0
- package/dist/core/validation/constants.js +40 -0
- package/dist/core/validation/types.d.ts +18 -0
- package/dist/core/validation/types.js +2 -0
- package/dist/core/validation/validator.d.ts +33 -0
- package/dist/core/validation/validator.js +409 -0
- package/dist/core/view.d.ts +8 -0
- package/dist/core/view.js +170 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/prompts/searchable-multi-select.d.ts +28 -0
- package/dist/prompts/searchable-multi-select.js +159 -0
- package/dist/telemetry/config.d.ts +32 -0
- package/dist/telemetry/config.js +68 -0
- package/dist/telemetry/index.d.ts +44 -0
- package/dist/telemetry/index.js +207 -0
- package/dist/ui/ascii-patterns.d.ts +16 -0
- package/dist/ui/ascii-patterns.js +133 -0
- package/dist/ui/welcome-screen.d.ts +10 -0
- package/dist/ui/welcome-screen.js +146 -0
- package/dist/utils/change-metadata.d.ts +51 -0
- package/dist/utils/change-metadata.js +147 -0
- package/dist/utils/change-utils.d.ts +62 -0
- package/dist/utils/change-utils.js +121 -0
- package/dist/utils/command-references.d.ts +18 -0
- package/dist/utils/command-references.js +20 -0
- package/dist/utils/file-system.d.ts +36 -0
- package/dist/utils/file-system.js +281 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.js +9 -0
- package/dist/utils/interactive.d.ts +18 -0
- package/dist/utils/interactive.js +21 -0
- package/dist/utils/item-discovery.d.ts +4 -0
- package/dist/utils/item-discovery.js +73 -0
- package/dist/utils/match.d.ts +3 -0
- package/dist/utils/match.js +22 -0
- package/dist/utils/openspec-compat.d.ts +2 -0
- package/dist/utils/openspec-compat.js +2 -0
- package/dist/utils/shell-detection.d.ts +20 -0
- package/dist/utils/shell-detection.js +41 -0
- package/dist/utils/task-progress.d.ts +8 -0
- package/dist/utils/task-progress.js +36 -0
- package/package.json +111 -0
- package/schemas/sdd/1-spec.schema.json +221 -0
- package/schemas/sdd/2-plan.schema.json +199 -0
- package/schemas/sdd/3-tasks.schema.json +102 -0
- package/schemas/sdd/4-changelog.schema.json +55 -0
- package/schemas/sdd/5-quality.schema.json +427 -0
- package/schemas/sdd/workspace-catalog.schema.json +1012 -0
- package/schemas/spec-driven/schema.yaml +153 -0
- package/schemas/spec-driven/templates/design.md +19 -0
- package/schemas/spec-driven/templates/proposal.md +23 -0
- package/schemas/spec-driven/templates/spec.md +8 -0
- package/schemas/spec-driven/templates/tasks.md +9 -0
|
@@ -0,0 +1,1570 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const ID_PATTERNS: {
|
|
3
|
+
readonly insight: RegExp;
|
|
4
|
+
readonly debate: RegExp;
|
|
5
|
+
readonly radar: RegExp;
|
|
6
|
+
readonly epic: RegExp;
|
|
7
|
+
/** Matches both RAD-### (legacy) and EPIC-#### (canonical) */
|
|
8
|
+
readonly epicOrRadar: RegExp;
|
|
9
|
+
readonly feature: RegExp;
|
|
10
|
+
readonly frontendGap: RegExp;
|
|
11
|
+
readonly techDebt: RegExp;
|
|
12
|
+
};
|
|
13
|
+
export declare const OriginTypeSchema: z.ZodEnum<{
|
|
14
|
+
radar: "radar";
|
|
15
|
+
epic: "epic";
|
|
16
|
+
direct: "direct";
|
|
17
|
+
fast_track: "fast_track";
|
|
18
|
+
frontend_gap: "frontend_gap";
|
|
19
|
+
tech_debt: "tech_debt";
|
|
20
|
+
}>;
|
|
21
|
+
export declare const ScaleSchema: z.ZodEnum<{
|
|
22
|
+
QUICK: "QUICK";
|
|
23
|
+
STANDARD: "STANDARD";
|
|
24
|
+
LARGE: "LARGE";
|
|
25
|
+
}>;
|
|
26
|
+
export declare const ExecutionKindSchema: z.ZodEnum<{
|
|
27
|
+
documentation: "documentation";
|
|
28
|
+
feature: "feature";
|
|
29
|
+
infra: "infra";
|
|
30
|
+
migration: "migration";
|
|
31
|
+
frontend_coverage: "frontend_coverage";
|
|
32
|
+
}>;
|
|
33
|
+
export declare const PlanningModeSchema: z.ZodEnum<{
|
|
34
|
+
local_plan: "local_plan";
|
|
35
|
+
direct_tasks: "direct_tasks";
|
|
36
|
+
}>;
|
|
37
|
+
export declare const FlowModeSchema: z.ZodEnum<{
|
|
38
|
+
direto: "direto";
|
|
39
|
+
padrao: "padrao";
|
|
40
|
+
rigoroso: "rigoroso";
|
|
41
|
+
}>;
|
|
42
|
+
export declare const FlowStageSchema: z.ZodEnum<{
|
|
43
|
+
proposta: "proposta";
|
|
44
|
+
planejamento: "planejamento";
|
|
45
|
+
tarefas: "tarefas";
|
|
46
|
+
execucao: "execucao";
|
|
47
|
+
consolidacao: "consolidacao";
|
|
48
|
+
}>;
|
|
49
|
+
export declare const GateStatusSchema: z.ZodEnum<{
|
|
50
|
+
nao_exigida: "nao_exigida";
|
|
51
|
+
rascunho: "rascunho";
|
|
52
|
+
pronta: "pronta";
|
|
53
|
+
aprovada: "aprovada";
|
|
54
|
+
}>;
|
|
55
|
+
export declare const SourceDocumentTypeSchema: z.ZodEnum<{
|
|
56
|
+
legado: "legado";
|
|
57
|
+
prd: "prd";
|
|
58
|
+
rfc: "rfc";
|
|
59
|
+
briefing: "briefing";
|
|
60
|
+
historia: "historia";
|
|
61
|
+
wireframe: "wireframe";
|
|
62
|
+
html_mock: "html_mock";
|
|
63
|
+
referencia_visual: "referencia_visual";
|
|
64
|
+
entrevista: "entrevista";
|
|
65
|
+
anexo: "anexo";
|
|
66
|
+
outro: "outro";
|
|
67
|
+
}>;
|
|
68
|
+
export declare const SourceDocumentStatusSchema: z.ZodEnum<{
|
|
69
|
+
RAW: "RAW";
|
|
70
|
+
INDEXED: "INDEXED";
|
|
71
|
+
NORMALIZED: "NORMALIZED";
|
|
72
|
+
PLANNED: "PLANNED";
|
|
73
|
+
ARCHIVED: "ARCHIVED";
|
|
74
|
+
}>;
|
|
75
|
+
export declare const SourceAuthoritySchema: z.ZodEnum<{
|
|
76
|
+
unknown: "unknown";
|
|
77
|
+
official: "official";
|
|
78
|
+
regulator: "regulator";
|
|
79
|
+
legislation: "legislation";
|
|
80
|
+
standard: "standard";
|
|
81
|
+
vendor: "vendor";
|
|
82
|
+
community: "community";
|
|
83
|
+
internal: "internal";
|
|
84
|
+
}>;
|
|
85
|
+
export declare const SourceClassificationSchema: z.ZodEnum<{
|
|
86
|
+
law: "law";
|
|
87
|
+
regulation: "regulation";
|
|
88
|
+
official_guidance: "official_guidance";
|
|
89
|
+
administrative_decision: "administrative_decision";
|
|
90
|
+
jurisprudence: "jurisprudence";
|
|
91
|
+
technical_best_practice: "technical_best_practice";
|
|
92
|
+
other: "other";
|
|
93
|
+
}>;
|
|
94
|
+
export declare const SourceVerificationStatusSchema: z.ZodEnum<{
|
|
95
|
+
verified: "verified";
|
|
96
|
+
stale: "stale";
|
|
97
|
+
unverified: "unverified";
|
|
98
|
+
needs_review: "needs_review";
|
|
99
|
+
}>;
|
|
100
|
+
export declare const DiscoveryTypeSchema: z.ZodEnum<{
|
|
101
|
+
INS: "INS";
|
|
102
|
+
DEB: "DEB";
|
|
103
|
+
RAD: "RAD";
|
|
104
|
+
EPIC: "EPIC";
|
|
105
|
+
}>;
|
|
106
|
+
export declare const DiscoveryStatusSchema: z.ZodEnum<{
|
|
107
|
+
PLANNED: "PLANNED";
|
|
108
|
+
NEW: "NEW";
|
|
109
|
+
DEBATED: "DEBATED";
|
|
110
|
+
PROMOTED: "PROMOTED";
|
|
111
|
+
DROPPED: "DROPPED";
|
|
112
|
+
OPEN: "OPEN";
|
|
113
|
+
APPROVED: "APPROVED";
|
|
114
|
+
DISCARDED: "DISCARDED";
|
|
115
|
+
SUPERSEDED: "SUPERSEDED";
|
|
116
|
+
READY: "READY";
|
|
117
|
+
SPLIT: "SPLIT";
|
|
118
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
119
|
+
DONE: "DONE";
|
|
120
|
+
CANCELLED: "CANCELLED";
|
|
121
|
+
}>;
|
|
122
|
+
export declare const BacklogStatusSchema: z.ZodEnum<{
|
|
123
|
+
ARCHIVED: "ARCHIVED";
|
|
124
|
+
READY: "READY";
|
|
125
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
126
|
+
DONE: "DONE";
|
|
127
|
+
BLOCKED: "BLOCKED";
|
|
128
|
+
SYNC_REQUIRED: "SYNC_REQUIRED";
|
|
129
|
+
VERIFY_FAILED: "VERIFY_FAILED";
|
|
130
|
+
}>;
|
|
131
|
+
export declare const FrontendGapStatusSchema: z.ZodEnum<{
|
|
132
|
+
PLANNED: "PLANNED";
|
|
133
|
+
OPEN: "OPEN";
|
|
134
|
+
SUPERSEDED: "SUPERSEDED";
|
|
135
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
136
|
+
DONE: "DONE";
|
|
137
|
+
}>;
|
|
138
|
+
export declare const FrontendImpactStatusSchema: z.ZodEnum<{
|
|
139
|
+
unknown: "unknown";
|
|
140
|
+
none: "none";
|
|
141
|
+
required: "required";
|
|
142
|
+
}>;
|
|
143
|
+
export declare const FrontendGapOriginKindSchema: z.ZodEnum<{
|
|
144
|
+
manual: "manual";
|
|
145
|
+
automatic: "automatic";
|
|
146
|
+
}>;
|
|
147
|
+
export declare const FrontendGapDetectionSourceSchema: z.ZodEnum<{
|
|
148
|
+
metadata: "metadata";
|
|
149
|
+
manual: "manual";
|
|
150
|
+
diff: "diff";
|
|
151
|
+
}>;
|
|
152
|
+
export declare const QualityEvidenceStatusSchema: z.ZodEnum<{
|
|
153
|
+
planned: "planned";
|
|
154
|
+
provided: "provided";
|
|
155
|
+
waived: "waived";
|
|
156
|
+
}>;
|
|
157
|
+
export declare const QualityEvidenceModeSchema: z.ZodEnum<{
|
|
158
|
+
coverage: "coverage";
|
|
159
|
+
equivalence: "equivalence";
|
|
160
|
+
hybrid: "hybrid";
|
|
161
|
+
}>;
|
|
162
|
+
export declare const QualityEnforcementSchema: z.ZodEnum<{
|
|
163
|
+
advisory: "advisory";
|
|
164
|
+
blocking: "blocking";
|
|
165
|
+
}>;
|
|
166
|
+
export declare const FrontendUiStatusSchema: z.ZodEnum<{
|
|
167
|
+
PLANNED: "PLANNED";
|
|
168
|
+
OK: "OK";
|
|
169
|
+
GAP: "GAP";
|
|
170
|
+
PARTIAL: "PARTIAL";
|
|
171
|
+
DEPRECATED: "DEPRECATED";
|
|
172
|
+
}>;
|
|
173
|
+
export declare const TechDebtStatusSchema: z.ZodEnum<{
|
|
174
|
+
OPEN: "OPEN";
|
|
175
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
176
|
+
DONE: "DONE";
|
|
177
|
+
}>;
|
|
178
|
+
export declare const QualityEvidenceSchema: z.ZodObject<{
|
|
179
|
+
kind: z.ZodString;
|
|
180
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
181
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
182
|
+
planned: "planned";
|
|
183
|
+
provided: "provided";
|
|
184
|
+
waived: "waived";
|
|
185
|
+
}>>;
|
|
186
|
+
command: z.ZodOptional<z.ZodString>;
|
|
187
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
188
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
189
|
+
}, z.core.$strip>;
|
|
190
|
+
export declare const QualityExceptionSchema: z.ZodObject<{
|
|
191
|
+
id: z.ZodString;
|
|
192
|
+
scope: z.ZodString;
|
|
193
|
+
reason: z.ZodString;
|
|
194
|
+
accepted_risk: z.ZodString;
|
|
195
|
+
compensating_control: z.ZodString;
|
|
196
|
+
review_deadline: z.ZodString;
|
|
197
|
+
approved_by: z.ZodString;
|
|
198
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
199
|
+
}, z.core.$strip>;
|
|
200
|
+
export declare const QualityContractSchema: z.ZodObject<{
|
|
201
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
202
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
203
|
+
inherited_from: z.ZodOptional<z.ZodString>;
|
|
204
|
+
scope: z.ZodDefault<z.ZodString>;
|
|
205
|
+
unit_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
206
|
+
integration_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
207
|
+
evidence_mode: z.ZodDefault<z.ZodEnum<{
|
|
208
|
+
coverage: "coverage";
|
|
209
|
+
equivalence: "equivalence";
|
|
210
|
+
hybrid: "hybrid";
|
|
211
|
+
}>>;
|
|
212
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
213
|
+
advisory: "advisory";
|
|
214
|
+
blocking: "blocking";
|
|
215
|
+
}>>;
|
|
216
|
+
stack_profile: z.ZodDefault<z.ZodString>;
|
|
217
|
+
required_axes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
218
|
+
required_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
219
|
+
kind: z.ZodString;
|
|
220
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
221
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
222
|
+
planned: "planned";
|
|
223
|
+
provided: "provided";
|
|
224
|
+
waived: "waived";
|
|
225
|
+
}>>;
|
|
226
|
+
command: z.ZodOptional<z.ZodString>;
|
|
227
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
228
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
229
|
+
}, z.core.$strip>>>;
|
|
230
|
+
exceptions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
231
|
+
id: z.ZodString;
|
|
232
|
+
scope: z.ZodString;
|
|
233
|
+
reason: z.ZodString;
|
|
234
|
+
accepted_risk: z.ZodString;
|
|
235
|
+
compensating_control: z.ZodString;
|
|
236
|
+
review_deadline: z.ZodString;
|
|
237
|
+
approved_by: z.ZodString;
|
|
238
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
239
|
+
}, z.core.$strip>>>;
|
|
240
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
241
|
+
}, z.core.$strip>;
|
|
242
|
+
export declare const DiscoveryRecordSchema: z.ZodObject<{
|
|
243
|
+
id: z.ZodString;
|
|
244
|
+
type: z.ZodEnum<{
|
|
245
|
+
INS: "INS";
|
|
246
|
+
DEB: "DEB";
|
|
247
|
+
RAD: "RAD";
|
|
248
|
+
EPIC: "EPIC";
|
|
249
|
+
}>;
|
|
250
|
+
title: z.ZodString;
|
|
251
|
+
title_canonical: z.ZodOptional<z.ZodString>;
|
|
252
|
+
status: z.ZodEnum<{
|
|
253
|
+
PLANNED: "PLANNED";
|
|
254
|
+
NEW: "NEW";
|
|
255
|
+
DEBATED: "DEBATED";
|
|
256
|
+
PROMOTED: "PROMOTED";
|
|
257
|
+
DROPPED: "DROPPED";
|
|
258
|
+
OPEN: "OPEN";
|
|
259
|
+
APPROVED: "APPROVED";
|
|
260
|
+
DISCARDED: "DISCARDED";
|
|
261
|
+
SUPERSEDED: "SUPERSEDED";
|
|
262
|
+
READY: "READY";
|
|
263
|
+
SPLIT: "SPLIT";
|
|
264
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
265
|
+
DONE: "DONE";
|
|
266
|
+
CANCELLED: "CANCELLED";
|
|
267
|
+
}>;
|
|
268
|
+
origin_prompt: z.ZodOptional<z.ZodString>;
|
|
269
|
+
related_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
270
|
+
warning_links: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
271
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
272
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
273
|
+
quality_contract: z.ZodOptional<z.ZodObject<{
|
|
274
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
275
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
276
|
+
inherited_from: z.ZodOptional<z.ZodString>;
|
|
277
|
+
scope: z.ZodDefault<z.ZodString>;
|
|
278
|
+
unit_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
279
|
+
integration_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
280
|
+
evidence_mode: z.ZodDefault<z.ZodEnum<{
|
|
281
|
+
coverage: "coverage";
|
|
282
|
+
equivalence: "equivalence";
|
|
283
|
+
hybrid: "hybrid";
|
|
284
|
+
}>>;
|
|
285
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
286
|
+
advisory: "advisory";
|
|
287
|
+
blocking: "blocking";
|
|
288
|
+
}>>;
|
|
289
|
+
stack_profile: z.ZodDefault<z.ZodString>;
|
|
290
|
+
required_axes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
291
|
+
required_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
292
|
+
kind: z.ZodString;
|
|
293
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
294
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
295
|
+
planned: "planned";
|
|
296
|
+
provided: "provided";
|
|
297
|
+
waived: "waived";
|
|
298
|
+
}>>;
|
|
299
|
+
command: z.ZodOptional<z.ZodString>;
|
|
300
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
301
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
302
|
+
}, z.core.$strip>>>;
|
|
303
|
+
exceptions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
304
|
+
id: z.ZodString;
|
|
305
|
+
scope: z.ZodString;
|
|
306
|
+
reason: z.ZodString;
|
|
307
|
+
accepted_risk: z.ZodString;
|
|
308
|
+
compensating_control: z.ZodString;
|
|
309
|
+
review_deadline: z.ZodString;
|
|
310
|
+
approved_by: z.ZodString;
|
|
311
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
312
|
+
}, z.core.$strip>>>;
|
|
313
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
314
|
+
}, z.core.$strip>>;
|
|
315
|
+
}, z.core.$strip>;
|
|
316
|
+
export declare const BacklogItemSchema: z.ZodObject<{
|
|
317
|
+
id: z.ZodString;
|
|
318
|
+
title: z.ZodString;
|
|
319
|
+
status: z.ZodEnum<{
|
|
320
|
+
ARCHIVED: "ARCHIVED";
|
|
321
|
+
READY: "READY";
|
|
322
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
323
|
+
DONE: "DONE";
|
|
324
|
+
BLOCKED: "BLOCKED";
|
|
325
|
+
SYNC_REQUIRED: "SYNC_REQUIRED";
|
|
326
|
+
VERIFY_FAILED: "VERIFY_FAILED";
|
|
327
|
+
}>;
|
|
328
|
+
origin_type: z.ZodEnum<{
|
|
329
|
+
radar: "radar";
|
|
330
|
+
epic: "epic";
|
|
331
|
+
direct: "direct";
|
|
332
|
+
fast_track: "fast_track";
|
|
333
|
+
frontend_gap: "frontend_gap";
|
|
334
|
+
tech_debt: "tech_debt";
|
|
335
|
+
}>;
|
|
336
|
+
origin_ref: z.ZodOptional<z.ZodString>;
|
|
337
|
+
scale: z.ZodDefault<z.ZodEnum<{
|
|
338
|
+
QUICK: "QUICK";
|
|
339
|
+
STANDARD: "STANDARD";
|
|
340
|
+
LARGE: "LARGE";
|
|
341
|
+
}>>;
|
|
342
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
343
|
+
blocked_by: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
344
|
+
touches: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
345
|
+
lock_domains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
346
|
+
parallel_group: z.ZodOptional<z.ZodString>;
|
|
347
|
+
execution_kind: z.ZodDefault<z.ZodEnum<{
|
|
348
|
+
documentation: "documentation";
|
|
349
|
+
feature: "feature";
|
|
350
|
+
infra: "infra";
|
|
351
|
+
migration: "migration";
|
|
352
|
+
frontend_coverage: "frontend_coverage";
|
|
353
|
+
}>>;
|
|
354
|
+
planning_mode: z.ZodDefault<z.ZodEnum<{
|
|
355
|
+
local_plan: "local_plan";
|
|
356
|
+
direct_tasks: "direct_tasks";
|
|
357
|
+
}>>;
|
|
358
|
+
flow_mode: z.ZodDefault<z.ZodEnum<{
|
|
359
|
+
direto: "direto";
|
|
360
|
+
padrao: "padrao";
|
|
361
|
+
rigoroso: "rigoroso";
|
|
362
|
+
}>>;
|
|
363
|
+
current_stage: z.ZodDefault<z.ZodEnum<{
|
|
364
|
+
proposta: "proposta";
|
|
365
|
+
planejamento: "planejamento";
|
|
366
|
+
tarefas: "tarefas";
|
|
367
|
+
execucao: "execucao";
|
|
368
|
+
consolidacao: "consolidacao";
|
|
369
|
+
}>>;
|
|
370
|
+
gates: z.ZodDefault<z.ZodObject<{
|
|
371
|
+
proposta: z.ZodDefault<z.ZodObject<{
|
|
372
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
373
|
+
nao_exigida: "nao_exigida";
|
|
374
|
+
rascunho: "rascunho";
|
|
375
|
+
pronta: "pronta";
|
|
376
|
+
aprovada: "aprovada";
|
|
377
|
+
}>>;
|
|
378
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
379
|
+
approved_by: z.ZodOptional<z.ZodString>;
|
|
380
|
+
note: z.ZodOptional<z.ZodString>;
|
|
381
|
+
}, z.core.$strip>>;
|
|
382
|
+
planejamento: z.ZodDefault<z.ZodObject<{
|
|
383
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
384
|
+
nao_exigida: "nao_exigida";
|
|
385
|
+
rascunho: "rascunho";
|
|
386
|
+
pronta: "pronta";
|
|
387
|
+
aprovada: "aprovada";
|
|
388
|
+
}>>;
|
|
389
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
390
|
+
approved_by: z.ZodOptional<z.ZodString>;
|
|
391
|
+
note: z.ZodOptional<z.ZodString>;
|
|
392
|
+
}, z.core.$strip>>;
|
|
393
|
+
tarefas: z.ZodDefault<z.ZodObject<{
|
|
394
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
395
|
+
nao_exigida: "nao_exigida";
|
|
396
|
+
rascunho: "rascunho";
|
|
397
|
+
pronta: "pronta";
|
|
398
|
+
aprovada: "aprovada";
|
|
399
|
+
}>>;
|
|
400
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
401
|
+
approved_by: z.ZodOptional<z.ZodString>;
|
|
402
|
+
note: z.ZodOptional<z.ZodString>;
|
|
403
|
+
}, z.core.$strip>>;
|
|
404
|
+
}, z.core.$strip>>;
|
|
405
|
+
acceptance_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
406
|
+
produces: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
407
|
+
consumes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
408
|
+
priority_score: z.ZodDefault<z.ZodNumber>;
|
|
409
|
+
dependency_count: z.ZodDefault<z.ZodNumber>;
|
|
410
|
+
agent_role: z.ZodOptional<z.ZodString>;
|
|
411
|
+
recommended_skills: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
412
|
+
change_name: z.ZodOptional<z.ZodString>;
|
|
413
|
+
branch_name: z.ZodOptional<z.ZodString>;
|
|
414
|
+
worktree_path: z.ZodOptional<z.ZodString>;
|
|
415
|
+
start_commit_sha: z.ZodOptional<z.ZodString>;
|
|
416
|
+
requires_adr: z.ZodDefault<z.ZodBoolean>;
|
|
417
|
+
quality_contract: z.ZodOptional<z.ZodObject<{
|
|
418
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
419
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
420
|
+
inherited_from: z.ZodOptional<z.ZodString>;
|
|
421
|
+
scope: z.ZodDefault<z.ZodString>;
|
|
422
|
+
unit_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
423
|
+
integration_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
424
|
+
evidence_mode: z.ZodDefault<z.ZodEnum<{
|
|
425
|
+
coverage: "coverage";
|
|
426
|
+
equivalence: "equivalence";
|
|
427
|
+
hybrid: "hybrid";
|
|
428
|
+
}>>;
|
|
429
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
430
|
+
advisory: "advisory";
|
|
431
|
+
blocking: "blocking";
|
|
432
|
+
}>>;
|
|
433
|
+
stack_profile: z.ZodDefault<z.ZodString>;
|
|
434
|
+
required_axes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
435
|
+
required_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
436
|
+
kind: z.ZodString;
|
|
437
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
438
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
439
|
+
planned: "planned";
|
|
440
|
+
provided: "provided";
|
|
441
|
+
waived: "waived";
|
|
442
|
+
}>>;
|
|
443
|
+
command: z.ZodOptional<z.ZodString>;
|
|
444
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
445
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
446
|
+
}, z.core.$strip>>>;
|
|
447
|
+
exceptions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
448
|
+
id: z.ZodString;
|
|
449
|
+
scope: z.ZodString;
|
|
450
|
+
reason: z.ZodString;
|
|
451
|
+
accepted_risk: z.ZodString;
|
|
452
|
+
compensating_control: z.ZodString;
|
|
453
|
+
review_deadline: z.ZodString;
|
|
454
|
+
approved_by: z.ZodString;
|
|
455
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
456
|
+
}, z.core.$strip>>>;
|
|
457
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
458
|
+
}, z.core.$strip>>;
|
|
459
|
+
frontend_impact_status: z.ZodDefault<z.ZodEnum<{
|
|
460
|
+
unknown: "unknown";
|
|
461
|
+
none: "none";
|
|
462
|
+
required: "required";
|
|
463
|
+
}>>;
|
|
464
|
+
frontend_impact_reason: z.ZodOptional<z.ZodString>;
|
|
465
|
+
frontend_impact_declared_at: z.ZodOptional<z.ZodString>;
|
|
466
|
+
frontend_surface_tokens: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
467
|
+
frontend_gap_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
468
|
+
warning_links: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
469
|
+
spec_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
470
|
+
last_sync_at: z.ZodOptional<z.ZodString>;
|
|
471
|
+
archived_at: z.ZodOptional<z.ZodString>;
|
|
472
|
+
done_at: z.ZodOptional<z.ZodString>;
|
|
473
|
+
unblocked_at: z.ZodOptional<z.ZodString>;
|
|
474
|
+
}, z.core.$strip>;
|
|
475
|
+
export declare const TechDebtRecordSchema: z.ZodObject<{
|
|
476
|
+
id: z.ZodString;
|
|
477
|
+
title: z.ZodString;
|
|
478
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
479
|
+
OPEN: "OPEN";
|
|
480
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
481
|
+
DONE: "DONE";
|
|
482
|
+
}>>;
|
|
483
|
+
description: z.ZodOptional<z.ZodString>;
|
|
484
|
+
related_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
485
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
486
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
487
|
+
}, z.core.$strip>;
|
|
488
|
+
export declare const FinalizeQueueItemSchema: z.ZodObject<{
|
|
489
|
+
feature_id: z.ZodString;
|
|
490
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
491
|
+
DONE: "DONE";
|
|
492
|
+
PENDING: "PENDING";
|
|
493
|
+
}>>;
|
|
494
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
495
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
496
|
+
completed_at: z.ZodOptional<z.ZodString>;
|
|
497
|
+
}, z.core.$strip>;
|
|
498
|
+
export declare const UnblockEventSchema: z.ZodObject<{
|
|
499
|
+
feature_id: z.ZodString;
|
|
500
|
+
unblocked_by: z.ZodString;
|
|
501
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
502
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
503
|
+
NEW: "NEW";
|
|
504
|
+
SEEN: "SEEN";
|
|
505
|
+
}>>;
|
|
506
|
+
}, z.core.$strip>;
|
|
507
|
+
export declare const TransitionLogEventSchema: z.ZodObject<{
|
|
508
|
+
entity_type: z.ZodString;
|
|
509
|
+
entity_id: z.ZodString;
|
|
510
|
+
from: z.ZodString;
|
|
511
|
+
to: z.ZodString;
|
|
512
|
+
actor: z.ZodString;
|
|
513
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
514
|
+
timestamp: z.ZodString;
|
|
515
|
+
source_command: z.ZodString;
|
|
516
|
+
force_transition: z.ZodDefault<z.ZodBoolean>;
|
|
517
|
+
lens_violations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
518
|
+
}, z.core.$strip>;
|
|
519
|
+
export declare const SkillCatalogEntrySchema: z.ZodObject<{
|
|
520
|
+
id: z.ZodString;
|
|
521
|
+
source_repo: z.ZodOptional<z.ZodString>;
|
|
522
|
+
source_path: z.ZodOptional<z.ZodString>;
|
|
523
|
+
title: z.ZodString;
|
|
524
|
+
description: z.ZodOptional<z.ZodString>;
|
|
525
|
+
phases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
526
|
+
domains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
527
|
+
tools: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
528
|
+
bundle_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
529
|
+
priority: z.ZodDefault<z.ZodNumber>;
|
|
530
|
+
}, z.core.$strip>;
|
|
531
|
+
export declare const SkillBundleSchema: z.ZodObject<{
|
|
532
|
+
id: z.ZodString;
|
|
533
|
+
title: z.ZodString;
|
|
534
|
+
skill_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
535
|
+
}, z.core.$strip>;
|
|
536
|
+
export declare const SkillRoutingRuleSchema: z.ZodObject<{
|
|
537
|
+
domain: z.ZodString;
|
|
538
|
+
skills: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
539
|
+
bundles: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
540
|
+
}, z.core.$strip>;
|
|
541
|
+
export declare const SkillRoutingStateSchema: z.ZodObject<{
|
|
542
|
+
version: z.ZodLiteral<1>;
|
|
543
|
+
default_skills: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
544
|
+
routes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
545
|
+
domain: z.ZodString;
|
|
546
|
+
skills: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
547
|
+
bundles: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
548
|
+
}, z.core.$strip>>>;
|
|
549
|
+
}, z.core.$strip>;
|
|
550
|
+
export declare const SourceDocumentRecordSchema: z.ZodObject<{
|
|
551
|
+
id: z.ZodString;
|
|
552
|
+
type: z.ZodEnum<{
|
|
553
|
+
legado: "legado";
|
|
554
|
+
prd: "prd";
|
|
555
|
+
rfc: "rfc";
|
|
556
|
+
briefing: "briefing";
|
|
557
|
+
historia: "historia";
|
|
558
|
+
wireframe: "wireframe";
|
|
559
|
+
html_mock: "html_mock";
|
|
560
|
+
referencia_visual: "referencia_visual";
|
|
561
|
+
entrevista: "entrevista";
|
|
562
|
+
anexo: "anexo";
|
|
563
|
+
outro: "outro";
|
|
564
|
+
}>;
|
|
565
|
+
path: z.ZodString;
|
|
566
|
+
title: z.ZodString;
|
|
567
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
568
|
+
RAW: "RAW";
|
|
569
|
+
INDEXED: "INDEXED";
|
|
570
|
+
NORMALIZED: "NORMALIZED";
|
|
571
|
+
PLANNED: "PLANNED";
|
|
572
|
+
ARCHIVED: "ARCHIVED";
|
|
573
|
+
}>>;
|
|
574
|
+
source_version: z.ZodDefault<z.ZodNumber>;
|
|
575
|
+
source_fingerprint: z.ZodOptional<z.ZodString>;
|
|
576
|
+
authority: z.ZodDefault<z.ZodEnum<{
|
|
577
|
+
unknown: "unknown";
|
|
578
|
+
official: "official";
|
|
579
|
+
regulator: "regulator";
|
|
580
|
+
legislation: "legislation";
|
|
581
|
+
standard: "standard";
|
|
582
|
+
vendor: "vendor";
|
|
583
|
+
community: "community";
|
|
584
|
+
internal: "internal";
|
|
585
|
+
}>>;
|
|
586
|
+
source_url: z.ZodOptional<z.ZodString>;
|
|
587
|
+
source_classification: z.ZodDefault<z.ZodEnum<{
|
|
588
|
+
law: "law";
|
|
589
|
+
regulation: "regulation";
|
|
590
|
+
official_guidance: "official_guidance";
|
|
591
|
+
administrative_decision: "administrative_decision";
|
|
592
|
+
jurisprudence: "jurisprudence";
|
|
593
|
+
technical_best_practice: "technical_best_practice";
|
|
594
|
+
other: "other";
|
|
595
|
+
}>>;
|
|
596
|
+
jurisdiction_tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
597
|
+
last_verified_at: z.ZodOptional<z.ZodString>;
|
|
598
|
+
verification_status: z.ZodDefault<z.ZodEnum<{
|
|
599
|
+
verified: "verified";
|
|
600
|
+
stale: "stale";
|
|
601
|
+
unverified: "unverified";
|
|
602
|
+
needs_review: "needs_review";
|
|
603
|
+
}>>;
|
|
604
|
+
verification_notes: z.ZodOptional<z.ZodString>;
|
|
605
|
+
legal_validation_required: z.ZodDefault<z.ZodBoolean>;
|
|
606
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
607
|
+
imported_at: z.ZodOptional<z.ZodString>;
|
|
608
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
609
|
+
used_by: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
610
|
+
notes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
611
|
+
consolidation_targets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
612
|
+
}, z.core.$strip>;
|
|
613
|
+
export declare const SourceVersionEventSchema: z.ZodObject<{
|
|
614
|
+
id: z.ZodString;
|
|
615
|
+
source_id: z.ZodString;
|
|
616
|
+
version: z.ZodNumber;
|
|
617
|
+
changed_at: z.ZodString;
|
|
618
|
+
reason: z.ZodString;
|
|
619
|
+
actor: z.ZodDefault<z.ZodString>;
|
|
620
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
621
|
+
}, z.core.$strip>;
|
|
622
|
+
export declare const JurisdictionProfileSchema: z.ZodObject<{
|
|
623
|
+
id: z.ZodString;
|
|
624
|
+
title: z.ZodString;
|
|
625
|
+
jurisdiction: z.ZodString;
|
|
626
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
627
|
+
active: "active";
|
|
628
|
+
proposed: "proposed";
|
|
629
|
+
deprecated: "deprecated";
|
|
630
|
+
}>>;
|
|
631
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
632
|
+
applicability: z.ZodOptional<z.ZodString>;
|
|
633
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
634
|
+
source_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
635
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
636
|
+
}, z.core.$strip>;
|
|
637
|
+
export declare const ControlCatalogItemSchema: z.ZodObject<{
|
|
638
|
+
id: z.ZodString;
|
|
639
|
+
title: z.ZodString;
|
|
640
|
+
category: z.ZodString;
|
|
641
|
+
severity: z.ZodDefault<z.ZodEnum<{
|
|
642
|
+
low: "low";
|
|
643
|
+
medium: "medium";
|
|
644
|
+
high: "high";
|
|
645
|
+
critical: "critical";
|
|
646
|
+
}>>;
|
|
647
|
+
automatable: z.ZodDefault<z.ZodEnum<{
|
|
648
|
+
yes: "yes";
|
|
649
|
+
partial: "partial";
|
|
650
|
+
no: "no";
|
|
651
|
+
}>>;
|
|
652
|
+
verification_types: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
653
|
+
jurisdiction_profile_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
654
|
+
source_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
655
|
+
legal_validation_required: z.ZodDefault<z.ZodBoolean>;
|
|
656
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
657
|
+
}, z.core.$strip>;
|
|
658
|
+
export declare const ArchitectureNodeSchema: z.ZodObject<{
|
|
659
|
+
id: z.ZodString;
|
|
660
|
+
name: z.ZodString;
|
|
661
|
+
kind: z.ZodString;
|
|
662
|
+
description: z.ZodOptional<z.ZodString>;
|
|
663
|
+
repo_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
664
|
+
depends_on: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
665
|
+
}, z.core.$strip>;
|
|
666
|
+
export declare const ServiceRecordSchema: z.ZodObject<{
|
|
667
|
+
id: z.ZodString;
|
|
668
|
+
name: z.ZodString;
|
|
669
|
+
responsibility: z.ZodOptional<z.ZodString>;
|
|
670
|
+
owner_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
671
|
+
repo_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
672
|
+
contracts: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
673
|
+
external_dependencies: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
674
|
+
}, z.core.$strip>;
|
|
675
|
+
export declare const TechStackRecordSchema: z.ZodObject<{
|
|
676
|
+
layer: z.ZodString;
|
|
677
|
+
technology: z.ZodString;
|
|
678
|
+
version: z.ZodOptional<z.ZodString>;
|
|
679
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
680
|
+
constraints: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
681
|
+
}, z.core.$strip>;
|
|
682
|
+
export declare const FrontendDecisionRecordSchema: z.ZodObject<{
|
|
683
|
+
id: z.ZodString;
|
|
684
|
+
title: z.ZodString;
|
|
685
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
686
|
+
APPROVED: "APPROVED";
|
|
687
|
+
DISCARDED: "DISCARDED";
|
|
688
|
+
SUPERSEDED: "SUPERSEDED";
|
|
689
|
+
PROPOSED: "PROPOSED";
|
|
690
|
+
}>>;
|
|
691
|
+
decision: z.ZodOptional<z.ZodString>;
|
|
692
|
+
rationale: z.ZodOptional<z.ZodString>;
|
|
693
|
+
related_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
694
|
+
route_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
695
|
+
adr_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
696
|
+
}, z.core.$strip>;
|
|
697
|
+
export declare const RepoMapRecordSchema: z.ZodObject<{
|
|
698
|
+
path: z.ZodString;
|
|
699
|
+
kind: z.ZodString;
|
|
700
|
+
service_ref: z.ZodOptional<z.ZodString>;
|
|
701
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
702
|
+
}, z.core.$strip>;
|
|
703
|
+
export declare const FrontendGapRecordSchema: z.ZodObject<{
|
|
704
|
+
id: z.ZodString;
|
|
705
|
+
title: z.ZodString;
|
|
706
|
+
status: z.ZodEnum<{
|
|
707
|
+
PLANNED: "PLANNED";
|
|
708
|
+
OPEN: "OPEN";
|
|
709
|
+
SUPERSEDED: "SUPERSEDED";
|
|
710
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
711
|
+
DONE: "DONE";
|
|
712
|
+
}>;
|
|
713
|
+
origin_kind: z.ZodDefault<z.ZodEnum<{
|
|
714
|
+
manual: "manual";
|
|
715
|
+
automatic: "automatic";
|
|
716
|
+
}>>;
|
|
717
|
+
detection_sources: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
718
|
+
metadata: "metadata";
|
|
719
|
+
manual: "manual";
|
|
720
|
+
diff: "diff";
|
|
721
|
+
}>>>;
|
|
722
|
+
origin_feature: z.ZodOptional<z.ZodString>;
|
|
723
|
+
backend_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
724
|
+
frontend_scope: z.ZodOptional<z.ZodString>;
|
|
725
|
+
route_targets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
726
|
+
menu_targets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
727
|
+
suggested_files: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
728
|
+
implemented_files: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
729
|
+
resolved_by_feature: z.ZodOptional<z.ZodString>;
|
|
730
|
+
related_route_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
731
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
732
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
733
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
734
|
+
}, z.core.$strip>;
|
|
735
|
+
export declare const FrontendRouteRecordSchema: z.ZodObject<{
|
|
736
|
+
id: z.ZodString;
|
|
737
|
+
path: z.ZodString;
|
|
738
|
+
parent_id: z.ZodOptional<z.ZodString>;
|
|
739
|
+
label: z.ZodOptional<z.ZodString>;
|
|
740
|
+
nav_surface: z.ZodOptional<z.ZodString>;
|
|
741
|
+
ui_status: z.ZodEnum<{
|
|
742
|
+
PLANNED: "PLANNED";
|
|
743
|
+
OK: "OK";
|
|
744
|
+
GAP: "GAP";
|
|
745
|
+
PARTIAL: "PARTIAL";
|
|
746
|
+
DEPRECATED: "DEPRECATED";
|
|
747
|
+
}>;
|
|
748
|
+
source_gap_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
749
|
+
implemented_files: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
750
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
751
|
+
}, z.core.$strip>;
|
|
752
|
+
export declare const DiscoveryIndexStateSchema: z.ZodObject<{
|
|
753
|
+
version: z.ZodLiteral<1>;
|
|
754
|
+
counters: z.ZodDefault<z.ZodObject<{
|
|
755
|
+
INS: z.ZodDefault<z.ZodNumber>;
|
|
756
|
+
DEB: z.ZodDefault<z.ZodNumber>;
|
|
757
|
+
RAD: z.ZodDefault<z.ZodNumber>;
|
|
758
|
+
EPIC: z.ZodDefault<z.ZodNumber>;
|
|
759
|
+
FEAT: z.ZodDefault<z.ZodNumber>;
|
|
760
|
+
FGAP: z.ZodDefault<z.ZodNumber>;
|
|
761
|
+
TD: z.ZodDefault<z.ZodNumber>;
|
|
762
|
+
}, z.core.$strip>>;
|
|
763
|
+
records: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
764
|
+
id: z.ZodString;
|
|
765
|
+
type: z.ZodEnum<{
|
|
766
|
+
INS: "INS";
|
|
767
|
+
DEB: "DEB";
|
|
768
|
+
RAD: "RAD";
|
|
769
|
+
EPIC: "EPIC";
|
|
770
|
+
}>;
|
|
771
|
+
title: z.ZodString;
|
|
772
|
+
title_canonical: z.ZodOptional<z.ZodString>;
|
|
773
|
+
status: z.ZodEnum<{
|
|
774
|
+
PLANNED: "PLANNED";
|
|
775
|
+
NEW: "NEW";
|
|
776
|
+
DEBATED: "DEBATED";
|
|
777
|
+
PROMOTED: "PROMOTED";
|
|
778
|
+
DROPPED: "DROPPED";
|
|
779
|
+
OPEN: "OPEN";
|
|
780
|
+
APPROVED: "APPROVED";
|
|
781
|
+
DISCARDED: "DISCARDED";
|
|
782
|
+
SUPERSEDED: "SUPERSEDED";
|
|
783
|
+
READY: "READY";
|
|
784
|
+
SPLIT: "SPLIT";
|
|
785
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
786
|
+
DONE: "DONE";
|
|
787
|
+
CANCELLED: "CANCELLED";
|
|
788
|
+
}>;
|
|
789
|
+
origin_prompt: z.ZodOptional<z.ZodString>;
|
|
790
|
+
related_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
791
|
+
warning_links: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
792
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
793
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
794
|
+
quality_contract: z.ZodOptional<z.ZodObject<{
|
|
795
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
796
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
797
|
+
inherited_from: z.ZodOptional<z.ZodString>;
|
|
798
|
+
scope: z.ZodDefault<z.ZodString>;
|
|
799
|
+
unit_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
800
|
+
integration_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
801
|
+
evidence_mode: z.ZodDefault<z.ZodEnum<{
|
|
802
|
+
coverage: "coverage";
|
|
803
|
+
equivalence: "equivalence";
|
|
804
|
+
hybrid: "hybrid";
|
|
805
|
+
}>>;
|
|
806
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
807
|
+
advisory: "advisory";
|
|
808
|
+
blocking: "blocking";
|
|
809
|
+
}>>;
|
|
810
|
+
stack_profile: z.ZodDefault<z.ZodString>;
|
|
811
|
+
required_axes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
812
|
+
required_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
813
|
+
kind: z.ZodString;
|
|
814
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
815
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
816
|
+
planned: "planned";
|
|
817
|
+
provided: "provided";
|
|
818
|
+
waived: "waived";
|
|
819
|
+
}>>;
|
|
820
|
+
command: z.ZodOptional<z.ZodString>;
|
|
821
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
822
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
823
|
+
}, z.core.$strip>>>;
|
|
824
|
+
exceptions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
825
|
+
id: z.ZodString;
|
|
826
|
+
scope: z.ZodString;
|
|
827
|
+
reason: z.ZodString;
|
|
828
|
+
accepted_risk: z.ZodString;
|
|
829
|
+
compensating_control: z.ZodString;
|
|
830
|
+
review_deadline: z.ZodString;
|
|
831
|
+
approved_by: z.ZodString;
|
|
832
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
833
|
+
}, z.core.$strip>>>;
|
|
834
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
835
|
+
}, z.core.$strip>>;
|
|
836
|
+
}, z.core.$strip>>>;
|
|
837
|
+
}, z.core.$strip>;
|
|
838
|
+
export declare const BacklogStateSchema: z.ZodObject<{
|
|
839
|
+
version: z.ZodLiteral<1>;
|
|
840
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
841
|
+
id: z.ZodString;
|
|
842
|
+
title: z.ZodString;
|
|
843
|
+
status: z.ZodEnum<{
|
|
844
|
+
ARCHIVED: "ARCHIVED";
|
|
845
|
+
READY: "READY";
|
|
846
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
847
|
+
DONE: "DONE";
|
|
848
|
+
BLOCKED: "BLOCKED";
|
|
849
|
+
SYNC_REQUIRED: "SYNC_REQUIRED";
|
|
850
|
+
VERIFY_FAILED: "VERIFY_FAILED";
|
|
851
|
+
}>;
|
|
852
|
+
origin_type: z.ZodEnum<{
|
|
853
|
+
radar: "radar";
|
|
854
|
+
epic: "epic";
|
|
855
|
+
direct: "direct";
|
|
856
|
+
fast_track: "fast_track";
|
|
857
|
+
frontend_gap: "frontend_gap";
|
|
858
|
+
tech_debt: "tech_debt";
|
|
859
|
+
}>;
|
|
860
|
+
origin_ref: z.ZodOptional<z.ZodString>;
|
|
861
|
+
scale: z.ZodDefault<z.ZodEnum<{
|
|
862
|
+
QUICK: "QUICK";
|
|
863
|
+
STANDARD: "STANDARD";
|
|
864
|
+
LARGE: "LARGE";
|
|
865
|
+
}>>;
|
|
866
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
867
|
+
blocked_by: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
868
|
+
touches: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
869
|
+
lock_domains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
870
|
+
parallel_group: z.ZodOptional<z.ZodString>;
|
|
871
|
+
execution_kind: z.ZodDefault<z.ZodEnum<{
|
|
872
|
+
documentation: "documentation";
|
|
873
|
+
feature: "feature";
|
|
874
|
+
infra: "infra";
|
|
875
|
+
migration: "migration";
|
|
876
|
+
frontend_coverage: "frontend_coverage";
|
|
877
|
+
}>>;
|
|
878
|
+
planning_mode: z.ZodDefault<z.ZodEnum<{
|
|
879
|
+
local_plan: "local_plan";
|
|
880
|
+
direct_tasks: "direct_tasks";
|
|
881
|
+
}>>;
|
|
882
|
+
flow_mode: z.ZodDefault<z.ZodEnum<{
|
|
883
|
+
direto: "direto";
|
|
884
|
+
padrao: "padrao";
|
|
885
|
+
rigoroso: "rigoroso";
|
|
886
|
+
}>>;
|
|
887
|
+
current_stage: z.ZodDefault<z.ZodEnum<{
|
|
888
|
+
proposta: "proposta";
|
|
889
|
+
planejamento: "planejamento";
|
|
890
|
+
tarefas: "tarefas";
|
|
891
|
+
execucao: "execucao";
|
|
892
|
+
consolidacao: "consolidacao";
|
|
893
|
+
}>>;
|
|
894
|
+
gates: z.ZodDefault<z.ZodObject<{
|
|
895
|
+
proposta: z.ZodDefault<z.ZodObject<{
|
|
896
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
897
|
+
nao_exigida: "nao_exigida";
|
|
898
|
+
rascunho: "rascunho";
|
|
899
|
+
pronta: "pronta";
|
|
900
|
+
aprovada: "aprovada";
|
|
901
|
+
}>>;
|
|
902
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
903
|
+
approved_by: z.ZodOptional<z.ZodString>;
|
|
904
|
+
note: z.ZodOptional<z.ZodString>;
|
|
905
|
+
}, z.core.$strip>>;
|
|
906
|
+
planejamento: z.ZodDefault<z.ZodObject<{
|
|
907
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
908
|
+
nao_exigida: "nao_exigida";
|
|
909
|
+
rascunho: "rascunho";
|
|
910
|
+
pronta: "pronta";
|
|
911
|
+
aprovada: "aprovada";
|
|
912
|
+
}>>;
|
|
913
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
914
|
+
approved_by: z.ZodOptional<z.ZodString>;
|
|
915
|
+
note: z.ZodOptional<z.ZodString>;
|
|
916
|
+
}, z.core.$strip>>;
|
|
917
|
+
tarefas: z.ZodDefault<z.ZodObject<{
|
|
918
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
919
|
+
nao_exigida: "nao_exigida";
|
|
920
|
+
rascunho: "rascunho";
|
|
921
|
+
pronta: "pronta";
|
|
922
|
+
aprovada: "aprovada";
|
|
923
|
+
}>>;
|
|
924
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
925
|
+
approved_by: z.ZodOptional<z.ZodString>;
|
|
926
|
+
note: z.ZodOptional<z.ZodString>;
|
|
927
|
+
}, z.core.$strip>>;
|
|
928
|
+
}, z.core.$strip>>;
|
|
929
|
+
acceptance_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
930
|
+
produces: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
931
|
+
consumes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
932
|
+
priority_score: z.ZodDefault<z.ZodNumber>;
|
|
933
|
+
dependency_count: z.ZodDefault<z.ZodNumber>;
|
|
934
|
+
agent_role: z.ZodOptional<z.ZodString>;
|
|
935
|
+
recommended_skills: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
936
|
+
change_name: z.ZodOptional<z.ZodString>;
|
|
937
|
+
branch_name: z.ZodOptional<z.ZodString>;
|
|
938
|
+
worktree_path: z.ZodOptional<z.ZodString>;
|
|
939
|
+
start_commit_sha: z.ZodOptional<z.ZodString>;
|
|
940
|
+
requires_adr: z.ZodDefault<z.ZodBoolean>;
|
|
941
|
+
quality_contract: z.ZodOptional<z.ZodObject<{
|
|
942
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
943
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
944
|
+
inherited_from: z.ZodOptional<z.ZodString>;
|
|
945
|
+
scope: z.ZodDefault<z.ZodString>;
|
|
946
|
+
unit_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
947
|
+
integration_target_percent: z.ZodDefault<z.ZodNumber>;
|
|
948
|
+
evidence_mode: z.ZodDefault<z.ZodEnum<{
|
|
949
|
+
coverage: "coverage";
|
|
950
|
+
equivalence: "equivalence";
|
|
951
|
+
hybrid: "hybrid";
|
|
952
|
+
}>>;
|
|
953
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
954
|
+
advisory: "advisory";
|
|
955
|
+
blocking: "blocking";
|
|
956
|
+
}>>;
|
|
957
|
+
stack_profile: z.ZodDefault<z.ZodString>;
|
|
958
|
+
required_axes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
959
|
+
required_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
960
|
+
kind: z.ZodString;
|
|
961
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
962
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
963
|
+
planned: "planned";
|
|
964
|
+
provided: "provided";
|
|
965
|
+
waived: "waived";
|
|
966
|
+
}>>;
|
|
967
|
+
command: z.ZodOptional<z.ZodString>;
|
|
968
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
969
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
970
|
+
}, z.core.$strip>>>;
|
|
971
|
+
exceptions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
972
|
+
id: z.ZodString;
|
|
973
|
+
scope: z.ZodString;
|
|
974
|
+
reason: z.ZodString;
|
|
975
|
+
accepted_risk: z.ZodString;
|
|
976
|
+
compensating_control: z.ZodString;
|
|
977
|
+
review_deadline: z.ZodString;
|
|
978
|
+
approved_by: z.ZodString;
|
|
979
|
+
approved_at: z.ZodOptional<z.ZodString>;
|
|
980
|
+
}, z.core.$strip>>>;
|
|
981
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
982
|
+
}, z.core.$strip>>;
|
|
983
|
+
frontend_impact_status: z.ZodDefault<z.ZodEnum<{
|
|
984
|
+
unknown: "unknown";
|
|
985
|
+
none: "none";
|
|
986
|
+
required: "required";
|
|
987
|
+
}>>;
|
|
988
|
+
frontend_impact_reason: z.ZodOptional<z.ZodString>;
|
|
989
|
+
frontend_impact_declared_at: z.ZodOptional<z.ZodString>;
|
|
990
|
+
frontend_surface_tokens: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
991
|
+
frontend_gap_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
992
|
+
warning_links: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
993
|
+
spec_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
994
|
+
last_sync_at: z.ZodOptional<z.ZodString>;
|
|
995
|
+
archived_at: z.ZodOptional<z.ZodString>;
|
|
996
|
+
done_at: z.ZodOptional<z.ZodString>;
|
|
997
|
+
unblocked_at: z.ZodOptional<z.ZodString>;
|
|
998
|
+
}, z.core.$strip>>>;
|
|
999
|
+
}, z.core.$strip>;
|
|
1000
|
+
export declare const TechDebtStateSchema: z.ZodObject<{
|
|
1001
|
+
version: z.ZodLiteral<1>;
|
|
1002
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1003
|
+
id: z.ZodString;
|
|
1004
|
+
title: z.ZodString;
|
|
1005
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1006
|
+
OPEN: "OPEN";
|
|
1007
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
1008
|
+
DONE: "DONE";
|
|
1009
|
+
}>>;
|
|
1010
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
related_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1012
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
}, z.core.$strip>>>;
|
|
1015
|
+
}, z.core.$strip>;
|
|
1016
|
+
export declare const FinalizeQueueStateSchema: z.ZodObject<{
|
|
1017
|
+
version: z.ZodLiteral<1>;
|
|
1018
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1019
|
+
feature_id: z.ZodString;
|
|
1020
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1021
|
+
DONE: "DONE";
|
|
1022
|
+
PENDING: "PENDING";
|
|
1023
|
+
}>>;
|
|
1024
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1025
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1026
|
+
completed_at: z.ZodOptional<z.ZodString>;
|
|
1027
|
+
}, z.core.$strip>>>;
|
|
1028
|
+
}, z.core.$strip>;
|
|
1029
|
+
export declare const UnblockEventsStateSchema: z.ZodObject<{
|
|
1030
|
+
version: z.ZodLiteral<1>;
|
|
1031
|
+
events: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1032
|
+
feature_id: z.ZodString;
|
|
1033
|
+
unblocked_by: z.ZodString;
|
|
1034
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1035
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1036
|
+
NEW: "NEW";
|
|
1037
|
+
SEEN: "SEEN";
|
|
1038
|
+
}>>;
|
|
1039
|
+
}, z.core.$strip>>>;
|
|
1040
|
+
}, z.core.$strip>;
|
|
1041
|
+
export declare const TransitionLogStateSchema: z.ZodObject<{
|
|
1042
|
+
version: z.ZodLiteral<1>;
|
|
1043
|
+
events: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1044
|
+
entity_type: z.ZodString;
|
|
1045
|
+
entity_id: z.ZodString;
|
|
1046
|
+
from: z.ZodString;
|
|
1047
|
+
to: z.ZodString;
|
|
1048
|
+
actor: z.ZodString;
|
|
1049
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
timestamp: z.ZodString;
|
|
1051
|
+
source_command: z.ZodString;
|
|
1052
|
+
force_transition: z.ZodDefault<z.ZodBoolean>;
|
|
1053
|
+
lens_violations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1054
|
+
}, z.core.$strip>>>;
|
|
1055
|
+
}, z.core.$strip>;
|
|
1056
|
+
export declare const AuditHistoryEntrySchema: z.ZodObject<{
|
|
1057
|
+
run_id: z.ZodString;
|
|
1058
|
+
generated_at: z.ZodString;
|
|
1059
|
+
score: z.ZodNumber;
|
|
1060
|
+
healthy: z.ZodBoolean;
|
|
1061
|
+
should_open_insight: z.ZodBoolean;
|
|
1062
|
+
metrics: z.ZodObject<{
|
|
1063
|
+
artifacts_without_placeholder: z.ZodObject<{
|
|
1064
|
+
ok: z.ZodNumber;
|
|
1065
|
+
total: z.ZodNumber;
|
|
1066
|
+
percent: z.ZodNumber;
|
|
1067
|
+
}, z.core.$strip>;
|
|
1068
|
+
debates_with_real_deliberation: z.ZodObject<{
|
|
1069
|
+
ok: z.ZodNumber;
|
|
1070
|
+
total: z.ZodNumber;
|
|
1071
|
+
percent: z.ZodNumber;
|
|
1072
|
+
}, z.core.$strip>;
|
|
1073
|
+
adrs_generated_vs_expected: z.ZodObject<{
|
|
1074
|
+
ok: z.ZodNumber;
|
|
1075
|
+
total: z.ZodNumber;
|
|
1076
|
+
percent: z.ZodNumber;
|
|
1077
|
+
}, z.core.$strip>;
|
|
1078
|
+
quality_contracts_ready: z.ZodObject<{
|
|
1079
|
+
ok: z.ZodNumber;
|
|
1080
|
+
total: z.ZodNumber;
|
|
1081
|
+
percent: z.ZodNumber;
|
|
1082
|
+
}, z.core.$strip>;
|
|
1083
|
+
forced_transitions: z.ZodObject<{
|
|
1084
|
+
total: z.ZodNumber;
|
|
1085
|
+
feature_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1086
|
+
}, z.core.$strip>;
|
|
1087
|
+
}, z.core.$strip>;
|
|
1088
|
+
recommendation: z.ZodString;
|
|
1089
|
+
}, z.core.$strip>;
|
|
1090
|
+
export declare const AuditHistoryStateSchema: z.ZodObject<{
|
|
1091
|
+
version: z.ZodLiteral<1>;
|
|
1092
|
+
runs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1093
|
+
run_id: z.ZodString;
|
|
1094
|
+
generated_at: z.ZodString;
|
|
1095
|
+
score: z.ZodNumber;
|
|
1096
|
+
healthy: z.ZodBoolean;
|
|
1097
|
+
should_open_insight: z.ZodBoolean;
|
|
1098
|
+
metrics: z.ZodObject<{
|
|
1099
|
+
artifacts_without_placeholder: z.ZodObject<{
|
|
1100
|
+
ok: z.ZodNumber;
|
|
1101
|
+
total: z.ZodNumber;
|
|
1102
|
+
percent: z.ZodNumber;
|
|
1103
|
+
}, z.core.$strip>;
|
|
1104
|
+
debates_with_real_deliberation: z.ZodObject<{
|
|
1105
|
+
ok: z.ZodNumber;
|
|
1106
|
+
total: z.ZodNumber;
|
|
1107
|
+
percent: z.ZodNumber;
|
|
1108
|
+
}, z.core.$strip>;
|
|
1109
|
+
adrs_generated_vs_expected: z.ZodObject<{
|
|
1110
|
+
ok: z.ZodNumber;
|
|
1111
|
+
total: z.ZodNumber;
|
|
1112
|
+
percent: z.ZodNumber;
|
|
1113
|
+
}, z.core.$strip>;
|
|
1114
|
+
quality_contracts_ready: z.ZodObject<{
|
|
1115
|
+
ok: z.ZodNumber;
|
|
1116
|
+
total: z.ZodNumber;
|
|
1117
|
+
percent: z.ZodNumber;
|
|
1118
|
+
}, z.core.$strip>;
|
|
1119
|
+
forced_transitions: z.ZodObject<{
|
|
1120
|
+
total: z.ZodNumber;
|
|
1121
|
+
feature_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1122
|
+
}, z.core.$strip>;
|
|
1123
|
+
}, z.core.$strip>;
|
|
1124
|
+
recommendation: z.ZodString;
|
|
1125
|
+
}, z.core.$strip>>>;
|
|
1126
|
+
}, z.core.$strip>;
|
|
1127
|
+
export declare const SkillCatalogStateSchema: z.ZodObject<{
|
|
1128
|
+
version: z.ZodLiteral<1>;
|
|
1129
|
+
skills: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1130
|
+
id: z.ZodString;
|
|
1131
|
+
source_repo: z.ZodOptional<z.ZodString>;
|
|
1132
|
+
source_path: z.ZodOptional<z.ZodString>;
|
|
1133
|
+
title: z.ZodString;
|
|
1134
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1135
|
+
phases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1136
|
+
domains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1137
|
+
tools: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1138
|
+
bundle_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1139
|
+
priority: z.ZodDefault<z.ZodNumber>;
|
|
1140
|
+
}, z.core.$strip>>>;
|
|
1141
|
+
bundles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1142
|
+
id: z.ZodString;
|
|
1143
|
+
title: z.ZodString;
|
|
1144
|
+
skill_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1145
|
+
}, z.core.$strip>>>;
|
|
1146
|
+
}, z.core.$strip>;
|
|
1147
|
+
export declare const SourceIndexStateSchema: z.ZodObject<{
|
|
1148
|
+
version: z.ZodLiteral<1>;
|
|
1149
|
+
sources: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1150
|
+
id: z.ZodString;
|
|
1151
|
+
type: z.ZodEnum<{
|
|
1152
|
+
legado: "legado";
|
|
1153
|
+
prd: "prd";
|
|
1154
|
+
rfc: "rfc";
|
|
1155
|
+
briefing: "briefing";
|
|
1156
|
+
historia: "historia";
|
|
1157
|
+
wireframe: "wireframe";
|
|
1158
|
+
html_mock: "html_mock";
|
|
1159
|
+
referencia_visual: "referencia_visual";
|
|
1160
|
+
entrevista: "entrevista";
|
|
1161
|
+
anexo: "anexo";
|
|
1162
|
+
outro: "outro";
|
|
1163
|
+
}>;
|
|
1164
|
+
path: z.ZodString;
|
|
1165
|
+
title: z.ZodString;
|
|
1166
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1167
|
+
RAW: "RAW";
|
|
1168
|
+
INDEXED: "INDEXED";
|
|
1169
|
+
NORMALIZED: "NORMALIZED";
|
|
1170
|
+
PLANNED: "PLANNED";
|
|
1171
|
+
ARCHIVED: "ARCHIVED";
|
|
1172
|
+
}>>;
|
|
1173
|
+
source_version: z.ZodDefault<z.ZodNumber>;
|
|
1174
|
+
source_fingerprint: z.ZodOptional<z.ZodString>;
|
|
1175
|
+
authority: z.ZodDefault<z.ZodEnum<{
|
|
1176
|
+
unknown: "unknown";
|
|
1177
|
+
official: "official";
|
|
1178
|
+
regulator: "regulator";
|
|
1179
|
+
legislation: "legislation";
|
|
1180
|
+
standard: "standard";
|
|
1181
|
+
vendor: "vendor";
|
|
1182
|
+
community: "community";
|
|
1183
|
+
internal: "internal";
|
|
1184
|
+
}>>;
|
|
1185
|
+
source_url: z.ZodOptional<z.ZodString>;
|
|
1186
|
+
source_classification: z.ZodDefault<z.ZodEnum<{
|
|
1187
|
+
law: "law";
|
|
1188
|
+
regulation: "regulation";
|
|
1189
|
+
official_guidance: "official_guidance";
|
|
1190
|
+
administrative_decision: "administrative_decision";
|
|
1191
|
+
jurisprudence: "jurisprudence";
|
|
1192
|
+
technical_best_practice: "technical_best_practice";
|
|
1193
|
+
other: "other";
|
|
1194
|
+
}>>;
|
|
1195
|
+
jurisdiction_tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1196
|
+
last_verified_at: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
verification_status: z.ZodDefault<z.ZodEnum<{
|
|
1198
|
+
verified: "verified";
|
|
1199
|
+
stale: "stale";
|
|
1200
|
+
unverified: "unverified";
|
|
1201
|
+
needs_review: "needs_review";
|
|
1202
|
+
}>>;
|
|
1203
|
+
verification_notes: z.ZodOptional<z.ZodString>;
|
|
1204
|
+
legal_validation_required: z.ZodDefault<z.ZodBoolean>;
|
|
1205
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1206
|
+
imported_at: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
1208
|
+
used_by: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1209
|
+
notes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1210
|
+
consolidation_targets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1211
|
+
}, z.core.$strip>>>;
|
|
1212
|
+
version_events: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1213
|
+
id: z.ZodString;
|
|
1214
|
+
source_id: z.ZodString;
|
|
1215
|
+
version: z.ZodNumber;
|
|
1216
|
+
changed_at: z.ZodString;
|
|
1217
|
+
reason: z.ZodString;
|
|
1218
|
+
actor: z.ZodDefault<z.ZodString>;
|
|
1219
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1220
|
+
}, z.core.$strip>>>;
|
|
1221
|
+
jurisdiction_profiles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1222
|
+
id: z.ZodString;
|
|
1223
|
+
title: z.ZodString;
|
|
1224
|
+
jurisdiction: z.ZodString;
|
|
1225
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1226
|
+
active: "active";
|
|
1227
|
+
proposed: "proposed";
|
|
1228
|
+
deprecated: "deprecated";
|
|
1229
|
+
}>>;
|
|
1230
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1231
|
+
applicability: z.ZodOptional<z.ZodString>;
|
|
1232
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1233
|
+
source_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1234
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
}, z.core.$strip>>>;
|
|
1236
|
+
control_catalog: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1237
|
+
id: z.ZodString;
|
|
1238
|
+
title: z.ZodString;
|
|
1239
|
+
category: z.ZodString;
|
|
1240
|
+
severity: z.ZodDefault<z.ZodEnum<{
|
|
1241
|
+
low: "low";
|
|
1242
|
+
medium: "medium";
|
|
1243
|
+
high: "high";
|
|
1244
|
+
critical: "critical";
|
|
1245
|
+
}>>;
|
|
1246
|
+
automatable: z.ZodDefault<z.ZodEnum<{
|
|
1247
|
+
yes: "yes";
|
|
1248
|
+
partial: "partial";
|
|
1249
|
+
no: "no";
|
|
1250
|
+
}>>;
|
|
1251
|
+
verification_types: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1252
|
+
jurisdiction_profile_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1253
|
+
source_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1254
|
+
legal_validation_required: z.ZodDefault<z.ZodBoolean>;
|
|
1255
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
1256
|
+
}, z.core.$strip>>>;
|
|
1257
|
+
}, z.core.$strip>;
|
|
1258
|
+
export declare const FrontendGapsStateSchema: z.ZodObject<{
|
|
1259
|
+
version: z.ZodLiteral<1>;
|
|
1260
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1261
|
+
id: z.ZodString;
|
|
1262
|
+
title: z.ZodString;
|
|
1263
|
+
status: z.ZodEnum<{
|
|
1264
|
+
PLANNED: "PLANNED";
|
|
1265
|
+
OPEN: "OPEN";
|
|
1266
|
+
SUPERSEDED: "SUPERSEDED";
|
|
1267
|
+
IN_PROGRESS: "IN_PROGRESS";
|
|
1268
|
+
DONE: "DONE";
|
|
1269
|
+
}>;
|
|
1270
|
+
origin_kind: z.ZodDefault<z.ZodEnum<{
|
|
1271
|
+
manual: "manual";
|
|
1272
|
+
automatic: "automatic";
|
|
1273
|
+
}>>;
|
|
1274
|
+
detection_sources: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
1275
|
+
metadata: "metadata";
|
|
1276
|
+
manual: "manual";
|
|
1277
|
+
diff: "diff";
|
|
1278
|
+
}>>>;
|
|
1279
|
+
origin_feature: z.ZodOptional<z.ZodString>;
|
|
1280
|
+
backend_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1281
|
+
frontend_scope: z.ZodOptional<z.ZodString>;
|
|
1282
|
+
route_targets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1283
|
+
menu_targets: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1284
|
+
suggested_files: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1285
|
+
implemented_files: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1286
|
+
resolved_by_feature: z.ZodOptional<z.ZodString>;
|
|
1287
|
+
related_route_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1288
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1289
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
1290
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
1291
|
+
}, z.core.$strip>>>;
|
|
1292
|
+
}, z.core.$strip>;
|
|
1293
|
+
export declare const FrontendMapStateSchema: z.ZodObject<{
|
|
1294
|
+
version: z.ZodLiteral<1>;
|
|
1295
|
+
routes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1296
|
+
id: z.ZodString;
|
|
1297
|
+
path: z.ZodString;
|
|
1298
|
+
parent_id: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
nav_surface: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
ui_status: z.ZodEnum<{
|
|
1302
|
+
PLANNED: "PLANNED";
|
|
1303
|
+
OK: "OK";
|
|
1304
|
+
GAP: "GAP";
|
|
1305
|
+
PARTIAL: "PARTIAL";
|
|
1306
|
+
DEPRECATED: "DEPRECATED";
|
|
1307
|
+
}>;
|
|
1308
|
+
source_gap_ids: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1309
|
+
implemented_files: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1310
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1311
|
+
}, z.core.$strip>>>;
|
|
1312
|
+
}, z.core.$strip>;
|
|
1313
|
+
export declare const ArchitectureStateSchema: z.ZodObject<{
|
|
1314
|
+
version: z.ZodLiteral<1>;
|
|
1315
|
+
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1316
|
+
id: z.ZodString;
|
|
1317
|
+
name: z.ZodString;
|
|
1318
|
+
kind: z.ZodString;
|
|
1319
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1320
|
+
repo_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1321
|
+
depends_on: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1322
|
+
}, z.core.$strip>>>;
|
|
1323
|
+
}, z.core.$strip>;
|
|
1324
|
+
export declare const ServiceCatalogStateSchema: z.ZodObject<{
|
|
1325
|
+
version: z.ZodLiteral<1>;
|
|
1326
|
+
services: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1327
|
+
id: z.ZodString;
|
|
1328
|
+
name: z.ZodString;
|
|
1329
|
+
responsibility: z.ZodOptional<z.ZodString>;
|
|
1330
|
+
owner_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1331
|
+
repo_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1332
|
+
contracts: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1333
|
+
external_dependencies: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1334
|
+
}, z.core.$strip>>>;
|
|
1335
|
+
}, z.core.$strip>;
|
|
1336
|
+
export declare const TechStackStateSchema: z.ZodObject<{
|
|
1337
|
+
version: z.ZodLiteral<1>;
|
|
1338
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1339
|
+
layer: z.ZodString;
|
|
1340
|
+
technology: z.ZodString;
|
|
1341
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1342
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
1343
|
+
constraints: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1344
|
+
}, z.core.$strip>>>;
|
|
1345
|
+
}, z.core.$strip>;
|
|
1346
|
+
export declare const IntegrationContractsStateSchema: z.ZodObject<{
|
|
1347
|
+
version: z.ZodLiteral<1>;
|
|
1348
|
+
contracts: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1349
|
+
}, z.core.$strip>;
|
|
1350
|
+
export declare const FrontendDecisionsStateSchema: z.ZodObject<{
|
|
1351
|
+
version: z.ZodLiteral<1>;
|
|
1352
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1353
|
+
id: z.ZodString;
|
|
1354
|
+
title: z.ZodString;
|
|
1355
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1356
|
+
APPROVED: "APPROVED";
|
|
1357
|
+
DISCARDED: "DISCARDED";
|
|
1358
|
+
SUPERSEDED: "SUPERSEDED";
|
|
1359
|
+
PROPOSED: "PROPOSED";
|
|
1360
|
+
}>>;
|
|
1361
|
+
decision: z.ZodOptional<z.ZodString>;
|
|
1362
|
+
rationale: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
related_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1364
|
+
route_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1365
|
+
adr_refs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1366
|
+
}, z.core.$strip>>>;
|
|
1367
|
+
}, z.core.$strip>;
|
|
1368
|
+
export declare const RepoMapStateSchema: z.ZodObject<{
|
|
1369
|
+
version: z.ZodLiteral<1>;
|
|
1370
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1371
|
+
path: z.ZodString;
|
|
1372
|
+
kind: z.ZodString;
|
|
1373
|
+
service_ref: z.ZodOptional<z.ZodString>;
|
|
1374
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1375
|
+
}, z.core.$strip>>>;
|
|
1376
|
+
}, z.core.$strip>;
|
|
1377
|
+
export declare const NamingContractTermScopeSchema: z.ZodEnum<{
|
|
1378
|
+
all: "all";
|
|
1379
|
+
code: "code";
|
|
1380
|
+
docs: "docs";
|
|
1381
|
+
state: "state";
|
|
1382
|
+
}>;
|
|
1383
|
+
export declare const NamingContractTermSeveritySchema: z.ZodEnum<{
|
|
1384
|
+
error: "error";
|
|
1385
|
+
warning: "warning";
|
|
1386
|
+
}>;
|
|
1387
|
+
export declare const NamingContractForbiddenTermSchema: z.ZodObject<{
|
|
1388
|
+
term: z.ZodString;
|
|
1389
|
+
scope: z.ZodDefault<z.ZodEnum<{
|
|
1390
|
+
all: "all";
|
|
1391
|
+
code: "code";
|
|
1392
|
+
docs: "docs";
|
|
1393
|
+
state: "state";
|
|
1394
|
+
}>>;
|
|
1395
|
+
severity: z.ZodDefault<z.ZodEnum<{
|
|
1396
|
+
error: "error";
|
|
1397
|
+
warning: "warning";
|
|
1398
|
+
}>>;
|
|
1399
|
+
allowlist_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1400
|
+
}, z.core.$strip>;
|
|
1401
|
+
export declare const NamingContractAllowlistEntrySchema: z.ZodObject<{
|
|
1402
|
+
path_pattern: z.ZodString;
|
|
1403
|
+
reason: z.ZodString;
|
|
1404
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
owner: z.ZodString;
|
|
1406
|
+
}, z.core.$strip>;
|
|
1407
|
+
export declare const NamingContractIdentitySchema: z.ZodObject<{
|
|
1408
|
+
product_name: z.ZodString;
|
|
1409
|
+
cli_bin: z.ZodString;
|
|
1410
|
+
package_name: z.ZodString;
|
|
1411
|
+
}, z.core.$strip>;
|
|
1412
|
+
export declare const NamingContractRenameRuleStatusSchema: z.ZodEnum<{
|
|
1413
|
+
done: "done";
|
|
1414
|
+
planned: "planned";
|
|
1415
|
+
in_progress: "in_progress";
|
|
1416
|
+
}>;
|
|
1417
|
+
export declare const NamingContractRenameRuleSchema: z.ZodObject<{
|
|
1418
|
+
from: z.ZodString;
|
|
1419
|
+
to: z.ZodString;
|
|
1420
|
+
scope: z.ZodDefault<z.ZodEnum<{
|
|
1421
|
+
all: "all";
|
|
1422
|
+
code: "code";
|
|
1423
|
+
docs: "docs";
|
|
1424
|
+
state: "state";
|
|
1425
|
+
}>>;
|
|
1426
|
+
phase: z.ZodString;
|
|
1427
|
+
owner: z.ZodString;
|
|
1428
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1429
|
+
done: "done";
|
|
1430
|
+
planned: "planned";
|
|
1431
|
+
in_progress: "in_progress";
|
|
1432
|
+
}>>;
|
|
1433
|
+
path_globs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1434
|
+
}, z.core.$strip>;
|
|
1435
|
+
export declare const NamingContractZeroResidueGateSchema: z.ZodObject<{
|
|
1436
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1437
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
1438
|
+
error: "error";
|
|
1439
|
+
warning: "warning";
|
|
1440
|
+
}>>;
|
|
1441
|
+
terms: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1442
|
+
allowlist_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1443
|
+
removal_phase: z.ZodDefault<z.ZodString>;
|
|
1444
|
+
}, z.core.$strip>;
|
|
1445
|
+
export declare const NamingContractStateSchema: z.ZodObject<{
|
|
1446
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
1447
|
+
product_name: z.ZodDefault<z.ZodString>;
|
|
1448
|
+
cli_bin: z.ZodDefault<z.ZodString>;
|
|
1449
|
+
package_name: z.ZodDefault<z.ZodString>;
|
|
1450
|
+
current_identity: z.ZodDefault<z.ZodObject<{
|
|
1451
|
+
product_name: z.ZodString;
|
|
1452
|
+
cli_bin: z.ZodString;
|
|
1453
|
+
package_name: z.ZodString;
|
|
1454
|
+
}, z.core.$strip>>;
|
|
1455
|
+
target_identity: z.ZodDefault<z.ZodObject<{
|
|
1456
|
+
product_name: z.ZodString;
|
|
1457
|
+
cli_bin: z.ZodString;
|
|
1458
|
+
package_name: z.ZodString;
|
|
1459
|
+
}, z.core.$strip>>;
|
|
1460
|
+
forbidden_terms: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1461
|
+
term: z.ZodString;
|
|
1462
|
+
scope: z.ZodDefault<z.ZodEnum<{
|
|
1463
|
+
all: "all";
|
|
1464
|
+
code: "code";
|
|
1465
|
+
docs: "docs";
|
|
1466
|
+
state: "state";
|
|
1467
|
+
}>>;
|
|
1468
|
+
severity: z.ZodDefault<z.ZodEnum<{
|
|
1469
|
+
error: "error";
|
|
1470
|
+
warning: "warning";
|
|
1471
|
+
}>>;
|
|
1472
|
+
allowlist_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1473
|
+
}, z.core.$strip>>>;
|
|
1474
|
+
allowlist: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1475
|
+
path_pattern: z.ZodString;
|
|
1476
|
+
reason: z.ZodString;
|
|
1477
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
1478
|
+
owner: z.ZodString;
|
|
1479
|
+
}, z.core.$strip>>>;
|
|
1480
|
+
rename_rules: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1481
|
+
from: z.ZodString;
|
|
1482
|
+
to: z.ZodString;
|
|
1483
|
+
scope: z.ZodDefault<z.ZodEnum<{
|
|
1484
|
+
all: "all";
|
|
1485
|
+
code: "code";
|
|
1486
|
+
docs: "docs";
|
|
1487
|
+
state: "state";
|
|
1488
|
+
}>>;
|
|
1489
|
+
phase: z.ZodString;
|
|
1490
|
+
owner: z.ZodString;
|
|
1491
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
1492
|
+
done: "done";
|
|
1493
|
+
planned: "planned";
|
|
1494
|
+
in_progress: "in_progress";
|
|
1495
|
+
}>>;
|
|
1496
|
+
path_globs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1497
|
+
}, z.core.$strip>>>;
|
|
1498
|
+
zero_residue_gate: z.ZodDefault<z.ZodObject<{
|
|
1499
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1500
|
+
enforcement: z.ZodDefault<z.ZodEnum<{
|
|
1501
|
+
error: "error";
|
|
1502
|
+
warning: "warning";
|
|
1503
|
+
}>>;
|
|
1504
|
+
terms: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1505
|
+
allowlist_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1506
|
+
removal_phase: z.ZodDefault<z.ZodString>;
|
|
1507
|
+
}, z.core.$strip>>;
|
|
1508
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
1509
|
+
}, z.core.$strip>;
|
|
1510
|
+
export type NamingContractTermScope = z.infer<typeof NamingContractTermScopeSchema>;
|
|
1511
|
+
export type NamingContractTermSeverity = z.infer<typeof NamingContractTermSeveritySchema>;
|
|
1512
|
+
export type NamingContractForbiddenTerm = z.infer<typeof NamingContractForbiddenTermSchema>;
|
|
1513
|
+
export type NamingContractAllowlistEntry = z.infer<typeof NamingContractAllowlistEntrySchema>;
|
|
1514
|
+
export type NamingContractIdentity = z.infer<typeof NamingContractIdentitySchema>;
|
|
1515
|
+
export type NamingContractRenameRule = z.infer<typeof NamingContractRenameRuleSchema>;
|
|
1516
|
+
export type NamingContractZeroResidueGate = z.infer<typeof NamingContractZeroResidueGateSchema>;
|
|
1517
|
+
export type NamingContractState = z.infer<typeof NamingContractStateSchema>;
|
|
1518
|
+
export type OriginType = z.infer<typeof OriginTypeSchema>;
|
|
1519
|
+
export type Scale = z.infer<typeof ScaleSchema>;
|
|
1520
|
+
export type ExecutionKind = z.infer<typeof ExecutionKindSchema>;
|
|
1521
|
+
export type PlanningMode = z.infer<typeof PlanningModeSchema>;
|
|
1522
|
+
export type FlowMode = z.infer<typeof FlowModeSchema>;
|
|
1523
|
+
export type FlowStage = z.infer<typeof FlowStageSchema>;
|
|
1524
|
+
export type GateStatus = z.infer<typeof GateStatusSchema>;
|
|
1525
|
+
export type QualityEvidenceStatus = z.infer<typeof QualityEvidenceStatusSchema>;
|
|
1526
|
+
export type QualityEvidenceMode = z.infer<typeof QualityEvidenceModeSchema>;
|
|
1527
|
+
export type QualityEnforcement = z.infer<typeof QualityEnforcementSchema>;
|
|
1528
|
+
export type QualityEvidence = z.infer<typeof QualityEvidenceSchema>;
|
|
1529
|
+
export type QualityException = z.infer<typeof QualityExceptionSchema>;
|
|
1530
|
+
export type QualityContract = z.infer<typeof QualityContractSchema>;
|
|
1531
|
+
export type DiscoveryRecord = z.infer<typeof DiscoveryRecordSchema>;
|
|
1532
|
+
export type BacklogItem = z.infer<typeof BacklogItemSchema>;
|
|
1533
|
+
export type TechDebtRecord = z.infer<typeof TechDebtRecordSchema>;
|
|
1534
|
+
export type FinalizeQueueItem = z.infer<typeof FinalizeQueueItemSchema>;
|
|
1535
|
+
export type UnblockEvent = z.infer<typeof UnblockEventSchema>;
|
|
1536
|
+
export type TransitionLogEvent = z.infer<typeof TransitionLogEventSchema>;
|
|
1537
|
+
export type SkillCatalogEntry = z.infer<typeof SkillCatalogEntrySchema>;
|
|
1538
|
+
export type SkillBundle = z.infer<typeof SkillBundleSchema>;
|
|
1539
|
+
export type SourceDocumentRecord = z.infer<typeof SourceDocumentRecordSchema>;
|
|
1540
|
+
export type SourceVersionEvent = z.infer<typeof SourceVersionEventSchema>;
|
|
1541
|
+
export type ArchitectureNode = z.infer<typeof ArchitectureNodeSchema>;
|
|
1542
|
+
export type ServiceRecord = z.infer<typeof ServiceRecordSchema>;
|
|
1543
|
+
export type TechStackRecord = z.infer<typeof TechStackRecordSchema>;
|
|
1544
|
+
export type FrontendDecisionRecord = z.infer<typeof FrontendDecisionRecordSchema>;
|
|
1545
|
+
export type RepoMapRecord = z.infer<typeof RepoMapRecordSchema>;
|
|
1546
|
+
export type FrontendGapRecord = z.infer<typeof FrontendGapRecordSchema>;
|
|
1547
|
+
export type FrontendRouteRecord = z.infer<typeof FrontendRouteRecordSchema>;
|
|
1548
|
+
export type DiscoveryIndexState = z.infer<typeof DiscoveryIndexStateSchema>;
|
|
1549
|
+
export type BacklogState = z.infer<typeof BacklogStateSchema>;
|
|
1550
|
+
export type TechDebtState = z.infer<typeof TechDebtStateSchema>;
|
|
1551
|
+
export type FinalizeQueueState = z.infer<typeof FinalizeQueueStateSchema>;
|
|
1552
|
+
export type UnblockEventsState = z.infer<typeof UnblockEventsStateSchema>;
|
|
1553
|
+
export type TransitionLogState = z.infer<typeof TransitionLogStateSchema>;
|
|
1554
|
+
export type AuditHistoryEntry = z.infer<typeof AuditHistoryEntrySchema>;
|
|
1555
|
+
export type AuditHistoryState = z.infer<typeof AuditHistoryStateSchema>;
|
|
1556
|
+
export type SkillCatalogState = z.infer<typeof SkillCatalogStateSchema>;
|
|
1557
|
+
export type SourceIndexState = z.infer<typeof SourceIndexStateSchema>;
|
|
1558
|
+
export type JurisdictionProfile = z.infer<typeof JurisdictionProfileSchema>;
|
|
1559
|
+
export type ControlCatalogItem = z.infer<typeof ControlCatalogItemSchema>;
|
|
1560
|
+
export type FrontendGapsState = z.infer<typeof FrontendGapsStateSchema>;
|
|
1561
|
+
export type FrontendMapState = z.infer<typeof FrontendMapStateSchema>;
|
|
1562
|
+
export type ArchitectureState = z.infer<typeof ArchitectureStateSchema>;
|
|
1563
|
+
export type ServiceCatalogState = z.infer<typeof ServiceCatalogStateSchema>;
|
|
1564
|
+
export type TechStackState = z.infer<typeof TechStackStateSchema>;
|
|
1565
|
+
export type IntegrationContractsState = z.infer<typeof IntegrationContractsStateSchema>;
|
|
1566
|
+
export type FrontendDecisionsState = z.infer<typeof FrontendDecisionsStateSchema>;
|
|
1567
|
+
export type RepoMapState = z.infer<typeof RepoMapStateSchema>;
|
|
1568
|
+
export type SkillRoutingRule = z.infer<typeof SkillRoutingRuleSchema>;
|
|
1569
|
+
export type SkillRoutingState = z.infer<typeof SkillRoutingStateSchema>;
|
|
1570
|
+
//# sourceMappingURL=types.d.ts.map
|