@jacfrost/autopm 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +149 -0
- package/bin/autopm +4 -0
- package/docs/autopm-bootstrap.md +327 -0
- package/docs/autopm-command-surface.md +73 -0
- package/docs/autopm-gsd-pi-architecture.md +125 -0
- package/docs/autopm-heartbeat.md +94 -0
- package/docs/autopm-local-workspace-contract.md +34 -0
- package/docs/autopm-memory-operator-guide.md +301 -0
- package/docs/autopm-memory-runtime-contract.md +81 -0
- package/docs/autopm-memory-tree.md +142 -0
- package/docs/autopm-memory-workspace-contract.md +172 -0
- package/docs/autopm-package.md +46 -0
- package/docs/autopm-pi-upgrade-runbook.md +58 -0
- package/docs/autopm-runtime-context.md +125 -0
- package/docs/autopm-runtime-dashboard.md +101 -0
- package/docs/opportunities-agentic-workflow-requirements.md +255 -0
- package/docs/product-setup.md +112 -0
- package/docs/venture-signal.md +437 -0
- package/extensions/autopm/extension-manifest.json +98 -0
- package/extensions/autopm/index.js +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.js +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/cli.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.js +4 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/register-bedrock.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.d.ts +13 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.js +32 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/bun/restore-sandbox-env.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.d.ts +53 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.js +341 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/args.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.js +31 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/config-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.js +83 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/file-processor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.d.ts +18 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.js +22 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/initial-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.js +98 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/list-models.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.js +35 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli/session-picker.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.js +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/cli.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.d.ts +95 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.js +427 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/config.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.d.ts +117 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.js +300 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-runtime.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.d.ts +86 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.js +117 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session-services.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.d.ts +596 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.js +2554 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/agent-session.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.js +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-guidance.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.d.ts +141 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.js +441 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/auth-storage.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.d.ts +32 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.js +111 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/bash-executor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.d.ts +88 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.js +243 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.d.ts +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.js +625 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/compaction.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.d.ts +7 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.js +7 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.d.ts +38 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.js +153 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/compaction/utils.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.js +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/defaults.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.js +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/diagnostics.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.js +25 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/event-bus.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.d.ts +29 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.js +75 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/exec.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.d.ts +22 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.js +249 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/ansi-to-html.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.d.ts +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.js +224 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.css +1066 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.html +55 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/template.js +1834 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.d.ts +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.js +108 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/vendor/highlight.min.js +1213 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/export-html/vendor/marked.min.js +6 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.js +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.d.ts +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.js +498 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/loader.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.d.ts +159 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.js +830 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/runner.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.d.ts +1176 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.js +45 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/types.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.js +22 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/extensions/wrapper.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.d.ts +52 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.js +310 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/footer-data-provider.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.js +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.d.ts +353 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.js +295 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/keybindings.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.d.ts +77 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.js +123 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/messages.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.d.ts +150 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.js +728 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-registry.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.d.ts +110 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.js +495 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/model-resolver.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.d.ts +6 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.js +59 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/output-guard.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.d.ts +203 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.js +2018 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/package-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.d.ts +52 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.js +252 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/prompt-templates.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/provider-display-names.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.js +126 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resolve-config-value.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.d.ts +194 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.js +727 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/resource-loader.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.d.ts +107 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.js +282 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/sdk.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.d.ts +19 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.js +38 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-cwd.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.d.ts +333 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.js +1139 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/session-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.d.ts +261 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.js +782 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/settings-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.d.ts +60 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.js +401 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/skills.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.js +25 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/slash-commands.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.d.ts +18 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.js +19 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/source-info.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.d.ts +28 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.js +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/system-prompt.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.js +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/telemetry.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.js +31 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/timings.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.d.ts +68 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.js +364 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/bash.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.d.ts +85 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.js +338 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit-diff.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.d.ts +49 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.js +310 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/edit.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.d.ts +6 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.js +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/file-mutation-queue.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.d.ts +35 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.js +298 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/find.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.d.ts +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.js +304 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/grep.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.d.ts +40 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.js +112 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.d.ts +37 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.js +169 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/ls.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.d.ts +50 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.js +178 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/output-accumulator.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.js +81 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/path-utils.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.d.ts +35 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.js +286 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/read.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.js +49 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/render-utils.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.js +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/tool-definition-wrapper.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.d.ts +70 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.js +205 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/truncate.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.js +213 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/core/tools/write.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.d.ts +28 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.js +41 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.js +577 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/main.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.d.ts +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.js +281 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/migrations.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.js +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.js +333 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.js +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.d.ts +34 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.js +175 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.js +54 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/bottom-anchor-spacer.js +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.js +506 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.js +140 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.js +133 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/diff.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.js +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.js +40 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.js +119 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.js +83 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.js +133 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.d.ts +32 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/index.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +13 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.js +36 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.d.ts +46 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.js +160 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.js +278 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.js +165 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.js +290 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +23 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.d.ts +96 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.js +861 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.d.ts +67 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.js +375 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.d.ts +63 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.js +407 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.d.ts +89 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.js +1093 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.js +114 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.d.ts +10 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.js +29 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +24 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.d.ts +369 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.js +4662 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/dark.json +85 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/light.json +84 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme-schema.json +335 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.d.ts +81 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.js +1062 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.d.ts +28 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.js +131 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/print-mode.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.d.ts +17 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.js +49 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/jsonl.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.d.ts +224 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.js +410 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.d.ts +20 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.js +601 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.d.ts +419 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.js +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.d.ts +4 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.js +476 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/package-manager-cli.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.js +52 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/ansi.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.js +87 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/changelog.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.d.ts +15 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.js +88 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/child-process.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.d.ts +11 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.js +245 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-image.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.js +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard-native.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.js +117 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/clipboard.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.js +158 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/exif-orientation.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.d.ts +8 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.js +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/frontmatter.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.js +25 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/fs-watch.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.d.ts +26 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.js +163 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/git.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.d.ts +7 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.js +40 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/html.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.d.ts +9 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.js +39 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-convert.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.d.ts +36 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.js +137 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/image-resize.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.js +69 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/mime.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.d.ts +16 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.js +50 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/paths.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.d.ts +21 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.js +121 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/photon.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.d.ts +2 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.js +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/pi-user-agent.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.d.ts +30 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.js +190 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/shell.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.d.ts +5 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.js +17 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/sleep.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.d.ts +12 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.js +118 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/syntax-highlight.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.js +328 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/tools-manager.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.d.ts +14 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.js +77 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/version-check.js.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.d.ts +3 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.d.ts.map +1 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.js +77 -0
- package/forks/autopm-pi-mono/packages/coding-agent/dist/utils/windows-self-update.js.map +1 -0
- package/node_modules/@mixmark-io/domino/.gitmodules +6 -0
- package/node_modules/@mixmark-io/domino/.mocharc.json +8 -0
- package/node_modules/@mixmark-io/domino/.nvmrc +1 -0
- package/node_modules/@mixmark-io/domino/.yarn/plugins/@yarnpkg/plugin-version.cjs +550 -0
- package/node_modules/@mixmark-io/domino/.yarn/versions/78b6ef77.yml +0 -0
- package/node_modules/@mixmark-io/domino/CHANGELOG.md +294 -0
- package/node_modules/@mixmark-io/domino/CONTRIBUTING.md +4 -0
- package/node_modules/@mixmark-io/domino/LICENSE +25 -0
- package/node_modules/@mixmark-io/domino/README.md +141 -0
- package/node_modules/@mixmark-io/domino/lib/CSSStyleDeclaration.js +234 -0
- package/node_modules/@mixmark-io/domino/lib/CharacterData.js +120 -0
- package/node_modules/@mixmark-io/domino/lib/ChildNode.js +119 -0
- package/node_modules/@mixmark-io/domino/lib/Comment.js +40 -0
- package/node_modules/@mixmark-io/domino/lib/ContainerNode.js +80 -0
- package/node_modules/@mixmark-io/domino/lib/CustomEvent.js +12 -0
- package/node_modules/@mixmark-io/domino/lib/DOMException.js +134 -0
- package/node_modules/@mixmark-io/domino/lib/DOMImplementation.js +94 -0
- package/node_modules/@mixmark-io/domino/lib/DOMTokenList.js +186 -0
- package/node_modules/@mixmark-io/domino/lib/Document.js +884 -0
- package/node_modules/@mixmark-io/domino/lib/DocumentFragment.js +71 -0
- package/node_modules/@mixmark-io/domino/lib/DocumentType.js +36 -0
- package/node_modules/@mixmark-io/domino/lib/Element.js +1228 -0
- package/node_modules/@mixmark-io/domino/lib/Event.js +66 -0
- package/node_modules/@mixmark-io/domino/lib/EventTarget.js +298 -0
- package/node_modules/@mixmark-io/domino/lib/FilteredElementList.js +92 -0
- package/node_modules/@mixmark-io/domino/lib/HTMLParser.js +7254 -0
- package/node_modules/@mixmark-io/domino/lib/Leaf.js +37 -0
- package/node_modules/@mixmark-io/domino/lib/LinkedList.js +44 -0
- package/node_modules/@mixmark-io/domino/lib/Location.js +56 -0
- package/node_modules/@mixmark-io/domino/lib/MouseEvent.js +52 -0
- package/node_modules/@mixmark-io/domino/lib/MutationConstants.js +9 -0
- package/node_modules/@mixmark-io/domino/lib/NamedNodeMap.js +41 -0
- package/node_modules/@mixmark-io/domino/lib/NavigatorID.js +17 -0
- package/node_modules/@mixmark-io/domino/lib/Node.js +764 -0
- package/node_modules/@mixmark-io/domino/lib/NodeFilter.js +24 -0
- package/node_modules/@mixmark-io/domino/lib/NodeIterator.js +217 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.es5.js +15 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.es6.js +12 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.js +13 -0
- package/node_modules/@mixmark-io/domino/lib/NodeTraversal.js +87 -0
- package/node_modules/@mixmark-io/domino/lib/NodeUtils.js +246 -0
- package/node_modules/@mixmark-io/domino/lib/NonDocumentTypeChildNode.js +26 -0
- package/node_modules/@mixmark-io/domino/lib/ProcessingInstruction.js +44 -0
- package/node_modules/@mixmark-io/domino/lib/Text.js +75 -0
- package/node_modules/@mixmark-io/domino/lib/TreeWalker.js +336 -0
- package/node_modules/@mixmark-io/domino/lib/UIEvent.js +19 -0
- package/node_modules/@mixmark-io/domino/lib/URL.js +194 -0
- package/node_modules/@mixmark-io/domino/lib/URLUtils.js +270 -0
- package/node_modules/@mixmark-io/domino/lib/Window.js +60 -0
- package/node_modules/@mixmark-io/domino/lib/WindowTimers.js +11 -0
- package/node_modules/@mixmark-io/domino/lib/attributes.js +152 -0
- package/node_modules/@mixmark-io/domino/lib/config.js +7 -0
- package/node_modules/@mixmark-io/domino/lib/defineElement.js +71 -0
- package/node_modules/@mixmark-io/domino/lib/events.js +7 -0
- package/node_modules/@mixmark-io/domino/lib/htmlelts.js +1499 -0
- package/node_modules/@mixmark-io/domino/lib/impl.js +27 -0
- package/node_modules/@mixmark-io/domino/lib/index.d.ts +5 -0
- package/node_modules/@mixmark-io/domino/lib/index.js +80 -0
- package/node_modules/@mixmark-io/domino/lib/select.js +933 -0
- package/node_modules/@mixmark-io/domino/lib/style_parser.js +106 -0
- package/node_modules/@mixmark-io/domino/lib/svg.js +59 -0
- package/node_modules/@mixmark-io/domino/lib/utils.js +85 -0
- package/node_modules/@mixmark-io/domino/lib/xmlnames.js +91 -0
- package/node_modules/@mixmark-io/domino/package.json +22 -0
- package/node_modules/@mixmark-io/domino/test/domino.js +1500 -0
- package/node_modules/@mixmark-io/domino/test/fixture/doc.html +13 -0
- package/node_modules/@mixmark-io/domino/test/fixture/jquery-1.9.1.js +9597 -0
- package/node_modules/@mixmark-io/domino/test/fixture/jquery-2.2.0.js +9831 -0
- package/node_modules/@mixmark-io/domino/test/html5lib-tests.json +80692 -0
- package/node_modules/@mixmark-io/domino/test/index.js +2 -0
- package/node_modules/@mixmark-io/domino/test/parsing.js +66 -0
- package/node_modules/@mixmark-io/domino/test/tools/update-entities.js +90 -0
- package/node_modules/@mixmark-io/domino/test/tools/update-html5lib-tests.js +355 -0
- package/node_modules/@mixmark-io/domino/test/w3c/README.md +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/harness/DomTestCase.js +438 -0
- package/node_modules/@mixmark-io/domino/test/w3c/harness/index.js +95 -0
- package/node_modules/@mixmark-io/domino/test/w3c/index.js +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentgetdoctypenodtd.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/.cvsignore +0 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_nodtdstaff.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_staff.html +48 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/staff.dtd +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddata.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddatagetdata.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatabegining.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataexceedslength.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatagetlengthanddata.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetdata.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetlength.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedatacountnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetnegative.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetgreater.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetnegative.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedatacountnegative.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringcountnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringnegativeoffset.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatabeginning.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatabegining.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofarg.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofdata.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasetnodevalue.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringexceedsvalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringvalue.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_commentgetcomment.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatecomment.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatedocumentfragment.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelement.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelementcasesensitive.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatetextnode.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetdoctype.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamelength.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnametotallength.js +221 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamevalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetimplementation.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetrootnode.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenoversion.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenull.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturexml.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementaddnewattribute.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementchangeattributevalue.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagname.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnameaccessnodelist.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamenomatch.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamespecialvalue.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgettagname.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception1.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementnormalize.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementremoveattribute.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveallattributes.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveattrvalue.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrievetagname.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiesremovenameditem1.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiessetnameditem1.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapchildnoderange.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapnumberofnodes.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchild.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildchildexists.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchilddocfragment.js +158 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildgetnodename.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnewchilddiffdocument.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnodeancestor.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeattributenodeattribute.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodes.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesappendchild.js +159 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesempty.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecloneattributescopied.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonefalsenocopytext.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonegetparentnull.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodefalse.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodetrue.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonetruecopytext.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodeattributes.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodename.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodetype.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodevalue.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodename.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodetype.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodevalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodeattribute.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodename.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodetype.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodevalue.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodeattributes.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodename.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodetype.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodevalue.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchild.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchildnull.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchild.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchildnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsibling.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsiblingnull.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocument.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocumentnull.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussibling.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussiblingnull.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodes.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodesfalse.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbefore.js +153 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforedocfragment.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchilddiffdocument.js +148 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchildexists.js +151 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodeancestor.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodename.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnonexistent.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnull.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexequalzero.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlength.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlengthofemptylist.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexnotzero.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnfirstitem.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnlastitem.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelisttraverselist.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnode.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnodenull.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechild.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildgetnodename.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildnode.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildoldchildnonexistent.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchilddiffdocument.js +148 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchildexists.js +155 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodeancestor.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodename.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildoldchildnonexistent.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodeattribute.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodename.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodetype.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue04.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue07.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue08.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationsremovenameditem1.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationssetnameditem1.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerrnegativeoffset.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerroffsetoutofbounds.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textparseintolistofelements.js +169 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextfour.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextone.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextthree.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittexttwo.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textwithnomarkup.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild1.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild2.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild3.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild4.js +152 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild5.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild6.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes1.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes2.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrclonenode1.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatedocumentfragment.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode2.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attreffectivevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrfirstchild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue2.js +146 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrhaschildnodes.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore2.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore3.js +146 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore4.js +147 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore5.js +153 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore6.js +142 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore7.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrlastchild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrname.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnextsiblingnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnormalize.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrparentnodenull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrprevioussiblingnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild1.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild2.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild1.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild2.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue1.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue2.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvalue.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvaluechanged.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentcreateattribute.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementassociatedattribute.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementcreatenewattribute.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenode.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenodenull.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetelementempty.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementinuseattributeerr.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnormalize2.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnotfounderr.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributeaftercreate.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributenode.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceattributewithself.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattribute.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattributegevalue.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementsetattributenodenull.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementwrongdocumenterr.js +147 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapgetnameditem.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapinuseattributeerr.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapnotfounderr.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapremovenameditem.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnattrnode.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnfirstitem.js +150 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnlastitem.js +152 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnnull.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditem.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemreturnvalue.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemthatexists.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemwithnewvalue.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapwrongdocumenterr.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeappendchildinvalidnodetype.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodename.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodetype.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeinsertbeforeinvalidnodetype.js +136 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodereplacechildinvalidnodetype.js +136 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodevalue03.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement10.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement11.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement12.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement13.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument01.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument17.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument18.js +102 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument19.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument20.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument21.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement100.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement101.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement102.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement103.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement104.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement105.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement106.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement107.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement108.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement109.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement11.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement110.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement111.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement112.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement113.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement114.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement115.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement116.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement117.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement118.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement119.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement12.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement120.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement121.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement122.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement123.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement124.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement125.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement126.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement127.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement128.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement129.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement13.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement130.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement131.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement132.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement133.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement134.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement135.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement136.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement137.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement138.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement139.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement14.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement140.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement141.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement142.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement143.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement144.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement145.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement15.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement16.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement17.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement18.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement19.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement20.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement21.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement22.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement23.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement24.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement25.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement26.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement27.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement28.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement29.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement30.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement31.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement32.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement33.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement34.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement35.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement36.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement37.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement38.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement39.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement40.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement41.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement42.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement43.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement44.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement45.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement46.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement47.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement48.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement49.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement50.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement51.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement52.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement53.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement54.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement55.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement56.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement57.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement58.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement59.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement60.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement61.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement62.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement63.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement64.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement65.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement66.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement67.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement68.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement69.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement70.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement71.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement72.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement73.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement74.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement75.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement76.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement77.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement78.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement79.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement80.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement81.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement82.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement83.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement84.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement85.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement86.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement87.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement88.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement89.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement90.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement91.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement92.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement93.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement94.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement95.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement96.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement97.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement98.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement99.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement10.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement05.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement06.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement11.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement12.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement03.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement13.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement21.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLIElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement01.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMapElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement11.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement15.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement16.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement17.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement19.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLParamElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement06.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement07.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement03.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement06.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement08.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement16.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement23.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement24.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement25.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement07.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableRowElement05.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement13.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement14.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement15.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement02.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTitleElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor04.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area02.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area03.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area04.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button07.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button08.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button09.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/doc01.js +106 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/.cvsignore +6 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/HTMLDocument04.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor2.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet2.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/basefont.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/body.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/br.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/button.html +21 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/collection.html +79 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/directory.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/div.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/dl.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/document.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/element.html +81 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/fieldset.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/font.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form2.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form3.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frame.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frameset.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/head.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/heading.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/hr.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/html.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/iframe.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/img.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/input.html +60 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/isindex.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/label.html +21 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/legend.html +22 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/li.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/map.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/menu.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/meta.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/mod.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object.html +18 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object2.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/olist.html +32 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/optgroup.html +25 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/option.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/paragraph.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/param.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/pre.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/quote.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/script.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/select.html +44 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/style.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table.html +78 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table1.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecaption.html +25 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecell.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecol.html +35 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablerow.html +59 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablesection.html +62 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/textarea.html +26 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/title.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/ulist.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/hasFeature01.js +96 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument02.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument03.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument04.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument12.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement09.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement10.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement19.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement20.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement22.js +108 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement15.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement16.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement18.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement19.js +137 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement08.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement09.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement19.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement20.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement21.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement22.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement23.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement24.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement25.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement26.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement27.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement28.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement29.js +137 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement30.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement31.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement32.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement33.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableRowElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement13.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement15.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object07.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object08.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object10.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object11.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object12.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object13.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object14.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement07.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement09.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBRElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement03.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection01.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection02.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection03.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection04.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection05.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection06.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection07.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection08.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection09.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection10.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection11.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection12.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDirectoryElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDivElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDlistElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument13.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument14.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFormElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHtmlElement01.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement02.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement17.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement01.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement02.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLIElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMapElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMenuElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOListElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParagraphElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLPreElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCaptionElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement19.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement20.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement21.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement22.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement26.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement27.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement28.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement29.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement30.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement03.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement05.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement15.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement18.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement11.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement12.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement13.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement14.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement16.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement17.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement18.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement19.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement20.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement21.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement22.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement23.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement24.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor02.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor03.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/basefont01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/body01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/dlist01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object02.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object03.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object04.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object09.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object15.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table07.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table15.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table18.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table19.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table20.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table21.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table22.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table23.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table24.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table26.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table27.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table29.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table30.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table31.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table32.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table33.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table35.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table36.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table37.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table38.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table39.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table40.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table41.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table42.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table43.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table44.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table45.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table46.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table47.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table48.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table49.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table50.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table52.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table53.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table25.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table28.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table34.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table51.js +112 -0
- package/node_modules/@mixmark-io/domino/test/web-platform-blocklist.json +4688 -0
- package/node_modules/@mixmark-io/domino/test/web-platform-tests.js +353 -0
- package/node_modules/@mixmark-io/domino/test/xss.js +361 -0
- package/node_modules/@mozilla/readability/.eslintrc.js +213 -0
- package/node_modules/@mozilla/readability/CHANGELOG.md +79 -0
- package/node_modules/@mozilla/readability/CODE_OF_CONDUCT.md +15 -0
- package/node_modules/@mozilla/readability/CONTRIBUTING.md +74 -0
- package/node_modules/@mozilla/readability/JSDOMParser.js +1197 -0
- package/node_modules/@mozilla/readability/LICENSE.md +13 -0
- package/node_modules/@mozilla/readability/README.md +127 -0
- package/node_modules/@mozilla/readability/Readability-readerable.js +108 -0
- package/node_modules/@mozilla/readability/Readability.js +2314 -0
- package/node_modules/@mozilla/readability/SECURITY.md +8 -0
- package/node_modules/@mozilla/readability/index.d.ts +64 -0
- package/node_modules/@mozilla/readability/index.js +8 -0
- package/node_modules/@mozilla/readability/package.json +37 -0
- package/node_modules/boolbase/README.md +10 -0
- package/node_modules/boolbase/index.js +8 -0
- package/node_modules/boolbase/package.json +23 -0
- package/node_modules/css-select/LICENSE +11 -0
- package/node_modules/css-select/README.md +264 -0
- package/node_modules/css-select/lib/attributes.d.ts +7 -0
- package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
- package/node_modules/css-select/lib/attributes.js +236 -0
- package/node_modules/css-select/lib/attributes.js.map +1 -0
- package/node_modules/css-select/lib/compile.d.ts +13 -0
- package/node_modules/css-select/lib/compile.d.ts.map +1 -0
- package/node_modules/css-select/lib/compile.js +151 -0
- package/node_modules/css-select/lib/compile.js.map +1 -0
- package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
- package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/attributes.js +222 -0
- package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
- package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
- package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/compile.js +115 -0
- package/node_modules/css-select/lib/esm/compile.js.map +1 -0
- package/node_modules/css-select/lib/esm/general.d.ts +3 -0
- package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/general.js +144 -0
- package/node_modules/css-select/lib/esm/general.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
- package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
- package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
- package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
- package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
- package/node_modules/css-select/lib/esm/index.d.ts +50 -0
- package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/index.js +115 -0
- package/node_modules/css-select/lib/esm/index.js.map +1 -0
- package/node_modules/css-select/lib/esm/package.json +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
- package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
- package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/sort.js +79 -0
- package/node_modules/css-select/lib/esm/sort.js.map +1 -0
- package/node_modules/css-select/lib/esm/types.d.ts +167 -0
- package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/types.js +2 -0
- package/node_modules/css-select/lib/esm/types.js.map +1 -0
- package/node_modules/css-select/lib/general.d.ts +3 -0
- package/node_modules/css-select/lib/general.d.ts.map +1 -0
- package/node_modules/css-select/lib/general.js +148 -0
- package/node_modules/css-select/lib/general.js.map +1 -0
- package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
- package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/cache.js +45 -0
- package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
- package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
- package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/querying.js +111 -0
- package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
- package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
- package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/selectors.js +111 -0
- package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
- package/node_modules/css-select/lib/index.d.ts +50 -0
- package/node_modules/css-select/lib/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/index.js +154 -0
- package/node_modules/css-select/lib/index.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
- package/node_modules/css-select/lib/sort.d.ts +12 -0
- package/node_modules/css-select/lib/sort.d.ts.map +1 -0
- package/node_modules/css-select/lib/sort.js +84 -0
- package/node_modules/css-select/lib/sort.js.map +1 -0
- package/node_modules/css-select/lib/types.d.ts +167 -0
- package/node_modules/css-select/lib/types.d.ts.map +1 -0
- package/node_modules/css-select/lib/types.js +3 -0
- package/node_modules/css-select/lib/types.js.map +1 -0
- package/node_modules/css-select/package.json +81 -0
- package/node_modules/css-what/LICENSE +11 -0
- package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
- package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/index.js +23 -0
- package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
- package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/parse.js +425 -0
- package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
- package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
- package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
- package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/types.js +42 -0
- package/node_modules/css-what/lib/es/index.d.ts +4 -0
- package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/index.js +3 -0
- package/node_modules/css-what/lib/es/parse.d.ts +20 -0
- package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/parse.js +420 -0
- package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
- package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/stringify.js +126 -0
- package/node_modules/css-what/lib/es/types.d.ts +70 -0
- package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/types.js +39 -0
- package/node_modules/css-what/package.json +59 -0
- package/node_modules/css-what/readme.md +69 -0
- package/node_modules/cssom/LICENSE.txt +20 -0
- package/node_modules/cssom/README.mdown +67 -0
- package/node_modules/cssom/lib/CSSConditionRule.js +25 -0
- package/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
- package/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules/cssom/lib/CSSMediaRule.js +53 -0
- package/node_modules/cssom/lib/CSSOM.js +3 -0
- package/node_modules/cssom/lib/CSSRule.js +43 -0
- package/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules/cssom/lib/CSSValue.js +43 -0
- package/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules/cssom/lib/MatcherList.js +62 -0
- package/node_modules/cssom/lib/MediaList.js +61 -0
- package/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/node_modules/cssom/lib/clone.js +74 -0
- package/node_modules/cssom/lib/index.js +23 -0
- package/node_modules/cssom/lib/parse.js +465 -0
- package/node_modules/cssom/package.json +18 -0
- package/node_modules/dom-serializer/LICENSE +11 -0
- package/node_modules/dom-serializer/README.md +109 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
- package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
- package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/esm/index.js +190 -0
- package/node_modules/dom-serializer/lib/esm/package.json +1 -0
- package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
- package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
- package/node_modules/dom-serializer/lib/index.d.ts +52 -0
- package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/index.js +229 -0
- package/node_modules/dom-serializer/package.json +69 -0
- package/node_modules/domelementtype/LICENSE +11 -0
- package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
- package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domelementtype/lib/esm/index.js +51 -0
- package/node_modules/domelementtype/lib/esm/package.json +1 -0
- package/node_modules/domelementtype/lib/index.d.ts +48 -0
- package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
- package/node_modules/domelementtype/lib/index.js +55 -0
- package/node_modules/domelementtype/package.json +54 -0
- package/node_modules/domelementtype/readme.md +1 -0
- package/node_modules/domhandler/LICENSE +11 -0
- package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
- package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domhandler/lib/esm/index.js +146 -0
- package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
- package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
- package/node_modules/domhandler/lib/esm/node.js +338 -0
- package/node_modules/domhandler/lib/esm/package.json +1 -0
- package/node_modules/domhandler/lib/index.d.ts +76 -0
- package/node_modules/domhandler/lib/index.d.ts.map +1 -0
- package/node_modules/domhandler/lib/index.js +165 -0
- package/node_modules/domhandler/lib/node.d.ts +245 -0
- package/node_modules/domhandler/lib/node.d.ts.map +1 -0
- package/node_modules/domhandler/lib/node.js +474 -0
- package/node_modules/domhandler/package.json +73 -0
- package/node_modules/domhandler/readme.md +92 -0
- package/node_modules/domutils/LICENSE +11 -0
- package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
- package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/feeds.js +183 -0
- package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
- package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
- package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/helpers.js +136 -0
- package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
- package/node_modules/domutils/lib/esm/index.d.ts +10 -0
- package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/index.js +10 -0
- package/node_modules/domutils/lib/esm/index.js.map +1 -0
- package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
- package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/legacy.js +152 -0
- package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
- package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
- package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/manipulation.js +134 -0
- package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
- package/node_modules/domutils/lib/esm/package.json +1 -0
- package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
- package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/querying.js +142 -0
- package/node_modules/domutils/lib/esm/querying.js.map +1 -0
- package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
- package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/stringify.js +81 -0
- package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
- package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
- package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/traversal.js +112 -0
- package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
- package/node_modules/domutils/lib/feeds.d.ts +71 -0
- package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
- package/node_modules/domutils/lib/feeds.js +190 -0
- package/node_modules/domutils/lib/feeds.js.map +1 -0
- package/node_modules/domutils/lib/helpers.d.ts +59 -0
- package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
- package/node_modules/domutils/lib/helpers.js +142 -0
- package/node_modules/domutils/lib/helpers.js.map +1 -0
- package/node_modules/domutils/lib/index.d.ts +10 -0
- package/node_modules/domutils/lib/index.d.ts.map +1 -0
- package/node_modules/domutils/lib/index.js +33 -0
- package/node_modules/domutils/lib/index.js.map +1 -0
- package/node_modules/domutils/lib/legacy.d.ts +79 -0
- package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
- package/node_modules/domutils/lib/legacy.js +168 -0
- package/node_modules/domutils/lib/legacy.js.map +1 -0
- package/node_modules/domutils/lib/manipulation.d.ts +49 -0
- package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
- package/node_modules/domutils/lib/manipulation.js +142 -0
- package/node_modules/domutils/lib/manipulation.js.map +1 -0
- package/node_modules/domutils/lib/querying.d.ts +64 -0
- package/node_modules/domutils/lib/querying.d.ts.map +1 -0
- package/node_modules/domutils/lib/querying.js +155 -0
- package/node_modules/domutils/lib/querying.js.map +1 -0
- package/node_modules/domutils/lib/stringify.d.ts +46 -0
- package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
- package/node_modules/domutils/lib/stringify.js +91 -0
- package/node_modules/domutils/lib/stringify.js.map +1 -0
- package/node_modules/domutils/lib/traversal.d.ts +67 -0
- package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
- package/node_modules/domutils/lib/traversal.js +125 -0
- package/node_modules/domutils/lib/traversal.js.map +1 -0
- package/node_modules/domutils/package.json +79 -0
- package/node_modules/domutils/readme.md +31 -0
- package/node_modules/entities/LICENSE +11 -0
- package/node_modules/entities/lib/decode.d.ts +211 -0
- package/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/node_modules/entities/lib/decode.js +536 -0
- package/node_modules/entities/lib/decode.js.map +1 -0
- package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
- package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/node_modules/entities/lib/decode_codepoint.js +76 -0
- package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
- package/node_modules/entities/lib/encode.d.ts +22 -0
- package/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/node_modules/entities/lib/encode.js +77 -0
- package/node_modules/entities/lib/encode.js.map +1 -0
- package/node_modules/entities/lib/escape.d.ts +43 -0
- package/node_modules/entities/lib/escape.d.ts.map +1 -0
- package/node_modules/entities/lib/escape.js +122 -0
- package/node_modules/entities/lib/escape.js.map +1 -0
- package/node_modules/entities/lib/esm/decode.d.ts +211 -0
- package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/decode.js +496 -0
- package/node_modules/entities/lib/esm/decode.js.map +1 -0
- package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
- package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
- package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
- package/node_modules/entities/lib/esm/encode.d.ts +22 -0
- package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/encode.js +69 -0
- package/node_modules/entities/lib/esm/encode.js.map +1 -0
- package/node_modules/entities/lib/esm/escape.d.ts +43 -0
- package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/escape.js +116 -0
- package/node_modules/entities/lib/esm/escape.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
- package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
- package/node_modules/entities/lib/esm/index.d.ts +96 -0
- package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/index.js +99 -0
- package/node_modules/entities/lib/esm/index.js.map +1 -0
- package/node_modules/entities/lib/esm/package.json +1 -0
- package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
- package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
- package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
- package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
- package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/encode-html.js +12 -0
- package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
- package/node_modules/entities/lib/index.d.ts +96 -0
- package/node_modules/entities/lib/index.d.ts.map +1 -0
- package/node_modules/entities/lib/index.js +126 -0
- package/node_modules/entities/lib/index.js.map +1 -0
- package/node_modules/entities/package.json +90 -0
- package/node_modules/entities/readme.md +122 -0
- package/node_modules/html-escaper/LICENSE.txt +19 -0
- package/node_modules/html-escaper/README.md +110 -0
- package/node_modules/html-escaper/cjs/index.js +74 -0
- package/node_modules/html-escaper/cjs/package.json +1 -0
- package/node_modules/html-escaper/esm/index.js +71 -0
- package/node_modules/html-escaper/index.js +81 -0
- package/node_modules/html-escaper/min.js +1 -0
- package/node_modules/html-escaper/package.json +47 -0
- package/node_modules/html-escaper/test/index.js +23 -0
- package/node_modules/html-escaper/test/package.json +1 -0
- package/node_modules/htmlparser2/LICENSE +18 -0
- package/node_modules/htmlparser2/README.md +171 -0
- package/node_modules/htmlparser2/lib/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/Parser.js +519 -0
- package/node_modules/htmlparser2/lib/Parser.js.map +1 -0
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/Tokenizer.js +791 -0
- package/node_modules/htmlparser2/lib/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/lib/WritableStream.d.ts +17 -0
- package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/WritableStream.js +54 -0
- package/node_modules/htmlparser2/lib/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Parser.js +490 -0
- package/node_modules/htmlparser2/lib/esm/Parser.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js +784 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +17 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.js +32 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/index.d.ts +54 -0
- package/node_modules/htmlparser2/lib/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/index.js +74 -0
- package/node_modules/htmlparser2/lib/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/package.json +1 -0
- package/node_modules/htmlparser2/lib/index.d.ts +54 -0
- package/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/index.js +114 -0
- package/node_modules/htmlparser2/lib/index.js.map +1 -0
- package/node_modules/htmlparser2/package.json +97 -0
- package/node_modules/linkedom/.github/workflows/node.js.yml +31 -0
- package/node_modules/linkedom/LICENSE +15 -0
- package/node_modules/linkedom/README.md +307 -0
- package/node_modules/linkedom/cjs/cached.js +153 -0
- package/node_modules/linkedom/cjs/dom/parser.js +41 -0
- package/node_modules/linkedom/cjs/dom/string-map.js +47 -0
- package/node_modules/linkedom/cjs/dom/token-list.js +103 -0
- package/node_modules/linkedom/cjs/html/anchor-element.js +35 -0
- package/node_modules/linkedom/cjs/html/area-element.js +12 -0
- package/node_modules/linkedom/cjs/html/audio-element.js +12 -0
- package/node_modules/linkedom/cjs/html/base-element.js +12 -0
- package/node_modules/linkedom/cjs/html/body-element.js +12 -0
- package/node_modules/linkedom/cjs/html/br-element.js +12 -0
- package/node_modules/linkedom/cjs/html/button-element.js +31 -0
- package/node_modules/linkedom/cjs/html/canvas-element.js +53 -0
- package/node_modules/linkedom/cjs/html/d-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/data-element.js +12 -0
- package/node_modules/linkedom/cjs/html/data-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/details-element.js +12 -0
- package/node_modules/linkedom/cjs/html/directory-element.js +12 -0
- package/node_modules/linkedom/cjs/html/div-element.js +12 -0
- package/node_modules/linkedom/cjs/html/document.js +105 -0
- package/node_modules/linkedom/cjs/html/element.js +321 -0
- package/node_modules/linkedom/cjs/html/embed-element.js +12 -0
- package/node_modules/linkedom/cjs/html/field-set-element.js +12 -0
- package/node_modules/linkedom/cjs/html/font-element.js +12 -0
- package/node_modules/linkedom/cjs/html/form-element.js +12 -0
- package/node_modules/linkedom/cjs/html/frame-element.js +12 -0
- package/node_modules/linkedom/cjs/html/frame-set-element.js +12 -0
- package/node_modules/linkedom/cjs/html/head-element.js +12 -0
- package/node_modules/linkedom/cjs/html/heading-element.js +19 -0
- package/node_modules/linkedom/cjs/html/hr-element.js +12 -0
- package/node_modules/linkedom/cjs/html/html-element.js +12 -0
- package/node_modules/linkedom/cjs/html/i-frame-element.js +43 -0
- package/node_modules/linkedom/cjs/html/image-element.js +43 -0
- package/node_modules/linkedom/cjs/html/input-element.js +40 -0
- package/node_modules/linkedom/cjs/html/label-element.js +12 -0
- package/node_modules/linkedom/cjs/html/legend-element.js +12 -0
- package/node_modules/linkedom/cjs/html/li-element.js +12 -0
- package/node_modules/linkedom/cjs/html/link-element.js +41 -0
- package/node_modules/linkedom/cjs/html/map-element.js +12 -0
- package/node_modules/linkedom/cjs/html/marquee-element.js +12 -0
- package/node_modules/linkedom/cjs/html/media-element.js +12 -0
- package/node_modules/linkedom/cjs/html/menu-element.js +12 -0
- package/node_modules/linkedom/cjs/html/meta-element.js +36 -0
- package/node_modules/linkedom/cjs/html/meter-element.js +12 -0
- package/node_modules/linkedom/cjs/html/mod-element.js +12 -0
- package/node_modules/linkedom/cjs/html/o-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/object-element.js +12 -0
- package/node_modules/linkedom/cjs/html/opt-group-element.js +12 -0
- package/node_modules/linkedom/cjs/html/option-element.js +32 -0
- package/node_modules/linkedom/cjs/html/output-element.js +12 -0
- package/node_modules/linkedom/cjs/html/paragraph-element.js +12 -0
- package/node_modules/linkedom/cjs/html/param-element.js +12 -0
- package/node_modules/linkedom/cjs/html/picture-element.js +12 -0
- package/node_modules/linkedom/cjs/html/pre-element.js +12 -0
- package/node_modules/linkedom/cjs/html/progress-element.js +12 -0
- package/node_modules/linkedom/cjs/html/quote-element.js +12 -0
- package/node_modules/linkedom/cjs/html/script-element.js +80 -0
- package/node_modules/linkedom/cjs/html/select-element.js +45 -0
- package/node_modules/linkedom/cjs/html/slot-element.js +62 -0
- package/node_modules/linkedom/cjs/html/source-element.js +34 -0
- package/node_modules/linkedom/cjs/html/span-element.js +12 -0
- package/node_modules/linkedom/cjs/html/style-element.js +53 -0
- package/node_modules/linkedom/cjs/html/table-caption-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-cell-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-row-element.js +12 -0
- package/node_modules/linkedom/cjs/html/template-element.js +31 -0
- package/node_modules/linkedom/cjs/html/text-area-element.js +37 -0
- package/node_modules/linkedom/cjs/html/text-element.js +16 -0
- package/node_modules/linkedom/cjs/html/time-element.js +12 -0
- package/node_modules/linkedom/cjs/html/title-element.js +19 -0
- package/node_modules/linkedom/cjs/html/track-element.js +12 -0
- package/node_modules/linkedom/cjs/html/u-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/unknown-element.js +12 -0
- package/node_modules/linkedom/cjs/html/video-element.js +12 -0
- package/node_modules/linkedom/cjs/index.js +48 -0
- package/node_modules/linkedom/cjs/interface/attr.js +59 -0
- package/node_modules/linkedom/cjs/interface/cdata-section.js +22 -0
- package/node_modules/linkedom/cjs/interface/character-data.js +86 -0
- package/node_modules/linkedom/cjs/interface/comment.js +22 -0
- package/node_modules/linkedom/cjs/interface/css-style-declaration.js +130 -0
- package/node_modules/linkedom/cjs/interface/custom-element-registry.js +212 -0
- package/node_modules/linkedom/cjs/interface/custom-event.js +21 -0
- package/node_modules/linkedom/cjs/interface/document-fragment.js +13 -0
- package/node_modules/linkedom/cjs/interface/document-type.js +43 -0
- package/node_modules/linkedom/cjs/interface/document.js +290 -0
- package/node_modules/linkedom/cjs/interface/element.js +513 -0
- package/node_modules/linkedom/cjs/interface/event-target.js +89 -0
- package/node_modules/linkedom/cjs/interface/event.js +65 -0
- package/node_modules/linkedom/cjs/interface/html-collection.js +4 -0
- package/node_modules/linkedom/cjs/interface/image.js +23 -0
- package/node_modules/linkedom/cjs/interface/input-event.js +24 -0
- package/node_modules/linkedom/cjs/interface/mutation-observer.js +176 -0
- package/node_modules/linkedom/cjs/interface/named-node-map.js +44 -0
- package/node_modules/linkedom/cjs/interface/node-filter.js +17 -0
- package/node_modules/linkedom/cjs/interface/node-list.js +10 -0
- package/node_modules/linkedom/cjs/interface/node.js +206 -0
- package/node_modules/linkedom/cjs/interface/range.js +131 -0
- package/node_modules/linkedom/cjs/interface/shadow-root.js +22 -0
- package/node_modules/linkedom/cjs/interface/text.js +44 -0
- package/node_modules/linkedom/cjs/interface/tree-walker.js +60 -0
- package/node_modules/linkedom/cjs/mixin/child-node.js +67 -0
- package/node_modules/linkedom/cjs/mixin/inner-html.js +39 -0
- package/node_modules/linkedom/cjs/mixin/non-document-type-child-node.js +23 -0
- package/node_modules/linkedom/cjs/mixin/non-element-parent-node.js +44 -0
- package/node_modules/linkedom/cjs/mixin/parent-node.js +295 -0
- package/node_modules/linkedom/cjs/package.json +1 -0
- package/node_modules/linkedom/cjs/shared/attributes.js +111 -0
- package/node_modules/linkedom/cjs/shared/cache.js +33 -0
- package/node_modules/linkedom/cjs/shared/constants.js +56 -0
- package/node_modules/linkedom/cjs/shared/facades.js +91 -0
- package/node_modules/linkedom/cjs/shared/html-classes.js +210 -0
- package/node_modules/linkedom/cjs/shared/jsdon.js +79 -0
- package/node_modules/linkedom/cjs/shared/matches.js +121 -0
- package/node_modules/linkedom/cjs/shared/mime.js +33 -0
- package/node_modules/linkedom/cjs/shared/node.js +53 -0
- package/node_modules/linkedom/cjs/shared/object.js +18 -0
- package/node_modules/linkedom/cjs/shared/parse-from-string.js +125 -0
- package/node_modules/linkedom/cjs/shared/parse-json.js +134 -0
- package/node_modules/linkedom/cjs/shared/register-html-class.js +11 -0
- package/node_modules/linkedom/cjs/shared/shadow-roots.js +3 -0
- package/node_modules/linkedom/cjs/shared/symbols.js +88 -0
- package/node_modules/linkedom/cjs/shared/text-escaper.js +24 -0
- package/node_modules/linkedom/cjs/shared/utils.js +49 -0
- package/node_modules/linkedom/cjs/svg/document.js +14 -0
- package/node_modules/linkedom/cjs/svg/element.js +60 -0
- package/node_modules/linkedom/cjs/xml/document.js +14 -0
- package/node_modules/linkedom/commonjs/canvas-shim.cjs +16 -0
- package/node_modules/linkedom/commonjs/canvas.cjs +7 -0
- package/node_modules/linkedom/commonjs/perf_hooks.cjs +9 -0
- package/node_modules/linkedom/esm/cached.js +151 -0
- package/node_modules/linkedom/esm/dom/parser.js +39 -0
- package/node_modules/linkedom/esm/dom/string-map.js +45 -0
- package/node_modules/linkedom/esm/dom/token-list.js +101 -0
- package/node_modules/linkedom/esm/html/anchor-element.js +34 -0
- package/node_modules/linkedom/esm/html/area-element.js +10 -0
- package/node_modules/linkedom/esm/html/audio-element.js +10 -0
- package/node_modules/linkedom/esm/html/base-element.js +10 -0
- package/node_modules/linkedom/esm/html/body-element.js +10 -0
- package/node_modules/linkedom/esm/html/br-element.js +10 -0
- package/node_modules/linkedom/esm/html/button-element.js +30 -0
- package/node_modules/linkedom/esm/html/canvas-element.js +52 -0
- package/node_modules/linkedom/esm/html/d-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/data-element.js +10 -0
- package/node_modules/linkedom/esm/html/data-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/details-element.js +10 -0
- package/node_modules/linkedom/esm/html/directory-element.js +10 -0
- package/node_modules/linkedom/esm/html/div-element.js +10 -0
- package/node_modules/linkedom/esm/html/document.js +103 -0
- package/node_modules/linkedom/esm/html/element.js +319 -0
- package/node_modules/linkedom/esm/html/embed-element.js +10 -0
- package/node_modules/linkedom/esm/html/field-set-element.js +10 -0
- package/node_modules/linkedom/esm/html/font-element.js +10 -0
- package/node_modules/linkedom/esm/html/form-element.js +10 -0
- package/node_modules/linkedom/esm/html/frame-element.js +10 -0
- package/node_modules/linkedom/esm/html/frame-set-element.js +10 -0
- package/node_modules/linkedom/esm/html/head-element.js +10 -0
- package/node_modules/linkedom/esm/html/heading-element.js +18 -0
- package/node_modules/linkedom/esm/html/hr-element.js +10 -0
- package/node_modules/linkedom/esm/html/html-element.js +10 -0
- package/node_modules/linkedom/esm/html/i-frame-element.js +42 -0
- package/node_modules/linkedom/esm/html/image-element.js +42 -0
- package/node_modules/linkedom/esm/html/input-element.js +39 -0
- package/node_modules/linkedom/esm/html/label-element.js +10 -0
- package/node_modules/linkedom/esm/html/legend-element.js +10 -0
- package/node_modules/linkedom/esm/html/li-element.js +10 -0
- package/node_modules/linkedom/esm/html/link-element.js +40 -0
- package/node_modules/linkedom/esm/html/map-element.js +10 -0
- package/node_modules/linkedom/esm/html/marquee-element.js +10 -0
- package/node_modules/linkedom/esm/html/media-element.js +10 -0
- package/node_modules/linkedom/esm/html/menu-element.js +10 -0
- package/node_modules/linkedom/esm/html/meta-element.js +34 -0
- package/node_modules/linkedom/esm/html/meter-element.js +10 -0
- package/node_modules/linkedom/esm/html/mod-element.js +10 -0
- package/node_modules/linkedom/esm/html/o-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/object-element.js +10 -0
- package/node_modules/linkedom/esm/html/opt-group-element.js +10 -0
- package/node_modules/linkedom/esm/html/option-element.js +31 -0
- package/node_modules/linkedom/esm/html/output-element.js +10 -0
- package/node_modules/linkedom/esm/html/paragraph-element.js +10 -0
- package/node_modules/linkedom/esm/html/param-element.js +10 -0
- package/node_modules/linkedom/esm/html/picture-element.js +10 -0
- package/node_modules/linkedom/esm/html/pre-element.js +10 -0
- package/node_modules/linkedom/esm/html/progress-element.js +10 -0
- package/node_modules/linkedom/esm/html/quote-element.js +10 -0
- package/node_modules/linkedom/esm/html/script-element.js +79 -0
- package/node_modules/linkedom/esm/html/select-element.js +44 -0
- package/node_modules/linkedom/esm/html/slot-element.js +61 -0
- package/node_modules/linkedom/esm/html/source-element.js +33 -0
- package/node_modules/linkedom/esm/html/span-element.js +10 -0
- package/node_modules/linkedom/esm/html/style-element.js +52 -0
- package/node_modules/linkedom/esm/html/table-caption-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-cell-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-row-element.js +10 -0
- package/node_modules/linkedom/esm/html/template-element.js +30 -0
- package/node_modules/linkedom/esm/html/text-area-element.js +36 -0
- package/node_modules/linkedom/esm/html/text-element.js +14 -0
- package/node_modules/linkedom/esm/html/time-element.js +10 -0
- package/node_modules/linkedom/esm/html/title-element.js +18 -0
- package/node_modules/linkedom/esm/html/track-element.js +10 -0
- package/node_modules/linkedom/esm/html/u-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/unknown-element.js +10 -0
- package/node_modules/linkedom/esm/html/video-element.js +10 -0
- package/node_modules/linkedom/esm/index.js +28 -0
- package/node_modules/linkedom/esm/interface/attr.js +57 -0
- package/node_modules/linkedom/esm/interface/cdata-section.js +20 -0
- package/node_modules/linkedom/esm/interface/character-data.js +84 -0
- package/node_modules/linkedom/esm/interface/comment.js +20 -0
- package/node_modules/linkedom/esm/interface/css-style-declaration.js +128 -0
- package/node_modules/linkedom/esm/interface/custom-element-registry.js +205 -0
- package/node_modules/linkedom/esm/interface/custom-event.js +19 -0
- package/node_modules/linkedom/esm/interface/document-fragment.js +11 -0
- package/node_modules/linkedom/esm/interface/document-type.js +41 -0
- package/node_modules/linkedom/esm/interface/document.js +289 -0
- package/node_modules/linkedom/esm/interface/element.js +514 -0
- package/node_modules/linkedom/esm/interface/event-target.js +88 -0
- package/node_modules/linkedom/esm/interface/event.js +64 -0
- package/node_modules/linkedom/esm/interface/html-collection.js +3 -0
- package/node_modules/linkedom/esm/interface/image.js +21 -0
- package/node_modules/linkedom/esm/interface/input-event.js +22 -0
- package/node_modules/linkedom/esm/interface/mutation-observer.js +172 -0
- package/node_modules/linkedom/esm/interface/named-node-map.js +42 -0
- package/node_modules/linkedom/esm/interface/node-filter.js +15 -0
- package/node_modules/linkedom/esm/interface/node-list.js +8 -0
- package/node_modules/linkedom/esm/interface/node.js +204 -0
- package/node_modules/linkedom/esm/interface/range.js +129 -0
- package/node_modules/linkedom/esm/interface/shadow-root.js +20 -0
- package/node_modules/linkedom/esm/interface/text.js +42 -0
- package/node_modules/linkedom/esm/interface/tree-walker.js +58 -0
- package/node_modules/linkedom/esm/mixin/child-node.js +62 -0
- package/node_modules/linkedom/esm/mixin/inner-html.js +36 -0
- package/node_modules/linkedom/esm/mixin/non-document-type-child-node.js +20 -0
- package/node_modules/linkedom/esm/mixin/non-element-parent-node.js +42 -0
- package/node_modules/linkedom/esm/mixin/parent-node.js +293 -0
- package/node_modules/linkedom/esm/shared/attributes.js +104 -0
- package/node_modules/linkedom/esm/shared/cache.js +26 -0
- package/node_modules/linkedom/esm/shared/constants.js +33 -0
- package/node_modules/linkedom/esm/shared/facades.js +77 -0
- package/node_modules/linkedom/esm/shared/html-classes.js +210 -0
- package/node_modules/linkedom/esm/shared/jsdon.js +73 -0
- package/node_modules/linkedom/esm/shared/matches.js +118 -0
- package/node_modules/linkedom/esm/shared/mime.js +31 -0
- package/node_modules/linkedom/esm/shared/node.js +48 -0
- package/node_modules/linkedom/esm/shared/object.js +19 -0
- package/node_modules/linkedom/esm/shared/parse-from-string.js +122 -0
- package/node_modules/linkedom/esm/shared/parse-json.js +131 -0
- package/node_modules/linkedom/esm/shared/register-html-class.js +8 -0
- package/node_modules/linkedom/esm/shared/shadow-roots.js +1 -0
- package/node_modules/linkedom/esm/shared/symbols.js +65 -0
- package/node_modules/linkedom/esm/shared/text-escaper.js +22 -0
- package/node_modules/linkedom/esm/shared/utils.js +40 -0
- package/node_modules/linkedom/esm/svg/document.js +12 -0
- package/node_modules/linkedom/esm/svg/element.js +58 -0
- package/node_modules/linkedom/esm/xml/document.js +12 -0
- package/node_modules/linkedom/package.json +84 -0
- package/node_modules/linkedom/tsconfig.json +13 -0
- package/node_modules/linkedom/types/commonjs/canvas-shim.d.cts +9 -0
- package/node_modules/linkedom/types/commonjs/canvas.d.cts +2 -0
- package/node_modules/linkedom/types/commonjs/perf_hooks.d.cts +1 -0
- package/node_modules/linkedom/types/dom/parser.d.ts +24 -0
- package/node_modules/linkedom/types/dom/string-map.d.ts +9 -0
- package/node_modules/linkedom/types/dom/token-list.d.ts +32 -0
- package/node_modules/linkedom/types/esm/dom/parser.d.ts +24 -0
- package/node_modules/linkedom/types/esm/dom/string-map.d.ts +9 -0
- package/node_modules/linkedom/types/esm/dom/token-list.d.ts +36 -0
- package/node_modules/linkedom/types/esm/html/anchor-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/area-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/audio-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/base-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/body-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/br-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/button-element.d.ts +12 -0
- package/node_modules/linkedom/types/esm/html/canvas-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/d-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/data-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/data-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/details-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/directory-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/div-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/document.d.ts +23 -0
- package/node_modules/linkedom/types/esm/html/element.d.ts +168 -0
- package/node_modules/linkedom/types/esm/html/embed-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/field-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/font-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/form-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/frame-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/head-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/heading-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/hr-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/html-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/i-frame-element.d.ts +20 -0
- package/node_modules/linkedom/types/esm/html/image-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/input-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/label-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/legend-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/li-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/link-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/map-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/marquee-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/media-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/menu-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/meta-element.d.ts +16 -0
- package/node_modules/linkedom/types/esm/html/meter-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/mod-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/o-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/object-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/opt-group-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/option-element.d.ts +10 -0
- package/node_modules/linkedom/types/esm/html/output-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/paragraph-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/param-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/picture-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/pre-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/progress-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/quote-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/script-element.d.ts +22 -0
- package/node_modules/linkedom/types/esm/html/select-element.d.ts +13 -0
- package/node_modules/linkedom/types/esm/html/slot-element.d.ts +11 -0
- package/node_modules/linkedom/types/esm/html/source-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/span-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/style-element.d.ts +11 -0
- package/node_modules/linkedom/types/esm/html/table-caption-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-cell-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-row-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/template-element.d.ts +10 -0
- package/node_modules/linkedom/types/esm/html/text-area-element.d.ts +16 -0
- package/node_modules/linkedom/types/esm/html/text-element.d.ts +4 -0
- package/node_modules/linkedom/types/esm/html/time-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/title-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/track-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/u-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/unknown-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/video-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/index.d.ts +13 -0
- package/node_modules/linkedom/types/esm/interface/attr.d.ts +17 -0
- package/node_modules/linkedom/types/esm/interface/cdata-section.d.ts +8 -0
- package/node_modules/linkedom/types/esm/interface/character-data.d.ts +26 -0
- package/node_modules/linkedom/types/esm/interface/comment.d.ts +8 -0
- package/node_modules/linkedom/types/esm/interface/css-style-declaration.d.ts +19 -0
- package/node_modules/linkedom/types/esm/interface/custom-element-registry.d.ts +54 -0
- package/node_modules/linkedom/types/esm/interface/custom-event.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/document-fragment.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/document-type.d.ts +12 -0
- package/node_modules/linkedom/types/esm/interface/document.d.ts +71 -0
- package/node_modules/linkedom/types/esm/interface/element.d.ts +81 -0
- package/node_modules/linkedom/types/esm/interface/event-target.d.ts +13 -0
- package/node_modules/linkedom/types/esm/interface/event.d.ts +32 -0
- package/node_modules/linkedom/types/esm/interface/image.d.ts +214 -0
- package/node_modules/linkedom/types/esm/interface/input-event.d.ts +11 -0
- package/node_modules/linkedom/types/esm/interface/mutation-observer.d.ts +40 -0
- package/node_modules/linkedom/types/esm/interface/named-node-map.d.ts +14 -0
- package/node_modules/linkedom/types/esm/interface/node-filter.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/node-list.d.ts +9 -0
- package/node_modules/linkedom/types/esm/interface/node.d.ts +86 -0
- package/node_modules/linkedom/types/esm/interface/range.d.ts +23 -0
- package/node_modules/linkedom/types/esm/interface/shadow-root.d.ts +10 -0
- package/node_modules/linkedom/types/esm/interface/text.d.ts +9 -0
- package/node_modules/linkedom/types/esm/interface/tree-walker.d.ts +15 -0
- package/node_modules/linkedom/types/esm/mixin/child-node.d.ts +4 -0
- package/node_modules/linkedom/types/esm/mixin/inner-html.d.ts +2 -0
- package/node_modules/linkedom/types/esm/mixin/non-document-type-child-node.d.ts +2 -0
- package/node_modules/linkedom/types/esm/mixin/non-element-parent-node.d.ts +6 -0
- package/node_modules/linkedom/types/esm/mixin/parent-node.d.ts +57 -0
- package/node_modules/linkedom/types/esm/shared/attributes.d.ts +15 -0
- package/node_modules/linkedom/types/esm/shared/constants.d.ts +22 -0
- package/node_modules/linkedom/types/esm/shared/facades.d.ts +25 -0
- package/node_modules/linkedom/types/esm/shared/html-classes.d.ts +139 -0
- package/node_modules/linkedom/types/esm/shared/jsdon.d.ts +9 -0
- package/node_modules/linkedom/types/esm/shared/matches.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/mime.d.ts +35 -0
- package/node_modules/linkedom/types/esm/shared/node.d.ts +12 -0
- package/node_modules/linkedom/types/esm/shared/object.d.ts +25 -0
- package/node_modules/linkedom/types/esm/shared/parse-from-string.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/parse-json.d.ts +7 -0
- package/node_modules/linkedom/types/esm/shared/register-html-class.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/shadow-roots.d.ts +1 -0
- package/node_modules/linkedom/types/esm/shared/symbols.d.ts +22 -0
- package/node_modules/linkedom/types/esm/shared/text-escaper.d.ts +1 -0
- package/node_modules/linkedom/types/esm/shared/utils.d.ts +15 -0
- package/node_modules/linkedom/types/esm/svg/document.d.ts +7 -0
- package/node_modules/linkedom/types/esm/svg/element.d.ts +8 -0
- package/node_modules/linkedom/types/esm/xml/document.d.ts +7 -0
- package/node_modules/linkedom/types/html/anchor-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/area-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/audio-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/base-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/body-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/br-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/button-element.d.ts +12 -0
- package/node_modules/linkedom/types/html/canvas-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/d-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/data-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/data-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/details-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/directory-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/div-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/document.d.ts +22 -0
- package/node_modules/linkedom/types/html/element.d.ts +168 -0
- package/node_modules/linkedom/types/html/embed-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/field-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/font-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/form-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/frame-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/head-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/heading-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/hr-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/html-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/i-frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/image-element.d.ts +18 -0
- package/node_modules/linkedom/types/html/input-element.d.ts +16 -0
- package/node_modules/linkedom/types/html/label-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/legend-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/li-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/link-element.d.ts +18 -0
- package/node_modules/linkedom/types/html/map-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/marquee-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/media-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/menu-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/meta-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/meter-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/mod-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/o-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/object-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/opt-group-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/option-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/output-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/paragraph-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/param-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/picture-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/pre-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/progress-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/quote-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/script-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/select-element.d.ts +12 -0
- package/node_modules/linkedom/types/html/slot-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/source-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/span-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/style-element.d.ts +9 -0
- package/node_modules/linkedom/types/html/table-caption-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-cell-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-row-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/template-element.d.ts +10 -0
- package/node_modules/linkedom/types/html/text-area-element.d.ts +16 -0
- package/node_modules/linkedom/types/html/text-element.d.ts +3 -0
- package/node_modules/linkedom/types/html/time-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/title-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/track-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/u-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/unknown-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/video-element.d.ts +6 -0
- package/node_modules/linkedom/types/index.d.ts +12 -0
- package/node_modules/linkedom/types/interface/attr.d.ts +16 -0
- package/node_modules/linkedom/types/interface/character-data.d.ts +22 -0
- package/node_modules/linkedom/types/interface/comment.d.ts +7 -0
- package/node_modules/linkedom/types/interface/css-style-declaration.d.ts +10 -0
- package/node_modules/linkedom/types/interface/custom-element-registry.d.ts +54 -0
- package/node_modules/linkedom/types/interface/custom-event.d.ts +37 -0
- package/node_modules/linkedom/types/interface/document-fragment.d.ts +7 -0
- package/node_modules/linkedom/types/interface/document-type.d.ts +11 -0
- package/node_modules/linkedom/types/interface/document.d.ts +60 -0
- package/node_modules/linkedom/types/interface/element.d.ts +72 -0
- package/node_modules/linkedom/types/interface/event-target.d.ts +13 -0
- package/node_modules/linkedom/types/interface/event.d.ts +32 -0
- package/node_modules/linkedom/types/interface/image.d.ts +199 -0
- package/node_modules/linkedom/types/interface/input-event.d.ts +11 -0
- package/node_modules/linkedom/types/interface/mutation-observer.d.ts +40 -0
- package/node_modules/linkedom/types/interface/named-node-map.d.ts +14 -0
- package/node_modules/linkedom/types/interface/node-list.d.ts +9 -0
- package/node_modules/linkedom/types/interface/node.d.ts +78 -0
- package/node_modules/linkedom/types/interface/range.d.ts +22 -0
- package/node_modules/linkedom/types/interface/shadow-root.d.ts +9 -0
- package/node_modules/linkedom/types/interface/text.d.ts +8 -0
- package/node_modules/linkedom/types/interface/tree-walker.d.ts +15 -0
- package/node_modules/linkedom/types/mixin/child-node.d.ts +4 -0
- package/node_modules/linkedom/types/mixin/inner-html.d.ts +2 -0
- package/node_modules/linkedom/types/mixin/non-document-type-child-node.d.ts +2 -0
- package/node_modules/linkedom/types/mixin/non-element-parent-node.d.ts +5 -0
- package/node_modules/linkedom/types/mixin/parent-node.d.ts +47 -0
- package/node_modules/linkedom/types/shared/attributes.d.ts +21 -0
- package/node_modules/linkedom/types/shared/cache.d.ts +7 -0
- package/node_modules/linkedom/types/shared/constants.d.ts +19 -0
- package/node_modules/linkedom/types/shared/facades.d.ts +23 -0
- package/node_modules/linkedom/types/shared/html-classes.d.ts +139 -0
- package/node_modules/linkedom/types/shared/jsdon.d.ts +9 -0
- package/node_modules/linkedom/types/shared/matches.d.ts +2 -0
- package/node_modules/linkedom/types/shared/mime.d.ts +35 -0
- package/node_modules/linkedom/types/shared/node.d.ts +12 -0
- package/node_modules/linkedom/types/shared/object.d.ts +25 -0
- package/node_modules/linkedom/types/shared/parse-from-string.d.ts +2 -0
- package/node_modules/linkedom/types/shared/parse-json.d.ts +7 -0
- package/node_modules/linkedom/types/shared/register-html-class.d.ts +2 -0
- package/node_modules/linkedom/types/shared/symbols.d.ts +20 -0
- package/node_modules/linkedom/types/shared/text-escaper.d.ts +1 -0
- package/node_modules/linkedom/types/shared/utils.d.ts +15 -0
- package/node_modules/linkedom/types/svg/document.d.ts +7 -0
- package/node_modules/linkedom/types/svg/element.d.ts +8 -0
- package/node_modules/linkedom/types/xml/document.d.ts +7 -0
- package/node_modules/linkedom/worker.js +12526 -0
- package/node_modules/nth-check/LICENSE +11 -0
- package/node_modules/nth-check/README.md +136 -0
- package/node_modules/nth-check/lib/compile.d.ts +55 -0
- package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
- package/node_modules/nth-check/lib/compile.js +121 -0
- package/node_modules/nth-check/lib/compile.js.map +1 -0
- package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
- package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/compile.js +113 -0
- package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
- package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
- package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/index.js +63 -0
- package/node_modules/nth-check/lib/esm/index.js.map +1 -0
- package/node_modules/nth-check/lib/esm/package.json +1 -0
- package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
- package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/parse.js +73 -0
- package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
- package/node_modules/nth-check/lib/index.d.ts +59 -0
- package/node_modules/nth-check/lib/index.d.ts.map +1 -0
- package/node_modules/nth-check/lib/index.js +70 -0
- package/node_modules/nth-check/lib/index.js.map +1 -0
- package/node_modules/nth-check/lib/parse.d.ts +9 -0
- package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
- package/node_modules/nth-check/lib/parse.js +77 -0
- package/node_modules/nth-check/lib/parse.js.map +1 -0
- package/node_modules/nth-check/package.json +78 -0
- package/node_modules/p-limit/index.d.ts +81 -0
- package/node_modules/p-limit/index.js +104 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +58 -0
- package/node_modules/p-limit/readme.md +129 -0
- package/node_modules/pi-web-access/CHANGELOG.md +387 -0
- package/node_modules/pi-web-access/LICENSE +21 -0
- package/node_modules/pi-web-access/README.md +352 -0
- package/node_modules/pi-web-access/activity.ts +101 -0
- package/node_modules/pi-web-access/banner.png +0 -0
- package/node_modules/pi-web-access/chrome-cookies.ts +322 -0
- package/node_modules/pi-web-access/code-search.ts +107 -0
- package/node_modules/pi-web-access/curator-page.ts +3359 -0
- package/node_modules/pi-web-access/curator-server.ts +605 -0
- package/node_modules/pi-web-access/exa.ts +520 -0
- package/node_modules/pi-web-access/extract.ts +641 -0
- package/node_modules/pi-web-access/gemini-api.ts +112 -0
- package/node_modules/pi-web-access/gemini-search.ts +361 -0
- package/node_modules/pi-web-access/gemini-url-context.ts +126 -0
- package/node_modules/pi-web-access/gemini-web-config.ts +52 -0
- package/node_modules/pi-web-access/gemini-web.ts +396 -0
- package/node_modules/pi-web-access/github-api.ts +196 -0
- package/node_modules/pi-web-access/github-extract.ts +634 -0
- package/node_modules/pi-web-access/index.ts +2346 -0
- package/node_modules/pi-web-access/package.json +45 -0
- package/node_modules/pi-web-access/pdf-extract.ts +192 -0
- package/node_modules/pi-web-access/perplexity.ts +195 -0
- package/node_modules/pi-web-access/pi-web-fetch-demo.mp4 +0 -0
- package/node_modules/pi-web-access/rsc-extract.ts +338 -0
- package/node_modules/pi-web-access/skills/librarian/SKILL.md +195 -0
- package/node_modules/pi-web-access/storage.ts +72 -0
- package/node_modules/pi-web-access/summary-review.ts +276 -0
- package/node_modules/pi-web-access/test/gemini-web-cookie-opt-in.test.mjs +41 -0
- package/node_modules/pi-web-access/test/pdf-extract.test.mjs +95 -0
- package/node_modules/pi-web-access/utils.ts +44 -0
- package/node_modules/pi-web-access/video-extract.ts +378 -0
- package/node_modules/pi-web-access/youtube-extract.ts +310 -0
- package/node_modules/turndown/LICENSE +21 -0
- package/node_modules/turndown/README.md +234 -0
- package/node_modules/turndown/dist/turndown.js +800 -0
- package/node_modules/turndown/lib/turndown.browser.cjs.js +797 -0
- package/node_modules/turndown/lib/turndown.browser.es.js +795 -0
- package/node_modules/turndown/lib/turndown.browser.umd.js +803 -0
- package/node_modules/turndown/lib/turndown.cjs.js +774 -0
- package/node_modules/turndown/lib/turndown.es.js +772 -0
- package/node_modules/turndown/lib/turndown.umd.js +780 -0
- package/node_modules/turndown/package.json +59 -0
- package/node_modules/uhyphen/LICENSE +15 -0
- package/node_modules/uhyphen/README.md +13 -0
- package/node_modules/uhyphen/cjs/index.js +3 -0
- package/node_modules/uhyphen/cjs/package.json +1 -0
- package/node_modules/uhyphen/es.js +1 -0
- package/node_modules/uhyphen/esm/index.js +2 -0
- package/node_modules/uhyphen/index.js +14 -0
- package/node_modules/uhyphen/min.js +1 -0
- package/node_modules/uhyphen/package.json +52 -0
- package/node_modules/unpdf/LICENSE +21 -0
- package/node_modules/unpdf/README.md +365 -0
- package/node_modules/unpdf/dist/index.cjs +429 -0
- package/node_modules/unpdf/dist/index.d.cts +182 -0
- package/node_modules/unpdf/dist/index.d.mts +182 -0
- package/node_modules/unpdf/dist/index.d.ts +182 -0
- package/node_modules/unpdf/dist/index.mjs +416 -0
- package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
- package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
- package/node_modules/unpdf/dist/pdfjs.mjs +107 -0
- package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +274 -0
- package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
- package/node_modules/unpdf/dist/types/src/display/api.d.ts +1619 -0
- package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
- package/node_modules/unpdf/dist/types/src/display/binary_data_factory.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +210 -0
- package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +216 -0
- package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +29 -0
- package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +281 -0
- package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +22 -0
- package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
- package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +227 -0
- package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
- package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +59 -0
- package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +117 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
- package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +578 -0
- package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
- package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
- package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
- package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
- package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
- package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +484 -0
- package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
- package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +66 -0
- package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
- package/node_modules/unpdf/dist/types/src/display/network.d.ts +20 -0
- package/node_modules/unpdf/dist/types/src/display/network_stream.d.ts +2 -0
- package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
- package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +4 -0
- package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/obj_bin_transform_display.d.ts +67 -0
- package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/pages_mapper.d.ts +72 -0
- package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +80 -0
- package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
- package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
- package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +91 -0
- package/node_modules/unpdf/dist/types/src/display/text_layer_images.d.ts +10 -0
- package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +11 -0
- package/node_modules/unpdf/dist/types/src/display/webgpu_mesh.d.ts +3 -0
- package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
- package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
- package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
- package/node_modules/unpdf/dist/types/src/pdf.d.ts +67 -0
- package/node_modules/unpdf/dist/types/src/shared/base_pdf_stream.d.ts +121 -0
- package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
- package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
- package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/shared/obj_bin_transform_utils.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/shared/util.d.ts +424 -0
- package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +64 -0
- package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
- package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
- package/node_modules/unpdf/dist/types/web/autolinker.d.ts +29 -0
- package/node_modules/unpdf/dist/types/web/base_download_manager.d.ts +24 -0
- package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
- package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
- package/node_modules/unpdf/dist/types/web/download_manager.d.ts +4 -0
- package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +22 -0
- package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
- package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
- package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +18 -0
- package/node_modules/unpdf/dist/types/web/l10n.d.ts +31 -0
- package/node_modules/unpdf/dist/types/web/menu.d.ts +11 -0
- package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +132 -0
- package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
- package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
- package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +142 -0
- package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +27 -0
- package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +249 -0
- package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +50 -0
- package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
- package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
- package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
- package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +108 -0
- package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +161 -0
- package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
- package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +619 -0
- package/node_modules/unpdf/dist/types/web/renderable_view.d.ts +33 -0
- package/node_modules/unpdf/dist/types/web/sidebar.d.ts +65 -0
- package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
- package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
- package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
- package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +70 -0
- package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +265 -0
- package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
- package/node_modules/unpdf/package.json +97 -0
- package/node_modules/yocto-queue/index.d.ts +75 -0
- package/node_modules/yocto-queue/index.js +90 -0
- package/node_modules/yocto-queue/license +9 -0
- package/node_modules/yocto-queue/package.json +48 -0
- package/node_modules/yocto-queue/readme.md +80 -0
- package/package.json +103 -0
- package/resources/skills/ab-test-analysis/SKILL.md +82 -0
- package/resources/skills/agent-feed-publish/SKILL.md +63 -0
- package/resources/skills/analyze-feature-requests/SKILL.md +49 -0
- package/resources/skills/ansoff-matrix/SKILL.md +166 -0
- package/resources/skills/awaken/SKILL.md +203 -0
- package/resources/skills/beachhead-segment/SKILL.md +145 -0
- package/resources/skills/brainstorm-experiments-existing/SKILL.md +51 -0
- package/resources/skills/brainstorm-experiments-new/SKILL.md +45 -0
- package/resources/skills/brainstorm-ideas-existing/SKILL.md +54 -0
- package/resources/skills/brainstorm-ideas-new/SKILL.md +46 -0
- package/resources/skills/brainstorm-okrs/SKILL.md +80 -0
- package/resources/skills/brave-search/SKILL.md +85 -0
- package/resources/skills/brave-search/content.js +86 -0
- package/resources/skills/brave-search/package-lock.json +621 -0
- package/resources/skills/brave-search/package.json +14 -0
- package/resources/skills/brave-search/search.js +199 -0
- package/resources/skills/browser-tools/SKILL.md +202 -0
- package/resources/skills/browser-tools/browser-content.js +103 -0
- package/resources/skills/browser-tools/browser-cookies.js +35 -0
- package/resources/skills/browser-tools/browser-eval.js +53 -0
- package/resources/skills/browser-tools/browser-hn-scraper.js +108 -0
- package/resources/skills/browser-tools/browser-nav.js +44 -0
- package/resources/skills/browser-tools/browser-pick.js +162 -0
- package/resources/skills/browser-tools/browser-screenshot.js +34 -0
- package/resources/skills/browser-tools/browser-start.js +86 -0
- package/resources/skills/browser-tools/package-lock.json +2556 -0
- package/resources/skills/browser-tools/package.json +19 -0
- package/resources/skills/business-model/SKILL.md +133 -0
- package/resources/skills/cohort-analysis/SKILL.md +114 -0
- package/resources/skills/competitive-battlecard/SKILL.md +77 -0
- package/resources/skills/competitor-analysis/SKILL.md +110 -0
- package/resources/skills/create-prd/SKILL.md +86 -0
- package/resources/skills/customer-journey-map/SKILL.md +65 -0
- package/resources/skills/daily-brief/SKILL.md +321 -0
- package/resources/skills/daily-brief/assets/rss-feeds.json +652 -0
- package/resources/skills/daily-brief/scripts/rss_digest.py +339 -0
- package/resources/skills/daily-brief/scripts/run_last30days.sh +115 -0
- package/resources/skills/daily-brief/scripts/submit_brief.sh +48 -0
- package/resources/skills/daily-brief/vendor/last30days/SKILL.md +1709 -0
- package/resources/skills/daily-brief/vendor/last30days/agents/openai.yaml +8 -0
- package/resources/skills/daily-brief/vendor/last30days/references/save-html-brief.md +90 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/briefing.py +264 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/build-skill.sh +39 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/compare.sh +61 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/evaluate_search_quality.py +554 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/last30days.py +1036 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/__init__.py +1 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/bird_x.py +505 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/bluesky.py +329 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/categories.py +283 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/chrome_cookies.py +322 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/cluster.py +271 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/competitors.py +199 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/cookie_extract.py +403 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/dates.py +120 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/dedupe.py +130 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/digg.py +414 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/entity_extract.py +127 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/env.py +744 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/fanout.py +85 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/fusion.py +207 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/github.py +921 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/grounding.py +324 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/hackernews.py +338 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/html_render.py +674 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/http.py +261 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/instagram.py +543 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/log.py +28 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/normalize.py +552 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/perplexity.py +164 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/pinterest.py +163 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/pipeline.py +1132 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/planner.py +714 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/polymarket.py +786 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/preflight.py +119 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/providers.py +483 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/quality_nudge.py +333 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/query.py +117 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit.py +713 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit_enrich.py +322 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/reddit_public.py +388 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/relevance.py +168 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/render.py +1779 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/rerank.py +425 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/resolve.py +345 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/safari_cookies.py +193 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/schema.py +319 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/setup_wizard.py +536 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/signals.py +253 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/skill_meta.py +33 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/snippet.py +51 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/subproc.py +94 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/threads.py +205 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/tiktok.py +618 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/truthsocial.py +168 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/ui.py +616 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/LICENSE +21 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/bird-search.mjs +147 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/cookies.js +220 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/features.json +17 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/paginate-cursor.js +37 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/query-ids.json +20 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/runtime-features.js +151 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/runtime-query-ids.js +264 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-base.js +129 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-constants.js +50 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-features.js +347 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-search.js +157 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-types.js +2 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/lib/twitter-client-utils.js +511 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/vendor/bird-search/package.json +13 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xai_x.py +236 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xiaohongshu_api.py +162 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xquik.py +227 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/xurl_x.py +172 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/lib/youtube_yt.py +1035 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/setup-keychain.sh +122 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/store.py +991 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/test-v1-vs-v2.sh +220 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/test_device_auth.py +128 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/verify_v3.py +195 -0
- package/resources/skills/daily-brief/vendor/last30days/scripts/watchlist.py +293 -0
- package/resources/skills/draft-nda/SKILL.md +160 -0
- package/resources/skills/dummy-dataset/SKILL.md +114 -0
- package/resources/skills/find-skills/SKILL.md +142 -0
- package/resources/skills/grammar-check/SKILL.md +209 -0
- package/resources/skills/growth-loops/SKILL.md +125 -0
- package/resources/skills/gtm-motions/SKILL.md +155 -0
- package/resources/skills/gtm-strategy/SKILL.md +94 -0
- package/resources/skills/ideal-customer-profile/SKILL.md +164 -0
- package/resources/skills/identify-assumptions-existing/SKILL.md +44 -0
- package/resources/skills/identify-assumptions-new/SKILL.md +52 -0
- package/resources/skills/interview-script/SKILL.md +105 -0
- package/resources/skills/job-stories/SKILL.md +74 -0
- package/resources/skills/lean-canvas/SKILL.md +121 -0
- package/resources/skills/market-segments/SKILL.md +80 -0
- package/resources/skills/market-sizing/SKILL.md +90 -0
- package/resources/skills/marketing-ideas/SKILL.md +44 -0
- package/resources/skills/metrics-dashboard/SKILL.md +94 -0
- package/resources/skills/monetization-strategy/SKILL.md +150 -0
- package/resources/skills/north-star-metric/SKILL.md +74 -0
- package/resources/skills/opportunity-solution-tree/SKILL.md +64 -0
- package/resources/skills/outcome-roadmap/SKILL.md +68 -0
- package/resources/skills/pestle-analysis/SKILL.md +124 -0
- package/resources/skills/pi-skills-source/LICENSE +21 -0
- package/resources/skills/pi-skills-source/README.md +119 -0
- package/resources/skills/pm-skills-source/LICENSE +21 -0
- package/resources/skills/porters-five-forces/SKILL.md +212 -0
- package/resources/skills/positioning-ideas/SKILL.md +61 -0
- package/resources/skills/pre-mortem/SKILL.md +93 -0
- package/resources/skills/pricing-strategy/SKILL.md +85 -0
- package/resources/skills/prioritization-frameworks/SKILL.md +75 -0
- package/resources/skills/prioritize-assumptions/SKILL.md +48 -0
- package/resources/skills/prioritize-features/SKILL.md +52 -0
- package/resources/skills/privacy-policy/SKILL.md +238 -0
- package/resources/skills/product-name/SKILL.md +47 -0
- package/resources/skills/product-setup/SKILL.md +143 -0
- package/resources/skills/product-strategy/SKILL.md +111 -0
- package/resources/skills/product-vision/SKILL.md +52 -0
- package/resources/skills/release-notes/SKILL.md +63 -0
- package/resources/skills/retro/SKILL.md +76 -0
- package/resources/skills/review-resume/SKILL.md +221 -0
- package/resources/skills/sentiment-analysis/SKILL.md +83 -0
- package/resources/skills/skill-creator/LICENSE.txt +202 -0
- package/resources/skills/skill-creator/SKILL.md +485 -0
- package/resources/skills/skill-creator/agents/analyzer.md +274 -0
- package/resources/skills/skill-creator/agents/comparator.md +202 -0
- package/resources/skills/skill-creator/agents/grader.md +223 -0
- package/resources/skills/skill-creator/assets/eval_review.html +146 -0
- package/resources/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/resources/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/resources/skills/skill-creator/references/schemas.md +430 -0
- package/resources/skills/skill-creator/scripts/__init__.py +0 -0
- package/resources/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/resources/skills/skill-creator/scripts/generate_report.py +326 -0
- package/resources/skills/skill-creator/scripts/improve_description.py +247 -0
- package/resources/skills/skill-creator/scripts/package_skill.py +136 -0
- package/resources/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/resources/skills/skill-creator/scripts/run_eval.py +310 -0
- package/resources/skills/skill-creator/scripts/run_loop.py +328 -0
- package/resources/skills/skill-creator/scripts/utils.py +47 -0
- package/resources/skills/sprint-plan/SKILL.md +67 -0
- package/resources/skills/sql-queries/SKILL.md +87 -0
- package/resources/skills/stakeholder-map/SKILL.md +51 -0
- package/resources/skills/startup-canvas/SKILL.md +138 -0
- package/resources/skills/summarize-interview/SKILL.md +53 -0
- package/resources/skills/summarize-meeting/SKILL.md +81 -0
- package/resources/skills/swot-analysis/SKILL.md +96 -0
- package/resources/skills/test-scenarios/SKILL.md +86 -0
- package/resources/skills/user-personas/SKILL.md +69 -0
- package/resources/skills/user-segmentation/SKILL.md +88 -0
- package/resources/skills/user-stories/SKILL.md +74 -0
- package/resources/skills/value-prop-statements/SKILL.md +51 -0
- package/resources/skills/value-proposition/SKILL.md +108 -0
- package/resources/skills/wwas/SKILL.md +69 -0
- package/src/autopm/action-proposals.js +534 -0
- package/src/autopm/bootstrap.js +280 -0
- package/src/autopm/cli.js +93 -0
- package/src/autopm/command-tui.js +293 -0
- package/src/autopm/context-commands.js +813 -0
- package/src/autopm/context-connectors.js +629 -0
- package/src/autopm/dashboard.js +757 -0
- package/src/autopm/extension-runtime/bootstrap-guide.js +107 -0
- package/src/autopm/extension-runtime/command-menus.js +42 -0
- package/src/autopm/extension-runtime/contracts.js +191 -0
- package/src/autopm/extension-runtime/dashboard-ui.js +306 -0
- package/src/autopm/extension-runtime/loop-runtime.js +276 -0
- package/src/autopm/extension-runtime/registry.js +23 -0
- package/src/autopm/extension-runtime/runtime.js +2625 -0
- package/src/autopm/extension.js +76 -0
- package/src/autopm/heartbeat/cadence.js +237 -0
- package/src/autopm/heartbeat/contracts.js +387 -0
- package/src/autopm/heartbeat/file.js +538 -0
- package/src/autopm/heartbeat/runner.js +640 -0
- package/src/autopm/heartbeat/session-transcript.js +282 -0
- package/src/autopm/heartbeat/state.js +514 -0
- package/src/autopm/heartbeat/tasks.js +550 -0
- package/src/autopm/heartbeat-commands.js +712 -0
- package/src/autopm/heartbeat-tui.js +395 -0
- package/src/autopm/loader-env.js +430 -0
- package/src/autopm/loader.js +184 -0
- package/src/autopm/loop-commands.js +924 -0
- package/src/autopm/loop-tui.js +840 -0
- package/src/autopm/memory/accepted-memory.js +715 -0
- package/src/autopm/memory/candidates.js +305 -0
- package/src/autopm/memory/canonicalize.js +697 -0
- package/src/autopm/memory/chunk-store.js +259 -0
- package/src/autopm/memory/chunker.js +464 -0
- package/src/autopm/memory/contracts.js +493 -0
- package/src/autopm/memory/doctor.js +427 -0
- package/src/autopm/memory/entities.js +216 -0
- package/src/autopm/memory/get.js +854 -0
- package/src/autopm/memory/ingest.js +737 -0
- package/src/autopm/memory/jobs.js +791 -0
- package/src/autopm/memory/operations.js +931 -0
- package/src/autopm/memory/paths.js +187 -0
- package/src/autopm/memory/product-context-memory.js +285 -0
- package/src/autopm/memory/projection.js +152 -0
- package/src/autopm/memory/recall.js +678 -0
- package/src/autopm/memory/redaction.js +322 -0
- package/src/autopm/memory/registry.js +419 -0
- package/src/autopm/memory/runtime.js +496 -0
- package/src/autopm/memory/scheduler.js +507 -0
- package/src/autopm/memory/scorer.js +408 -0
- package/src/autopm/memory/search.js +652 -0
- package/src/autopm/memory/source-store.js +270 -0
- package/src/autopm/memory/status.js +334 -0
- package/src/autopm/memory/store.js +675 -0
- package/src/autopm/memory/summary-global.js +1050 -0
- package/src/autopm/memory/summary-source.js +898 -0
- package/src/autopm/memory/summary-topic.js +1087 -0
- package/src/autopm/memory/tools.js +448 -0
- package/src/autopm/memory/tree.js +816 -0
- package/src/autopm/memory/wiki.js +226 -0
- package/src/autopm/memory/worker.js +484 -0
- package/src/autopm/memory-commands.js +1079 -0
- package/src/autopm/modules/bootstrap/register.js +6 -0
- package/src/autopm/modules/context/register.js +6 -0
- package/src/autopm/modules/heartbeat/register.js +6 -0
- package/src/autopm/modules/loop/register.js +6 -0
- package/src/autopm/modules/memory/register.js +6 -0
- package/src/autopm/modules/product-setup/register.js +7 -0
- package/src/autopm/modules/venture/register.js +6 -0
- package/src/autopm/native-commands.js +505 -0
- package/src/autopm/objective-commands.js +372 -0
- package/src/autopm/objective.js +444 -0
- package/src/autopm/opportunities/briefs.js +58 -0
- package/src/autopm/opportunities/contracts.js +20 -0
- package/src/autopm/opportunities/schemas.js +35 -0
- package/src/autopm/opportunities-commands.js +859 -0
- package/src/autopm/plan-commands.js +344 -0
- package/src/autopm/plan-proposals.js +907 -0
- package/src/autopm/pm-skills.js +139 -0
- package/src/autopm/product-context.js +745 -0
- package/src/autopm/product-setup-documents.js +340 -0
- package/src/autopm/resource-ownership.js +507 -0
- package/src/autopm/runtime-context.js +432 -0
- package/src/autopm/scheduler/contracts.js +298 -0
- package/src/autopm/scheduler/runner.js +288 -0
- package/src/autopm/scheduler/schedule.js +746 -0
- package/src/autopm/scheduler/store.js +352 -0
- package/src/autopm/ship-commands.js +413 -0
- package/src/autopm/ship-readiness.js +851 -0
- package/src/autopm/standalone-contract.js +146 -0
- package/src/autopm/system-context.js +379 -0
- package/src/autopm/system-prompt-files.js +382 -0
- package/src/autopm/triage-commands.js +533 -0
- package/src/autopm/venture-commands.js +1707 -0
- package/src/venture-signal/collector.js +718 -0
- package/src/venture-signal/contracts.js +482 -0
- package/src/venture-signal/default-sources.js +316 -0
- package/src/venture-signal/freshness.js +342 -0
- package/src/venture-signal/normalizer.js +1439 -0
- package/src/venture-signal/pm-writer.js +984 -0
- package/src/venture-signal/policy.js +730 -0
- package/src/venture-signal/runner.js +1685 -0
- package/src/venture-signal/schemas.js +2188 -0
- package/src/venture-signal/signal-analyst.js +722 -0
- package/src/venture-signal/skeptic.js +724 -0
- package/src/venture-signal/source-adapters.js +483 -0
- package/src/venture-signal/taxonomy.js +880 -0
|
@@ -0,0 +1,1685 @@
|
|
|
1
|
+
import { mkdir, writeFile } from 'node:fs/promises';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
|
|
4
|
+
import { runCollectorIntake } from './collector.js';
|
|
5
|
+
import {
|
|
6
|
+
ANALYST_STAGE,
|
|
7
|
+
COLLECTOR_STAGE,
|
|
8
|
+
NORMALIZER_STAGE,
|
|
9
|
+
SKEPTIC_STAGE,
|
|
10
|
+
VENTURE_SIGNAL_LATEST_PATH,
|
|
11
|
+
analystDiagnosticsPath,
|
|
12
|
+
analystRunDirectoryPath,
|
|
13
|
+
analystRunSummaryPath,
|
|
14
|
+
analystTrendScoresPath,
|
|
15
|
+
collectorDiagnosticsPath,
|
|
16
|
+
collectorRunDirectoryPath,
|
|
17
|
+
collectorRunSummaryPath,
|
|
18
|
+
normalizeVentureArtifactPath,
|
|
19
|
+
normalizeVentureRunId,
|
|
20
|
+
normalizerAliasesPath,
|
|
21
|
+
normalizerCompaniesPath,
|
|
22
|
+
normalizerDiagnosticsIndexPath,
|
|
23
|
+
normalizerDiagnosticsPath,
|
|
24
|
+
normalizerInvestorsPath,
|
|
25
|
+
normalizerRunDirectoryPath,
|
|
26
|
+
normalizerRunSummaryPath,
|
|
27
|
+
normalizerSignalsPath,
|
|
28
|
+
normalizerTaxonomyMappingsPath,
|
|
29
|
+
normalizerTrendsPath,
|
|
30
|
+
pmWriterAlertCandidatesPath,
|
|
31
|
+
pmWriterDailyRadarMarkdownPath,
|
|
32
|
+
pmWriterDailyRadarPath,
|
|
33
|
+
pmWriterDiagnosticsPath,
|
|
34
|
+
pmWriterMvpExperimentsPath,
|
|
35
|
+
pmWriterRecommendationsPath,
|
|
36
|
+
pmWriterRunDirectoryPath,
|
|
37
|
+
pmWriterRunSummaryPath,
|
|
38
|
+
pmWriterSectorMemoMarkdownPath,
|
|
39
|
+
pmWriterSectorMemoPath,
|
|
40
|
+
skepticChallengesPath,
|
|
41
|
+
skepticDiagnosticsPath,
|
|
42
|
+
skepticRunDirectoryPath,
|
|
43
|
+
skepticRunSummaryPath,
|
|
44
|
+
} from './contracts.js';
|
|
45
|
+
import { normalizeCollectorBatch } from './normalizer.js';
|
|
46
|
+
import {
|
|
47
|
+
renderDailyRadarMarkdown,
|
|
48
|
+
renderSectorMemoMarkdown,
|
|
49
|
+
writePmWriterOutputs,
|
|
50
|
+
} from './pm-writer.js';
|
|
51
|
+
import { analyzeNormalizedTrends } from './signal-analyst.js';
|
|
52
|
+
import { reviewScoredTrends } from './skeptic.js';
|
|
53
|
+
import {
|
|
54
|
+
ANALYST_ROLE,
|
|
55
|
+
ANALYST_STATUS_VALUES,
|
|
56
|
+
COLLECTOR_ROLE,
|
|
57
|
+
LATEST_STATUS_VALUES,
|
|
58
|
+
NORMALIZER_ROLE,
|
|
59
|
+
NORMALIZER_STATUS_VALUES,
|
|
60
|
+
PM_WRITER_ROLE,
|
|
61
|
+
PM_WRITER_STAGE,
|
|
62
|
+
PM_WRITER_STATUS_VALUES,
|
|
63
|
+
SECRET_LOOKING_PATTERN,
|
|
64
|
+
SKEPTIC_ROLE,
|
|
65
|
+
SKEPTIC_STATUS_VALUES,
|
|
66
|
+
dailyRadarSchema,
|
|
67
|
+
pmWriterDiagnosticsArtifactSchema,
|
|
68
|
+
pmWriterRunSummarySchema,
|
|
69
|
+
sectorMemoSchema,
|
|
70
|
+
} from './schemas.js';
|
|
71
|
+
|
|
72
|
+
const PROMOTABLE_COLLECTOR_STATUSES = new Set(['ok', 'warn']);
|
|
73
|
+
|
|
74
|
+
function isPlainObject(value) {
|
|
75
|
+
return value !== null && typeof value === 'object' && !Array.isArray(value);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function jsonClone(value) {
|
|
79
|
+
return JSON.parse(JSON.stringify(value));
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
function schemaTypeMatches(expected, value) {
|
|
83
|
+
const values = Array.isArray(expected) ? expected : [expected];
|
|
84
|
+
return values.some((type) => {
|
|
85
|
+
if (type === 'array') return Array.isArray(value);
|
|
86
|
+
if (type === 'integer') return Number.isInteger(value);
|
|
87
|
+
if (type === 'number') return typeof value === 'number' && Number.isFinite(value);
|
|
88
|
+
if (type === 'null') return value === null;
|
|
89
|
+
if (type === 'object') return value !== null && typeof value === 'object' && !Array.isArray(value);
|
|
90
|
+
return typeof value === type;
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function validateJsonSchema(schema, value, schemaPath = '$') {
|
|
95
|
+
const errors = [];
|
|
96
|
+
|
|
97
|
+
if (schema.anyOf) {
|
|
98
|
+
const matching = schema.anyOf.some((candidate) => validateJsonSchema(candidate, value, schemaPath).length === 0);
|
|
99
|
+
if (!matching) errors.push(`${schemaPath} did not match anyOf`);
|
|
100
|
+
return errors;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (schema.allOf) {
|
|
104
|
+
for (const candidate of schema.allOf) errors.push(...validateJsonSchema(candidate, value, schemaPath));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if (schema.not && validateJsonSchema(schema.not, value, schemaPath).length === 0) {
|
|
108
|
+
errors.push(`${schemaPath} matched forbidden schema`);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
if (schema.type && !schemaTypeMatches(schema.type, value)) {
|
|
112
|
+
errors.push(`${schemaPath} expected ${JSON.stringify(schema.type)} got ${Array.isArray(value) ? 'array' : value === null ? 'null' : typeof value}`);
|
|
113
|
+
return errors;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
if (Object.hasOwn(schema, 'const') && value !== schema.const) {
|
|
117
|
+
errors.push(`${schemaPath} expected const ${JSON.stringify(schema.const)} got ${JSON.stringify(value)}`);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
if (schema.enum && !schema.enum.includes(value)) {
|
|
121
|
+
errors.push(`${schemaPath} expected one of ${JSON.stringify(schema.enum)} got ${JSON.stringify(value)}`);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
if (typeof value === 'string') {
|
|
125
|
+
if (schema.minLength !== undefined && value.length < schema.minLength) errors.push(`${schemaPath} shorter than ${schema.minLength}`);
|
|
126
|
+
if (schema.pattern && !new RegExp(schema.pattern).test(value)) errors.push(`${schemaPath} did not match ${schema.pattern}`);
|
|
127
|
+
if (schema.format === 'date-time' && Number.isNaN(Date.parse(value))) errors.push(`${schemaPath} expected date-time`);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
if (typeof value === 'number') {
|
|
131
|
+
if (schema.minimum !== undefined && value < schema.minimum) errors.push(`${schemaPath} below minimum ${schema.minimum}`);
|
|
132
|
+
if (schema.maximum !== undefined && value > schema.maximum) errors.push(`${schemaPath} above maximum ${schema.maximum}`);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (Array.isArray(value)) {
|
|
136
|
+
if (schema.minItems !== undefined && value.length < schema.minItems) errors.push(`${schemaPath} expected at least ${schema.minItems} items`);
|
|
137
|
+
if (schema.items) value.forEach((item, index) => errors.push(...validateJsonSchema(schema.items, item, `${schemaPath}[${index}]`)));
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
if (value !== null && typeof value === 'object' && !Array.isArray(value)) {
|
|
141
|
+
const properties = schema.properties ?? {};
|
|
142
|
+
for (const key of schema.required ?? []) {
|
|
143
|
+
if (!Object.hasOwn(value, key)) errors.push(`${schemaPath}.${key} is required`);
|
|
144
|
+
}
|
|
145
|
+
if (schema.additionalProperties === false) {
|
|
146
|
+
for (const key of Object.keys(value)) {
|
|
147
|
+
if (!Object.hasOwn(properties, key)) errors.push(`${schemaPath}.${key} is not allowed`);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
for (const [key, childSchema] of Object.entries(properties)) {
|
|
151
|
+
if (Object.hasOwn(value, key)) errors.push(...validateJsonSchema(childSchema, value[key], `${schemaPath}.${key}`));
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
return errors;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function assertSchemaValid(schema, value, label) {
|
|
159
|
+
const errors = validateJsonSchema(schema, value);
|
|
160
|
+
if (errors.length > 0) {
|
|
161
|
+
throw new TypeError(`Invalid ${label}: ${errors.slice(0, 5).join('; ')}.`);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
function assertSafeDestination(rootDir, relativeArtifactPath) {
|
|
166
|
+
const normalizedArtifactPath = normalizeVentureArtifactPath(relativeArtifactPath);
|
|
167
|
+
const root = path.resolve(rootDir);
|
|
168
|
+
const destination = path.resolve(root, normalizedArtifactPath);
|
|
169
|
+
|
|
170
|
+
if (destination !== root && !destination.startsWith(`${root}${path.sep}`)) {
|
|
171
|
+
throw new TypeError(`Invalid venture signal artifact destination: ${JSON.stringify(relativeArtifactPath)}.`);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return { normalizedArtifactPath, destination };
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
function assertCollectorIdentity(artifact, runId, label, { requireRunId = true } = {}) {
|
|
178
|
+
if (!isPlainObject(artifact)) {
|
|
179
|
+
throw new TypeError(`Invalid ${label}: expected an object.`);
|
|
180
|
+
}
|
|
181
|
+
if (requireRunId && artifact.runId !== runId) {
|
|
182
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId}.`);
|
|
183
|
+
}
|
|
184
|
+
if (!requireRunId && Object.hasOwn(artifact, 'runId') && artifact.runId !== runId) {
|
|
185
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId} when present.`);
|
|
186
|
+
}
|
|
187
|
+
if (artifact.role !== COLLECTOR_ROLE || artifact.stage !== COLLECTOR_STAGE) {
|
|
188
|
+
throw new TypeError(`Invalid ${label}: role and stage must be Collector.`);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
function assertNormalizerIdentity(artifact, runId, label, { requireRunId = true } = {}) {
|
|
193
|
+
if (!isPlainObject(artifact)) {
|
|
194
|
+
throw new TypeError(`Invalid ${label}: expected an object.`);
|
|
195
|
+
}
|
|
196
|
+
if (requireRunId && artifact.runId !== runId) {
|
|
197
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId}.`);
|
|
198
|
+
}
|
|
199
|
+
if (!requireRunId && Object.hasOwn(artifact, 'runId') && artifact.runId !== runId) {
|
|
200
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId} when present.`);
|
|
201
|
+
}
|
|
202
|
+
if (artifact.role !== NORMALIZER_ROLE || artifact.stage !== NORMALIZER_STAGE) {
|
|
203
|
+
throw new TypeError(`Invalid ${label}: role and stage must be Normalizer.`);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
function assertPathBelongsToRun(runId, artifactPath) {
|
|
208
|
+
const normalizedArtifactPath = normalizeVentureArtifactPath(artifactPath);
|
|
209
|
+
if (normalizedArtifactPath === VENTURE_SIGNAL_LATEST_PATH) return normalizedArtifactPath;
|
|
210
|
+
|
|
211
|
+
const runDirectory = collectorRunDirectoryPath(runId);
|
|
212
|
+
if (!normalizedArtifactPath.startsWith(runDirectory)) {
|
|
213
|
+
throw new TypeError(`Invalid Collector artifact path for run ${runId}: ${JSON.stringify(artifactPath)}.`);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
return normalizedArtifactPath;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
function assertNormalizerPathBelongsToRun(runId, artifactPath) {
|
|
220
|
+
const normalizedArtifactPath = normalizeVentureArtifactPath(artifactPath);
|
|
221
|
+
if (normalizedArtifactPath === VENTURE_SIGNAL_LATEST_PATH) return normalizedArtifactPath;
|
|
222
|
+
|
|
223
|
+
const runDirectory = normalizerRunDirectoryPath(runId);
|
|
224
|
+
if (!normalizedArtifactPath.startsWith(runDirectory)) {
|
|
225
|
+
throw new TypeError(`Invalid Normalizer artifact path for run ${runId}: ${JSON.stringify(artifactPath)}.`);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
return normalizedArtifactPath;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
function assertArtifactMapEntry(runId, relativePath, artifact) {
|
|
232
|
+
const normalizedPath = assertPathBelongsToRun(runId, relativePath);
|
|
233
|
+
|
|
234
|
+
if (!isPlainObject(artifact)) {
|
|
235
|
+
throw new TypeError(`Invalid Collector artifact at ${normalizedPath}: expected a JSON object.`);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
if (normalizedPath !== VENTURE_SIGNAL_LATEST_PATH) {
|
|
239
|
+
assertCollectorIdentity(artifact, runId, `Collector artifact at ${normalizedPath}`, { requireRunId: false });
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
if (typeof artifact.artifactPath === 'string' && artifact.artifactPath !== normalizedPath) {
|
|
243
|
+
throw new TypeError(`Invalid Collector artifact at ${normalizedPath}: artifactPath does not match file path.`);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
return normalizedPath;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
function assertLatestArtifact(runId, latest, summary) {
|
|
250
|
+
if (!isPlainObject(latest)) {
|
|
251
|
+
throw new TypeError('Invalid latest artifact: expected an object.');
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
assertCollectorIdentity(latest, runId, 'latest artifact');
|
|
255
|
+
|
|
256
|
+
if (latest.latestPath !== VENTURE_SIGNAL_LATEST_PATH) {
|
|
257
|
+
throw new TypeError('Invalid latest artifact: latestPath must be the stable Venture Signal latest path.');
|
|
258
|
+
}
|
|
259
|
+
if (!LATEST_STATUS_VALUES.includes(latest.status)) {
|
|
260
|
+
throw new TypeError(`Invalid latest artifact: status ${JSON.stringify(latest.status)} is not promotable.`);
|
|
261
|
+
}
|
|
262
|
+
if (latest.summaryPath !== collectorRunSummaryPath(runId)) {
|
|
263
|
+
throw new TypeError('Invalid latest artifact: summaryPath must point at this Collector run summary.');
|
|
264
|
+
}
|
|
265
|
+
if (latest.diagnosticsPath !== collectorDiagnosticsPath(runId)) {
|
|
266
|
+
throw new TypeError('Invalid latest artifact: diagnosticsPath must point at this Collector run diagnostics.');
|
|
267
|
+
}
|
|
268
|
+
if (!isPlainObject(latest.promotion) || latest.promotion.status !== 'promoted') {
|
|
269
|
+
throw new TypeError('Invalid latest artifact: promotion must be promoted.');
|
|
270
|
+
}
|
|
271
|
+
if (summary.status === 'error') {
|
|
272
|
+
throw new TypeError('Invalid latest artifact: error Collector runs cannot be promoted.');
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
function validateCollectorRunForPersistence(result) {
|
|
277
|
+
if (!isPlainObject(result) || !(result.files instanceof Map)) {
|
|
278
|
+
throw new TypeError('Collector result with a files Map is required.');
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
const runId = normalizeVentureRunId(result.runId);
|
|
282
|
+
const summary = result.summary;
|
|
283
|
+
const diagnosticsArtifact = result.diagnosticsArtifact;
|
|
284
|
+
|
|
285
|
+
assertCollectorIdentity(summary, runId, 'Collector run summary');
|
|
286
|
+
assertCollectorIdentity(diagnosticsArtifact, runId, 'Collector diagnostics artifact');
|
|
287
|
+
|
|
288
|
+
if (!PROMOTABLE_COLLECTOR_STATUSES.has(summary.status) && summary.status !== 'error') {
|
|
289
|
+
throw new TypeError(`Invalid Collector run status: ${JSON.stringify(summary.status)}.`);
|
|
290
|
+
}
|
|
291
|
+
if (result.status !== summary.status) {
|
|
292
|
+
throw new TypeError('Invalid Collector result: top-level status must match summary status.');
|
|
293
|
+
}
|
|
294
|
+
if (summary.artifacts?.summary !== collectorRunSummaryPath(runId)) {
|
|
295
|
+
throw new TypeError('Invalid Collector run summary: summary artifact path is not exact.');
|
|
296
|
+
}
|
|
297
|
+
if (summary.artifacts?.diagnostics !== collectorDiagnosticsPath(runId)) {
|
|
298
|
+
throw new TypeError('Invalid Collector run summary: diagnostics artifact path is not exact.');
|
|
299
|
+
}
|
|
300
|
+
if (diagnosticsArtifact.artifactPath !== collectorDiagnosticsPath(runId)) {
|
|
301
|
+
throw new TypeError('Invalid Collector diagnostics artifact: artifactPath is not exact.');
|
|
302
|
+
}
|
|
303
|
+
if (!result.files.has(collectorRunSummaryPath(runId))) {
|
|
304
|
+
throw new TypeError('Invalid Collector result: summary file is missing from artifact map.');
|
|
305
|
+
}
|
|
306
|
+
if (!result.files.has(collectorDiagnosticsPath(runId))) {
|
|
307
|
+
throw new TypeError('Invalid Collector result: diagnostics file is missing from artifact map.');
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
const normalizedFiles = new Map();
|
|
311
|
+
for (const [relativePath, artifact] of result.files.entries()) {
|
|
312
|
+
const normalizedPath = assertArtifactMapEntry(runId, relativePath, artifact);
|
|
313
|
+
normalizedFiles.set(normalizedPath, artifact);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
const promotable = PROMOTABLE_COLLECTOR_STATUSES.has(summary.status);
|
|
317
|
+
const latestFromFiles = normalizedFiles.get(VENTURE_SIGNAL_LATEST_PATH);
|
|
318
|
+
|
|
319
|
+
if (promotable) {
|
|
320
|
+
if (!result.latest || !latestFromFiles) {
|
|
321
|
+
throw new TypeError('Invalid Collector result: promotable runs must include a latest artifact.');
|
|
322
|
+
}
|
|
323
|
+
assertLatestArtifact(runId, result.latest, summary);
|
|
324
|
+
assertLatestArtifact(runId, latestFromFiles, summary);
|
|
325
|
+
} else if (result.latest || latestFromFiles || summary.artifacts?.latest !== null) {
|
|
326
|
+
throw new TypeError('Invalid Collector result: non-promotable runs must not include a latest artifact.');
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
return {
|
|
330
|
+
runId,
|
|
331
|
+
summary,
|
|
332
|
+
diagnosticsArtifact,
|
|
333
|
+
files: normalizedFiles,
|
|
334
|
+
promotable,
|
|
335
|
+
latest: promotable ? latestFromFiles : null,
|
|
336
|
+
};
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
function assertNormalizerArtifactMapEntry(runId, relativePath, artifact) {
|
|
340
|
+
const normalizedPath = assertNormalizerPathBelongsToRun(runId, relativePath);
|
|
341
|
+
|
|
342
|
+
if (!isPlainObject(artifact)) {
|
|
343
|
+
throw new TypeError(`Invalid Normalizer artifact at ${normalizedPath}: expected a JSON object.`);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
assertNormalizerIdentity(artifact, runId, `Normalizer artifact at ${normalizedPath}`, { requireRunId: false });
|
|
347
|
+
|
|
348
|
+
if (typeof artifact.artifactPath === 'string' && artifact.artifactPath !== normalizedPath) {
|
|
349
|
+
throw new TypeError(`Invalid Normalizer artifact at ${normalizedPath}: artifactPath does not match file path.`);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
return normalizedPath;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
function assertExactNormalizerArtifactPath(artifact, expectedPath, label) {
|
|
356
|
+
if (!isPlainObject(artifact)) {
|
|
357
|
+
throw new TypeError(`Invalid ${label}: expected a JSON object.`);
|
|
358
|
+
}
|
|
359
|
+
if (artifact.artifactPath !== expectedPath) {
|
|
360
|
+
throw new TypeError(`Invalid ${label}: artifactPath must be ${expectedPath}.`);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
function assertNormalizerSummaryPaths(runId, summary) {
|
|
365
|
+
if (summary.artifacts?.summary !== normalizerRunSummaryPath(runId)) {
|
|
366
|
+
throw new TypeError('Invalid Normalizer run summary: summary artifact path is not exact.');
|
|
367
|
+
}
|
|
368
|
+
if (summary.artifacts?.diagnostics !== normalizerDiagnosticsPath(runId)) {
|
|
369
|
+
throw new TypeError('Invalid Normalizer run summary: diagnostics artifact path is not exact.');
|
|
370
|
+
}
|
|
371
|
+
if (summary.artifacts?.aliases !== normalizerAliasesPath(runId)) {
|
|
372
|
+
throw new TypeError('Invalid Normalizer run summary: aliases artifact path is not exact.');
|
|
373
|
+
}
|
|
374
|
+
if (summary.artifacts?.taxonomyMappings !== normalizerTaxonomyMappingsPath(runId)) {
|
|
375
|
+
throw new TypeError('Invalid Normalizer run summary: taxonomy mappings artifact path is not exact.');
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
function validateNormalizerRunForPersistence(result, collectorValidation = null) {
|
|
380
|
+
if (!isPlainObject(result) || !(result.files instanceof Map)) {
|
|
381
|
+
throw new TypeError('Normalizer result with a files Map is required.');
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
const runId = normalizeVentureRunId(result.runId);
|
|
385
|
+
const summary = result.summary;
|
|
386
|
+
const diagnosticsArtifact = result.diagnosticsArtifact;
|
|
387
|
+
const aliasesArtifact = result.aliasesArtifact;
|
|
388
|
+
const taxonomyMappingsArtifact = result.taxonomyMappingsArtifact;
|
|
389
|
+
|
|
390
|
+
assertNormalizerIdentity(summary, runId, 'Normalizer run summary');
|
|
391
|
+
assertNormalizerIdentity(diagnosticsArtifact, runId, 'Normalizer diagnostics artifact');
|
|
392
|
+
assertNormalizerIdentity(aliasesArtifact, runId, 'Normalizer aliases artifact');
|
|
393
|
+
assertNormalizerIdentity(taxonomyMappingsArtifact, runId, 'Normalizer taxonomy mappings artifact');
|
|
394
|
+
|
|
395
|
+
if (!NORMALIZER_STATUS_VALUES.includes(summary.status)) {
|
|
396
|
+
throw new TypeError(`Invalid Normalizer run status: ${JSON.stringify(summary.status)}.`);
|
|
397
|
+
}
|
|
398
|
+
if (result.status !== summary.status) {
|
|
399
|
+
throw new TypeError('Invalid Normalizer result: top-level status must match summary status.');
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
assertNormalizerSummaryPaths(runId, summary);
|
|
403
|
+
assertExactNormalizerArtifactPath(diagnosticsArtifact, normalizerDiagnosticsPath(runId), 'Normalizer diagnostics artifact');
|
|
404
|
+
assertExactNormalizerArtifactPath(aliasesArtifact, normalizerAliasesPath(runId), 'Normalizer aliases artifact');
|
|
405
|
+
assertExactNormalizerArtifactPath(taxonomyMappingsArtifact, normalizerTaxonomyMappingsPath(runId), 'Normalizer taxonomy mappings artifact');
|
|
406
|
+
|
|
407
|
+
if (!result.files.has(normalizerRunSummaryPath(runId))) {
|
|
408
|
+
throw new TypeError('Invalid Normalizer result: summary file is missing from artifact map.');
|
|
409
|
+
}
|
|
410
|
+
if (!result.files.has(normalizerDiagnosticsPath(runId))) {
|
|
411
|
+
throw new TypeError('Invalid Normalizer result: diagnostics file is missing from artifact map.');
|
|
412
|
+
}
|
|
413
|
+
if (!result.files.has(normalizerAliasesPath(runId))) {
|
|
414
|
+
throw new TypeError('Invalid Normalizer result: aliases file is missing from artifact map.');
|
|
415
|
+
}
|
|
416
|
+
if (!result.files.has(normalizerTaxonomyMappingsPath(runId))) {
|
|
417
|
+
throw new TypeError('Invalid Normalizer result: taxonomy mappings file is missing from artifact map.');
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
if (collectorValidation) {
|
|
421
|
+
if (summary.sourceBatch?.collectorRunId !== collectorValidation.runId) {
|
|
422
|
+
throw new TypeError('Invalid Normalizer run summary: collectorRunId must match the validated Collector run.');
|
|
423
|
+
}
|
|
424
|
+
if (summary.sourceBatch?.collectorSummaryPath !== collectorRunSummaryPath(collectorValidation.runId)) {
|
|
425
|
+
throw new TypeError('Invalid Normalizer run summary: collector summary path must match the validated Collector run.');
|
|
426
|
+
}
|
|
427
|
+
if (summary.sourceBatch?.collectorDiagnosticsPath !== collectorDiagnosticsPath(collectorValidation.runId)) {
|
|
428
|
+
throw new TypeError('Invalid Normalizer run summary: collector diagnostics path must match the validated Collector run.');
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
const normalizedFiles = new Map();
|
|
433
|
+
for (const [relativePath, artifact] of result.files.entries()) {
|
|
434
|
+
const normalizedPath = assertNormalizerArtifactMapEntry(runId, relativePath, artifact);
|
|
435
|
+
normalizedFiles.set(normalizedPath, artifact);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
const companies = Array.isArray(result.companies) ? result.companies : [];
|
|
439
|
+
const investors = Array.isArray(result.investors) ? result.investors : [];
|
|
440
|
+
const marketTrends = Array.isArray(result.marketTrends) ? result.marketTrends : [];
|
|
441
|
+
const signals = Array.isArray(result.signals) ? result.signals : [];
|
|
442
|
+
|
|
443
|
+
for (const [label, records] of [
|
|
444
|
+
['company', companies],
|
|
445
|
+
['investor', investors],
|
|
446
|
+
['market trend', marketTrends],
|
|
447
|
+
['signal', signals],
|
|
448
|
+
]) {
|
|
449
|
+
for (const record of records) {
|
|
450
|
+
assertNormalizerIdentity(record, runId, `Normalizer ${label}`, { requireRunId: false });
|
|
451
|
+
if (typeof record.artifactPath !== 'string' || !normalizedFiles.has(record.artifactPath)) {
|
|
452
|
+
throw new TypeError(`Invalid Normalizer ${label}: artifactPath must be present in the files Map.`);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
const aggregatePaths = [
|
|
458
|
+
normalizerCompaniesPath(runId),
|
|
459
|
+
normalizerInvestorsPath(runId),
|
|
460
|
+
normalizerTrendsPath(runId),
|
|
461
|
+
normalizerSignalsPath(runId),
|
|
462
|
+
normalizerDiagnosticsIndexPath(runId),
|
|
463
|
+
];
|
|
464
|
+
const canPromoteLatest = result.promotable !== false && summary.status !== 'error' && collectorValidation?.promotable === true;
|
|
465
|
+
const written = [...new Set([...(summary.artifacts?.written ?? []), ...aggregatePaths])].sort();
|
|
466
|
+
const summaryForPersistence = {
|
|
467
|
+
...jsonClone(summary),
|
|
468
|
+
artifacts: {
|
|
469
|
+
...jsonClone(summary.artifacts),
|
|
470
|
+
latest: canPromoteLatest ? VENTURE_SIGNAL_LATEST_PATH : null,
|
|
471
|
+
written: canPromoteLatest ? [...new Set([...written, VENTURE_SIGNAL_LATEST_PATH])].sort() : written,
|
|
472
|
+
},
|
|
473
|
+
};
|
|
474
|
+
normalizedFiles.set(normalizerRunSummaryPath(runId), summaryForPersistence);
|
|
475
|
+
|
|
476
|
+
return {
|
|
477
|
+
runId,
|
|
478
|
+
summary: summaryForPersistence,
|
|
479
|
+
diagnosticsArtifact,
|
|
480
|
+
aliasesArtifact,
|
|
481
|
+
taxonomyMappingsArtifact,
|
|
482
|
+
files: normalizedFiles,
|
|
483
|
+
companies,
|
|
484
|
+
investors,
|
|
485
|
+
marketTrends,
|
|
486
|
+
signals,
|
|
487
|
+
promotable: result.promotable !== false && summary.status !== 'error',
|
|
488
|
+
aggregateArtifacts: createNormalizerAggregateArtifacts({
|
|
489
|
+
runId,
|
|
490
|
+
summary: summaryForPersistence,
|
|
491
|
+
diagnosticsArtifact,
|
|
492
|
+
companies,
|
|
493
|
+
investors,
|
|
494
|
+
marketTrends,
|
|
495
|
+
signals,
|
|
496
|
+
}),
|
|
497
|
+
};
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
function createNormalizerAggregateArtifacts({ runId, summary, diagnosticsArtifact, companies, investors, marketTrends, signals }) {
|
|
501
|
+
const generatedAt = summary.completedAt;
|
|
502
|
+
const base = { schemaVersion: summary.schemaVersion, runId, role: NORMALIZER_ROLE, stage: NORMALIZER_STAGE, generatedAt };
|
|
503
|
+
return new Map([
|
|
504
|
+
[normalizerCompaniesPath(runId), { ...base, artifactPath: normalizerCompaniesPath(runId), companies: jsonClone(companies) }],
|
|
505
|
+
[normalizerInvestorsPath(runId), { ...base, artifactPath: normalizerInvestorsPath(runId), investors: jsonClone(investors) }],
|
|
506
|
+
[normalizerTrendsPath(runId), { ...base, artifactPath: normalizerTrendsPath(runId), trends: jsonClone(marketTrends) }],
|
|
507
|
+
[normalizerSignalsPath(runId), { ...base, artifactPath: normalizerSignalsPath(runId), signals: jsonClone(signals) }],
|
|
508
|
+
[normalizerDiagnosticsIndexPath(runId), {
|
|
509
|
+
...base,
|
|
510
|
+
artifactPath: normalizerDiagnosticsIndexPath(runId),
|
|
511
|
+
diagnostics: jsonClone(diagnosticsArtifact.diagnostics ?? []),
|
|
512
|
+
}],
|
|
513
|
+
]);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
function createNormalizerLatestArtifact(collectorValidation, normalizerValidation) {
|
|
517
|
+
const collectorLatest = collectorValidation.latest;
|
|
518
|
+
const collectorSummary = collectorValidation.summary;
|
|
519
|
+
const normalizerSummary = normalizerValidation.summary;
|
|
520
|
+
return {
|
|
521
|
+
schemaVersion: normalizerSummary.schemaVersion,
|
|
522
|
+
latestPath: VENTURE_SIGNAL_LATEST_PATH,
|
|
523
|
+
runId: normalizerValidation.runId,
|
|
524
|
+
role: NORMALIZER_ROLE,
|
|
525
|
+
stage: NORMALIZER_STAGE,
|
|
526
|
+
status: normalizerSummary.status,
|
|
527
|
+
updatedAt: normalizerSummary.completedAt,
|
|
528
|
+
summaryPath: normalizerRunSummaryPath(normalizerValidation.runId),
|
|
529
|
+
diagnosticsPath: normalizerDiagnosticsPath(normalizerValidation.runId),
|
|
530
|
+
collectorSummaryPath: collectorRunSummaryPath(collectorValidation.runId),
|
|
531
|
+
collectorDiagnosticsPath: collectorDiagnosticsPath(collectorValidation.runId),
|
|
532
|
+
sourceCounts: jsonClone(collectorLatest?.sourceCounts ?? {
|
|
533
|
+
collected: collectorSummary.sourceCounts?.collected ?? 0,
|
|
534
|
+
failed: collectorSummary.sourceCounts?.failed ?? 0,
|
|
535
|
+
skippedOptional: collectorSummary.sourceCounts?.skippedOptional ?? 0,
|
|
536
|
+
rejectedPaid: collectorSummary.sourceCounts?.rejectedPaid ?? 0,
|
|
537
|
+
}),
|
|
538
|
+
freshness: jsonClone(collectorLatest?.freshness ?? {
|
|
539
|
+
status: 'unknown',
|
|
540
|
+
observedAt: collectorSummary.completedAt,
|
|
541
|
+
sourcePublishedAt: null,
|
|
542
|
+
reason: 'Normalizer latest promotion inherited Collector freshness metadata from the validated run summary.',
|
|
543
|
+
}),
|
|
544
|
+
stageStatuses: {
|
|
545
|
+
collector: collectorSummary.status,
|
|
546
|
+
normalizer: normalizerSummary.status,
|
|
547
|
+
},
|
|
548
|
+
normalizerCounts: jsonClone(normalizerSummary.counts),
|
|
549
|
+
promotion: {
|
|
550
|
+
status: 'promoted',
|
|
551
|
+
reason: 'Validated Collector and Normalizer artifacts were written before latest promotion.',
|
|
552
|
+
},
|
|
553
|
+
};
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
const SECRET_LOOKING_REGEX = new RegExp(SECRET_LOOKING_PATTERN);
|
|
557
|
+
|
|
558
|
+
function uniqueSortedStrings(values) {
|
|
559
|
+
return [...new Set(values
|
|
560
|
+
.filter((value) => typeof value === 'string' && value.trim() !== '')
|
|
561
|
+
.map((value) => value.trim()))]
|
|
562
|
+
.sort((a, b) => a.localeCompare(b, 'en', { sensitivity: 'base' }));
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
function combinedStatus(statuses) {
|
|
566
|
+
if (statuses.includes('error')) return 'error';
|
|
567
|
+
if (statuses.includes('warn')) return 'warn';
|
|
568
|
+
return 'ok';
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
function assertNoSecretLookingDiagnostics(artifact, label) {
|
|
572
|
+
const diagnostics = Array.isArray(artifact?.diagnostics) ? artifact.diagnostics : [];
|
|
573
|
+
for (const diagnostic of diagnostics) {
|
|
574
|
+
for (const value of [diagnostic?.message, diagnostic?.details?.reason]) {
|
|
575
|
+
if (typeof value !== 'string') continue;
|
|
576
|
+
if (SECRET_LOOKING_REGEX.test(value)) {
|
|
577
|
+
SECRET_LOOKING_REGEX.lastIndex = 0;
|
|
578
|
+
throw new TypeError(`Invalid ${label}: diagnostics must be redacted before persistence.`);
|
|
579
|
+
}
|
|
580
|
+
SECRET_LOOKING_REGEX.lastIndex = 0;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
function assertAnalysisIdentity(artifact, runId, label, role, stage, { requireRunId = true } = {}) {
|
|
586
|
+
if (!isPlainObject(artifact)) {
|
|
587
|
+
throw new TypeError(`Invalid ${label}: expected an object.`);
|
|
588
|
+
}
|
|
589
|
+
if (requireRunId && artifact.runId !== runId) {
|
|
590
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId}.`);
|
|
591
|
+
}
|
|
592
|
+
if (!requireRunId && Object.hasOwn(artifact, 'runId') && artifact.runId !== runId) {
|
|
593
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId} when present.`);
|
|
594
|
+
}
|
|
595
|
+
if (artifact.role !== role || artifact.stage !== stage) {
|
|
596
|
+
throw new TypeError(`Invalid ${label}: role and stage must be ${role}/${stage}.`);
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
function assertAnalysisPathBelongsToRun(runId, artifactPath, stage, label) {
|
|
601
|
+
const normalizedPath = normalizeVentureArtifactPath(artifactPath);
|
|
602
|
+
const runDirectory = stage === ANALYST_STAGE ? analystRunDirectoryPath(runId) : skepticRunDirectoryPath(runId);
|
|
603
|
+
if (!normalizedPath.startsWith(runDirectory)) {
|
|
604
|
+
throw new TypeError(`Invalid ${label} artifact path for run ${runId}: ${JSON.stringify(artifactPath)}.`);
|
|
605
|
+
}
|
|
606
|
+
return normalizedPath;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
function assertAnalysisArtifactMapEntry(runId, relativePath, artifact, stage, role, label) {
|
|
610
|
+
const normalizedPath = assertAnalysisPathBelongsToRun(runId, relativePath, stage, label);
|
|
611
|
+
|
|
612
|
+
if (!isPlainObject(artifact)) {
|
|
613
|
+
throw new TypeError(`Invalid ${label} artifact at ${normalizedPath}: expected a JSON object.`);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
assertAnalysisIdentity(artifact, runId, `${label} artifact at ${normalizedPath}`, role, stage, { requireRunId: false });
|
|
617
|
+
|
|
618
|
+
if (typeof artifact.artifactPath === 'string' && artifact.artifactPath !== normalizedPath) {
|
|
619
|
+
throw new TypeError(`Invalid ${label} artifact at ${normalizedPath}: artifactPath does not match file path.`);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
return normalizedPath;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
function assertExactArtifactPath(artifact, expectedPath, label) {
|
|
626
|
+
if (!isPlainObject(artifact)) {
|
|
627
|
+
throw new TypeError(`Invalid ${label}: expected a JSON object.`);
|
|
628
|
+
}
|
|
629
|
+
if (artifact.artifactPath !== expectedPath) {
|
|
630
|
+
throw new TypeError(`Invalid ${label}: artifactPath must be ${expectedPath}.`);
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
function assertAnalysisRunIdMatchesPrior(runId, priorRunId, label) {
|
|
635
|
+
if (runId !== priorRunId) {
|
|
636
|
+
throw new TypeError(`Invalid ${label}: runId must match validated prior stage run ${priorRunId}.`);
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
function validateAnalystRunForPersistence(result, normalizerValidation = null) {
|
|
641
|
+
if (!isPlainObject(result) || !(result.files instanceof Map)) {
|
|
642
|
+
throw new TypeError('Analyst result with a files Map is required.');
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
const runId = normalizeVentureRunId(result.runId);
|
|
646
|
+
if (normalizerValidation) assertAnalysisRunIdMatchesPrior(runId, normalizerValidation.runId, 'Analyst result');
|
|
647
|
+
|
|
648
|
+
const summary = result.summary;
|
|
649
|
+
const diagnosticsArtifact = result.diagnosticsArtifact;
|
|
650
|
+
const trendScoresArtifact = result.trendScoresArtifact;
|
|
651
|
+
|
|
652
|
+
assertAnalysisIdentity(summary, runId, 'Analyst run summary', ANALYST_ROLE, ANALYST_STAGE);
|
|
653
|
+
assertAnalysisIdentity(diagnosticsArtifact, runId, 'Analyst diagnostics artifact', ANALYST_ROLE, ANALYST_STAGE);
|
|
654
|
+
assertAnalysisIdentity(trendScoresArtifact, runId, 'Analyst trend-scores artifact', ANALYST_ROLE, ANALYST_STAGE);
|
|
655
|
+
|
|
656
|
+
if (!ANALYST_STATUS_VALUES.includes(summary.status)) {
|
|
657
|
+
throw new TypeError(`Invalid Analyst run status: ${JSON.stringify(summary.status)}.`);
|
|
658
|
+
}
|
|
659
|
+
if (result.status !== summary.status) {
|
|
660
|
+
throw new TypeError('Invalid Analyst result: top-level status must match summary status.');
|
|
661
|
+
}
|
|
662
|
+
if (summary.artifacts?.summary !== analystRunSummaryPath(runId)) {
|
|
663
|
+
throw new TypeError('Invalid Analyst run summary: summary artifact path is not exact.');
|
|
664
|
+
}
|
|
665
|
+
if (summary.artifacts?.diagnostics !== analystDiagnosticsPath(runId)) {
|
|
666
|
+
throw new TypeError('Invalid Analyst run summary: diagnostics artifact path is not exact.');
|
|
667
|
+
}
|
|
668
|
+
if (summary.artifacts?.trendScores !== analystTrendScoresPath(runId)) {
|
|
669
|
+
throw new TypeError('Invalid Analyst run summary: trend-scores artifact path is not exact.');
|
|
670
|
+
}
|
|
671
|
+
if (normalizerValidation) {
|
|
672
|
+
if (summary.artifacts?.normalizerSummary !== normalizerRunSummaryPath(normalizerValidation.runId)) {
|
|
673
|
+
throw new TypeError('Invalid Analyst run summary: normalizer summary path must match the validated Normalizer run.');
|
|
674
|
+
}
|
|
675
|
+
if (summary.artifacts?.normalizerDiagnostics !== normalizerDiagnosticsPath(normalizerValidation.runId)) {
|
|
676
|
+
throw new TypeError('Invalid Analyst run summary: normalizer diagnostics path must match the validated Normalizer run.');
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
assertExactArtifactPath(diagnosticsArtifact, analystDiagnosticsPath(runId), 'Analyst diagnostics artifact');
|
|
681
|
+
assertExactArtifactPath(trendScoresArtifact, analystTrendScoresPath(runId), 'Analyst trend-scores artifact');
|
|
682
|
+
assertNoSecretLookingDiagnostics(diagnosticsArtifact, 'Analyst diagnostics artifact');
|
|
683
|
+
assertNoSecretLookingDiagnostics(summary, 'Analyst run summary');
|
|
684
|
+
|
|
685
|
+
if (!result.files.has(analystRunSummaryPath(runId))) {
|
|
686
|
+
throw new TypeError('Invalid Analyst result: summary file is missing from artifact map.');
|
|
687
|
+
}
|
|
688
|
+
if (!result.files.has(analystDiagnosticsPath(runId))) {
|
|
689
|
+
throw new TypeError('Invalid Analyst result: diagnostics file is missing from artifact map.');
|
|
690
|
+
}
|
|
691
|
+
if (!result.files.has(analystTrendScoresPath(runId))) {
|
|
692
|
+
throw new TypeError('Invalid Analyst result: trend-scores file is missing from artifact map.');
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
const normalizedFiles = new Map();
|
|
696
|
+
for (const [relativePath, artifact] of result.files.entries()) {
|
|
697
|
+
const normalizedPath = assertAnalysisArtifactMapEntry(runId, relativePath, artifact, ANALYST_STAGE, ANALYST_ROLE, 'Analyst');
|
|
698
|
+
normalizedFiles.set(normalizedPath, artifact);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
const trendScores = Array.isArray(result.trendScores) ? result.trendScores : [];
|
|
702
|
+
for (const trendScore of trendScores) {
|
|
703
|
+
assertAnalysisIdentity(trendScore, runId, 'Analyst trend score', ANALYST_ROLE, ANALYST_STAGE);
|
|
704
|
+
if (typeof trendScore.artifactPath !== 'string' || !normalizedFiles.has(trendScore.artifactPath)) {
|
|
705
|
+
throw new TypeError('Invalid Analyst trend score: artifactPath must be present in the files Map.');
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
return {
|
|
710
|
+
runId,
|
|
711
|
+
summary,
|
|
712
|
+
diagnosticsArtifact,
|
|
713
|
+
trendScoresArtifact,
|
|
714
|
+
files: normalizedFiles,
|
|
715
|
+
trendScores,
|
|
716
|
+
diagnostics: Array.isArray(result.diagnostics) ? result.diagnostics : [],
|
|
717
|
+
promotable: result.status !== 'error' && summary.status !== 'error' && trendScores.length > 0,
|
|
718
|
+
};
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
function validateSkepticRunForPersistence(result, analystValidation = null) {
|
|
722
|
+
if (!isPlainObject(result) || !(result.files instanceof Map)) {
|
|
723
|
+
throw new TypeError('Skeptic result with a files Map is required.');
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
const runId = normalizeVentureRunId(result.runId);
|
|
727
|
+
if (analystValidation) assertAnalysisRunIdMatchesPrior(runId, analystValidation.runId, 'Skeptic result');
|
|
728
|
+
|
|
729
|
+
const summary = result.summary;
|
|
730
|
+
const diagnosticsArtifact = result.diagnosticsArtifact;
|
|
731
|
+
const challengesArtifact = result.challengesArtifact;
|
|
732
|
+
|
|
733
|
+
assertAnalysisIdentity(result, runId, 'Skeptic result', SKEPTIC_ROLE, SKEPTIC_STAGE);
|
|
734
|
+
assertAnalysisIdentity(summary, runId, 'Skeptic review summary', ANALYST_ROLE, ANALYST_STAGE);
|
|
735
|
+
assertAnalysisIdentity(diagnosticsArtifact, runId, 'Skeptic diagnostics artifact', SKEPTIC_ROLE, SKEPTIC_STAGE);
|
|
736
|
+
assertAnalysisIdentity(challengesArtifact, runId, 'Skeptic challenged-claims artifact', SKEPTIC_ROLE, SKEPTIC_STAGE);
|
|
737
|
+
|
|
738
|
+
if (!SKEPTIC_STATUS_VALUES.includes(result.status) || !SKEPTIC_STATUS_VALUES.includes(summary.stageStatuses?.skeptic)) {
|
|
739
|
+
throw new TypeError(`Invalid Skeptic run status: ${JSON.stringify(result.status)}.`);
|
|
740
|
+
}
|
|
741
|
+
if (result.status !== summary.stageStatuses?.skeptic) {
|
|
742
|
+
throw new TypeError('Invalid Skeptic result: top-level status must match summary skeptic stage status.');
|
|
743
|
+
}
|
|
744
|
+
if (summary.artifacts?.skepticSummary !== skepticRunSummaryPath(runId)) {
|
|
745
|
+
throw new TypeError('Invalid Skeptic review summary: summary artifact path is not exact.');
|
|
746
|
+
}
|
|
747
|
+
if (summary.artifacts?.skepticDiagnostics !== skepticDiagnosticsPath(runId)) {
|
|
748
|
+
throw new TypeError('Invalid Skeptic review summary: diagnostics artifact path is not exact.');
|
|
749
|
+
}
|
|
750
|
+
if (analystValidation) {
|
|
751
|
+
if (summary.stageStatuses?.analyst !== analystValidation.summary.status) {
|
|
752
|
+
throw new TypeError('Invalid Skeptic review summary: analyst stage status must match the validated Analyst result.');
|
|
753
|
+
}
|
|
754
|
+
if (summary.artifacts?.analystSummary !== analystRunSummaryPath(analystValidation.runId)) {
|
|
755
|
+
throw new TypeError('Invalid Skeptic review summary: analyst summary path must match the validated Analyst run.');
|
|
756
|
+
}
|
|
757
|
+
if (summary.artifacts?.analystDiagnostics !== analystDiagnosticsPath(analystValidation.runId)) {
|
|
758
|
+
throw new TypeError('Invalid Skeptic review summary: analyst diagnostics path must match the validated Analyst run.');
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
assertExactArtifactPath(diagnosticsArtifact, skepticDiagnosticsPath(runId), 'Skeptic diagnostics artifact');
|
|
763
|
+
assertExactArtifactPath(challengesArtifact, skepticChallengesPath(runId), 'Skeptic challenged-claims artifact');
|
|
764
|
+
assertNoSecretLookingDiagnostics(diagnosticsArtifact, 'Skeptic diagnostics artifact');
|
|
765
|
+
|
|
766
|
+
if (!result.files.has(skepticRunSummaryPath(runId))) {
|
|
767
|
+
throw new TypeError('Invalid Skeptic result: review summary file is missing from artifact map.');
|
|
768
|
+
}
|
|
769
|
+
if (!result.files.has(skepticDiagnosticsPath(runId))) {
|
|
770
|
+
throw new TypeError('Invalid Skeptic result: diagnostics file is missing from artifact map.');
|
|
771
|
+
}
|
|
772
|
+
if (!result.files.has(skepticChallengesPath(runId))) {
|
|
773
|
+
throw new TypeError('Invalid Skeptic result: challenged-claims file is missing from artifact map.');
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
const normalizedFiles = new Map();
|
|
777
|
+
for (const [relativePath, artifact] of result.files.entries()) {
|
|
778
|
+
const normalizedPath = assertAnalysisPathBelongsToRun(runId, relativePath, SKEPTIC_STAGE, 'Skeptic');
|
|
779
|
+
if (!isPlainObject(artifact)) {
|
|
780
|
+
throw new TypeError(`Invalid Skeptic artifact at ${normalizedPath}: expected a JSON object.`);
|
|
781
|
+
}
|
|
782
|
+
if (normalizedPath === skepticRunSummaryPath(runId)) {
|
|
783
|
+
assertAnalysisIdentity(artifact, runId, `Skeptic artifact at ${normalizedPath}`, ANALYST_ROLE, ANALYST_STAGE, { requireRunId: false });
|
|
784
|
+
} else {
|
|
785
|
+
assertAnalysisIdentity(artifact, runId, `Skeptic artifact at ${normalizedPath}`, SKEPTIC_ROLE, SKEPTIC_STAGE, { requireRunId: false });
|
|
786
|
+
}
|
|
787
|
+
if (typeof artifact.artifactPath === 'string' && artifact.artifactPath !== normalizedPath) {
|
|
788
|
+
throw new TypeError(`Invalid Skeptic artifact at ${normalizedPath}: artifactPath does not match file path.`);
|
|
789
|
+
}
|
|
790
|
+
normalizedFiles.set(normalizedPath, artifact);
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
const challenges = Array.isArray(result.skepticChallenges) ? result.skepticChallenges : [];
|
|
794
|
+
for (const challenge of challenges) {
|
|
795
|
+
assertAnalysisIdentity(challenge, runId, 'Skeptic challenge', SKEPTIC_ROLE, SKEPTIC_STAGE);
|
|
796
|
+
if (typeof challenge.artifactPath !== 'string' || !normalizedFiles.has(challenge.artifactPath)) {
|
|
797
|
+
throw new TypeError('Invalid Skeptic challenge: artifactPath must be present in the files Map.');
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
return {
|
|
802
|
+
runId,
|
|
803
|
+
summary,
|
|
804
|
+
diagnosticsArtifact,
|
|
805
|
+
challengesArtifact,
|
|
806
|
+
files: normalizedFiles,
|
|
807
|
+
challenges,
|
|
808
|
+
diagnostics: Array.isArray(result.diagnostics) ? result.diagnostics : [],
|
|
809
|
+
confidenceAdjustments: Array.isArray(result.confidenceAdjustments) ? result.confidenceAdjustments : [],
|
|
810
|
+
promotable: result.status !== 'error' && summary.stageStatuses?.skeptic !== 'error' && Array.isArray(summary.trendScores) && summary.trendScores.length > 0,
|
|
811
|
+
};
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
export function analysisAnalystDiagnosticsPath(runId) {
|
|
815
|
+
return `${analystRunDirectoryPath(runId)}diagnostics.json`;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
export function analysisSkepticReviewPath(runId) {
|
|
819
|
+
return `${skepticRunDirectoryPath(runId)}review.json`;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
export function analysisSkepticChallengedClaimsPath(runId) {
|
|
823
|
+
return `${skepticRunDirectoryPath(runId)}challenged-claims.json`;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
export function analysisSkepticDiagnosticsPath(runId) {
|
|
827
|
+
return `${skepticRunDirectoryPath(runId)}diagnostics.json`;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
function replaceWrittenArtifacts(written, replacements) {
|
|
831
|
+
return uniqueSortedStrings((written ?? []).map((artifactPath) => replacements.get(artifactPath) ?? artifactPath));
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
function createPersistedAnalystArtifacts(analystValidation, stageStatuses) {
|
|
835
|
+
const runId = analystValidation.runId;
|
|
836
|
+
const diagnosticsPath = analysisAnalystDiagnosticsPath(runId);
|
|
837
|
+
const replacements = new Map([[analystDiagnosticsPath(runId), diagnosticsPath]]);
|
|
838
|
+
const summary = {
|
|
839
|
+
...jsonClone(analystValidation.summary),
|
|
840
|
+
stageStatuses: jsonClone(stageStatuses),
|
|
841
|
+
artifacts: {
|
|
842
|
+
...jsonClone(analystValidation.summary.artifacts),
|
|
843
|
+
diagnostics: diagnosticsPath,
|
|
844
|
+
written: replaceWrittenArtifacts(analystValidation.summary.artifacts?.written, replacements),
|
|
845
|
+
},
|
|
846
|
+
};
|
|
847
|
+
const diagnosticsArtifact = {
|
|
848
|
+
...jsonClone(analystValidation.diagnosticsArtifact),
|
|
849
|
+
artifactPath: diagnosticsPath,
|
|
850
|
+
};
|
|
851
|
+
const files = new Map();
|
|
852
|
+
files.set(analystRunSummaryPath(runId), summary);
|
|
853
|
+
files.set(diagnosticsPath, diagnosticsArtifact);
|
|
854
|
+
for (const [relativePath, artifact] of analystValidation.files.entries()) {
|
|
855
|
+
if (relativePath === analystRunSummaryPath(runId) || relativePath === analystDiagnosticsPath(runId)) continue;
|
|
856
|
+
files.set(relativePath, artifact);
|
|
857
|
+
}
|
|
858
|
+
return { summary, diagnosticsArtifact, files };
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
function createPersistedSkepticArtifacts(skepticValidation, stageStatuses) {
|
|
862
|
+
const runId = skepticValidation.runId;
|
|
863
|
+
const reviewPath = analysisSkepticReviewPath(runId);
|
|
864
|
+
const diagnosticsPath = analysisSkepticDiagnosticsPath(runId);
|
|
865
|
+
const challengedClaimsPath = analysisSkepticChallengedClaimsPath(runId);
|
|
866
|
+
const replacements = new Map([
|
|
867
|
+
[skepticRunSummaryPath(runId), reviewPath],
|
|
868
|
+
[skepticDiagnosticsPath(runId), diagnosticsPath],
|
|
869
|
+
[skepticChallengesPath(runId), challengedClaimsPath],
|
|
870
|
+
]);
|
|
871
|
+
const summary = {
|
|
872
|
+
...jsonClone(skepticValidation.summary),
|
|
873
|
+
stageStatuses: jsonClone(stageStatuses),
|
|
874
|
+
artifacts: {
|
|
875
|
+
...jsonClone(skepticValidation.summary.artifacts),
|
|
876
|
+
skepticSummary: reviewPath,
|
|
877
|
+
skepticDiagnostics: diagnosticsPath,
|
|
878
|
+
written: replaceWrittenArtifacts(skepticValidation.summary.artifacts?.written, replacements),
|
|
879
|
+
},
|
|
880
|
+
};
|
|
881
|
+
const diagnosticsArtifact = {
|
|
882
|
+
...jsonClone(skepticValidation.diagnosticsArtifact),
|
|
883
|
+
artifactPath: diagnosticsPath,
|
|
884
|
+
};
|
|
885
|
+
const challengedClaimsArtifact = {
|
|
886
|
+
...jsonClone(skepticValidation.challengesArtifact),
|
|
887
|
+
artifactPath: challengedClaimsPath,
|
|
888
|
+
};
|
|
889
|
+
const files = new Map();
|
|
890
|
+
files.set(reviewPath, summary);
|
|
891
|
+
files.set(diagnosticsPath, diagnosticsArtifact);
|
|
892
|
+
files.set(challengedClaimsPath, challengedClaimsArtifact);
|
|
893
|
+
for (const [relativePath, artifact] of skepticValidation.files.entries()) {
|
|
894
|
+
if ([skepticRunSummaryPath(runId), skepticDiagnosticsPath(runId), skepticChallengesPath(runId)].includes(relativePath)) continue;
|
|
895
|
+
files.set(relativePath, artifact);
|
|
896
|
+
}
|
|
897
|
+
return { summary, diagnosticsArtifact, challengedClaimsArtifact, files };
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
function createAnalysisLatestArtifact({ collectorValidation, normalizerValidation, analystValidation, skepticValidation, analystArtifacts, skepticArtifacts, stageStatuses }) {
|
|
901
|
+
const collectorSummary = collectorValidation.summary;
|
|
902
|
+
const collectorLatest = collectorValidation.latest;
|
|
903
|
+
const status = combinedStatus(Object.values(stageStatuses));
|
|
904
|
+
return {
|
|
905
|
+
schemaVersion: skepticArtifacts.summary.schemaVersion,
|
|
906
|
+
latestPath: VENTURE_SIGNAL_LATEST_PATH,
|
|
907
|
+
runId: skepticValidation.runId,
|
|
908
|
+
role: SKEPTIC_ROLE,
|
|
909
|
+
stage: SKEPTIC_STAGE,
|
|
910
|
+
status,
|
|
911
|
+
updatedAt: skepticArtifacts.summary.completedAt,
|
|
912
|
+
summaryPath: analysisSkepticReviewPath(skepticValidation.runId),
|
|
913
|
+
diagnosticsPath: analysisSkepticDiagnosticsPath(skepticValidation.runId),
|
|
914
|
+
collectorSummaryPath: collectorRunSummaryPath(collectorValidation.runId),
|
|
915
|
+
collectorDiagnosticsPath: collectorDiagnosticsPath(collectorValidation.runId),
|
|
916
|
+
normalizerSummaryPath: normalizerRunSummaryPath(normalizerValidation.runId),
|
|
917
|
+
normalizerDiagnosticsPath: normalizerDiagnosticsPath(normalizerValidation.runId),
|
|
918
|
+
analystSummaryPath: analystRunSummaryPath(analystValidation.runId),
|
|
919
|
+
analystDiagnosticsPath: analysisAnalystDiagnosticsPath(analystValidation.runId),
|
|
920
|
+
analystTrendScoresPath: analystTrendScoresPath(analystValidation.runId),
|
|
921
|
+
skepticReviewPath: analysisSkepticReviewPath(skepticValidation.runId),
|
|
922
|
+
skepticChallengedClaimsPath: analysisSkepticChallengedClaimsPath(skepticValidation.runId),
|
|
923
|
+
skepticDiagnosticsPath: analysisSkepticDiagnosticsPath(skepticValidation.runId),
|
|
924
|
+
sourceCounts: jsonClone(collectorLatest?.sourceCounts ?? {
|
|
925
|
+
collected: collectorSummary.sourceCounts?.collected ?? 0,
|
|
926
|
+
failed: collectorSummary.sourceCounts?.failed ?? 0,
|
|
927
|
+
skippedOptional: collectorSummary.sourceCounts?.skippedOptional ?? 0,
|
|
928
|
+
rejectedPaid: collectorSummary.sourceCounts?.rejectedPaid ?? 0,
|
|
929
|
+
}),
|
|
930
|
+
freshness: jsonClone(collectorLatest?.freshness ?? {
|
|
931
|
+
status: 'unknown',
|
|
932
|
+
observedAt: collectorSummary.completedAt,
|
|
933
|
+
sourcePublishedAt: null,
|
|
934
|
+
reason: 'Analysis latest promotion inherited Collector freshness metadata from the validated run summary.',
|
|
935
|
+
}),
|
|
936
|
+
stageStatuses: jsonClone(stageStatuses),
|
|
937
|
+
normalizerCounts: jsonClone(normalizerValidation.summary.counts),
|
|
938
|
+
analysisCounts: jsonClone(analystArtifacts.summary.counts),
|
|
939
|
+
skepticCounts: {
|
|
940
|
+
challengedClaims: skepticValidation.challenges.length,
|
|
941
|
+
confidenceAdjustments: skepticValidation.confidenceAdjustments.length,
|
|
942
|
+
diagnostics: skepticValidation.diagnostics.length,
|
|
943
|
+
},
|
|
944
|
+
promotion: {
|
|
945
|
+
status: 'promoted',
|
|
946
|
+
reason: 'Validated Collector, Normalizer, Analyst, and Skeptic artifacts were written before analysis latest promotion.',
|
|
947
|
+
},
|
|
948
|
+
};
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
async function writeJsonArtifact(rootDir, relativePath, artifact) {
|
|
952
|
+
const { normalizedArtifactPath, destination } = assertSafeDestination(rootDir, relativePath);
|
|
953
|
+
await mkdir(path.dirname(destination), { recursive: true });
|
|
954
|
+
await writeFile(destination, `${JSON.stringify(artifact, null, 2)}\n`, 'utf8');
|
|
955
|
+
return normalizedArtifactPath;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
async function writeTextArtifact(rootDir, relativePath, text) {
|
|
959
|
+
const { normalizedArtifactPath, destination } = assertSafeDestination(rootDir, relativePath);
|
|
960
|
+
if (typeof text !== 'string' || text.trim() === '') {
|
|
961
|
+
throw new TypeError(`Invalid text artifact at ${normalizedArtifactPath}: expected non-empty text.`);
|
|
962
|
+
}
|
|
963
|
+
await mkdir(path.dirname(destination), { recursive: true });
|
|
964
|
+
await writeFile(destination, text.endsWith('\n') ? text : `${text}\n`, 'utf8');
|
|
965
|
+
return normalizedArtifactPath;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
export function isPromotableCollectorStatus(status) {
|
|
969
|
+
return PROMOTABLE_COLLECTOR_STATUSES.has(status);
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
export async function persistCollectorRun(result, { rootDir = process.cwd() } = {}) {
|
|
973
|
+
const validation = validateCollectorRunForPersistence(result);
|
|
974
|
+
const written = [];
|
|
975
|
+
|
|
976
|
+
for (const [relativePath, artifact] of validation.files.entries()) {
|
|
977
|
+
if (relativePath === VENTURE_SIGNAL_LATEST_PATH) continue;
|
|
978
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
let latestPromoted = false;
|
|
982
|
+
if (validation.promotable && validation.latest) {
|
|
983
|
+
written.push(await writeJsonArtifact(rootDir, VENTURE_SIGNAL_LATEST_PATH, validation.latest));
|
|
984
|
+
latestPromoted = true;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
return {
|
|
988
|
+
runId: validation.runId,
|
|
989
|
+
role: COLLECTOR_ROLE,
|
|
990
|
+
stage: COLLECTOR_STAGE,
|
|
991
|
+
status: validation.summary.status,
|
|
992
|
+
summaryPath: collectorRunSummaryPath(validation.runId),
|
|
993
|
+
diagnosticsPath: collectorDiagnosticsPath(validation.runId),
|
|
994
|
+
latestPath: latestPromoted ? VENTURE_SIGNAL_LATEST_PATH : null,
|
|
995
|
+
latestPromoted,
|
|
996
|
+
previousLatestPreserved: !latestPromoted,
|
|
997
|
+
written,
|
|
998
|
+
summary: jsonClone(validation.summary),
|
|
999
|
+
diagnostics: jsonClone(validation.diagnosticsArtifact.diagnostics ?? []),
|
|
1000
|
+
};
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
export async function persistNormalizerRun(result, { rootDir = process.cwd(), collectorResult = null } = {}) {
|
|
1004
|
+
const collectorValidation = collectorResult ? validateCollectorRunForPersistence(collectorResult) : null;
|
|
1005
|
+
const validation = validateNormalizerRunForPersistence(result, collectorValidation);
|
|
1006
|
+
const written = [];
|
|
1007
|
+
|
|
1008
|
+
if (collectorValidation) {
|
|
1009
|
+
for (const [relativePath, artifact] of collectorValidation.files.entries()) {
|
|
1010
|
+
if (relativePath === VENTURE_SIGNAL_LATEST_PATH) continue;
|
|
1011
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
for (const [relativePath, artifact] of validation.files.entries()) {
|
|
1016
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
for (const [relativePath, artifact] of validation.aggregateArtifacts.entries()) {
|
|
1020
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
let latestPromoted = false;
|
|
1024
|
+
if (validation.promotable && collectorValidation?.promotable) {
|
|
1025
|
+
const latest = createNormalizerLatestArtifact(collectorValidation, validation);
|
|
1026
|
+
written.push(await writeJsonArtifact(rootDir, VENTURE_SIGNAL_LATEST_PATH, latest));
|
|
1027
|
+
latestPromoted = true;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
return {
|
|
1031
|
+
runId: validation.runId,
|
|
1032
|
+
role: NORMALIZER_ROLE,
|
|
1033
|
+
stage: NORMALIZER_STAGE,
|
|
1034
|
+
status: validation.summary.status,
|
|
1035
|
+
stageStatuses: {
|
|
1036
|
+
collector: collectorValidation?.summary.status ?? null,
|
|
1037
|
+
normalizer: validation.summary.status,
|
|
1038
|
+
},
|
|
1039
|
+
summaryPath: normalizerRunSummaryPath(validation.runId),
|
|
1040
|
+
diagnosticsPath: normalizerDiagnosticsPath(validation.runId),
|
|
1041
|
+
aggregatePaths: {
|
|
1042
|
+
companies: normalizerCompaniesPath(validation.runId),
|
|
1043
|
+
investors: normalizerInvestorsPath(validation.runId),
|
|
1044
|
+
trends: normalizerTrendsPath(validation.runId),
|
|
1045
|
+
signals: normalizerSignalsPath(validation.runId),
|
|
1046
|
+
diagnostics: normalizerDiagnosticsIndexPath(validation.runId),
|
|
1047
|
+
},
|
|
1048
|
+
latestPath: latestPromoted ? VENTURE_SIGNAL_LATEST_PATH : null,
|
|
1049
|
+
latestPromoted,
|
|
1050
|
+
previousLatestPreserved: !latestPromoted,
|
|
1051
|
+
written,
|
|
1052
|
+
summary: jsonClone(validation.summary),
|
|
1053
|
+
diagnostics: jsonClone(validation.diagnosticsArtifact.diagnostics ?? []),
|
|
1054
|
+
};
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
export async function persistAnalysisRun(result, { rootDir = process.cwd() } = {}) {
|
|
1058
|
+
if (!isPlainObject(result)) {
|
|
1059
|
+
throw new TypeError('Analysis persistence requires Collector, Normalizer, Analyst, and Skeptic results.');
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
const collectorValidation = validateCollectorRunForPersistence(result.collectorResult);
|
|
1063
|
+
const normalizerValidation = validateNormalizerRunForPersistence(result.normalizerResult, collectorValidation);
|
|
1064
|
+
const analystValidation = validateAnalystRunForPersistence(result.analystResult, normalizerValidation);
|
|
1065
|
+
const skepticValidation = validateSkepticRunForPersistence(result.skepticResult, analystValidation);
|
|
1066
|
+
const stageStatuses = {
|
|
1067
|
+
collector: collectorValidation.summary.status,
|
|
1068
|
+
normalizer: normalizerValidation.summary.status,
|
|
1069
|
+
analyst: analystValidation.summary.status,
|
|
1070
|
+
skeptic: skepticValidation.summary.stageStatuses.skeptic,
|
|
1071
|
+
};
|
|
1072
|
+
const analystArtifacts = createPersistedAnalystArtifacts(analystValidation, stageStatuses);
|
|
1073
|
+
const skepticArtifacts = createPersistedSkepticArtifacts(skepticValidation, stageStatuses);
|
|
1074
|
+
const status = combinedStatus(Object.values(stageStatuses));
|
|
1075
|
+
const written = [];
|
|
1076
|
+
|
|
1077
|
+
for (const [relativePath, artifact] of collectorValidation.files.entries()) {
|
|
1078
|
+
if (relativePath === VENTURE_SIGNAL_LATEST_PATH) continue;
|
|
1079
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
for (const [relativePath, artifact] of normalizerValidation.files.entries()) {
|
|
1083
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
for (const [relativePath, artifact] of normalizerValidation.aggregateArtifacts.entries()) {
|
|
1087
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
for (const [relativePath, artifact] of analystArtifacts.files.entries()) {
|
|
1091
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
for (const [relativePath, artifact] of skepticArtifacts.files.entries()) {
|
|
1095
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
let latestPromoted = false;
|
|
1099
|
+
if (
|
|
1100
|
+
collectorValidation.promotable
|
|
1101
|
+
&& normalizerValidation.promotable
|
|
1102
|
+
&& analystValidation.promotable
|
|
1103
|
+
&& skepticValidation.promotable
|
|
1104
|
+
&& status !== 'error'
|
|
1105
|
+
) {
|
|
1106
|
+
const latest = createAnalysisLatestArtifact({
|
|
1107
|
+
collectorValidation,
|
|
1108
|
+
normalizerValidation,
|
|
1109
|
+
analystValidation,
|
|
1110
|
+
skepticValidation,
|
|
1111
|
+
analystArtifacts,
|
|
1112
|
+
skepticArtifacts,
|
|
1113
|
+
stageStatuses,
|
|
1114
|
+
});
|
|
1115
|
+
written.push(await writeJsonArtifact(rootDir, VENTURE_SIGNAL_LATEST_PATH, latest));
|
|
1116
|
+
latestPromoted = true;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
return {
|
|
1120
|
+
runId: skepticValidation.runId,
|
|
1121
|
+
role: SKEPTIC_ROLE,
|
|
1122
|
+
stage: SKEPTIC_STAGE,
|
|
1123
|
+
status,
|
|
1124
|
+
stageStatuses,
|
|
1125
|
+
summaryPath: analysisSkepticReviewPath(skepticValidation.runId),
|
|
1126
|
+
diagnosticsPath: analysisSkepticDiagnosticsPath(skepticValidation.runId),
|
|
1127
|
+
analystPaths: {
|
|
1128
|
+
summary: analystRunSummaryPath(analystValidation.runId),
|
|
1129
|
+
diagnostics: analysisAnalystDiagnosticsPath(analystValidation.runId),
|
|
1130
|
+
trendScores: analystTrendScoresPath(analystValidation.runId),
|
|
1131
|
+
trendScoreArtifacts: jsonClone(analystArtifacts.summary.artifacts.trendScoreArtifacts ?? []),
|
|
1132
|
+
},
|
|
1133
|
+
skepticPaths: {
|
|
1134
|
+
review: analysisSkepticReviewPath(skepticValidation.runId),
|
|
1135
|
+
challengedClaims: analysisSkepticChallengedClaimsPath(skepticValidation.runId),
|
|
1136
|
+
diagnostics: analysisSkepticDiagnosticsPath(skepticValidation.runId),
|
|
1137
|
+
challengeArtifacts: jsonClone(skepticValidation.challenges.map((challenge) => challenge.artifactPath)),
|
|
1138
|
+
},
|
|
1139
|
+
latestPath: latestPromoted ? VENTURE_SIGNAL_LATEST_PATH : null,
|
|
1140
|
+
latestPromoted,
|
|
1141
|
+
previousLatestPreserved: !latestPromoted,
|
|
1142
|
+
written,
|
|
1143
|
+
summary: jsonClone(skepticArtifacts.summary),
|
|
1144
|
+
analystSummary: jsonClone(analystArtifacts.summary),
|
|
1145
|
+
analystDiagnostics: jsonClone(analystArtifacts.diagnosticsArtifact.diagnostics ?? []),
|
|
1146
|
+
skepticDiagnostics: jsonClone(skepticArtifacts.diagnosticsArtifact.diagnostics ?? []),
|
|
1147
|
+
challengedClaims: jsonClone(skepticValidation.challenges),
|
|
1148
|
+
confidenceAdjustments: jsonClone(skepticValidation.confidenceAdjustments),
|
|
1149
|
+
};
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
function assertPmWriterIdentity(artifact, runId, label, { requireRunId = true } = {}) {
|
|
1154
|
+
if (!isPlainObject(artifact)) {
|
|
1155
|
+
throw new TypeError(`Invalid ${label}: expected an object.`);
|
|
1156
|
+
}
|
|
1157
|
+
if (requireRunId && artifact.runId !== runId) {
|
|
1158
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId}.`);
|
|
1159
|
+
}
|
|
1160
|
+
if (!requireRunId && Object.hasOwn(artifact, 'runId') && artifact.runId !== runId) {
|
|
1161
|
+
throw new TypeError(`Invalid ${label}: runId must be ${runId} when present.`);
|
|
1162
|
+
}
|
|
1163
|
+
if (artifact.role !== PM_WRITER_ROLE || artifact.stage !== PM_WRITER_STAGE) {
|
|
1164
|
+
throw new TypeError(`Invalid ${label}: role and stage must be PM Writer.`);
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
function assertPmWriterPathBelongsToRun(runId, artifactPath, label) {
|
|
1169
|
+
const normalizedPath = normalizeVentureArtifactPath(artifactPath);
|
|
1170
|
+
const runDirectory = pmWriterRunDirectoryPath(runId);
|
|
1171
|
+
if (!normalizedPath.startsWith(runDirectory)) {
|
|
1172
|
+
throw new TypeError(`Invalid ${label} artifact path for run ${runId}: ${JSON.stringify(artifactPath)}.`);
|
|
1173
|
+
}
|
|
1174
|
+
return normalizedPath;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
function assertPmWriterArtifactMapEntry(runId, relativePath, artifact) {
|
|
1178
|
+
const normalizedPath = assertPmWriterPathBelongsToRun(runId, relativePath, 'PM Writer');
|
|
1179
|
+
|
|
1180
|
+
if (!isPlainObject(artifact)) {
|
|
1181
|
+
throw new TypeError(`Invalid PM Writer artifact at ${normalizedPath}: expected a JSON object.`);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
assertPmWriterIdentity(artifact, runId, `PM Writer artifact at ${normalizedPath}`, { requireRunId: false });
|
|
1185
|
+
|
|
1186
|
+
if (typeof artifact.artifactPath === 'string' && artifact.artifactPath !== normalizedPath) {
|
|
1187
|
+
throw new TypeError(`Invalid PM Writer artifact at ${normalizedPath}: artifactPath does not match file path.`);
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
return normalizedPath;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
function createPmWriterTracePathSet(analysisValidation) {
|
|
1194
|
+
if (!analysisValidation) return null;
|
|
1195
|
+
const tracePaths = new Set();
|
|
1196
|
+
for (const map of [
|
|
1197
|
+
analysisValidation.collectorValidation.files,
|
|
1198
|
+
analysisValidation.normalizerValidation.files,
|
|
1199
|
+
analysisValidation.normalizerValidation.aggregateArtifacts,
|
|
1200
|
+
analysisValidation.analystValidation.files,
|
|
1201
|
+
analysisValidation.skepticValidation.files,
|
|
1202
|
+
analysisValidation.analystArtifacts.files,
|
|
1203
|
+
analysisValidation.skepticArtifacts.files,
|
|
1204
|
+
]) {
|
|
1205
|
+
for (const relativePath of map.keys()) tracePaths.add(relativePath);
|
|
1206
|
+
}
|
|
1207
|
+
return tracePaths;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
function assertPmWriterTraceLinks({ dailyRadar, sectorMemos, tracePaths }) {
|
|
1211
|
+
if (!tracePaths) return;
|
|
1212
|
+
|
|
1213
|
+
const recommendationGroups = [
|
|
1214
|
+
dailyRadar.recommendations ?? [],
|
|
1215
|
+
...sectorMemos.map((memo) => memo.recommendations ?? []),
|
|
1216
|
+
];
|
|
1217
|
+
for (const recommendations of recommendationGroups) {
|
|
1218
|
+
for (const recommendation of recommendations) {
|
|
1219
|
+
for (const evidenceRef of recommendation.evidenceRefs ?? []) {
|
|
1220
|
+
if (typeof evidenceRef?.signalPath !== 'string' || !tracePaths.has(evidenceRef.signalPath)) {
|
|
1221
|
+
throw new TypeError(`Invalid PM Writer result: broken PM Writer evidence trace link ${JSON.stringify(evidenceRef?.signalPath)}.`);
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
for (const skepticRef of recommendation.skepticRefs ?? []) {
|
|
1225
|
+
if (typeof skepticRef?.challengePath !== 'string' || !tracePaths.has(skepticRef.challengePath)) {
|
|
1226
|
+
throw new TypeError(`Invalid PM Writer result: broken PM Writer Skeptic trace link ${JSON.stringify(skepticRef?.challengePath)}.`);
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
for (const alert of dailyRadar.alertCandidates ?? []) {
|
|
1233
|
+
for (const evidenceRef of alert.evidenceRefs ?? []) {
|
|
1234
|
+
if (typeof evidenceRef?.signalPath !== 'string' || !tracePaths.has(evidenceRef.signalPath)) {
|
|
1235
|
+
throw new TypeError(`Invalid PM Writer result: broken PM Writer evidence trace link ${JSON.stringify(evidenceRef?.signalPath)}.`);
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
for (const skepticRef of alert.skepticRefs ?? []) {
|
|
1239
|
+
if (typeof skepticRef?.challengePath !== 'string' || !tracePaths.has(skepticRef.challengePath)) {
|
|
1240
|
+
throw new TypeError(`Invalid PM Writer result: broken PM Writer Skeptic trace link ${JSON.stringify(skepticRef?.challengePath)}.`);
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
function assertPmWriterMarkdownPairs(result, validation) {
|
|
1247
|
+
if (!isPlainObject(result.markdown)) {
|
|
1248
|
+
throw new TypeError('Invalid PM Writer result: Markdown render outputs are required.');
|
|
1249
|
+
}
|
|
1250
|
+
const dailyRadarMarkdown = result.markdown.dailyRadar;
|
|
1251
|
+
if (dailyRadarMarkdown !== renderDailyRadarMarkdown(validation.dailyRadar)) {
|
|
1252
|
+
throw new TypeError('Invalid PM Writer result: Daily radar Markdown must match the validated JSON artifact.');
|
|
1253
|
+
}
|
|
1254
|
+
if (!(result.markdown.sectorMemos instanceof Map)) {
|
|
1255
|
+
throw new TypeError('Invalid PM Writer result: sector memo Markdown outputs must be a Map.');
|
|
1256
|
+
}
|
|
1257
|
+
for (const memo of validation.sectorMemos) {
|
|
1258
|
+
const memoMarkdown = result.markdown.sectorMemos.get(memo.marketTrendId);
|
|
1259
|
+
if (memoMarkdown !== renderSectorMemoMarkdown(memo)) {
|
|
1260
|
+
throw new TypeError(`Invalid PM Writer result: Sector memo Markdown must match the validated JSON artifact for ${memo.marketTrendId}.`);
|
|
1261
|
+
}
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
function assertPmWriterStageStatuses(summary, dailyRadar, sectorMemos, expectedStageStatuses) {
|
|
1266
|
+
const traces = [dailyRadar.roleStageTrace, ...sectorMemos.map((memo) => memo.roleStageTrace)];
|
|
1267
|
+
for (const trace of traces) {
|
|
1268
|
+
if (!isPlainObject(trace?.stageStatuses)) {
|
|
1269
|
+
throw new TypeError('Invalid PM Writer result: role-stage trace stage statuses are required.');
|
|
1270
|
+
}
|
|
1271
|
+
if (trace.stageStatuses.pmWriter !== summary.status) {
|
|
1272
|
+
throw new TypeError('Invalid PM Writer result: PM Writer trace status must match the run summary status.');
|
|
1273
|
+
}
|
|
1274
|
+
if (expectedStageStatuses) {
|
|
1275
|
+
for (const [stage, status] of Object.entries(expectedStageStatuses)) {
|
|
1276
|
+
if (trace.stageStatuses[stage] !== status) {
|
|
1277
|
+
throw new TypeError(`Invalid PM Writer result: ${stage} stage status must match the validated prior stage.`);
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
function validatePmWriterRunForPersistence(result, analysisValidation = null) {
|
|
1285
|
+
if (!isPlainObject(result) || !(result.files instanceof Map)) {
|
|
1286
|
+
throw new TypeError('PM Writer result with a files Map is required.');
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
const runId = normalizeVentureRunId(result.runId);
|
|
1290
|
+
if (analysisValidation) assertAnalysisRunIdMatchesPrior(runId, analysisValidation.skepticValidation.runId, 'PM Writer result');
|
|
1291
|
+
|
|
1292
|
+
const summary = result.summary;
|
|
1293
|
+
const diagnosticsArtifact = result.diagnosticsArtifact;
|
|
1294
|
+
const dailyRadar = result.dailyRadar;
|
|
1295
|
+
const recommendationsArtifact = result.recommendationsArtifact;
|
|
1296
|
+
const alertCandidatesArtifact = result.alertCandidatesArtifact;
|
|
1297
|
+
const mvpExperimentsArtifact = result.mvpExperimentsArtifact;
|
|
1298
|
+
const sectorMemos = Array.isArray(result.sectorMemos) ? result.sectorMemos : [];
|
|
1299
|
+
|
|
1300
|
+
assertPmWriterIdentity(summary, runId, 'PM Writer run summary');
|
|
1301
|
+
assertPmWriterIdentity(diagnosticsArtifact, runId, 'PM Writer diagnostics artifact');
|
|
1302
|
+
assertPmWriterIdentity(dailyRadar, runId, 'PM Writer daily radar');
|
|
1303
|
+
assertPmWriterIdentity(recommendationsArtifact, runId, 'PM Writer recommendations artifact');
|
|
1304
|
+
assertPmWriterIdentity(alertCandidatesArtifact, runId, 'PM Writer alert candidates artifact');
|
|
1305
|
+
assertPmWriterIdentity(mvpExperimentsArtifact, runId, 'PM Writer MVP experiments artifact');
|
|
1306
|
+
for (const memo of sectorMemos) assertPmWriterIdentity(memo, runId, `PM Writer sector memo ${memo?.marketTrendId ?? ''}`);
|
|
1307
|
+
|
|
1308
|
+
if (!PM_WRITER_STATUS_VALUES.includes(summary.status)) {
|
|
1309
|
+
throw new TypeError(`Invalid PM Writer run status: ${JSON.stringify(summary.status)}.`);
|
|
1310
|
+
}
|
|
1311
|
+
if (result.status !== summary.status) {
|
|
1312
|
+
throw new TypeError('Invalid PM Writer result: top-level status must match summary status.');
|
|
1313
|
+
}
|
|
1314
|
+
if (summary.status === 'error') {
|
|
1315
|
+
throw new TypeError('Invalid PM Writer result: error runs are not promotable.');
|
|
1316
|
+
}
|
|
1317
|
+
if (summary.artifacts?.summary !== pmWriterRunSummaryPath(runId)) {
|
|
1318
|
+
throw new TypeError('Invalid PM Writer run summary: summary artifact path is not exact.');
|
|
1319
|
+
}
|
|
1320
|
+
if (summary.artifacts?.diagnostics !== pmWriterDiagnosticsPath(runId)) {
|
|
1321
|
+
throw new TypeError('Invalid PM Writer run summary: diagnostics artifact path is not exact.');
|
|
1322
|
+
}
|
|
1323
|
+
if (summary.artifacts?.dailyRadar !== pmWriterDailyRadarPath(runId)) {
|
|
1324
|
+
throw new TypeError('Invalid PM Writer run summary: daily radar artifact path is not exact.');
|
|
1325
|
+
}
|
|
1326
|
+
if (summary.artifacts?.recommendations !== pmWriterRecommendationsPath(runId)) {
|
|
1327
|
+
throw new TypeError('Invalid PM Writer run summary: recommendations artifact path is not exact.');
|
|
1328
|
+
}
|
|
1329
|
+
if (summary.artifacts?.alertCandidates !== pmWriterAlertCandidatesPath(runId)) {
|
|
1330
|
+
throw new TypeError('Invalid PM Writer run summary: alert candidates artifact path is not exact.');
|
|
1331
|
+
}
|
|
1332
|
+
if (summary.artifacts?.mvpExperiments !== pmWriterMvpExperimentsPath(runId)) {
|
|
1333
|
+
throw new TypeError('Invalid PM Writer run summary: MVP experiments artifact path is not exact.');
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
assertExactArtifactPath(diagnosticsArtifact, pmWriterDiagnosticsPath(runId), 'PM Writer diagnostics artifact');
|
|
1337
|
+
assertExactArtifactPath(dailyRadar, pmWriterDailyRadarPath(runId), 'PM Writer daily radar');
|
|
1338
|
+
assertExactArtifactPath(recommendationsArtifact, pmWriterRecommendationsPath(runId), 'PM Writer recommendations artifact');
|
|
1339
|
+
assertExactArtifactPath(alertCandidatesArtifact, pmWriterAlertCandidatesPath(runId), 'PM Writer alert candidates artifact');
|
|
1340
|
+
assertExactArtifactPath(mvpExperimentsArtifact, pmWriterMvpExperimentsPath(runId), 'PM Writer MVP experiments artifact');
|
|
1341
|
+
for (const memo of sectorMemos) {
|
|
1342
|
+
assertExactArtifactPath(memo, pmWriterSectorMemoPath(runId, memo.marketTrendId), `PM Writer sector memo ${memo.marketTrendId}`);
|
|
1343
|
+
}
|
|
1344
|
+
assertNoSecretLookingDiagnostics(diagnosticsArtifact, 'PM Writer diagnostics artifact');
|
|
1345
|
+
assertNoSecretLookingDiagnostics(summary, 'PM Writer run summary');
|
|
1346
|
+
assertSchemaValid(pmWriterRunSummarySchema, summary, 'PM Writer run summary');
|
|
1347
|
+
assertSchemaValid(pmWriterDiagnosticsArtifactSchema, diagnosticsArtifact, 'PM Writer diagnostics artifact');
|
|
1348
|
+
assertSchemaValid(dailyRadarSchema, dailyRadar, 'PM Writer daily radar');
|
|
1349
|
+
for (const memo of sectorMemos) assertSchemaValid(sectorMemoSchema, memo, `PM Writer sector memo ${memo.marketTrendId}`);
|
|
1350
|
+
|
|
1351
|
+
for (const expectedPath of [
|
|
1352
|
+
pmWriterRunSummaryPath(runId),
|
|
1353
|
+
pmWriterDiagnosticsPath(runId),
|
|
1354
|
+
pmWriterDailyRadarPath(runId),
|
|
1355
|
+
pmWriterRecommendationsPath(runId),
|
|
1356
|
+
pmWriterAlertCandidatesPath(runId),
|
|
1357
|
+
pmWriterMvpExperimentsPath(runId),
|
|
1358
|
+
...sectorMemos.map((memo) => pmWriterSectorMemoPath(runId, memo.marketTrendId)),
|
|
1359
|
+
]) {
|
|
1360
|
+
if (!result.files.has(expectedPath)) {
|
|
1361
|
+
throw new TypeError(`Invalid PM Writer result: ${expectedPath} is missing from artifact map.`);
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
const markdownPaths = [
|
|
1366
|
+
pmWriterDailyRadarMarkdownPath(runId),
|
|
1367
|
+
...sectorMemos.map((memo) => pmWriterSectorMemoMarkdownPath(runId, memo.marketTrendId)),
|
|
1368
|
+
];
|
|
1369
|
+
const summaryForPersistence = {
|
|
1370
|
+
...jsonClone(summary),
|
|
1371
|
+
artifacts: {
|
|
1372
|
+
...jsonClone(summary.artifacts),
|
|
1373
|
+
written: uniqueSortedStrings([...(summary.artifacts?.written ?? []), ...markdownPaths]),
|
|
1374
|
+
},
|
|
1375
|
+
};
|
|
1376
|
+
|
|
1377
|
+
const normalizedFiles = new Map();
|
|
1378
|
+
for (const [relativePath, artifact] of result.files.entries()) {
|
|
1379
|
+
const normalizedPath = assertPmWriterArtifactMapEntry(runId, relativePath, artifact);
|
|
1380
|
+
normalizedFiles.set(normalizedPath, normalizedPath === pmWriterRunSummaryPath(runId) ? summaryForPersistence : artifact);
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
const expectedStageStatuses = analysisValidation ? {
|
|
1384
|
+
collector: analysisValidation.collectorValidation.summary.status,
|
|
1385
|
+
normalizer: analysisValidation.normalizerValidation.summary.status,
|
|
1386
|
+
analyst: analysisValidation.analystValidation.summary.status,
|
|
1387
|
+
skeptic: analysisValidation.skepticValidation.summary.stageStatuses.skeptic,
|
|
1388
|
+
pmWriter: summary.status,
|
|
1389
|
+
} : null;
|
|
1390
|
+
assertPmWriterStageStatuses(summary, dailyRadar, sectorMemos, expectedStageStatuses);
|
|
1391
|
+
const validation = {
|
|
1392
|
+
runId,
|
|
1393
|
+
summary: summaryForPersistence,
|
|
1394
|
+
diagnosticsArtifact,
|
|
1395
|
+
dailyRadar,
|
|
1396
|
+
recommendationsArtifact,
|
|
1397
|
+
alertCandidatesArtifact,
|
|
1398
|
+
mvpExperimentsArtifact,
|
|
1399
|
+
sectorMemos,
|
|
1400
|
+
files: normalizedFiles,
|
|
1401
|
+
markdown: {
|
|
1402
|
+
dailyRadar: result.markdown?.dailyRadar,
|
|
1403
|
+
sectorMemos: result.markdown?.sectorMemos,
|
|
1404
|
+
},
|
|
1405
|
+
status: summary.status,
|
|
1406
|
+
stageStatuses: expectedStageStatuses ?? dailyRadar.roleStageTrace.stageStatuses,
|
|
1407
|
+
promotable: summary.status !== 'error',
|
|
1408
|
+
};
|
|
1409
|
+
assertPmWriterMarkdownPairs(result, validation);
|
|
1410
|
+
assertPmWriterTraceLinks({ dailyRadar, sectorMemos, tracePaths: createPmWriterTracePathSet(analysisValidation) });
|
|
1411
|
+
|
|
1412
|
+
return validation;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
function createPmWriterLatestArtifact({ collectorValidation, normalizerValidation, writerValidation, writerPaths }) {
|
|
1416
|
+
const collectorSummary = collectorValidation.summary;
|
|
1417
|
+
const collectorLatest = collectorValidation.latest;
|
|
1418
|
+
return {
|
|
1419
|
+
schemaVersion: writerValidation.summary.schemaVersion,
|
|
1420
|
+
latestPath: VENTURE_SIGNAL_LATEST_PATH,
|
|
1421
|
+
runId: writerValidation.runId,
|
|
1422
|
+
role: PM_WRITER_ROLE,
|
|
1423
|
+
stage: PM_WRITER_STAGE,
|
|
1424
|
+
status: combinedStatus(Object.values(writerValidation.stageStatuses)),
|
|
1425
|
+
updatedAt: writerValidation.summary.completedAt,
|
|
1426
|
+
summaryPath: pmWriterRunSummaryPath(writerValidation.runId),
|
|
1427
|
+
diagnosticsPath: pmWriterDiagnosticsPath(writerValidation.runId),
|
|
1428
|
+
dailyRadarPath: pmWriterDailyRadarPath(writerValidation.runId),
|
|
1429
|
+
collectorSummaryPath: collectorRunSummaryPath(collectorValidation.runId),
|
|
1430
|
+
collectorDiagnosticsPath: collectorDiagnosticsPath(collectorValidation.runId),
|
|
1431
|
+
normalizerSummaryPath: normalizerRunSummaryPath(normalizerValidation.runId),
|
|
1432
|
+
normalizerDiagnosticsPath: normalizerDiagnosticsPath(normalizerValidation.runId),
|
|
1433
|
+
writerPaths: jsonClone(writerPaths),
|
|
1434
|
+
sourceCounts: jsonClone(collectorLatest?.sourceCounts ?? {
|
|
1435
|
+
collected: collectorSummary.sourceCounts?.collected ?? 0,
|
|
1436
|
+
failed: collectorSummary.sourceCounts?.failed ?? 0,
|
|
1437
|
+
skippedOptional: collectorSummary.sourceCounts?.skippedOptional ?? 0,
|
|
1438
|
+
rejectedPaid: collectorSummary.sourceCounts?.rejectedPaid ?? 0,
|
|
1439
|
+
}),
|
|
1440
|
+
freshness: jsonClone(collectorLatest?.freshness ?? {
|
|
1441
|
+
status: 'unknown',
|
|
1442
|
+
observedAt: collectorSummary.completedAt,
|
|
1443
|
+
sourcePublishedAt: null,
|
|
1444
|
+
reason: 'PM Writer latest promotion inherited Collector freshness metadata from the validated run summary.',
|
|
1445
|
+
}),
|
|
1446
|
+
stageStatuses: jsonClone(writerValidation.stageStatuses),
|
|
1447
|
+
writerCounts: jsonClone(writerValidation.summary.counts),
|
|
1448
|
+
writerDiagnostics: {
|
|
1449
|
+
count: writerValidation.diagnosticsArtifact.diagnostics.length,
|
|
1450
|
+
warningCount: writerValidation.diagnosticsArtifact.diagnostics.filter((entry) => entry.status === 'warn' || entry.severity === 'warning').length,
|
|
1451
|
+
},
|
|
1452
|
+
promotion: {
|
|
1453
|
+
status: 'promoted',
|
|
1454
|
+
reason: 'Validated Collector, Normalizer, Analyst, Skeptic, and PM Writer artifacts were written before writer latest promotion.',
|
|
1455
|
+
},
|
|
1456
|
+
};
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
function createPmWriterInput({ runId, now, collectorResult, normalizerResult, analystResult, skepticResult }) {
|
|
1460
|
+
return {
|
|
1461
|
+
runId,
|
|
1462
|
+
now,
|
|
1463
|
+
collectorStatus: collectorResult.summary.status,
|
|
1464
|
+
normalizerStatus: normalizerResult.summary.status,
|
|
1465
|
+
analystStatus: analystResult.summary.status,
|
|
1466
|
+
skepticStatus: skepticResult.status,
|
|
1467
|
+
trendScores: analystResult.trendScores,
|
|
1468
|
+
skepticChallenges: skepticResult.skepticChallenges,
|
|
1469
|
+
summary: {
|
|
1470
|
+
...jsonClone(skepticResult.summary),
|
|
1471
|
+
artifacts: {
|
|
1472
|
+
...jsonClone(skepticResult.summary.artifacts),
|
|
1473
|
+
analystDiagnostics: analysisAnalystDiagnosticsPath(runId),
|
|
1474
|
+
skepticSummary: analysisSkepticReviewPath(runId),
|
|
1475
|
+
skepticDiagnostics: analysisSkepticDiagnosticsPath(runId),
|
|
1476
|
+
skepticChallenges: analysisSkepticChallengedClaimsPath(runId),
|
|
1477
|
+
},
|
|
1478
|
+
},
|
|
1479
|
+
};
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
export async function persistPmWriterRun(result, { rootDir = process.cwd() } = {}) {
|
|
1483
|
+
if (!isPlainObject(result)) {
|
|
1484
|
+
throw new TypeError('PM Writer persistence requires Collector, Normalizer, Analyst, Skeptic, and PM Writer results.');
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
const collectorValidation = validateCollectorRunForPersistence(result.collectorResult);
|
|
1488
|
+
const normalizerValidation = validateNormalizerRunForPersistence(result.normalizerResult, collectorValidation);
|
|
1489
|
+
const analystValidation = validateAnalystRunForPersistence(result.analystResult, normalizerValidation);
|
|
1490
|
+
const skepticValidation = validateSkepticRunForPersistence(result.skepticResult, analystValidation);
|
|
1491
|
+
const stageStatusesWithoutWriter = {
|
|
1492
|
+
collector: collectorValidation.summary.status,
|
|
1493
|
+
normalizer: normalizerValidation.summary.status,
|
|
1494
|
+
analyst: analystValidation.summary.status,
|
|
1495
|
+
skeptic: skepticValidation.summary.stageStatuses.skeptic,
|
|
1496
|
+
};
|
|
1497
|
+
const analystArtifacts = createPersistedAnalystArtifacts(analystValidation, stageStatusesWithoutWriter);
|
|
1498
|
+
const skepticArtifacts = createPersistedSkepticArtifacts(skepticValidation, stageStatusesWithoutWriter);
|
|
1499
|
+
const writerValidation = validatePmWriterRunForPersistence(result.pmWriterResult, {
|
|
1500
|
+
collectorValidation,
|
|
1501
|
+
normalizerValidation,
|
|
1502
|
+
analystValidation,
|
|
1503
|
+
skepticValidation,
|
|
1504
|
+
analystArtifacts,
|
|
1505
|
+
skepticArtifacts,
|
|
1506
|
+
});
|
|
1507
|
+
const selectedMemo = writerValidation.sectorMemos[0] ?? null;
|
|
1508
|
+
const writerPaths = {
|
|
1509
|
+
summary: pmWriterRunSummaryPath(writerValidation.runId),
|
|
1510
|
+
diagnostics: pmWriterDiagnosticsPath(writerValidation.runId),
|
|
1511
|
+
dailyRadarJson: pmWriterDailyRadarPath(writerValidation.runId),
|
|
1512
|
+
dailyRadarMarkdown: pmWriterDailyRadarMarkdownPath(writerValidation.runId),
|
|
1513
|
+
sectorMemoJson: selectedMemo ? pmWriterSectorMemoPath(writerValidation.runId, selectedMemo.marketTrendId) : null,
|
|
1514
|
+
sectorMemoMarkdown: selectedMemo ? pmWriterSectorMemoMarkdownPath(writerValidation.runId, selectedMemo.marketTrendId) : null,
|
|
1515
|
+
recommendationsJson: pmWriterRecommendationsPath(writerValidation.runId),
|
|
1516
|
+
alertsJson: pmWriterAlertCandidatesPath(writerValidation.runId),
|
|
1517
|
+
mvpExperimentsJson: pmWriterMvpExperimentsPath(writerValidation.runId),
|
|
1518
|
+
};
|
|
1519
|
+
const written = [];
|
|
1520
|
+
|
|
1521
|
+
for (const [relativePath, artifact] of collectorValidation.files.entries()) {
|
|
1522
|
+
if (relativePath === VENTURE_SIGNAL_LATEST_PATH) continue;
|
|
1523
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
for (const [relativePath, artifact] of normalizerValidation.files.entries()) {
|
|
1527
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
for (const [relativePath, artifact] of normalizerValidation.aggregateArtifacts.entries()) {
|
|
1531
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
for (const [relativePath, artifact] of analystArtifacts.files.entries()) {
|
|
1535
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
for (const [relativePath, artifact] of skepticArtifacts.files.entries()) {
|
|
1539
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
for (const [relativePath, artifact] of writerValidation.files.entries()) {
|
|
1543
|
+
written.push(await writeJsonArtifact(rootDir, relativePath, artifact));
|
|
1544
|
+
}
|
|
1545
|
+
written.push(await writeTextArtifact(rootDir, pmWriterDailyRadarMarkdownPath(writerValidation.runId), writerValidation.markdown.dailyRadar));
|
|
1546
|
+
for (const memo of writerValidation.sectorMemos) {
|
|
1547
|
+
written.push(await writeTextArtifact(
|
|
1548
|
+
rootDir,
|
|
1549
|
+
pmWriterSectorMemoMarkdownPath(writerValidation.runId, memo.marketTrendId),
|
|
1550
|
+
writerValidation.markdown.sectorMemos.get(memo.marketTrendId),
|
|
1551
|
+
));
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
let latestPromoted = false;
|
|
1555
|
+
if (
|
|
1556
|
+
collectorValidation.promotable
|
|
1557
|
+
&& normalizerValidation.promotable
|
|
1558
|
+
&& analystValidation.promotable
|
|
1559
|
+
&& skepticValidation.promotable
|
|
1560
|
+
&& writerValidation.promotable
|
|
1561
|
+
&& combinedStatus(Object.values(writerValidation.stageStatuses)) !== 'error'
|
|
1562
|
+
) {
|
|
1563
|
+
const latest = createPmWriterLatestArtifact({
|
|
1564
|
+
collectorValidation,
|
|
1565
|
+
normalizerValidation,
|
|
1566
|
+
writerValidation,
|
|
1567
|
+
writerPaths,
|
|
1568
|
+
});
|
|
1569
|
+
written.push(await writeJsonArtifact(rootDir, VENTURE_SIGNAL_LATEST_PATH, latest));
|
|
1570
|
+
latestPromoted = true;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
return {
|
|
1574
|
+
runId: writerValidation.runId,
|
|
1575
|
+
role: PM_WRITER_ROLE,
|
|
1576
|
+
stage: PM_WRITER_STAGE,
|
|
1577
|
+
status: writerValidation.status,
|
|
1578
|
+
stageStatuses: writerValidation.stageStatuses,
|
|
1579
|
+
summaryPath: pmWriterRunSummaryPath(writerValidation.runId),
|
|
1580
|
+
diagnosticsPath: pmWriterDiagnosticsPath(writerValidation.runId),
|
|
1581
|
+
writerPaths,
|
|
1582
|
+
selectedMemoMarketTrendId: selectedMemo?.marketTrendId ?? null,
|
|
1583
|
+
latestPath: latestPromoted ? VENTURE_SIGNAL_LATEST_PATH : null,
|
|
1584
|
+
latestPromoted,
|
|
1585
|
+
previousLatestPreserved: !latestPromoted,
|
|
1586
|
+
written,
|
|
1587
|
+
summary: jsonClone(writerValidation.summary),
|
|
1588
|
+
dailyRadar: jsonClone(writerValidation.dailyRadar),
|
|
1589
|
+
sectorMemos: jsonClone(writerValidation.sectorMemos),
|
|
1590
|
+
alertCandidates: jsonClone(writerValidation.alertCandidatesArtifact.alertCandidates ?? []),
|
|
1591
|
+
diagnostics: jsonClone(writerValidation.diagnosticsArtifact.diagnostics ?? []),
|
|
1592
|
+
};
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
export async function runVentureSignalWriter(options = {}) {
|
|
1596
|
+
const runId = normalizeVentureRunId(options.runId ?? `writer-${Date.now()}`);
|
|
1597
|
+
const now = options.now;
|
|
1598
|
+
const collectorResult = runCollectorIntake({ ...options, runId });
|
|
1599
|
+
const normalizerResult = normalizeCollectorBatch(normalizerInputFromCollectorResult(collectorResult, {
|
|
1600
|
+
runId,
|
|
1601
|
+
now,
|
|
1602
|
+
}), { runId, now });
|
|
1603
|
+
const analystResult = analyzeNormalizedTrends({
|
|
1604
|
+
runId,
|
|
1605
|
+
now,
|
|
1606
|
+
marketTrends: normalizerResult.marketTrends,
|
|
1607
|
+
signals: normalizerResult.signals,
|
|
1608
|
+
normalizerSummaryPath: normalizerRunSummaryPath(runId),
|
|
1609
|
+
normalizerDiagnosticsPath: normalizerDiagnosticsPath(runId),
|
|
1610
|
+
}, { runId, now });
|
|
1611
|
+
const skepticResult = reviewScoredTrends(analystResult, { runId, now });
|
|
1612
|
+
const pmWriterResult = writePmWriterOutputs(createPmWriterInput({
|
|
1613
|
+
runId,
|
|
1614
|
+
now,
|
|
1615
|
+
collectorResult,
|
|
1616
|
+
normalizerResult,
|
|
1617
|
+
analystResult,
|
|
1618
|
+
skepticResult,
|
|
1619
|
+
}), { runId, now });
|
|
1620
|
+
return persistPmWriterRun({ collectorResult, normalizerResult, analystResult, skepticResult, pmWriterResult }, {
|
|
1621
|
+
rootDir: options.rootDir ?? process.cwd(),
|
|
1622
|
+
});
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
export const runWriter = runVentureSignalWriter;
|
|
1626
|
+
export const runPmWriterArtifacts = runVentureSignalWriter;
|
|
1627
|
+
|
|
1628
|
+
function normalizerInputFromCollectorResult(collectorResult, { runId, now }) {
|
|
1629
|
+
return {
|
|
1630
|
+
runId,
|
|
1631
|
+
collectorRunId: collectorResult.runId,
|
|
1632
|
+
now,
|
|
1633
|
+
sourceBatch: {
|
|
1634
|
+
collectorRunId: collectorResult.runId,
|
|
1635
|
+
collectorSummaryPath: collectorRunSummaryPath(collectorResult.runId),
|
|
1636
|
+
collectorDiagnosticsPath: collectorDiagnosticsPath(collectorResult.runId),
|
|
1637
|
+
},
|
|
1638
|
+
sourceItemsArtifacts: collectorResult.sourceItemsArtifacts,
|
|
1639
|
+
};
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
export async function runVentureSignalNormalizer(options = {}) {
|
|
1643
|
+
const runId = normalizeVentureRunId(options.runId ?? `normalizer-${Date.now()}`);
|
|
1644
|
+
const collectorResult = runCollectorIntake({ ...options, runId });
|
|
1645
|
+
const normalizerResult = normalizeCollectorBatch(normalizerInputFromCollectorResult(collectorResult, {
|
|
1646
|
+
runId,
|
|
1647
|
+
now: options.now,
|
|
1648
|
+
}), { runId, now: options.now });
|
|
1649
|
+
return persistNormalizerRun(normalizerResult, {
|
|
1650
|
+
rootDir: options.rootDir ?? process.cwd(),
|
|
1651
|
+
collectorResult,
|
|
1652
|
+
});
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
export async function runVentureSignalAnalysis(options = {}) {
|
|
1656
|
+
const runId = normalizeVentureRunId(options.runId ?? `analysis-${Date.now()}`);
|
|
1657
|
+
const now = options.now;
|
|
1658
|
+
const collectorResult = runCollectorIntake({ ...options, runId });
|
|
1659
|
+
const normalizerResult = normalizeCollectorBatch(normalizerInputFromCollectorResult(collectorResult, {
|
|
1660
|
+
runId,
|
|
1661
|
+
now,
|
|
1662
|
+
}), { runId, now });
|
|
1663
|
+
const analystResult = analyzeNormalizedTrends({
|
|
1664
|
+
runId,
|
|
1665
|
+
now,
|
|
1666
|
+
marketTrends: normalizerResult.marketTrends,
|
|
1667
|
+
signals: normalizerResult.signals,
|
|
1668
|
+
normalizerSummaryPath: normalizerRunSummaryPath(runId),
|
|
1669
|
+
normalizerDiagnosticsPath: normalizerDiagnosticsPath(runId),
|
|
1670
|
+
}, { runId, now });
|
|
1671
|
+
const skepticResult = reviewScoredTrends(analystResult, { runId, now });
|
|
1672
|
+
return persistAnalysisRun({ collectorResult, normalizerResult, analystResult, skepticResult }, {
|
|
1673
|
+
rootDir: options.rootDir ?? process.cwd(),
|
|
1674
|
+
});
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
export async function runVentureSignalCollector(options = {}) {
|
|
1678
|
+
const runId = normalizeVentureRunId(options.runId ?? `collector-${Date.now()}`);
|
|
1679
|
+
const result = runCollectorIntake({ ...options, runId });
|
|
1680
|
+
return persistCollectorRun(result, { rootDir: options.rootDir ?? process.cwd() });
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
export const runCollector = runVentureSignalCollector;
|
|
1684
|
+
export const runNormalizer = runVentureSignalNormalizer;
|
|
1685
|
+
export const runAnalysis = runVentureSignalAnalysis;
|