@lssm/lib.contracts-spec 17.3.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/LICENSE +21 -0
- package/README.md +1727 -0
- package/dist/acp/acp.feature.d.ts +1 -0
- package/dist/acp/acp.feature.js +1 -0
- package/dist/acp/capabilities/acpTransport.capability.d.ts +11 -0
- package/dist/acp/capabilities/acpTransport.capability.js +4 -0
- package/dist/acp/capabilities/index.d.ts +1 -0
- package/dist/acp/capabilities/index.js +1 -0
- package/dist/acp/commands/acpFsAccess.command.d.ts +38 -0
- package/dist/acp/commands/acpFsAccess.command.js +4 -0
- package/dist/acp/commands/acpPromptTurn.command.d.ts +39 -0
- package/dist/acp/commands/acpPromptTurn.command.js +4 -0
- package/dist/acp/commands/acpSessionInit.command.d.ts +42 -0
- package/dist/acp/commands/acpSessionInit.command.js +4 -0
- package/dist/acp/commands/acpSessionResume.command.d.ts +26 -0
- package/dist/acp/commands/acpSessionResume.command.js +4 -0
- package/dist/acp/commands/acpSessionStop.command.d.ts +34 -0
- package/dist/acp/commands/acpSessionStop.command.js +4 -0
- package/dist/acp/commands/acpTerminalExec.command.d.ts +42 -0
- package/dist/acp/commands/acpTerminalExec.command.js +4 -0
- package/dist/acp/commands/acpToolCalls.command.d.ts +28 -0
- package/dist/acp/commands/acpToolCalls.command.js +4 -0
- package/dist/acp/commands/index.d.ts +7 -0
- package/dist/acp/commands/index.js +1 -0
- package/dist/acp/constants.d.ts +4 -0
- package/dist/acp/constants.js +1 -0
- package/dist/acp/contracts.d.ts +181 -0
- package/dist/acp/contracts.js +1 -0
- package/dist/acp/index.d.ts +5 -0
- package/dist/acp/index.js +1 -0
- package/dist/adaptive-shell/index.d.ts +2 -0
- package/dist/adaptive-shell/index.js +1 -0
- package/dist/adaptive-shell/types.d.ts +179 -0
- package/dist/adaptive-shell/types.js +0 -0
- package/dist/adaptive-shell/validation.d.ts +5 -0
- package/dist/adaptive-shell/validation.js +1 -0
- package/dist/adoption-catalog/index.d.ts +696 -0
- package/dist/adoption-catalog/index.js +1 -0
- package/dist/agent/agent.feature.d.ts +11 -0
- package/dist/agent/agent.feature.js +4 -0
- package/dist/agent/capabilities/agentExecution.capability.d.ts +1 -0
- package/dist/agent/capabilities/agentExecution.capability.js +1 -0
- package/dist/agent/capabilities/index.d.ts +1 -0
- package/dist/agent/capabilities/index.js +1 -0
- package/dist/agent/commands/agentApprovals.command.d.ts +42 -0
- package/dist/agent/commands/agentApprovals.command.js +4 -0
- package/dist/agent/commands/agentCancel.command.d.ts +38 -0
- package/dist/agent/commands/agentCancel.command.js +4 -0
- package/dist/agent/commands/agentRun.command.d.ts +69 -0
- package/dist/agent/commands/agentRun.command.js +4 -0
- package/dist/agent/commands/agentTaskOps.command.d.ts +94 -0
- package/dist/agent/commands/agentTaskOps.command.js +1 -0
- package/dist/agent/commands/graphCompose.command.d.ts +114 -0
- package/dist/agent/commands/graphCompose.command.js +1 -0
- package/dist/agent/commands/graphEdit.command.d.ts +75 -0
- package/dist/agent/commands/graphEdit.command.js +25 -0
- package/dist/agent/commands/graphOps.command.d.ts +198 -0
- package/dist/agent/commands/graphOps.command.js +31 -0
- package/dist/agent/commands/graphRefactor.command.d.ts +86 -0
- package/dist/agent/commands/graphRefactor.command.js +1 -0
- package/dist/agent/commands/graphSuggestEvolution.command.d.ts +90 -0
- package/dist/agent/commands/graphSuggestEvolution.command.js +35 -0
- package/dist/agent/commands/index.d.ts +9 -0
- package/dist/agent/commands/index.js +1 -0
- package/dist/agent/constants.d.ts +4 -0
- package/dist/agent/constants.js +1 -0
- package/dist/agent/contracts.d.ts +462 -0
- package/dist/agent/contracts.js +1 -0
- package/dist/agent/events/agentApprovalRequested.event.d.ts +47 -0
- package/dist/agent/events/agentApprovalRequested.event.js +4 -0
- package/dist/agent/events/agentRunCompleted.event.d.ts +55 -0
- package/dist/agent/events/agentRunCompleted.event.js +4 -0
- package/dist/agent/events/agentRunFailed.event.d.ts +71 -0
- package/dist/agent/events/agentRunFailed.event.js +4 -0
- package/dist/agent/events/agentRunStarted.event.d.ts +55 -0
- package/dist/agent/events/agentRunStarted.event.js +4 -0
- package/dist/agent/events/index.d.ts +4 -0
- package/dist/agent/events/index.js +1 -0
- package/dist/agent/forms/agentRun.form.d.ts +33 -0
- package/dist/agent/forms/agentRun.form.js +4 -0
- package/dist/agent/forms/index.d.ts +1 -0
- package/dist/agent/forms/index.js +1 -0
- package/dist/agent/graph-conversation.d.ts +157 -0
- package/dist/agent/graph-conversation.js +19 -0
- package/dist/agent/index.d.ts +16 -0
- package/dist/agent/index.js +1 -0
- package/dist/agent/presentations/agentRunAudit.presentation.d.ts +11 -0
- package/dist/agent/presentations/agentRunAudit.presentation.js +4 -0
- package/dist/agent/presentations/index.d.ts +1 -0
- package/dist/agent/presentations/index.js +1 -0
- package/dist/agent/protocol/application-signature.d.ts +43 -0
- package/dist/agent/protocol/application-signature.js +1 -0
- package/dist/agent/protocol/application.d.ts +114 -0
- package/dist/agent/protocol/application.js +4 -0
- package/dist/agent/protocol/automation/automation.test-fixture.d.ts +210 -0
- package/dist/agent/protocol/automation/automation.test-fixture.js +1 -0
- package/dist/agent/protocol/automation/contracts.d.ts +174 -0
- package/dist/agent/protocol/automation/contracts.js +4 -0
- package/dist/agent/protocol/automation/definition-validation.d.ts +9 -0
- package/dist/agent/protocol/automation/definition-validation.js +1 -0
- package/dist/agent/protocol/automation/digests.d.ts +11 -0
- package/dist/agent/protocol/automation/digests.js +1 -0
- package/dist/agent/protocol/automation/index.d.ts +4 -0
- package/dist/agent/protocol/automation/index.js +1 -0
- package/dist/agent/protocol/automation/lifecycle-validation.d.ts +27 -0
- package/dist/agent/protocol/automation/lifecycle-validation.js +1 -0
- package/dist/agent/protocol/automation/lifecycle.d.ts +362 -0
- package/dist/agent/protocol/automation/lifecycle.js +1 -0
- package/dist/agent/protocol/automation/run-validation.d.ts +17 -0
- package/dist/agent/protocol/automation/run-validation.js +1 -0
- package/dist/agent/protocol/automation/validation.d.ts +3 -0
- package/dist/agent/protocol/automation/validation.js +1 -0
- package/dist/agent/protocol/bindings.d.ts +25 -0
- package/dist/agent/protocol/bindings.js +1 -0
- package/dist/agent/protocol/budget.d.ts +48 -0
- package/dist/agent/protocol/budget.js +1 -0
- package/dist/agent/protocol/common.d.ts +128 -0
- package/dist/agent/protocol/common.js +1 -0
- package/dist/agent/protocol/delegation.d.ts +345 -0
- package/dist/agent/protocol/delegation.js +1 -0
- package/dist/agent/protocol/execution.d.ts +229 -0
- package/dist/agent/protocol/execution.js +1 -0
- package/dist/agent/protocol/graph-validation.d.ts +20 -0
- package/dist/agent/protocol/graph-validation.js +1 -0
- package/dist/agent/protocol/help.d.ts +200 -0
- package/dist/agent/protocol/help.js +1 -0
- package/dist/agent/protocol/index.d.ts +23 -0
- package/dist/agent/protocol/index.js +1 -0
- package/dist/agent/protocol/markdown-migration.d.ts +55 -0
- package/dist/agent/protocol/markdown-migration.js +1 -0
- package/dist/agent/protocol/memory-governance.d.ts +237 -0
- package/dist/agent/protocol/memory-governance.js +1 -0
- package/dist/agent/protocol/memory-validation.d.ts +19 -0
- package/dist/agent/protocol/memory-validation.js +1 -0
- package/dist/agent/protocol/memory.d.ts +139 -0
- package/dist/agent/protocol/memory.js +1 -0
- package/dist/agent/protocol/model-fallback-validation-v2.d.ts +15 -0
- package/dist/agent/protocol/model-fallback-validation-v2.js +1 -0
- package/dist/agent/protocol/model-fallback-validation.d.ts +12 -0
- package/dist/agent/protocol/model-fallback-validation.js +1 -0
- package/dist/agent/protocol/model-invocation-profile.d.ts +21 -0
- package/dist/agent/protocol/model-invocation-profile.js +1 -0
- package/dist/agent/protocol/model-route-contracts-v2.d.ts +180 -0
- package/dist/agent/protocol/model-route-contracts-v2.js +1 -0
- package/dist/agent/protocol/model-route-contracts.d.ts +104 -0
- package/dist/agent/protocol/model-route-contracts.js +1 -0
- package/dist/agent/protocol/model-routing-migration.d.ts +16 -0
- package/dist/agent/protocol/model-routing-migration.js +1 -0
- package/dist/agent/protocol/model-routing-v2.d.ts +309 -0
- package/dist/agent/protocol/model-routing-v2.js +1 -0
- package/dist/agent/protocol/model-routing-v2.test-fixtures.d.ts +590 -0
- package/dist/agent/protocol/model-routing-v2.test-fixtures.js +1 -0
- package/dist/agent/protocol/model-routing.d.ts +206 -0
- package/dist/agent/protocol/model-routing.js +1 -0
- package/dist/agent/protocol/model-routing.test-fixtures.d.ts +157 -0
- package/dist/agent/protocol/model-routing.test-fixtures.js +1 -0
- package/dist/agent/protocol/model-selection-validation-v2.d.ts +37 -0
- package/dist/agent/protocol/model-selection-validation-v2.js +1 -0
- package/dist/agent/protocol/model-selection-validation.d.ts +21 -0
- package/dist/agent/protocol/model-selection-validation.js +1 -0
- package/dist/agent/protocol/model-serving-validation-v2.d.ts +6 -0
- package/dist/agent/protocol/model-serving-validation-v2.js +1 -0
- package/dist/agent/protocol/planning.d.ts +159 -0
- package/dist/agent/protocol/planning.js +1 -0
- package/dist/agent/protocol/reflection.d.ts +73 -0
- package/dist/agent/protocol/reflection.js +1 -0
- package/dist/agent/protocol/task-result-validation.d.ts +6 -0
- package/dist/agent/protocol/task-result-validation.js +1 -0
- package/dist/agent/queries/agentArtifacts.query.d.ts +68 -0
- package/dist/agent/queries/agentArtifacts.query.js +4 -0
- package/dist/agent/queries/agentStatus.query.d.ts +76 -0
- package/dist/agent/queries/agentStatus.query.js +4 -0
- package/dist/agent/queries/index.d.ts +2 -0
- package/dist/agent/queries/index.js +1 -0
- package/dist/agent/registry.d.ts +41 -0
- package/dist/agent/registry.js +1 -0
- package/dist/agent/runner.d.ts +62 -0
- package/dist/agent/runner.js +1 -0
- package/dist/agent/spec.d.ts +264 -0
- package/dist/agent/spec.js +10 -0
- package/dist/agent/task-tree.d.ts +44 -0
- package/dist/agent/task-tree.js +22 -0
- package/dist/agent/views/agentRuns.dataView.d.ts +94 -0
- package/dist/agent/views/agentRuns.dataView.js +4 -0
- package/dist/agent/views/index.d.ts +1 -0
- package/dist/agent/views/index.js +1 -0
- package/dist/agent-platform/baseline-suites.d.ts +17 -0
- package/dist/agent-platform/baseline-suites.js +1 -0
- package/dist/agent-platform/digest.d.ts +1 -0
- package/dist/agent-platform/digest.js +1 -0
- package/dist/agent-platform/index.d.ts +5 -0
- package/dist/agent-platform/index.js +1 -0
- package/dist/agent-platform/types.d.ts +149 -0
- package/dist/agent-platform/types.js +1 -0
- package/dist/agent-platform/validation-v2.d.ts +40 -0
- package/dist/agent-platform/validation-v2.js +1 -0
- package/dist/agent-platform/validation.d.ts +86 -0
- package/dist/agent-platform/validation.js +1 -0
- package/dist/agent-step-observability/index.d.ts +2 -0
- package/dist/agent-step-observability/index.js +1 -0
- package/dist/agent-step-observability/types.d.ts +130 -0
- package/dist/agent-step-observability/types.js +0 -0
- package/dist/agent-step-observability/validation.d.ts +324 -0
- package/dist/agent-step-observability/validation.js +1 -0
- package/dist/agentic-interaction/constants.d.ts +4 -0
- package/dist/agentic-interaction/constants.js +1 -0
- package/dist/agentic-interaction/contracts.d.ts +156 -0
- package/dist/agentic-interaction/contracts.js +1 -0
- package/dist/agentic-interaction/index.d.ts +6 -0
- package/dist/agentic-interaction/index.js +1 -0
- package/dist/agentpacks/evidence-audit-validation.d.ts +185 -0
- package/dist/agentpacks/evidence-audit-validation.js +1 -0
- package/dist/agentpacks/evidence-canonicalization.d.ts +5 -0
- package/dist/agentpacks/evidence-canonicalization.js +2 -0
- package/dist/agentpacks/evidence-fixtures.d.ts +5 -0
- package/dist/agentpacks/evidence-fixtures.js +1 -0
- package/dist/agentpacks/evidence-schema-primitives.d.ts +56 -0
- package/dist/agentpacks/evidence-schema-primitives.js +1 -0
- package/dist/agentpacks/evidence-trace-validation.d.ts +444 -0
- package/dist/agentpacks/evidence-trace-validation.js +1 -0
- package/dist/agentpacks/evidence-types.d.ts +145 -0
- package/dist/agentpacks/evidence-types.js +0 -0
- package/dist/agentpacks/evidence-validation.d.ts +8 -0
- package/dist/agentpacks/evidence-validation.js +1 -0
- package/dist/agentpacks/index.d.ts +123 -0
- package/dist/agentpacks/index.js +1 -0
- package/dist/agentpacks/types.d.ts +160 -0
- package/dist/agentpacks/types.js +0 -0
- package/dist/agentpacks/validation.d.ts +1688 -0
- package/dist/agentpacks/validation.js +1 -0
- package/dist/ai-improvement/contracts-v2.d.ts +147 -0
- package/dist/ai-improvement/contracts-v2.js +1 -0
- package/dist/ai-improvement/evidence.d.ts +5 -0
- package/dist/ai-improvement/evidence.js +1 -0
- package/dist/ai-improvement/index.d.ts +6 -0
- package/dist/ai-improvement/index.js +1 -0
- package/dist/ai-improvement/policy.d.ts +33 -0
- package/dist/ai-improvement/policy.js +1 -0
- package/dist/ai-improvement/types.d.ts +60 -0
- package/dist/ai-improvement/types.js +0 -0
- package/dist/ai-improvement/validation-v2.d.ts +761 -0
- package/dist/ai-improvement/validation-v2.js +1 -0
- package/dist/ai-improvement/validation.d.ts +130 -0
- package/dist/ai-improvement/validation.js +1 -0
- package/dist/analytics/index.d.ts +6 -0
- package/dist/analytics/index.js +0 -0
- package/dist/analytics/semantic-spec.d.ts +60 -0
- package/dist/analytics/semantic-spec.js +0 -0
- package/dist/app-config/app-config.capability.d.ts +1 -0
- package/dist/app-config/app-config.capability.js +1 -0
- package/dist/app-config/app-config.contracts.d.ts +239 -0
- package/dist/app-config/app-config.contracts.js +1 -0
- package/dist/app-config/app-config.feature.d.ts +5 -0
- package/dist/app-config/app-config.feature.js +1 -0
- package/dist/app-config/branding.d.js +0 -0
- package/dist/app-config/branding.d.ts +184 -0
- package/dist/app-config/branding.js +0 -0
- package/dist/app-config/events.d.ts +115 -0
- package/dist/app-config/events.js +1 -0
- package/dist/app-config/index.d.ts +10 -0
- package/dist/app-config/index.js +1 -0
- package/dist/app-config/integrations.d.js +0 -0
- package/dist/app-config/integrations.d.ts +65 -0
- package/dist/app-config/integrations.js +0 -0
- package/dist/app-config/lifecycle-contracts.d.ts +265 -0
- package/dist/app-config/lifecycle-contracts.js +1 -0
- package/dist/app-config/lifecycle.d.js +0 -0
- package/dist/app-config/lifecycle.d.ts +23 -0
- package/dist/app-config/lifecycle.js +0 -0
- package/dist/app-config/runtime.d.js +0 -0
- package/dist/app-config/runtime.d.ts +124 -0
- package/dist/app-config/runtime.js +1 -0
- package/dist/app-config/spec.d.js +0 -0
- package/dist/app-config/spec.d.ts +220 -0
- package/dist/app-config/spec.js +162 -0
- package/dist/app-config/validation.d.ts +51 -0
- package/dist/app-config/validation.js +1 -0
- package/dist/app-submission-readiness/admin-rules.contracts.d.ts +145 -0
- package/dist/app-submission-readiness/admin-rules.contracts.js +1 -0
- package/dist/app-submission-readiness/assets.contracts.d.ts +89 -0
- package/dist/app-submission-readiness/assets.contracts.js +1 -0
- package/dist/app-submission-readiness/audit.contracts.d.ts +53 -0
- package/dist/app-submission-readiness/audit.contracts.js +1 -0
- package/dist/app-submission-readiness/constants.d.ts +24 -0
- package/dist/app-submission-readiness/constants.js +1 -0
- package/dist/app-submission-readiness/contracts.d.ts +20 -0
- package/dist/app-submission-readiness/contracts.js +1 -0
- package/dist/app-submission-readiness/events.d.ts +194 -0
- package/dist/app-submission-readiness/events.js +1 -0
- package/dist/app-submission-readiness/fixtures.d.ts +2 -0
- package/dist/app-submission-readiness/fixtures.js +1 -0
- package/dist/app-submission-readiness/index.d.ts +8 -0
- package/dist/app-submission-readiness/index.js +1 -0
- package/dist/app-submission-readiness/legal-links.contracts.d.ts +93 -0
- package/dist/app-submission-readiness/legal-links.contracts.js +1 -0
- package/dist/app-submission-readiness/manifests.contracts.d.ts +97 -0
- package/dist/app-submission-readiness/manifests.contracts.js +1 -0
- package/dist/app-submission-readiness/markdown-report.d.ts +7 -0
- package/dist/app-submission-readiness/markdown-report.js +3 -0
- package/dist/app-submission-readiness/privacy-disclosures.contracts.d.ts +101 -0
- package/dist/app-submission-readiness/privacy-disclosures.contracts.js +1 -0
- package/dist/app-submission-readiness/project.contracts.d.ts +137 -0
- package/dist/app-submission-readiness/project.contracts.js +1 -0
- package/dist/app-submission-readiness/provider-capabilities.d.ts +58 -0
- package/dist/app-submission-readiness/provider-capabilities.js +1 -0
- package/dist/app-submission-readiness/provider-capabilities.seeds.d.ts +25 -0
- package/dist/app-submission-readiness/provider-capabilities.seeds.js +1 -0
- package/dist/app-submission-readiness/registry.d.ts +1172 -0
- package/dist/app-submission-readiness/registry.js +1 -0
- package/dist/app-submission-readiness/rejection-response.contracts.d.ts +49 -0
- package/dist/app-submission-readiness/rejection-response.contracts.js +1 -0
- package/dist/app-submission-readiness/reports.contracts.d.ts +85 -0
- package/dist/app-submission-readiness/reports.contracts.js +1 -0
- package/dist/app-submission-readiness/reviewer-access.contracts.d.ts +93 -0
- package/dist/app-submission-readiness/reviewer-access.contracts.js +1 -0
- package/dist/app-submission-readiness/runtime.d.ts +9 -0
- package/dist/app-submission-readiness/runtime.js +1 -0
- package/dist/app-submission-readiness/sdk-inventory.contracts.d.ts +69 -0
- package/dist/app-submission-readiness/sdk-inventory.contracts.js +1 -0
- package/dist/app-submission-readiness/store-integrations.contracts.d.ts +85 -0
- package/dist/app-submission-readiness/store-integrations.contracts.js +1 -0
- package/dist/app-submission-readiness/types.d.ts +76 -0
- package/dist/app-submission-readiness/types.js +0 -0
- package/dist/capabilities/agent-workflow.d.js +0 -0
- package/dist/capabilities/agent-workflow.d.ts +52 -0
- package/dist/capabilities/agent-workflow.js +1 -0
- package/dist/capabilities/capabilities.d.js +0 -0
- package/dist/capabilities/capabilities.d.ts +109 -0
- package/dist/capabilities/capabilities.js +187 -0
- package/dist/capabilities/context.d.js +0 -0
- package/dist/capabilities/context.d.ts +110 -0
- package/dist/capabilities/context.js +1 -0
- package/dist/capabilities/guards.d.js +0 -0
- package/dist/capabilities/guards.d.ts +121 -0
- package/dist/capabilities/guards.js +1 -0
- package/dist/capabilities/index.d.js +1 -0
- package/dist/capabilities/index.d.ts +7 -0
- package/dist/capabilities/index.js +1 -0
- package/dist/capabilities/meeting-recorder.d.js +0 -0
- package/dist/capabilities/meeting-recorder.d.ts +5 -0
- package/dist/capabilities/meeting-recorder.js +1 -0
- package/dist/capabilities/openbanking.d.js +0 -0
- package/dist/capabilities/openbanking.d.ts +5 -0
- package/dist/capabilities/openbanking.js +1 -0
- package/dist/capabilities/validation.d.js +0 -0
- package/dist/capabilities/validation.d.ts +79 -0
- package/dist/capabilities/validation.js +1 -0
- package/dist/cli/command-pack.d.ts +37 -0
- package/dist/cli/command-pack.js +16 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +1 -0
- package/dist/companyos/auth-production-topology.d.ts +24 -0
- package/dist/companyos/auth-production-topology.js +1 -0
- package/dist/companyos/booking-surfaces.d.ts +50 -0
- package/dist/companyos/booking-surfaces.js +1 -0
- package/dist/companyos/calendar-intelligence.d.ts +129 -0
- package/dist/companyos/calendar-intelligence.js +1 -0
- package/dist/companyos/calendar-microsoft-personal-discovery.d.ts +32 -0
- package/dist/companyos/calendar-microsoft-personal-discovery.js +1 -0
- package/dist/companyos/calendar-microsoft-personal-http.d.ts +32 -0
- package/dist/companyos/calendar-microsoft-personal-http.js +1 -0
- package/dist/companyos/calendar-microsoft-personal-selection.d.ts +38 -0
- package/dist/companyos/calendar-microsoft-personal-selection.js +1 -0
- package/dist/companyos/calendar-private-draft-preview.d.ts +144 -0
- package/dist/companyos/calendar-private-draft-preview.js +1 -0
- package/dist/companyos/commands/autonomousWorkOrderTransition.command.d.ts +63 -0
- package/dist/companyos/commands/autonomousWorkOrderTransition.command.js +1 -0
- package/dist/companyos/commands/builderReadinessEvaluate.command.d.ts +81 -0
- package/dist/companyos/commands/builderReadinessEvaluate.command.js +1 -0
- package/dist/companyos/commands/contextSetActive.command.d.ts +58 -0
- package/dist/companyos/commands/contextSetActive.command.js +1 -0
- package/dist/companyos/commands/decisionPacketAttest.command.d.ts +194 -0
- package/dist/companyos/commands/decisionPacketAttest.command.js +1 -0
- package/dist/companyos/commands/decisionPacketFounderApprove.command.d.ts +202 -0
- package/dist/companyos/commands/decisionPacketFounderApprove.command.js +1 -0
- package/dist/companyos/commands/index.d.ts +29 -0
- package/dist/companyos/commands/index.js +1 -0
- package/dist/companyos/commands/integrationConfigureByok.command.d.ts +32 -0
- package/dist/companyos/commands/integrationConfigureByok.command.js +1 -0
- package/dist/companyos/commands/integrationConfigureManaged.command.d.ts +32 -0
- package/dist/companyos/commands/integrationConfigureManaged.command.js +1 -0
- package/dist/companyos/commands/onboardingPreferencesComplete.command.d.ts +51 -0
- package/dist/companyos/commands/onboardingPreferencesComplete.command.js +8 -0
- package/dist/companyos/commands/organizationSetActive.command.d.ts +25 -0
- package/dist/companyos/commands/organizationSetActive.command.js +1 -0
- package/dist/companyos/commands/personaPreviewSet.command.d.ts +35 -0
- package/dist/companyos/commands/personaPreviewSet.command.js +7 -0
- package/dist/companyos/commands/personalBriefingCalendarsSelect.command.d.ts +32 -0
- package/dist/companyos/commands/personalBriefingCalendarsSelect.command.js +12 -0
- package/dist/companyos/commands/personalBriefingDeliveryRetry.command.d.ts +30 -0
- package/dist/companyos/commands/personalBriefingDeliveryRetry.command.js +8 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthComplete.command.d.ts +30 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthComplete.command.js +6 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthStart.command.d.ts +22 -0
- package/dist/companyos/commands/personalBriefingGoogleOAuthStart.command.js +6 -0
- package/dist/companyos/commands/personalBriefingMicrosoftDisconnect.command.d.ts +17 -0
- package/dist/companyos/commands/personalBriefingMicrosoftDisconnect.command.js +5 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.d.ts +30 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.js +9 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthStart.command.d.ts +17 -0
- package/dist/companyos/commands/personalBriefingMicrosoftOAuthStart.command.js +6 -0
- package/dist/companyos/commands/personalBriefingPreferencesUpdate.command.d.ts +60 -0
- package/dist/companyos/commands/personalBriefingPreferencesUpdate.command.js +11 -0
- package/dist/companyos/commands/personalBriefingPreviewSend.command.d.ts +46 -0
- package/dist/companyos/commands/personalBriefingPreviewSend.command.js +15 -0
- package/dist/companyos/commands/personalContextDisable.command.d.ts +37 -0
- package/dist/companyos/commands/personalContextDisable.command.js +1 -0
- package/dist/companyos/commands/personalContextEnsure.command.d.ts +45 -0
- package/dist/companyos/commands/personalContextEnsure.command.js +1 -0
- package/dist/companyos/commands/personalDailyOperationCreate.command.d.ts +24 -0
- package/dist/companyos/commands/personalDailyOperationCreate.command.js +1 -0
- package/dist/companyos/commands/personalDailyOperationTransition.command.d.ts +20 -0
- package/dist/companyos/commands/personalDailyOperationTransition.command.js +1 -0
- package/dist/companyos/commands/reviewCardDecide.command.d.ts +54 -0
- package/dist/companyos/commands/reviewCardDecide.command.js +1 -0
- package/dist/companyos/commands/shellPreferencesUpdate.command.d.ts +47 -0
- package/dist/companyos/commands/shellPreferencesUpdate.command.js +6 -0
- package/dist/companyos/commands/tenantOnboard.command.d.ts +32 -0
- package/dist/companyos/commands/tenantOnboard.command.js +1 -0
- package/dist/companyos/commands/tenantUpdate.command.d.ts +24 -0
- package/dist/companyos/commands/tenantUpdate.command.js +1 -0
- package/dist/companyos/commands/weeklyReportApprove.command.d.ts +54 -0
- package/dist/companyos/commands/weeklyReportApprove.command.js +1 -0
- package/dist/companyos/commands/workflowStart.command.d.ts +28 -0
- package/dist/companyos/commands/workflowStart.command.js +1 -0
- package/dist/companyos/company-intelligence/api-schemas.d.ts +232 -0
- package/dist/companyos/company-intelligence/api-schemas.js +1 -0
- package/dist/companyos/company-intelligence/api.d.ts +44 -0
- package/dist/companyos/company-intelligence/api.js +1 -0
- package/dist/companyos/company-intelligence/commands.d.ts +517 -0
- package/dist/companyos/company-intelligence/commands.js +1 -0
- package/dist/companyos/company-intelligence/events.d.ts +369 -0
- package/dist/companyos/company-intelligence/events.js +1 -0
- package/dist/companyos/company-intelligence/index.d.ts +8 -0
- package/dist/companyos/company-intelligence/index.js +1 -0
- package/dist/companyos/company-intelligence/models.d.ts +77 -0
- package/dist/companyos/company-intelligence/models.js +1 -0
- package/dist/companyos/company-intelligence/operations.d.ts +124 -0
- package/dist/companyos/company-intelligence/operations.js +1 -0
- package/dist/companyos/company-intelligence/queries.d.ts +183 -0
- package/dist/companyos/company-intelligence/queries.js +1 -0
- package/dist/companyos/company-intelligence/registry.d.ts +634 -0
- package/dist/companyos/company-intelligence/registry.js +1 -0
- package/dist/companyos/company-intelligence/surface.d.ts +45 -0
- package/dist/companyos/company-intelligence/surface.js +1 -0
- package/dist/companyos/company-metrics/commands.d.ts +1079 -0
- package/dist/companyos/company-metrics/commands.js +3 -0
- package/dist/companyos/company-metrics/events.d.ts +383 -0
- package/dist/companyos/company-metrics/events.js +3 -0
- package/dist/companyos/company-metrics/index.d.ts +5 -0
- package/dist/companyos/company-metrics/index.js +1 -0
- package/dist/companyos/company-metrics/queries.d.ts +367 -0
- package/dist/companyos/company-metrics/queries.js +3 -0
- package/dist/companyos/company-metrics/registry.d.ts +913 -0
- package/dist/companyos/company-metrics/registry.js +1 -0
- package/dist/companyos/company-metrics/shared.d.ts +72 -0
- package/dist/companyos/company-metrics/shared.js +1 -0
- package/dist/companyos/constants.d.ts +25 -0
- package/dist/companyos/constants.js +1 -0
- package/dist/companyos/index.d.ts +21 -0
- package/dist/companyos/index.js +1 -0
- package/dist/companyos/live-workspace-surfaces.d.ts +6 -0
- package/dist/companyos/live-workspace-surfaces.js +1 -0
- package/dist/companyos/organization-bootstrap.d.ts +103 -0
- package/dist/companyos/organization-bootstrap.js +1 -0
- package/dist/companyos/organization-seed-contract.d.ts +126 -0
- package/dist/companyos/organization-seed-contract.js +1 -0
- package/dist/companyos/organization-seed-manifest.d.ts +11 -0
- package/dist/companyos/organization-seed-manifest.js +1 -0
- package/dist/companyos/organization-seed-profile-manifest.d.ts +4 -0
- package/dist/companyos/organization-seed-profile-manifest.js +1 -0
- package/dist/companyos/organization-seed.d.ts +2 -0
- package/dist/companyos/organization-seed.js +1 -0
- package/dist/companyos/organization-self-service.d.ts +157 -0
- package/dist/companyos/organization-self-service.js +1 -0
- package/dist/companyos/production-semantics.d.ts +116 -0
- package/dist/companyos/production-semantics.js +1 -0
- package/dist/companyos/projections.d.ts +247 -0
- package/dist/companyos/projections.js +1 -0
- package/dist/companyos/public-composition.d.ts +742 -0
- package/dist/companyos/public-composition.js +1 -0
- package/dist/companyos/queries/approvalReasons.query.d.ts +25 -0
- package/dist/companyos/queries/approvalReasons.query.js +1 -0
- package/dist/companyos/queries/builderEvidenceReceiptGet.query.d.ts +75 -0
- package/dist/companyos/queries/builderEvidenceReceiptGet.query.js +1 -0
- package/dist/companyos/queries/builderReleaseCapsuleGet.query.d.ts +67 -0
- package/dist/companyos/queries/builderReleaseCapsuleGet.query.js +1 -0
- package/dist/companyos/queries/builderReplayPacketGet.query.d.ts +64 -0
- package/dist/companyos/queries/builderReplayPacketGet.query.js +1 -0
- package/dist/companyos/queries/contextList.query.d.ts +218 -0
- package/dist/companyos/queries/contextList.query.js +1 -0
- package/dist/companyos/queries/designPartnerReadinessGet.query.d.ts +154 -0
- package/dist/companyos/queries/designPartnerReadinessGet.query.js +1 -0
- package/dist/companyos/queries/evidenceGetReceipt.query.d.ts +63 -0
- package/dist/companyos/queries/evidenceGetReceipt.query.js +1 -0
- package/dist/companyos/queries/evidenceVerifyHash.query.d.ts +24 -0
- package/dist/companyos/queries/evidenceVerifyHash.query.js +1 -0
- package/dist/companyos/queries/graphQuery.query.d.ts +186 -0
- package/dist/companyos/queries/graphQuery.query.js +1 -0
- package/dist/companyos/queries/graphQueryByPolicy.query.d.ts +81 -0
- package/dist/companyos/queries/graphQueryByPolicy.query.js +1 -0
- package/dist/companyos/queries/healthApi.query.d.ts +23 -0
- package/dist/companyos/queries/healthApi.query.js +1 -0
- package/dist/companyos/queries/healthWebsocket.query.d.ts +23 -0
- package/dist/companyos/queries/healthWebsocket.query.js +1 -0
- package/dist/companyos/queries/healthWorker.query.d.ts +63 -0
- package/dist/companyos/queries/healthWorker.query.js +1 -0
- package/dist/companyos/queries/index.d.ts +29 -0
- package/dist/companyos/queries/index.js +1 -0
- package/dist/companyos/queries/integrationListProviders.query.d.ts +29 -0
- package/dist/companyos/queries/integrationListProviders.query.js +1 -0
- package/dist/companyos/queries/integrationStatus.query.d.ts +42 -0
- package/dist/companyos/queries/integrationStatus.query.js +1 -0
- package/dist/companyos/queries/organizationList.query.d.ts +64 -0
- package/dist/companyos/queries/organizationList.query.js +1 -0
- package/dist/companyos/queries/personalBriefingCalendarsList.query.d.ts +22 -0
- package/dist/companyos/queries/personalBriefingCalendarsList.query.js +6 -0
- package/dist/companyos/queries/personalBriefingStatus.query.d.ts +49 -0
- package/dist/companyos/queries/personalBriefingStatus.query.js +13 -0
- package/dist/companyos/queries/personalContextProvisioningStatus.query.d.ts +28 -0
- package/dist/companyos/queries/personalContextProvisioningStatus.query.js +1 -0
- package/dist/companyos/queries/personalDailyOperations.query.d.ts +17 -0
- package/dist/companyos/queries/personalDailyOperations.query.js +1 -0
- package/dist/companyos/queries/replayGetPacket.query.d.ts +56 -0
- package/dist/companyos/queries/replayGetPacket.query.js +1 -0
- package/dist/companyos/queries/replayListByTenant.query.d.ts +54 -0
- package/dist/companyos/queries/replayListByTenant.query.js +1 -0
- package/dist/companyos/queries/sessionAuthorityGet.query.d.ts +76 -0
- package/dist/companyos/queries/sessionAuthorityGet.query.js +1 -0
- package/dist/companyos/queries/shellPreferencesGet.query.d.ts +38 -0
- package/dist/companyos/queries/shellPreferencesGet.query.js +7 -0
- package/dist/companyos/queries/tenantGet.query.d.ts +79 -0
- package/dist/companyos/queries/tenantGet.query.js +1 -0
- package/dist/companyos/queries/tenantList.query.d.ts +58 -0
- package/dist/companyos/queries/tenantList.query.js +1 -0
- package/dist/companyos/queries/workflowGetStatus.query.d.ts +68 -0
- package/dist/companyos/queries/workflowGetStatus.query.js +1 -0
- package/dist/companyos/queries/workflowList.query.d.ts +56 -0
- package/dist/companyos/queries/workflowList.query.js +1 -0
- package/dist/companyos/queries/workspaceList.query.d.ts +69 -0
- package/dist/companyos/queries/workspaceList.query.js +1 -0
- package/dist/companyos/registry.d.ts +3614 -0
- package/dist/companyos/registry.js +1 -0
- package/dist/companyos/shell-preferences.d.ts +122 -0
- package/dist/companyos/shell-preferences.js +1 -0
- package/dist/content-analysis/constants.d.ts +10 -0
- package/dist/content-analysis/constants.js +1 -0
- package/dist/content-analysis/events.d.ts +307 -0
- package/dist/content-analysis/events.js +3 -0
- package/dist/content-analysis/index.d.ts +5 -0
- package/dist/content-analysis/index.js +1 -0
- package/dist/content-analysis/operations.d.ts +554 -0
- package/dist/content-analysis/operations.js +6 -0
- package/dist/content-analysis/registry.d.ts +9 -0
- package/dist/content-analysis/registry.js +1 -0
- package/dist/content-analysis/types.d.ts +90 -0
- package/dist/content-analysis/types.js +0 -0
- package/dist/content-generation/capabilities.d.ts +4 -0
- package/dist/content-generation/capabilities.js +1 -0
- package/dist/content-generation/content-generation.feature.d.ts +1 -0
- package/dist/content-generation/content-generation.feature.js +1 -0
- package/dist/content-generation/contracts.d.ts +1557 -0
- package/dist/content-generation/contracts.js +4 -0
- package/dist/content-generation/index.d.ts +5 -0
- package/dist/content-generation/index.js +1 -0
- package/dist/content-generation/media-status.d.ts +53 -0
- package/dist/content-generation/media-status.js +1 -0
- package/dist/content-generation/ports.d.ts +42 -0
- package/dist/content-generation/ports.js +0 -0
- package/dist/content-generation/rights-operations.d.ts +479 -0
- package/dist/content-generation/rights-operations.js +1 -0
- package/dist/content-generation/rights-withdrawal.d.ts +44 -0
- package/dist/content-generation/rights-withdrawal.js +1 -0
- package/dist/content-generation/rights.d.ts +79 -0
- package/dist/content-generation/rights.js +1 -0
- package/dist/content-generation/types.d.ts +84 -0
- package/dist/content-generation/types.js +1 -0
- package/dist/context/agent-context-validation.d.ts +38 -0
- package/dist/context/agent-context-validation.js +4 -0
- package/dist/context/agent-context.d.ts +310 -0
- package/dist/context/agent-context.js +1 -0
- package/dist/context/capabilities/contextSystem.capability.d.ts +11 -0
- package/dist/context/capabilities/contextSystem.capability.js +4 -0
- package/dist/context/capabilities/index.d.ts +1 -0
- package/dist/context/capabilities/index.js +1 -0
- package/dist/context/commands/contextPackSnapshot.command.d.ts +61 -0
- package/dist/context/commands/contextPackSnapshot.command.js +4 -0
- package/dist/context/commands/index.d.ts +1 -0
- package/dist/context/commands/index.js +1 -0
- package/dist/context/constants.d.ts +4 -0
- package/dist/context/constants.js +1 -0
- package/dist/context/context.feature.d.ts +1 -0
- package/dist/context/context.feature.js +1 -0
- package/dist/context/contracts.d.ts +369 -0
- package/dist/context/contracts.js +1 -0
- package/dist/context/events/contextSnapshotCreated.event.d.ts +63 -0
- package/dist/context/events/contextSnapshotCreated.event.js +4 -0
- package/dist/context/events/index.d.ts +1 -0
- package/dist/context/events/index.js +1 -0
- package/dist/context/forms/contextPackSearch.form.d.ts +29 -0
- package/dist/context/forms/contextPackSearch.form.js +4 -0
- package/dist/context/forms/index.d.ts +1 -0
- package/dist/context/forms/index.js +1 -0
- package/dist/context/index.d.ts +12 -0
- package/dist/context/index.js +1 -0
- package/dist/context/presentations/contextSnapshot.presentation.d.ts +11 -0
- package/dist/context/presentations/contextSnapshot.presentation.js +4 -0
- package/dist/context/presentations/index.d.ts +1 -0
- package/dist/context/presentations/index.js +1 -0
- package/dist/context/queries/contextPackDescribe.query.d.ts +87 -0
- package/dist/context/queries/contextPackDescribe.query.js +4 -0
- package/dist/context/queries/contextPackSearch.query.d.ts +90 -0
- package/dist/context/queries/contextPackSearch.query.js +4 -0
- package/dist/context/queries/index.d.ts +2 -0
- package/dist/context/queries/index.js +1 -0
- package/dist/context/views/contextSnapshots.dataView.d.ts +104 -0
- package/dist/context/views/contextSnapshots.dataView.js +4 -0
- package/dist/context/views/index.d.ts +1 -0
- package/dist/context/views/index.js +1 -0
- package/dist/contract-registry/index.d.ts +3 -0
- package/dist/contract-registry/index.js +1 -0
- package/dist/contract-registry/schemas.d.ts +135 -0
- package/dist/contract-registry/schemas.js +1 -0
- package/dist/contract-registry/types.d.ts +42 -0
- package/dist/contract-registry/types.js +0 -0
- package/dist/contracts-spec.feature.d.ts +1 -0
- package/dist/contracts-spec.feature.js +1 -0
- package/dist/control-plane/approval-kernel.d.ts +178 -0
- package/dist/control-plane/approval-kernel.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneApproval.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneApproval.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneAudit.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneAudit.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneChannelRuntime.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneChannelRuntime.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneCore.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneCore.capability.js +1 -0
- package/dist/control-plane/capabilities/controlPlaneSkillRegistry.capability.d.ts +1 -0
- package/dist/control-plane/capabilities/controlPlaneSkillRegistry.capability.js +1 -0
- package/dist/control-plane/capabilities/index.d.ts +5 -0
- package/dist/control-plane/capabilities/index.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionAbort.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionAbort.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionApprove.command.d.ts +61 -0
- package/dist/control-plane/commands/controlPlaneExecutionApprove.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionCancel.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionCancel.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionEvidenceExport.command.d.ts +48 -0
- package/dist/control-plane/commands/controlPlaneExecutionEvidenceExport.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionPause.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionPause.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionReject.command.d.ts +61 -0
- package/dist/control-plane/commands/controlPlaneExecutionReject.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionResume.command.d.ts +24 -0
- package/dist/control-plane/commands/controlPlaneExecutionResume.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionRetry.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionRetry.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionShutdown.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionShutdown.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneExecutionStart.command.d.ts +28 -0
- package/dist/control-plane/commands/controlPlaneExecutionStart.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneIntentSubmit.command.d.ts +47 -0
- package/dist/control-plane/commands/controlPlaneIntentSubmit.command.js +1 -0
- package/dist/control-plane/commands/controlPlanePlanCompile.command.d.ts +39 -0
- package/dist/control-plane/commands/controlPlanePlanCompile.command.js +1 -0
- package/dist/control-plane/commands/controlPlanePlanVerify.command.d.ts +33 -0
- package/dist/control-plane/commands/controlPlanePlanVerify.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneSkillDisable.command.d.ts +36 -0
- package/dist/control-plane/commands/controlPlaneSkillDisable.command.js +1 -0
- package/dist/control-plane/commands/controlPlaneSkillInstall.command.d.ts +237 -0
- package/dist/control-plane/commands/controlPlaneSkillInstall.command.js +1 -0
- package/dist/control-plane/commands/index.d.ts +15 -0
- package/dist/control-plane/commands/index.js +1 -0
- package/dist/control-plane/connect-materialization.d.ts +101 -0
- package/dist/control-plane/connect-materialization.js +1 -0
- package/dist/control-plane/constants.d.ts +4 -0
- package/dist/control-plane/constants.js +1 -0
- package/dist/control-plane/contracts.d.ts +1661 -0
- package/dist/control-plane/contracts.js +1 -0
- package/dist/control-plane/control-plane.feature.d.ts +1 -0
- package/dist/control-plane/control-plane.feature.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionCompleted.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlaneExecutionCompleted.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionFailed.event.d.ts +53 -0
- package/dist/control-plane/events/controlPlaneExecutionFailed.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionStepBlocked.event.d.ts +45 -0
- package/dist/control-plane/events/controlPlaneExecutionStepBlocked.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionStepCompleted.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlaneExecutionStepCompleted.event.js +1 -0
- package/dist/control-plane/events/controlPlaneExecutionStepStarted.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlaneExecutionStepStarted.event.js +1 -0
- package/dist/control-plane/events/controlPlaneIntentReceived.event.d.ts +45 -0
- package/dist/control-plane/events/controlPlaneIntentReceived.event.js +1 -0
- package/dist/control-plane/events/controlPlanePlanCompiled.event.d.ts +37 -0
- package/dist/control-plane/events/controlPlanePlanCompiled.event.js +1 -0
- package/dist/control-plane/events/controlPlanePlanRejected.event.d.ts +39 -0
- package/dist/control-plane/events/controlPlanePlanRejected.event.js +1 -0
- package/dist/control-plane/events/controlPlaneSkillInstalled.event.d.ts +61 -0
- package/dist/control-plane/events/controlPlaneSkillInstalled.event.js +1 -0
- package/dist/control-plane/events/controlPlaneSkillRejected.event.d.ts +81 -0
- package/dist/control-plane/events/controlPlaneSkillRejected.event.js +1 -0
- package/dist/control-plane/events/index.d.ts +10 -0
- package/dist/control-plane/events/index.js +1 -0
- package/dist/control-plane/hook-authority-digest.d.ts +5 -0
- package/dist/control-plane/hook-authority-digest.js +1 -0
- package/dist/control-plane/hook-authority-immutable.d.ts +2 -0
- package/dist/control-plane/hook-authority-immutable.js +1 -0
- package/dist/control-plane/hook-authority-records.d.ts +68 -0
- package/dist/control-plane/hook-authority-records.js +0 -0
- package/dist/control-plane/hook-authority-reference-adapter.d.ts +13 -0
- package/dist/control-plane/hook-authority-reference-adapter.js +1 -0
- package/dist/control-plane/hook-authority-reference-binding.d.ts +2 -0
- package/dist/control-plane/hook-authority-reference-binding.js +1 -0
- package/dist/control-plane/hook-authority-reference-capability.d.ts +8 -0
- package/dist/control-plane/hook-authority-reference-capability.js +1 -0
- package/dist/control-plane/hook-authority-reference-clock.d.ts +7 -0
- package/dist/control-plane/hook-authority-reference-clock.js +1 -0
- package/dist/control-plane/hook-authority-reference-helpers.d.ts +5 -0
- package/dist/control-plane/hook-authority-reference-helpers.js +1 -0
- package/dist/control-plane/hook-authority-reference-invoke.d.ts +2 -0
- package/dist/control-plane/hook-authority-reference-invoke.js +1 -0
- package/dist/control-plane/hook-authority-reference-leases.d.ts +6 -0
- package/dist/control-plane/hook-authority-reference-leases.js +1 -0
- package/dist/control-plane/hook-authority-reference-lock.d.ts +3 -0
- package/dist/control-plane/hook-authority-reference-lock.js +1 -0
- package/dist/control-plane/hook-authority-reference-result.d.ts +2 -0
- package/dist/control-plane/hook-authority-reference-result.js +1 -0
- package/dist/control-plane/hook-authority-reference-session.d.ts +5 -0
- package/dist/control-plane/hook-authority-reference-session.js +1 -0
- package/dist/control-plane/hook-authority-reference-state.d.ts +24 -0
- package/dist/control-plane/hook-authority-reference-state.js +1 -0
- package/dist/control-plane/hook-authority-reference-validation.d.ts +3 -0
- package/dist/control-plane/hook-authority-reference-validation.js +1 -0
- package/dist/control-plane/hook-authority-test-body.d.ts +7 -0
- package/dist/control-plane/hook-authority-test-body.js +1 -0
- package/dist/control-plane/hook-authority-test-fixtures.d.ts +5 -0
- package/dist/control-plane/hook-authority-test-fixtures.js +1 -0
- package/dist/control-plane/hook-authority-validation-events.d.ts +3 -0
- package/dist/control-plane/hook-authority-validation-events.js +1 -0
- package/dist/control-plane/hook-authority-validation-objects.d.ts +3 -0
- package/dist/control-plane/hook-authority-validation-objects.js +1 -0
- package/dist/control-plane/hook-authority-validation-paths.d.ts +2 -0
- package/dist/control-plane/hook-authority-validation-paths.js +1 -0
- package/dist/control-plane/hook-authority-validation-primitives.d.ts +8 -0
- package/dist/control-plane/hook-authority-validation-primitives.js +1 -0
- package/dist/control-plane/hook-authority-validation-request.d.ts +3 -0
- package/dist/control-plane/hook-authority-validation-request.js +1 -0
- package/dist/control-plane/hook-authority-validation.d.ts +6 -0
- package/dist/control-plane/hook-authority-validation.js +1 -0
- package/dist/control-plane/hook-authority.d.ts +180 -0
- package/dist/control-plane/hook-authority.js +1 -0
- package/dist/control-plane/index.d.ts +15 -0
- package/dist/control-plane/index.js +1 -0
- package/dist/control-plane/policies/controlPlaneMessaging.policy.d.ts +1 -0
- package/dist/control-plane/policies/controlPlaneMessaging.policy.js +1 -0
- package/dist/control-plane/policies/index.d.ts +1 -0
- package/dist/control-plane/policies/index.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionGet.query.d.ts +82 -0
- package/dist/control-plane/queries/controlPlaneExecutionGet.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionLane.models.d.ts +174 -0
- package/dist/control-plane/queries/controlPlaneExecutionLane.models.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneGet.query.d.ts +100 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneGet.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneList.query.d.ts +82 -0
- package/dist/control-plane/queries/controlPlaneExecutionLaneList.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneExecutionList.query.d.ts +79 -0
- package/dist/control-plane/queries/controlPlaneExecutionList.query.js +1 -0
- package/dist/control-plane/queries/controlPlanePolicyExplain.query.d.ts +29 -0
- package/dist/control-plane/queries/controlPlanePolicyExplain.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneSkillList.query.d.ts +54 -0
- package/dist/control-plane/queries/controlPlaneSkillList.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneSkillVerify.query.d.ts +214 -0
- package/dist/control-plane/queries/controlPlaneSkillVerify.query.js +1 -0
- package/dist/control-plane/queries/controlPlaneTraceGet.query.d.ts +42 -0
- package/dist/control-plane/queries/controlPlaneTraceGet.query.js +1 -0
- package/dist/control-plane/queries/index.d.ts +9 -0
- package/dist/control-plane/queries/index.js +1 -0
- package/dist/control-plane/repository-authority-bootstrap.d.ts +42 -0
- package/dist/control-plane/repository-authority-bootstrap.js +1 -0
- package/dist/control-plane/skills/index.d.ts +5 -0
- package/dist/control-plane/skills/index.js +1 -0
- package/dist/control-plane/skills/schema.d.ts +174 -0
- package/dist/control-plane/skills/schema.js +1 -0
- package/dist/control-plane/skills/signer.d.ts +16 -0
- package/dist/control-plane/skills/signer.js +4 -0
- package/dist/control-plane/skills/types.d.ts +73 -0
- package/dist/control-plane/skills/types.js +0 -0
- package/dist/control-plane/skills/validator.d.ts +2 -0
- package/dist/control-plane/skills/validator.js +1 -0
- package/dist/control-plane/skills/verifier.d.ts +9 -0
- package/dist/control-plane/skills/verifier.js +1 -0
- package/dist/creative-intelligence/constants.d.ts +9 -0
- package/dist/creative-intelligence/constants.js +1 -0
- package/dist/creative-intelligence/events.d.ts +318 -0
- package/dist/creative-intelligence/events.js +3 -0
- package/dist/creative-intelligence/index.d.ts +5 -0
- package/dist/creative-intelligence/index.js +1 -0
- package/dist/creative-intelligence/operations.d.ts +756 -0
- package/dist/creative-intelligence/operations.js +6 -0
- package/dist/creative-intelligence/registry.d.ts +9 -0
- package/dist/creative-intelligence/registry.js +1 -0
- package/dist/creative-intelligence/types.d.ts +94 -0
- package/dist/creative-intelligence/types.js +0 -0
- package/dist/creator-operations/campaign.d.ts +94 -0
- package/dist/creator-operations/campaign.js +1 -0
- package/dist/creator-operations/common.d.ts +24 -0
- package/dist/creator-operations/common.js +1 -0
- package/dist/creator-operations/index.d.ts +7 -0
- package/dist/creator-operations/index.js +1 -0
- package/dist/creator-operations/operation-inputs.d.ts +147 -0
- package/dist/creator-operations/operation-inputs.js +1 -0
- package/dist/creator-operations/operations.d.ts +858 -0
- package/dist/creator-operations/operations.js +23 -0
- package/dist/creator-operations/ports.d.ts +67 -0
- package/dist/creator-operations/ports.js +0 -0
- package/dist/creator-operations/submission.d.ts +49 -0
- package/dist/creator-operations/submission.js +1 -0
- package/dist/creator-operations/training-course.d.ts +33 -0
- package/dist/creator-operations/training-course.js +1 -0
- package/dist/creator-operations/training-operations.d.ts +102 -0
- package/dist/creator-operations/training-operations.js +1 -0
- package/dist/creator-operations/training-progress-operation.d.ts +25 -0
- package/dist/creator-operations/training-progress-operation.js +1 -0
- package/dist/creator-operations/training-quiz-operation.d.ts +59 -0
- package/dist/creator-operations/training-quiz-operation.js +1 -0
- package/dist/creator-operations/training-quiz-read.d.ts +50 -0
- package/dist/creator-operations/training-quiz-read.js +1 -0
- package/dist/creator-operations/training-quiz-view.d.ts +18 -0
- package/dist/creator-operations/training-quiz-view.js +1 -0
- package/dist/creator-operations/training-quiz.d.ts +88 -0
- package/dist/creator-operations/training-quiz.js +1 -0
- package/dist/creator-operations/training.d.ts +158 -0
- package/dist/creator-operations/training.js +1 -0
- package/dist/creator-operations/wallet.d.ts +73 -0
- package/dist/creator-operations/wallet.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-events.d.ts +841 -0
- package/dist/customer-support/ai-outcome-evaluation-events.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-operations.d.ts +2360 -0
- package/dist/customer-support/ai-outcome-evaluation-operations.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-output-schemas.d.ts +628 -0
- package/dist/customer-support/ai-outcome-evaluation-output-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-projection-schemas.d.ts +288 -0
- package/dist/customer-support/ai-outcome-evaluation-projection-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-query-schemas.d.ts +528 -0
- package/dist/customer-support/ai-outcome-evaluation-query-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation-schemas.d.ts +183 -0
- package/dist/customer-support/ai-outcome-evaluation-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-evaluation.d.ts +173 -0
- package/dist/customer-support/ai-outcome-evaluation.js +1 -0
- package/dist/customer-support/ai-outcome-event-delivery-schemas.d.ts +45 -0
- package/dist/customer-support/ai-outcome-event-delivery-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-event-delivery.d.ts +68 -0
- package/dist/customer-support/ai-outcome-event-delivery.js +0 -0
- package/dist/customer-support/ai-outcome-event-digest.d.ts +2 -0
- package/dist/customer-support/ai-outcome-event-digest.js +1 -0
- package/dist/customer-support/ai-outcome-learning-events.d.ts +331 -0
- package/dist/customer-support/ai-outcome-learning-events.js +1 -0
- package/dist/customer-support/ai-outcome-learning-operations.d.ts +623 -0
- package/dist/customer-support/ai-outcome-learning-operations.js +1 -0
- package/dist/customer-support/ai-outcome-learning-schema-support.d.ts +4 -0
- package/dist/customer-support/ai-outcome-learning-schema-support.js +1 -0
- package/dist/customer-support/ai-outcome-learning-schemas.d.ts +485 -0
- package/dist/customer-support/ai-outcome-learning-schemas.js +1 -0
- package/dist/customer-support/ai-outcome-learning.d.ts +115 -0
- package/dist/customer-support/ai-outcome-learning.js +1 -0
- package/dist/customer-support/attachment-safety-operations.d.ts +424 -0
- package/dist/customer-support/attachment-safety-operations.js +1 -0
- package/dist/customer-support/attachment-safety-schemas.d.ts +208 -0
- package/dist/customer-support/attachment-safety-schemas.js +1 -0
- package/dist/customer-support/attachment-safety.d.ts +87 -0
- package/dist/customer-support/attachment-safety.js +13 -0
- package/dist/customer-support/authos-session.d.ts +83 -0
- package/dist/customer-support/authos-session.js +10 -0
- package/dist/customer-support/billing-entitlement-events.d.ts +275 -0
- package/dist/customer-support/billing-entitlement-events.js +1 -0
- package/dist/customer-support/billing-entitlement-input-schemas.d.ts +61 -0
- package/dist/customer-support/billing-entitlement-input-schemas.js +1 -0
- package/dist/customer-support/billing-entitlement-operations.d.ts +731 -0
- package/dist/customer-support/billing-entitlement-operations.js +1 -0
- package/dist/customer-support/billing-entitlement-output-schemas.d.ts +410 -0
- package/dist/customer-support/billing-entitlement-output-schemas.js +1 -0
- package/dist/customer-support/billing-entitlement-schema-primitives.d.ts +21 -0
- package/dist/customer-support/billing-entitlement-schema-primitives.js +1 -0
- package/dist/customer-support/billing-entitlements.d.ts +108 -0
- package/dist/customer-support/billing-entitlements.js +1 -0
- package/dist/customer-support/capability-matrix-evidence.d.ts +9 -0
- package/dist/customer-support/capability-matrix-evidence.js +1 -0
- package/dist/customer-support/capability-matrix-registries.d.ts +21 -0
- package/dist/customer-support/capability-matrix-registries.js +1 -0
- package/dist/customer-support/capability-matrix-validation-evidence.d.ts +4 -0
- package/dist/customer-support/capability-matrix-validation-evidence.js +1 -0
- package/dist/customer-support/capability-matrix-validation-helpers.d.ts +5 -0
- package/dist/customer-support/capability-matrix-validation-helpers.js +1 -0
- package/dist/customer-support/capability-matrix-validation.d.ts +7 -0
- package/dist/customer-support/capability-matrix-validation.js +1 -0
- package/dist/customer-support/capability-matrix.d.ts +101 -0
- package/dist/customer-support/capability-matrix.js +3 -0
- package/dist/customer-support/case-assignments.d.ts +60 -0
- package/dist/customer-support/case-assignments.js +19 -0
- package/dist/customer-support/case-cursor.d.ts +17 -0
- package/dist/customer-support/case-cursor.js +8 -0
- package/dist/customer-support/case-lifecycle-event-schemas.d.ts +42 -0
- package/dist/customer-support/case-lifecycle-event-schemas.js +1 -0
- package/dist/customer-support/case-lifecycle.d.ts +268 -0
- package/dist/customer-support/case-lifecycle.js +8 -0
- package/dist/customer-support/case-presence.d.ts +221 -0
- package/dist/customer-support/case-presence.js +11 -0
- package/dist/customer-support/case-relations.d.ts +63 -0
- package/dist/customer-support/case-relations.js +14 -0
- package/dist/customer-support/company-action-events.d.ts +586 -0
- package/dist/customer-support/company-action-events.js +1 -0
- package/dist/customer-support/company-action-input-schemas.d.ts +113 -0
- package/dist/customer-support/company-action-input-schemas.js +1 -0
- package/dist/customer-support/company-action-operations.d.ts +1284 -0
- package/dist/customer-support/company-action-operations.js +1 -0
- package/dist/customer-support/company-action-output-schemas.d.ts +370 -0
- package/dist/customer-support/company-action-output-schemas.js +1 -0
- package/dist/customer-support/company-action-plans.d.ts +179 -0
- package/dist/customer-support/company-action-plans.js +1 -0
- package/dist/customer-support/company-action-schema-primitives.d.ts +20 -0
- package/dist/customer-support/company-action-schema-primitives.js +1 -0
- package/dist/customer-support/core.d.ts +143 -0
- package/dist/customer-support/core.js +1 -0
- package/dist/customer-support/crypto-lifecycle.d.ts +143 -0
- package/dist/customer-support/crypto-lifecycle.js +12 -0
- package/dist/customer-support/crypto-rotation-drill-events.d.ts +514 -0
- package/dist/customer-support/crypto-rotation-drill-events.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-input-schemas.d.ts +125 -0
- package/dist/customer-support/crypto-rotation-drill-input-schemas.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-operations.d.ts +997 -0
- package/dist/customer-support/crypto-rotation-drill-operations.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-output-schemas.d.ts +392 -0
- package/dist/customer-support/crypto-rotation-drill-output-schemas.js +1 -0
- package/dist/customer-support/crypto-rotation-drill-schema-primitives.d.ts +21 -0
- package/dist/customer-support/crypto-rotation-drill-schema-primitives.js +1 -0
- package/dist/customer-support/crypto-rotation-drill.d.ts +142 -0
- package/dist/customer-support/crypto-rotation-drill.js +1 -0
- package/dist/customer-support/crypto-rotation-operations.d.ts +947 -0
- package/dist/customer-support/crypto-rotation-operations.js +1 -0
- package/dist/customer-support/crypto-rotation-schemas.d.ts +282 -0
- package/dist/customer-support/crypto-rotation-schemas.js +1 -0
- package/dist/customer-support/crypto-rotation.d.ts +141 -0
- package/dist/customer-support/crypto-rotation.js +10 -0
- package/dist/customer-support/csat-input-digest.d.ts +3 -0
- package/dist/customer-support/csat-input-digest.js +1 -0
- package/dist/customer-support/csat-invitation-job-schemas.d.ts +134 -0
- package/dist/customer-support/csat-invitation-job-schemas.js +1 -0
- package/dist/customer-support/csat-invitation-jobs.d.ts +83 -0
- package/dist/customer-support/csat-invitation-jobs.js +0 -0
- package/dist/customer-support/csat-operation-schemas.d.ts +264 -0
- package/dist/customer-support/csat-operation-schemas.js +1 -0
- package/dist/customer-support/csat-operations.d.ts +409 -0
- package/dist/customer-support/csat-operations.js +1 -0
- package/dist/customer-support/csat-schema-support.d.ts +1 -0
- package/dist/customer-support/csat-schema-support.js +1 -0
- package/dist/customer-support/csat-survey-events.d.ts +134 -0
- package/dist/customer-support/csat-survey-events.js +1 -0
- package/dist/customer-support/csat-survey-operations.d.ts +260 -0
- package/dist/customer-support/csat-survey-operations.js +1 -0
- package/dist/customer-support/csat-survey-schemas.d.ts +203 -0
- package/dist/customer-support/csat-survey-schemas.js +1 -0
- package/dist/customer-support/csat-surveys.d.ts +78 -0
- package/dist/customer-support/csat-surveys.js +15 -0
- package/dist/customer-support/csat.d.ts +80 -0
- package/dist/customer-support/csat.js +12 -0
- package/dist/customer-support/customer-session-consent-operations.d.ts +983 -0
- package/dist/customer-support/customer-session-consent-operations.js +1 -0
- package/dist/customer-support/customer-session-consent-output-schemas.d.ts +108 -0
- package/dist/customer-support/customer-session-consent-output-schemas.js +1 -0
- package/dist/customer-support/customer-session-consent-schemas.d.ts +172 -0
- package/dist/customer-support/customer-session-consent-schemas.js +1 -0
- package/dist/customer-support/customer-session-consent.d.ts +160 -0
- package/dist/customer-support/customer-session-consent.js +14 -0
- package/dist/customer-support/customer-session-schema-support.d.ts +30 -0
- package/dist/customer-support/customer-session-schema-support.js +1 -0
- package/dist/customer-support/customer-support.feature.d.ts +11 -0
- package/dist/customer-support/customer-support.feature.js +3 -0
- package/dist/customer-support/data-lifecycle-events.d.ts +409 -0
- package/dist/customer-support/data-lifecycle-events.js +1 -0
- package/dist/customer-support/data-lifecycle-input-schemas.d.ts +146 -0
- package/dist/customer-support/data-lifecycle-input-schemas.js +1 -0
- package/dist/customer-support/data-lifecycle-operations.d.ts +1028 -0
- package/dist/customer-support/data-lifecycle-operations.js +1 -0
- package/dist/customer-support/data-lifecycle-output-schemas.d.ts +429 -0
- package/dist/customer-support/data-lifecycle-output-schemas.js +1 -0
- package/dist/customer-support/data-lifecycle-ports.d.ts +115 -0
- package/dist/customer-support/data-lifecycle-ports.js +0 -0
- package/dist/customer-support/data-lifecycle-schema-primitives.d.ts +29 -0
- package/dist/customer-support/data-lifecycle-schema-primitives.js +1 -0
- package/dist/customer-support/data-lifecycle-schema-validation.d.ts +11 -0
- package/dist/customer-support/data-lifecycle-schema-validation.js +1 -0
- package/dist/customer-support/data-lifecycle.d.ts +98 -0
- package/dist/customer-support/data-lifecycle.js +5 -0
- package/dist/customer-support/errors.d.ts +18 -0
- package/dist/customer-support/errors.js +6 -0
- package/dist/customer-support/event-validation.d.ts +7 -0
- package/dist/customer-support/event-validation.js +1 -0
- package/dist/customer-support/events.d.ts +5436 -0
- package/dist/customer-support/events.js +1 -0
- package/dist/customer-support/export-artifact-access-schemas.d.ts +223 -0
- package/dist/customer-support/export-artifact-access-schemas.js +1 -0
- package/dist/customer-support/export-artifact-access-validation.d.ts +14 -0
- package/dist/customer-support/export-artifact-access-validation.js +1 -0
- package/dist/customer-support/export-artifact-access.d.ts +93 -0
- package/dist/customer-support/export-artifact-access.js +1 -0
- package/dist/customer-support/export-artifact-event-schemas.d.ts +131 -0
- package/dist/customer-support/export-artifact-event-schemas.js +1 -0
- package/dist/customer-support/export-artifact-lifecycle-schemas.d.ts +152 -0
- package/dist/customer-support/export-artifact-lifecycle-schemas.js +1 -0
- package/dist/customer-support/export-artifact-lifecycle.d.ts +86 -0
- package/dist/customer-support/export-artifact-lifecycle.js +1 -0
- package/dist/customer-support/export-artifact-storage.d.ts +117 -0
- package/dist/customer-support/export-artifact-storage.js +0 -0
- package/dist/customer-support/export-events.d.ts +1251 -0
- package/dist/customer-support/export-events.js +1 -0
- package/dist/customer-support/export-input-schemas.d.ts +118 -0
- package/dist/customer-support/export-input-schemas.js +1 -0
- package/dist/customer-support/export-operations.d.ts +1471 -0
- package/dist/customer-support/export-operations.js +1 -0
- package/dist/customer-support/export-output-schemas.d.ts +284 -0
- package/dist/customer-support/export-output-schemas.js +1 -0
- package/dist/customer-support/export-schemas.d.ts +3 -0
- package/dist/customer-support/export-schemas.js +1 -0
- package/dist/customer-support/exports.d.ts +148 -0
- package/dist/customer-support/exports.js +1 -0
- package/dist/customer-support/identity-resolution-operations.d.ts +983 -0
- package/dist/customer-support/identity-resolution-operations.js +1 -0
- package/dist/customer-support/identity-resolution-output-schemas.d.ts +286 -0
- package/dist/customer-support/identity-resolution-output-schemas.js +1 -0
- package/dist/customer-support/identity-resolution-schemas.d.ts +107 -0
- package/dist/customer-support/identity-resolution-schemas.js +1 -0
- package/dist/customer-support/identity-resolution.d.ts +135 -0
- package/dist/customer-support/identity-resolution.js +18 -0
- package/dist/customer-support/index.d.ts +195 -0
- package/dist/customer-support/index.js +1 -0
- package/dist/customer-support/internal-note-operations.d.ts +1152 -0
- package/dist/customer-support/internal-note-operations.js +1 -0
- package/dist/customer-support/internal-note-schemas.d.ts +593 -0
- package/dist/customer-support/internal-note-schemas.js +1 -0
- package/dist/customer-support/internal-notes.d.ts +173 -0
- package/dist/customer-support/internal-notes.js +27 -0
- package/dist/customer-support/job-runtime.d.ts +86 -0
- package/dist/customer-support/job-runtime.js +13 -0
- package/dist/customer-support/knowledge-authority-citation-schema.d.ts +37 -0
- package/dist/customer-support/knowledge-authority-citation-schema.js +1 -0
- package/dist/customer-support/knowledge-authority-digest.d.ts +2 -0
- package/dist/customer-support/knowledge-authority-digest.js +1 -0
- package/dist/customer-support/knowledge-authority-operations.d.ts +332 -0
- package/dist/customer-support/knowledge-authority-operations.js +1 -0
- package/dist/customer-support/knowledge-authority-schema-primitives.d.ts +22 -0
- package/dist/customer-support/knowledge-authority-schema-primitives.js +1 -0
- package/dist/customer-support/knowledge-authority-schemas.d.ts +325 -0
- package/dist/customer-support/knowledge-authority-schemas.js +1 -0
- package/dist/customer-support/knowledge-authority.d.ts +84 -0
- package/dist/customer-support/knowledge-authority.js +1 -0
- package/dist/customer-support/live-chat-binding-activity-digest.d.ts +17 -0
- package/dist/customer-support/live-chat-binding-activity-digest.js +1 -0
- package/dist/customer-support/live-chat-continuity-events.d.ts +118 -0
- package/dist/customer-support/live-chat-continuity-events.js +1 -0
- package/dist/customer-support/live-chat-continuity-operations.d.ts +379 -0
- package/dist/customer-support/live-chat-continuity-operations.js +1 -0
- package/dist/customer-support/live-chat-continuity-schemas.d.ts +256 -0
- package/dist/customer-support/live-chat-continuity-schemas.js +1 -0
- package/dist/customer-support/live-chat-continuity.d.ts +83 -0
- package/dist/customer-support/live-chat-continuity.js +9 -0
- package/dist/customer-support/membership-capabilities.d.ts +13 -0
- package/dist/customer-support/membership-capabilities.js +1 -0
- package/dist/customer-support/membership-operation-schemas.d.ts +519 -0
- package/dist/customer-support/membership-operation-schemas.js +1 -0
- package/dist/customer-support/membership-operations.d.ts +1011 -0
- package/dist/customer-support/membership-operations.js +1 -0
- package/dist/customer-support/memberships.d.ts +134 -0
- package/dist/customer-support/memberships.js +24 -0
- package/dist/customer-support/metadata-operations.d.ts +811 -0
- package/dist/customer-support/metadata-operations.js +1 -0
- package/dist/customer-support/metadata-output-schemas.d.ts +414 -0
- package/dist/customer-support/metadata-output-schemas.js +1 -0
- package/dist/customer-support/metadata-schema-validation.d.ts +25 -0
- package/dist/customer-support/metadata-schema-validation.js +1 -0
- package/dist/customer-support/metadata-schemas.d.ts +209 -0
- package/dist/customer-support/metadata-schemas.js +1 -0
- package/dist/customer-support/metadata.d.ts +116 -0
- package/dist/customer-support/metadata.js +12 -0
- package/dist/customer-support/notification-operations.d.ts +980 -0
- package/dist/customer-support/notification-operations.js +1 -0
- package/dist/customer-support/notification-output-schemas.d.ts +350 -0
- package/dist/customer-support/notification-output-schemas.js +1 -0
- package/dist/customer-support/notification-schemas.d.ts +187 -0
- package/dist/customer-support/notification-schemas.js +1 -0
- package/dist/customer-support/notifications.d.ts +207 -0
- package/dist/customer-support/notifications.js +17 -0
- package/dist/customer-support/opa-handoff-operations.d.ts +580 -0
- package/dist/customer-support/opa-handoff-operations.js +1 -0
- package/dist/customer-support/opa-handoff-schemas.d.ts +250 -0
- package/dist/customer-support/opa-handoff-schemas.js +1 -0
- package/dist/customer-support/opa-handoffs.d.ts +85 -0
- package/dist/customer-support/opa-handoffs.js +6 -0
- package/dist/customer-support/operation-schemas.d.ts +563 -0
- package/dist/customer-support/operation-schemas.js +1 -0
- package/dist/customer-support/operations.d.ts +17887 -0
- package/dist/customer-support/operations.js +9 -0
- package/dist/customer-support/platform-authority-binding-registry.d.ts +7 -0
- package/dist/customer-support/platform-authority-binding-registry.js +1 -0
- package/dist/customer-support/platform-authority-bindings.d.ts +107 -0
- package/dist/customer-support/platform-authority-bindings.js +1 -0
- package/dist/customer-support/platform-authority-doc.d.ts +10 -0
- package/dist/customer-support/platform-authority-doc.js +3 -0
- package/dist/customer-support/platform-authority.d.ts +117 -0
- package/dist/customer-support/platform-authority.js +1 -0
- package/dist/customer-support/platform-ports.d.ts +202 -0
- package/dist/customer-support/platform-ports.js +9 -0
- package/dist/customer-support/policies.d.ts +38 -0
- package/dist/customer-support/policies.js +0 -0
- package/dist/customer-support/ports.d.ts +84 -0
- package/dist/customer-support/ports.js +0 -0
- package/dist/customer-support/provider.d.ts +49 -0
- package/dist/customer-support/provider.js +0 -0
- package/dist/customer-support/report-export-events.d.ts +218 -0
- package/dist/customer-support/report-export-events.js +1 -0
- package/dist/customer-support/report-export-operations.d.ts +571 -0
- package/dist/customer-support/report-export-operations.js +1 -0
- package/dist/customer-support/report-export-schemas.d.ts +294 -0
- package/dist/customer-support/report-export-schemas.js +1 -0
- package/dist/customer-support/report-export.d.ts +34 -0
- package/dist/customer-support/report-export.js +0 -0
- package/dist/customer-support/reporting-definition-schemas.d.ts +310 -0
- package/dist/customer-support/reporting-definition-schemas.js +1 -0
- package/dist/customer-support/reporting-definition-validation.d.ts +3 -0
- package/dist/customer-support/reporting-definition-validation.js +1 -0
- package/dist/customer-support/reporting-doc.d.ts +11 -0
- package/dist/customer-support/reporting-doc.js +3 -0
- package/dist/customer-support/reporting-event-schemas.d.ts +225 -0
- package/dist/customer-support/reporting-event-schemas.js +1 -0
- package/dist/customer-support/reporting-events.d.ts +781 -0
- package/dist/customer-support/reporting-events.js +1 -0
- package/dist/customer-support/reporting-metric-compatibility.d.ts +2 -0
- package/dist/customer-support/reporting-metric-compatibility.js +1 -0
- package/dist/customer-support/reporting-operations.d.ts +1593 -0
- package/dist/customer-support/reporting-operations.js +1 -0
- package/dist/customer-support/reporting-port.d.ts +17 -0
- package/dist/customer-support/reporting-port.js +0 -0
- package/dist/customer-support/reporting-query-schemas.d.ts +259 -0
- package/dist/customer-support/reporting-query-schemas.js +1 -0
- package/dist/customer-support/reporting-query-validation.d.ts +3 -0
- package/dist/customer-support/reporting-query-validation.js +1 -0
- package/dist/customer-support/reporting-record-schemas.d.ts +93 -0
- package/dist/customer-support/reporting-record-schemas.js +1 -0
- package/dist/customer-support/reporting-schema-primitives.d.ts +49 -0
- package/dist/customer-support/reporting-schema-primitives.js +1 -0
- package/dist/customer-support/reporting-schemas.d.ts +4 -0
- package/dist/customer-support/reporting-schemas.js +1 -0
- package/dist/customer-support/reporting.d.ts +148 -0
- package/dist/customer-support/reporting.js +1 -0
- package/dist/customer-support/routing-administration.d.ts +83 -0
- package/dist/customer-support/routing-administration.js +12 -0
- package/dist/customer-support/routing-operation-schemas.d.ts +379 -0
- package/dist/customer-support/routing-operation-schemas.js +1 -0
- package/dist/customer-support/routing-operations.d.ts +631 -0
- package/dist/customer-support/routing-operations.js +1 -0
- package/dist/customer-support/search-view-operations.d.ts +915 -0
- package/dist/customer-support/search-view-operations.js +1 -0
- package/dist/customer-support/search-view-output-schemas.d.ts +509 -0
- package/dist/customer-support/search-view-output-schemas.js +1 -0
- package/dist/customer-support/search-view-schemas.d.ts +192 -0
- package/dist/customer-support/search-view-schemas.js +1 -0
- package/dist/customer-support/search-views.d.ts +104 -0
- package/dist/customer-support/search-views.js +19 -0
- package/dist/customer-support/service-profile-operations.d.ts +675 -0
- package/dist/customer-support/service-profile-operations.js +1 -0
- package/dist/customer-support/service-profile-output-schemas.d.ts +126 -0
- package/dist/customer-support/service-profile-output-schemas.js +1 -0
- package/dist/customer-support/service-profile-party-schema.d.ts +17 -0
- package/dist/customer-support/service-profile-party-schema.js +1 -0
- package/dist/customer-support/service-profile-schemas.d.ts +124 -0
- package/dist/customer-support/service-profile-schemas.js +1 -0
- package/dist/customer-support/service-profile.d.ts +82 -0
- package/dist/customer-support/service-profile.js +16 -0
- package/dist/customer-support/signed-webhook-events.d.ts +621 -0
- package/dist/customer-support/signed-webhook-events.js +1 -0
- package/dist/customer-support/signed-webhook-input-schemas.d.ts +206 -0
- package/dist/customer-support/signed-webhook-input-schemas.js +1 -0
- package/dist/customer-support/signed-webhook-operations.d.ts +1745 -0
- package/dist/customer-support/signed-webhook-operations.js +1 -0
- package/dist/customer-support/signed-webhook-output-schemas.d.ts +613 -0
- package/dist/customer-support/signed-webhook-output-schemas.js +1 -0
- package/dist/customer-support/signed-webhook-ports.d.ts +112 -0
- package/dist/customer-support/signed-webhook-ports.js +0 -0
- package/dist/customer-support/signed-webhook-schema-primitives.d.ts +26 -0
- package/dist/customer-support/signed-webhook-schema-primitives.js +1 -0
- package/dist/customer-support/signed-webhook-schemas.d.ts +125 -0
- package/dist/customer-support/signed-webhook-schemas.js +1 -0
- package/dist/customer-support/signed-webhook-value-validation.d.ts +3 -0
- package/dist/customer-support/signed-webhook-value-validation.js +1 -0
- package/dist/customer-support/signed-webhook-wire-schema.d.ts +37 -0
- package/dist/customer-support/signed-webhook-wire-schema.js +1 -0
- package/dist/customer-support/signed-webhook-wire.d.ts +65 -0
- package/dist/customer-support/signed-webhook-wire.js +1 -0
- package/dist/customer-support/signed-webhooks.d.ts +116 -0
- package/dist/customer-support/signed-webhooks.js +1 -0
- package/dist/customer-support/skills-routing-operations.d.ts +554 -0
- package/dist/customer-support/skills-routing-operations.js +1 -0
- package/dist/customer-support/skills-routing-output-schemas.d.ts +229 -0
- package/dist/customer-support/skills-routing-output-schemas.js +1 -0
- package/dist/customer-support/skills-routing-schemas.d.ts +104 -0
- package/dist/customer-support/skills-routing-schemas.js +1 -0
- package/dist/customer-support/skills-routing.d.ts +104 -0
- package/dist/customer-support/skills-routing.js +16 -0
- package/dist/customer-support/sla-administration.d.ts +150 -0
- package/dist/customer-support/sla-administration.js +15 -0
- package/dist/customer-support/sla-operation-schemas.d.ts +304 -0
- package/dist/customer-support/sla-operation-schemas.js +1 -0
- package/dist/customer-support/sla-operations.d.ts +863 -0
- package/dist/customer-support/sla-operations.js +1 -0
- package/dist/customer-support/sla-policy-operation-schemas.d.ts +447 -0
- package/dist/customer-support/sla-policy-operation-schemas.js +1 -0
- package/dist/customer-support/sla-schema-validation.d.ts +11 -0
- package/dist/customer-support/sla-schema-validation.js +1 -0
- package/dist/customer-support/slo-incident-alert-input-schemas.d.ts +134 -0
- package/dist/customer-support/slo-incident-alert-input-schemas.js +1 -0
- package/dist/customer-support/slo-incident-alert.d.ts +26 -0
- package/dist/customer-support/slo-incident-alert.js +0 -0
- package/dist/customer-support/slo-incident-assessment-input-schemas.d.ts +239 -0
- package/dist/customer-support/slo-incident-assessment-input-schemas.js +1 -0
- package/dist/customer-support/slo-incident-assessment-output-schemas.d.ts +237 -0
- package/dist/customer-support/slo-incident-assessment-output-schemas.js +1 -0
- package/dist/customer-support/slo-incident-doc.d.ts +11 -0
- package/dist/customer-support/slo-incident-doc.js +12 -0
- package/dist/customer-support/slo-incident-event-delivery.d.ts +62 -0
- package/dist/customer-support/slo-incident-event-delivery.js +0 -0
- package/dist/customer-support/slo-incident-event-schemas.d.ts +677 -0
- package/dist/customer-support/slo-incident-event-schemas.js +1 -0
- package/dist/customer-support/slo-incident-event-types.d.ts +54 -0
- package/dist/customer-support/slo-incident-event-types.js +0 -0
- package/dist/customer-support/slo-incident-events.d.ts +1702 -0
- package/dist/customer-support/slo-incident-events.js +1 -0
- package/dist/customer-support/slo-incident-input-schemas.d.ts +126 -0
- package/dist/customer-support/slo-incident-input-schemas.js +1 -0
- package/dist/customer-support/slo-incident-operation-output-schemas.d.ts +961 -0
- package/dist/customer-support/slo-incident-operation-output-schemas.js +1 -0
- package/dist/customer-support/slo-incident-operations.d.ts +3331 -0
- package/dist/customer-support/slo-incident-operations.js +1 -0
- package/dist/customer-support/slo-incident-output-schemas.d.ts +170 -0
- package/dist/customer-support/slo-incident-output-schemas.js +1 -0
- package/dist/customer-support/slo-incident-ports.d.ts +49 -0
- package/dist/customer-support/slo-incident-ports.js +0 -0
- package/dist/customer-support/slo-incident-profile.d.ts +17 -0
- package/dist/customer-support/slo-incident-profile.js +0 -0
- package/dist/customer-support/slo-incident-results.d.ts +27 -0
- package/dist/customer-support/slo-incident-results.js +0 -0
- package/dist/customer-support/slo-incident-schema-support.d.ts +49 -0
- package/dist/customer-support/slo-incident-schema-support.js +1 -0
- package/dist/customer-support/slo-incident.d.ts +167 -0
- package/dist/customer-support/slo-incident.js +1 -0
- package/dist/customer-support/slo-qualification-authorization-schemas.d.ts +88 -0
- package/dist/customer-support/slo-qualification-authorization-schemas.js +1 -0
- package/dist/customer-support/slo-qualification-authorization.d.ts +46 -0
- package/dist/customer-support/slo-qualification-authorization.js +0 -0
- package/dist/customer-support/slo-qualification-plan.d.ts +61 -0
- package/dist/customer-support/slo-qualification-plan.js +1 -0
- package/dist/customer-support/workspace-administration.d.ts +59 -0
- package/dist/customer-support/workspace-administration.js +12 -0
- package/dist/customer-support/workspace-brand-locale-residency-events.d.ts +68 -0
- package/dist/customer-support/workspace-brand-locale-residency-events.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency-operations.d.ts +785 -0
- package/dist/customer-support/workspace-brand-locale-residency-operations.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency-schema-validation.d.ts +7 -0
- package/dist/customer-support/workspace-brand-locale-residency-schema-validation.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency-schemas.d.ts +510 -0
- package/dist/customer-support/workspace-brand-locale-residency-schemas.js +1 -0
- package/dist/customer-support/workspace-brand-locale-residency.d.ts +98 -0
- package/dist/customer-support/workspace-brand-locale-residency.js +9 -0
- package/dist/customer-support/workspace-migration-operations.d.ts +3026 -0
- package/dist/customer-support/workspace-migration-operations.js +1 -0
- package/dist/customer-support/workspace-migration-schemas.d.ts +618 -0
- package/dist/customer-support/workspace-migration-schemas.js +1 -0
- package/dist/customer-support/workspace-migration.d.ts +99 -0
- package/dist/customer-support/workspace-migration.js +8 -0
- package/dist/customer-support/workspace-onboarding-operations.d.ts +364 -0
- package/dist/customer-support/workspace-onboarding-operations.js +1 -0
- package/dist/customer-support/workspace-onboarding-schemas.d.ts +230 -0
- package/dist/customer-support/workspace-onboarding-schemas.js +1 -0
- package/dist/customer-support/workspace-onboarding.d.ts +66 -0
- package/dist/customer-support/workspace-onboarding.js +14 -0
- package/dist/customer-support/workspace-operation-schemas.d.ts +264 -0
- package/dist/customer-support/workspace-operation-schemas.js +1 -0
- package/dist/customer-support/workspace-operations.d.ts +425 -0
- package/dist/customer-support/workspace-operations.js +1 -0
- package/dist/data-views/annotation.d.js +0 -0
- package/dist/data-views/annotation.d.ts +78 -0
- package/dist/data-views/annotation.js +10 -0
- package/dist/data-views/data-views.d.ts +3 -0
- package/dist/data-views/data-views.js +1 -0
- package/dist/data-views/edit-form-resolution.d.js +0 -0
- package/dist/data-views/edit-form-resolution.d.ts +48 -0
- package/dist/data-views/edit-form-resolution.js +1 -0
- package/dist/data-views/filter-scope.d.js +0 -0
- package/dist/data-views/filter-scope.d.ts +17 -0
- package/dist/data-views/filter-scope.js +1 -0
- package/dist/data-views/graph-export.d.js +0 -0
- package/dist/data-views/graph-export.d.ts +80 -0
- package/dist/data-views/graph-export.js +2 -0
- package/dist/data-views/graph-filter-codec.d.js +0 -0
- package/dist/data-views/graph-filter-codec.d.ts +21 -0
- package/dist/data-views/graph-filter-codec.js +2 -0
- package/dist/data-views/graph-filter-spec.d.js +0 -0
- package/dist/data-views/graph-filter-spec.d.ts +53 -0
- package/dist/data-views/graph-filter-spec.js +2 -0
- package/dist/data-views/graph-spec.d.js +0 -0
- package/dist/data-views/graph-spec.d.ts +125 -0
- package/dist/data-views/graph-spec.js +80 -0
- package/dist/data-views/graph-subscription.d.js +0 -0
- package/dist/data-views/graph-subscription.d.ts +131 -0
- package/dist/data-views/graph-subscription.js +3 -0
- package/dist/data-views/i18n-constraint.d.js +1 -0
- package/dist/data-views/i18n-constraint.d.ts +78 -0
- package/dist/data-views/i18n-constraint.js +0 -0
- package/dist/data-views/index.d.js +1 -0
- package/dist/data-views/index.d.ts +25 -0
- package/dist/data-views/index.js +1 -0
- package/dist/data-views/layout-spec.d.js +0 -0
- package/dist/data-views/layout-spec.d.ts +140 -0
- package/dist/data-views/layout-spec.js +2 -0
- package/dist/data-views/query-generator.d.ts +67 -0
- package/dist/data-views/query-generator.js +1 -0
- package/dist/data-views/registry.d.js +0 -0
- package/dist/data-views/registry.d.ts +12 -0
- package/dist/data-views/registry.js +1 -0
- package/dist/data-views/report/contractVerificationTable.d.ts +89 -0
- package/dist/data-views/report/contractVerificationTable.js +29 -0
- package/dist/data-views/runtime.d.ts +25 -0
- package/dist/data-views/runtime.js +1 -0
- package/dist/data-views/saved-view.d.js +0 -0
- package/dist/data-views/saved-view.d.ts +56 -0
- package/dist/data-views/saved-view.js +1 -0
- package/dist/data-views/spec.d.js +0 -0
- package/dist/data-views/spec.d.ts +63 -0
- package/dist/data-views/spec.js +23 -0
- package/dist/data-views/story-slide.d.js +0 -0
- package/dist/data-views/story-slide.d.ts +131 -0
- package/dist/data-views/story-slide.js +2 -0
- package/dist/data-views/types.d.js +0 -0
- package/dist/data-views/types.d.ts +725 -0
- package/dist/data-views/types.js +0 -0
- package/dist/database/capabilities/databaseContext.capability.d.ts +11 -0
- package/dist/database/capabilities/databaseContext.capability.js +4 -0
- package/dist/database/capabilities/index.d.ts +1 -0
- package/dist/database/capabilities/index.js +1 -0
- package/dist/database/commands/databaseMutationExecute.command.d.ts +107 -0
- package/dist/database/commands/databaseMutationExecute.command.js +4 -0
- package/dist/database/commands/databaseMutationPlan.command.d.ts +134 -0
- package/dist/database/commands/databaseMutationPlan.command.js +4 -0
- package/dist/database/commands/index.d.ts +2 -0
- package/dist/database/commands/index.js +1 -0
- package/dist/database/constants.d.ts +4 -0
- package/dist/database/constants.js +1 -0
- package/dist/database/contracts.d.ts +561 -0
- package/dist/database/contracts.js +1 -0
- package/dist/database/database.feature.d.ts +1 -0
- package/dist/database/database.feature.js +1 -0
- package/dist/database/economic-evidence.d.ts +11 -0
- package/dist/database/economic-evidence.js +1 -0
- package/dist/database/index.d.ts +9 -0
- package/dist/database/index.js +1 -0
- package/dist/database/queries/databaseDictionaryGet.query.d.ts +60 -0
- package/dist/database/queries/databaseDictionaryGet.query.js +4 -0
- package/dist/database/queries/databaseMigrationsList.query.d.ts +72 -0
- package/dist/database/queries/databaseMigrationsList.query.js +4 -0
- package/dist/database/queries/databaseQueryReadonly.query.d.ts +67 -0
- package/dist/database/queries/databaseQueryReadonly.query.js +4 -0
- package/dist/database/queries/databaseRelationalQuery.query.d.ts +191 -0
- package/dist/database/queries/databaseRelationalQuery.query.js +9 -0
- package/dist/database/queries/databaseSchemaDescribe.query.d.ts +98 -0
- package/dist/database/queries/databaseSchemaDescribe.query.js +4 -0
- package/dist/database/queries/index.d.ts +5 -0
- package/dist/database/queries/index.js +1 -0
- package/dist/database/tables/capabilityEdges.table.d.ts +16 -0
- package/dist/database/tables/capabilityEdges.table.js +1 -0
- package/dist/database/tables/capabilityNodes.table.d.ts +16 -0
- package/dist/database/tables/capabilityNodes.table.js +1 -0
- package/dist/database/tables/databaseTables.d.ts +292 -0
- package/dist/database/tables/databaseTables.js +1 -0
- package/dist/database/tables/index.d.ts +6 -0
- package/dist/database/tables/index.js +1 -0
- package/dist/database/tables/organizationGrants.table.d.ts +10 -0
- package/dist/database/tables/organizationGrants.table.js +1 -0
- package/dist/database/tables/organizationTenantBindings.table.d.ts +16 -0
- package/dist/database/tables/organizationTenantBindings.table.js +1 -0
- package/dist/database/tables/workspaces.table.d.ts +23 -0
- package/dist/database/tables/workspaces.table.js +1 -0
- package/dist/database/views/databaseSchemas.dataView.d.ts +86 -0
- package/dist/database/views/databaseSchemas.dataView.js +4 -0
- package/dist/database/views/index.d.ts +1 -0
- package/dist/database/views/index.js +1 -0
- package/dist/decisioning/decisioning.feature.d.js +0 -0
- package/dist/decisioning/decisioning.feature.d.ts +22 -0
- package/dist/decisioning/decisioning.feature.js +5 -0
- package/dist/decisioning/evaluation-events.d.js +1 -0
- package/dist/decisioning/evaluation-events.d.ts +373 -0
- package/dist/decisioning/evaluation-events.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration-operations.d.js +0 -0
- package/dist/decisioning/evaluation-evidence-administration-operations.d.ts +291 -0
- package/dist/decisioning/evaluation-evidence-administration-operations.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration-schemas.d.ts +210 -0
- package/dist/decisioning/evaluation-evidence-administration-schemas.js +1 -0
- package/dist/decisioning/evaluation-evidence-administration.d.js +0 -0
- package/dist/decisioning/evaluation-evidence-administration.d.ts +34 -0
- package/dist/decisioning/evaluation-evidence-administration.js +0 -0
- package/dist/decisioning/evaluation-evidence-output-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-evidence-output-schemas.d.ts +142 -0
- package/dist/decisioning/evaluation-evidence-output-schemas.js +1 -0
- package/dist/decisioning/evaluation-input-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-input-schemas.d.ts +89 -0
- package/dist/decisioning/evaluation-input-schemas.js +1 -0
- package/dist/decisioning/evaluation-output-primitives.d.js +1 -0
- package/dist/decisioning/evaluation-output-primitives.d.ts +51 -0
- package/dist/decisioning/evaluation-output-primitives.js +1 -0
- package/dist/decisioning/evaluation-output-schemas.d.js +1 -0
- package/dist/decisioning/evaluation-output-schemas.d.ts +133 -0
- package/dist/decisioning/evaluation-output-schemas.js +1 -0
- package/dist/decisioning/evaluation-schema-validation.d.js +0 -0
- package/dist/decisioning/evaluation-schema-validation.d.ts +8 -0
- package/dist/decisioning/evaluation-schema-validation.js +1 -0
- package/dist/decisioning/evaluation-trace-output-schema.d.js +0 -0
- package/dist/decisioning/evaluation-trace-output-schema.d.ts +9 -0
- package/dist/decisioning/evaluation-trace-output-schema.js +1 -0
- package/dist/decisioning/evaluation.d.js +0 -0
- package/dist/decisioning/evaluation.d.ts +126 -0
- package/dist/decisioning/evaluation.js +0 -0
- package/dist/decisioning/index.d.js +1 -0
- package/dist/decisioning/index.d.ts +16 -0
- package/dist/decisioning/index.js +1 -0
- package/dist/decisioning/lifecycle-events.d.js +0 -0
- package/dist/decisioning/lifecycle-events.d.ts +108 -0
- package/dist/decisioning/lifecycle-events.js +1 -0
- package/dist/decisioning/lifecycle-input-schemas.d.js +1 -0
- package/dist/decisioning/lifecycle-input-schemas.d.ts +73 -0
- package/dist/decisioning/lifecycle-input-schemas.js +1 -0
- package/dist/decisioning/lifecycle-operations.d.js +1 -0
- package/dist/decisioning/lifecycle-operations.d.ts +882 -0
- package/dist/decisioning/lifecycle-operations.js +7 -0
- package/dist/decisioning/lifecycle-output-schemas.d.js +1 -0
- package/dist/decisioning/lifecycle-output-schemas.d.ts +237 -0
- package/dist/decisioning/lifecycle-output-schemas.js +1 -0
- package/dist/decisioning/lifecycle.d.js +0 -0
- package/dist/decisioning/lifecycle.d.ts +72 -0
- package/dist/decisioning/lifecycle.js +1 -0
- package/dist/decisioning/operation-metadata.d.js +0 -0
- package/dist/decisioning/operation-metadata.d.ts +76 -0
- package/dist/decisioning/operation-metadata.js +1 -0
- package/dist/decisioning/operations.d.js +0 -0
- package/dist/decisioning/operations.d.ts +3282 -0
- package/dist/decisioning/operations.js +1 -0
- package/dist/decisioning/predicate-evaluation.d.js +0 -0
- package/dist/decisioning/predicate-evaluation.d.ts +6 -0
- package/dist/decisioning/predicate-evaluation.js +1 -0
- package/dist/decisioning/predicate.d.js +0 -0
- package/dist/decisioning/predicate.d.ts +24 -0
- package/dist/decisioning/predicate.js +1 -0
- package/dist/decisioning/types.d.js +1 -0
- package/dist/decisioning/types.d.ts +89 -0
- package/dist/decisioning/types.js +0 -0
- package/dist/decisioning/validation-diagnostics.d.js +0 -0
- package/dist/decisioning/validation-diagnostics.d.ts +17 -0
- package/dist/decisioning/validation-diagnostics.js +1 -0
- package/dist/decisioning/validation-policy.d.js +0 -0
- package/dist/decisioning/validation-policy.d.ts +14 -0
- package/dist/decisioning/validation-policy.js +1 -0
- package/dist/decisioning/validation-shape.d.js +0 -0
- package/dist/decisioning/validation-shape.d.ts +4 -0
- package/dist/decisioning/validation-shape.js +1 -0
- package/dist/decisioning/validation.d.js +1 -0
- package/dist/decisioning/validation.d.ts +5 -0
- package/dist/decisioning/validation.js +1 -0
- package/dist/delivery/authority.d.ts +301 -0
- package/dist/delivery/authority.js +1 -0
- package/dist/delivery/autonomy-context.d.ts +19 -0
- package/dist/delivery/autonomy-context.js +1 -0
- package/dist/delivery/chain.d.ts +396 -0
- package/dist/delivery/chain.js +1 -0
- package/dist/delivery/ci-budget.d.ts +197 -0
- package/dist/delivery/ci-budget.js +1 -0
- package/dist/delivery/contracts.d.ts +133 -0
- package/dist/delivery/contracts.js +1 -0
- package/dist/delivery/index.d.ts +9 -0
- package/dist/delivery/index.js +1 -0
- package/dist/delivery/manual-author-attestation.d.ts +67 -0
- package/dist/delivery/manual-author-attestation.js +1 -0
- package/dist/delivery/primitives.d.js +0 -0
- package/dist/delivery/primitives.d.ts +68 -0
- package/dist/delivery/primitives.js +1 -0
- package/dist/delivery/project-profile.d.ts +173 -0
- package/dist/delivery/project-profile.js +1 -0
- package/dist/delivery/scoped-autonomy.d.ts +110 -0
- package/dist/delivery/scoped-autonomy.js +1 -0
- package/dist/design-packs/index.d.js +1 -0
- package/dist/design-packs/index.d.ts +11 -0
- package/dist/design-packs/index.js +1 -0
- package/dist/design-packs/inheritance.d.js +0 -0
- package/dist/design-packs/inheritance.d.ts +4 -0
- package/dist/design-packs/inheritance.js +1 -0
- package/dist/design-packs/legacy-theme.d.js +0 -0
- package/dist/design-packs/legacy-theme.d.ts +12 -0
- package/dist/design-packs/legacy-theme.js +1 -0
- package/dist/design-packs/operations.d.js +1 -0
- package/dist/design-packs/operations.d.ts +1883 -0
- package/dist/design-packs/operations.js +3 -0
- package/dist/design-packs/patch-validation.d.js +0 -0
- package/dist/design-packs/patch-validation.d.ts +2 -0
- package/dist/design-packs/patch-validation.js +1 -0
- package/dist/design-packs/patch-value-validation.d.js +0 -0
- package/dist/design-packs/patch-value-validation.d.ts +3 -0
- package/dist/design-packs/patch-value-validation.js +1 -0
- package/dist/design-packs/patches.d.js +1 -0
- package/dist/design-packs/patches.d.ts +35 -0
- package/dist/design-packs/patches.js +1 -0
- package/dist/design-packs/policy.d.js +0 -0
- package/dist/design-packs/policy.d.ts +37 -0
- package/dist/design-packs/policy.js +0 -0
- package/dist/design-packs/ports.d.js +0 -0
- package/dist/design-packs/ports.d.ts +79 -0
- package/dist/design-packs/ports.js +0 -0
- package/dist/design-packs/records.d.js +0 -0
- package/dist/design-packs/records.d.ts +73 -0
- package/dist/design-packs/records.js +0 -0
- package/dist/design-packs/registry.d.js +0 -0
- package/dist/design-packs/registry.d.ts +9 -0
- package/dist/design-packs/registry.js +1 -0
- package/dist/design-packs/resolution-helpers.d.js +0 -0
- package/dist/design-packs/resolution-helpers.d.ts +6 -0
- package/dist/design-packs/resolution-helpers.js +1 -0
- package/dist/design-packs/runtime.d.js +0 -0
- package/dist/design-packs/runtime.d.ts +31 -0
- package/dist/design-packs/runtime.js +1 -0
- package/dist/design-packs/types.d.js +0 -0
- package/dist/design-packs/types.d.ts +47 -0
- package/dist/design-packs/types.js +1 -0
- package/dist/design-packs/validation.d.js +0 -0
- package/dist/design-packs/validation.d.ts +18 -0
- package/dist/design-packs/validation.js +1 -0
- package/dist/docs/capabilities/documentationSystem.capability.d.js +0 -0
- package/dist/docs/capabilities/documentationSystem.capability.d.ts +1 -0
- package/dist/docs/capabilities/documentationSystem.capability.js +1 -0
- package/dist/docs/capabilities/index.d.js +1 -0
- package/dist/docs/capabilities/index.d.ts +1 -0
- package/dist/docs/capabilities/index.js +1 -0
- package/dist/docs/commands/docsGenerate.command.d.js +0 -0
- package/dist/docs/commands/docsGenerate.command.d.ts +97 -0
- package/dist/docs/commands/docsGenerate.command.js +4 -0
- package/dist/docs/commands/docsPublish.command.d.js +0 -0
- package/dist/docs/commands/docsPublish.command.d.ts +66 -0
- package/dist/docs/commands/docsPublish.command.js +4 -0
- package/dist/docs/commands/index.d.js +1 -0
- package/dist/docs/commands/index.d.ts +2 -0
- package/dist/docs/commands/index.js +1 -0
- package/dist/docs/constants.d.js +0 -0
- package/dist/docs/constants.d.ts +4 -0
- package/dist/docs/constants.js +1 -0
- package/dist/docs/contracts.d.js +0 -0
- package/dist/docs/contracts.d.ts +711 -0
- package/dist/docs/contracts.js +1 -0
- package/dist/docs/docblocks.manifest.generated.d.js +0 -0
- package/dist/docs/docblocks.manifest.generated.d.ts +239 -0
- package/dist/docs/docblocks.manifest.generated.js +3215 -0
- package/dist/docs/docs.feature.d.js +0 -0
- package/dist/docs/docs.feature.d.ts +14 -0
- package/dist/docs/docs.feature.js +365 -0
- package/dist/docs/events/docsGenerated.event.d.js +0 -0
- package/dist/docs/events/docsGenerated.event.d.ts +55 -0
- package/dist/docs/events/docsGenerated.event.js +1 -0
- package/dist/docs/events/docsPublished.event.d.js +0 -0
- package/dist/docs/events/docsPublished.event.d.ts +63 -0
- package/dist/docs/events/docsPublished.event.js +1 -0
- package/dist/docs/events/index.d.js +1 -0
- package/dist/docs/events/index.d.ts +2 -0
- package/dist/docs/events/index.js +1 -0
- package/dist/docs/forms/docsSearch.form.d.js +0 -0
- package/dist/docs/forms/docsSearch.form.d.ts +15 -0
- package/dist/docs/forms/docsSearch.form.js +1 -0
- package/dist/docs/forms/index.d.js +1 -0
- package/dist/docs/forms/index.d.ts +1 -0
- package/dist/docs/forms/index.js +1 -0
- package/dist/docs/index.d.js +1 -0
- package/dist/docs/index.d.ts +15 -0
- package/dist/docs/index.js +1 -0
- package/dist/docs/manifest-builder.d.ts +13 -0
- package/dist/docs/manifest-builder.js +1 -0
- package/dist/docs/manifest.d.js +0 -0
- package/dist/docs/manifest.d.ts +18 -0
- package/dist/docs/manifest.js +1 -0
- package/dist/docs/presentations/docsLayout.presentation.d.js +0 -0
- package/dist/docs/presentations/docsLayout.presentation.d.ts +1 -0
- package/dist/docs/presentations/docsLayout.presentation.js +1 -0
- package/dist/docs/presentations/docsReferencePage.presentation.d.js +0 -0
- package/dist/docs/presentations/docsReferencePage.presentation.d.ts +1 -0
- package/dist/docs/presentations/docsReferencePage.presentation.js +1 -0
- package/dist/docs/presentations/index.d.js +1 -0
- package/dist/docs/presentations/index.d.ts +2 -0
- package/dist/docs/presentations/index.js +1 -0
- package/dist/docs/presentations.d.js +0 -0
- package/dist/docs/presentations.d.ts +27 -0
- package/dist/docs/presentations.js +1 -0
- package/dist/docs/queries/contractReference.query.d.js +0 -0
- package/dist/docs/queries/contractReference.query.d.ts +220 -0
- package/dist/docs/queries/contractReference.query.js +4 -0
- package/dist/docs/queries/docsIndex.query.d.js +0 -0
- package/dist/docs/queries/docsIndex.query.d.ts +275 -0
- package/dist/docs/queries/docsIndex.query.js +4 -0
- package/dist/docs/queries/index.d.js +1 -0
- package/dist/docs/queries/index.d.ts +2 -0
- package/dist/docs/queries/index.js +1 -0
- package/dist/docs/registry.d.js +0 -0
- package/dist/docs/registry.d.ts +20 -0
- package/dist/docs/registry.js +1 -0
- package/dist/docs/types.d.js +0 -0
- package/dist/docs/types.d.ts +37 -0
- package/dist/docs/types.js +0 -0
- package/dist/docs/views/contractReference.dataView.d.js +0 -0
- package/dist/docs/views/contractReference.dataView.d.ts +78 -0
- package/dist/docs/views/contractReference.dataView.js +1 -0
- package/dist/docs/views/docsIndex.dataView.d.js +0 -0
- package/dist/docs/views/docsIndex.dataView.d.ts +119 -0
- package/dist/docs/views/docsIndex.dataView.js +1 -0
- package/dist/docs/views/exampleCatalog.dataView.d.js +0 -0
- package/dist/docs/views/exampleCatalog.dataView.d.ts +97 -0
- package/dist/docs/views/exampleCatalog.dataView.js +4 -0
- package/dist/docs/views/index.d.js +1 -0
- package/dist/docs/views/index.d.ts +3 -0
- package/dist/docs/views/index.js +1 -0
- package/dist/editions/companyos-scenario.d.ts +39 -0
- package/dist/editions/companyos-scenario.js +1 -0
- package/dist/editions/connect-gates.d.ts +30 -0
- package/dist/editions/connect-gates.js +1 -0
- package/dist/editions/delivery-audit.d.ts +25 -0
- package/dist/editions/delivery-audit.js +1 -0
- package/dist/editions/docs.d.ts +2 -0
- package/dist/editions/docs.js +45 -0
- package/dist/editions/editor/fixtures.d.ts +3 -0
- package/dist/editions/editor/fixtures.js +1 -0
- package/dist/editions/editor/index.d.ts +4 -0
- package/dist/editions/editor/index.js +1 -0
- package/dist/editions/editor/resolver.d.ts +2 -0
- package/dist/editions/editor/resolver.js +1 -0
- package/dist/editions/editor/schema.d.ts +246 -0
- package/dist/editions/editor/schema.js +1 -0
- package/dist/editions/editor/types.d.ts +100 -0
- package/dist/editions/editor/types.js +0 -0
- package/dist/editions/enterprise-guardrails.d.ts +25 -0
- package/dist/editions/enterprise-guardrails.js +1 -0
- package/dist/editions/evidence-boundary.d.ts +10 -0
- package/dist/editions/evidence-boundary.js +1 -0
- package/dist/editions/experiments.d.ts +57 -0
- package/dist/editions/experiments.js +1 -0
- package/dist/editions/fixtures.d.ts +3 -0
- package/dist/editions/fixtures.js +1 -0
- package/dist/editions/full-loop-gate.d.ts +6 -0
- package/dist/editions/full-loop-gate.js +1 -0
- package/dist/editions/harness-evidence.d.ts +41 -0
- package/dist/editions/harness-evidence.js +1 -0
- package/dist/editions/improvement-types.d.ts +52 -0
- package/dist/editions/improvement-types.js +0 -0
- package/dist/editions/improvement.d.ts +12 -0
- package/dist/editions/improvement.js +1 -0
- package/dist/editions/index.d.ts +23 -0
- package/dist/editions/index.js +1 -0
- package/dist/editions/intelligence-coach.d.ts +37 -0
- package/dist/editions/intelligence-coach.js +1 -0
- package/dist/editions/knowledge-provenance.d.ts +42 -0
- package/dist/editions/knowledge-provenance.js +1 -0
- package/dist/editions/ontology-boundary.d.ts +18 -0
- package/dist/editions/ontology-boundary.js +1 -0
- package/dist/editions/operation-specs.d.ts +206 -0
- package/dist/editions/operation-specs.js +1 -0
- package/dist/editions/rollback.d.ts +67 -0
- package/dist/editions/rollback.js +1 -0
- package/dist/editions/runtime-wiring.d.ts +18 -0
- package/dist/editions/runtime-wiring.js +1 -0
- package/dist/editions/schema.d.ts +216 -0
- package/dist/editions/schema.js +1 -0
- package/dist/editions/storage-file.d.ts +31 -0
- package/dist/editions/storage-file.js +1 -0
- package/dist/editions/storage-hybrid.d.ts +42 -0
- package/dist/editions/storage-hybrid.js +1 -0
- package/dist/editions/storage-parity.d.ts +16 -0
- package/dist/editions/storage-parity.js +1 -0
- package/dist/editions/storage.d.ts +49 -0
- package/dist/editions/storage.js +1 -0
- package/dist/editions/types.d.ts +109 -0
- package/dist/editions/types.js +0 -0
- package/dist/editions/validation.d.ts +5 -0
- package/dist/editions/validation.js +1 -0
- package/dist/entities/compatibility.d.ts +55 -0
- package/dist/entities/compatibility.js +20 -0
- package/dist/entities/defineContractEdge.d.js +0 -0
- package/dist/entities/defineContractEdge.d.ts +49 -0
- package/dist/entities/defineContractEdge.js +41 -0
- package/dist/entities/defineContractEntity.d.js +0 -0
- package/dist/entities/defineContractEntity.d.ts +97 -0
- package/dist/entities/defineContractEntity.js +80 -0
- package/dist/entities/index.d.ts +9 -0
- package/dist/entities/index.js +1 -0
- package/dist/entities/registry.d.js +0 -0
- package/dist/entities/registry.d.ts +58 -0
- package/dist/entities/registry.js +1 -0
- package/dist/entities/types.d.js +0 -0
- package/dist/entities/types.d.ts +109 -0
- package/dist/entities/types.js +1 -0
- package/dist/events.d.js +0 -0
- package/dist/events.d.ts +142 -0
- package/dist/events.js +1 -0
- package/dist/examples/define.d.ts +5 -0
- package/dist/examples/define.js +1 -0
- package/dist/examples/index.d.ts +9 -0
- package/dist/examples/index.js +141 -0
- package/dist/examples/registry.d.ts +38 -0
- package/dist/examples/registry.js +1 -0
- package/dist/examples/schema.d.ts +278 -0
- package/dist/examples/schema.js +1 -0
- package/dist/examples/types.d.ts +162 -0
- package/dist/examples/types.js +1 -0
- package/dist/examples/validation.d.ts +61 -0
- package/dist/examples/validation.js +1 -0
- package/dist/experience-coverage/index.d.ts +3 -0
- package/dist/experience-coverage/index.js +1 -0
- package/dist/experience-coverage/scoring.d.ts +9 -0
- package/dist/experience-coverage/scoring.js +1 -0
- package/dist/experience-coverage/types.d.ts +94 -0
- package/dist/experience-coverage/types.js +1 -0
- package/dist/experience-coverage/validation.d.ts +8 -0
- package/dist/experience-coverage/validation.js +1 -0
- package/dist/experiments/evaluator.d.ts +33 -0
- package/dist/experiments/evaluator.js +1 -0
- package/dist/experiments/spec-resolver.d.js +0 -0
- package/dist/experiments/spec-resolver.d.ts +12 -0
- package/dist/experiments/spec-resolver.js +0 -0
- package/dist/experiments/spec.d.js +0 -0
- package/dist/experiments/spec.d.ts +81 -0
- package/dist/experiments/spec.js +128 -0
- package/dist/feature-hubs/federation.d.ts +44 -0
- package/dist/feature-hubs/federation.js +1 -0
- package/dist/feature-hubs/index.d.ts +6 -0
- package/dist/feature-hubs/index.js +1 -0
- package/dist/feature-hubs/policy.d.ts +30 -0
- package/dist/feature-hubs/policy.js +0 -0
- package/dist/feature-hubs/ports.d.ts +69 -0
- package/dist/feature-hubs/ports.js +0 -0
- package/dist/feature-hubs/registry.d.ts +28 -0
- package/dist/feature-hubs/registry.js +0 -0
- package/dist/feature-hubs/social-intent-ports.d.ts +30 -0
- package/dist/feature-hubs/social-intent-ports.js +0 -0
- package/dist/feature-hubs/social-media.d.ts +48 -0
- package/dist/feature-hubs/social-media.js +0 -0
- package/dist/feature-hubs/social-provider-v2.d.ts +53 -0
- package/dist/feature-hubs/social-provider-v2.js +14 -0
- package/dist/feature-hubs/social-scheduling-operations.d.ts +651 -0
- package/dist/feature-hubs/social-scheduling-operations.js +17 -0
- package/dist/feature-hubs/social-scheduling.d.ts +133 -0
- package/dist/feature-hubs/social-scheduling.js +1 -0
- package/dist/feature-hubs/types.d.ts +89 -0
- package/dist/feature-hubs/types.js +1 -0
- package/dist/features/index.d.js +1 -0
- package/dist/features/index.d.ts +6 -0
- package/dist/features/index.js +1 -0
- package/dist/features/install.d.js +0 -0
- package/dist/features/install.d.ts +38 -0
- package/dist/features/install.js +1 -0
- package/dist/features/registry.d.js +0 -0
- package/dist/features/registry.d.ts +21 -0
- package/dist/features/registry.js +1 -0
- package/dist/features/types.d.js +0 -0
- package/dist/features/types.d.ts +108 -0
- package/dist/features/types.js +62 -0
- package/dist/features/validate-bundle-requires.d.js +1 -0
- package/dist/features/validate-bundle-requires.d.ts +29 -0
- package/dist/features/validate-bundle-requires.js +1 -0
- package/dist/features/validation.d.js +0 -0
- package/dist/features/validation.d.ts +21 -0
- package/dist/features/validation.js +1 -0
- package/dist/forms/entity-bound-forms.d.js +0 -0
- package/dist/forms/entity-bound-forms.d.ts +8 -0
- package/dist/forms/entity-bound-forms.js +30 -0
- package/dist/forms/entity-bound.d.ts +1 -0
- package/dist/forms/entity-bound.js +1 -0
- package/dist/forms/forms.d.js +1 -0
- package/dist/forms/forms.d.ts +875 -0
- package/dist/forms/forms.js +1 -0
- package/dist/forms/index.d.js +1 -0
- package/dist/forms/index.d.ts +21 -0
- package/dist/forms/index.js +1 -0
- package/dist/forms/marketing.forms.d.js +0 -0
- package/dist/forms/marketing.forms.d.ts +71 -0
- package/dist/forms/marketing.forms.js +1 -0
- package/dist/forms/platform-ai-validation.d.js +0 -0
- package/dist/forms/platform-ai-validation.d.ts +3 -0
- package/dist/forms/platform-ai-validation.js +1 -0
- package/dist/forms/platform-capability.d.js +0 -0
- package/dist/forms/platform-capability.d.ts +3 -0
- package/dist/forms/platform-capability.js +1 -0
- package/dist/forms/platform-compiler.d.js +0 -0
- package/dist/forms/platform-compiler.d.ts +4 -0
- package/dist/forms/platform-compiler.js +1 -0
- package/dist/forms/platform-decision-graph.d.js +0 -0
- package/dist/forms/platform-decision-graph.d.ts +6 -0
- package/dist/forms/platform-decision-graph.js +1 -0
- package/dist/forms/platform-docs.d.js +0 -0
- package/dist/forms/platform-docs.d.ts +18 -0
- package/dist/forms/platform-docs.js +1 -0
- package/dist/forms/platform-document-doc.d.js +0 -0
- package/dist/forms/platform-document-doc.d.ts +8 -0
- package/dist/forms/platform-document-doc.js +1 -0
- package/dist/forms/platform-document.d.js +0 -0
- package/dist/forms/platform-document.d.ts +187 -0
- package/dist/forms/platform-document.js +1 -0
- package/dist/forms/platform-ecosystem-operations.d.js +0 -0
- package/dist/forms/platform-ecosystem-operations.d.ts +8 -0
- package/dist/forms/platform-ecosystem-operations.js +1 -0
- package/dist/forms/platform-features.d.js +0 -0
- package/dist/forms/platform-features.d.ts +1 -0
- package/dist/forms/platform-features.js +1 -0
- package/dist/forms/platform-form-spec-serialization.d.js +0 -0
- package/dist/forms/platform-form-spec-serialization.d.ts +4 -0
- package/dist/forms/platform-form-spec-serialization.js +1 -0
- package/dist/forms/platform-form-spec-validation.d.js +0 -0
- package/dist/forms/platform-form-spec-validation.d.ts +6 -0
- package/dist/forms/platform-form-spec-validation.js +1 -0
- package/dist/forms/platform-locale-validation.d.js +0 -0
- package/dist/forms/platform-locale-validation.d.ts +3 -0
- package/dist/forms/platform-locale-validation.js +1 -0
- package/dist/forms/platform-operation-catalog.d.js +0 -0
- package/dist/forms/platform-operation-catalog.d.ts +1 -0
- package/dist/forms/platform-operation-catalog.js +1 -0
- package/dist/forms/platform-operation-errors.d.js +0 -0
- package/dist/forms/platform-operation-errors.d.ts +146 -0
- package/dist/forms/platform-operation-errors.js +1 -0
- package/dist/forms/platform-operations.d.js +0 -0
- package/dist/forms/platform-operations.d.ts +13 -0
- package/dist/forms/platform-operations.js +1 -0
- package/dist/forms/platform-product.d.js +0 -0
- package/dist/forms/platform-product.d.ts +13 -0
- package/dist/forms/platform-product.js +1 -0
- package/dist/forms/platform-registry.d.js +0 -0
- package/dist/forms/platform-registry.d.ts +4 -0
- package/dist/forms/platform-registry.js +1 -0
- package/dist/forms/platform-response-extension.d.js +0 -0
- package/dist/forms/platform-response-extension.d.ts +14 -0
- package/dist/forms/platform-response-extension.js +0 -0
- package/dist/forms/platform-validation.d.js +0 -0
- package/dist/forms/platform-validation.d.ts +11 -0
- package/dist/forms/platform-validation.js +1 -0
- package/dist/forms/richFieldsShowcase.form.d.js +0 -0
- package/dist/forms/richFieldsShowcase.form.d.ts +39 -0
- package/dist/forms/richFieldsShowcase.form.js +1 -0
- package/dist/graph-artifacts/codebase.d.ts +240 -0
- package/dist/graph-artifacts/codebase.js +1 -0
- package/dist/graph-artifacts/common.d.ts +114 -0
- package/dist/graph-artifacts/common.js +1 -0
- package/dist/graph-artifacts/contracts.d.ts +299 -0
- package/dist/graph-artifacts/contracts.js +1 -0
- package/dist/graph-artifacts/drift.d.ts +97 -0
- package/dist/graph-artifacts/drift.js +1 -0
- package/dist/graph-artifacts/generation.d.ts +102 -0
- package/dist/graph-artifacts/generation.js +1 -0
- package/dist/graph-artifacts/index.d.ts +6 -0
- package/dist/graph-artifacts/index.js +1 -0
- package/dist/graph-artifacts/links.d.ts +218 -0
- package/dist/graph-artifacts/links.js +1 -0
- package/dist/harness/capabilities/harnessEvaluation.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessEvaluation.capability.js +1 -0
- package/dist/harness/capabilities/harnessEvidence.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessEvidence.capability.js +1 -0
- package/dist/harness/capabilities/harnessExecution.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessExecution.capability.js +1 -0
- package/dist/harness/capabilities/harnessTargeting.capability.d.ts +1 -0
- package/dist/harness/capabilities/harnessTargeting.capability.js +1 -0
- package/dist/harness/capabilities/index.d.ts +4 -0
- package/dist/harness/capabilities/index.js +1 -0
- package/dist/harness/commands/harnessEvaluationRun.command.d.ts +91 -0
- package/dist/harness/commands/harnessEvaluationRun.command.js +1 -0
- package/dist/harness/commands/harnessRunCancel.command.d.ts +24 -0
- package/dist/harness/commands/harnessRunCancel.command.js +1 -0
- package/dist/harness/commands/harnessRunStart.command.d.ts +168 -0
- package/dist/harness/commands/harnessRunStart.command.js +1 -0
- package/dist/harness/commands/index.d.ts +3 -0
- package/dist/harness/commands/index.js +1 -0
- package/dist/harness/constants.d.ts +4 -0
- package/dist/harness/constants.js +1 -0
- package/dist/harness/contracts.d.ts +1065 -0
- package/dist/harness/contracts.js +1 -0
- package/dist/harness/events/harnessEvaluationCompleted.event.d.ts +45 -0
- package/dist/harness/events/harnessEvaluationCompleted.event.js +1 -0
- package/dist/harness/events/harnessEvidenceCaptured.event.d.ts +37 -0
- package/dist/harness/events/harnessEvidenceCaptured.event.js +1 -0
- package/dist/harness/events/harnessRunCompleted.event.d.ts +37 -0
- package/dist/harness/events/harnessRunCompleted.event.js +1 -0
- package/dist/harness/events/harnessRunFailed.event.d.ts +37 -0
- package/dist/harness/events/harnessRunFailed.event.js +1 -0
- package/dist/harness/events/harnessRunStarted.event.d.ts +45 -0
- package/dist/harness/events/harnessRunStarted.event.js +1 -0
- package/dist/harness/events/harnessStepBlocked.event.d.ts +37 -0
- package/dist/harness/events/harnessStepBlocked.event.js +1 -0
- package/dist/harness/events/harnessStepCompleted.event.d.ts +37 -0
- package/dist/harness/events/harnessStepCompleted.event.js +1 -0
- package/dist/harness/events/harnessStepStarted.event.d.ts +45 -0
- package/dist/harness/events/harnessStepStarted.event.js +1 -0
- package/dist/harness/events/index.d.ts +8 -0
- package/dist/harness/events/index.js +1 -0
- package/dist/harness/harness.feature.d.ts +11 -0
- package/dist/harness/harness.feature.js +1 -0
- package/dist/harness/index.d.ts +11 -0
- package/dist/harness/index.js +1 -0
- package/dist/harness/models.d.ts +330 -0
- package/dist/harness/models.js +1 -0
- package/dist/harness/presentations/harnessRunAudit.presentation.d.ts +1 -0
- package/dist/harness/presentations/harnessRunAudit.presentation.js +1 -0
- package/dist/harness/presentations/index.d.ts +1 -0
- package/dist/harness/presentations/index.js +1 -0
- package/dist/harness/queries/harnessEvaluationGet.query.d.ts +72 -0
- package/dist/harness/queries/harnessEvaluationGet.query.js +1 -0
- package/dist/harness/queries/harnessEvidenceGet.query.d.ts +53 -0
- package/dist/harness/queries/harnessEvidenceGet.query.js +1 -0
- package/dist/harness/queries/harnessEvidenceList.query.d.ts +66 -0
- package/dist/harness/queries/harnessEvidenceList.query.js +1 -0
- package/dist/harness/queries/harnessRunGet.query.d.ts +137 -0
- package/dist/harness/queries/harnessRunGet.query.js +1 -0
- package/dist/harness/queries/harnessTargetResolve.query.d.ts +59 -0
- package/dist/harness/queries/harnessTargetResolve.query.js +1 -0
- package/dist/harness/queries/index.d.ts +5 -0
- package/dist/harness/queries/index.js +1 -0
- package/dist/harness/types.d.ts +210 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/views/harnessEvaluations.dataView.d.ts +74 -0
- package/dist/harness/views/harnessEvaluations.dataView.js +1 -0
- package/dist/harness/views/harnessEvidence.dataView.d.ts +74 -0
- package/dist/harness/views/harnessEvidence.dataView.js +1 -0
- package/dist/harness/views/harnessRuns.dataView.d.ts +74 -0
- package/dist/harness/views/harnessRuns.dataView.js +1 -0
- package/dist/harness/views/index.d.ts +3 -0
- package/dist/harness/views/index.js +1 -0
- package/dist/index.d.ts +76 -0
- package/dist/index.js +1 -0
- package/dist/install.d.js +1 -0
- package/dist/install.d.ts +77 -0
- package/dist/install.js +1 -0
- package/dist/job-application/constants.d.ts +14 -0
- package/dist/job-application/constants.js +1 -0
- package/dist/job-application/events.d.ts +977 -0
- package/dist/job-application/events.js +1 -0
- package/dist/job-application/index.d.ts +7 -0
- package/dist/job-application/index.js +1 -0
- package/dist/job-application/operation-definitions.d.ts +2023 -0
- package/dist/job-application/operation-definitions.js +1 -0
- package/dist/job-application/operations.d.ts +1999 -0
- package/dist/job-application/operations.js +1 -0
- package/dist/job-application/registry.d.ts +10 -0
- package/dist/job-application/registry.js +1 -0
- package/dist/job-application/transport.d.ts +13 -0
- package/dist/job-application/transport.js +1 -0
- package/dist/job-application/types.d.ts +172 -0
- package/dist/job-application/types.js +1 -0
- package/dist/job-application/validation.d.ts +180 -0
- package/dist/job-application/validation.js +1 -0
- package/dist/jobs/define-job.d.ts +14 -0
- package/dist/jobs/define-job.js +1 -0
- package/dist/jobs/durable-queue-v2/admission-validation.d.ts +3 -0
- package/dist/jobs/durable-queue-v2/admission-validation.js +1 -0
- package/dist/jobs/durable-queue-v2/capability.d.ts +118 -0
- package/dist/jobs/durable-queue-v2/capability.js +1 -0
- package/dist/jobs/durable-queue-v2/digests.d.ts +15 -0
- package/dist/jobs/durable-queue-v2/digests.js +1 -0
- package/dist/jobs/durable-queue-v2/envelope.d.ts +113 -0
- package/dist/jobs/durable-queue-v2/envelope.js +1 -0
- package/dist/jobs/durable-queue-v2/index.d.ts +8 -0
- package/dist/jobs/durable-queue-v2/index.js +1 -0
- package/dist/jobs/durable-queue-v2/lifecycle.d.ts +160 -0
- package/dist/jobs/durable-queue-v2/lifecycle.js +1 -0
- package/dist/jobs/durable-queue-v2/primitives.d.ts +43 -0
- package/dist/jobs/durable-queue-v2/primitives.js +1 -0
- package/dist/jobs/durable-queue-v2/test-fixtures.d.ts +91 -0
- package/dist/jobs/durable-queue-v2/test-fixtures.js +1 -0
- package/dist/jobs/durable-queue-v2/validation.d.ts +13 -0
- package/dist/jobs/durable-queue-v2/validation.js +1 -0
- package/dist/jobs/durable-queue-v2/workload.d.ts +34 -0
- package/dist/jobs/durable-queue-v2/workload.js +1 -0
- package/dist/jobs/index.d.ts +4 -0
- package/dist/jobs/index.js +1 -0
- package/dist/jobs/queue.d.js +0 -0
- package/dist/jobs/queue.d.ts +129 -0
- package/dist/jobs/queue.js +1 -0
- package/dist/jobs/spec.d.js +0 -0
- package/dist/jobs/spec.d.ts +36 -0
- package/dist/jobs/spec.js +1 -0
- package/dist/jsonschema.d.ts +39 -0
- package/dist/jsonschema.js +1 -0
- package/dist/knowledge/binding.d.js +0 -0
- package/dist/knowledge/binding.d.ts +28 -0
- package/dist/knowledge/binding.js +0 -0
- package/dist/knowledge/index.d.ts +6 -0
- package/dist/knowledge/index.js +1 -0
- package/dist/knowledge/knowledge.capability.d.ts +1 -0
- package/dist/knowledge/knowledge.capability.js +1 -0
- package/dist/knowledge/knowledge.feature.d.ts +5 -0
- package/dist/knowledge/knowledge.feature.js +1 -0
- package/dist/knowledge/operation-models.d.ts +338 -0
- package/dist/knowledge/operation-models.js +1 -0
- package/dist/knowledge/operations.d.ts +384 -0
- package/dist/knowledge/operations.js +1 -0
- package/dist/knowledge/registry.d.js +0 -0
- package/dist/knowledge/registry.d.ts +6 -0
- package/dist/knowledge/registry.js +1 -0
- package/dist/knowledge/source.d.js +0 -0
- package/dist/knowledge/source.d.ts +96 -0
- package/dist/knowledge/source.js +1 -0
- package/dist/knowledge/spaces/email-threads.d.ts +4 -0
- package/dist/knowledge/spaces/email-threads.js +1 -0
- package/dist/knowledge/spaces/financial-docs.d.ts +4 -0
- package/dist/knowledge/spaces/financial-docs.js +1 -0
- package/dist/knowledge/spaces/financial-overview.d.ts +4 -0
- package/dist/knowledge/spaces/financial-overview.js +1 -0
- package/dist/knowledge/spaces/index.d.ts +6 -0
- package/dist/knowledge/spaces/index.js +1 -0
- package/dist/knowledge/spaces/product-canon.d.ts +4 -0
- package/dist/knowledge/spaces/product-canon.js +1 -0
- package/dist/knowledge/spaces/support-faq.d.ts +4 -0
- package/dist/knowledge/spaces/support-faq.js +1 -0
- package/dist/knowledge/spaces/uploaded-docs.d.ts +4 -0
- package/dist/knowledge/spaces/uploaded-docs.js +1 -0
- package/dist/knowledge/spec.d.js +1 -0
- package/dist/knowledge/spec.d.ts +74 -0
- package/dist/knowledge/spec.js +172 -0
- package/dist/llm/exporters.d.ts +75 -0
- package/dist/llm/exporters.js +9 -0
- package/dist/llm/index.d.ts +12 -0
- package/dist/llm/index.js +1 -0
- package/dist/llm/prompts.d.ts +53 -0
- package/dist/llm/prompts.js +237 -0
- package/dist/llm/types.d.ts +224 -0
- package/dist/llm/types.js +0 -0
- package/dist/markdown.d.ts +16 -0
- package/dist/markdown.js +3 -0
- package/dist/marketing/fixtures.d.ts +3 -0
- package/dist/marketing/fixtures.js +1 -0
- package/dist/marketing/forms.d.ts +32 -0
- package/dist/marketing/forms.js +1 -0
- package/dist/marketing/index.d.ts +4 -0
- package/dist/marketing/index.js +1 -0
- package/dist/marketing/types.d.ts +217 -0
- package/dist/marketing/types.js +0 -0
- package/dist/marketing/validation.d.ts +17 -0
- package/dist/marketing/validation.js +3 -0
- package/dist/migrations.d.ts +67 -0
- package/dist/migrations.js +69 -0
- package/dist/model-registry.d.ts +9 -0
- package/dist/model-registry.js +1 -0
- package/dist/navigation/index.d.ts +11 -0
- package/dist/navigation/index.js +1 -0
- package/dist/navigation/nav-graph.d.ts +79 -0
- package/dist/navigation/nav-graph.js +69 -0
- package/dist/navigation/nav-surface.d.ts +138 -0
- package/dist/navigation/nav-surface.js +70 -0
- package/dist/navigation/registry.d.ts +69 -0
- package/dist/navigation/registry.js +1 -0
- package/dist/node/acp/acp.feature.js +1 -0
- package/dist/node/acp/capabilities/acpTransport.capability.js +4 -0
- package/dist/node/acp/capabilities/index.js +1 -0
- package/dist/node/acp/commands/acpFsAccess.command.js +4 -0
- package/dist/node/acp/commands/acpPromptTurn.command.js +4 -0
- package/dist/node/acp/commands/acpSessionInit.command.js +4 -0
- package/dist/node/acp/commands/acpSessionResume.command.js +4 -0
- package/dist/node/acp/commands/acpSessionStop.command.js +4 -0
- package/dist/node/acp/commands/acpTerminalExec.command.js +4 -0
- package/dist/node/acp/commands/acpToolCalls.command.js +4 -0
- package/dist/node/acp/commands/index.js +1 -0
- package/dist/node/acp/constants.js +1 -0
- package/dist/node/acp/contracts.js +1 -0
- package/dist/node/acp/index.js +1 -0
- package/dist/node/adaptive-shell/index.js +1 -0
- package/dist/node/adaptive-shell/types.js +0 -0
- package/dist/node/adaptive-shell/validation.js +1 -0
- package/dist/node/adoption-catalog/index.js +1 -0
- package/dist/node/agent/agent.feature.js +4 -0
- package/dist/node/agent/capabilities/agentExecution.capability.js +1 -0
- package/dist/node/agent/capabilities/index.js +1 -0
- package/dist/node/agent/commands/agentApprovals.command.js +4 -0
- package/dist/node/agent/commands/agentCancel.command.js +4 -0
- package/dist/node/agent/commands/agentRun.command.js +4 -0
- package/dist/node/agent/commands/agentTaskOps.command.js +1 -0
- package/dist/node/agent/commands/graphCompose.command.js +1 -0
- package/dist/node/agent/commands/graphEdit.command.js +25 -0
- package/dist/node/agent/commands/graphOps.command.js +31 -0
- package/dist/node/agent/commands/graphRefactor.command.js +1 -0
- package/dist/node/agent/commands/graphSuggestEvolution.command.js +35 -0
- package/dist/node/agent/commands/index.js +1 -0
- package/dist/node/agent/constants.js +1 -0
- package/dist/node/agent/contracts.js +1 -0
- package/dist/node/agent/events/agentApprovalRequested.event.js +4 -0
- package/dist/node/agent/events/agentRunCompleted.event.js +4 -0
- package/dist/node/agent/events/agentRunFailed.event.js +4 -0
- package/dist/node/agent/events/agentRunStarted.event.js +4 -0
- package/dist/node/agent/events/index.js +1 -0
- package/dist/node/agent/forms/agentRun.form.js +4 -0
- package/dist/node/agent/forms/index.js +1 -0
- package/dist/node/agent/graph-conversation.js +19 -0
- package/dist/node/agent/index.js +1 -0
- package/dist/node/agent/presentations/agentRunAudit.presentation.js +4 -0
- package/dist/node/agent/presentations/index.js +1 -0
- package/dist/node/agent/protocol/application-signature.js +1 -0
- package/dist/node/agent/protocol/application.js +4 -0
- package/dist/node/agent/protocol/automation/automation.test-fixture.js +1 -0
- package/dist/node/agent/protocol/automation/contracts.js +4 -0
- package/dist/node/agent/protocol/automation/definition-validation.js +1 -0
- package/dist/node/agent/protocol/automation/digests.js +1 -0
- package/dist/node/agent/protocol/automation/index.js +1 -0
- package/dist/node/agent/protocol/automation/lifecycle-validation.js +1 -0
- package/dist/node/agent/protocol/automation/lifecycle.js +1 -0
- package/dist/node/agent/protocol/automation/run-validation.js +1 -0
- package/dist/node/agent/protocol/automation/validation.js +1 -0
- package/dist/node/agent/protocol/bindings.js +1 -0
- package/dist/node/agent/protocol/budget.js +1 -0
- package/dist/node/agent/protocol/common.js +1 -0
- package/dist/node/agent/protocol/delegation.js +1 -0
- package/dist/node/agent/protocol/execution.js +1 -0
- package/dist/node/agent/protocol/graph-validation.js +1 -0
- package/dist/node/agent/protocol/help.js +1 -0
- package/dist/node/agent/protocol/index.js +1 -0
- package/dist/node/agent/protocol/markdown-migration.js +1 -0
- package/dist/node/agent/protocol/memory-governance.js +1 -0
- package/dist/node/agent/protocol/memory-validation.js +1 -0
- package/dist/node/agent/protocol/memory.js +1 -0
- package/dist/node/agent/protocol/model-fallback-validation-v2.js +1 -0
- package/dist/node/agent/protocol/model-fallback-validation.js +1 -0
- package/dist/node/agent/protocol/model-invocation-profile.js +1 -0
- package/dist/node/agent/protocol/model-route-contracts-v2.js +1 -0
- package/dist/node/agent/protocol/model-route-contracts.js +1 -0
- package/dist/node/agent/protocol/model-routing-migration.js +1 -0
- package/dist/node/agent/protocol/model-routing-v2.js +1 -0
- package/dist/node/agent/protocol/model-routing-v2.test-fixtures.js +1 -0
- package/dist/node/agent/protocol/model-routing.js +1 -0
- package/dist/node/agent/protocol/model-routing.test-fixtures.js +1 -0
- package/dist/node/agent/protocol/model-selection-validation-v2.js +1 -0
- package/dist/node/agent/protocol/model-selection-validation.js +1 -0
- package/dist/node/agent/protocol/model-serving-validation-v2.js +1 -0
- package/dist/node/agent/protocol/planning.js +1 -0
- package/dist/node/agent/protocol/reflection.js +1 -0
- package/dist/node/agent/protocol/task-result-validation.js +1 -0
- package/dist/node/agent/queries/agentArtifacts.query.js +4 -0
- package/dist/node/agent/queries/agentStatus.query.js +4 -0
- package/dist/node/agent/queries/index.js +1 -0
- package/dist/node/agent/registry.js +1 -0
- package/dist/node/agent/runner.js +1 -0
- package/dist/node/agent/spec.js +10 -0
- package/dist/node/agent/task-tree.js +22 -0
- package/dist/node/agent/views/agentRuns.dataView.js +4 -0
- package/dist/node/agent/views/index.js +1 -0
- package/dist/node/agent-platform/baseline-suites.js +1 -0
- package/dist/node/agent-platform/digest.js +1 -0
- package/dist/node/agent-platform/index.js +1 -0
- package/dist/node/agent-platform/types.js +1 -0
- package/dist/node/agent-platform/validation-v2.js +1 -0
- package/dist/node/agent-platform/validation.js +1 -0
- package/dist/node/agent-step-observability/index.js +1 -0
- package/dist/node/agent-step-observability/types.js +0 -0
- package/dist/node/agent-step-observability/validation.js +1 -0
- package/dist/node/agentic-interaction/constants.js +1 -0
- package/dist/node/agentic-interaction/contracts.js +1 -0
- package/dist/node/agentic-interaction/index.js +1 -0
- package/dist/node/agentpacks/evidence-audit-validation.js +1 -0
- package/dist/node/agentpacks/evidence-canonicalization.js +2 -0
- package/dist/node/agentpacks/evidence-fixtures.js +1 -0
- package/dist/node/agentpacks/evidence-schema-primitives.js +1 -0
- package/dist/node/agentpacks/evidence-trace-validation.js +1 -0
- package/dist/node/agentpacks/evidence-types.js +0 -0
- package/dist/node/agentpacks/evidence-validation.js +1 -0
- package/dist/node/agentpacks/index.js +1 -0
- package/dist/node/agentpacks/types.js +0 -0
- package/dist/node/agentpacks/validation.js +1 -0
- package/dist/node/ai-improvement/contracts-v2.js +1 -0
- package/dist/node/ai-improvement/evidence.js +1 -0
- package/dist/node/ai-improvement/index.js +1 -0
- package/dist/node/ai-improvement/policy.js +1 -0
- package/dist/node/ai-improvement/types.js +0 -0
- package/dist/node/ai-improvement/validation-v2.js +1 -0
- package/dist/node/ai-improvement/validation.js +1 -0
- package/dist/node/analytics/index.js +0 -0
- package/dist/node/analytics/semantic-spec.js +0 -0
- package/dist/node/app-config/app-config.capability.js +1 -0
- package/dist/node/app-config/app-config.contracts.js +1 -0
- package/dist/node/app-config/app-config.feature.js +1 -0
- package/dist/node/app-config/branding.d.js +0 -0
- package/dist/node/app-config/branding.js +0 -0
- package/dist/node/app-config/events.js +1 -0
- package/dist/node/app-config/index.js +1 -0
- package/dist/node/app-config/integrations.d.js +0 -0
- package/dist/node/app-config/integrations.js +0 -0
- package/dist/node/app-config/lifecycle-contracts.js +1 -0
- package/dist/node/app-config/lifecycle.d.js +0 -0
- package/dist/node/app-config/lifecycle.js +0 -0
- package/dist/node/app-config/runtime.d.js +0 -0
- package/dist/node/app-config/runtime.js +1 -0
- package/dist/node/app-config/spec.d.js +0 -0
- package/dist/node/app-config/spec.js +162 -0
- package/dist/node/app-config/validation.js +1 -0
- package/dist/node/app-submission-readiness/admin-rules.contracts.js +1 -0
- package/dist/node/app-submission-readiness/assets.contracts.js +1 -0
- package/dist/node/app-submission-readiness/audit.contracts.js +1 -0
- package/dist/node/app-submission-readiness/constants.js +1 -0
- package/dist/node/app-submission-readiness/contracts.js +1 -0
- package/dist/node/app-submission-readiness/events.js +1 -0
- package/dist/node/app-submission-readiness/fixtures.js +1 -0
- package/dist/node/app-submission-readiness/index.js +1 -0
- package/dist/node/app-submission-readiness/legal-links.contracts.js +1 -0
- package/dist/node/app-submission-readiness/manifests.contracts.js +1 -0
- package/dist/node/app-submission-readiness/markdown-report.js +3 -0
- package/dist/node/app-submission-readiness/privacy-disclosures.contracts.js +1 -0
- package/dist/node/app-submission-readiness/project.contracts.js +1 -0
- package/dist/node/app-submission-readiness/provider-capabilities.js +1 -0
- package/dist/node/app-submission-readiness/provider-capabilities.seeds.js +1 -0
- package/dist/node/app-submission-readiness/registry.js +1 -0
- package/dist/node/app-submission-readiness/rejection-response.contracts.js +1 -0
- package/dist/node/app-submission-readiness/reports.contracts.js +1 -0
- package/dist/node/app-submission-readiness/reviewer-access.contracts.js +1 -0
- package/dist/node/app-submission-readiness/runtime.js +1 -0
- package/dist/node/app-submission-readiness/sdk-inventory.contracts.js +1 -0
- package/dist/node/app-submission-readiness/store-integrations.contracts.js +1 -0
- package/dist/node/app-submission-readiness/types.js +0 -0
- package/dist/node/capabilities/agent-workflow.d.js +0 -0
- package/dist/node/capabilities/agent-workflow.js +1 -0
- package/dist/node/capabilities/capabilities.d.js +0 -0
- package/dist/node/capabilities/capabilities.js +187 -0
- package/dist/node/capabilities/context.d.js +0 -0
- package/dist/node/capabilities/context.js +1 -0
- package/dist/node/capabilities/guards.d.js +0 -0
- package/dist/node/capabilities/guards.js +1 -0
- package/dist/node/capabilities/index.d.js +1 -0
- package/dist/node/capabilities/index.js +1 -0
- package/dist/node/capabilities/meeting-recorder.d.js +0 -0
- package/dist/node/capabilities/meeting-recorder.js +1 -0
- package/dist/node/capabilities/openbanking.d.js +0 -0
- package/dist/node/capabilities/openbanking.js +1 -0
- package/dist/node/capabilities/validation.d.js +0 -0
- package/dist/node/capabilities/validation.js +1 -0
- package/dist/node/cli/command-pack.js +16 -0
- package/dist/node/cli/index.js +1 -0
- package/dist/node/companyos/auth-production-topology.js +1 -0
- package/dist/node/companyos/booking-surfaces.js +1 -0
- package/dist/node/companyos/calendar-intelligence.js +1 -0
- package/dist/node/companyos/calendar-microsoft-personal-discovery.js +1 -0
- package/dist/node/companyos/calendar-microsoft-personal-http.js +1 -0
- package/dist/node/companyos/calendar-microsoft-personal-selection.js +1 -0
- package/dist/node/companyos/calendar-private-draft-preview.js +1 -0
- package/dist/node/companyos/commands/autonomousWorkOrderTransition.command.js +1 -0
- package/dist/node/companyos/commands/builderReadinessEvaluate.command.js +1 -0
- package/dist/node/companyos/commands/contextSetActive.command.js +1 -0
- package/dist/node/companyos/commands/decisionPacketAttest.command.js +1 -0
- package/dist/node/companyos/commands/decisionPacketFounderApprove.command.js +1 -0
- package/dist/node/companyos/commands/index.js +1 -0
- package/dist/node/companyos/commands/integrationConfigureByok.command.js +1 -0
- package/dist/node/companyos/commands/integrationConfigureManaged.command.js +1 -0
- package/dist/node/companyos/commands/onboardingPreferencesComplete.command.js +8 -0
- package/dist/node/companyos/commands/organizationSetActive.command.js +1 -0
- package/dist/node/companyos/commands/personaPreviewSet.command.js +7 -0
- package/dist/node/companyos/commands/personalBriefingCalendarsSelect.command.js +12 -0
- package/dist/node/companyos/commands/personalBriefingDeliveryRetry.command.js +8 -0
- package/dist/node/companyos/commands/personalBriefingGoogleOAuthComplete.command.js +6 -0
- package/dist/node/companyos/commands/personalBriefingGoogleOAuthStart.command.js +6 -0
- package/dist/node/companyos/commands/personalBriefingMicrosoftDisconnect.command.js +5 -0
- package/dist/node/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.js +9 -0
- package/dist/node/companyos/commands/personalBriefingMicrosoftOAuthStart.command.js +6 -0
- package/dist/node/companyos/commands/personalBriefingPreferencesUpdate.command.js +11 -0
- package/dist/node/companyos/commands/personalBriefingPreviewSend.command.js +15 -0
- package/dist/node/companyos/commands/personalContextDisable.command.js +1 -0
- package/dist/node/companyos/commands/personalContextEnsure.command.js +1 -0
- package/dist/node/companyos/commands/personalDailyOperationCreate.command.js +1 -0
- package/dist/node/companyos/commands/personalDailyOperationTransition.command.js +1 -0
- package/dist/node/companyos/commands/reviewCardDecide.command.js +1 -0
- package/dist/node/companyos/commands/shellPreferencesUpdate.command.js +6 -0
- package/dist/node/companyos/commands/tenantOnboard.command.js +1 -0
- package/dist/node/companyos/commands/tenantUpdate.command.js +1 -0
- package/dist/node/companyos/commands/weeklyReportApprove.command.js +1 -0
- package/dist/node/companyos/commands/workflowStart.command.js +1 -0
- package/dist/node/companyos/company-intelligence/api-schemas.js +1 -0
- package/dist/node/companyos/company-intelligence/api.js +1 -0
- package/dist/node/companyos/company-intelligence/commands.js +1 -0
- package/dist/node/companyos/company-intelligence/events.js +1 -0
- package/dist/node/companyos/company-intelligence/index.js +1 -0
- package/dist/node/companyos/company-intelligence/models.js +1 -0
- package/dist/node/companyos/company-intelligence/operations.js +1 -0
- package/dist/node/companyos/company-intelligence/queries.js +1 -0
- package/dist/node/companyos/company-intelligence/registry.js +1 -0
- package/dist/node/companyos/company-intelligence/surface.js +1 -0
- package/dist/node/companyos/company-metrics/commands.js +3 -0
- package/dist/node/companyos/company-metrics/events.js +3 -0
- package/dist/node/companyos/company-metrics/index.js +1 -0
- package/dist/node/companyos/company-metrics/queries.js +3 -0
- package/dist/node/companyos/company-metrics/registry.js +1 -0
- package/dist/node/companyos/company-metrics/shared.js +1 -0
- package/dist/node/companyos/constants.js +1 -0
- package/dist/node/companyos/index.js +1 -0
- package/dist/node/companyos/live-workspace-surfaces.js +1 -0
- package/dist/node/companyos/organization-bootstrap.js +1 -0
- package/dist/node/companyos/organization-seed-contract.js +1 -0
- package/dist/node/companyos/organization-seed-manifest.js +1 -0
- package/dist/node/companyos/organization-seed-profile-manifest.js +1 -0
- package/dist/node/companyos/organization-seed.js +1 -0
- package/dist/node/companyos/organization-self-service.js +1 -0
- package/dist/node/companyos/production-semantics.js +1 -0
- package/dist/node/companyos/projections.js +1 -0
- package/dist/node/companyos/public-composition.js +1 -0
- package/dist/node/companyos/queries/approvalReasons.query.js +1 -0
- package/dist/node/companyos/queries/builderEvidenceReceiptGet.query.js +1 -0
- package/dist/node/companyos/queries/builderReleaseCapsuleGet.query.js +1 -0
- package/dist/node/companyos/queries/builderReplayPacketGet.query.js +1 -0
- package/dist/node/companyos/queries/contextList.query.js +1 -0
- package/dist/node/companyos/queries/designPartnerReadinessGet.query.js +1 -0
- package/dist/node/companyos/queries/evidenceGetReceipt.query.js +1 -0
- package/dist/node/companyos/queries/evidenceVerifyHash.query.js +1 -0
- package/dist/node/companyos/queries/graphQuery.query.js +1 -0
- package/dist/node/companyos/queries/graphQueryByPolicy.query.js +1 -0
- package/dist/node/companyos/queries/healthApi.query.js +1 -0
- package/dist/node/companyos/queries/healthWebsocket.query.js +1 -0
- package/dist/node/companyos/queries/healthWorker.query.js +1 -0
- package/dist/node/companyos/queries/index.js +1 -0
- package/dist/node/companyos/queries/integrationListProviders.query.js +1 -0
- package/dist/node/companyos/queries/integrationStatus.query.js +1 -0
- package/dist/node/companyos/queries/organizationList.query.js +1 -0
- package/dist/node/companyos/queries/personalBriefingCalendarsList.query.js +6 -0
- package/dist/node/companyos/queries/personalBriefingStatus.query.js +13 -0
- package/dist/node/companyos/queries/personalContextProvisioningStatus.query.js +1 -0
- package/dist/node/companyos/queries/personalDailyOperations.query.js +1 -0
- package/dist/node/companyos/queries/replayGetPacket.query.js +1 -0
- package/dist/node/companyos/queries/replayListByTenant.query.js +1 -0
- package/dist/node/companyos/queries/sessionAuthorityGet.query.js +1 -0
- package/dist/node/companyos/queries/shellPreferencesGet.query.js +7 -0
- package/dist/node/companyos/queries/tenantGet.query.js +1 -0
- package/dist/node/companyos/queries/tenantList.query.js +1 -0
- package/dist/node/companyos/queries/workflowGetStatus.query.js +1 -0
- package/dist/node/companyos/queries/workflowList.query.js +1 -0
- package/dist/node/companyos/queries/workspaceList.query.js +1 -0
- package/dist/node/companyos/registry.js +1 -0
- package/dist/node/companyos/shell-preferences.js +1 -0
- package/dist/node/content-analysis/constants.js +1 -0
- package/dist/node/content-analysis/events.js +3 -0
- package/dist/node/content-analysis/index.js +1 -0
- package/dist/node/content-analysis/operations.js +6 -0
- package/dist/node/content-analysis/registry.js +1 -0
- package/dist/node/content-analysis/types.js +0 -0
- package/dist/node/content-generation/capabilities.js +1 -0
- package/dist/node/content-generation/content-generation.feature.js +1 -0
- package/dist/node/content-generation/contracts.js +4 -0
- package/dist/node/content-generation/index.js +1 -0
- package/dist/node/content-generation/media-status.js +1 -0
- package/dist/node/content-generation/ports.js +0 -0
- package/dist/node/content-generation/rights-operations.js +1 -0
- package/dist/node/content-generation/rights-withdrawal.js +1 -0
- package/dist/node/content-generation/rights.js +1 -0
- package/dist/node/content-generation/types.js +1 -0
- package/dist/node/context/agent-context-validation.js +4 -0
- package/dist/node/context/agent-context.js +1 -0
- package/dist/node/context/capabilities/contextSystem.capability.js +4 -0
- package/dist/node/context/capabilities/index.js +1 -0
- package/dist/node/context/commands/contextPackSnapshot.command.js +4 -0
- package/dist/node/context/commands/index.js +1 -0
- package/dist/node/context/constants.js +1 -0
- package/dist/node/context/context.feature.js +1 -0
- package/dist/node/context/contracts.js +1 -0
- package/dist/node/context/events/contextSnapshotCreated.event.js +4 -0
- package/dist/node/context/events/index.js +1 -0
- package/dist/node/context/forms/contextPackSearch.form.js +4 -0
- package/dist/node/context/forms/index.js +1 -0
- package/dist/node/context/index.js +1 -0
- package/dist/node/context/presentations/contextSnapshot.presentation.js +4 -0
- package/dist/node/context/presentations/index.js +1 -0
- package/dist/node/context/queries/contextPackDescribe.query.js +4 -0
- package/dist/node/context/queries/contextPackSearch.query.js +4 -0
- package/dist/node/context/queries/index.js +1 -0
- package/dist/node/context/views/contextSnapshots.dataView.js +4 -0
- package/dist/node/context/views/index.js +1 -0
- package/dist/node/contract-registry/index.js +1 -0
- package/dist/node/contract-registry/schemas.js +1 -0
- package/dist/node/contract-registry/types.js +0 -0
- package/dist/node/contracts-spec.feature.js +1 -0
- package/dist/node/control-plane/approval-kernel.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneApproval.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneAudit.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneChannelRuntime.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneCore.capability.js +1 -0
- package/dist/node/control-plane/capabilities/controlPlaneSkillRegistry.capability.js +1 -0
- package/dist/node/control-plane/capabilities/index.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionAbort.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionApprove.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionCancel.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionEvidenceExport.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionPause.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionReject.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionResume.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionRetry.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionShutdown.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneExecutionStart.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneIntentSubmit.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlanePlanCompile.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlanePlanVerify.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneSkillDisable.command.js +1 -0
- package/dist/node/control-plane/commands/controlPlaneSkillInstall.command.js +1 -0
- package/dist/node/control-plane/commands/index.js +1 -0
- package/dist/node/control-plane/connect-materialization.js +1 -0
- package/dist/node/control-plane/constants.js +1 -0
- package/dist/node/control-plane/contracts.js +1 -0
- package/dist/node/control-plane/control-plane.feature.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionCompleted.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionFailed.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionStepBlocked.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionStepCompleted.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneExecutionStepStarted.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneIntentReceived.event.js +1 -0
- package/dist/node/control-plane/events/controlPlanePlanCompiled.event.js +1 -0
- package/dist/node/control-plane/events/controlPlanePlanRejected.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneSkillInstalled.event.js +1 -0
- package/dist/node/control-plane/events/controlPlaneSkillRejected.event.js +1 -0
- package/dist/node/control-plane/events/index.js +1 -0
- package/dist/node/control-plane/hook-authority-digest.js +1 -0
- package/dist/node/control-plane/hook-authority-immutable.js +1 -0
- package/dist/node/control-plane/hook-authority-records.js +0 -0
- package/dist/node/control-plane/hook-authority-reference-adapter.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-binding.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-capability.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-clock.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-helpers.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-invoke.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-leases.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-lock.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-result.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-session.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-state.js +1 -0
- package/dist/node/control-plane/hook-authority-reference-validation.js +1 -0
- package/dist/node/control-plane/hook-authority-test-body.js +1 -0
- package/dist/node/control-plane/hook-authority-test-fixtures.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-events.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-objects.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-paths.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-primitives.js +1 -0
- package/dist/node/control-plane/hook-authority-validation-request.js +1 -0
- package/dist/node/control-plane/hook-authority-validation.js +1 -0
- package/dist/node/control-plane/hook-authority.js +1 -0
- package/dist/node/control-plane/index.js +1 -0
- package/dist/node/control-plane/policies/controlPlaneMessaging.policy.js +1 -0
- package/dist/node/control-plane/policies/index.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionGet.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionLane.models.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionLaneGet.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionLaneList.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneExecutionList.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlanePolicyExplain.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneSkillList.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneSkillVerify.query.js +1 -0
- package/dist/node/control-plane/queries/controlPlaneTraceGet.query.js +1 -0
- package/dist/node/control-plane/queries/index.js +1 -0
- package/dist/node/control-plane/repository-authority-bootstrap.js +1 -0
- package/dist/node/control-plane/skills/index.js +1 -0
- package/dist/node/control-plane/skills/schema.js +1 -0
- package/dist/node/control-plane/skills/signer.js +4 -0
- package/dist/node/control-plane/skills/types.js +0 -0
- package/dist/node/control-plane/skills/validator.js +1 -0
- package/dist/node/control-plane/skills/verifier.js +1 -0
- package/dist/node/creative-intelligence/constants.js +1 -0
- package/dist/node/creative-intelligence/events.js +3 -0
- package/dist/node/creative-intelligence/index.js +1 -0
- package/dist/node/creative-intelligence/operations.js +6 -0
- package/dist/node/creative-intelligence/registry.js +1 -0
- package/dist/node/creative-intelligence/types.js +0 -0
- package/dist/node/creator-operations/campaign.js +1 -0
- package/dist/node/creator-operations/common.js +1 -0
- package/dist/node/creator-operations/index.js +1 -0
- package/dist/node/creator-operations/operation-inputs.js +1 -0
- package/dist/node/creator-operations/operations.js +23 -0
- package/dist/node/creator-operations/ports.js +0 -0
- package/dist/node/creator-operations/submission.js +1 -0
- package/dist/node/creator-operations/training-course.js +1 -0
- package/dist/node/creator-operations/training-operations.js +1 -0
- package/dist/node/creator-operations/training-progress-operation.js +1 -0
- package/dist/node/creator-operations/training-quiz-operation.js +1 -0
- package/dist/node/creator-operations/training-quiz-read.js +1 -0
- package/dist/node/creator-operations/training-quiz-view.js +1 -0
- package/dist/node/creator-operations/training-quiz.js +1 -0
- package/dist/node/creator-operations/training.js +1 -0
- package/dist/node/creator-operations/wallet.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-events.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-operations.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-output-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-projection-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-query-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-evaluation.js +1 -0
- package/dist/node/customer-support/ai-outcome-event-delivery-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-event-delivery.js +0 -0
- package/dist/node/customer-support/ai-outcome-event-digest.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-events.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-operations.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-schema-support.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning-schemas.js +1 -0
- package/dist/node/customer-support/ai-outcome-learning.js +1 -0
- package/dist/node/customer-support/attachment-safety-operations.js +1 -0
- package/dist/node/customer-support/attachment-safety-schemas.js +1 -0
- package/dist/node/customer-support/attachment-safety.js +13 -0
- package/dist/node/customer-support/authos-session.js +10 -0
- package/dist/node/customer-support/billing-entitlement-events.js +1 -0
- package/dist/node/customer-support/billing-entitlement-input-schemas.js +1 -0
- package/dist/node/customer-support/billing-entitlement-operations.js +1 -0
- package/dist/node/customer-support/billing-entitlement-output-schemas.js +1 -0
- package/dist/node/customer-support/billing-entitlement-schema-primitives.js +1 -0
- package/dist/node/customer-support/billing-entitlements.js +1 -0
- package/dist/node/customer-support/capability-matrix-evidence.js +1 -0
- package/dist/node/customer-support/capability-matrix-registries.js +1 -0
- package/dist/node/customer-support/capability-matrix-validation-evidence.js +1 -0
- package/dist/node/customer-support/capability-matrix-validation-helpers.js +1 -0
- package/dist/node/customer-support/capability-matrix-validation.js +1 -0
- package/dist/node/customer-support/capability-matrix.js +3 -0
- package/dist/node/customer-support/case-assignments.js +19 -0
- package/dist/node/customer-support/case-cursor.js +8 -0
- package/dist/node/customer-support/case-lifecycle-event-schemas.js +1 -0
- package/dist/node/customer-support/case-lifecycle.js +8 -0
- package/dist/node/customer-support/case-presence.js +11 -0
- package/dist/node/customer-support/case-relations.js +14 -0
- package/dist/node/customer-support/company-action-events.js +1 -0
- package/dist/node/customer-support/company-action-input-schemas.js +1 -0
- package/dist/node/customer-support/company-action-operations.js +1 -0
- package/dist/node/customer-support/company-action-output-schemas.js +1 -0
- package/dist/node/customer-support/company-action-plans.js +1 -0
- package/dist/node/customer-support/company-action-schema-primitives.js +1 -0
- package/dist/node/customer-support/core.js +1 -0
- package/dist/node/customer-support/crypto-lifecycle.js +12 -0
- package/dist/node/customer-support/crypto-rotation-drill-events.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-input-schemas.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-operations.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-output-schemas.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill-schema-primitives.js +1 -0
- package/dist/node/customer-support/crypto-rotation-drill.js +1 -0
- package/dist/node/customer-support/crypto-rotation-operations.js +1 -0
- package/dist/node/customer-support/crypto-rotation-schemas.js +1 -0
- package/dist/node/customer-support/crypto-rotation.js +10 -0
- package/dist/node/customer-support/csat-input-digest.js +1 -0
- package/dist/node/customer-support/csat-invitation-job-schemas.js +1 -0
- package/dist/node/customer-support/csat-invitation-jobs.js +0 -0
- package/dist/node/customer-support/csat-operation-schemas.js +1 -0
- package/dist/node/customer-support/csat-operations.js +1 -0
- package/dist/node/customer-support/csat-schema-support.js +1 -0
- package/dist/node/customer-support/csat-survey-events.js +1 -0
- package/dist/node/customer-support/csat-survey-operations.js +1 -0
- package/dist/node/customer-support/csat-survey-schemas.js +1 -0
- package/dist/node/customer-support/csat-surveys.js +15 -0
- package/dist/node/customer-support/csat.js +12 -0
- package/dist/node/customer-support/customer-session-consent-operations.js +1 -0
- package/dist/node/customer-support/customer-session-consent-output-schemas.js +1 -0
- package/dist/node/customer-support/customer-session-consent-schemas.js +1 -0
- package/dist/node/customer-support/customer-session-consent.js +14 -0
- package/dist/node/customer-support/customer-session-schema-support.js +1 -0
- package/dist/node/customer-support/customer-support.feature.js +3 -0
- package/dist/node/customer-support/data-lifecycle-events.js +1 -0
- package/dist/node/customer-support/data-lifecycle-input-schemas.js +1 -0
- package/dist/node/customer-support/data-lifecycle-operations.js +1 -0
- package/dist/node/customer-support/data-lifecycle-output-schemas.js +1 -0
- package/dist/node/customer-support/data-lifecycle-ports.js +0 -0
- package/dist/node/customer-support/data-lifecycle-schema-primitives.js +1 -0
- package/dist/node/customer-support/data-lifecycle-schema-validation.js +1 -0
- package/dist/node/customer-support/data-lifecycle.js +5 -0
- package/dist/node/customer-support/errors.js +6 -0
- package/dist/node/customer-support/event-validation.js +1 -0
- package/dist/node/customer-support/events.js +1 -0
- package/dist/node/customer-support/export-artifact-access-schemas.js +1 -0
- package/dist/node/customer-support/export-artifact-access-validation.js +1 -0
- package/dist/node/customer-support/export-artifact-access.js +1 -0
- package/dist/node/customer-support/export-artifact-event-schemas.js +1 -0
- package/dist/node/customer-support/export-artifact-lifecycle-schemas.js +1 -0
- package/dist/node/customer-support/export-artifact-lifecycle.js +1 -0
- package/dist/node/customer-support/export-artifact-storage.js +0 -0
- package/dist/node/customer-support/export-events.js +1 -0
- package/dist/node/customer-support/export-input-schemas.js +1 -0
- package/dist/node/customer-support/export-operations.js +1 -0
- package/dist/node/customer-support/export-output-schemas.js +1 -0
- package/dist/node/customer-support/export-schemas.js +1 -0
- package/dist/node/customer-support/exports.js +1 -0
- package/dist/node/customer-support/identity-resolution-operations.js +1 -0
- package/dist/node/customer-support/identity-resolution-output-schemas.js +1 -0
- package/dist/node/customer-support/identity-resolution-schemas.js +1 -0
- package/dist/node/customer-support/identity-resolution.js +18 -0
- package/dist/node/customer-support/index.js +1 -0
- package/dist/node/customer-support/internal-note-operations.js +1 -0
- package/dist/node/customer-support/internal-note-schemas.js +1 -0
- package/dist/node/customer-support/internal-notes.js +27 -0
- package/dist/node/customer-support/job-runtime.js +13 -0
- package/dist/node/customer-support/knowledge-authority-citation-schema.js +1 -0
- package/dist/node/customer-support/knowledge-authority-digest.js +1 -0
- package/dist/node/customer-support/knowledge-authority-operations.js +1 -0
- package/dist/node/customer-support/knowledge-authority-schema-primitives.js +1 -0
- package/dist/node/customer-support/knowledge-authority-schemas.js +1 -0
- package/dist/node/customer-support/knowledge-authority.js +1 -0
- package/dist/node/customer-support/live-chat-binding-activity-digest.js +1 -0
- package/dist/node/customer-support/live-chat-continuity-events.js +1 -0
- package/dist/node/customer-support/live-chat-continuity-operations.js +1 -0
- package/dist/node/customer-support/live-chat-continuity-schemas.js +1 -0
- package/dist/node/customer-support/live-chat-continuity.js +9 -0
- package/dist/node/customer-support/membership-capabilities.js +1 -0
- package/dist/node/customer-support/membership-operation-schemas.js +1 -0
- package/dist/node/customer-support/membership-operations.js +1 -0
- package/dist/node/customer-support/memberships.js +24 -0
- package/dist/node/customer-support/metadata-operations.js +1 -0
- package/dist/node/customer-support/metadata-output-schemas.js +1 -0
- package/dist/node/customer-support/metadata-schema-validation.js +1 -0
- package/dist/node/customer-support/metadata-schemas.js +1 -0
- package/dist/node/customer-support/metadata.js +12 -0
- package/dist/node/customer-support/notification-operations.js +1 -0
- package/dist/node/customer-support/notification-output-schemas.js +1 -0
- package/dist/node/customer-support/notification-schemas.js +1 -0
- package/dist/node/customer-support/notifications.js +17 -0
- package/dist/node/customer-support/opa-handoff-operations.js +1 -0
- package/dist/node/customer-support/opa-handoff-schemas.js +1 -0
- package/dist/node/customer-support/opa-handoffs.js +6 -0
- package/dist/node/customer-support/operation-schemas.js +1 -0
- package/dist/node/customer-support/operations.js +9 -0
- package/dist/node/customer-support/platform-authority-binding-registry.js +1 -0
- package/dist/node/customer-support/platform-authority-bindings.js +1 -0
- package/dist/node/customer-support/platform-authority-doc.js +3 -0
- package/dist/node/customer-support/platform-authority.js +1 -0
- package/dist/node/customer-support/platform-ports.js +9 -0
- package/dist/node/customer-support/policies.js +0 -0
- package/dist/node/customer-support/ports.js +0 -0
- package/dist/node/customer-support/provider.js +0 -0
- package/dist/node/customer-support/report-export-events.js +1 -0
- package/dist/node/customer-support/report-export-operations.js +1 -0
- package/dist/node/customer-support/report-export-schemas.js +1 -0
- package/dist/node/customer-support/report-export.js +0 -0
- package/dist/node/customer-support/reporting-definition-schemas.js +1 -0
- package/dist/node/customer-support/reporting-definition-validation.js +1 -0
- package/dist/node/customer-support/reporting-doc.js +3 -0
- package/dist/node/customer-support/reporting-event-schemas.js +1 -0
- package/dist/node/customer-support/reporting-events.js +1 -0
- package/dist/node/customer-support/reporting-metric-compatibility.js +1 -0
- package/dist/node/customer-support/reporting-operations.js +1 -0
- package/dist/node/customer-support/reporting-port.js +0 -0
- package/dist/node/customer-support/reporting-query-schemas.js +1 -0
- package/dist/node/customer-support/reporting-query-validation.js +1 -0
- package/dist/node/customer-support/reporting-record-schemas.js +1 -0
- package/dist/node/customer-support/reporting-schema-primitives.js +1 -0
- package/dist/node/customer-support/reporting-schemas.js +1 -0
- package/dist/node/customer-support/reporting.js +1 -0
- package/dist/node/customer-support/routing-administration.js +12 -0
- package/dist/node/customer-support/routing-operation-schemas.js +1 -0
- package/dist/node/customer-support/routing-operations.js +1 -0
- package/dist/node/customer-support/search-view-operations.js +1 -0
- package/dist/node/customer-support/search-view-output-schemas.js +1 -0
- package/dist/node/customer-support/search-view-schemas.js +1 -0
- package/dist/node/customer-support/search-views.js +19 -0
- package/dist/node/customer-support/service-profile-operations.js +1 -0
- package/dist/node/customer-support/service-profile-output-schemas.js +1 -0
- package/dist/node/customer-support/service-profile-party-schema.js +1 -0
- package/dist/node/customer-support/service-profile-schemas.js +1 -0
- package/dist/node/customer-support/service-profile.js +16 -0
- package/dist/node/customer-support/signed-webhook-events.js +1 -0
- package/dist/node/customer-support/signed-webhook-input-schemas.js +1 -0
- package/dist/node/customer-support/signed-webhook-operations.js +1 -0
- package/dist/node/customer-support/signed-webhook-output-schemas.js +1 -0
- package/dist/node/customer-support/signed-webhook-ports.js +0 -0
- package/dist/node/customer-support/signed-webhook-schema-primitives.js +1 -0
- package/dist/node/customer-support/signed-webhook-schemas.js +1 -0
- package/dist/node/customer-support/signed-webhook-value-validation.js +1 -0
- package/dist/node/customer-support/signed-webhook-wire-schema.js +1 -0
- package/dist/node/customer-support/signed-webhook-wire.js +1 -0
- package/dist/node/customer-support/signed-webhooks.js +1 -0
- package/dist/node/customer-support/skills-routing-operations.js +1 -0
- package/dist/node/customer-support/skills-routing-output-schemas.js +1 -0
- package/dist/node/customer-support/skills-routing-schemas.js +1 -0
- package/dist/node/customer-support/skills-routing.js +16 -0
- package/dist/node/customer-support/sla-administration.js +15 -0
- package/dist/node/customer-support/sla-operation-schemas.js +1 -0
- package/dist/node/customer-support/sla-operations.js +1 -0
- package/dist/node/customer-support/sla-policy-operation-schemas.js +1 -0
- package/dist/node/customer-support/sla-schema-validation.js +1 -0
- package/dist/node/customer-support/slo-incident-alert-input-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-alert.js +0 -0
- package/dist/node/customer-support/slo-incident-assessment-input-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-assessment-output-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-doc.js +12 -0
- package/dist/node/customer-support/slo-incident-event-delivery.js +0 -0
- package/dist/node/customer-support/slo-incident-event-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-event-types.js +0 -0
- package/dist/node/customer-support/slo-incident-events.js +1 -0
- package/dist/node/customer-support/slo-incident-input-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-operation-output-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-operations.js +1 -0
- package/dist/node/customer-support/slo-incident-output-schemas.js +1 -0
- package/dist/node/customer-support/slo-incident-ports.js +0 -0
- package/dist/node/customer-support/slo-incident-profile.js +0 -0
- package/dist/node/customer-support/slo-incident-results.js +0 -0
- package/dist/node/customer-support/slo-incident-schema-support.js +1 -0
- package/dist/node/customer-support/slo-incident.js +1 -0
- package/dist/node/customer-support/slo-qualification-authorization-schemas.js +1 -0
- package/dist/node/customer-support/slo-qualification-authorization.js +0 -0
- package/dist/node/customer-support/slo-qualification-plan.js +1 -0
- package/dist/node/customer-support/workspace-administration.js +12 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-events.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-operations.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-schema-validation.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency-schemas.js +1 -0
- package/dist/node/customer-support/workspace-brand-locale-residency.js +9 -0
- package/dist/node/customer-support/workspace-migration-operations.js +1 -0
- package/dist/node/customer-support/workspace-migration-schemas.js +1 -0
- package/dist/node/customer-support/workspace-migration.js +8 -0
- package/dist/node/customer-support/workspace-onboarding-operations.js +1 -0
- package/dist/node/customer-support/workspace-onboarding-schemas.js +1 -0
- package/dist/node/customer-support/workspace-onboarding.js +14 -0
- package/dist/node/customer-support/workspace-operation-schemas.js +1 -0
- package/dist/node/customer-support/workspace-operations.js +1 -0
- package/dist/node/data-views/annotation.d.js +0 -0
- package/dist/node/data-views/annotation.js +28 -0
- package/dist/node/data-views/data-views.js +1 -0
- package/dist/node/data-views/edit-form-resolution.d.js +0 -0
- package/dist/node/data-views/edit-form-resolution.js +1 -0
- package/dist/node/data-views/filter-scope.d.js +0 -0
- package/dist/node/data-views/filter-scope.js +1 -0
- package/dist/node/data-views/graph-export.d.js +0 -0
- package/dist/node/data-views/graph-export.js +2 -0
- package/dist/node/data-views/graph-filter-codec.d.js +0 -0
- package/dist/node/data-views/graph-filter-codec.js +2 -0
- package/dist/node/data-views/graph-filter-spec.d.js +0 -0
- package/dist/node/data-views/graph-filter-spec.js +2 -0
- package/dist/node/data-views/graph-spec.d.js +0 -0
- package/dist/node/data-views/graph-spec.js +80 -0
- package/dist/node/data-views/graph-subscription.d.js +0 -0
- package/dist/node/data-views/graph-subscription.js +3 -0
- package/dist/node/data-views/i18n-constraint.d.js +1 -0
- package/dist/node/data-views/i18n-constraint.js +0 -0
- package/dist/node/data-views/index.d.js +1 -0
- package/dist/node/data-views/index.js +1 -0
- package/dist/node/data-views/layout-spec.d.js +0 -0
- package/dist/node/data-views/layout-spec.js +2 -0
- package/dist/node/data-views/query-generator.js +1 -0
- package/dist/node/data-views/registry.d.js +0 -0
- package/dist/node/data-views/registry.js +1 -0
- package/dist/node/data-views/report/contractVerificationTable.js +29 -0
- package/dist/node/data-views/runtime.js +1 -0
- package/dist/node/data-views/saved-view.d.js +0 -0
- package/dist/node/data-views/saved-view.js +19 -0
- package/dist/node/data-views/spec.d.js +0 -0
- package/dist/node/data-views/spec.js +23 -0
- package/dist/node/data-views/story-slide.d.js +0 -0
- package/dist/node/data-views/story-slide.js +2 -0
- package/dist/node/data-views/types.d.js +0 -0
- package/dist/node/data-views/types.js +0 -0
- package/dist/node/database/capabilities/databaseContext.capability.js +4 -0
- package/dist/node/database/capabilities/index.js +1 -0
- package/dist/node/database/commands/databaseMutationExecute.command.js +4 -0
- package/dist/node/database/commands/databaseMutationPlan.command.js +4 -0
- package/dist/node/database/commands/index.js +1 -0
- package/dist/node/database/constants.js +1 -0
- package/dist/node/database/contracts.js +1 -0
- package/dist/node/database/database.feature.js +1 -0
- package/dist/node/database/economic-evidence.js +1 -0
- package/dist/node/database/index.js +1 -0
- package/dist/node/database/queries/databaseDictionaryGet.query.js +4 -0
- package/dist/node/database/queries/databaseMigrationsList.query.js +4 -0
- package/dist/node/database/queries/databaseQueryReadonly.query.js +4 -0
- package/dist/node/database/queries/databaseRelationalQuery.query.js +9 -0
- package/dist/node/database/queries/databaseSchemaDescribe.query.js +4 -0
- package/dist/node/database/queries/index.js +1 -0
- package/dist/node/database/tables/capabilityEdges.table.js +1 -0
- package/dist/node/database/tables/capabilityNodes.table.js +1 -0
- package/dist/node/database/tables/databaseTables.js +1 -0
- package/dist/node/database/tables/index.js +1 -0
- package/dist/node/database/tables/organizationGrants.table.js +1 -0
- package/dist/node/database/tables/organizationTenantBindings.table.js +1 -0
- package/dist/node/database/tables/workspaces.table.js +1 -0
- package/dist/node/database/views/databaseSchemas.dataView.js +4 -0
- package/dist/node/database/views/index.js +1 -0
- package/dist/node/decisioning/decisioning.feature.d.js +0 -0
- package/dist/node/decisioning/decisioning.feature.js +5 -0
- package/dist/node/decisioning/evaluation-events.d.js +1 -0
- package/dist/node/decisioning/evaluation-events.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration-operations.d.js +0 -0
- package/dist/node/decisioning/evaluation-evidence-administration-operations.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-administration.d.js +0 -0
- package/dist/node/decisioning/evaluation-evidence-administration.js +0 -0
- package/dist/node/decisioning/evaluation-evidence-output-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-evidence-output-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-input-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-input-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-output-primitives.d.js +1 -0
- package/dist/node/decisioning/evaluation-output-primitives.js +1 -0
- package/dist/node/decisioning/evaluation-output-schemas.d.js +1 -0
- package/dist/node/decisioning/evaluation-output-schemas.js +1 -0
- package/dist/node/decisioning/evaluation-schema-validation.d.js +0 -0
- package/dist/node/decisioning/evaluation-schema-validation.js +1 -0
- package/dist/node/decisioning/evaluation-trace-output-schema.d.js +0 -0
- package/dist/node/decisioning/evaluation-trace-output-schema.js +1 -0
- package/dist/node/decisioning/evaluation.d.js +0 -0
- package/dist/node/decisioning/evaluation.js +0 -0
- package/dist/node/decisioning/index.d.js +1 -0
- package/dist/node/decisioning/index.js +1 -0
- package/dist/node/decisioning/lifecycle-events.d.js +0 -0
- package/dist/node/decisioning/lifecycle-events.js +1 -0
- package/dist/node/decisioning/lifecycle-input-schemas.d.js +1 -0
- package/dist/node/decisioning/lifecycle-input-schemas.js +1 -0
- package/dist/node/decisioning/lifecycle-operations.d.js +1 -0
- package/dist/node/decisioning/lifecycle-operations.js +7 -0
- package/dist/node/decisioning/lifecycle-output-schemas.d.js +1 -0
- package/dist/node/decisioning/lifecycle-output-schemas.js +1 -0
- package/dist/node/decisioning/lifecycle.d.js +0 -0
- package/dist/node/decisioning/lifecycle.js +1 -0
- package/dist/node/decisioning/operation-metadata.d.js +0 -0
- package/dist/node/decisioning/operation-metadata.js +1 -0
- package/dist/node/decisioning/operations.d.js +0 -0
- package/dist/node/decisioning/operations.js +1 -0
- package/dist/node/decisioning/predicate-evaluation.d.js +0 -0
- package/dist/node/decisioning/predicate-evaluation.js +1 -0
- package/dist/node/decisioning/predicate.d.js +0 -0
- package/dist/node/decisioning/predicate.js +1 -0
- package/dist/node/decisioning/types.d.js +1 -0
- package/dist/node/decisioning/types.js +0 -0
- package/dist/node/decisioning/validation-diagnostics.d.js +0 -0
- package/dist/node/decisioning/validation-diagnostics.js +1 -0
- package/dist/node/decisioning/validation-policy.d.js +0 -0
- package/dist/node/decisioning/validation-policy.js +1 -0
- package/dist/node/decisioning/validation-shape.d.js +0 -0
- package/dist/node/decisioning/validation-shape.js +1 -0
- package/dist/node/decisioning/validation.d.js +1 -0
- package/dist/node/decisioning/validation.js +1 -0
- package/dist/node/delivery/authority.js +1 -0
- package/dist/node/delivery/autonomy-context.js +1 -0
- package/dist/node/delivery/chain.js +1 -0
- package/dist/node/delivery/ci-budget.js +1 -0
- package/dist/node/delivery/contracts.js +1 -0
- package/dist/node/delivery/index.js +1 -0
- package/dist/node/delivery/manual-author-attestation.js +1 -0
- package/dist/node/delivery/primitives.d.js +0 -0
- package/dist/node/delivery/primitives.js +1 -0
- package/dist/node/delivery/project-profile.js +1 -0
- package/dist/node/delivery/scoped-autonomy.js +1 -0
- package/dist/node/design-packs/index.d.js +1 -0
- package/dist/node/design-packs/index.js +1 -0
- package/dist/node/design-packs/inheritance.d.js +0 -0
- package/dist/node/design-packs/inheritance.js +1 -0
- package/dist/node/design-packs/legacy-theme.d.js +0 -0
- package/dist/node/design-packs/legacy-theme.js +1 -0
- package/dist/node/design-packs/operations.d.js +1 -0
- package/dist/node/design-packs/operations.js +3 -0
- package/dist/node/design-packs/patch-validation.d.js +0 -0
- package/dist/node/design-packs/patch-validation.js +1 -0
- package/dist/node/design-packs/patch-value-validation.d.js +0 -0
- package/dist/node/design-packs/patch-value-validation.js +1 -0
- package/dist/node/design-packs/patches.d.js +1 -0
- package/dist/node/design-packs/patches.js +1 -0
- package/dist/node/design-packs/policy.d.js +0 -0
- package/dist/node/design-packs/policy.js +0 -0
- package/dist/node/design-packs/ports.d.js +0 -0
- package/dist/node/design-packs/ports.js +0 -0
- package/dist/node/design-packs/records.d.js +0 -0
- package/dist/node/design-packs/records.js +0 -0
- package/dist/node/design-packs/registry.d.js +0 -0
- package/dist/node/design-packs/registry.js +1 -0
- package/dist/node/design-packs/resolution-helpers.d.js +0 -0
- package/dist/node/design-packs/resolution-helpers.js +1 -0
- package/dist/node/design-packs/runtime.d.js +0 -0
- package/dist/node/design-packs/runtime.js +1 -0
- package/dist/node/design-packs/types.d.js +0 -0
- package/dist/node/design-packs/types.js +1 -0
- package/dist/node/design-packs/validation.d.js +0 -0
- package/dist/node/design-packs/validation.js +1 -0
- package/dist/node/docs/capabilities/documentationSystem.capability.d.js +0 -0
- package/dist/node/docs/capabilities/documentationSystem.capability.js +1 -0
- package/dist/node/docs/capabilities/index.d.js +1 -0
- package/dist/node/docs/capabilities/index.js +1 -0
- package/dist/node/docs/commands/docsGenerate.command.d.js +0 -0
- package/dist/node/docs/commands/docsGenerate.command.js +4 -0
- package/dist/node/docs/commands/docsPublish.command.d.js +0 -0
- package/dist/node/docs/commands/docsPublish.command.js +4 -0
- package/dist/node/docs/commands/index.d.js +1 -0
- package/dist/node/docs/commands/index.js +1 -0
- package/dist/node/docs/constants.d.js +0 -0
- package/dist/node/docs/constants.js +1 -0
- package/dist/node/docs/contracts.d.js +0 -0
- package/dist/node/docs/contracts.js +1 -0
- package/dist/node/docs/docblocks.manifest.generated.d.js +0 -0
- package/dist/node/docs/docblocks.manifest.generated.js +3215 -0
- package/dist/node/docs/docs.feature.d.js +0 -0
- package/dist/node/docs/docs.feature.js +365 -0
- package/dist/node/docs/events/docsGenerated.event.d.js +0 -0
- package/dist/node/docs/events/docsGenerated.event.js +1 -0
- package/dist/node/docs/events/docsPublished.event.d.js +0 -0
- package/dist/node/docs/events/docsPublished.event.js +1 -0
- package/dist/node/docs/events/index.d.js +1 -0
- package/dist/node/docs/events/index.js +1 -0
- package/dist/node/docs/forms/docsSearch.form.d.js +0 -0
- package/dist/node/docs/forms/docsSearch.form.js +1 -0
- package/dist/node/docs/forms/index.d.js +1 -0
- package/dist/node/docs/forms/index.js +1 -0
- package/dist/node/docs/index.d.js +1 -0
- package/dist/node/docs/index.js +1 -0
- package/dist/node/docs/manifest-builder.js +1 -0
- package/dist/node/docs/manifest.d.js +0 -0
- package/dist/node/docs/manifest.js +1 -0
- package/dist/node/docs/presentations/docsLayout.presentation.d.js +0 -0
- package/dist/node/docs/presentations/docsLayout.presentation.js +1 -0
- package/dist/node/docs/presentations/docsReferencePage.presentation.d.js +0 -0
- package/dist/node/docs/presentations/docsReferencePage.presentation.js +1 -0
- package/dist/node/docs/presentations/index.d.js +1 -0
- package/dist/node/docs/presentations/index.js +1 -0
- package/dist/node/docs/presentations.d.js +0 -0
- package/dist/node/docs/presentations.js +1 -0
- package/dist/node/docs/queries/contractReference.query.d.js +0 -0
- package/dist/node/docs/queries/contractReference.query.js +4 -0
- package/dist/node/docs/queries/docsIndex.query.d.js +0 -0
- package/dist/node/docs/queries/docsIndex.query.js +4 -0
- package/dist/node/docs/queries/index.d.js +1 -0
- package/dist/node/docs/queries/index.js +1 -0
- package/dist/node/docs/registry.d.js +0 -0
- package/dist/node/docs/registry.js +1 -0
- package/dist/node/docs/types.d.js +0 -0
- package/dist/node/docs/types.js +0 -0
- package/dist/node/docs/views/contractReference.dataView.d.js +0 -0
- package/dist/node/docs/views/contractReference.dataView.js +1 -0
- package/dist/node/docs/views/docsIndex.dataView.d.js +0 -0
- package/dist/node/docs/views/docsIndex.dataView.js +1 -0
- package/dist/node/docs/views/exampleCatalog.dataView.d.js +0 -0
- package/dist/node/docs/views/exampleCatalog.dataView.js +4 -0
- package/dist/node/docs/views/index.d.js +1 -0
- package/dist/node/docs/views/index.js +1 -0
- package/dist/node/editions/companyos-scenario.js +1 -0
- package/dist/node/editions/connect-gates.js +1 -0
- package/dist/node/editions/delivery-audit.js +1 -0
- package/dist/node/editions/docs.js +45 -0
- package/dist/node/editions/editor/fixtures.js +1 -0
- package/dist/node/editions/editor/index.js +1 -0
- package/dist/node/editions/editor/resolver.js +1 -0
- package/dist/node/editions/editor/schema.js +1 -0
- package/dist/node/editions/editor/types.js +0 -0
- package/dist/node/editions/enterprise-guardrails.js +1 -0
- package/dist/node/editions/evidence-boundary.js +1 -0
- package/dist/node/editions/experiments.js +1 -0
- package/dist/node/editions/fixtures.js +1 -0
- package/dist/node/editions/full-loop-gate.js +1 -0
- package/dist/node/editions/harness-evidence.js +1 -0
- package/dist/node/editions/improvement-types.js +0 -0
- package/dist/node/editions/improvement.js +1 -0
- package/dist/node/editions/index.js +1 -0
- package/dist/node/editions/intelligence-coach.js +1 -0
- package/dist/node/editions/knowledge-provenance.js +1 -0
- package/dist/node/editions/ontology-boundary.js +1 -0
- package/dist/node/editions/operation-specs.js +1 -0
- package/dist/node/editions/rollback.js +1 -0
- package/dist/node/editions/runtime-wiring.js +1 -0
- package/dist/node/editions/schema.js +1 -0
- package/dist/node/editions/storage-file.js +1 -0
- package/dist/node/editions/storage-hybrid.js +1 -0
- package/dist/node/editions/storage-parity.js +1 -0
- package/dist/node/editions/storage.js +1 -0
- package/dist/node/editions/types.js +0 -0
- package/dist/node/editions/validation.js +1 -0
- package/dist/node/entities/compatibility.js +20 -0
- package/dist/node/entities/defineContractEdge.d.js +0 -0
- package/dist/node/entities/defineContractEdge.js +41 -0
- package/dist/node/entities/defineContractEntity.d.js +0 -0
- package/dist/node/entities/defineContractEntity.js +80 -0
- package/dist/node/entities/index.js +1 -0
- package/dist/node/entities/registry.d.js +0 -0
- package/dist/node/entities/registry.js +1 -0
- package/dist/node/entities/types.d.js +0 -0
- package/dist/node/entities/types.js +1 -0
- package/dist/node/events.d.js +0 -0
- package/dist/node/events.js +1 -0
- package/dist/node/examples/define.js +1 -0
- package/dist/node/examples/index.js +141 -0
- package/dist/node/examples/registry.js +1 -0
- package/dist/node/examples/schema.js +1 -0
- package/dist/node/examples/types.js +1 -0
- package/dist/node/examples/validation.js +1 -0
- package/dist/node/experience-coverage/index.js +1 -0
- package/dist/node/experience-coverage/scoring.js +1 -0
- package/dist/node/experience-coverage/types.js +1 -0
- package/dist/node/experience-coverage/validation.js +1 -0
- package/dist/node/experiments/evaluator.js +1 -0
- package/dist/node/experiments/spec-resolver.d.js +0 -0
- package/dist/node/experiments/spec-resolver.js +0 -0
- package/dist/node/experiments/spec.d.js +0 -0
- package/dist/node/experiments/spec.js +128 -0
- package/dist/node/feature-hubs/federation.js +1 -0
- package/dist/node/feature-hubs/index.js +1 -0
- package/dist/node/feature-hubs/policy.js +0 -0
- package/dist/node/feature-hubs/ports.js +0 -0
- package/dist/node/feature-hubs/registry.js +0 -0
- package/dist/node/feature-hubs/social-intent-ports.js +0 -0
- package/dist/node/feature-hubs/social-media.js +0 -0
- package/dist/node/feature-hubs/social-provider-v2.js +14 -0
- package/dist/node/feature-hubs/social-scheduling-operations.js +17 -0
- package/dist/node/feature-hubs/social-scheduling.js +1 -0
- package/dist/node/feature-hubs/types.js +1 -0
- package/dist/node/features/index.d.js +1 -0
- package/dist/node/features/index.js +1 -0
- package/dist/node/features/install.d.js +0 -0
- package/dist/node/features/install.js +1 -0
- package/dist/node/features/registry.d.js +0 -0
- package/dist/node/features/registry.js +1 -0
- package/dist/node/features/types.d.js +0 -0
- package/dist/node/features/types.js +62 -0
- package/dist/node/features/validate-bundle-requires.d.js +1 -0
- package/dist/node/features/validate-bundle-requires.js +1 -0
- package/dist/node/features/validation.d.js +0 -0
- package/dist/node/features/validation.js +1 -0
- package/dist/node/forms/entity-bound-forms.d.js +0 -0
- package/dist/node/forms/entity-bound-forms.js +30 -0
- package/dist/node/forms/entity-bound.js +1 -0
- package/dist/node/forms/forms.d.js +1 -0
- package/dist/node/forms/forms.js +1 -0
- package/dist/node/forms/index.d.js +1 -0
- package/dist/node/forms/index.js +1 -0
- package/dist/node/forms/marketing.forms.d.js +0 -0
- package/dist/node/forms/marketing.forms.js +1 -0
- package/dist/node/forms/platform-ai-validation.d.js +0 -0
- package/dist/node/forms/platform-ai-validation.js +1 -0
- package/dist/node/forms/platform-capability.d.js +0 -0
- package/dist/node/forms/platform-capability.js +1 -0
- package/dist/node/forms/platform-compiler.d.js +0 -0
- package/dist/node/forms/platform-compiler.js +1 -0
- package/dist/node/forms/platform-decision-graph.d.js +0 -0
- package/dist/node/forms/platform-decision-graph.js +1 -0
- package/dist/node/forms/platform-docs.d.js +0 -0
- package/dist/node/forms/platform-docs.js +1 -0
- package/dist/node/forms/platform-document-doc.d.js +0 -0
- package/dist/node/forms/platform-document-doc.js +1 -0
- package/dist/node/forms/platform-document.d.js +0 -0
- package/dist/node/forms/platform-document.js +1 -0
- package/dist/node/forms/platform-ecosystem-operations.d.js +0 -0
- package/dist/node/forms/platform-ecosystem-operations.js +1 -0
- package/dist/node/forms/platform-features.d.js +0 -0
- package/dist/node/forms/platform-features.js +1 -0
- package/dist/node/forms/platform-form-spec-serialization.d.js +0 -0
- package/dist/node/forms/platform-form-spec-serialization.js +1 -0
- package/dist/node/forms/platform-form-spec-validation.d.js +0 -0
- package/dist/node/forms/platform-form-spec-validation.js +1 -0
- package/dist/node/forms/platform-locale-validation.d.js +0 -0
- package/dist/node/forms/platform-locale-validation.js +1 -0
- package/dist/node/forms/platform-operation-catalog.d.js +0 -0
- package/dist/node/forms/platform-operation-catalog.js +1 -0
- package/dist/node/forms/platform-operation-errors.d.js +0 -0
- package/dist/node/forms/platform-operation-errors.js +1 -0
- package/dist/node/forms/platform-operations.d.js +0 -0
- package/dist/node/forms/platform-operations.js +1 -0
- package/dist/node/forms/platform-product.d.js +0 -0
- package/dist/node/forms/platform-product.js +1 -0
- package/dist/node/forms/platform-registry.d.js +0 -0
- package/dist/node/forms/platform-registry.js +1 -0
- package/dist/node/forms/platform-response-extension.d.js +0 -0
- package/dist/node/forms/platform-response-extension.js +0 -0
- package/dist/node/forms/platform-validation.d.js +0 -0
- package/dist/node/forms/platform-validation.js +1 -0
- package/dist/node/forms/richFieldsShowcase.form.d.js +0 -0
- package/dist/node/forms/richFieldsShowcase.form.js +1 -0
- package/dist/node/graph-artifacts/codebase.js +1 -0
- package/dist/node/graph-artifacts/common.js +1 -0
- package/dist/node/graph-artifacts/contracts.js +1 -0
- package/dist/node/graph-artifacts/drift.js +1 -0
- package/dist/node/graph-artifacts/generation.js +1 -0
- package/dist/node/graph-artifacts/index.js +1 -0
- package/dist/node/graph-artifacts/links.js +1 -0
- package/dist/node/harness/capabilities/harnessEvaluation.capability.js +1 -0
- package/dist/node/harness/capabilities/harnessEvidence.capability.js +1 -0
- package/dist/node/harness/capabilities/harnessExecution.capability.js +1 -0
- package/dist/node/harness/capabilities/harnessTargeting.capability.js +1 -0
- package/dist/node/harness/capabilities/index.js +1 -0
- package/dist/node/harness/commands/harnessEvaluationRun.command.js +1 -0
- package/dist/node/harness/commands/harnessRunCancel.command.js +1 -0
- package/dist/node/harness/commands/harnessRunStart.command.js +1 -0
- package/dist/node/harness/commands/index.js +1 -0
- package/dist/node/harness/constants.js +1 -0
- package/dist/node/harness/contracts.js +1 -0
- package/dist/node/harness/events/harnessEvaluationCompleted.event.js +1 -0
- package/dist/node/harness/events/harnessEvidenceCaptured.event.js +1 -0
- package/dist/node/harness/events/harnessRunCompleted.event.js +1 -0
- package/dist/node/harness/events/harnessRunFailed.event.js +1 -0
- package/dist/node/harness/events/harnessRunStarted.event.js +1 -0
- package/dist/node/harness/events/harnessStepBlocked.event.js +1 -0
- package/dist/node/harness/events/harnessStepCompleted.event.js +1 -0
- package/dist/node/harness/events/harnessStepStarted.event.js +1 -0
- package/dist/node/harness/events/index.js +1 -0
- package/dist/node/harness/harness.feature.js +1 -0
- package/dist/node/harness/index.js +1 -0
- package/dist/node/harness/models.js +1 -0
- package/dist/node/harness/presentations/harnessRunAudit.presentation.js +1 -0
- package/dist/node/harness/presentations/index.js +1 -0
- package/dist/node/harness/queries/harnessEvaluationGet.query.js +1 -0
- package/dist/node/harness/queries/harnessEvidenceGet.query.js +1 -0
- package/dist/node/harness/queries/harnessEvidenceList.query.js +1 -0
- package/dist/node/harness/queries/harnessRunGet.query.js +1 -0
- package/dist/node/harness/queries/harnessTargetResolve.query.js +1 -0
- package/dist/node/harness/queries/index.js +1 -0
- package/dist/node/harness/types.js +1 -0
- package/dist/node/harness/views/harnessEvaluations.dataView.js +1 -0
- package/dist/node/harness/views/harnessEvidence.dataView.js +1 -0
- package/dist/node/harness/views/harnessRuns.dataView.js +1 -0
- package/dist/node/harness/views/index.js +1 -0
- package/dist/node/index.js +1 -0
- package/dist/node/install.d.js +1 -0
- package/dist/node/install.js +1 -0
- package/dist/node/job-application/constants.js +1 -0
- package/dist/node/job-application/events.js +1 -0
- package/dist/node/job-application/index.js +1 -0
- package/dist/node/job-application/operation-definitions.js +1 -0
- package/dist/node/job-application/operations.js +1 -0
- package/dist/node/job-application/registry.js +1 -0
- package/dist/node/job-application/transport.js +1 -0
- package/dist/node/job-application/types.js +1 -0
- package/dist/node/job-application/validation.js +1 -0
- package/dist/node/jobs/define-job.js +1 -0
- package/dist/node/jobs/durable-queue-v2/admission-validation.js +1 -0
- package/dist/node/jobs/durable-queue-v2/capability.js +1 -0
- package/dist/node/jobs/durable-queue-v2/digests.js +1 -0
- package/dist/node/jobs/durable-queue-v2/envelope.js +1 -0
- package/dist/node/jobs/durable-queue-v2/index.js +1 -0
- package/dist/node/jobs/durable-queue-v2/lifecycle.js +1 -0
- package/dist/node/jobs/durable-queue-v2/primitives.js +1 -0
- package/dist/node/jobs/durable-queue-v2/test-fixtures.js +1 -0
- package/dist/node/jobs/durable-queue-v2/validation.js +1 -0
- package/dist/node/jobs/durable-queue-v2/workload.js +1 -0
- package/dist/node/jobs/index.js +1 -0
- package/dist/node/jobs/queue.d.js +0 -0
- package/dist/node/jobs/queue.js +1 -0
- package/dist/node/jobs/spec.d.js +0 -0
- package/dist/node/jobs/spec.js +1 -0
- package/dist/node/jsonschema.js +1 -0
- package/dist/node/knowledge/binding.d.js +0 -0
- package/dist/node/knowledge/binding.js +0 -0
- package/dist/node/knowledge/index.js +1 -0
- package/dist/node/knowledge/knowledge.capability.js +1 -0
- package/dist/node/knowledge/knowledge.feature.js +1 -0
- package/dist/node/knowledge/operation-models.js +1 -0
- package/dist/node/knowledge/operations.js +1 -0
- package/dist/node/knowledge/registry.d.js +0 -0
- package/dist/node/knowledge/registry.js +1 -0
- package/dist/node/knowledge/source.d.js +0 -0
- package/dist/node/knowledge/source.js +1 -0
- package/dist/node/knowledge/spaces/email-threads.js +1 -0
- package/dist/node/knowledge/spaces/financial-docs.js +1 -0
- package/dist/node/knowledge/spaces/financial-overview.js +1 -0
- package/dist/node/knowledge/spaces/index.js +1 -0
- package/dist/node/knowledge/spaces/product-canon.js +1 -0
- package/dist/node/knowledge/spaces/support-faq.js +1 -0
- package/dist/node/knowledge/spaces/uploaded-docs.js +1 -0
- package/dist/node/knowledge/spec.d.js +1 -0
- package/dist/node/knowledge/spec.js +172 -0
- package/dist/node/llm/exporters.js +9 -0
- package/dist/node/llm/index.js +1 -0
- package/dist/node/llm/prompts.js +237 -0
- package/dist/node/llm/types.js +0 -0
- package/dist/node/markdown.js +3 -0
- package/dist/node/marketing/fixtures.js +1 -0
- package/dist/node/marketing/forms.js +1 -0
- package/dist/node/marketing/index.js +1 -0
- package/dist/node/marketing/types.js +0 -0
- package/dist/node/marketing/validation.js +3 -0
- package/dist/node/migrations.js +69 -0
- package/dist/node/model-registry.js +1 -0
- package/dist/node/navigation/index.js +1 -0
- package/dist/node/navigation/nav-graph.js +69 -0
- package/dist/node/navigation/nav-surface.js +70 -0
- package/dist/node/navigation/registry.js +1 -0
- package/dist/node/notifications/contracts.js +1 -0
- package/dist/node/notifications/index.js +1 -0
- package/dist/node/notifications/notifications.capability.js +1 -0
- package/dist/node/notifications/notifications.feature.js +1 -0
- package/dist/node/observability/database-signals.js +1 -0
- package/dist/node/observability/evidence-record.js +1 -0
- package/dist/node/observability/index.js +1 -0
- package/dist/node/observability/signal-spec.js +1 -0
- package/dist/node/onboarding-base.js +1 -0
- package/dist/node/ontology/autonomous-work-order.fixture.js +1 -0
- package/dist/node/ontology/companyos.js +1 -0
- package/dist/node/ontology/defineOntologyEdge.js +1 -0
- package/dist/node/ontology/defineOntologyNode.js +1 -0
- package/dist/node/ontology/evidence.js +1 -0
- package/dist/node/ontology/graph.js +1 -0
- package/dist/node/ontology/index.js +1 -0
- package/dist/node/ontology/kinds.js +1 -0
- package/dist/node/ontology/ref.js +1 -0
- package/dist/node/ontology/registry.js +1 -0
- package/dist/node/ontology/safety.js +1 -0
- package/dist/node/ontology/types.js +0 -0
- package/dist/node/openapi.js +38 -0
- package/dist/node/operations/agent/archive.command.d.js +0 -0
- package/dist/node/operations/agent/archive.command.js +1 -0
- package/dist/node/operations/agent/assign-tool.command.d.js +0 -0
- package/dist/node/operations/agent/assign-tool.command.js +1 -0
- package/dist/node/operations/agent/clone.command.d.js +0 -0
- package/dist/node/operations/agent/clone.command.js +1 -0
- package/dist/node/operations/agent/create.command.d.js +0 -0
- package/dist/node/operations/agent/create.command.js +1 -0
- package/dist/node/operations/agent/fleet-health.query.d.js +0 -0
- package/dist/node/operations/agent/fleet-health.query.js +1 -0
- package/dist/node/operations/agent/get.query.d.js +0 -0
- package/dist/node/operations/agent/get.query.js +1 -0
- package/dist/node/operations/agent/import-memory.command.js +1 -0
- package/dist/node/operations/agent/list.query.d.js +0 -0
- package/dist/node/operations/agent/list.query.js +1 -0
- package/dist/node/operations/agent/pause.command.d.js +0 -0
- package/dist/node/operations/agent/pause.command.js +1 -0
- package/dist/node/operations/agent/set-autonomy.command.d.js +0 -0
- package/dist/node/operations/agent/set-autonomy.command.js +1 -0
- package/dist/node/operations/agent/set-risk-tier.command.d.js +0 -0
- package/dist/node/operations/agent/set-risk-tier.command.js +1 -0
- package/dist/node/operations/agent/shared-schemas.d.js +0 -0
- package/dist/node/operations/agent/shared-schemas.js +1 -0
- package/dist/node/operations/agent/start.command.d.js +0 -0
- package/dist/node/operations/agent/start.command.js +1 -0
- package/dist/node/operations/agent/stop.command.d.js +0 -0
- package/dist/node/operations/agent/stop.command.js +1 -0
- package/dist/node/operations/agent/update.command.d.js +0 -0
- package/dist/node/operations/agent/update.command.js +1 -0
- package/dist/node/operations/approval.d.js +0 -0
- package/dist/node/operations/approval.js +1 -0
- package/dist/node/operations/audit/event.export.command.d.js +0 -0
- package/dist/node/operations/audit/event.export.command.js +1 -0
- package/dist/node/operations/audit/event.get.query.d.js +0 -0
- package/dist/node/operations/audit/event.get.query.js +1 -0
- package/dist/node/operations/audit/event.list.query.d.js +0 -0
- package/dist/node/operations/audit/event.list.query.js +1 -0
- package/dist/node/operations/audit/evidence.attach.command.d.js +0 -0
- package/dist/node/operations/audit/evidence.attach.command.js +1 -0
- package/dist/node/operations/audit/pipeline.health.query.d.js +0 -0
- package/dist/node/operations/audit/pipeline.health.query.js +1 -0
- package/dist/node/operations/audit/shared-schemas.d.js +0 -0
- package/dist/node/operations/audit/shared-schemas.js +1 -0
- package/dist/node/operations/ceremony-authority.d.js +0 -0
- package/dist/node/operations/ceremony-authority.js +1 -0
- package/dist/node/operations/coach/agent-suggest-tool.command.d.js +0 -0
- package/dist/node/operations/coach/agent-suggest-tool.command.js +1 -0
- package/dist/node/operations/coach/governance-suggest-constraint.command.d.js +0 -0
- package/dist/node/operations/coach/governance-suggest-constraint.command.js +1 -0
- package/dist/node/operations/coach/review-summarize.command.d.js +0 -0
- package/dist/node/operations/coach/review-summarize.command.js +1 -0
- package/dist/node/operations/coach/shared-schemas.d.js +0 -0
- package/dist/node/operations/coach/shared-schemas.js +1 -0
- package/dist/node/operations/coach/workflow-suggest-step.command.d.js +0 -0
- package/dist/node/operations/coach/workflow-suggest-step.command.js +1 -0
- package/dist/node/operations/economic-evidence.d.js +0 -0
- package/dist/node/operations/economic-evidence.js +1 -0
- package/dist/node/operations/fleet/health-snapshot.query.d.js +0 -0
- package/dist/node/operations/fleet/health-snapshot.query.js +1 -0
- package/dist/node/operations/fleet/metrics-summary.query.d.js +0 -0
- package/dist/node/operations/fleet/metrics-summary.query.js +1 -0
- package/dist/node/operations/fleet/roi-snapshot.query.d.js +0 -0
- package/dist/node/operations/fleet/roi-snapshot.query.js +1 -0
- package/dist/node/operations/fleet/shared-schemas.d.js +0 -0
- package/dist/node/operations/fleet/shared-schemas.js +1 -0
- package/dist/node/operations/governance/constraint.add.command.d.js +1 -0
- package/dist/node/operations/governance/constraint.add.command.js +1 -0
- package/dist/node/operations/governance/constraint.remove.command.d.js +0 -0
- package/dist/node/operations/governance/constraint.remove.command.js +1 -0
- package/dist/node/operations/governance/notification.dispatch.command.d.js +0 -0
- package/dist/node/operations/governance/notification.dispatch.command.js +1 -0
- package/dist/node/operations/governance/policy.get.query.d.js +0 -0
- package/dist/node/operations/governance/policy.get.query.js +1 -0
- package/dist/node/operations/governance/policy.health.query.d.js +0 -0
- package/dist/node/operations/governance/policy.health.query.js +1 -0
- package/dist/node/operations/governance/policy.list.query.d.js +1 -0
- package/dist/node/operations/governance/policy.list.query.js +1 -0
- package/dist/node/operations/governance/policy.simulate.query.d.js +0 -0
- package/dist/node/operations/governance/policy.simulate.query.js +1 -0
- package/dist/node/operations/governance/policy.update.command.d.js +1 -0
- package/dist/node/operations/governance/policy.update.command.js +1 -0
- package/dist/node/operations/governance/shared-schemas.d.js +0 -0
- package/dist/node/operations/governance/shared-schemas.js +1 -0
- package/dist/node/operations/index.d.js +1 -0
- package/dist/node/operations/index.js +1 -0
- package/dist/node/operations/integrations/audit.list_for_integration.command.d.js +1 -0
- package/dist/node/operations/integrations/audit.list_for_integration.command.js +1 -0
- package/dist/node/operations/integrations/config.get.command.d.js +0 -0
- package/dist/node/operations/integrations/config.get.command.js +1 -0
- package/dist/node/operations/integrations/config.update.command.d.js +0 -0
- package/dist/node/operations/integrations/config.update.command.js +1 -0
- package/dist/node/operations/integrations/connections.list.command.d.js +1 -0
- package/dist/node/operations/integrations/connections.list.command.js +1 -0
- package/dist/node/operations/integrations/credentials.list.command.d.js +1 -0
- package/dist/node/operations/integrations/credentials.list.command.js +1 -0
- package/dist/node/operations/integrations/credentials.request_rotation.command.d.js +0 -0
- package/dist/node/operations/integrations/credentials.request_rotation.command.js +1 -0
- package/dist/node/operations/integrations/credentials.revoke.command.d.js +0 -0
- package/dist/node/operations/integrations/credentials.revoke.command.js +1 -0
- package/dist/node/operations/integrations/credentials.rotate.command.d.js +0 -0
- package/dist/node/operations/integrations/credentials.rotate.command.js +1 -0
- package/dist/node/operations/integrations/index.js +1 -0
- package/dist/node/operations/integrations/integrations.connect.command.d.js +0 -0
- package/dist/node/operations/integrations/integrations.connect.command.js +1 -0
- package/dist/node/operations/integrations/integrations.disconnect.command.d.js +0 -0
- package/dist/node/operations/integrations/integrations.disconnect.command.js +1 -0
- package/dist/node/operations/integrations/integrations.get.command.d.js +0 -0
- package/dist/node/operations/integrations/integrations.get.command.js +1 -0
- package/dist/node/operations/integrations/integrations.list.command.d.js +1 -0
- package/dist/node/operations/integrations/integrations.list.command.js +1 -0
- package/dist/node/operations/integrations/registry.d.js +0 -0
- package/dist/node/operations/integrations/registry.js +1 -0
- package/dist/node/operations/integrations/secrets.link.command.d.js +0 -0
- package/dist/node/operations/integrations/secrets.link.command.js +1 -0
- package/dist/node/operations/integrations/secrets.list.command.d.js +1 -0
- package/dist/node/operations/integrations/secrets.list.command.js +1 -0
- package/dist/node/operations/integrations/secrets.reveal_once_audit_only.command.d.js +0 -0
- package/dist/node/operations/integrations/secrets.reveal_once_audit_only.command.js +1 -0
- package/dist/node/operations/integrations/secrets.unlink.command.d.js +0 -0
- package/dist/node/operations/integrations/secrets.unlink.command.js +1 -0
- package/dist/node/operations/integrations/shared-schemas.d.js +0 -0
- package/dist/node/operations/integrations/shared-schemas.js +1 -0
- package/dist/node/operations/integrations/syncs.list.command.d.js +1 -0
- package/dist/node/operations/integrations/syncs.list.command.js +1 -0
- package/dist/node/operations/integrations/syncs.pause.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.pause.command.js +1 -0
- package/dist/node/operations/integrations/syncs.resume.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.resume.command.js +1 -0
- package/dist/node/operations/integrations/syncs.run_now.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.run_now.command.js +1 -0
- package/dist/node/operations/integrations/syncs.update_schedule.command.d.js +0 -0
- package/dist/node/operations/integrations/syncs.update_schedule.command.js +1 -0
- package/dist/node/operations/marketing.d.js +1 -0
- package/dist/node/operations/marketing.handlers.d.js +0 -0
- package/dist/node/operations/marketing.handlers.js +1 -0
- package/dist/node/operations/marketing.js +14 -0
- package/dist/node/operations/operation.d.js +0 -0
- package/dist/node/operations/operation.js +1 -0
- package/dist/node/operations/reference-detail.js +1 -0
- package/dist/node/operations/reference-resolve.js +3 -0
- package/dist/node/operations/registry.agent.d.js +0 -0
- package/dist/node/operations/registry.agent.js +1 -0
- package/dist/node/operations/registry.audit.d.js +0 -0
- package/dist/node/operations/registry.audit.js +1 -0
- package/dist/node/operations/registry.coach.d.js +0 -0
- package/dist/node/operations/registry.coach.js +1 -0
- package/dist/node/operations/registry.d.js +1 -0
- package/dist/node/operations/registry.domains.d.js +0 -0
- package/dist/node/operations/registry.domains.js +1 -0
- package/dist/node/operations/registry.fleet.d.js +0 -0
- package/dist/node/operations/registry.fleet.js +1 -0
- package/dist/node/operations/registry.governance.d.js +0 -0
- package/dist/node/operations/registry.governance.js +1 -0
- package/dist/node/operations/registry.js +1 -0
- package/dist/node/operations/registry.review.d.js +0 -0
- package/dist/node/operations/registry.review.js +1 -0
- package/dist/node/operations/registry.workflow.d.js +0 -0
- package/dist/node/operations/registry.workflow.js +1 -0
- package/dist/node/operations/report/getContractVerificationStatus.js +1 -0
- package/dist/node/operations/report/index.js +1 -0
- package/dist/node/operations/review/commands/index.js +1 -0
- package/dist/node/operations/review/commands/reviewApprove.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewApprove.command.js +1 -0
- package/dist/node/operations/review/commands/reviewAssign.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewAssign.command.js +12 -0
- package/dist/node/operations/review/commands/reviewComment.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewComment.command.js +1 -0
- package/dist/node/operations/review/commands/reviewEscalate.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewEscalate.command.js +1 -0
- package/dist/node/operations/review/commands/reviewReject.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewReject.command.js +1 -0
- package/dist/node/operations/review/commands/reviewRequestChanges.command.d.js +0 -0
- package/dist/node/operations/review/commands/reviewRequestChanges.command.js +1 -0
- package/dist/node/operations/review/constants.d.js +0 -0
- package/dist/node/operations/review/constants.js +1 -0
- package/dist/node/operations/review/index.js +1 -0
- package/dist/node/operations/review/queries/index.js +1 -0
- package/dist/node/operations/review/queries/reviewGet.query.d.js +0 -0
- package/dist/node/operations/review/queries/reviewGet.query.js +9 -0
- package/dist/node/operations/review/queries/reviewList.query.d.js +0 -0
- package/dist/node/operations/review/queries/reviewList.query.js +1 -0
- package/dist/node/operations/review/queries/reviewQueueHealth.query.d.js +0 -0
- package/dist/node/operations/review/queries/reviewQueueHealth.query.js +1 -0
- package/dist/node/operations/review/shared-schemas.d.js +0 -0
- package/dist/node/operations/review/shared-schemas.js +1 -0
- package/dist/node/operations/workflow/commands/workflowActivate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowActivate.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowCreate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowCreate.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowDeactivate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowDeactivate.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunCancel.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunCancel.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunDispatch.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunDispatch.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunPause.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunPause.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunResume.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunResume.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowRunRetry.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowRunRetry.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowStepAdvance.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowStepAdvance.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowStepSkip.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowStepSkip.command.js +1 -0
- package/dist/node/operations/workflow/commands/workflowUpdate.command.d.js +0 -0
- package/dist/node/operations/workflow/commands/workflowUpdate.command.js +1 -0
- package/dist/node/operations/workflow/constants.d.js +0 -0
- package/dist/node/operations/workflow/constants.js +1 -0
- package/dist/node/operations/workflow/index.d.js +1 -0
- package/dist/node/operations/workflow/index.js +1 -0
- package/dist/node/operations/workflow/queries/workflowGet.query.d.js +0 -0
- package/dist/node/operations/workflow/queries/workflowGet.query.js +1 -0
- package/dist/node/operations/workflow/queries/workflowList.query.d.js +0 -0
- package/dist/node/operations/workflow/queries/workflowList.query.js +1 -0
- package/dist/node/operations/workflow/queries/workflowRunnerHealth.query.d.js +0 -0
- package/dist/node/operations/workflow/queries/workflowRunnerHealth.query.js +1 -0
- package/dist/node/osint/capability-matrix-validation.js +2 -0
- package/dist/node/osint/capability-matrix.js +3 -0
- package/dist/node/osint/constants.js +1 -0
- package/dist/node/osint/entities.js +0 -0
- package/dist/node/osint/events.js +1 -0
- package/dist/node/osint/exports.js +0 -0
- package/dist/node/osint/fingerprint.js +1 -0
- package/dist/node/osint/index.js +1 -0
- package/dist/node/osint/job-reconciliation-contracts.js +1 -0
- package/dist/node/osint/job-sources.js +18 -0
- package/dist/node/osint/lifecycle-contracts.js +8 -0
- package/dist/node/osint/lifecycle-worker-contracts.js +1 -0
- package/dist/node/osint/operational-contracts.js +10 -0
- package/dist/node/osint/operational-operations.js +1 -0
- package/dist/node/osint/operational-schema-fields.js +1 -0
- package/dist/node/osint/operations-continuation.js +1 -0
- package/dist/node/osint/operations.js +1 -0
- package/dist/node/osint/programs.js +0 -0
- package/dist/node/osint/registry.js +1 -0
- package/dist/node/osint/rights-contracts.js +8 -0
- package/dist/node/osint/rights-operations.js +1 -0
- package/dist/node/osint/source-state-operations.js +1 -0
- package/dist/node/osint/transport.js +1 -0
- package/dist/node/osint/types.js +0 -0
- package/dist/node/outcome-claims/factory.js +1 -0
- package/dist/node/outcome-claims/index.js +1 -0
- package/dist/node/outcome-claims/types.js +0 -0
- package/dist/node/outcome-claims/validation.js +1 -0
- package/dist/node/ownership.d.js +0 -0
- package/dist/node/ownership.js +1 -0
- package/dist/node/policy/context.js +1 -0
- package/dist/node/policy/engine.js +1 -0
- package/dist/node/policy/guards.js +1 -0
- package/dist/node/policy/index.js +1 -0
- package/dist/node/policy/opa-adapter.js +1 -0
- package/dist/node/policy/registry.d.js +0 -0
- package/dist/node/policy/registry.js +1 -0
- package/dist/node/policy/requirements.d.js +0 -0
- package/dist/node/policy/requirements.js +1 -0
- package/dist/node/policy/spec.d.js +0 -0
- package/dist/node/policy/spec.js +150 -0
- package/dist/node/policy/validation.js +1 -0
- package/dist/node/presentations/index.d.js +1 -0
- package/dist/node/presentations/index.js +1 -0
- package/dist/node/presentations/presentations.d.js +0 -0
- package/dist/node/presentations/presentations.js +83 -0
- package/dist/node/presentations/registry.d.js +0 -0
- package/dist/node/presentations/registry.js +1 -0
- package/dist/node/presentations/shim-blocknotejs.d.js +0 -0
- package/dist/node/presentations/shim-blocknotejs.js +0 -0
- package/dist/node/product-intent/contract-patch-intent.js +1 -0
- package/dist/node/product-intent/contract-spec-patch.js +1 -0
- package/dist/node/product-intent/evidence.js +1 -0
- package/dist/node/product-intent/findings.js +1 -0
- package/dist/node/product-intent/impact-report.js +1 -0
- package/dist/node/product-intent/index.js +1 -0
- package/dist/node/product-intent/insights.js +1 -0
- package/dist/node/product-intent/opportunity-brief.js +1 -0
- package/dist/node/product-intent/problems.js +1 -0
- package/dist/node/product-intent/registry.js +1 -0
- package/dist/node/product-intent/runtime.js +1 -0
- package/dist/node/product-intent/spec.js +1 -0
- package/dist/node/product-intent/task-pack.js +1 -0
- package/dist/node/product-intent/tickets.js +1 -0
- package/dist/node/product-intent/types.js +1 -0
- package/dist/node/product-intent/ui-wireframe.js +1 -0
- package/dist/node/prompt.js +1 -0
- package/dist/node/promptRegistry.js +1 -0
- package/dist/node/provider-ranking/capabilities/index.js +1 -0
- package/dist/node/provider-ranking/capabilities/providerRanking.capability.js +1 -0
- package/dist/node/provider-ranking/commands/benchmarkIngest.command.js +4 -0
- package/dist/node/provider-ranking/commands/benchmarkRunCustom.command.js +4 -0
- package/dist/node/provider-ranking/commands/index.js +1 -0
- package/dist/node/provider-ranking/commands/rankingRefresh.command.js +4 -0
- package/dist/node/provider-ranking/constants.js +1 -0
- package/dist/node/provider-ranking/contracts.js +1 -0
- package/dist/node/provider-ranking/events/benchmarkCustomCompleted.event.js +4 -0
- package/dist/node/provider-ranking/events/benchmarkIngested.event.js +4 -0
- package/dist/node/provider-ranking/events/index.js +1 -0
- package/dist/node/provider-ranking/events/rankingUpdated.event.js +4 -0
- package/dist/node/provider-ranking/forms/benchmarkIngest.form.js +4 -0
- package/dist/node/provider-ranking/forms/benchmarkRunCustom.form.js +4 -0
- package/dist/node/provider-ranking/forms/index.js +1 -0
- package/dist/node/provider-ranking/index.js +1 -0
- package/dist/node/provider-ranking/presentations/index.js +1 -0
- package/dist/node/provider-ranking/presentations/modelComparison.presentation.js +4 -0
- package/dist/node/provider-ranking/provider-ranking.feature.js +4 -0
- package/dist/node/provider-ranking/queries/benchmarkResultsList.query.js +4 -0
- package/dist/node/provider-ranking/queries/index.js +1 -0
- package/dist/node/provider-ranking/queries/modelProfileGet.query.js +4 -0
- package/dist/node/provider-ranking/queries/providerRankingGet.query.js +4 -0
- package/dist/node/provider-ranking/views/benchmarkResults.dataView.js +4 -0
- package/dist/node/provider-ranking/views/index.js +1 -0
- package/dist/node/provider-ranking/views/providerRankings.dataView.js +4 -0
- package/dist/node/pwa/capabilities/index.js +1 -0
- package/dist/node/pwa/capabilities/pwaUpdateManagement.capability.js +1 -0
- package/dist/node/pwa/constants.js +1 -0
- package/dist/node/pwa/contracts.js +1 -0
- package/dist/node/pwa/events/index.js +1 -0
- package/dist/node/pwa/events/pwaUpdateApplied.event.js +1 -0
- package/dist/node/pwa/events/pwaUpdateDeferred.event.js +1 -0
- package/dist/node/pwa/events/pwaUpdatePrompted.event.js +1 -0
- package/dist/node/pwa/index.js +1 -0
- package/dist/node/pwa/pwa.feature.js +1 -0
- package/dist/node/pwa/queries/index.js +1 -0
- package/dist/node/pwa/queries/pwaUpdateCheck.query.js +1 -0
- package/dist/node/pwa/registry.js +1 -0
- package/dist/node/pwa/types.js +6 -0
- package/dist/node/quality/environment.js +1 -0
- package/dist/node/quality/index.js +1 -0
- package/dist/node/quality/plan.js +1 -0
- package/dist/node/quality/primitives.js +1 -0
- package/dist/node/quality/profile.js +1 -0
- package/dist/node/quality/receipt.js +1 -0
- package/dist/node/query/cache-status.d.js +0 -0
- package/dist/node/query/cache-status.js +1 -0
- package/dist/node/query/conflict-policy.d.js +0 -0
- package/dist/node/query/conflict-policy.js +1 -0
- package/dist/node/query/consistency.d.js +0 -0
- package/dist/node/query/consistency.js +1 -0
- package/dist/node/query/envelope.d.js +0 -0
- package/dist/node/query/envelope.js +0 -0
- package/dist/node/query/index.d.js +1 -0
- package/dist/node/query/index.js +1 -0
- package/dist/node/query/invalidation.d.js +0 -0
- package/dist/node/query/invalidation.js +1 -0
- package/dist/node/query/key.d.js +0 -0
- package/dist/node/query/key.js +1 -0
- package/dist/node/query/normalize.d.js +0 -0
- package/dist/node/query/normalize.js +1 -0
- package/dist/node/query/query-state.d.js +0 -0
- package/dist/node/query/query-state.js +1 -0
- package/dist/node/query/version-token.d.js +0 -0
- package/dist/node/query/version-token.js +1 -0
- package/dist/node/regenerator/adapters.js +0 -0
- package/dist/node/regenerator/executor.js +1 -0
- package/dist/node/regenerator/index.js +1 -0
- package/dist/node/regenerator/service.js +1 -0
- package/dist/node/regenerator/sinks.js +1 -0
- package/dist/node/regenerator/types.js +0 -0
- package/dist/node/regenerator/utils.js +1 -0
- package/dist/node/registry-utils.d.js +0 -0
- package/dist/node/registry-utils.js +1 -0
- package/dist/node/registry.d.js +0 -0
- package/dist/node/registry.js +1 -0
- package/dist/node/release/index.js +1 -0
- package/dist/node/resources.d.js +0 -0
- package/dist/node/resources.js +1 -0
- package/dist/node/results/builders.d.js +0 -0
- package/dist/node/results/builders.js +1 -0
- package/dist/node/results/error.d.js +0 -0
- package/dist/node/results/error.js +1 -0
- package/dist/node/results/factories.d.js +0 -0
- package/dist/node/results/factories.js +1 -0
- package/dist/node/results/guards.d.js +0 -0
- package/dist/node/results/guards.js +1 -0
- package/dist/node/results/index.d.js +1 -0
- package/dist/node/results/index.js +1 -0
- package/dist/node/results/normalize.d.js +0 -0
- package/dist/node/results/normalize.js +1 -0
- package/dist/node/results/problem.d.js +0 -0
- package/dist/node/results/problem.js +1 -0
- package/dist/node/results/result-specs.d.js +0 -0
- package/dist/node/results/result-specs.js +0 -0
- package/dist/node/results/standard-specs.d.js +0 -0
- package/dist/node/results/standard-specs.js +1 -0
- package/dist/node/results/status.d.js +0 -0
- package/dist/node/results/status.js +1 -0
- package/dist/node/results/types.d.js +0 -0
- package/dist/node/results/types.js +0 -0
- package/dist/node/results/value-utils.d.js +0 -0
- package/dist/node/results/value-utils.js +1 -0
- package/dist/node/rich-content/builders.js +3 -0
- package/dist/node/rich-content/index.js +1 -0
- package/dist/node/rich-content/preferences.js +0 -0
- package/dist/node/rich-content/redaction.js +1 -0
- package/dist/node/rich-content/types.js +0 -0
- package/dist/node/rich-reference/__fixtures__/cross-adapter-fixture.js +1 -0
- package/dist/node/rich-reference/agent-export.d.js +0 -0
- package/dist/node/rich-reference/agent-export.js +1 -0
- package/dist/node/rich-reference/canonical-serializer.d.js +0 -0
- package/dist/node/rich-reference/canonical-serializer.js +1 -0
- package/dist/node/rich-reference/contracts.js +1 -0
- package/dist/node/rich-reference/define-kind.d.js +0 -0
- package/dist/node/rich-reference/define-kind.js +1 -0
- package/dist/node/rich-reference/denial-token-shape.d.js +0 -0
- package/dist/node/rich-reference/denial-token-shape.js +1 -0
- package/dist/node/rich-reference/denial-token.d.js +0 -0
- package/dist/node/rich-reference/denial-token.js +1 -0
- package/dist/node/rich-reference/detector.d.js +0 -0
- package/dist/node/rich-reference/detector.js +1 -0
- package/dist/node/rich-reference/handler.d.js +0 -0
- package/dist/node/rich-reference/handler.js +0 -0
- package/dist/node/rich-reference/index.d.js +1 -0
- package/dist/node/rich-reference/index.js +19 -0
- package/dist/node/rich-reference/kinds/code-symbol.d.js +1 -0
- package/dist/node/rich-reference/kinds/code-symbol.js +1 -0
- package/dist/node/rich-reference/kinds/database-record.d.js +1 -0
- package/dist/node/rich-reference/kinds/database-record.js +1 -0
- package/dist/node/rich-reference/kinds/entity.d.js +1 -0
- package/dist/node/rich-reference/kinds/entity.js +27 -0
- package/dist/node/rich-reference/kinds/file.d.js +1 -0
- package/dist/node/rich-reference/kinds/file.js +1 -0
- package/dist/node/rich-reference/kinds/index.d.js +1 -0
- package/dist/node/rich-reference/kinds/index.js +1 -0
- package/dist/node/rich-reference/kinds/link.d.js +1 -0
- package/dist/node/rich-reference/kinds/link.js +1 -0
- package/dist/node/rich-reference/kinds/media.d.js +1 -0
- package/dist/node/rich-reference/kinds/media.js +1 -0
- package/dist/node/rich-reference/kinds/object.d.js +1 -0
- package/dist/node/rich-reference/kinds/object.js +1 -0
- package/dist/node/rich-reference/markdown-envelope.d.js +0 -0
- package/dist/node/rich-reference/markdown-envelope.js +1 -0
- package/dist/node/rich-reference/ports/audit-sink.d.js +0 -0
- package/dist/node/rich-reference/ports/audit-sink.js +0 -0
- package/dist/node/rich-reference/ports/coarse-preferences-provider.d.js +0 -0
- package/dist/node/rich-reference/ports/coarse-preferences-provider.js +0 -0
- package/dist/node/rich-reference/ports/durable-audit-sink.d.js +0 -0
- package/dist/node/rich-reference/ports/durable-audit-sink.js +0 -0
- package/dist/node/rich-reference/ports/index.d.js +0 -0
- package/dist/node/rich-reference/ports/index.js +0 -0
- package/dist/node/rich-reference/ports/kind-policy-provider.d.js +0 -0
- package/dist/node/rich-reference/ports/kind-policy-provider.js +0 -0
- package/dist/node/rich-reference/ports/subject-provider.d.js +0 -0
- package/dist/node/rich-reference/ports/subject-provider.js +0 -0
- package/dist/node/rich-reference/redaction.d.js +0 -0
- package/dist/node/rich-reference/redaction.js +1 -0
- package/dist/node/rich-reference/registry.d.js +0 -0
- package/dist/node/rich-reference/registry.js +1 -0
- package/dist/node/rich-reference/runtime/dev-invariants.js +1 -0
- package/dist/node/rich-reference/runtime/dispatch.js +1 -0
- package/dist/node/rich-reference/runtime/index.js +1 -0
- package/dist/node/rich-reference/runtime/redaction-enforcer.js +1 -0
- package/dist/node/rich-reference/runtime/runtime.js +1 -0
- package/dist/node/rich-reference/types.d.js +0 -0
- package/dist/node/rich-reference/types.js +1 -0
- package/dist/node/runtime-adapters.d.js +0 -0
- package/dist/node/runtime-adapters.js +1 -0
- package/dist/node/schema-to-markdown.js +10 -0
- package/dist/node/self-improving-system/constants.js +1 -0
- package/dist/node/self-improving-system/events.js +1 -0
- package/dist/node/self-improving-system/index.js +1 -0
- package/dist/node/self-improving-system/operation-definitions.js +1 -0
- package/dist/node/self-improving-system/operations.js +1 -0
- package/dist/node/self-improving-system/registry.js +1 -0
- package/dist/node/self-improving-system/transport.js +1 -0
- package/dist/node/self-improving-system/types.js +1 -0
- package/dist/node/self-improving-system/validation.js +1 -0
- package/dist/node/serialization/index.js +1 -0
- package/dist/node/serialization/serializers.js +1 -0
- package/dist/node/serialization/types.js +0 -0
- package/dist/node/shared/attach-context.d.js +0 -0
- package/dist/node/shared/attach-context.js +1 -0
- package/dist/node/shared/audit.d.js +0 -0
- package/dist/node/shared/audit.js +1 -0
- package/dist/node/shared/idempotency-shape.d.js +0 -0
- package/dist/node/shared/idempotency-shape.js +1 -0
- package/dist/node/shared/idempotency.js +1 -0
- package/dist/node/shared/index.d.js +1 -0
- package/dist/node/shared/index.js +1 -0
- package/dist/node/shared/window.d.js +0 -0
- package/dist/node/shared/window.js +1 -0
- package/dist/node/shared-entities/index.js +1 -0
- package/dist/node/shared-entities/person.js +12 -0
- package/dist/node/shared-entities/project.js +4 -0
- package/dist/node/shared-entities/resource.js +4 -0
- package/dist/node/shared-entities/task-validators.js +1 -0
- package/dist/node/shared-entities/task.d.js +0 -0
- package/dist/node/shared-entities/task.js +1 -0
- package/dist/node/shared-entities/team.js +12 -0
- package/dist/node/sop/generation-sources.js +5 -0
- package/dist/node/sop/index.js +1 -0
- package/dist/node/sop/operations.js +1 -0
- package/dist/node/sop/sop.feature.js +3 -0
- package/dist/node/sop/types.js +0 -0
- package/dist/node/sop/validation.js +1 -0
- package/dist/node/structured-data/derive.d.js +0 -0
- package/dist/node/structured-data/derive.js +1 -0
- package/dist/node/structured-data/index.d.js +1 -0
- package/dist/node/structured-data/index.js +1 -0
- package/dist/node/structured-data/kinds.d.js +0 -0
- package/dist/node/structured-data/kinds.js +1 -0
- package/dist/node/structured-data/schema-guards.js +0 -0
- package/dist/node/structured-data/validate.d.js +0 -0
- package/dist/node/structured-data/validate.js +1 -0
- package/dist/node/telemetry/anomaly.d.js +0 -0
- package/dist/node/telemetry/anomaly.js +1 -0
- package/dist/node/telemetry/delivery-v2.d.js +0 -0
- package/dist/node/telemetry/delivery-v2.js +1 -0
- package/dist/node/telemetry/index.d.js +1 -0
- package/dist/node/telemetry/index.js +1 -0
- package/dist/node/telemetry/spec.d.js +0 -0
- package/dist/node/telemetry/spec.js +1 -0
- package/dist/node/telemetry/tracker.d.js +0 -0
- package/dist/node/telemetry/tracker.js +1 -0
- package/dist/node/telemetry/v2-primitives.d.js +0 -0
- package/dist/node/telemetry/v2-primitives.js +1 -0
- package/dist/node/telemetry/v2-validation.d.js +0 -0
- package/dist/node/telemetry/v2-validation.js +1 -0
- package/dist/node/telemetry/v2.d.js +1 -0
- package/dist/node/telemetry/v2.js +1 -0
- package/dist/node/tests/index.js +1 -0
- package/dist/node/tests/runner.js +1 -0
- package/dist/node/tests/spec.d.js +0 -0
- package/dist/node/tests/spec.js +1 -0
- package/dist/node/themes.d.js +1 -0
- package/dist/node/themes.js +1 -0
- package/dist/node/themes.platform-validation.d.js +0 -0
- package/dist/node/themes.platform-validation.js +1 -0
- package/dist/node/themes.validation.d.js +0 -0
- package/dist/node/themes.validation.js +1 -0
- package/dist/node/translations/catalog.d.js +0 -0
- package/dist/node/translations/catalog.js +0 -0
- package/dist/node/translations/diagnostics.d.js +0 -0
- package/dist/node/translations/diagnostics.js +1 -0
- package/dist/node/translations/i18n-factory-snapshot.d.js +0 -0
- package/dist/node/translations/i18n-factory-snapshot.js +20 -0
- package/dist/node/translations/i18n-factory.d.js +0 -0
- package/dist/node/translations/i18n-factory.js +1 -0
- package/dist/node/translations/index.d.js +1 -0
- package/dist/node/translations/index.js +1 -0
- package/dist/node/translations/locale.d.js +0 -0
- package/dist/node/translations/locale.js +1 -0
- package/dist/node/translations/registry.d.js +0 -0
- package/dist/node/translations/registry.js +1 -0
- package/dist/node/translations/spec.d.js +0 -0
- package/dist/node/translations/spec.js +1 -0
- package/dist/node/translations/tenant.d.js +0 -0
- package/dist/node/translations/tenant.js +0 -0
- package/dist/node/translations/validation.d.js +0 -0
- package/dist/node/translations/validation.js +1 -0
- package/dist/node/types.d.js +0 -0
- package/dist/node/types.js +1 -0
- package/dist/node/utils/safe-json.js +1 -0
- package/dist/node/versioning/index.d.js +1 -0
- package/dist/node/versioning/index.js +1 -0
- package/dist/node/versioning/refs.d.js +0 -0
- package/dist/node/versioning/refs.js +1 -0
- package/dist/node/versioning/release-types.d.js +0 -0
- package/dist/node/versioning/release-types.js +0 -0
- package/dist/node/versioning/release-utils.d.js +0 -0
- package/dist/node/versioning/release-utils.js +1 -0
- package/dist/node/versioning/schema.d.js +0 -0
- package/dist/node/versioning/schema.js +1 -0
- package/dist/node/versioning/types.d.js +0 -0
- package/dist/node/versioning/types.js +1 -0
- package/dist/node/versioning/utils.d.js +0 -0
- package/dist/node/versioning/utils.js +1 -0
- package/dist/node/visual-scenarios/index.js +1 -0
- package/dist/node/visual-scenarios/platform.js +1 -0
- package/dist/node/visual-scenarios/registry.d.js +0 -0
- package/dist/node/visual-scenarios/registry.js +1 -0
- package/dist/node/visual-scenarios/spec.d.js +0 -0
- package/dist/node/visual-scenarios/spec.js +1 -0
- package/dist/node/visual-scenarios/validation-authoring.js +1 -0
- package/dist/node/visual-scenarios/validation.js +1 -0
- package/dist/node/visualizations/index.js +1 -0
- package/dist/node/visualizations/registry.d.js +0 -0
- package/dist/node/visualizations/registry.js +1 -0
- package/dist/node/visualizations/spec.d.js +0 -0
- package/dist/node/visualizations/spec.js +1 -0
- package/dist/node/visualizations/types.d.js +0 -0
- package/dist/node/visualizations/types.js +1 -0
- package/dist/node/workflow/adapters/db-adapter.js +1 -0
- package/dist/node/workflow/adapters/file-adapter.js +1 -0
- package/dist/node/workflow/adapters/index.js +1 -0
- package/dist/node/workflow/adapters/memory-store.js +1 -0
- package/dist/node/workflow/context.js +1 -0
- package/dist/node/workflow/dag-utils.js +1 -0
- package/dist/node/workflow/expression.js +1 -0
- package/dist/node/workflow/index.js +1 -0
- package/dist/node/workflow/runner.js +1 -0
- package/dist/node/workflow/sla-monitor.js +1 -0
- package/dist/node/workflow/spec.d.js +0 -0
- package/dist/node/workflow/spec.js +1 -0
- package/dist/node/workflow/state.js +0 -0
- package/dist/node/workflow/validation-workflow-devkit.js +1 -0
- package/dist/node/workflow/validation.js +1 -0
- package/dist/node/workflow/workflow-devkit.d.js +0 -0
- package/dist/node/workflow/workflow-devkit.js +0 -0
- package/dist/node/workflow/workflow-sdk.js +1 -0
- package/dist/node/workspace-config/contractsrc-schema.js +1 -0
- package/dist/node/workspace-config/contractsrc-types.js +0 -0
- package/dist/node/workspace-config/environment-validation-alias.js +1 -0
- package/dist/node/workspace-config/environment-validation.js +1 -0
- package/dist/node/workspace-config/environment.js +1 -0
- package/dist/node/workspace-config/index.js +1 -0
- package/dist/node/workspace-config/lssm-os-config.fixture.js +1 -0
- package/dist/node/workspace-config/lssm-os-constraints.js +1 -0
- package/dist/node/workspace-config/lssm-os-extension-schema.js +1 -0
- package/dist/node/workspace-config/lssm-os-inheritance.js +1 -0
- package/dist/node/workspace-config/lssm-os-policy-merge.js +1 -0
- package/dist/node/workspace-config/lssm-os-provider-merge.js +1 -0
- package/dist/node/workspace-config/lssm-os-schema.js +1 -0
- package/dist/node/workspace-config/lssm-os-secrets.js +1 -0
- package/dist/node/workspace-config/lssm-os-types.js +1 -0
- package/dist/notifications/contracts.d.ts +1012 -0
- package/dist/notifications/contracts.js +1 -0
- package/dist/notifications/index.d.ts +3 -0
- package/dist/notifications/index.js +1 -0
- package/dist/notifications/notifications.capability.d.ts +1 -0
- package/dist/notifications/notifications.capability.js +1 -0
- package/dist/notifications/notifications.feature.d.ts +1 -0
- package/dist/notifications/notifications.feature.js +1 -0
- package/dist/observability/database-signals.d.ts +31 -0
- package/dist/observability/database-signals.js +1 -0
- package/dist/observability/evidence-record.d.ts +201 -0
- package/dist/observability/evidence-record.js +1 -0
- package/dist/observability/index.d.ts +11 -0
- package/dist/observability/index.js +1 -0
- package/dist/observability/signal-spec.d.ts +113 -0
- package/dist/observability/signal-spec.js +1 -0
- package/dist/onboarding-base.d.ts +135 -0
- package/dist/onboarding-base.js +1 -0
- package/dist/ontology/autonomous-work-order.fixture.d.ts +352 -0
- package/dist/ontology/autonomous-work-order.fixture.js +1 -0
- package/dist/ontology/companyos.d.ts +146 -0
- package/dist/ontology/companyos.js +1 -0
- package/dist/ontology/defineOntologyEdge.d.ts +2 -0
- package/dist/ontology/defineOntologyEdge.js +1 -0
- package/dist/ontology/defineOntologyNode.d.ts +2 -0
- package/dist/ontology/defineOntologyNode.js +1 -0
- package/dist/ontology/evidence.d.ts +10 -0
- package/dist/ontology/evidence.js +1 -0
- package/dist/ontology/graph.d.ts +19 -0
- package/dist/ontology/graph.js +1 -0
- package/dist/ontology/index.d.ts +10 -0
- package/dist/ontology/index.js +1 -0
- package/dist/ontology/kinds.d.ts +17 -0
- package/dist/ontology/kinds.js +1 -0
- package/dist/ontology/ref.d.ts +6 -0
- package/dist/ontology/ref.js +1 -0
- package/dist/ontology/registry.d.ts +14 -0
- package/dist/ontology/registry.js +1 -0
- package/dist/ontology/safety.d.ts +3 -0
- package/dist/ontology/safety.js +1 -0
- package/dist/ontology/types.d.ts +67 -0
- package/dist/ontology/types.js +0 -0
- package/dist/openapi.d.ts +34 -0
- package/dist/openapi.js +38 -0
- package/dist/operations/agent/archive.command.d.js +0 -0
- package/dist/operations/agent/archive.command.d.ts +141 -0
- package/dist/operations/agent/archive.command.js +1 -0
- package/dist/operations/agent/assign-tool.command.d.js +0 -0
- package/dist/operations/agent/assign-tool.command.d.ts +187 -0
- package/dist/operations/agent/assign-tool.command.js +1 -0
- package/dist/operations/agent/clone.command.d.js +0 -0
- package/dist/operations/agent/clone.command.d.ts +149 -0
- package/dist/operations/agent/clone.command.js +1 -0
- package/dist/operations/agent/create.command.d.js +0 -0
- package/dist/operations/agent/create.command.d.ts +159 -0
- package/dist/operations/agent/create.command.js +1 -0
- package/dist/operations/agent/fleet-health.query.d.js +0 -0
- package/dist/operations/agent/fleet-health.query.d.ts +71 -0
- package/dist/operations/agent/fleet-health.query.js +1 -0
- package/dist/operations/agent/get.query.d.js +0 -0
- package/dist/operations/agent/get.query.d.ts +190 -0
- package/dist/operations/agent/get.query.js +1 -0
- package/dist/operations/agent/import-memory.command.d.ts +140 -0
- package/dist/operations/agent/import-memory.command.js +1 -0
- package/dist/operations/agent/list.query.d.js +0 -0
- package/dist/operations/agent/list.query.d.ts +162 -0
- package/dist/operations/agent/list.query.js +1 -0
- package/dist/operations/agent/pause.command.d.js +0 -0
- package/dist/operations/agent/pause.command.d.ts +149 -0
- package/dist/operations/agent/pause.command.js +1 -0
- package/dist/operations/agent/set-autonomy.command.d.js +0 -0
- package/dist/operations/agent/set-autonomy.command.d.ts +156 -0
- package/dist/operations/agent/set-autonomy.command.js +1 -0
- package/dist/operations/agent/set-risk-tier.command.d.js +0 -0
- package/dist/operations/agent/set-risk-tier.command.d.ts +152 -0
- package/dist/operations/agent/set-risk-tier.command.js +1 -0
- package/dist/operations/agent/shared-schemas.d.js +0 -0
- package/dist/operations/agent/shared-schemas.d.ts +396 -0
- package/dist/operations/agent/shared-schemas.js +1 -0
- package/dist/operations/agent/start.command.d.js +0 -0
- package/dist/operations/agent/start.command.d.ts +147 -0
- package/dist/operations/agent/start.command.js +1 -0
- package/dist/operations/agent/stop.command.d.js +0 -0
- package/dist/operations/agent/stop.command.d.ts +155 -0
- package/dist/operations/agent/stop.command.js +1 -0
- package/dist/operations/agent/update.command.d.js +0 -0
- package/dist/operations/agent/update.command.d.ts +155 -0
- package/dist/operations/agent/update.command.js +1 -0
- package/dist/operations/approval.d.js +0 -0
- package/dist/operations/approval.d.ts +153 -0
- package/dist/operations/approval.js +1 -0
- package/dist/operations/audit/event.export.command.d.js +0 -0
- package/dist/operations/audit/event.export.command.d.ts +71 -0
- package/dist/operations/audit/event.export.command.js +1 -0
- package/dist/operations/audit/event.get.query.d.js +0 -0
- package/dist/operations/audit/event.get.query.d.ts +83 -0
- package/dist/operations/audit/event.get.query.js +1 -0
- package/dist/operations/audit/event.list.query.d.js +0 -0
- package/dist/operations/audit/event.list.query.d.ts +90 -0
- package/dist/operations/audit/event.list.query.js +1 -0
- package/dist/operations/audit/evidence.attach.command.d.js +0 -0
- package/dist/operations/audit/evidence.attach.command.d.ts +110 -0
- package/dist/operations/audit/evidence.attach.command.js +1 -0
- package/dist/operations/audit/pipeline.health.query.d.js +0 -0
- package/dist/operations/audit/pipeline.health.query.d.ts +66 -0
- package/dist/operations/audit/pipeline.health.query.js +1 -0
- package/dist/operations/audit/shared-schemas.d.js +0 -0
- package/dist/operations/audit/shared-schemas.d.ts +102 -0
- package/dist/operations/audit/shared-schemas.js +1 -0
- package/dist/operations/ceremony-authority.d.js +0 -0
- package/dist/operations/ceremony-authority.d.ts +50 -0
- package/dist/operations/ceremony-authority.js +1 -0
- package/dist/operations/coach/agent-suggest-tool.command.d.js +0 -0
- package/dist/operations/coach/agent-suggest-tool.command.d.ts +55 -0
- package/dist/operations/coach/agent-suggest-tool.command.js +1 -0
- package/dist/operations/coach/governance-suggest-constraint.command.d.js +0 -0
- package/dist/operations/coach/governance-suggest-constraint.command.d.ts +61 -0
- package/dist/operations/coach/governance-suggest-constraint.command.js +1 -0
- package/dist/operations/coach/review-summarize.command.d.js +0 -0
- package/dist/operations/coach/review-summarize.command.d.ts +66 -0
- package/dist/operations/coach/review-summarize.command.js +1 -0
- package/dist/operations/coach/shared-schemas.d.js +0 -0
- package/dist/operations/coach/shared-schemas.d.ts +124 -0
- package/dist/operations/coach/shared-schemas.js +1 -0
- package/dist/operations/coach/workflow-suggest-step.command.d.js +0 -0
- package/dist/operations/coach/workflow-suggest-step.command.d.ts +63 -0
- package/dist/operations/coach/workflow-suggest-step.command.js +1 -0
- package/dist/operations/economic-evidence.d.js +0 -0
- package/dist/operations/economic-evidence.d.ts +6 -0
- package/dist/operations/economic-evidence.js +1 -0
- package/dist/operations/fleet/health-snapshot.query.d.js +0 -0
- package/dist/operations/fleet/health-snapshot.query.d.ts +189 -0
- package/dist/operations/fleet/health-snapshot.query.js +1 -0
- package/dist/operations/fleet/metrics-summary.query.d.js +0 -0
- package/dist/operations/fleet/metrics-summary.query.d.ts +224 -0
- package/dist/operations/fleet/metrics-summary.query.js +1 -0
- package/dist/operations/fleet/roi-snapshot.query.d.js +0 -0
- package/dist/operations/fleet/roi-snapshot.query.d.ts +171 -0
- package/dist/operations/fleet/roi-snapshot.query.js +1 -0
- package/dist/operations/fleet/shared-schemas.d.js +0 -0
- package/dist/operations/fleet/shared-schemas.d.ts +161 -0
- package/dist/operations/fleet/shared-schemas.js +1 -0
- package/dist/operations/governance/constraint.add.command.d.js +1 -0
- package/dist/operations/governance/constraint.add.command.d.ts +102 -0
- package/dist/operations/governance/constraint.add.command.js +1 -0
- package/dist/operations/governance/constraint.remove.command.d.js +0 -0
- package/dist/operations/governance/constraint.remove.command.d.ts +57 -0
- package/dist/operations/governance/constraint.remove.command.js +1 -0
- package/dist/operations/governance/notification.dispatch.command.d.js +0 -0
- package/dist/operations/governance/notification.dispatch.command.d.ts +53 -0
- package/dist/operations/governance/notification.dispatch.command.js +1 -0
- package/dist/operations/governance/policy.get.query.d.js +0 -0
- package/dist/operations/governance/policy.get.query.d.ts +68 -0
- package/dist/operations/governance/policy.get.query.js +1 -0
- package/dist/operations/governance/policy.health.query.d.js +0 -0
- package/dist/operations/governance/policy.health.query.d.ts +61 -0
- package/dist/operations/governance/policy.health.query.js +1 -0
- package/dist/operations/governance/policy.list.query.d.js +1 -0
- package/dist/operations/governance/policy.list.query.d.ts +64 -0
- package/dist/operations/governance/policy.list.query.js +1 -0
- package/dist/operations/governance/policy.simulate.query.d.js +0 -0
- package/dist/operations/governance/policy.simulate.query.d.ts +80 -0
- package/dist/operations/governance/policy.simulate.query.js +1 -0
- package/dist/operations/governance/policy.update.command.d.js +1 -0
- package/dist/operations/governance/policy.update.command.d.ts +115 -0
- package/dist/operations/governance/policy.update.command.js +1 -0
- package/dist/operations/governance/shared-schemas.d.js +0 -0
- package/dist/operations/governance/shared-schemas.d.ts +136 -0
- package/dist/operations/governance/shared-schemas.js +1 -0
- package/dist/operations/index.d.js +1 -0
- package/dist/operations/index.d.ts +14 -0
- package/dist/operations/index.js +1 -0
- package/dist/operations/integrations/audit.list_for_integration.command.d.js +1 -0
- package/dist/operations/integrations/audit.list_for_integration.command.d.ts +37 -0
- package/dist/operations/integrations/audit.list_for_integration.command.js +1 -0
- package/dist/operations/integrations/config.get.command.d.js +0 -0
- package/dist/operations/integrations/config.get.command.d.ts +33 -0
- package/dist/operations/integrations/config.get.command.js +1 -0
- package/dist/operations/integrations/config.update.command.d.js +0 -0
- package/dist/operations/integrations/config.update.command.d.ts +42 -0
- package/dist/operations/integrations/config.update.command.js +1 -0
- package/dist/operations/integrations/connections.list.command.d.js +1 -0
- package/dist/operations/integrations/connections.list.command.d.ts +29 -0
- package/dist/operations/integrations/connections.list.command.js +1 -0
- package/dist/operations/integrations/credentials.list.command.d.js +1 -0
- package/dist/operations/integrations/credentials.list.command.d.ts +33 -0
- package/dist/operations/integrations/credentials.list.command.js +1 -0
- package/dist/operations/integrations/credentials.request_rotation.command.d.js +0 -0
- package/dist/operations/integrations/credentials.request_rotation.command.d.ts +38 -0
- package/dist/operations/integrations/credentials.request_rotation.command.js +1 -0
- package/dist/operations/integrations/credentials.revoke.command.d.js +0 -0
- package/dist/operations/integrations/credentials.revoke.command.d.ts +38 -0
- package/dist/operations/integrations/credentials.revoke.command.js +1 -0
- package/dist/operations/integrations/credentials.rotate.command.d.js +0 -0
- package/dist/operations/integrations/credentials.rotate.command.d.ts +46 -0
- package/dist/operations/integrations/credentials.rotate.command.js +1 -0
- package/dist/operations/integrations/index.d.ts +27 -0
- package/dist/operations/integrations/index.js +1 -0
- package/dist/operations/integrations/integrations.connect.command.d.js +0 -0
- package/dist/operations/integrations/integrations.connect.command.d.ts +38 -0
- package/dist/operations/integrations/integrations.connect.command.js +1 -0
- package/dist/operations/integrations/integrations.disconnect.command.d.js +0 -0
- package/dist/operations/integrations/integrations.disconnect.command.d.ts +38 -0
- package/dist/operations/integrations/integrations.disconnect.command.js +1 -0
- package/dist/operations/integrations/integrations.get.command.d.js +0 -0
- package/dist/operations/integrations/integrations.get.command.d.ts +49 -0
- package/dist/operations/integrations/integrations.get.command.js +1 -0
- package/dist/operations/integrations/integrations.list.command.d.js +1 -0
- package/dist/operations/integrations/integrations.list.command.d.ts +29 -0
- package/dist/operations/integrations/integrations.list.command.js +1 -0
- package/dist/operations/integrations/registry.d.js +0 -0
- package/dist/operations/integrations/registry.d.ts +21 -0
- package/dist/operations/integrations/registry.js +1 -0
- package/dist/operations/integrations/secrets.link.command.d.js +0 -0
- package/dist/operations/integrations/secrets.link.command.d.ts +38 -0
- package/dist/operations/integrations/secrets.link.command.js +1 -0
- package/dist/operations/integrations/secrets.list.command.d.js +1 -0
- package/dist/operations/integrations/secrets.list.command.d.ts +33 -0
- package/dist/operations/integrations/secrets.list.command.js +1 -0
- package/dist/operations/integrations/secrets.reveal_once_audit_only.command.d.js +0 -0
- package/dist/operations/integrations/secrets.reveal_once_audit_only.command.d.ts +42 -0
- package/dist/operations/integrations/secrets.reveal_once_audit_only.command.js +1 -0
- package/dist/operations/integrations/secrets.unlink.command.d.js +0 -0
- package/dist/operations/integrations/secrets.unlink.command.d.ts +38 -0
- package/dist/operations/integrations/secrets.unlink.command.js +1 -0
- package/dist/operations/integrations/shared-schemas.d.js +0 -0
- package/dist/operations/integrations/shared-schemas.d.ts +259 -0
- package/dist/operations/integrations/shared-schemas.js +1 -0
- package/dist/operations/integrations/syncs.list.command.d.js +1 -0
- package/dist/operations/integrations/syncs.list.command.d.ts +29 -0
- package/dist/operations/integrations/syncs.list.command.js +1 -0
- package/dist/operations/integrations/syncs.pause.command.d.js +0 -0
- package/dist/operations/integrations/syncs.pause.command.d.ts +34 -0
- package/dist/operations/integrations/syncs.pause.command.js +1 -0
- package/dist/operations/integrations/syncs.resume.command.d.js +0 -0
- package/dist/operations/integrations/syncs.resume.command.d.ts +34 -0
- package/dist/operations/integrations/syncs.resume.command.js +1 -0
- package/dist/operations/integrations/syncs.run_now.command.d.js +0 -0
- package/dist/operations/integrations/syncs.run_now.command.d.ts +34 -0
- package/dist/operations/integrations/syncs.run_now.command.js +1 -0
- package/dist/operations/integrations/syncs.update_schedule.command.d.js +0 -0
- package/dist/operations/integrations/syncs.update_schedule.command.d.ts +38 -0
- package/dist/operations/integrations/syncs.update_schedule.command.js +1 -0
- package/dist/operations/marketing.d.js +1 -0
- package/dist/operations/marketing.d.ts +496 -0
- package/dist/operations/marketing.handlers.d.js +0 -0
- package/dist/operations/marketing.handlers.d.ts +24 -0
- package/dist/operations/marketing.handlers.js +1 -0
- package/dist/operations/marketing.js +14 -0
- package/dist/operations/operation.d.js +0 -0
- package/dist/operations/operation.d.ts +236 -0
- package/dist/operations/operation.js +1 -0
- package/dist/operations/reference-detail.d.ts +157 -0
- package/dist/operations/reference-detail.js +1 -0
- package/dist/operations/reference-resolve.d.ts +214 -0
- package/dist/operations/reference-resolve.js +3 -0
- package/dist/operations/registry.agent.d.js +0 -0
- package/dist/operations/registry.agent.d.ts +22 -0
- package/dist/operations/registry.agent.js +1 -0
- package/dist/operations/registry.audit.d.js +0 -0
- package/dist/operations/registry.audit.d.ts +23 -0
- package/dist/operations/registry.audit.js +1 -0
- package/dist/operations/registry.coach.d.js +0 -0
- package/dist/operations/registry.coach.d.ts +31 -0
- package/dist/operations/registry.coach.js +1 -0
- package/dist/operations/registry.d.js +1 -0
- package/dist/operations/registry.d.ts +77 -0
- package/dist/operations/registry.domains.d.js +0 -0
- package/dist/operations/registry.domains.d.ts +44 -0
- package/dist/operations/registry.domains.js +1 -0
- package/dist/operations/registry.fleet.d.js +0 -0
- package/dist/operations/registry.fleet.d.ts +21 -0
- package/dist/operations/registry.fleet.js +1 -0
- package/dist/operations/registry.governance.d.js +0 -0
- package/dist/operations/registry.governance.d.ts +20 -0
- package/dist/operations/registry.governance.js +1 -0
- package/dist/operations/registry.js +1 -0
- package/dist/operations/registry.review.d.js +0 -0
- package/dist/operations/registry.review.d.ts +18 -0
- package/dist/operations/registry.review.js +1 -0
- package/dist/operations/registry.workflow.d.js +0 -0
- package/dist/operations/registry.workflow.d.ts +20 -0
- package/dist/operations/registry.workflow.js +1 -0
- package/dist/operations/report/getContractVerificationStatus.d.ts +68 -0
- package/dist/operations/report/getContractVerificationStatus.js +1 -0
- package/dist/operations/report/index.d.ts +10 -0
- package/dist/operations/report/index.js +1 -0
- package/dist/operations/review/commands/index.d.ts +6 -0
- package/dist/operations/review/commands/index.js +1 -0
- package/dist/operations/review/commands/reviewApprove.command.d.js +0 -0
- package/dist/operations/review/commands/reviewApprove.command.d.ts +55 -0
- package/dist/operations/review/commands/reviewApprove.command.js +1 -0
- package/dist/operations/review/commands/reviewAssign.command.d.js +0 -0
- package/dist/operations/review/commands/reviewAssign.command.d.ts +50 -0
- package/dist/operations/review/commands/reviewAssign.command.js +12 -0
- package/dist/operations/review/commands/reviewComment.command.d.js +0 -0
- package/dist/operations/review/commands/reviewComment.command.d.ts +60 -0
- package/dist/operations/review/commands/reviewComment.command.js +1 -0
- package/dist/operations/review/commands/reviewEscalate.command.d.js +0 -0
- package/dist/operations/review/commands/reviewEscalate.command.d.ts +62 -0
- package/dist/operations/review/commands/reviewEscalate.command.js +1 -0
- package/dist/operations/review/commands/reviewReject.command.d.js +0 -0
- package/dist/operations/review/commands/reviewReject.command.d.ts +50 -0
- package/dist/operations/review/commands/reviewReject.command.js +1 -0
- package/dist/operations/review/commands/reviewRequestChanges.command.d.js +0 -0
- package/dist/operations/review/commands/reviewRequestChanges.command.d.ts +64 -0
- package/dist/operations/review/commands/reviewRequestChanges.command.js +1 -0
- package/dist/operations/review/constants.d.js +0 -0
- package/dist/operations/review/constants.d.ts +14 -0
- package/dist/operations/review/constants.js +1 -0
- package/dist/operations/review/index.d.ts +2 -0
- package/dist/operations/review/index.js +1 -0
- package/dist/operations/review/queries/index.d.ts +3 -0
- package/dist/operations/review/queries/index.js +1 -0
- package/dist/operations/review/queries/reviewGet.query.d.js +0 -0
- package/dist/operations/review/queries/reviewGet.query.d.ts +127 -0
- package/dist/operations/review/queries/reviewGet.query.js +9 -0
- package/dist/operations/review/queries/reviewList.query.d.js +0 -0
- package/dist/operations/review/queries/reviewList.query.d.ts +110 -0
- package/dist/operations/review/queries/reviewList.query.js +1 -0
- package/dist/operations/review/queries/reviewQueueHealth.query.d.js +0 -0
- package/dist/operations/review/queries/reviewQueueHealth.query.d.ts +55 -0
- package/dist/operations/review/queries/reviewQueueHealth.query.js +1 -0
- package/dist/operations/review/shared-schemas.d.js +0 -0
- package/dist/operations/review/shared-schemas.d.ts +180 -0
- package/dist/operations/review/shared-schemas.js +1 -0
- package/dist/operations/workflow/commands/workflowActivate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowActivate.command.d.ts +40 -0
- package/dist/operations/workflow/commands/workflowActivate.command.js +1 -0
- package/dist/operations/workflow/commands/workflowCreate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowCreate.command.d.ts +55 -0
- package/dist/operations/workflow/commands/workflowCreate.command.js +1 -0
- package/dist/operations/workflow/commands/workflowDeactivate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowDeactivate.command.d.ts +49 -0
- package/dist/operations/workflow/commands/workflowDeactivate.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunCancel.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunCancel.command.d.ts +41 -0
- package/dist/operations/workflow/commands/workflowRunCancel.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunDispatch.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunDispatch.command.d.ts +53 -0
- package/dist/operations/workflow/commands/workflowRunDispatch.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunPause.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunPause.command.d.ts +37 -0
- package/dist/operations/workflow/commands/workflowRunPause.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunResume.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunResume.command.d.ts +37 -0
- package/dist/operations/workflow/commands/workflowRunResume.command.js +1 -0
- package/dist/operations/workflow/commands/workflowRunRetry.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowRunRetry.command.d.ts +40 -0
- package/dist/operations/workflow/commands/workflowRunRetry.command.js +1 -0
- package/dist/operations/workflow/commands/workflowStepAdvance.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowStepAdvance.command.d.ts +49 -0
- package/dist/operations/workflow/commands/workflowStepAdvance.command.js +1 -0
- package/dist/operations/workflow/commands/workflowStepSkip.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowStepSkip.command.d.ts +49 -0
- package/dist/operations/workflow/commands/workflowStepSkip.command.js +1 -0
- package/dist/operations/workflow/commands/workflowUpdate.command.d.js +0 -0
- package/dist/operations/workflow/commands/workflowUpdate.command.d.ts +44 -0
- package/dist/operations/workflow/commands/workflowUpdate.command.js +1 -0
- package/dist/operations/workflow/constants.d.js +0 -0
- package/dist/operations/workflow/constants.d.ts +38 -0
- package/dist/operations/workflow/constants.js +1 -0
- package/dist/operations/workflow/index.d.js +1 -0
- package/dist/operations/workflow/index.d.ts +31 -0
- package/dist/operations/workflow/index.js +1 -0
- package/dist/operations/workflow/queries/workflowGet.query.d.js +0 -0
- package/dist/operations/workflow/queries/workflowGet.query.d.ts +29 -0
- package/dist/operations/workflow/queries/workflowGet.query.js +1 -0
- package/dist/operations/workflow/queries/workflowList.query.d.js +0 -0
- package/dist/operations/workflow/queries/workflowList.query.d.ts +42 -0
- package/dist/operations/workflow/queries/workflowList.query.js +1 -0
- package/dist/operations/workflow/queries/workflowRunnerHealth.query.d.js +0 -0
- package/dist/operations/workflow/queries/workflowRunnerHealth.query.d.ts +24 -0
- package/dist/operations/workflow/queries/workflowRunnerHealth.query.js +1 -0
- package/dist/osint/capability-matrix-validation.d.ts +3 -0
- package/dist/osint/capability-matrix-validation.js +2 -0
- package/dist/osint/capability-matrix.d.ts +84 -0
- package/dist/osint/capability-matrix.js +3 -0
- package/dist/osint/constants.d.ts +14 -0
- package/dist/osint/constants.js +1 -0
- package/dist/osint/entities.d.ts +60 -0
- package/dist/osint/entities.js +0 -0
- package/dist/osint/events.d.ts +605 -0
- package/dist/osint/events.js +1 -0
- package/dist/osint/exports.d.ts +14 -0
- package/dist/osint/exports.js +0 -0
- package/dist/osint/fingerprint.d.ts +13 -0
- package/dist/osint/fingerprint.js +1 -0
- package/dist/osint/index.d.ts +22 -0
- package/dist/osint/index.js +1 -0
- package/dist/osint/job-reconciliation-contracts.d.ts +372 -0
- package/dist/osint/job-reconciliation-contracts.js +1 -0
- package/dist/osint/job-sources.d.ts +176 -0
- package/dist/osint/job-sources.js +18 -0
- package/dist/osint/lifecycle-contracts.d.ts +552 -0
- package/dist/osint/lifecycle-contracts.js +8 -0
- package/dist/osint/lifecycle-worker-contracts.d.ts +386 -0
- package/dist/osint/lifecycle-worker-contracts.js +1 -0
- package/dist/osint/operational-contracts.d.ts +641 -0
- package/dist/osint/operational-contracts.js +10 -0
- package/dist/osint/operational-operations.d.ts +1965 -0
- package/dist/osint/operational-operations.js +1 -0
- package/dist/osint/operational-schema-fields.d.ts +148 -0
- package/dist/osint/operational-schema-fields.js +1 -0
- package/dist/osint/operations-continuation.d.ts +1611 -0
- package/dist/osint/operations-continuation.js +1 -0
- package/dist/osint/operations.d.ts +2436 -0
- package/dist/osint/operations.js +1 -0
- package/dist/osint/programs.d.ts +54 -0
- package/dist/osint/programs.js +0 -0
- package/dist/osint/registry.d.ts +3510 -0
- package/dist/osint/registry.js +1 -0
- package/dist/osint/rights-contracts.d.ts +253 -0
- package/dist/osint/rights-contracts.js +8 -0
- package/dist/osint/rights-operations.d.ts +175 -0
- package/dist/osint/rights-operations.js +1 -0
- package/dist/osint/source-state-operations.d.ts +386 -0
- package/dist/osint/source-state-operations.js +1 -0
- package/dist/osint/transport.d.ts +76 -0
- package/dist/osint/transport.js +1 -0
- package/dist/osint/types.d.ts +184 -0
- package/dist/osint/types.js +0 -0
- package/dist/outcome-claims/factory.d.ts +9 -0
- package/dist/outcome-claims/factory.js +1 -0
- package/dist/outcome-claims/index.d.ts +3 -0
- package/dist/outcome-claims/index.js +1 -0
- package/dist/outcome-claims/types.d.ts +86 -0
- package/dist/outcome-claims/types.js +0 -0
- package/dist/outcome-claims/validation.d.ts +685 -0
- package/dist/outcome-claims/validation.js +1 -0
- package/dist/ownership.d.js +0 -0
- package/dist/ownership.d.ts +209 -0
- package/dist/ownership.js +1 -0
- package/dist/policy/context.d.ts +234 -0
- package/dist/policy/context.js +1 -0
- package/dist/policy/engine.d.ts +36 -0
- package/dist/policy/engine.js +1 -0
- package/dist/policy/guards.d.ts +150 -0
- package/dist/policy/guards.js +1 -0
- package/dist/policy/index.d.ts +13 -0
- package/dist/policy/index.js +1 -0
- package/dist/policy/opa-adapter.d.ts +41 -0
- package/dist/policy/opa-adapter.js +1 -0
- package/dist/policy/registry.d.js +0 -0
- package/dist/policy/registry.d.ts +5 -0
- package/dist/policy/registry.js +1 -0
- package/dist/policy/requirements.d.js +0 -0
- package/dist/policy/requirements.d.ts +64 -0
- package/dist/policy/requirements.js +1 -0
- package/dist/policy/spec.d.js +0 -0
- package/dist/policy/spec.d.ts +127 -0
- package/dist/policy/spec.js +150 -0
- package/dist/policy/validation.d.ts +84 -0
- package/dist/policy/validation.js +1 -0
- package/dist/presentations/index.d.js +1 -0
- package/dist/presentations/index.d.ts +2 -0
- package/dist/presentations/index.js +1 -0
- package/dist/presentations/presentations.d.js +0 -0
- package/dist/presentations/presentations.d.ts +54 -0
- package/dist/presentations/presentations.js +83 -0
- package/dist/presentations/registry.d.js +0 -0
- package/dist/presentations/registry.d.ts +6 -0
- package/dist/presentations/registry.js +1 -0
- package/dist/presentations/shim-blocknotejs.d.js +0 -0
- package/dist/presentations/shim-blocknotejs.d.ts +28 -0
- package/dist/presentations/shim-blocknotejs.js +0 -0
- package/dist/product-intent/contract-patch-intent.d.ts +100 -0
- package/dist/product-intent/contract-patch-intent.js +1 -0
- package/dist/product-intent/contract-spec-patch.d.ts +86 -0
- package/dist/product-intent/contract-spec-patch.js +1 -0
- package/dist/product-intent/evidence.d.ts +14 -0
- package/dist/product-intent/evidence.js +1 -0
- package/dist/product-intent/findings.d.ts +57 -0
- package/dist/product-intent/findings.js +1 -0
- package/dist/product-intent/impact-report.d.ts +57 -0
- package/dist/product-intent/impact-report.js +1 -0
- package/dist/product-intent/index.d.ts +13 -0
- package/dist/product-intent/index.js +1 -0
- package/dist/product-intent/insights.d.ts +62 -0
- package/dist/product-intent/insights.js +1 -0
- package/dist/product-intent/opportunity-brief.d.ts +192 -0
- package/dist/product-intent/opportunity-brief.js +1 -0
- package/dist/product-intent/problems.d.ts +59 -0
- package/dist/product-intent/problems.js +1 -0
- package/dist/product-intent/registry.d.ts +28 -0
- package/dist/product-intent/registry.js +1 -0
- package/dist/product-intent/runtime.d.ts +92 -0
- package/dist/product-intent/runtime.js +1 -0
- package/dist/product-intent/spec.d.ts +664 -0
- package/dist/product-intent/spec.js +1 -0
- package/dist/product-intent/task-pack.d.ts +98 -0
- package/dist/product-intent/task-pack.js +1 -0
- package/dist/product-intent/tickets.d.ts +67 -0
- package/dist/product-intent/tickets.js +1 -0
- package/dist/product-intent/types.d.ts +11 -0
- package/dist/product-intent/types.js +1 -0
- package/dist/product-intent/ui-wireframe.d.ts +100 -0
- package/dist/product-intent/ui-wireframe.js +1 -0
- package/dist/prompt.d.ts +49 -0
- package/dist/prompt.js +1 -0
- package/dist/promptRegistry.d.ts +11 -0
- package/dist/promptRegistry.js +1 -0
- package/dist/provider-ranking/capabilities/index.d.ts +1 -0
- package/dist/provider-ranking/capabilities/index.js +1 -0
- package/dist/provider-ranking/capabilities/providerRanking.capability.d.ts +1 -0
- package/dist/provider-ranking/capabilities/providerRanking.capability.js +1 -0
- package/dist/provider-ranking/commands/benchmarkIngest.command.d.ts +62 -0
- package/dist/provider-ranking/commands/benchmarkIngest.command.js +4 -0
- package/dist/provider-ranking/commands/benchmarkRunCustom.command.d.ts +61 -0
- package/dist/provider-ranking/commands/benchmarkRunCustom.command.js +4 -0
- package/dist/provider-ranking/commands/index.d.ts +3 -0
- package/dist/provider-ranking/commands/index.js +1 -0
- package/dist/provider-ranking/commands/rankingRefresh.command.d.ts +42 -0
- package/dist/provider-ranking/commands/rankingRefresh.command.js +4 -0
- package/dist/provider-ranking/constants.d.ts +4 -0
- package/dist/provider-ranking/constants.js +1 -0
- package/dist/provider-ranking/contracts.d.ts +624 -0
- package/dist/provider-ranking/contracts.js +1 -0
- package/dist/provider-ranking/events/benchmarkCustomCompleted.event.d.ts +71 -0
- package/dist/provider-ranking/events/benchmarkCustomCompleted.event.js +4 -0
- package/dist/provider-ranking/events/benchmarkIngested.event.d.ts +47 -0
- package/dist/provider-ranking/events/benchmarkIngested.event.js +4 -0
- package/dist/provider-ranking/events/index.d.ts +3 -0
- package/dist/provider-ranking/events/index.js +1 -0
- package/dist/provider-ranking/events/rankingUpdated.event.d.ts +39 -0
- package/dist/provider-ranking/events/rankingUpdated.event.js +4 -0
- package/dist/provider-ranking/forms/benchmarkIngest.form.d.ts +29 -0
- package/dist/provider-ranking/forms/benchmarkIngest.form.js +4 -0
- package/dist/provider-ranking/forms/benchmarkRunCustom.form.d.ts +29 -0
- package/dist/provider-ranking/forms/benchmarkRunCustom.form.js +4 -0
- package/dist/provider-ranking/forms/index.d.ts +2 -0
- package/dist/provider-ranking/forms/index.js +1 -0
- package/dist/provider-ranking/index.d.ts +10 -0
- package/dist/provider-ranking/index.js +1 -0
- package/dist/provider-ranking/presentations/index.d.ts +1 -0
- package/dist/provider-ranking/presentations/index.js +1 -0
- package/dist/provider-ranking/presentations/modelComparison.presentation.d.ts +11 -0
- package/dist/provider-ranking/presentations/modelComparison.presentation.js +4 -0
- package/dist/provider-ranking/provider-ranking.feature.d.ts +11 -0
- package/dist/provider-ranking/provider-ranking.feature.js +4 -0
- package/dist/provider-ranking/queries/benchmarkResultsList.query.d.ts +84 -0
- package/dist/provider-ranking/queries/benchmarkResultsList.query.js +4 -0
- package/dist/provider-ranking/queries/index.d.ts +3 -0
- package/dist/provider-ranking/queries/index.js +1 -0
- package/dist/provider-ranking/queries/modelProfileGet.query.d.ts +67 -0
- package/dist/provider-ranking/queries/modelProfileGet.query.js +4 -0
- package/dist/provider-ranking/queries/providerRankingGet.query.d.ts +72 -0
- package/dist/provider-ranking/queries/providerRankingGet.query.js +4 -0
- package/dist/provider-ranking/views/benchmarkResults.dataView.d.ts +108 -0
- package/dist/provider-ranking/views/benchmarkResults.dataView.js +4 -0
- package/dist/provider-ranking/views/index.d.ts +2 -0
- package/dist/provider-ranking/views/index.js +1 -0
- package/dist/provider-ranking/views/providerRankings.dataView.d.ts +90 -0
- package/dist/provider-ranking/views/providerRankings.dataView.js +4 -0
- package/dist/pwa/capabilities/index.d.ts +1 -0
- package/dist/pwa/capabilities/index.js +1 -0
- package/dist/pwa/capabilities/pwaUpdateManagement.capability.d.ts +1 -0
- package/dist/pwa/capabilities/pwaUpdateManagement.capability.js +1 -0
- package/dist/pwa/constants.d.ts +4 -0
- package/dist/pwa/constants.js +1 -0
- package/dist/pwa/contracts.d.ts +180 -0
- package/dist/pwa/contracts.js +1 -0
- package/dist/pwa/events/index.d.ts +3 -0
- package/dist/pwa/events/index.js +1 -0
- package/dist/pwa/events/pwaUpdateApplied.event.d.ts +45 -0
- package/dist/pwa/events/pwaUpdateApplied.event.js +1 -0
- package/dist/pwa/events/pwaUpdateDeferred.event.d.ts +22 -0
- package/dist/pwa/events/pwaUpdateDeferred.event.js +1 -0
- package/dist/pwa/events/pwaUpdatePrompted.event.d.ts +22 -0
- package/dist/pwa/events/pwaUpdatePrompted.event.js +1 -0
- package/dist/pwa/index.d.ts +8 -0
- package/dist/pwa/index.js +1 -0
- package/dist/pwa/pwa.feature.d.ts +1 -0
- package/dist/pwa/pwa.feature.js +1 -0
- package/dist/pwa/queries/index.d.ts +1 -0
- package/dist/pwa/queries/index.js +1 -0
- package/dist/pwa/queries/pwaUpdateCheck.query.d.ts +244 -0
- package/dist/pwa/queries/pwaUpdateCheck.query.js +1 -0
- package/dist/pwa/registry.d.ts +7 -0
- package/dist/pwa/registry.js +1 -0
- package/dist/pwa/types.d.ts +52 -0
- package/dist/pwa/types.js +6 -0
- package/dist/quality/environment.d.ts +51 -0
- package/dist/quality/environment.js +1 -0
- package/dist/quality/index.d.ts +5 -0
- package/dist/quality/index.js +1 -0
- package/dist/quality/plan.d.ts +185 -0
- package/dist/quality/plan.js +1 -0
- package/dist/quality/primitives.d.ts +143 -0
- package/dist/quality/primitives.js +1 -0
- package/dist/quality/profile.d.ts +155 -0
- package/dist/quality/profile.js +1 -0
- package/dist/quality/receipt.d.ts +237 -0
- package/dist/quality/receipt.js +1 -0
- package/dist/query/cache-status.d.js +0 -0
- package/dist/query/cache-status.d.ts +15 -0
- package/dist/query/cache-status.js +1 -0
- package/dist/query/conflict-policy.d.js +0 -0
- package/dist/query/conflict-policy.d.ts +27 -0
- package/dist/query/conflict-policy.js +1 -0
- package/dist/query/consistency.d.js +0 -0
- package/dist/query/consistency.d.ts +12 -0
- package/dist/query/consistency.js +1 -0
- package/dist/query/envelope.d.js +0 -0
- package/dist/query/envelope.d.ts +96 -0
- package/dist/query/envelope.js +0 -0
- package/dist/query/index.d.js +1 -0
- package/dist/query/index.d.ts +17 -0
- package/dist/query/index.js +1 -0
- package/dist/query/invalidation.d.js +0 -0
- package/dist/query/invalidation.d.ts +19 -0
- package/dist/query/invalidation.js +1 -0
- package/dist/query/key.d.js +0 -0
- package/dist/query/key.d.ts +10 -0
- package/dist/query/key.js +1 -0
- package/dist/query/normalize.d.js +0 -0
- package/dist/query/normalize.d.ts +49 -0
- package/dist/query/normalize.js +1 -0
- package/dist/query/query-state.d.js +0 -0
- package/dist/query/query-state.d.ts +63 -0
- package/dist/query/query-state.js +1 -0
- package/dist/query/version-token.d.js +0 -0
- package/dist/query/version-token.d.ts +20 -0
- package/dist/query/version-token.js +1 -0
- package/dist/regenerator/adapters.d.ts +15 -0
- package/dist/regenerator/adapters.js +0 -0
- package/dist/regenerator/executor.d.ts +66 -0
- package/dist/regenerator/executor.js +1 -0
- package/dist/regenerator/index.d.ts +6 -0
- package/dist/regenerator/index.js +1 -0
- package/dist/regenerator/service.d.ts +31 -0
- package/dist/regenerator/service.js +1 -0
- package/dist/regenerator/sinks.d.ts +23 -0
- package/dist/regenerator/sinks.js +1 -0
- package/dist/regenerator/types.d.ts +103 -0
- package/dist/regenerator/types.js +0 -0
- package/dist/regenerator/utils.d.ts +6 -0
- package/dist/regenerator/utils.js +1 -0
- package/dist/registry-utils.d.js +0 -0
- package/dist/registry-utils.d.ts +105 -0
- package/dist/registry-utils.js +1 -0
- package/dist/registry.d.js +0 -0
- package/dist/registry.d.ts +27 -0
- package/dist/registry.js +1 -0
- package/dist/release/index.d.ts +1 -0
- package/dist/release/index.js +1 -0
- package/dist/resources.d.js +0 -0
- package/dist/resources.d.ts +60 -0
- package/dist/resources.js +1 -0
- package/dist/results/builders.d.js +0 -0
- package/dist/results/builders.d.ts +51 -0
- package/dist/results/builders.js +1 -0
- package/dist/results/error.d.js +0 -0
- package/dist/results/error.d.ts +8 -0
- package/dist/results/error.js +1 -0
- package/dist/results/factories.d.js +0 -0
- package/dist/results/factories.d.ts +23 -0
- package/dist/results/factories.js +1 -0
- package/dist/results/guards.d.js +0 -0
- package/dist/results/guards.d.ts +7 -0
- package/dist/results/guards.js +1 -0
- package/dist/results/index.d.js +1 -0
- package/dist/results/index.d.ts +15 -0
- package/dist/results/index.js +1 -0
- package/dist/results/normalize.d.js +0 -0
- package/dist/results/normalize.d.ts +9 -0
- package/dist/results/normalize.js +1 -0
- package/dist/results/problem.d.js +0 -0
- package/dist/results/problem.d.ts +2 -0
- package/dist/results/problem.js +1 -0
- package/dist/results/result-specs.d.js +0 -0
- package/dist/results/result-specs.d.ts +73 -0
- package/dist/results/result-specs.js +0 -0
- package/dist/results/standard-specs.d.js +0 -0
- package/dist/results/standard-specs.d.ts +90 -0
- package/dist/results/standard-specs.js +1 -0
- package/dist/results/status.d.js +0 -0
- package/dist/results/status.d.ts +3 -0
- package/dist/results/status.js +1 -0
- package/dist/results/types.d.js +0 -0
- package/dist/results/types.d.ts +99 -0
- package/dist/results/types.js +0 -0
- package/dist/results/value-utils.d.js +0 -0
- package/dist/results/value-utils.d.ts +5 -0
- package/dist/results/value-utils.js +1 -0
- package/dist/rich-content/builders.d.ts +19 -0
- package/dist/rich-content/builders.js +3 -0
- package/dist/rich-content/index.d.ts +4 -0
- package/dist/rich-content/index.js +1 -0
- package/dist/rich-content/preferences.d.ts +7 -0
- package/dist/rich-content/preferences.js +0 -0
- package/dist/rich-content/redaction.d.ts +5 -0
- package/dist/rich-content/redaction.js +1 -0
- package/dist/rich-content/types.d.ts +69 -0
- package/dist/rich-content/types.js +0 -0
- package/dist/rich-reference/__fixtures__/cross-adapter-fixture.d.ts +26 -0
- package/dist/rich-reference/__fixtures__/cross-adapter-fixture.js +1 -0
- package/dist/rich-reference/agent-export.d.js +0 -0
- package/dist/rich-reference/agent-export.d.ts +59 -0
- package/dist/rich-reference/agent-export.js +1 -0
- package/dist/rich-reference/canonical-serializer.d.js +0 -0
- package/dist/rich-reference/canonical-serializer.d.ts +29 -0
- package/dist/rich-reference/canonical-serializer.js +1 -0
- package/dist/rich-reference/contracts.d.ts +4 -0
- package/dist/rich-reference/contracts.js +1 -0
- package/dist/rich-reference/define-kind.d.js +0 -0
- package/dist/rich-reference/define-kind.d.ts +46 -0
- package/dist/rich-reference/define-kind.js +1 -0
- package/dist/rich-reference/denial-token-shape.d.js +0 -0
- package/dist/rich-reference/denial-token-shape.d.ts +16 -0
- package/dist/rich-reference/denial-token-shape.js +1 -0
- package/dist/rich-reference/denial-token.d.js +0 -0
- package/dist/rich-reference/denial-token.d.ts +11 -0
- package/dist/rich-reference/denial-token.js +1 -0
- package/dist/rich-reference/detector.d.js +0 -0
- package/dist/rich-reference/detector.d.ts +19 -0
- package/dist/rich-reference/detector.js +1 -0
- package/dist/rich-reference/handler.d.js +0 -0
- package/dist/rich-reference/handler.d.ts +49 -0
- package/dist/rich-reference/handler.js +0 -0
- package/dist/rich-reference/index.d.js +1 -0
- package/dist/rich-reference/index.d.ts +38 -0
- package/dist/rich-reference/index.js +19 -0
- package/dist/rich-reference/kinds/code-symbol.d.js +1 -0
- package/dist/rich-reference/kinds/code-symbol.d.ts +39 -0
- package/dist/rich-reference/kinds/code-symbol.js +1 -0
- package/dist/rich-reference/kinds/database-record.d.js +1 -0
- package/dist/rich-reference/kinds/database-record.d.ts +29 -0
- package/dist/rich-reference/kinds/database-record.js +1 -0
- package/dist/rich-reference/kinds/entity.d.js +1 -0
- package/dist/rich-reference/kinds/entity.d.ts +62 -0
- package/dist/rich-reference/kinds/entity.js +27 -0
- package/dist/rich-reference/kinds/file.d.js +1 -0
- package/dist/rich-reference/kinds/file.d.ts +26 -0
- package/dist/rich-reference/kinds/file.js +1 -0
- package/dist/rich-reference/kinds/index.d.js +1 -0
- package/dist/rich-reference/kinds/index.d.ts +70 -0
- package/dist/rich-reference/kinds/index.js +1 -0
- package/dist/rich-reference/kinds/link.d.js +1 -0
- package/dist/rich-reference/kinds/link.d.ts +24 -0
- package/dist/rich-reference/kinds/link.js +1 -0
- package/dist/rich-reference/kinds/media.d.js +1 -0
- package/dist/rich-reference/kinds/media.d.ts +34 -0
- package/dist/rich-reference/kinds/media.js +1 -0
- package/dist/rich-reference/kinds/object.d.js +1 -0
- package/dist/rich-reference/kinds/object.d.ts +24 -0
- package/dist/rich-reference/kinds/object.js +1 -0
- package/dist/rich-reference/markdown-envelope.d.js +0 -0
- package/dist/rich-reference/markdown-envelope.d.ts +73 -0
- package/dist/rich-reference/markdown-envelope.js +1 -0
- package/dist/rich-reference/ports/audit-sink.d.js +0 -0
- package/dist/rich-reference/ports/audit-sink.d.ts +32 -0
- package/dist/rich-reference/ports/audit-sink.js +0 -0
- package/dist/rich-reference/ports/coarse-preferences-provider.d.js +0 -0
- package/dist/rich-reference/ports/coarse-preferences-provider.d.ts +39 -0
- package/dist/rich-reference/ports/coarse-preferences-provider.js +0 -0
- package/dist/rich-reference/ports/durable-audit-sink.d.js +0 -0
- package/dist/rich-reference/ports/durable-audit-sink.d.ts +46 -0
- package/dist/rich-reference/ports/durable-audit-sink.js +0 -0
- package/dist/rich-reference/ports/index.d.js +0 -0
- package/dist/rich-reference/ports/index.d.ts +12 -0
- package/dist/rich-reference/ports/index.js +0 -0
- package/dist/rich-reference/ports/kind-policy-provider.d.js +0 -0
- package/dist/rich-reference/ports/kind-policy-provider.d.ts +35 -0
- package/dist/rich-reference/ports/kind-policy-provider.js +0 -0
- package/dist/rich-reference/ports/subject-provider.d.js +0 -0
- package/dist/rich-reference/ports/subject-provider.d.ts +40 -0
- package/dist/rich-reference/ports/subject-provider.js +0 -0
- package/dist/rich-reference/redaction.d.js +0 -0
- package/dist/rich-reference/redaction.d.ts +23 -0
- package/dist/rich-reference/redaction.js +1 -0
- package/dist/rich-reference/registry.d.js +0 -0
- package/dist/rich-reference/registry.d.ts +35 -0
- package/dist/rich-reference/registry.js +1 -0
- package/dist/rich-reference/runtime/dev-invariants.d.ts +18 -0
- package/dist/rich-reference/runtime/dev-invariants.js +1 -0
- package/dist/rich-reference/runtime/dispatch.d.ts +48 -0
- package/dist/rich-reference/runtime/dispatch.js +1 -0
- package/dist/rich-reference/runtime/index.d.ts +16 -0
- package/dist/rich-reference/runtime/index.js +1 -0
- package/dist/rich-reference/runtime/redaction-enforcer.d.ts +21 -0
- package/dist/rich-reference/runtime/redaction-enforcer.js +1 -0
- package/dist/rich-reference/runtime/runtime.d.ts +27 -0
- package/dist/rich-reference/runtime/runtime.js +1 -0
- package/dist/rich-reference/types.d.js +0 -0
- package/dist/rich-reference/types.d.ts +66 -0
- package/dist/rich-reference/types.js +1 -0
- package/dist/runtime-adapters.d.js +0 -0
- package/dist/runtime-adapters.d.ts +25 -0
- package/dist/runtime-adapters.js +1 -0
- package/dist/schema-to-markdown.d.ts +56 -0
- package/dist/schema-to-markdown.js +10 -0
- package/dist/self-improving-system/constants.d.ts +14 -0
- package/dist/self-improving-system/constants.js +1 -0
- package/dist/self-improving-system/events.d.ts +1007 -0
- package/dist/self-improving-system/events.js +1 -0
- package/dist/self-improving-system/index.d.ts +7 -0
- package/dist/self-improving-system/index.js +1 -0
- package/dist/self-improving-system/operation-definitions.d.ts +1751 -0
- package/dist/self-improving-system/operation-definitions.js +1 -0
- package/dist/self-improving-system/operations.d.ts +1726 -0
- package/dist/self-improving-system/operations.js +1 -0
- package/dist/self-improving-system/registry.d.ts +9 -0
- package/dist/self-improving-system/registry.js +1 -0
- package/dist/self-improving-system/transport.d.ts +10 -0
- package/dist/self-improving-system/transport.js +1 -0
- package/dist/self-improving-system/types.d.ts +136 -0
- package/dist/self-improving-system/types.js +1 -0
- package/dist/self-improving-system/validation.d.ts +274 -0
- package/dist/self-improving-system/validation.js +1 -0
- package/dist/serialization/index.d.ts +10 -0
- package/dist/serialization/index.js +1 -0
- package/dist/serialization/serializers.d.ts +35 -0
- package/dist/serialization/serializers.js +1 -0
- package/dist/serialization/types.d.ts +100 -0
- package/dist/serialization/types.js +0 -0
- package/dist/shared/attach-context.d.js +0 -0
- package/dist/shared/attach-context.d.ts +83 -0
- package/dist/shared/attach-context.js +1 -0
- package/dist/shared/audit.d.js +0 -0
- package/dist/shared/audit.d.ts +93 -0
- package/dist/shared/audit.js +1 -0
- package/dist/shared/idempotency-shape.d.js +0 -0
- package/dist/shared/idempotency-shape.d.ts +63 -0
- package/dist/shared/idempotency-shape.js +1 -0
- package/dist/shared/idempotency.d.ts +64 -0
- package/dist/shared/idempotency.js +1 -0
- package/dist/shared/index.d.js +1 -0
- package/dist/shared/index.d.ts +39 -0
- package/dist/shared/index.js +1 -0
- package/dist/shared/window.d.js +0 -0
- package/dist/shared/window.d.ts +81 -0
- package/dist/shared/window.js +1 -0
- package/dist/shared-entities/index.d.ts +8 -0
- package/dist/shared-entities/index.js +1 -0
- package/dist/shared-entities/person.d.ts +50 -0
- package/dist/shared-entities/person.js +12 -0
- package/dist/shared-entities/project.d.ts +53 -0
- package/dist/shared-entities/project.js +4 -0
- package/dist/shared-entities/resource.d.ts +36 -0
- package/dist/shared-entities/resource.js +4 -0
- package/dist/shared-entities/task-validators.d.ts +24 -0
- package/dist/shared-entities/task-validators.js +1 -0
- package/dist/shared-entities/task.d.js +0 -0
- package/dist/shared-entities/task.d.ts +128 -0
- package/dist/shared-entities/task.js +1 -0
- package/dist/shared-entities/team.d.ts +44 -0
- package/dist/shared-entities/team.js +12 -0
- package/dist/sop/generation-sources.d.ts +57 -0
- package/dist/sop/generation-sources.js +5 -0
- package/dist/sop/index.d.ts +5 -0
- package/dist/sop/index.js +1 -0
- package/dist/sop/operations.d.ts +566 -0
- package/dist/sop/operations.js +1 -0
- package/dist/sop/sop.feature.d.ts +11 -0
- package/dist/sop/sop.feature.js +3 -0
- package/dist/sop/types.d.ts +144 -0
- package/dist/sop/types.js +0 -0
- package/dist/sop/validation.d.ts +9 -0
- package/dist/sop/validation.js +1 -0
- package/dist/structured-data/derive.d.js +0 -0
- package/dist/structured-data/derive.d.ts +61 -0
- package/dist/structured-data/derive.js +1 -0
- package/dist/structured-data/index.d.js +1 -0
- package/dist/structured-data/index.d.ts +3 -0
- package/dist/structured-data/index.js +1 -0
- package/dist/structured-data/kinds.d.js +0 -0
- package/dist/structured-data/kinds.d.ts +143 -0
- package/dist/structured-data/kinds.js +1 -0
- package/dist/structured-data/schema-guards.d.ts +1 -0
- package/dist/structured-data/schema-guards.js +0 -0
- package/dist/structured-data/validate.d.js +0 -0
- package/dist/structured-data/validate.d.ts +19 -0
- package/dist/structured-data/validate.js +1 -0
- package/dist/telemetry/anomaly.d.js +0 -0
- package/dist/telemetry/anomaly.d.ts +22 -0
- package/dist/telemetry/anomaly.js +1 -0
- package/dist/telemetry/delivery-v2.d.js +0 -0
- package/dist/telemetry/delivery-v2.d.ts +152 -0
- package/dist/telemetry/delivery-v2.js +1 -0
- package/dist/telemetry/index.d.js +1 -0
- package/dist/telemetry/index.d.ts +5 -0
- package/dist/telemetry/index.js +1 -0
- package/dist/telemetry/spec.d.js +0 -0
- package/dist/telemetry/spec.d.ts +89 -0
- package/dist/telemetry/spec.js +1 -0
- package/dist/telemetry/tracker.d.js +0 -0
- package/dist/telemetry/tracker.d.ts +48 -0
- package/dist/telemetry/tracker.js +1 -0
- package/dist/telemetry/v2-primitives.d.js +0 -0
- package/dist/telemetry/v2-primitives.d.ts +113 -0
- package/dist/telemetry/v2-primitives.js +1 -0
- package/dist/telemetry/v2-validation.d.js +0 -0
- package/dist/telemetry/v2-validation.d.ts +3 -0
- package/dist/telemetry/v2-validation.js +1 -0
- package/dist/telemetry/v2.d.js +1 -0
- package/dist/telemetry/v2.d.ts +520 -0
- package/dist/telemetry/v2.js +1 -0
- package/dist/tests/index.d.ts +2 -0
- package/dist/tests/index.js +1 -0
- package/dist/tests/runner.d.ts +38 -0
- package/dist/tests/runner.js +1 -0
- package/dist/tests/spec.d.js +0 -0
- package/dist/tests/spec.d.ts +84 -0
- package/dist/tests/spec.js +1 -0
- package/dist/themes.d.js +1 -0
- package/dist/themes.d.ts +248 -0
- package/dist/themes.js +1 -0
- package/dist/themes.platform-validation.d.js +0 -0
- package/dist/themes.platform-validation.d.ts +7 -0
- package/dist/themes.platform-validation.js +1 -0
- package/dist/themes.validation.d.js +0 -0
- package/dist/themes.validation.d.ts +18 -0
- package/dist/themes.validation.js +1 -0
- package/dist/translations/catalog.d.js +0 -0
- package/dist/translations/catalog.d.ts +25 -0
- package/dist/translations/catalog.js +0 -0
- package/dist/translations/diagnostics.d.js +0 -0
- package/dist/translations/diagnostics.d.ts +92 -0
- package/dist/translations/diagnostics.js +1 -0
- package/dist/translations/i18n-factory-snapshot.d.js +0 -0
- package/dist/translations/i18n-factory-snapshot.d.ts +86 -0
- package/dist/translations/i18n-factory-snapshot.js +1 -0
- package/dist/translations/i18n-factory.d.js +0 -0
- package/dist/translations/i18n-factory.d.ts +149 -0
- package/dist/translations/i18n-factory.js +1 -0
- package/dist/translations/index.d.js +1 -0
- package/dist/translations/index.d.ts +48 -0
- package/dist/translations/index.js +1 -0
- package/dist/translations/locale.d.js +0 -0
- package/dist/translations/locale.d.ts +9 -0
- package/dist/translations/locale.js +1 -0
- package/dist/translations/registry.d.js +0 -0
- package/dist/translations/registry.d.ts +179 -0
- package/dist/translations/registry.js +1 -0
- package/dist/translations/spec.d.js +0 -0
- package/dist/translations/spec.d.ts +296 -0
- package/dist/translations/spec.js +1 -0
- package/dist/translations/tenant.d.js +0 -0
- package/dist/translations/tenant.d.ts +11 -0
- package/dist/translations/tenant.js +0 -0
- package/dist/translations/validation.d.js +0 -0
- package/dist/translations/validation.d.ts +165 -0
- package/dist/translations/validation.js +1 -0
- package/dist/types.d.js +0 -0
- package/dist/types.d.ts +310 -0
- package/dist/types.js +1 -0
- package/dist/utils/safe-json.d.ts +10 -0
- package/dist/utils/safe-json.js +1 -0
- package/dist/versioning/index.d.js +1 -0
- package/dist/versioning/index.d.ts +12 -0
- package/dist/versioning/index.js +1 -0
- package/dist/versioning/refs.d.js +0 -0
- package/dist/versioning/refs.d.ts +176 -0
- package/dist/versioning/refs.js +1 -0
- package/dist/versioning/release-types.d.js +0 -0
- package/dist/versioning/release-types.d.ts +142 -0
- package/dist/versioning/release-types.js +0 -0
- package/dist/versioning/release-utils.d.js +0 -0
- package/dist/versioning/release-utils.d.ts +5 -0
- package/dist/versioning/release-utils.js +1 -0
- package/dist/versioning/schema.d.js +0 -0
- package/dist/versioning/schema.d.ts +24 -0
- package/dist/versioning/schema.js +1 -0
- package/dist/versioning/types.d.js +0 -0
- package/dist/versioning/types.d.ts +130 -0
- package/dist/versioning/types.js +1 -0
- package/dist/versioning/utils.d.js +0 -0
- package/dist/versioning/utils.d.ts +93 -0
- package/dist/versioning/utils.js +1 -0
- package/dist/visual-scenarios/index.d.ts +4 -0
- package/dist/visual-scenarios/index.js +1 -0
- package/dist/visual-scenarios/platform.d.ts +2 -0
- package/dist/visual-scenarios/platform.js +1 -0
- package/dist/visual-scenarios/registry.d.js +0 -0
- package/dist/visual-scenarios/registry.d.ts +6 -0
- package/dist/visual-scenarios/registry.js +1 -0
- package/dist/visual-scenarios/spec.d.js +0 -0
- package/dist/visual-scenarios/spec.d.ts +94 -0
- package/dist/visual-scenarios/spec.js +1 -0
- package/dist/visual-scenarios/validation-authoring.d.ts +5 -0
- package/dist/visual-scenarios/validation-authoring.js +1 -0
- package/dist/visual-scenarios/validation.d.ts +17 -0
- package/dist/visual-scenarios/validation.js +1 -0
- package/dist/visualizations/index.d.ts +4 -0
- package/dist/visualizations/index.js +1 -0
- package/dist/visualizations/registry.d.js +0 -0
- package/dist/visualizations/registry.d.ts +6 -0
- package/dist/visualizations/registry.js +1 -0
- package/dist/visualizations/spec.d.js +0 -0
- package/dist/visualizations/spec.d.ts +16 -0
- package/dist/visualizations/spec.js +1 -0
- package/dist/visualizations/types.d.js +0 -0
- package/dist/visualizations/types.d.ts +187 -0
- package/dist/visualizations/types.js +1 -0
- package/dist/workflow/adapters/db-adapter.d.ts +43 -0
- package/dist/workflow/adapters/db-adapter.js +1 -0
- package/dist/workflow/adapters/file-adapter.d.ts +10 -0
- package/dist/workflow/adapters/file-adapter.js +1 -0
- package/dist/workflow/adapters/index.d.ts +3 -0
- package/dist/workflow/adapters/index.js +1 -0
- package/dist/workflow/adapters/memory-store.d.ts +13 -0
- package/dist/workflow/adapters/memory-store.js +1 -0
- package/dist/workflow/context.d.ts +217 -0
- package/dist/workflow/context.js +1 -0
- package/dist/workflow/dag-utils.d.ts +18 -0
- package/dist/workflow/dag-utils.js +1 -0
- package/dist/workflow/expression.d.ts +6 -0
- package/dist/workflow/expression.js +1 -0
- package/dist/workflow/index.d.ts +10 -0
- package/dist/workflow/index.js +1 -0
- package/dist/workflow/runner.d.ts +103 -0
- package/dist/workflow/runner.js +1 -0
- package/dist/workflow/sla-monitor.d.ts +16 -0
- package/dist/workflow/sla-monitor.js +1 -0
- package/dist/workflow/spec.d.js +0 -0
- package/dist/workflow/spec.d.ts +203 -0
- package/dist/workflow/spec.js +1 -0
- package/dist/workflow/state.d.ts +46 -0
- package/dist/workflow/state.js +0 -0
- package/dist/workflow/validation-workflow-devkit.d.ts +3 -0
- package/dist/workflow/validation-workflow-devkit.js +1 -0
- package/dist/workflow/validation.d.ts +93 -0
- package/dist/workflow/validation.js +1 -0
- package/dist/workflow/workflow-devkit.d.js +0 -0
- package/dist/workflow/workflow-devkit.d.ts +74 -0
- package/dist/workflow/workflow-devkit.js +0 -0
- package/dist/workflow/workflow-sdk.d.ts +8 -0
- package/dist/workflow/workflow-sdk.js +1 -0
- package/dist/workspace-config/contractsrc-schema.d.ts +226 -0
- package/dist/workspace-config/contractsrc-schema.js +1 -0
- package/dist/workspace-config/contractsrc-types.d.ts +707 -0
- package/dist/workspace-config/contractsrc-types.js +0 -0
- package/dist/workspace-config/environment-validation-alias.d.ts +3 -0
- package/dist/workspace-config/environment-validation-alias.js +1 -0
- package/dist/workspace-config/environment-validation.d.ts +4 -0
- package/dist/workspace-config/environment-validation.js +1 -0
- package/dist/workspace-config/environment.d.ts +77 -0
- package/dist/workspace-config/environment.js +1 -0
- package/dist/workspace-config/index.d.ts +13 -0
- package/dist/workspace-config/index.js +1 -0
- package/dist/workspace-config/lssm-os-config.fixture.d.ts +2 -0
- package/dist/workspace-config/lssm-os-config.fixture.js +1 -0
- package/dist/workspace-config/lssm-os-constraints.d.ts +14 -0
- package/dist/workspace-config/lssm-os-constraints.js +1 -0
- package/dist/workspace-config/lssm-os-extension-schema.d.ts +3 -0
- package/dist/workspace-config/lssm-os-extension-schema.js +1 -0
- package/dist/workspace-config/lssm-os-inheritance.d.ts +3 -0
- package/dist/workspace-config/lssm-os-inheritance.js +1 -0
- package/dist/workspace-config/lssm-os-policy-merge.d.ts +3 -0
- package/dist/workspace-config/lssm-os-policy-merge.js +1 -0
- package/dist/workspace-config/lssm-os-provider-merge.d.ts +3 -0
- package/dist/workspace-config/lssm-os-provider-merge.js +1 -0
- package/dist/workspace-config/lssm-os-schema.d.ts +20 -0
- package/dist/workspace-config/lssm-os-schema.js +1 -0
- package/dist/workspace-config/lssm-os-secrets.d.ts +2 -0
- package/dist/workspace-config/lssm-os-secrets.js +1 -0
- package/dist/workspace-config/lssm-os-types.d.ts +125 -0
- package/dist/workspace-config/lssm-os-types.js +1 -0
- package/package.json +22130 -0
|
File without changes
|
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
import{defineFeature as e}from"../features/index.js";import{DOCS_DOMAIN as n,DOCS_OWNERS as t,DOCS_STABILITY as a,DOCS_TAGS as o}from"./constants.js";export const DocsFeature=e({meta:{key:"platform.docs",version:"1.0.0",title:"Documentation System",description:"Generate, publish, search, and reference contract documentation and DocBlocks",domain:n,owners:t,tags:[...o],stability:a},operations:[{key:"docs.generate",version:"1.0.0"},{key:"docs.publish",version:"1.0.0"},{key:"docs_search",version:"1.0.0"},{key:"docs.contract.reference",version:"1.0.0"}],events:[{key:"docs.generated",version:"1.0.0"},{key:"docs.published",version:"1.0.0"}],presentations:[{key:"docs.layout",version:"1.0.0"},{key:"docs.reference.page",version:"1.0.0"}],capabilities:{provides:[{key:"docs.system",version:"1.0.0"}]},dataViews:[{key:"docs.index.view",version:"1.0.0"},{key:"docs.contract.reference.view",version:"1.0.0"},{key:"docs.examples.catalog.view",version:"1.0.0"}],forms:[{key:"docs_search.form",version:"1.0.0"}]}),DocsSystemDocBlock={id:"docs.tech.docs-system",title:"Docs system overview",summary:"How ContractSpec generates, indexes, and presents documentation.",kind:"reference",visibility:"public",route:"/docs/tech/docs/system",tags:["docs","system","contracts"],body:`# Docs system overview
|
|
2
|
+
|
|
3
|
+
ContractSpec treats documentation as a first-class output of your specs. The docs system combines contracts, DocBlocks, manifests, and presentations into a consistent docs surface.
|
|
4
|
+
`},accessibility_wcag_compliance_specs_DocBlocks=[{id:"docs.accessibility_wcag_compliance_specs",title:"Accessibility & WCAG Compliance — **specs.md**",summary:"> **Goal:** Ship interfaces that are usable by everyone, by default. This spec sets non‑negotiable rules, checklists, and CI gates to meet **WCAG 2.2 AA** (aim for AAA where low‑cost), align with **EN 301 549** (EU), and keep parity on **web (Next.js)** and **mobile (Expo/React Native)**.",kind:"reference",visibility:"public",route:"/docs/accessibility_wcag_compliance_specs",tags:["accessibility_wcag_compliance_specs"],body:`# Accessibility & WCAG Compliance — **specs.md**
|
|
5
|
+
|
|
6
|
+
> **Goal:** Ship interfaces that are usable by everyone, by default. This spec sets non‑negotiable rules, checklists, and CI gates to meet **WCAG 2.2 AA** (aim for AAA where low‑cost), align with **EN 301 549** (EU), and keep parity on **web (Next.js)** and **mobile (Expo/React Native)**.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0) Scope & Principles
|
|
11
|
+
|
|
12
|
+
- **Standards:** WCAG 2.2 AA (incl. new 2.2 SCs: Focus Not Obscured, Focus Appearance, Target Size, Dragging Movements, Accessible Authentication, Redundant Entry). EN 301 549 compliance by conformance to WCAG.
|
|
13
|
+
- **Principles:** Perceivable, Operable, Understandable, Robust (POUR).
|
|
14
|
+
- **Rule of ARIA:** “No ARIA is better than bad ARIA.” Prefer native elements.
|
|
15
|
+
- **Definition of Done (DoD):** No Critical/Major a11y issues in CI; keyboard complete; SR (screen reader) smoke test passed; contrasts pass; acceptance criteria below satisfied.
|
|
16
|
+
- **Repo Alignment:** Web apps use **Radix Primitives + shadcn** wrappers centralized in \`packages/lssm/libs/ui-kit-web\`. Prefer those components over per‑app duplicates (\`packages/*/apps/*/src/components/ui\`). When missing, add to \`ui-kit-web\` first, then adopt app‑side.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 1) Design Requirements (Design System & Tokens)
|
|
21
|
+
|
|
22
|
+
**1.1 Color & Contrast**
|
|
23
|
+
|
|
24
|
+
- Body text, icons essential to meaning: **≥ 4.5:1**; large text (≥ 18.66px regular / 14px bold): **≥ 3:1**.
|
|
25
|
+
- Interactive states (default/hover/active/disabled/focus) must maintain contrast **≥ 3:1** against adjacent colors; text within components follows text ratios.
|
|
26
|
+
- Provide light & dark themes with tokens that guarantee minimums. **Never rely solely on color** to convey meaning; pair with text, shape, or icon.
|
|
27
|
+
|
|
28
|
+
**1.2 Focus Indicators (WCAG 2.4.11/12)**
|
|
29
|
+
|
|
30
|
+
- Every interactive element has a **visible focus** with clear offset; indicator contrast **≥ 3:1** vs adjacent colors and indicator **area ≥ 2 CSS px** thick.
|
|
31
|
+
- Focus **must not be obscured** by sticky headers/footers or scroll containers.
|
|
32
|
+
|
|
33
|
+
**1.3 Motion & Preferences**
|
|
34
|
+
|
|
35
|
+
- Respect \`prefers-reduced-motion\`: suppress large parallax, auto‑animations; provide instant alternatives.
|
|
36
|
+
- Avoid motion that could trigger vestibular issues; under PRM, use fade/scale under **150ms**.
|
|
37
|
+
|
|
38
|
+
**1.4 Target Size (2.5.8)**
|
|
39
|
+
|
|
40
|
+
- Hit areas **≥ 24×24 CSS px** (web) and **≥ 44×44 dp** (mobile) unless exempt.
|
|
41
|
+
|
|
42
|
+
**1.5 Typography & Layout**
|
|
43
|
+
|
|
44
|
+
- Support zoom to **400%** without loss of content/functionality; responsive reflow at **320 CSS px** width.
|
|
45
|
+
- Maintain clear heading hierarchy (h1…h6), one **h1** per view.
|
|
46
|
+
|
|
47
|
+
- Repository baseline (Web): default body text uses Tailwind \`text-lg\` (≈18px). As of 2025‑09‑20, the repository bumped all Tailwind typography scale usages by +1 step (e.g., \`text-sm\`→\`text-base\`, \`text-base\`→\`text-lg\`, …, \`text-8xl\`→\`text-9xl\`). For long‑form content, default to \`prose-lg\`.
|
|
48
|
+
- Do not use \`text-xs\` for body copy. Reserve \`text-sm\` only for non‑essential meta (timestamps, fine print) while ensuring contrast and touch targets remain compliant.
|
|
49
|
+
- When increasing font size, ensure line height supports readability. Prefer Tailwind defaults or \`leading-relaxed\`/\`leading-7\` for body text where dense blocks appear.
|
|
50
|
+
|
|
51
|
+
**1.6 Iconography & Imagery**
|
|
52
|
+
|
|
53
|
+
- Decorative images: \`alt=""\` or \`aria-hidden="true"\`.
|
|
54
|
+
- Informative images: concise, specific **alt**; complex charts require a **data table or long description**.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## 2) Content Requirements (UX Writing)
|
|
59
|
+
|
|
60
|
+
- Links say **what happens** (avoid “click here”).
|
|
61
|
+
- Buttons start with verbs; avoid ambiguous labels.
|
|
62
|
+
- Form labels are **visible**; placeholders are **not labels**.
|
|
63
|
+
- Error messages: human + programmatic association; avoid color‑only.
|
|
64
|
+
- Authentication: allow **copy/paste**, password managers, and avoid cognitive tests alone (**3.3.7/3.3.8/3.3.9**).
|
|
65
|
+
- Avoid CAPTCHAs that block users; if unavoidable, provide **multiple alternatives** (logic-free).
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## 3) Engineering Requirements (Web — Next.js/React)
|
|
70
|
+
|
|
71
|
+
> Use and extend \`packages/lssm/libs/ui-kit-web\` as the default UI surface. It wraps **Radix** primitives with sensible a11y defaults (focus rings, roles, keyboard, ARIA binding). When a gap exists, add it to \`ui-kit-web\` first.
|
|
72
|
+
|
|
73
|
+
**3.1 Semantics & Landmarks**
|
|
74
|
+
|
|
75
|
+
- Use native elements: \`<button>\`, \`<a href>\`, \`<label for>\`, \`<fieldset>\`, \`<legend>\`, \`<table>\`, etc.
|
|
76
|
+
- Landmarks per page: \`header\`, \`nav\`, \`main\`, \`aside\`, \`footer\`. Provide a **Skip to main content** link.
|
|
77
|
+
- Provide a **Route Announcer** (\`aria-live="polite"\`) and move focus to page **h1** after navigation.
|
|
78
|
+
|
|
79
|
+
**3.2 Keyboard**
|
|
80
|
+
|
|
81
|
+
- All functionality available with keyboard alone. Tab order follows DOM/visual order; **no keyboard traps**.
|
|
82
|
+
- Common bindings:
|
|
83
|
+
- Space/Enter → activate button; Enter on link;
|
|
84
|
+
- Esc closes dialogs/menus;
|
|
85
|
+
- Arrow keys for lists/menus/tablists with **roving tabindex**.
|
|
86
|
+
|
|
87
|
+
**3.3 Focus Management**
|
|
88
|
+
|
|
89
|
+
- On route change (Next.js), move focus to the page \`<h1>\` or container and announce via a live region.
|
|
90
|
+
- Dialogs/menus: **trap focus** inside; return focus to invoking control on close.
|
|
91
|
+
- Don’t steal focus except after explicit user action.
|
|
92
|
+
|
|
93
|
+
**3.4 Forms**
|
|
94
|
+
|
|
95
|
+
- Each input has a \`<label>\` or \`aria-label\`. Group related inputs with \`<fieldset><legend>\`.
|
|
96
|
+
- Associate errors via \`aria-describedby\` or inline IDs; announce with \`role="alert"\` (assertive only for critical).
|
|
97
|
+
- Provide **autocomplete** tokens for known fields; show **inline validation** and do not block on **onBlur** alone.
|
|
98
|
+
|
|
99
|
+
**3.5 ARIA Usage**
|
|
100
|
+
|
|
101
|
+
- Only when needed; match patterns (dialog, menu, combobox, tablist, listbox) per ARIA Authoring Practices.
|
|
102
|
+
- Ensure **name/role/value** are programmatically determinable.
|
|
103
|
+
|
|
104
|
+
**3.6 Media**
|
|
105
|
+
|
|
106
|
+
- Videos: **captions**; provide **transcripts** for audio; audio descriptions for essential visual info.
|
|
107
|
+
- No auto‑playing audio. Auto‑playing video must be muted and pausable; provide controls.
|
|
108
|
+
|
|
109
|
+
**3.7 Tables & Data**
|
|
110
|
+
|
|
111
|
+
- Use \`<th scope>\` for headers; captions via \`<caption>\`; announce sorting via \`aria-sort\`.
|
|
112
|
+
- Provide CSV/JSON export where charts are primary.
|
|
113
|
+
|
|
114
|
+
**3.8 Performance & Robustness**
|
|
115
|
+
|
|
116
|
+
- Avoid content shifts that move focus; reserve space or use skeletons.
|
|
117
|
+
- Maintain accessible names through hydration/SSR; avoid \`dangerouslySetInnerHTML\` where possible.
|
|
118
|
+
|
|
119
|
+
**3.9 Next.js specifics**
|
|
120
|
+
|
|
121
|
+
- Use \`next/link\` for navigation; ensure links are **links**, not buttons.
|
|
122
|
+
- \`next/image\` must include **alt** (empty if decorative).
|
|
123
|
+
- Announce route changes with a **global live region** and shift focus to the new view.
|
|
124
|
+
|
|
125
|
+
**3.10 Accessibility library integration**
|
|
126
|
+
|
|
127
|
+
- Import \`@lssm/lib.accessibility\` at app root. It auto-imports its \`styles.css\` via the package entry; ensure bundlers keep CSS side effects. If your app tree-shakes CSS, explicitly import the stylesheet once in your root layout:
|
|
128
|
+
|
|
129
|
+
\`\`\`tsx
|
|
130
|
+
// app/layout.tsx
|
|
131
|
+
import '@lssm/lib.accessibility'; // includes tokens and provider exports
|
|
132
|
+
// or if needed: import '@lssm/lib.accessibility/src/styles.css';
|
|
133
|
+
\`\`\`
|
|
134
|
+
|
|
135
|
+
- Wrap the app with \`AccessibilityProvider\` and include an element with \`id="main"\` for the skip link target.
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## 3b) lssm/ui-kit-web — Component Patterns & Defaults
|
|
140
|
+
|
|
141
|
+
> Source: \`packages/lssm/libs/ui-kit-web/ui/*\`
|
|
142
|
+
|
|
143
|
+
- **Button/Input/Textarea**: Built‑in \`focus-visible\` rings; ensure visible labels via \`FormLabel\` or \`aria-label\`.
|
|
144
|
+
- **Form** (\`form.tsx\`): \`FormControl\` wires \`aria-invalid\` and \`aria-describedby\` to \`FormMessage\` and \`FormDescription\`. Prefer \`FormMessage\` for inline errors. Add \`role="alert"\` only for critical.
|
|
145
|
+
- **Dialog/Sheet/Dropdown**: Use Radix wrappers for focus‑trap and return‑focus. Provide \`DialogTitle\` + \`DialogDescription\` for name/description.
|
|
146
|
+
- **Select/Combobox**: Prefer \`SelectTrigger\` with visible label; for icon‑only triggers, supply \`aria-label\`. Document examples in each app.
|
|
147
|
+
- **Tabs**: Use \`TabsList\`, \`TabsTrigger\`, \`TabsContent\`; names are programmatically determinable.
|
|
148
|
+
- **Toast/Toaster**: Prefer non‑blocking announcements; map critical to assertive region; include action buttons with clear labels.
|
|
149
|
+
- **Table**: Use \`TableCaption\`; ensure \`TableHead\` cells use proper \`scope\`. Provide \`aria-sort\` on sortable headers.
|
|
150
|
+
- **Utilities to add (repo action)**:
|
|
151
|
+
- \`SkipLink\` component and pattern in layouts.
|
|
152
|
+
- \`RouteAnnouncer\` (\`aria-live="polite"\`) and **FocusOnRouteChange** helper.
|
|
153
|
+
- \`VisuallyHidden\` wrapper (Radix visually-hidden or minimal utility).
|
|
154
|
+
- \`useReducedMotion\` helper; honor in animated components.
|
|
155
|
+
- Touch‑size variants (≥44×44) for interactive atoms.
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## 4) Engineering Requirements (Mobile — Expo/React Native)
|
|
160
|
+
|
|
161
|
+
- Set \`accessibilityLabel\`, \`accessibilityHint\`, and \`accessibilityRole\` on touchables.
|
|
162
|
+
- Ensure **hit slop** / min size **≥ 44×44 dp**.
|
|
163
|
+
- Support Dynamic Type / font scaling; no clipped text at **200%**.
|
|
164
|
+
- Respect **Invert Colors** and **Reduce Motion**; avoid flashing.
|
|
165
|
+
- Group related items with \`accessibilityElements\` ordering; hide decoration with \`accessible={false}\` or \`importantForAccessibility="no-hide-descendants"\` when appropriate.
|
|
166
|
+
- Test with **VoiceOver (iOS)** and **TalkBack (Android)**.
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## 5) Component Patterns (Acceptance Rules)
|
|
171
|
+
|
|
172
|
+
**Buttons & Links**
|
|
173
|
+
|
|
174
|
+
- Use \`<button>\` for actions, \`<a href>\` for navigation. Provide disabled states that are perceivable beyond color.
|
|
175
|
+
|
|
176
|
+
**Navigation**
|
|
177
|
+
|
|
178
|
+
- Provide **Skip link**. One primary nav landmark. Indicate current page (\`aria-current="page"\`).
|
|
179
|
+
|
|
180
|
+
**Menus/Combobox/Autocomplete**
|
|
181
|
+
|
|
182
|
+
- Follow ARIA patterns: focus moves into list; \`aria-expanded\`, \`aria-controls\`, \`aria-activedescendant\` when applicable; Esc closes; typing filters.
|
|
183
|
+
|
|
184
|
+
**Modals/Dialogs**
|
|
185
|
+
|
|
186
|
+
- \`role="dialog"\` or \`alertdialog\` with **label**; focus trapped; background inert; Esc closes; return focus to trigger.
|
|
187
|
+
|
|
188
|
+
**Tabs**
|
|
189
|
+
|
|
190
|
+
- \`role="tablist"\`; tabs are in the tab order; arrow keys switch focus; content is \`role="tabpanel"\` with \`aria-labelledby\`.
|
|
191
|
+
|
|
192
|
+
**Toasts/Notifications**
|
|
193
|
+
|
|
194
|
+
- Non-critical: \`aria-live="polite"\`; critical: \`role="alert"\` sparingly.
|
|
195
|
+
|
|
196
|
+
**Infinite Scroll / “Load More”**
|
|
197
|
+
|
|
198
|
+
- Provide **Load more** control; announce new content to SR; preserve keyboard position.
|
|
199
|
+
|
|
200
|
+
**Drag & Drop (2.5.7)**
|
|
201
|
+
|
|
202
|
+
- Provide **non‑drag** alternative (e.g., move up/down buttons).
|
|
203
|
+
|
|
204
|
+
**Charts & Maps**
|
|
205
|
+
|
|
206
|
+
- Provide **table alternative** or textual summary; keyboard access to datapoints where interactive.
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## 6) Testing & CI (Blocking Gates)
|
|
211
|
+
|
|
212
|
+
**Static & Unit**
|
|
213
|
+
|
|
214
|
+
- \`eslint-plugin-jsx-a11y\` — error on violations.
|
|
215
|
+
- \`jest-axe\` — unit tests for components.
|
|
216
|
+
|
|
217
|
+
**Automated Integration**
|
|
218
|
+
|
|
219
|
+
- \`axe-core\` via Playwright or Cypress on critical flows.
|
|
220
|
+
- \`pa11y-ci\` on key routes; threshold: **0 Critical / 0 Serious** to merge.
|
|
221
|
+
- Lighthouse CI a11y score **≥ 95** on target pages.
|
|
222
|
+
|
|
223
|
+
**Manual QA (per release)**
|
|
224
|
+
|
|
225
|
+
- **Keyboard patrol:** navigate primary flows without mouse.
|
|
226
|
+
- **Screen reader smoke:** NVDA (Windows) or VoiceOver (macOS/iOS) across login, navigation, forms, dialogs.
|
|
227
|
+
- **Zoom & Reflow:** 200–400% & 320 px width.
|
|
228
|
+
- **Color/Contrast check:** tokens in both themes.
|
|
229
|
+
|
|
230
|
+
**Reporting**
|
|
231
|
+
|
|
232
|
+
- A11y issues labeled: \`a11y-blocker\`, \`a11y-bug\`, \`a11y-enhancement\` with WCAG ref.
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## 7) Repository‑Specific Adoption Plan
|
|
237
|
+
|
|
238
|
+
- Centralize UI usage on \`packages/lssm/libs/ui-kit-web\` and de‑duplicate per‑app \`components/ui\` where feasible.
|
|
239
|
+
- Introduce \`SkipLink\`, \`RouteAnnouncer\`, \`FocusOnRouteChange\`, and \`VisuallyHidden\` in \`ui-kit-web\`. Adopt in app layouts (\`app/layout.tsx\`) first.
|
|
240
|
+
- Add \`useReducedMotion\` and wire into animated components (e.g., \`drawer\`, \`tooltip\`, \`carousel\`).
|
|
241
|
+
- Add touch‑size variants to \`Button\`, \`IconButton\`, \`TabsTrigger\`, toggles.
|
|
242
|
+
- Document Select label patterns and error association in Forms.
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## 8) Code Snippets
|
|
247
|
+
|
|
248
|
+
**Skip Link**
|
|
249
|
+
|
|
250
|
+
\`\`\`html
|
|
251
|
+
<a
|
|
252
|
+
class="sr-only focus:not-sr-only focus-visible:outline focus-visible:ring-4 focus-visible:ring-offset-2"
|
|
253
|
+
href="#main"
|
|
254
|
+
>Skip to main content</a
|
|
255
|
+
>
|
|
256
|
+
<main id="main">…</main>
|
|
257
|
+
\`\`\`
|
|
258
|
+
|
|
259
|
+
**Dialog (Radix + shadcn/ui) — essentials**
|
|
260
|
+
|
|
261
|
+
\`\`\`tsx
|
|
262
|
+
// Ensure label, description, focus trap, and return focus on close remain intact
|
|
263
|
+
<Dialog>
|
|
264
|
+
<DialogTrigger asChild>
|
|
265
|
+
<button aria-haspopup="dialog">Open settings</button>
|
|
266
|
+
</DialogTrigger>
|
|
267
|
+
<DialogContent aria-describedby="settings-desc">
|
|
268
|
+
<DialogTitle>Settings</DialogTitle>
|
|
269
|
+
<p id="settings-desc">Update your preferences.</p>
|
|
270
|
+
<DialogClose asChild>
|
|
271
|
+
<button>Close</button>
|
|
272
|
+
</DialogClose>
|
|
273
|
+
</DialogContent>
|
|
274
|
+
</Dialog>
|
|
275
|
+
\`\`\`
|
|
276
|
+
|
|
277
|
+
**Form error association**
|
|
278
|
+
|
|
279
|
+
\`\`\`tsx
|
|
280
|
+
<label htmlFor="email">Email</label>
|
|
281
|
+
<input id="email" name="email" type="email" aria-describedby="email-err" />
|
|
282
|
+
<p id="email-err" role="alert">Enter a valid email.</p>
|
|
283
|
+
\`\`\`
|
|
284
|
+
|
|
285
|
+
**Route change announcement (Next.js)**
|
|
286
|
+
|
|
287
|
+
\`\`\`tsx
|
|
288
|
+
// Add once at app root
|
|
289
|
+
<div
|
|
290
|
+
aria-live="polite"
|
|
291
|
+
aria-atomic="true"
|
|
292
|
+
id="route-announcer"
|
|
293
|
+
className="sr-only"
|
|
294
|
+
/>
|
|
295
|
+
\`\`\`
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## 9) Exceptions & Waivers
|
|
300
|
+
|
|
301
|
+
- If a criterion cannot be met, file an issue with: context, attempted alternatives, WCAG reference, impact assessment, and a remediation date. **Temporary waivers only.**
|
|
302
|
+
|
|
303
|
+
---
|
|
304
|
+
|
|
305
|
+
## 10) Ownership
|
|
306
|
+
|
|
307
|
+
- **Design:** maintains token contrast, component specs.
|
|
308
|
+
- **Engineering:** enforces CI gates, implements patterns.
|
|
309
|
+
- **QA:** runs manual checks per release.
|
|
310
|
+
- **PM:** blocks release if AA not met on user‑visible flows.
|
|
311
|
+
|
|
312
|
+
---
|
|
313
|
+
|
|
314
|
+
## 11) References (internalize; no external dependency at runtime)
|
|
315
|
+
|
|
316
|
+
- WCAG 2.2 (AA), EN 301 549. ARIA Authoring Practices. Platform HIG (Apple, Material).
|
|
317
|
+
- \`packages/lssm/libs/ui-kit-web\` as the canonical UI source for web.
|
|
318
|
+
|
|
319
|
+
> **Bottom line:** Shipping means **accessible by default**. We don’t trade a11y for speed; we bake it into speed.
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
## 12) Adoption Status (2025-09-23)
|
|
324
|
+
|
|
325
|
+
- web-artisan: AccessibilityProvider integrated; sr-only/forced-colors applied; 44x44 targets; forms announce errors; jest-axe and cypress-axe in place.
|
|
326
|
+
- web-strit: AccessibilityProvider integrated; forced-colors, sr-only; forms announce errors; 44x44 targets; contrast tokens and text-scale wired; jest-axe and cypress-axe in place.
|
|
327
|
+
- web-coliving: AccessibilityProvider integrated; forced-colors and focus visibility added; text-scale wired; landing pages converted to \`Section\`/stacks with text-lg defaults; CTA capture standardized; ESLint guard for text-xs in main content; jest-axe and cypress-axe in place. Next: audit icon-only controls and ensure 44x44 targets; add role="alert" where critical.
|
|
328
|
+
|
|
329
|
+
> CI gates: run eslint a11y, jest-axe on components, and cypress-axe on critical flows per app.
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
## 13) CI Hardening & Visual QA
|
|
334
|
+
|
|
335
|
+
- Linting: Run eslint with jsx-a11y rules across all web apps; block on violations.
|
|
336
|
+
- Unit: Run jest-axe for ui-kit-web and app-level components.
|
|
337
|
+
- Integration: cypress-axe on key flows (auth, forms, dialogs, tables).
|
|
338
|
+
- Synthetic scans: pa11y-ci on critical pages (0 Critical/Serious policy).
|
|
339
|
+
- Performance/A11y audit: Lighthouse CI with a11y score >= 95 on target routes.
|
|
340
|
+
- Artifacts: Upload pa11y and Lighthouse reports per PR; annotate failures.
|
|
341
|
+
|
|
342
|
+
### Recent additions (2025-09-26)
|
|
343
|
+
|
|
344
|
+
- AutocompleteInput (groceries): Upgraded to ARIA combobox pattern with \`aria-controls\`, \`aria-activedescendant\`, \`Escape\`/\`Tab\` handling, and labelled listbox.
|
|
345
|
+
- Cypress a11y tests added for furniture and incidents modules on \`/modules\` and operators flows; checks run axe with critical/serious impacts.
|
|
346
|
+
|
|
347
|
+
## 14) Accessibility Telemetry (PostHog)
|
|
348
|
+
|
|
349
|
+
- Events (anonymized): a11y_pref_changed (text_scale, contrast_mode, reduce_motion), a11y_panel_opened.
|
|
350
|
+
- Properties: app, route, previous_value, new_value, timestamp.
|
|
351
|
+
- Dashboards: Adoption over time, per app/route; correlation with reduced bounce on forms.
|
|
352
|
+
- Privacy: No PII; aggregate only.
|
|
353
|
+
`}],metaDocs=[{id:"docs.meta.docblocks-process",title:"DocBlocks process",summary:"How to author goal/how/usage DocBlocks close to code.",kind:"reference",visibility:"mixed",route:"/docs/meta/docblocks-process",tags:["docs","process"],body:`## DocBlocks authoring rules
|
|
354
|
+
|
|
355
|
+
- Colocate docs beside implementation; avoid barrel /docs folders.
|
|
356
|
+
- Split intent:
|
|
357
|
+
- **goal**: why this exists (before implementation).
|
|
358
|
+
- **how**: operational/runbook steps.
|
|
359
|
+
- **usage**: quick checklist for consumers.
|
|
360
|
+
- Use \`visibility\`: public | internal | mixed.
|
|
361
|
+
- Prefer routes like \`/docs/<domain>/<topic>/<kind>\`; ids mirror that.
|
|
362
|
+
- Keep body Markdown LLM-friendly; avoid HTML.
|
|
363
|
+
- Add owners/tags/domain/stability when known.
|
|
364
|
+
- For presentations/markdown outputs, rely on TransformEngine via DocRegistry.
|
|
365
|
+
- No sourcePath; DocBlocks are canonical.`}];
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as r}from"../../events.js";import{DOCS_DOMAIN as n,DOCS_OWNERS as o,DOCS_STABILITY as a,DOCS_TAGS as i}from"../constants.js";import{docId as s}from"../registry.js";export const DocsGeneratedPayload=new t({name:"DocsGeneratedPayload",fields:{buildId:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!0},generatedAt:{type:e.DateTime(),isOptional:!1},outputDir:{type:e.String_unsecure(),isOptional:!0},artifactCount:{type:e.Int_unsecure(),isOptional:!0},warnings:{type:e.String_unsecure(),isOptional:!0,isArray:!0}}}),DocsGeneratedEvent=r({meta:{key:"docs.generated",version:"1.0.0",description:"Emitted when documentation artifacts are generated.",domain:n,owners:o,tags:[...i,"generation"],stability:a,docId:[s("docs.tech.docs-generator")]},payload:DocsGeneratedPayload});
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as i}from"../../events.js";import{DOCS_DOMAIN as s,DOCS_OWNERS as n,DOCS_STABILITY as o,DOCS_TAGS as r}from"../constants.js";import{docId as u}from"../registry.js";export const DocsPublishedPayload=new t({name:"DocsPublishedPayload",fields:{publishId:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!0},environment:{type:e.String_unsecure(),isOptional:!0},url:{type:e.String_unsecure(),isOptional:!0},publishedAt:{type:e.DateTime(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!0},warnings:{type:e.String_unsecure(),isOptional:!0,isArray:!0}}}),DocsPublishedEvent=i({meta:{key:"docs.published",version:"1.0.0",description:"Emitted when documentation is published.",domain:s,owners:n,tags:[...r,"publish"],stability:o,docId:[u("docs.tech.docs-publish")]},payload:DocsPublishedPayload});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./docsGenerated.event.js";export*from"./docsPublished.event.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./docsGenerated.event.js";export*from"./docsPublished.event.js";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{ScalarTypeEnum as e,SchemaModel as l}from"@lssm/lib.schema";import{defineFormSpec as a}from"../../forms/forms.js";import{DOCS_DOMAIN as i,DOCS_OWNERS as n,DOCS_STABILITY as o,DOCS_TAGS as r}from"../constants.js";import{docId as t}from"../registry.js";const c=new l({name:"DocsSearchFormModel",fields:{query:{type:e.String_unsecure(),isOptional:!0},visibility:{type:e.String_unsecure(),isOptional:!0},kind:{type:e.String_unsecure(),isOptional:!0}}});export const DocsSearchForm=a({meta:{key:"docs_search.form",title:"Docs Search",version:"1.0.0",description:"Search form for documentation discovery.",domain:i,owners:n,tags:[...r,"search"],stability:o,docId:[t("docs.tech.docs-search")]},model:c,fields:[{kind:"text",name:"query",labelI18n:"Search",placeholderI18n:"Search docs"},{kind:"select",name:"visibility",labelI18n:"Visibility",options:{kind:"static",options:[{labelI18n:"Public",value:"public"},{labelI18n:"Internal",value:"internal"},{labelI18n:"Mixed",value:"mixed"}]}},{kind:"select",name:"kind",labelI18n:"Kind",options:{kind:"static",options:[{labelI18n:"Goal",value:"goal"},{labelI18n:"How",value:"how"},{labelI18n:"Usage",value:"usage"},{labelI18n:"Reference",value:"reference"},{labelI18n:"FAQ",value:"faq"},{labelI18n:"Changelog",value:"changelog"}]}}],actions:[{key:"search",labelI18n:"Search"}],policy:{flags:[],pii:[]}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./docsSearch.form.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./docsSearch.form.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./capabilities/index.js";export*from"./commands/index.js";export*from"./constants.js";export*from"./contracts.js";export*from"./docblocks.manifest.generated.js";export*from"./docs.feature.js";export*from"./events/index.js";export*from"./forms/index.js";export*from"./manifest.js";export*from"./presentations.js";export*from"./presentations/index.js";export*from"./queries/index.js";export*from"./registry.js";export*from"./types.js";export*from"./views/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./capabilities/index.js";export*from"./commands/index.js";export*from"./constants.js";export*from"./contracts.js";export*from"./docblocks.manifest.generated.js";export*from"./docs.feature.js";export*from"./events/index.js";export*from"./forms/index.js";export*from"./manifest.js";export*from"./presentations.js";export*from"./presentations/index.js";export*from"./queries/index.js";export*from"./registry.js";export*from"./types.js";export*from"./views/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import b from"node:fs";import y from"node:path";import*as n from"@lssm/lib.typescript-runtime";function x(e){if(!e||typeof e!=="object"||Array.isArray(e))return!1;const i=e;return typeof i.id==="string"&&typeof i.title==="string"&&typeof i.body==="string"}function u(e,i,o){if(n.isParenthesizedExpression(e))return u(e.expression,i,o);if(n.isSatisfiesExpression(e)||n.isAsExpression(e))return u(e.expression,i,o);if(n.isStringLiteral(e)||n.isNoSubstitutionTemplateLiteral(e))return e.text;if(n.isTemplateExpression(e)){let t=e.head.text;for(const r of e.templateSpans){const s=u(r.expression,i,o);if(typeof s!=="string"&&typeof s!=="number"&&typeof s!=="boolean")return;t+=`${s}${r.literal.text}`}return t}if(n.isNumericLiteral(e))return Number(e.text);if(n.isBinaryExpression(e)){const t=u(e.left,i,o),r=u(e.right,i,o);if(t===void 0||r===void 0)return;if(e.operatorToken.kind===n.SyntaxKind.PlusToken){if(typeof t==="number"&&typeof r==="number")return t+r;if((typeof t==="string"||typeof t==="number")&&(typeof r==="string"||typeof r==="number"))return`${t}${r}`}if(e.operatorToken.kind===n.SyntaxKind.SlashToken&&typeof t==="number"&&typeof r==="number")return t/r;return}if(e.kind===n.SyntaxKind.TrueKeyword)return!0;if(e.kind===n.SyntaxKind.FalseKeyword)return!1;if(e.kind===n.SyntaxKind.NullKeyword)return null;if(n.isArrayLiteralExpression(e)){const t=[];for(const r of e.elements){if(n.isSpreadElement(r)){const c=u(r.expression,i,o);if(!Array.isArray(c))return;t.push(...c);continue}const s=u(r,i,o);if(s===void 0)return;t.push(s)}return t}if(n.isObjectLiteralExpression(e)){const t={};for(const r of e.properties){if(!n.isPropertyAssignment(r))return;const s=r.name.getText().replace(/^["']|["']$/g,""),c=u(r.initializer,i,o);if(c===void 0)return;t[s]=c}return t}if(n.isIdentifier(e))return i.get(e.text);if(n.isPropertyAccessExpression(e)){const t=u(e.expression,i,o);if(!t||typeof t!=="object"||Array.isArray(t))return;return t[e.name.text]}if(n.isCallExpression(e)&&n.isIdentifier(e.expression)){if((e.expression.text==="docId"||e.expression.text==="docRef")&&e.arguments.length===1)return u(e.arguments[0],i,o)}if(n.isCallExpression(e)&&n.isPropertyAccessExpression(e.expression)&&e.expression.name.text==="join"&&e.arguments.length<=1){const t=u(e.expression.expression,i,o),r=e.arguments.length===0?",":u(e.arguments[0],i,o);if(!Array.isArray(t)||typeof r!=="string")return;return t.map((s)=>String(s)).join(r)}return}function D(e,i){const o=new Map;for(const t of e.statements){if(!n.isVariableStatement(t))continue;for(const r of t.declarationList.declarations){if(!n.isIdentifier(r.name)||!r.initializer)continue;let s;try{s=u(r.initializer,o,i)}catch{s=void 0}if(s!==void 0)o.set(r.name.text,s)}}return o}function M(e,i,o){let t=e;while(n.isParenthesizedExpression(t)||n.isSatisfiesExpression(t)||n.isAsExpression(t))t=t.expression;if(!n.isObjectLiteralExpression(t))return[];const r=t.properties.find((f)=>n.isPropertyAssignment(f)&&f.name.getText()==="meta");if(!r||!n.isPropertyAssignment(r))return[];let s=r.initializer;while(n.isParenthesizedExpression(s)||n.isSatisfiesExpression(s)||n.isAsExpression(s))s=s.expression;if(!n.isObjectLiteralExpression(s))return[];const c=s.properties.find((f)=>n.isPropertyAssignment(f)&&f.name.getText()==="docId");if(!c||!n.isPropertyAssignment(c))return[];const g=u(c.initializer,i,o);if(!Array.isArray(g)||!g.every((f)=>typeof f==="string"))throw Error(`Non-static DocBlock reference in ${o} at ${c.initializer.getStart()}`);return g}export async function extractModuleDocData(e,i,o,t){const r=t?await t.parse({filePath:i,sourceText:e}):await n.parseTypeScriptSource({filePath:i,sourceText:e}),s=D(r,i),c=[],g=new Set;for(const f of r.statements){if(!n.isVariableStatement(f))continue;if(!f.modifiers?.some((a)=>a.kind===n.SyntaxKind.ExportKeyword))continue;for(const a of f.declarationList.declarations){if(!n.isIdentifier(a.name)||!a.initializer)continue;const d=u(a.initializer,s,i);for(const l of M(a.initializer,s,i))g.add(l);if(d===void 0){if(a.name.text.includes("DocBlock")||a.initializer.getText(r).includes("satisfies DocBlock"))throw Error(`Non-static DocBlock source in ${i} at ${a.initializer.getStart(r)}`);continue}if(x(d))c.push({id:d.id,exportName:a.name.text,sourceModule:o,block:d});if(Array.isArray(d)&&d.every((l)=>x(l)))for(const l of d)c.push({id:l.id,exportName:a.name.text,sourceModule:o,block:l})}}return{entries:c,docRefs:[...g]}}function h(e){return!e.endsWith(".ts")||e.endsWith(".test.ts")||e.endsWith(".generated.ts")||e.includes(`${y.sep}dist${y.sep}`)}function A(e){return b.readdirSync(e,{withFileTypes:!0}).flatMap((i)=>{const o=y.join(e,i.name);if(i.isDirectory())return A(o);return h(o)?[]:[o]}).sort((i,o)=>i.localeCompare(o))}function V(e,i){return y.relative(e,i).replace(/\\/g,"/").replace(/\.ts$/,"")}export async function buildPackageDocManifest(e){const{packageName:i,srcRoot:o,generatedAt:t=new Date().toISOString()}=e,r=A(o);for(const a of r){if(a.endsWith(".docblock.ts"))throw Error(`Standalone DocBlock sources are not allowed: ${a}`);if(a.includes(`${y.sep}docs${y.sep}tech${y.sep}`))throw Error(`docs/tech source files are not allowed: ${a}`)}const s=[],c=new Map,g=new Map,f=new Map,k=new n.TypeScriptSourceParser;try{for(const a of r){const d=b.readFileSync(a,"utf8"),l=V(o,a),E=await extractModuleDocData(d,a,l,k);for(const p of E.entries){const m=`${p.sourceModule}:${p.exportName}`,w=c.get(p.id);if(w)throw Error(`Duplicate DocBlock id ${p.id} in ${m} and ${w}`);c.set(p.id,m);if(p.block.route){const S=g.get(p.block.route);if(S)throw Error(`Duplicate DocBlock route ${p.block.route} in ${m} and ${S}`);g.set(p.block.route,m)}s.push(p)}if(E.docRefs.length>0)f.set(l,E.docRefs)}}finally{await k.close()}for(const[a,d]of f)for(const l of d)if(!c.has(l))throw Error(`Missing DocBlock reference ${l} from ${a}`);s.sort((a,d)=>a.id.localeCompare(d.id));return{packageName:i,generatedAt:t,blocks:s}}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function packageDocBlocks(e){return e.blocks.map(({block:c})=>c)}export function workspaceDocBlocks(e){return e.packages.flatMap((c)=>packageDocBlocks(c))}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{definePresentation as o}from"../../presentations/index.js";import{DOCS_DOMAIN as t,DOCS_OWNERS as e,DOCS_STABILITY as s,DOCS_TAGS as a}from"../constants.js";import{docId as c}from"../registry.js";export const DocsLayoutPresentation=o({meta:{key:"docs.layout",title:"Docs Layout",version:"1.0.0",description:"Shared layout shell for documentation pages.",goal:"Provide consistent navigation, layout, and docs UI scaffolding.",context:"Used by web docs surfaces to render DocBlock-based content.",domain:t,owners:e,tags:[...a,"layout"],stability:s,docId:[c("docs.tech.docs-system")]},capability:{key:"docs.system",version:"1.0.0"},source:{type:"component",framework:"react",componentKey:"docsLayout"},targets:["react"]});
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{definePresentation as e}from"../../presentations/index.js";import{DOCS_DOMAIN as t,DOCS_OWNERS as o,DOCS_STABILITY as r,DOCS_TAGS as c}from"../constants.js";import{docId as n}from"../registry.js";export const DocsReferencePagePresentation=e({meta:{key:"docs.reference.page",title:"Docs Reference Page",version:"1.0.0",description:"Reference page layout for contract documentation.",goal:"Render contract references with consistent metadata and formatting.",context:"Used by docs surfaces to present contract reference content and schemas.",domain:t,owners:o,tags:[...c,"reference"],stability:r,docId:[n("docs.tech.docs-reference")]},capability:{key:"docs.system",version:"1.0.0"},source:{type:"component",framework:"react",componentKey:"docsReferencePage"},targets:["react","markdown"]});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./docsLayout.presentation.js";export*from"./docsReferencePage.presentation.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./docsLayout.presentation.js";export*from"./docsReferencePage.presentation.js";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const s=["markdown","react"];function o(t){if(!t.length)return"/";const e=t.startsWith("/")?t:`/${t}`;return e==="/"?"/":e.replace(/\/+$/,"")}function a(t,e){if(t.route)return o(t.route);const n=e??"/docs",r=t.id.replace(/^docs\.?/,"").replace(/\./g,"/").replace(/\/+/g,"/"),i=r.startsWith("/")?r:`${n}/${r}`;return o(i)}function c(t,e){return e?`${e}.${t.id}`:t.id}export function docBlockToPresentationSpec(t,e){const n=e?.defaultTargets??s,r=t.version??e?.defaultVersion??"1.0.0",i=t.stability??e?.defaultStability??"stable";return{meta:{key:c(t,e?.namespace),title:t.title,version:r,description:t.summary??t.title,tags:t.tags||[],owners:t.owners||[],domain:t.domain||"",stability:i,goal:`Documentation of: ${t.summary}`,context:"Auto-generated"},policy:t.visibility&&t.visibility!=="public"?{flags:[t.visibility]}:void 0,source:{type:"blocknotejs",docJson:t.body},targets:n}}export function docBlocksToPresentationRoutes(t,e){return t.map((n)=>({block:n,route:a(n,e?.routePrefix),descriptor:docBlockToPresentationSpec(n,e)}))}export function docBlocksToPresentationSpecs(t,e){return t.map((n)=>docBlockToPresentationSpec(n,e))}export function mapDocRoutes(t){return t.map(({route:e,descriptor:n})=>[e,n])}
|
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineQuery as r}from"../../operations/index.js";import{DOCS_DOMAIN as n,DOCS_OWNERS as o,DOCS_STABILITY as c,DOCS_TAGS as i}from"../constants.js";import{docId as s}from"../registry.js";export const ContractReferenceInput=new t({name:"ContractReferenceInput",fields:{key:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!0},type:{type:e.String_unsecure(),isOptional:!0},format:{type:e.String_unsecure(),isOptional:!0},includeSchema:{type:e.Boolean(),isOptional:!0}}}),ContractReferenceModel=new t({name:"ContractReference",fields:{key:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!1},type:{type:e.String_unsecure(),isOptional:!1},title:{type:e.String_unsecure(),isOptional:!0},description:{type:e.String_unsecure(),isOptional:!0},markdown:{type:e.String_unsecure(),isOptional:!0},route:{type:e.String_unsecure(),isOptional:!0},schema:{type:e.JSONObject(),isOptional:!0},policy:{type:e.JSONObject(),isOptional:!0},tags:{type:e.String_unsecure(),isOptional:!0,isArray:!0},owners:{type:e.String_unsecure(),isOptional:!0,isArray:!0},stability:{type:e.String_unsecure(),isOptional:!0}}}),ContractReferenceOutput=new t({name:"ContractReferenceOutput",fields:{reference:{type:ContractReferenceModel,isOptional:!1}}}),ContractReferenceDocBlock={id:"docs.tech.docs-reference",title:"Contract reference pages",summary:"Resolve any spec into a docs-ready reference payload.",kind:"reference",visibility:"public",route:"/docs/tech/docs/reference",tags:["docs","reference"],body:`# Contract reference
|
|
2
|
+
|
|
3
|
+
Contract reference pages are generated from spec metadata plus schema details and exposed as a docs-ready payload.
|
|
4
|
+
`},ContractReferenceQuery=r({meta:{key:"docs.contract.reference",title:"Contract Reference",version:"1.0.0",description:"Resolve a contract into a documentation-ready reference.",goal:"Expose a canonical reference view for any ContractSpec surface.",context:"Used by docs generators and UI to render consistent reference pages.",domain:n,owners:o,tags:[...i,"reference"],stability:c,docId:[s("docs.tech.docs-reference")]},capability:{key:"docs.system",version:"1.0.0"},io:{input:ContractReferenceInput,output:ContractReferenceOutput},policy:{auth:"anonymous",pii:[]}});
|
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineQuery as i}from"../../operations/index.js";import{DOCS_DOMAIN as s,DOCS_OWNERS as o,DOCS_STABILITY as r,DOCS_TAGS as n}from"../constants.js";import{docId as c}from"../registry.js";export const DocSummaryModel=new t({name:"DocSummary",fields:{id:{type:e.String_unsecure(),isOptional:!1},title:{type:e.String_unsecure(),isOptional:!1},summary:{type:e.String_unsecure(),isOptional:!0},route:{type:e.String_unsecure(),isOptional:!0},visibility:{type:e.String_unsecure(),isOptional:!0},kind:{type:e.String_unsecure(),isOptional:!0},version:{type:e.String_unsecure(),isOptional:!0},tags:{type:e.String_unsecure(),isOptional:!0,isArray:!0}}}),DocsIndexInput=new t({name:"DocsIndexInput",fields:{query:{type:e.String_unsecure(),isOptional:!0},tag:{type:e.String_unsecure(),isOptional:!0,isArray:!0},visibility:{type:e.String_unsecure(),isOptional:!0},kind:{type:e.String_unsecure(),isOptional:!0},limit:{type:e.Int_unsecure(),isOptional:!0},offset:{type:e.Int_unsecure(),isOptional:!0}}}),DocsIndexOutput=new t({name:"DocsIndexOutput",fields:{items:{type:DocSummaryModel,isOptional:!0,isArray:!0},docs:{type:DocSummaryModel,isOptional:!1,isArray:!0},total:{type:e.Int_unsecure(),isOptional:!0},nextOffset:{type:e.Int_unsecure(),isOptional:!0}}}),DocsIndexDocBlock={id:"docs.tech.docs-search",title:"Docs index and search",summary:"Search DocBlocks by query, tag, kind, or visibility.",kind:"reference",visibility:"public",route:"/docs/tech/docs/search",tags:["docs","search"],body:`# Docs index and search
|
|
2
|
+
|
|
3
|
+
The docs index is the canonical list of DocBlocks exposed to UI, CLI, and MCP surfaces for filtering and retrieval.
|
|
4
|
+
`},DocsIndexQuery=i({meta:{key:"docs_search",title:"Docs Index",version:"1.0.0",description:"Search and filter DocBlocks by query, tag, or visibility.",goal:"Provide a consistent index of documentation entries for UI and MCP.",context:"Used by docs surfaces to list and filter DocBlocks without coupling to storage.",domain:s,owners:o,tags:[...n,"search","index"],stability:r,docId:[c("docs.tech.docs-search")]},capability:{key:"docs.system",version:"1.0.0"},io:{input:DocsIndexInput,output:DocsIndexOutput},policy:{auth:"anonymous",pii:[]}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./contractReference.query.js";export*from"./docsIndex.query.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./contractReference.query.js";export*from"./docsIndex.query.js";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{contractsSpecDocManifest as r}from"./docblocks.manifest.generated.js";import{packageDocBlocks as s}from"./manifest.js";import{docBlocksToPresentationRoutes as i,docBlockToPresentationSpec as n}from"./presentations.js";export class DocRegistry{routes=new Map;constructor(t=[],o){t.forEach((e)=>this.register(e,o))}register(t,o){const[e]=i([t],o);if(e)this.routes.set(t.id,e);return this}list(){return[...this.routes.values()]}get(t){return this.routes.get(t)}toRouteTuples(){return this.list().map(({route:t,descriptor:o})=>[t,o])}toPresentationSpecs(t){return this.list().map(({block:o})=>n(o,t))}}const c=["id","title","body","kind","visibility","route"];export const defaultDocRegistry=new DocRegistry(s(r));export function registerDocBlocks(t){for(const o of t){for(const e of c)if(!o[e])throw Error(`DocBlock ${o.id??"<missing id>"} missing field ${String(e)}`);defaultDocRegistry.register(o)}}export function listRegisteredDocBlocks(){return defaultDocRegistry.list().map((t)=>t.block)}export function docRef(t){return t}export const docId=docRef;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{defineDataView as t}from"../../data-views/index.js";import{defineTranslation as i}from"../../translations/index.js";import{DOCS_DOMAIN as e,DOCS_OWNERS as a,DOCS_STABILITY as r,DOCS_TAGS as n}from"../constants.js";import{ContractReferenceQuery as l}from"../queries/contractReference.query.js";import{docId as o}from"../registry.js";const s=i({meta:{key:"docs.contract.reference.view.i18n",version:"1.0.0",domain:e,owners:a},locale:"en",messages:{"field.key.label":{value:"Key"},"field.version.label":{value:"Version"},"field.type.label":{value:"Type"},"field.title.label":{value:"Title"},"field.description.label":{value:"Description"},"field.tags.label":{value:"Tags"},"field.owners.label":{value:"Owners"},"field.stability.label":{value:"Stability"}}});export const ContractReferenceDataView=t(s,{meta:{key:"docs.contract.reference.view",title:"Contract Reference",version:"1.0.0",description:"Detail view for a single contract reference.",domain:e,owners:a,tags:[...n,"reference"],stability:r,entity:"contract-reference",docId:[o("docs.tech.docs-reference")]},source:{primary:{key:l.meta.key,version:l.meta.version}},view:{kind:"detail",fields:[{key:"key",label:"field.key.label",dataPath:"reference.key"},{key:"version",label:"field.version.label",dataPath:"reference.version"},{key:"type",label:"field.type.label",dataPath:"reference.type"},{key:"title",label:"field.title.label",dataPath:"reference.title"},{key:"description",label:"field.description.label",dataPath:"reference.description",format:"markdown"},{key:"tags",label:"field.tags.label",dataPath:"reference.tags"},{key:"owners",label:"field.owners.label",dataPath:"reference.owners"},{key:"stability",label:"field.stability.label",dataPath:"reference.stability"}],primaryField:"title",secondaryFields:["description"]},policy:{flags:[],pii:[]}});
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{defineDataView as a}from"../../data-views/index.js";import{defineTranslation as t}from"../../translations/index.js";import{DOCS_DOMAIN as e,DOCS_OWNERS as i,DOCS_STABILITY as o,DOCS_TAGS as n}from"../constants.js";import{DocsIndexQuery as l}from"../queries/docsIndex.query.js";import{docId as r}from"../registry.js";const d=t({meta:{key:"docs.index.view.i18n",version:"1.0.0",domain:e,owners:i},locale:"en",messages:{"field.id.label":{value:"ID"},"field.title.label":{value:"Title"},"field.summary.label":{value:"Summary"},"field.route.label":{value:"Route"},"field.tags.label":{value:"Tags"},"field.kind.label":{value:"Kind"},"field.visibility.label":{value:"Visibility"},"filter.query.label":{value:"Search"},"filter.visibility.label":{value:"Visibility"},"filter.visibility.option.public":{value:"Public"},"filter.visibility.option.internal":{value:"Internal"},"filter.visibility.option.mixed":{value:"Mixed"},"filter.kind.label":{value:"Kind"},"filter.kind.option.goal":{value:"Goal"},"filter.kind.option.how":{value:"How"},"filter.kind.option.usage":{value:"Usage"},"filter.kind.option.reference":{value:"Reference"},"filter.kind.option.faq":{value:"FAQ"},"filter.kind.option.changelog":{value:"Changelog"}}});export const DocsIndexDataView=a(d,{meta:{key:"docs.index.view",title:"Docs Index",version:"1.0.0",description:"List and filter documentation entries.",domain:e,owners:i,tags:[...n,"index"],stability:o,entity:"docs",docId:[r("docs.tech.docs-search")]},source:{primary:{key:l.meta.key,version:l.meta.version}},view:{kind:"list",fields:[{key:"id",label:"field.id.label",dataPath:"id"},{key:"title",label:"field.title.label",dataPath:"title"},{key:"summary",label:"field.summary.label",dataPath:"summary"},{key:"route",label:"field.route.label",dataPath:"route"},{key:"tags",label:"field.tags.label",dataPath:"tags",format:"badge"},{key:"kind",label:"field.kind.label",dataPath:"kind"},{key:"visibility",label:"field.visibility.label",dataPath:"visibility"}],primaryField:"title",secondaryFields:["summary","route"],filters:[{key:"query",label:"filter.query.label",field:"query",type:"search"},{key:"visibility",label:"filter.visibility.label",field:"visibility",type:"enum",options:[{value:"public",label:"filter.visibility.option.public"},{value:"internal",label:"filter.visibility.option.internal"},{value:"mixed",label:"filter.visibility.option.mixed"}]},{key:"kind",label:"filter.kind.label",field:"kind",type:"enum",options:[{value:"goal",label:"filter.kind.option.goal"},{value:"how",label:"filter.kind.option.how"},{value:"usage",label:"filter.kind.option.usage"},{value:"reference",label:"filter.kind.option.reference"},{value:"faq",label:"filter.kind.option.faq"},{value:"changelog",label:"filter.kind.option.changelog"}]}]},policy:{flags:[],pii:[]}});
|
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import{defineDataView as t}from"../../data-views/index.js";import{defineTranslation as s}from"../../translations/index.js";import{DOCS_DOMAIN as e,DOCS_OWNERS as a,DOCS_STABILITY as o,DOCS_TAGS as i}from"../constants.js";import{DocsIndexQuery as l}from"../queries/docsIndex.query.js";import{docId as r}from"../registry.js";const m=s({meta:{key:"docs.examples.catalog.view.i18n",version:"1.0.0",domain:e,owners:a},locale:"en",messages:{"field.id.label":{value:"ID"},"field.title.label":{value:"Title"},"field.summary.label":{value:"Summary"},"field.route.label":{value:"Route"},"field.tags.label":{value:"Tags"},"filter.query.label":{value:"Search"},"filter.tags.label":{value:"Tags"},"filter.tags.option.examples":{value:"Examples"},"filter.tags.option.templates":{value:"Templates"},"filter.tags.option.sandbox":{value:"Sandbox"}}});export const ExampleCatalogDocBlock={id:"docs.tech.docs-examples",title:"Examples catalog",summary:"Document and surface example projects with sandbox support.",kind:"reference",visibility:"public",route:"/docs/tech/docs/examples",tags:["docs","examples"],body:`# Examples catalog
|
|
2
|
+
|
|
3
|
+
Examples are registered as ExampleSpecs and surface DocBlocks for discovery, templates, and sandbox entrypoints.
|
|
4
|
+
`},ExampleCatalogDataView=t(m,{meta:{key:"docs.examples.catalog.view",title:"Examples Catalog",version:"1.0.0",description:"Catalog view of ContractSpec examples and demos.",domain:e,owners:a,tags:[...i,"examples"],stability:o,entity:"docs-examples",docId:[r("docs.tech.docs-examples")]},source:{primary:{key:l.meta.key,version:l.meta.version}},view:{kind:"grid",fields:[{key:"id",label:"field.id.label",dataPath:"id"},{key:"title",label:"field.title.label",dataPath:"title"},{key:"summary",label:"field.summary.label",dataPath:"summary"},{key:"route",label:"field.route.label",dataPath:"route"},{key:"tags",label:"field.tags.label",dataPath:"tags",format:"badge"}],primaryField:"title",secondaryFields:["summary"],filters:[{key:"query",label:"filter.query.label",field:"query",type:"search"},{key:"tags",label:"filter.tags.label",field:"tag",type:"enum",options:[{value:"examples",label:"filter.tags.option.examples"},{value:"templates",label:"filter.tags.option.templates"},{value:"sandbox",label:"filter.tags.option.sandbox"}]}]},policy:{flags:[],pii:[]}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./contractReference.dataView.js";export*from"./docsIndex.dataView.js";export*from"./exampleCatalog.dataView.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"./contractReference.dataView.js";export*from"./docsIndex.dataView.js";export*from"./exampleCatalog.dataView.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{evaluateEditionConnectGate as F,ManagedCompanyOsConnectReviewPacketFixture as P}from"./connect-gates.js";import{ManagedCompanyOsEditionEditorViewFixture as s}from"./editor/index.js";import{evaluateEditionEnterpriseGuardrails as O,ManagedCompanyOsEnterpriseGuardrailContextFixture as V}from"./enterprise-guardrails.js";import{ManagedCompanyOsEditionExperimentBindingFixture as G,ManagedCompanyOsEditionExperimentMetricsFixture as S,resolveEditionExperimentDashboard as D}from"./experiments.js";import{ManagedCompanyOsDatabaseExperimentEditionFixture as L,ManagedCompanyOsFilePublishedEditionFixture as I}from"./fixtures.js";import{evaluateEditionHarnessCoverage as A,ManagedCompanyOsHarnessReplayEnvelopeFixture as H}from"./harness-evidence.js";import{ManagedCompanyOsImprovementCandidateFixture as q,resolveEditionImprovementLoop as K}from"./improvement.js";import{ManagedCompanyOsCoachSuggestionFixtures as T,resolveEditionCoachWorkflowSurface as j}from"./intelligence-coach.js";import{evaluateEditionKnowledgeReadiness as W,ManagedCompanyOsKnowledgeProvenanceEnvelopeFixture as z}from"./knowledge-provenance.js";import{executeEditionRollback as B,planEditionRollback as _,resolveEditionRollbackView as J}from"./rollback.js";import{createInMemoryDatabaseEditionAdapter as N}from"./storage.js";import{createInMemoryFileEditionAdapter as Q}from"./storage-file.js";import{createInMemoryHybridEditionSyncAdapter as U}from"./storage-hybrid.js";import{validateEditionLifecycle as X}from"./validation.js";export function resolveManagedCompanyOsFullLoopScenario(){const o=I,e=L;w(o);w(e);const n=N([e]),x=Q([o]),y=U(),d=y.materializeDatabaseDraftToFilePatch({databaseEdition:e,fileAdapter:x,baseRef:o.identity.editionId,targetRef:"file-patch:customer-profile:db-experiment-v2",evidenceRefs:["artifact:db-draft-to-file-patch","harness-run:customer-profile-materialization"]});if(!d.patch)throw Error("Managed CompanyOS scenario requires a file patch.");const u=H,i=A({envelope:u,requiredArtifactKinds:["screenshot","dom-snapshot","trace"]}),R=z,a=W({envelope:R,requiredCanonRefs:["canon:companyos:customer-profile"]}),c=P,r=F({packet:c}),v=y.projectFileReleaseToDatabase({fileEdition:o,databaseAdapter:n,databaseEdition:{...e,identity:{...e.identity,state:"published"},evidence:{...e.evidence,compatibilityIntent:"behavior_compatible",promotionEvidenceRefs:["promotion:companyos:db-experiment:approved"],releaseRefs:["release:companyos:2026.06.1"]}},actorRef:"actor:contract-steward",evidenceRefs:["release:companyos:2026.06.1","replay:companyos:file-release-to-db"]}),g=_({edition:e,targetEditionRef:o.identity.editionId,approvalRefs:["approval:companyos:rollback-approved"],harnessRunRefs:["harness-run:customer-profile-rollback"],replayPacketRef:"replay:customer-profile-rollback"}),l=J(g,B(g)),p=j({surfaceRef:"coach-surface:companyos:contract-editions",suggestions:T,minimumConfidence:0.8}),b=V,t=O({context:b}),m=D({experiment:G,activeEdition:e,metrics:S,requiredEvidenceRefs:["connect:companyos:experiment-promotion:permit","harness-run:customer-profile-experiment"]}),f=K({state:{loopRef:"loop:companyos:customer-profile:full-loop",mode:"mixed",stage:"verify",activeEdition:e,scopeRefs:["workspace:managed-companyos"],candidates:[q],historyRefs:["audit:companyos:full-loop:started"]}}),h=n.getAuditEvents(e.identity.editionId).map((E)=>E.eventRef),C=["ontology:companyos:contract-editions","canon:companyos:customer-profile"],k=[{key:"contract-edition.full-loop.dashboard",version:"1.0.0"}],M=Y([...s.evidence.connectVerdictRefs,...s.evidence.harnessRunRefs,...s.evidence.knowledgeProvenanceRefs,...d.evidenceRefs,...v.evidenceRefs,...i.evidenceRefs.harnessRunRefs,...i.evidenceRefs.replayEvidenceRefs,...i.evidenceRefs.artifactRefs,...a.knowledgeProvenanceRefs,...a.canonicalRefs,...c.evidenceRefs,...r.policyDecisionRefs,...p.feedbackEventRefs,...t.auditTrailRefs,...t.redactionRefs,...t.observabilityRefs,...l.preview.requiredEvidenceRefs,...m.promotionReadiness.requiredEvidenceRefs,...f.auditEventRefs]);return{scenarioRef:"scenario:managed-companyos:contract-edition-full-loop",stableFileEdition:o,databaseExperimentEdition:e,editor:s,hybridPatch:d.patch,releaseProjection:v,harnessReplay:u,harnessCoverage:i,knowledgeProvenance:R,knowledgeReadiness:a,connectReviewPacket:c,connectGate:r,coachSurface:p,enterpriseGuardrails:b,enterpriseGuardrailResult:t,experimentDashboard:m,improvementLoop:f,rollback:l,databaseAuditEventRefs:h,canonicalOntologyRefs:C,dataViewRefs:k,evidenceTrailRefs:M,readyForEnterpriseReview:i.ready&&a.ready&&r.allowed&&r.reviewResolved&&p.decisions.every((E)=>E.ready)&&t.ready&&h.length>0&&m.promotionReadiness.ready&&l.execution?.status==="executed"&&f.autonomousActionRefs.length>0}}function w(o){const e=X(o);if(!e.valid)throw Error(`Invalid scenario edition: ${e.issues.map((n)=>n.message).join("; ")}`)}function Y(o){return Array.from(new Set(o))}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function evaluateEditionConnectGate(e){const i=a(e.packet.intent,e.packet.thresholds),n=d(e.packet),t=r(e.packet.verdict)<=r(i);return{packetRef:e.packet.packetRef,allowed:t&&n.length===0&&(i!=="require_review"||e.packet.escalationRefs.length>0)&&(e.packet.verdict!=="require_review"||e.packet.escalationRefs.length>0),reviewResolved:(i!=="require_review"||e.packet.escalationRefs.length>0)&&(e.packet.verdict!=="require_review"||e.packet.escalationRefs.length>0),verdict:e.packet.verdict,requiredVerdict:i,requiresHumanReview:e.packet.verdict==="require_review"||i==="require_review",missingEvidenceKinds:n,policyDecisionRefs:e.packet.policyDecisionRefs}}export function mergeEditionConnectGates(e){if(!e.packets.length)return{packetRef:"connect:missing",allowed:!1,verdict:"deny",requiredVerdict:"permit",reviewResolved:!1,requiresHumanReview:!0,missingEvidenceKinds:["packet"],policyDecisionRefs:[]};const i=e.packets.map((t)=>evaluateEditionConnectGate({packet:t})),n=i.reduce((t,o)=>r(o.verdict)>r(t.verdict)?o:t);return{packetRef:e.packets.map((t)=>t.packetRef).join("+"),allowed:i.every((t)=>t.allowed),reviewResolved:i.every((t)=>t.reviewResolved),verdict:n.verdict,requiredVerdict:n.requiredVerdict,requiresHumanReview:i.some((t)=>t.requiresHumanReview),missingEvidenceKinds:s(i.flatMap((t)=>t.missingEvidenceKinds)),policyDecisionRefs:s(i.flatMap((t)=>t.policyDecisionRefs))}}export const ManagedCompanyOsConnectReviewPacketFixture={packetRef:"connect:companyos:contract-edition-full-loop:packet",subjectEditionRef:"companyos.customer-profile.db.experiment.v2",intent:"experiment",verdict:"permit",thresholds:{protectedPathWrite:"require_review",unknownImpact:"require_review",contractDrift:"require_review",breakingChange:"require_review",destructiveCommand:"deny"},policyDecisionRefs:["policy-decision:companyos:connect-full-loop"],reviewerRefs:["connect-reviewer:contractspec"],evidenceRefs:["connect:companyos:experiment-promotion:permit","harness-run:companyos:contract-edition-full-loop","knowledge:companyos:customer-profile:canon"],escalationRefs:["approval:companyos:connect-review-resolved"]};function a(e,i){if(e==="breaking")return i.breakingChange??"require_review";if(e==="migration_required")return i.contractDrift??"require_review";return i.unknownImpact??"permit"}function d(e){const i=[];c(i,"policy",e.policyDecisionRefs);c(i,"reviewer",e.reviewerRefs);c(i,"evidence",e.evidenceRefs);if(e.verdict==="require_review")c(i,"escalation",e.escalationRefs);return i}function r(e){return{permit:0,rewrite:1,require_review:2,deny:3}[e]}function c(e,i,n){if(!n.length)e.push(i)}function s(e){return Array.from(new Set(e))}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function evaluateEditionDeliveryAudit(e){const i={};for(const t of e.modules){const o=a(t,e.assets);if(o.length)i[t.moduleRef]=o}return{complete:Object.keys(i).length===0,missingByModule:i,moduleRefs:e.modules.map((t)=>t.moduleRef)}}export const EditionFullLoopDeliveryAssets={exportRefs:["@lssm/lib.contracts-spec/editions","@lssm/lib.contracts-spec/editions/editor","@lssm/lib.contracts-spec/editions/storage","@lssm/lib.contracts-spec/editions/storage-file","@lssm/lib.contracts-spec/editions/storage-hybrid","@lssm/lib.contracts-spec/editions/rollback","@lssm/lib.contracts-spec/editions/experiments","@lssm/lib.contracts-spec/editions/improvement","@lssm/lib.contracts-spec/editions/companyos-scenario","@lssm/lib.contracts-spec/editions/harness-evidence","@lssm/lib.contracts-spec/editions/knowledge-provenance","@lssm/lib.contracts-spec/editions/connect-gates","@lssm/lib.contracts-spec/editions/intelligence-coach","@lssm/lib.contracts-spec/editions/enterprise-guardrails","@lssm/lib.contracts-spec/editions/ontology-boundary","@lssm/lib.contracts-spec/editions/evidence-boundary","@lssm/lib.contracts-spec/editions/storage-parity","@lssm/lib.contracts-spec/editions/delivery-audit","@lssm/lib.contracts-spec/editions/full-loop-gate","@lssm/lib.contracts-spec/editions/operation-specs","@lssm/lib.contracts-spec/editions/runtime-wiring","@lssm/example.managed-companyos-contract-editions/example"],testRefs:["test:editor","test:storage","test:storage-file","test:storage-hybrid","test:rollback","test:experiments","test:improvement","test:companyos-scenario","test:harness-evidence","test:knowledge-provenance","test:connect-gates","test:intelligence-coach","test:enterprise-guardrails","test:ontology-boundary","test:evidence-boundary","test:storage-parity","test:delivery-audit","test:full-loop-gate","test:operation-specs","test:runtime-wiring","test:managed-companyos-contract-editions-example"],docRefs:["packages/libs/contracts-spec/src/editions/README.md","packages/examples/managed-companyos-contract-editions/README.md"]},EditionFullLoopDeliveryRecords=[s("editor","ManagedCompanyOsEditionEditorViewFixture"),s("storage","createInMemoryDatabaseEditionAdapter"),s("storage-file","createInMemoryFileEditionAdapter"),s("storage-hybrid","createInMemoryHybridEditionSyncAdapter"),s("rollback","planEditionRollback"),s("experiments","ManagedCompanyOsEditionExperimentBindingFixture"),s("improvement","ManagedCompanyOsImprovementCandidateFixture"),s("companyos-scenario","resolveManagedCompanyOsFullLoopScenario"),s("harness-evidence","ManagedCompanyOsHarnessReplayEnvelopeFixture"),s("knowledge-provenance","ManagedCompanyOsKnowledgeProvenanceEnvelopeFixture"),s("connect-gates","ManagedCompanyOsConnectReviewPacketFixture"),s("intelligence-coach","ManagedCompanyOsCoachSuggestionFixtures"),s("enterprise-guardrails","ManagedCompanyOsEnterpriseGuardrailContextFixture"),s("ontology-boundary","evaluateEditionOntologyBoundary"),s("evidence-boundary","evaluateEditionEvidenceBoundary"),s("storage-parity","evaluateEditionStorageParity"),s("operation-specs","EditionOperationSpecs"),s("runtime-wiring","evaluateEditionRuntimeWiring"),r()];function s(e,i){return{moduleRef:e,contractRefs:[`types:${e}`],runtimeRefs:[`runtime:${i}`],fixtureRefs:[`fixture:${i}`],testRefs:[`test:${e}`],exportRefs:[`@lssm/lib.contracts-spec/editions/${e}`],docRefs:["packages/libs/contracts-spec/src/editions/README.md"]}}function r(){return{moduleRef:"managed-companyos-contract-editions-example",contractRefs:["types:managed-companyos-contract-editions-example"],runtimeRefs:["runtime:resolveManagedCompanyOsEditionsExample"],fixtureRefs:["fixture:ManagedCompanyOsEditionsExample"],testRefs:["test:managed-companyos-contract-editions-example"],exportRefs:["@lssm/example.managed-companyos-contract-editions/example"],docRefs:["packages/examples/managed-companyos-contract-editions/README.md"]}}function a(e,i){const t=[];if(!e.contractRefs.length)t.push("contracts");if(!e.runtimeRefs.length)t.push("runtime");if(!e.fixtureRefs.length)t.push("fixtures");if(!e.testRefs.length)t.push("tests");if(!e.exportRefs.length)t.push("exports");if(!e.docRefs.length)t.push("docs");if(!i)return t;if(!n(e.testRefs,i.testRefs))t.push("available-tests");if(!n(e.exportRefs,i.exportRefs))t.push("available-exports");if(!n(e.docRefs,i.docRefs))t.push("available-docs");return t}function n(e,i){return e.every((t)=>i.includes(t))}
|