@adaptic/maestro 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/init-agent.md +99 -0
- package/.claude/commands/init-maestro.md +565 -0
- package/.claude/settings.json +114 -0
- package/.env.example +152 -0
- package/README.md +491 -0
- package/agents/board-prep/agent.md +80 -0
- package/agents/browser-operator/agent.md +52 -0
- package/agents/calendar-ops/agent.md +50 -0
- package/agents/capital-raising/agent.md +69 -0
- package/agents/ceo-briefing/agent.md +72 -0
- package/agents/communications/agent.md +69 -0
- package/agents/competitive-intelligence/agent.md +49 -0
- package/agents/corporate-development/agent.md +66 -0
- package/agents/decision-log/agent.md +65 -0
- package/agents/desktop-operator/agent.md +59 -0
- package/agents/engineering-coordination/agent.md +51 -0
- package/agents/founder-voice/agent.md +72 -0
- package/agents/fund-ops/agent.md +52 -0
- package/agents/gmail-operator/agent.md +62 -0
- package/agents/hiring-org-design/agent.md +119 -0
- package/agents/inbound-dispatcher/agent.md +66 -0
- package/agents/legal-structuring/agent.md +65 -0
- package/agents/market-research/agent.md +48 -0
- package/agents/partnerships/agent.md +59 -0
- package/agents/platform-architecture/agent.md +57 -0
- package/agents/pmo-execution/agent.md +60 -0
- package/agents/product-strategy/agent.md +50 -0
- package/agents/regulatory-dfsa/agent.md +96 -0
- package/agents/risk-register/agent.md +62 -0
- package/agents/rollup-target-sourcing/agent.md +59 -0
- package/agents/session-spawner/agent.md +64 -0
- package/agents/slack-operator/agent.md +60 -0
- package/agents/sophie-chief-of-staff/agent.md +134 -0
- package/agents/strategic-planning/agent.md +54 -0
- package/agents/whatsapp-operator/agent.md +60 -0
- package/agents/workflow-automation/agent.md +61 -0
- package/bin/maestro.mjs +388 -0
- package/desktop-control/README.md +56 -0
- package/desktop-control/app-profiles/gmail.yaml +120 -0
- package/desktop-control/app-profiles/slack.yaml +315 -0
- package/desktop-control/app-profiles/whatsapp.yaml +107 -0
- package/docs/architecture/agent-topology.md +2222 -0
- package/docs/architecture/continuous-monitoring.md +221 -0
- package/docs/architecture/mcp-capability-map.md +560 -0
- package/docs/architecture/system-architecture.md +1273 -0
- package/docs/business-synthesis/ADAPTIC-GROUP-FINAL-OWNERSHIP-STRUCTURE.pdf +13667 -10
- package/docs/business-synthesis/adaptic-overview.md +296 -0
- package/docs/business-synthesis/executive-operating-model.md +261 -0
- package/docs/governance/action-approval-model.md +331 -0
- package/docs/governance/communications-policy.md +410 -0
- package/docs/governance/desktop-control-safety.md +499 -0
- package/docs/guides/agent-persona-setup.md +600 -0
- package/docs/operating-charter.md +87 -0
- package/docs/prompts/board-pack-cover-template.md +37 -0
- package/docs/prompts/decision-recommendation-template.md +88 -0
- package/docs/prompts/followup-message-template.md +141 -0
- package/docs/prompts/investor-letter-template.md +52 -0
- package/docs/prompts/morning-brief-template.md +82 -0
- package/docs/prompts/presentation-template.md +58 -0
- package/docs/prompts/weekly-strategic-memo-template.md +104 -0
- package/docs/runbooks/mac-mini-bootstrap.md +404 -0
- package/docs/runbooks/perpetual-operations.md +505 -0
- package/docs/runbooks/recovery-and-failover.md +588 -0
- package/docs/superpowers/plans/2026-04-02-phase0-operational-foundation.md +2550 -0
- package/docs/superpowers/plans/2026-04-03-phase1-executive-core.md +1085 -0
- package/docs/superpowers/plans/2026-04-03-phase2-people-product-commercial.md +739 -0
- package/docs/superpowers/plans/2026-04-05-information-barrier-implementation.md +926 -0
- package/docs/superpowers/plans/2026-04-06-session-context-dedup.md +1994 -0
- package/docs/superpowers/specs/2026-04-02-phase0-operational-foundation-design.md +842 -0
- package/docs/superpowers/specs/2026-04-03-phase1-executive-core-design.md +516 -0
- package/docs/superpowers/specs/2026-04-03-phase2-people-product-commercial-design.md +452 -0
- package/docs/superpowers/specs/2026-04-03-phase3-4-final-towers-design.md +129 -0
- package/docs/superpowers/specs/2026-04-05-information-barrier-design.md +678 -0
- package/docs/superpowers/specs/2026-04-05-reactive-daemon-design.md +237 -0
- package/docs/superpowers/specs/2026-04-06-session-context-dedup-design.md +369 -0
- package/docs/workflows/executive-cadence.md +218 -0
- package/ingest/README.md +87 -0
- package/mcp/README.md +51 -0
- package/package.json +48 -0
- package/plugins/maestro-skills/plugin.json +55 -0
- package/plugins/maestro-skills/skills/board-deck.md +68 -0
- package/plugins/maestro-skills/skills/decision-brief.md +89 -0
- package/plugins/maestro-skills/skills/draft-comms.md +84 -0
- package/plugins/maestro-skills/skills/evening-wrap.md +53 -0
- package/plugins/maestro-skills/skills/hiring-triage.md +74 -0
- package/plugins/maestro-skills/skills/inbox-triage.md +61 -0
- package/plugins/maestro-skills/skills/morning-brief.md +54 -0
- package/plugins/maestro-skills/skills/pipeline-review.md +76 -0
- package/plugins/maestro-skills/skills/regulatory-status.md +81 -0
- package/plugins/maestro-skills/skills/schedule-meeting.md +91 -0
- package/plugins/maestro-skills/skills/slack-followup.md +64 -0
- package/plugins/maestro-skills/skills/weekly-memo.md +70 -0
- package/policies/action-classification.yaml +110 -0
- package/policies/information-barriers.yaml +119 -0
- package/policies/prompt-injection-defence.yaml +138 -0
- package/public/assets/adaptic-icon-dark.png +0 -0
- package/public/assets/adaptic-icon-dark.svg +4 -0
- package/public/assets/adaptic-icon-light.svg +4 -0
- package/public/assets/adaptic-logo-dark.svg +17 -0
- package/public/assets/adaptic-logo-light.svg +17 -0
- package/scaffold/CLAUDE.md +21 -0
- package/scaffold/config/agent.ts +69 -0
- package/scaffold/config/agent.ts.example +218 -0
- package/schedules/README.md +49 -0
- package/schedules/triggers/backlog-executor.md +102 -0
- package/schedules/triggers/daily-evening-wrap.md +142 -0
- package/schedules/triggers/daily-midday-sweep.md +58 -0
- package/schedules/triggers/daily-morning-brief.md +55 -0
- package/schedules/triggers/inbox-processor.md +115 -0
- package/schedules/triggers/meeting-action-capture.md +60 -0
- package/schedules/triggers/meeting-prep.md +69 -0
- package/schedules/triggers/quarterly-self-assessment.md +54 -0
- package/schedules/triggers/weekly-engineering-health.md +37 -0
- package/schedules/triggers/weekly-execution.md +67 -0
- package/schedules/triggers/weekly-hiring.md +53 -0
- package/schedules/triggers/weekly-priorities.md +38 -0
- package/schedules/triggers/weekly-strategic-memo.md +124 -0
- package/scripts/__pycache__/disclosure_assessment.cpython-313.pyc +0 -0
- package/scripts/__pycache__/disclosure_boundaries.cpython-313.pyc +0 -0
- package/scripts/__pycache__/email_quote_thread.cpython-313.pyc +0 -0
- package/scripts/__pycache__/email_thread_dedup.cpython-313.pyc +0 -0
- package/scripts/__pycache__/mehran-inbox-poller.cpython-313.pyc +0 -0
- package/scripts/__pycache__/outbound_dedup.cpython-313.pyc +0 -0
- package/scripts/__pycache__/pre-draft-context.cpython-313.pyc +0 -0
- package/scripts/__pycache__/pre_draft_lookup.cpython-313.pyc +0 -0
- package/scripts/__pycache__/send-email-as-mehran.cpython-313.pyc +0 -0
- package/scripts/__pycache__/send-email-threaded.cpython-313.pyc +0 -0
- package/scripts/__pycache__/send-email-with-attachment.cpython-313.pyc +0 -0
- package/scripts/__pycache__/validate_outbound.cpython-313.pyc +0 -0
- package/scripts/airtable-crm-populate.md +99 -0
- package/scripts/archive-email.sh +41 -0
- package/scripts/comms-monitor.sh +285 -0
- package/scripts/configure-whatsapp-sandbox.sh +201 -0
- package/scripts/continuous-monitor.sh +86 -0
- package/scripts/daemon/classifier.mjs +355 -0
- package/scripts/daemon/context-compiler.mjs +490 -0
- package/scripts/daemon/dispatcher.mjs +385 -0
- package/scripts/daemon/health.mjs +72 -0
- package/scripts/daemon/prompt-builder.mjs +426 -0
- package/scripts/daemon/responder.mjs +547 -0
- package/scripts/daemon/session-lock.mjs +520 -0
- package/scripts/daemon/sophie-daemon.mjs +521 -0
- package/scripts/daemon/test-context-compiler.mjs +238 -0
- package/scripts/daemon/test-integration.mjs +130 -0
- package/scripts/daemon/test-session-lock.mjs +215 -0
- package/scripts/disclosure_assessment.py +873 -0
- package/scripts/disclosure_boundaries.py +562 -0
- package/scripts/email-signature-mehran.html +52 -0
- package/scripts/email-signature.html +44 -0
- package/scripts/email_quote_thread.py +167 -0
- package/scripts/email_thread_dedup.py +361 -0
- package/scripts/emergency-stop.sh +41 -0
- package/scripts/healthcheck.sh +110 -0
- package/scripts/hooks/block-mcp-slack-send.sh +7 -0
- package/scripts/hooks/post-action-log.sh +17 -0
- package/scripts/hooks/pre-send-audit.sh +57 -0
- package/scripts/hooks/session-end-log.sh +27 -0
- package/scripts/huddle/audio-bridge.mjs +664 -0
- package/scripts/huddle/boot-slack-cdp.sh +102 -0
- package/scripts/huddle/huddle-controller.mjs +942 -0
- package/scripts/huddle/huddle-server.mjs +1059 -0
- package/scripts/huddle/launch-slack.sh +232 -0
- package/scripts/huddle/node_modules/.package-lock.json +50 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/CHANGELOG.md +1677 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/LICENSE +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/README.md +674 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.js +226 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.mjs +223 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/bin/cli +53 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/bin/migration-config.json +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.mts +225 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.ts +225 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.js +536 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.mjs +531 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.mts +49 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.ts +49 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.js +76 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.mjs +72 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.mts +47 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.ts +47 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.js +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.mjs +98 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.mts +63 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.ts +63 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.js +123 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.mjs +117 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.mts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.ts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.js +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.mjs +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.mts +31 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.ts +31 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.js +282 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.mjs +277 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.mts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.ts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.js +35 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.mjs +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.mts +73 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.ts +73 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.mts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.ts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.js +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.mjs +12 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.mts +10 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.ts +10 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.js +39 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.mjs +35 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.mts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.ts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.js +113 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.mjs +108 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.mts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.ts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.js +162 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.mjs +157 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.js +41 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.mjs +36 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.mts +22 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.ts +22 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.js +79 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.mjs +74 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.mts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.ts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.js +55 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.mjs +51 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.mts +34 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.ts +34 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.js +14 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.mjs +10 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shim-types.d.mts +28 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shim-types.d.ts +28 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.mts +20 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.ts +20 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.js +92 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.mjs +85 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.mts +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.ts +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.js +38 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.mjs +35 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.mts +45 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.ts +45 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.js +96 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.mjs +93 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/tslib.js +81 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/tslib.mjs +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.mts +67 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.ts +67 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.mts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.ts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.js +146 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.mjs +136 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.js +38 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.mjs +33 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.mts +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.ts +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.js +31 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.mjs +26 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.mts +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.ts +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.js +22 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.mjs +18 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.mts +37 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.ts +37 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.js +86 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.mjs +80 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.mts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.ts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.js +58 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.mjs +53 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.js +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.mts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.ts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.js +19 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.mjs +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.mts +16 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.ts +16 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.js +109 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.mjs +92 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.mts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.ts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.js +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.mjs +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.mts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.ts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.js +553 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.mjs +549 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.mts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.ts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.js +553 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.mjs +549 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/package.json +185 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.mts +61 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.ts +61 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.js +25 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.mjs +20 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.mts +151 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.ts +151 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.js +122 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.mjs +118 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.mts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.ts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.js +13 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.mjs +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.mts +343 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.ts +343 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.js +204 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.mjs +200 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.js +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.mjs +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.mts +1561 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.ts +1561 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.js +86 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.mjs +81 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.mts +74 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.ts +74 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.js +60 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.mjs +56 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.mts +183 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.ts +183 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.js +23 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.mjs +19 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.mts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.ts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.js +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.mjs +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.mts +304 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.ts +304 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.js +153 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.mjs +149 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.js +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.mjs +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.mts +1264 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.ts +1264 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.js +72 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.mjs +67 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.mts +59 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.ts +59 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.js +45 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.mjs +41 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.mts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.ts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.js +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/_vendor/partial-json-parser/README.md +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/_vendor/partial-json-parser/parser.ts +264 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/api-promise.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/client.ts +1070 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/README.md +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/api-promise.ts +101 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/error.ts +133 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/pagination.ts +201 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/resource.ts +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/streaming.ts +331 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/uploads.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/error.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/index.ts +23 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/README.md +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/builtin-types.ts +93 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/constants.ts +12 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/decoders/jsonl.ts +48 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/decoders/line.ts +135 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/detect-platform.ts +196 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/errors.ts +33 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/headers.ts +99 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/parse.ts +84 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/request-options.ts +39 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/shim-types.d.ts +28 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/shims.ts +107 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/stream-utils.ts +32 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/to-file.ts +159 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/types.ts +92 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/uploads.ts +193 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/base64.ts +40 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/bytes.ts +32 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/env.ts +18 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/log.ts +127 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/path.ts +65 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/sleep.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/uuid.ts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/values.ts +102 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils.ts +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/lib/.keep +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/lib/BetaMessageStream.ts +683 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/lib/MessageStream.ts +684 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/pagination.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resource.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/beta.ts +380 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/files.ts +258 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/index.ts +148 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages/batches.ts +502 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages/index.ts +135 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages/messages.ts +2249 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/models.ts +118 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/completions.ts +231 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/index.ts +121 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages/batches.ts +396 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages/index.ts +110 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages/messages.ts +1783 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/models.ts +103 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/shared.ts +72 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/top-level.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources.ts +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/streaming.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/tsconfig.json +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/uploads.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/version.ts +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.js +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.mjs.map +1 -0
- package/scripts/huddle/node_modules/dotenv/CHANGELOG.md +520 -0
- package/scripts/huddle/node_modules/dotenv/LICENSE +23 -0
- package/scripts/huddle/node_modules/dotenv/README-es.md +411 -0
- package/scripts/huddle/node_modules/dotenv/README.md +645 -0
- package/scripts/huddle/node_modules/dotenv/SECURITY.md +1 -0
- package/scripts/huddle/node_modules/dotenv/config.d.ts +1 -0
- package/scripts/huddle/node_modules/dotenv/config.js +9 -0
- package/scripts/huddle/node_modules/dotenv/lib/cli-options.js +17 -0
- package/scripts/huddle/node_modules/dotenv/lib/env-options.js +28 -0
- package/scripts/huddle/node_modules/dotenv/lib/main.d.ts +162 -0
- package/scripts/huddle/node_modules/dotenv/lib/main.js +386 -0
- package/scripts/huddle/node_modules/dotenv/package.json +62 -0
- package/scripts/huddle/node_modules/ws/LICENSE +20 -0
- package/scripts/huddle/node_modules/ws/README.md +548 -0
- package/scripts/huddle/node_modules/ws/browser.js +8 -0
- package/scripts/huddle/node_modules/ws/index.js +22 -0
- package/scripts/huddle/node_modules/ws/lib/buffer-util.js +131 -0
- package/scripts/huddle/node_modules/ws/lib/constants.js +19 -0
- package/scripts/huddle/node_modules/ws/lib/event-target.js +292 -0
- package/scripts/huddle/node_modules/ws/lib/extension.js +203 -0
- package/scripts/huddle/node_modules/ws/lib/limiter.js +55 -0
- package/scripts/huddle/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/scripts/huddle/node_modules/ws/lib/receiver.js +706 -0
- package/scripts/huddle/node_modules/ws/lib/sender.js +602 -0
- package/scripts/huddle/node_modules/ws/lib/stream.js +161 -0
- package/scripts/huddle/node_modules/ws/lib/subprotocol.js +62 -0
- package/scripts/huddle/node_modules/ws/lib/validation.js +152 -0
- package/scripts/huddle/node_modules/ws/lib/websocket-server.js +554 -0
- package/scripts/huddle/node_modules/ws/lib/websocket.js +1393 -0
- package/scripts/huddle/node_modules/ws/package.json +70 -0
- package/scripts/huddle/node_modules/ws/wrapper.mjs +21 -0
- package/scripts/huddle/package-lock.json +62 -0
- package/scripts/huddle/package.json +22 -0
- package/scripts/huddle/setup-audio.sh +239 -0
- package/scripts/huddle/start-call.mjs +318 -0
- package/scripts/huddle/test-pipeline.mjs +263 -0
- package/scripts/llm_email_dedup.py +434 -0
- package/scripts/local-triggers/install-all.sh +43 -0
- package/scripts/local-triggers/plists/ai.adaptic.slack-events-server.plist +45 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-backlog-executor.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-daemon.plist +32 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-inbox-processor.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-meeting-action-capture.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-meeting-prep.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-midday-sweep.plist +26 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-quarterly-self-assessment.plist +62 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-execution.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-hiring.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-priorities.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-strategic-memo.plist +28 -0
- package/scripts/local-triggers/run-trigger.sh +44 -0
- package/scripts/media-generation/README.md +103 -0
- package/scripts/media-generation/gemini-image-client.mjs +173 -0
- package/scripts/media-generation/generate-assets.mjs +289 -0
- package/scripts/media-generation/veo-video-client.mjs +219 -0
- package/scripts/mehran-inbox-poller.py +437 -0
- package/scripts/outbound-dedup-cleanup.sh +43 -0
- package/scripts/outbound-dedup.sh +476 -0
- package/scripts/outbound_dedup.py +115 -0
- package/scripts/parse-voice-transcript.mjs +486 -0
- package/scripts/pdf-generation/README.md +61 -0
- package/scripts/pdf-generation/build-document.mjs +230 -0
- package/scripts/pdf-generation/templates/board-pack.latex +136 -0
- package/scripts/pdf-generation/templates/corporate-letter.latex +126 -0
- package/scripts/pdf-generation/templates/memo.latex +114 -0
- package/scripts/poll-slack-events.sh +33 -0
- package/scripts/poller/calendar-poller.mjs +12 -0
- package/scripts/poller/gmail-poller.mjs +156 -0
- package/scripts/poller/imap-client.mjs +286 -0
- package/scripts/poller/index.mjs +73 -0
- package/scripts/poller/intra-session-check.mjs +267 -0
- package/scripts/poller/mehran-gmail-poller.mjs +98 -0
- package/scripts/poller/slack-poller.mjs +716 -0
- package/scripts/poller/trigger.mjs +47 -0
- package/scripts/poller/utils.mjs +253 -0
- package/scripts/poller-launchd/ai.adaptic.sophie-poller.plist +40 -0
- package/scripts/poller-launchd/ai.adaptic.sophie-whatsapp-handler.plist +39 -0
- package/scripts/poller-launchd/install.sh +38 -0
- package/scripts/post-interaction-indexer.py +1598 -0
- package/scripts/pre-draft-context.py +994 -0
- package/scripts/pre_draft_lookup.py +258 -0
- package/scripts/rag-indexer.py +629 -0
- package/scripts/resume-operations.sh +40 -0
- package/scripts/search-mehran-inbox.py +181 -0
- package/scripts/self-optimization/compute-metrics.py +377 -0
- package/scripts/send-difc-rfp.sh +98 -0
- package/scripts/send-email-as-mehran.py +369 -0
- package/scripts/send-email-threaded.py +336 -0
- package/scripts/send-email-with-attachment.py +360 -0
- package/scripts/send-email.sh +93 -0
- package/scripts/send-sms.sh +151 -0
- package/scripts/send-whatsapp.sh +261 -0
- package/scripts/session-start.sh +106 -0
- package/scripts/setup/configure-macos.sh +508 -0
- package/scripts/setup/init-agent.sh +450 -0
- package/scripts/slack-events-ctl.sh +177 -0
- package/scripts/slack-events-server.mjs +989 -0
- package/scripts/slack-react.mjs +89 -0
- package/scripts/slack-responded.sh +185 -0
- package/scripts/slack-send.sh +190 -0
- package/scripts/slack-typing.mjs +196 -0
- package/scripts/slack-upload-v2.py +95 -0
- package/scripts/sms-handler.mjs +436 -0
- package/scripts/sophie-inbox-poller.py +406 -0
- package/scripts/spawn-session.sh +85 -0
- package/scripts/system-verify.sh +171 -0
- package/scripts/test-email-thread-dedup.py +239 -0
- package/scripts/test-information-barriers.py +484 -0
- package/scripts/test-llm-email-dedup.py +251 -0
- package/scripts/test-pre-draft-integration.py +203 -0
- package/scripts/test-rag-phase2.sh +442 -0
- package/scripts/test-rag-search.sh +251 -0
- package/scripts/test-voice-parser.mjs +316 -0
- package/scripts/user-context-search.py +660 -0
- package/scripts/validate-outbound.py +1493 -0
- package/scripts/whatsapp-handler.mjs +525 -0
- package/teams/desktop-operations.yaml +34 -0
- package/teams/executive-office.yaml +27 -0
- package/teams/legal-and-regulatory.yaml +24 -0
- package/teams/platform-and-engineering.yaml +23 -0
- package/teams/strategy-and-growth.yaml +29 -0
- package/workflows/continuous/inbound-monitor.yaml +168 -0
- package/workflows/daily/applicant-triage.yaml +197 -0
- package/workflows/daily/comms-triage.yaml +80 -0
- package/workflows/daily/evening-wrap.yaml +65 -0
- package/workflows/daily/morning-brief.yaml +147 -0
- package/workflows/daily/slack-followup-sweep.yaml +87 -0
- package/workflows/event-driven/README.md +50 -0
- package/workflows/monthly/board-readiness.yaml +76 -0
- package/workflows/quarterly/strategic-scenario-analysis.yaml +85 -0
- package/workflows/session-protocol.md +171 -0
- package/workflows/weekly/hiring-review.yaml +169 -0
- package/workflows/weekly/rollup-pipeline-review.yaml +76 -0
- package/workflows/weekly/strategic-memo.yaml +79 -0
|
@@ -0,0 +1,1393 @@
|
|
|
1
|
+
/* eslint no-unused-vars: ["error", { "varsIgnorePattern": "^Duplex|Readable$", "caughtErrors": "none" }] */
|
|
2
|
+
|
|
3
|
+
'use strict';
|
|
4
|
+
|
|
5
|
+
const EventEmitter = require('events');
|
|
6
|
+
const https = require('https');
|
|
7
|
+
const http = require('http');
|
|
8
|
+
const net = require('net');
|
|
9
|
+
const tls = require('tls');
|
|
10
|
+
const { randomBytes, createHash } = require('crypto');
|
|
11
|
+
const { Duplex, Readable } = require('stream');
|
|
12
|
+
const { URL } = require('url');
|
|
13
|
+
|
|
14
|
+
const PerMessageDeflate = require('./permessage-deflate');
|
|
15
|
+
const Receiver = require('./receiver');
|
|
16
|
+
const Sender = require('./sender');
|
|
17
|
+
const { isBlob } = require('./validation');
|
|
18
|
+
|
|
19
|
+
const {
|
|
20
|
+
BINARY_TYPES,
|
|
21
|
+
CLOSE_TIMEOUT,
|
|
22
|
+
EMPTY_BUFFER,
|
|
23
|
+
GUID,
|
|
24
|
+
kForOnEventAttribute,
|
|
25
|
+
kListener,
|
|
26
|
+
kStatusCode,
|
|
27
|
+
kWebSocket,
|
|
28
|
+
NOOP
|
|
29
|
+
} = require('./constants');
|
|
30
|
+
const {
|
|
31
|
+
EventTarget: { addEventListener, removeEventListener }
|
|
32
|
+
} = require('./event-target');
|
|
33
|
+
const { format, parse } = require('./extension');
|
|
34
|
+
const { toBuffer } = require('./buffer-util');
|
|
35
|
+
|
|
36
|
+
const kAborted = Symbol('kAborted');
|
|
37
|
+
const protocolVersions = [8, 13];
|
|
38
|
+
const readyStates = ['CONNECTING', 'OPEN', 'CLOSING', 'CLOSED'];
|
|
39
|
+
const subprotocolRegex = /^[!#$%&'*+\-.0-9A-Z^_`|a-z~]+$/;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Class representing a WebSocket.
|
|
43
|
+
*
|
|
44
|
+
* @extends EventEmitter
|
|
45
|
+
*/
|
|
46
|
+
class WebSocket extends EventEmitter {
|
|
47
|
+
/**
|
|
48
|
+
* Create a new `WebSocket`.
|
|
49
|
+
*
|
|
50
|
+
* @param {(String|URL)} address The URL to which to connect
|
|
51
|
+
* @param {(String|String[])} [protocols] The subprotocols
|
|
52
|
+
* @param {Object} [options] Connection options
|
|
53
|
+
*/
|
|
54
|
+
constructor(address, protocols, options) {
|
|
55
|
+
super();
|
|
56
|
+
|
|
57
|
+
this._binaryType = BINARY_TYPES[0];
|
|
58
|
+
this._closeCode = 1006;
|
|
59
|
+
this._closeFrameReceived = false;
|
|
60
|
+
this._closeFrameSent = false;
|
|
61
|
+
this._closeMessage = EMPTY_BUFFER;
|
|
62
|
+
this._closeTimer = null;
|
|
63
|
+
this._errorEmitted = false;
|
|
64
|
+
this._extensions = {};
|
|
65
|
+
this._paused = false;
|
|
66
|
+
this._protocol = '';
|
|
67
|
+
this._readyState = WebSocket.CONNECTING;
|
|
68
|
+
this._receiver = null;
|
|
69
|
+
this._sender = null;
|
|
70
|
+
this._socket = null;
|
|
71
|
+
|
|
72
|
+
if (address !== null) {
|
|
73
|
+
this._bufferedAmount = 0;
|
|
74
|
+
this._isServer = false;
|
|
75
|
+
this._redirects = 0;
|
|
76
|
+
|
|
77
|
+
if (protocols === undefined) {
|
|
78
|
+
protocols = [];
|
|
79
|
+
} else if (!Array.isArray(protocols)) {
|
|
80
|
+
if (typeof protocols === 'object' && protocols !== null) {
|
|
81
|
+
options = protocols;
|
|
82
|
+
protocols = [];
|
|
83
|
+
} else {
|
|
84
|
+
protocols = [protocols];
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
initAsClient(this, address, protocols, options);
|
|
89
|
+
} else {
|
|
90
|
+
this._autoPong = options.autoPong;
|
|
91
|
+
this._closeTimeout = options.closeTimeout;
|
|
92
|
+
this._isServer = true;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* For historical reasons, the custom "nodebuffer" type is used by the default
|
|
98
|
+
* instead of "blob".
|
|
99
|
+
*
|
|
100
|
+
* @type {String}
|
|
101
|
+
*/
|
|
102
|
+
get binaryType() {
|
|
103
|
+
return this._binaryType;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
set binaryType(type) {
|
|
107
|
+
if (!BINARY_TYPES.includes(type)) return;
|
|
108
|
+
|
|
109
|
+
this._binaryType = type;
|
|
110
|
+
|
|
111
|
+
//
|
|
112
|
+
// Allow to change `binaryType` on the fly.
|
|
113
|
+
//
|
|
114
|
+
if (this._receiver) this._receiver._binaryType = type;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* @type {Number}
|
|
119
|
+
*/
|
|
120
|
+
get bufferedAmount() {
|
|
121
|
+
if (!this._socket) return this._bufferedAmount;
|
|
122
|
+
|
|
123
|
+
return this._socket._writableState.length + this._sender._bufferedBytes;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @type {String}
|
|
128
|
+
*/
|
|
129
|
+
get extensions() {
|
|
130
|
+
return Object.keys(this._extensions).join();
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @type {Boolean}
|
|
135
|
+
*/
|
|
136
|
+
get isPaused() {
|
|
137
|
+
return this._paused;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* @type {Function}
|
|
142
|
+
*/
|
|
143
|
+
/* istanbul ignore next */
|
|
144
|
+
get onclose() {
|
|
145
|
+
return null;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @type {Function}
|
|
150
|
+
*/
|
|
151
|
+
/* istanbul ignore next */
|
|
152
|
+
get onerror() {
|
|
153
|
+
return null;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* @type {Function}
|
|
158
|
+
*/
|
|
159
|
+
/* istanbul ignore next */
|
|
160
|
+
get onopen() {
|
|
161
|
+
return null;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @type {Function}
|
|
166
|
+
*/
|
|
167
|
+
/* istanbul ignore next */
|
|
168
|
+
get onmessage() {
|
|
169
|
+
return null;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* @type {String}
|
|
174
|
+
*/
|
|
175
|
+
get protocol() {
|
|
176
|
+
return this._protocol;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @type {Number}
|
|
181
|
+
*/
|
|
182
|
+
get readyState() {
|
|
183
|
+
return this._readyState;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* @type {String}
|
|
188
|
+
*/
|
|
189
|
+
get url() {
|
|
190
|
+
return this._url;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Set up the socket and the internal resources.
|
|
195
|
+
*
|
|
196
|
+
* @param {Duplex} socket The network socket between the server and client
|
|
197
|
+
* @param {Buffer} head The first packet of the upgraded stream
|
|
198
|
+
* @param {Object} options Options object
|
|
199
|
+
* @param {Boolean} [options.allowSynchronousEvents=false] Specifies whether
|
|
200
|
+
* any of the `'message'`, `'ping'`, and `'pong'` events can be emitted
|
|
201
|
+
* multiple times in the same tick
|
|
202
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
203
|
+
* masking key
|
|
204
|
+
* @param {Number} [options.maxPayload=0] The maximum allowed message size
|
|
205
|
+
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
206
|
+
* not to skip UTF-8 validation for text and close messages
|
|
207
|
+
* @private
|
|
208
|
+
*/
|
|
209
|
+
setSocket(socket, head, options) {
|
|
210
|
+
const receiver = new Receiver({
|
|
211
|
+
allowSynchronousEvents: options.allowSynchronousEvents,
|
|
212
|
+
binaryType: this.binaryType,
|
|
213
|
+
extensions: this._extensions,
|
|
214
|
+
isServer: this._isServer,
|
|
215
|
+
maxPayload: options.maxPayload,
|
|
216
|
+
skipUTF8Validation: options.skipUTF8Validation
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
const sender = new Sender(socket, this._extensions, options.generateMask);
|
|
220
|
+
|
|
221
|
+
this._receiver = receiver;
|
|
222
|
+
this._sender = sender;
|
|
223
|
+
this._socket = socket;
|
|
224
|
+
|
|
225
|
+
receiver[kWebSocket] = this;
|
|
226
|
+
sender[kWebSocket] = this;
|
|
227
|
+
socket[kWebSocket] = this;
|
|
228
|
+
|
|
229
|
+
receiver.on('conclude', receiverOnConclude);
|
|
230
|
+
receiver.on('drain', receiverOnDrain);
|
|
231
|
+
receiver.on('error', receiverOnError);
|
|
232
|
+
receiver.on('message', receiverOnMessage);
|
|
233
|
+
receiver.on('ping', receiverOnPing);
|
|
234
|
+
receiver.on('pong', receiverOnPong);
|
|
235
|
+
|
|
236
|
+
sender.onerror = senderOnError;
|
|
237
|
+
|
|
238
|
+
//
|
|
239
|
+
// These methods may not be available if `socket` is just a `Duplex`.
|
|
240
|
+
//
|
|
241
|
+
if (socket.setTimeout) socket.setTimeout(0);
|
|
242
|
+
if (socket.setNoDelay) socket.setNoDelay();
|
|
243
|
+
|
|
244
|
+
if (head.length > 0) socket.unshift(head);
|
|
245
|
+
|
|
246
|
+
socket.on('close', socketOnClose);
|
|
247
|
+
socket.on('data', socketOnData);
|
|
248
|
+
socket.on('end', socketOnEnd);
|
|
249
|
+
socket.on('error', socketOnError);
|
|
250
|
+
|
|
251
|
+
this._readyState = WebSocket.OPEN;
|
|
252
|
+
this.emit('open');
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Emit the `'close'` event.
|
|
257
|
+
*
|
|
258
|
+
* @private
|
|
259
|
+
*/
|
|
260
|
+
emitClose() {
|
|
261
|
+
if (!this._socket) {
|
|
262
|
+
this._readyState = WebSocket.CLOSED;
|
|
263
|
+
this.emit('close', this._closeCode, this._closeMessage);
|
|
264
|
+
return;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
if (this._extensions[PerMessageDeflate.extensionName]) {
|
|
268
|
+
this._extensions[PerMessageDeflate.extensionName].cleanup();
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
this._receiver.removeAllListeners();
|
|
272
|
+
this._readyState = WebSocket.CLOSED;
|
|
273
|
+
this.emit('close', this._closeCode, this._closeMessage);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Start a closing handshake.
|
|
278
|
+
*
|
|
279
|
+
* +----------+ +-----------+ +----------+
|
|
280
|
+
* - - -|ws.close()|-->|close frame|-->|ws.close()|- - -
|
|
281
|
+
* | +----------+ +-----------+ +----------+ |
|
|
282
|
+
* +----------+ +-----------+ |
|
|
283
|
+
* CLOSING |ws.close()|<--|close frame|<--+-----+ CLOSING
|
|
284
|
+
* +----------+ +-----------+ |
|
|
285
|
+
* | | | +---+ |
|
|
286
|
+
* +------------------------+-->|fin| - - - -
|
|
287
|
+
* | +---+ | +---+
|
|
288
|
+
* - - - - -|fin|<---------------------+
|
|
289
|
+
* +---+
|
|
290
|
+
*
|
|
291
|
+
* @param {Number} [code] Status code explaining why the connection is closing
|
|
292
|
+
* @param {(String|Buffer)} [data] The reason why the connection is
|
|
293
|
+
* closing
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
close(code, data) {
|
|
297
|
+
if (this.readyState === WebSocket.CLOSED) return;
|
|
298
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
299
|
+
const msg = 'WebSocket was closed before the connection was established';
|
|
300
|
+
abortHandshake(this, this._req, msg);
|
|
301
|
+
return;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
if (this.readyState === WebSocket.CLOSING) {
|
|
305
|
+
if (
|
|
306
|
+
this._closeFrameSent &&
|
|
307
|
+
(this._closeFrameReceived || this._receiver._writableState.errorEmitted)
|
|
308
|
+
) {
|
|
309
|
+
this._socket.end();
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
return;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
this._readyState = WebSocket.CLOSING;
|
|
316
|
+
this._sender.close(code, data, !this._isServer, (err) => {
|
|
317
|
+
//
|
|
318
|
+
// This error is handled by the `'error'` listener on the socket. We only
|
|
319
|
+
// want to know if the close frame has been sent here.
|
|
320
|
+
//
|
|
321
|
+
if (err) return;
|
|
322
|
+
|
|
323
|
+
this._closeFrameSent = true;
|
|
324
|
+
|
|
325
|
+
if (
|
|
326
|
+
this._closeFrameReceived ||
|
|
327
|
+
this._receiver._writableState.errorEmitted
|
|
328
|
+
) {
|
|
329
|
+
this._socket.end();
|
|
330
|
+
}
|
|
331
|
+
});
|
|
332
|
+
|
|
333
|
+
setCloseTimer(this);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* Pause the socket.
|
|
338
|
+
*
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
pause() {
|
|
342
|
+
if (
|
|
343
|
+
this.readyState === WebSocket.CONNECTING ||
|
|
344
|
+
this.readyState === WebSocket.CLOSED
|
|
345
|
+
) {
|
|
346
|
+
return;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
this._paused = true;
|
|
350
|
+
this._socket.pause();
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* Send a ping.
|
|
355
|
+
*
|
|
356
|
+
* @param {*} [data] The data to send
|
|
357
|
+
* @param {Boolean} [mask] Indicates whether or not to mask `data`
|
|
358
|
+
* @param {Function} [cb] Callback which is executed when the ping is sent
|
|
359
|
+
* @public
|
|
360
|
+
*/
|
|
361
|
+
ping(data, mask, cb) {
|
|
362
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
363
|
+
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
if (typeof data === 'function') {
|
|
367
|
+
cb = data;
|
|
368
|
+
data = mask = undefined;
|
|
369
|
+
} else if (typeof mask === 'function') {
|
|
370
|
+
cb = mask;
|
|
371
|
+
mask = undefined;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
if (typeof data === 'number') data = data.toString();
|
|
375
|
+
|
|
376
|
+
if (this.readyState !== WebSocket.OPEN) {
|
|
377
|
+
sendAfterClose(this, data, cb);
|
|
378
|
+
return;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
if (mask === undefined) mask = !this._isServer;
|
|
382
|
+
this._sender.ping(data || EMPTY_BUFFER, mask, cb);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Send a pong.
|
|
387
|
+
*
|
|
388
|
+
* @param {*} [data] The data to send
|
|
389
|
+
* @param {Boolean} [mask] Indicates whether or not to mask `data`
|
|
390
|
+
* @param {Function} [cb] Callback which is executed when the pong is sent
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
393
|
+
pong(data, mask, cb) {
|
|
394
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
395
|
+
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
if (typeof data === 'function') {
|
|
399
|
+
cb = data;
|
|
400
|
+
data = mask = undefined;
|
|
401
|
+
} else if (typeof mask === 'function') {
|
|
402
|
+
cb = mask;
|
|
403
|
+
mask = undefined;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
if (typeof data === 'number') data = data.toString();
|
|
407
|
+
|
|
408
|
+
if (this.readyState !== WebSocket.OPEN) {
|
|
409
|
+
sendAfterClose(this, data, cb);
|
|
410
|
+
return;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
if (mask === undefined) mask = !this._isServer;
|
|
414
|
+
this._sender.pong(data || EMPTY_BUFFER, mask, cb);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* Resume the socket.
|
|
419
|
+
*
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
resume() {
|
|
423
|
+
if (
|
|
424
|
+
this.readyState === WebSocket.CONNECTING ||
|
|
425
|
+
this.readyState === WebSocket.CLOSED
|
|
426
|
+
) {
|
|
427
|
+
return;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
this._paused = false;
|
|
431
|
+
if (!this._receiver._writableState.needDrain) this._socket.resume();
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Send a data message.
|
|
436
|
+
*
|
|
437
|
+
* @param {*} data The message to send
|
|
438
|
+
* @param {Object} [options] Options object
|
|
439
|
+
* @param {Boolean} [options.binary] Specifies whether `data` is binary or
|
|
440
|
+
* text
|
|
441
|
+
* @param {Boolean} [options.compress] Specifies whether or not to compress
|
|
442
|
+
* `data`
|
|
443
|
+
* @param {Boolean} [options.fin=true] Specifies whether the fragment is the
|
|
444
|
+
* last one
|
|
445
|
+
* @param {Boolean} [options.mask] Specifies whether or not to mask `data`
|
|
446
|
+
* @param {Function} [cb] Callback which is executed when data is written out
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
449
|
+
send(data, options, cb) {
|
|
450
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
451
|
+
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
if (typeof options === 'function') {
|
|
455
|
+
cb = options;
|
|
456
|
+
options = {};
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
if (typeof data === 'number') data = data.toString();
|
|
460
|
+
|
|
461
|
+
if (this.readyState !== WebSocket.OPEN) {
|
|
462
|
+
sendAfterClose(this, data, cb);
|
|
463
|
+
return;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
const opts = {
|
|
467
|
+
binary: typeof data !== 'string',
|
|
468
|
+
mask: !this._isServer,
|
|
469
|
+
compress: true,
|
|
470
|
+
fin: true,
|
|
471
|
+
...options
|
|
472
|
+
};
|
|
473
|
+
|
|
474
|
+
if (!this._extensions[PerMessageDeflate.extensionName]) {
|
|
475
|
+
opts.compress = false;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
this._sender.send(data || EMPTY_BUFFER, opts, cb);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* Forcibly close the connection.
|
|
483
|
+
*
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
486
|
+
terminate() {
|
|
487
|
+
if (this.readyState === WebSocket.CLOSED) return;
|
|
488
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
489
|
+
const msg = 'WebSocket was closed before the connection was established';
|
|
490
|
+
abortHandshake(this, this._req, msg);
|
|
491
|
+
return;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
if (this._socket) {
|
|
495
|
+
this._readyState = WebSocket.CLOSING;
|
|
496
|
+
this._socket.destroy();
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* @constant {Number} CONNECTING
|
|
503
|
+
* @memberof WebSocket
|
|
504
|
+
*/
|
|
505
|
+
Object.defineProperty(WebSocket, 'CONNECTING', {
|
|
506
|
+
enumerable: true,
|
|
507
|
+
value: readyStates.indexOf('CONNECTING')
|
|
508
|
+
});
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* @constant {Number} CONNECTING
|
|
512
|
+
* @memberof WebSocket.prototype
|
|
513
|
+
*/
|
|
514
|
+
Object.defineProperty(WebSocket.prototype, 'CONNECTING', {
|
|
515
|
+
enumerable: true,
|
|
516
|
+
value: readyStates.indexOf('CONNECTING')
|
|
517
|
+
});
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* @constant {Number} OPEN
|
|
521
|
+
* @memberof WebSocket
|
|
522
|
+
*/
|
|
523
|
+
Object.defineProperty(WebSocket, 'OPEN', {
|
|
524
|
+
enumerable: true,
|
|
525
|
+
value: readyStates.indexOf('OPEN')
|
|
526
|
+
});
|
|
527
|
+
|
|
528
|
+
/**
|
|
529
|
+
* @constant {Number} OPEN
|
|
530
|
+
* @memberof WebSocket.prototype
|
|
531
|
+
*/
|
|
532
|
+
Object.defineProperty(WebSocket.prototype, 'OPEN', {
|
|
533
|
+
enumerable: true,
|
|
534
|
+
value: readyStates.indexOf('OPEN')
|
|
535
|
+
});
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* @constant {Number} CLOSING
|
|
539
|
+
* @memberof WebSocket
|
|
540
|
+
*/
|
|
541
|
+
Object.defineProperty(WebSocket, 'CLOSING', {
|
|
542
|
+
enumerable: true,
|
|
543
|
+
value: readyStates.indexOf('CLOSING')
|
|
544
|
+
});
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* @constant {Number} CLOSING
|
|
548
|
+
* @memberof WebSocket.prototype
|
|
549
|
+
*/
|
|
550
|
+
Object.defineProperty(WebSocket.prototype, 'CLOSING', {
|
|
551
|
+
enumerable: true,
|
|
552
|
+
value: readyStates.indexOf('CLOSING')
|
|
553
|
+
});
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* @constant {Number} CLOSED
|
|
557
|
+
* @memberof WebSocket
|
|
558
|
+
*/
|
|
559
|
+
Object.defineProperty(WebSocket, 'CLOSED', {
|
|
560
|
+
enumerable: true,
|
|
561
|
+
value: readyStates.indexOf('CLOSED')
|
|
562
|
+
});
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* @constant {Number} CLOSED
|
|
566
|
+
* @memberof WebSocket.prototype
|
|
567
|
+
*/
|
|
568
|
+
Object.defineProperty(WebSocket.prototype, 'CLOSED', {
|
|
569
|
+
enumerable: true,
|
|
570
|
+
value: readyStates.indexOf('CLOSED')
|
|
571
|
+
});
|
|
572
|
+
|
|
573
|
+
[
|
|
574
|
+
'binaryType',
|
|
575
|
+
'bufferedAmount',
|
|
576
|
+
'extensions',
|
|
577
|
+
'isPaused',
|
|
578
|
+
'protocol',
|
|
579
|
+
'readyState',
|
|
580
|
+
'url'
|
|
581
|
+
].forEach((property) => {
|
|
582
|
+
Object.defineProperty(WebSocket.prototype, property, { enumerable: true });
|
|
583
|
+
});
|
|
584
|
+
|
|
585
|
+
//
|
|
586
|
+
// Add the `onopen`, `onerror`, `onclose`, and `onmessage` attributes.
|
|
587
|
+
// See https://html.spec.whatwg.org/multipage/comms.html#the-websocket-interface
|
|
588
|
+
//
|
|
589
|
+
['open', 'error', 'close', 'message'].forEach((method) => {
|
|
590
|
+
Object.defineProperty(WebSocket.prototype, `on${method}`, {
|
|
591
|
+
enumerable: true,
|
|
592
|
+
get() {
|
|
593
|
+
for (const listener of this.listeners(method)) {
|
|
594
|
+
if (listener[kForOnEventAttribute]) return listener[kListener];
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
return null;
|
|
598
|
+
},
|
|
599
|
+
set(handler) {
|
|
600
|
+
for (const listener of this.listeners(method)) {
|
|
601
|
+
if (listener[kForOnEventAttribute]) {
|
|
602
|
+
this.removeListener(method, listener);
|
|
603
|
+
break;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
if (typeof handler !== 'function') return;
|
|
608
|
+
|
|
609
|
+
this.addEventListener(method, handler, {
|
|
610
|
+
[kForOnEventAttribute]: true
|
|
611
|
+
});
|
|
612
|
+
}
|
|
613
|
+
});
|
|
614
|
+
});
|
|
615
|
+
|
|
616
|
+
WebSocket.prototype.addEventListener = addEventListener;
|
|
617
|
+
WebSocket.prototype.removeEventListener = removeEventListener;
|
|
618
|
+
|
|
619
|
+
module.exports = WebSocket;
|
|
620
|
+
|
|
621
|
+
/**
|
|
622
|
+
* Initialize a WebSocket client.
|
|
623
|
+
*
|
|
624
|
+
* @param {WebSocket} websocket The client to initialize
|
|
625
|
+
* @param {(String|URL)} address The URL to which to connect
|
|
626
|
+
* @param {Array} protocols The subprotocols
|
|
627
|
+
* @param {Object} [options] Connection options
|
|
628
|
+
* @param {Boolean} [options.allowSynchronousEvents=true] Specifies whether any
|
|
629
|
+
* of the `'message'`, `'ping'`, and `'pong'` events can be emitted multiple
|
|
630
|
+
* times in the same tick
|
|
631
|
+
* @param {Boolean} [options.autoPong=true] Specifies whether or not to
|
|
632
|
+
* automatically send a pong in response to a ping
|
|
633
|
+
* @param {Number} [options.closeTimeout=30000] Duration in milliseconds to wait
|
|
634
|
+
* for the closing handshake to finish after `websocket.close()` is called
|
|
635
|
+
* @param {Function} [options.finishRequest] A function which can be used to
|
|
636
|
+
* customize the headers of each http request before it is sent
|
|
637
|
+
* @param {Boolean} [options.followRedirects=false] Whether or not to follow
|
|
638
|
+
* redirects
|
|
639
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
640
|
+
* masking key
|
|
641
|
+
* @param {Number} [options.handshakeTimeout] Timeout in milliseconds for the
|
|
642
|
+
* handshake request
|
|
643
|
+
* @param {Number} [options.maxPayload=104857600] The maximum allowed message
|
|
644
|
+
* size
|
|
645
|
+
* @param {Number} [options.maxRedirects=10] The maximum number of redirects
|
|
646
|
+
* allowed
|
|
647
|
+
* @param {String} [options.origin] Value of the `Origin` or
|
|
648
|
+
* `Sec-WebSocket-Origin` header
|
|
649
|
+
* @param {(Boolean|Object)} [options.perMessageDeflate=true] Enable/disable
|
|
650
|
+
* permessage-deflate
|
|
651
|
+
* @param {Number} [options.protocolVersion=13] Value of the
|
|
652
|
+
* `Sec-WebSocket-Version` header
|
|
653
|
+
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
654
|
+
* not to skip UTF-8 validation for text and close messages
|
|
655
|
+
* @private
|
|
656
|
+
*/
|
|
657
|
+
function initAsClient(websocket, address, protocols, options) {
|
|
658
|
+
const opts = {
|
|
659
|
+
allowSynchronousEvents: true,
|
|
660
|
+
autoPong: true,
|
|
661
|
+
closeTimeout: CLOSE_TIMEOUT,
|
|
662
|
+
protocolVersion: protocolVersions[1],
|
|
663
|
+
maxPayload: 100 * 1024 * 1024,
|
|
664
|
+
skipUTF8Validation: false,
|
|
665
|
+
perMessageDeflate: true,
|
|
666
|
+
followRedirects: false,
|
|
667
|
+
maxRedirects: 10,
|
|
668
|
+
...options,
|
|
669
|
+
socketPath: undefined,
|
|
670
|
+
hostname: undefined,
|
|
671
|
+
protocol: undefined,
|
|
672
|
+
timeout: undefined,
|
|
673
|
+
method: 'GET',
|
|
674
|
+
host: undefined,
|
|
675
|
+
path: undefined,
|
|
676
|
+
port: undefined
|
|
677
|
+
};
|
|
678
|
+
|
|
679
|
+
websocket._autoPong = opts.autoPong;
|
|
680
|
+
websocket._closeTimeout = opts.closeTimeout;
|
|
681
|
+
|
|
682
|
+
if (!protocolVersions.includes(opts.protocolVersion)) {
|
|
683
|
+
throw new RangeError(
|
|
684
|
+
`Unsupported protocol version: ${opts.protocolVersion} ` +
|
|
685
|
+
`(supported versions: ${protocolVersions.join(', ')})`
|
|
686
|
+
);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
let parsedUrl;
|
|
690
|
+
|
|
691
|
+
if (address instanceof URL) {
|
|
692
|
+
parsedUrl = address;
|
|
693
|
+
} else {
|
|
694
|
+
try {
|
|
695
|
+
parsedUrl = new URL(address);
|
|
696
|
+
} catch {
|
|
697
|
+
throw new SyntaxError(`Invalid URL: ${address}`);
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
if (parsedUrl.protocol === 'http:') {
|
|
702
|
+
parsedUrl.protocol = 'ws:';
|
|
703
|
+
} else if (parsedUrl.protocol === 'https:') {
|
|
704
|
+
parsedUrl.protocol = 'wss:';
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
websocket._url = parsedUrl.href;
|
|
708
|
+
|
|
709
|
+
const isSecure = parsedUrl.protocol === 'wss:';
|
|
710
|
+
const isIpcUrl = parsedUrl.protocol === 'ws+unix:';
|
|
711
|
+
let invalidUrlMessage;
|
|
712
|
+
|
|
713
|
+
if (parsedUrl.protocol !== 'ws:' && !isSecure && !isIpcUrl) {
|
|
714
|
+
invalidUrlMessage =
|
|
715
|
+
'The URL\'s protocol must be one of "ws:", "wss:", ' +
|
|
716
|
+
'"http:", "https:", or "ws+unix:"';
|
|
717
|
+
} else if (isIpcUrl && !parsedUrl.pathname) {
|
|
718
|
+
invalidUrlMessage = "The URL's pathname is empty";
|
|
719
|
+
} else if (parsedUrl.hash) {
|
|
720
|
+
invalidUrlMessage = 'The URL contains a fragment identifier';
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
if (invalidUrlMessage) {
|
|
724
|
+
const err = new SyntaxError(invalidUrlMessage);
|
|
725
|
+
|
|
726
|
+
if (websocket._redirects === 0) {
|
|
727
|
+
throw err;
|
|
728
|
+
} else {
|
|
729
|
+
emitErrorAndClose(websocket, err);
|
|
730
|
+
return;
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
const defaultPort = isSecure ? 443 : 80;
|
|
735
|
+
const key = randomBytes(16).toString('base64');
|
|
736
|
+
const request = isSecure ? https.request : http.request;
|
|
737
|
+
const protocolSet = new Set();
|
|
738
|
+
let perMessageDeflate;
|
|
739
|
+
|
|
740
|
+
opts.createConnection =
|
|
741
|
+
opts.createConnection || (isSecure ? tlsConnect : netConnect);
|
|
742
|
+
opts.defaultPort = opts.defaultPort || defaultPort;
|
|
743
|
+
opts.port = parsedUrl.port || defaultPort;
|
|
744
|
+
opts.host = parsedUrl.hostname.startsWith('[')
|
|
745
|
+
? parsedUrl.hostname.slice(1, -1)
|
|
746
|
+
: parsedUrl.hostname;
|
|
747
|
+
opts.headers = {
|
|
748
|
+
...opts.headers,
|
|
749
|
+
'Sec-WebSocket-Version': opts.protocolVersion,
|
|
750
|
+
'Sec-WebSocket-Key': key,
|
|
751
|
+
Connection: 'Upgrade',
|
|
752
|
+
Upgrade: 'websocket'
|
|
753
|
+
};
|
|
754
|
+
opts.path = parsedUrl.pathname + parsedUrl.search;
|
|
755
|
+
opts.timeout = opts.handshakeTimeout;
|
|
756
|
+
|
|
757
|
+
if (opts.perMessageDeflate) {
|
|
758
|
+
perMessageDeflate = new PerMessageDeflate({
|
|
759
|
+
...opts.perMessageDeflate,
|
|
760
|
+
isServer: false,
|
|
761
|
+
maxPayload: opts.maxPayload
|
|
762
|
+
});
|
|
763
|
+
opts.headers['Sec-WebSocket-Extensions'] = format({
|
|
764
|
+
[PerMessageDeflate.extensionName]: perMessageDeflate.offer()
|
|
765
|
+
});
|
|
766
|
+
}
|
|
767
|
+
if (protocols.length) {
|
|
768
|
+
for (const protocol of protocols) {
|
|
769
|
+
if (
|
|
770
|
+
typeof protocol !== 'string' ||
|
|
771
|
+
!subprotocolRegex.test(protocol) ||
|
|
772
|
+
protocolSet.has(protocol)
|
|
773
|
+
) {
|
|
774
|
+
throw new SyntaxError(
|
|
775
|
+
'An invalid or duplicated subprotocol was specified'
|
|
776
|
+
);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
protocolSet.add(protocol);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
opts.headers['Sec-WebSocket-Protocol'] = protocols.join(',');
|
|
783
|
+
}
|
|
784
|
+
if (opts.origin) {
|
|
785
|
+
if (opts.protocolVersion < 13) {
|
|
786
|
+
opts.headers['Sec-WebSocket-Origin'] = opts.origin;
|
|
787
|
+
} else {
|
|
788
|
+
opts.headers.Origin = opts.origin;
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
if (parsedUrl.username || parsedUrl.password) {
|
|
792
|
+
opts.auth = `${parsedUrl.username}:${parsedUrl.password}`;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
if (isIpcUrl) {
|
|
796
|
+
const parts = opts.path.split(':');
|
|
797
|
+
|
|
798
|
+
opts.socketPath = parts[0];
|
|
799
|
+
opts.path = parts[1];
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
let req;
|
|
803
|
+
|
|
804
|
+
if (opts.followRedirects) {
|
|
805
|
+
if (websocket._redirects === 0) {
|
|
806
|
+
websocket._originalIpc = isIpcUrl;
|
|
807
|
+
websocket._originalSecure = isSecure;
|
|
808
|
+
websocket._originalHostOrSocketPath = isIpcUrl
|
|
809
|
+
? opts.socketPath
|
|
810
|
+
: parsedUrl.host;
|
|
811
|
+
|
|
812
|
+
const headers = options && options.headers;
|
|
813
|
+
|
|
814
|
+
//
|
|
815
|
+
// Shallow copy the user provided options so that headers can be changed
|
|
816
|
+
// without mutating the original object.
|
|
817
|
+
//
|
|
818
|
+
options = { ...options, headers: {} };
|
|
819
|
+
|
|
820
|
+
if (headers) {
|
|
821
|
+
for (const [key, value] of Object.entries(headers)) {
|
|
822
|
+
options.headers[key.toLowerCase()] = value;
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
} else if (websocket.listenerCount('redirect') === 0) {
|
|
826
|
+
const isSameHost = isIpcUrl
|
|
827
|
+
? websocket._originalIpc
|
|
828
|
+
? opts.socketPath === websocket._originalHostOrSocketPath
|
|
829
|
+
: false
|
|
830
|
+
: websocket._originalIpc
|
|
831
|
+
? false
|
|
832
|
+
: parsedUrl.host === websocket._originalHostOrSocketPath;
|
|
833
|
+
|
|
834
|
+
if (!isSameHost || (websocket._originalSecure && !isSecure)) {
|
|
835
|
+
//
|
|
836
|
+
// Match curl 7.77.0 behavior and drop the following headers. These
|
|
837
|
+
// headers are also dropped when following a redirect to a subdomain.
|
|
838
|
+
//
|
|
839
|
+
delete opts.headers.authorization;
|
|
840
|
+
delete opts.headers.cookie;
|
|
841
|
+
|
|
842
|
+
if (!isSameHost) delete opts.headers.host;
|
|
843
|
+
|
|
844
|
+
opts.auth = undefined;
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
//
|
|
849
|
+
// Match curl 7.77.0 behavior and make the first `Authorization` header win.
|
|
850
|
+
// If the `Authorization` header is set, then there is nothing to do as it
|
|
851
|
+
// will take precedence.
|
|
852
|
+
//
|
|
853
|
+
if (opts.auth && !options.headers.authorization) {
|
|
854
|
+
options.headers.authorization =
|
|
855
|
+
'Basic ' + Buffer.from(opts.auth).toString('base64');
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
req = websocket._req = request(opts);
|
|
859
|
+
|
|
860
|
+
if (websocket._redirects) {
|
|
861
|
+
//
|
|
862
|
+
// Unlike what is done for the `'upgrade'` event, no early exit is
|
|
863
|
+
// triggered here if the user calls `websocket.close()` or
|
|
864
|
+
// `websocket.terminate()` from a listener of the `'redirect'` event. This
|
|
865
|
+
// is because the user can also call `request.destroy()` with an error
|
|
866
|
+
// before calling `websocket.close()` or `websocket.terminate()` and this
|
|
867
|
+
// would result in an error being emitted on the `request` object with no
|
|
868
|
+
// `'error'` event listeners attached.
|
|
869
|
+
//
|
|
870
|
+
websocket.emit('redirect', websocket.url, req);
|
|
871
|
+
}
|
|
872
|
+
} else {
|
|
873
|
+
req = websocket._req = request(opts);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
if (opts.timeout) {
|
|
877
|
+
req.on('timeout', () => {
|
|
878
|
+
abortHandshake(websocket, req, 'Opening handshake has timed out');
|
|
879
|
+
});
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
req.on('error', (err) => {
|
|
883
|
+
if (req === null || req[kAborted]) return;
|
|
884
|
+
|
|
885
|
+
req = websocket._req = null;
|
|
886
|
+
emitErrorAndClose(websocket, err);
|
|
887
|
+
});
|
|
888
|
+
|
|
889
|
+
req.on('response', (res) => {
|
|
890
|
+
const location = res.headers.location;
|
|
891
|
+
const statusCode = res.statusCode;
|
|
892
|
+
|
|
893
|
+
if (
|
|
894
|
+
location &&
|
|
895
|
+
opts.followRedirects &&
|
|
896
|
+
statusCode >= 300 &&
|
|
897
|
+
statusCode < 400
|
|
898
|
+
) {
|
|
899
|
+
if (++websocket._redirects > opts.maxRedirects) {
|
|
900
|
+
abortHandshake(websocket, req, 'Maximum redirects exceeded');
|
|
901
|
+
return;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
req.abort();
|
|
905
|
+
|
|
906
|
+
let addr;
|
|
907
|
+
|
|
908
|
+
try {
|
|
909
|
+
addr = new URL(location, address);
|
|
910
|
+
} catch (e) {
|
|
911
|
+
const err = new SyntaxError(`Invalid URL: ${location}`);
|
|
912
|
+
emitErrorAndClose(websocket, err);
|
|
913
|
+
return;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
initAsClient(websocket, addr, protocols, options);
|
|
917
|
+
} else if (!websocket.emit('unexpected-response', req, res)) {
|
|
918
|
+
abortHandshake(
|
|
919
|
+
websocket,
|
|
920
|
+
req,
|
|
921
|
+
`Unexpected server response: ${res.statusCode}`
|
|
922
|
+
);
|
|
923
|
+
}
|
|
924
|
+
});
|
|
925
|
+
|
|
926
|
+
req.on('upgrade', (res, socket, head) => {
|
|
927
|
+
websocket.emit('upgrade', res);
|
|
928
|
+
|
|
929
|
+
//
|
|
930
|
+
// The user may have closed the connection from a listener of the
|
|
931
|
+
// `'upgrade'` event.
|
|
932
|
+
//
|
|
933
|
+
if (websocket.readyState !== WebSocket.CONNECTING) return;
|
|
934
|
+
|
|
935
|
+
req = websocket._req = null;
|
|
936
|
+
|
|
937
|
+
const upgrade = res.headers.upgrade;
|
|
938
|
+
|
|
939
|
+
if (upgrade === undefined || upgrade.toLowerCase() !== 'websocket') {
|
|
940
|
+
abortHandshake(websocket, socket, 'Invalid Upgrade header');
|
|
941
|
+
return;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
const digest = createHash('sha1')
|
|
945
|
+
.update(key + GUID)
|
|
946
|
+
.digest('base64');
|
|
947
|
+
|
|
948
|
+
if (res.headers['sec-websocket-accept'] !== digest) {
|
|
949
|
+
abortHandshake(websocket, socket, 'Invalid Sec-WebSocket-Accept header');
|
|
950
|
+
return;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
const serverProt = res.headers['sec-websocket-protocol'];
|
|
954
|
+
let protError;
|
|
955
|
+
|
|
956
|
+
if (serverProt !== undefined) {
|
|
957
|
+
if (!protocolSet.size) {
|
|
958
|
+
protError = 'Server sent a subprotocol but none was requested';
|
|
959
|
+
} else if (!protocolSet.has(serverProt)) {
|
|
960
|
+
protError = 'Server sent an invalid subprotocol';
|
|
961
|
+
}
|
|
962
|
+
} else if (protocolSet.size) {
|
|
963
|
+
protError = 'Server sent no subprotocol';
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
if (protError) {
|
|
967
|
+
abortHandshake(websocket, socket, protError);
|
|
968
|
+
return;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
if (serverProt) websocket._protocol = serverProt;
|
|
972
|
+
|
|
973
|
+
const secWebSocketExtensions = res.headers['sec-websocket-extensions'];
|
|
974
|
+
|
|
975
|
+
if (secWebSocketExtensions !== undefined) {
|
|
976
|
+
if (!perMessageDeflate) {
|
|
977
|
+
const message =
|
|
978
|
+
'Server sent a Sec-WebSocket-Extensions header but no extension ' +
|
|
979
|
+
'was requested';
|
|
980
|
+
abortHandshake(websocket, socket, message);
|
|
981
|
+
return;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
let extensions;
|
|
985
|
+
|
|
986
|
+
try {
|
|
987
|
+
extensions = parse(secWebSocketExtensions);
|
|
988
|
+
} catch (err) {
|
|
989
|
+
const message = 'Invalid Sec-WebSocket-Extensions header';
|
|
990
|
+
abortHandshake(websocket, socket, message);
|
|
991
|
+
return;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
const extensionNames = Object.keys(extensions);
|
|
995
|
+
|
|
996
|
+
if (
|
|
997
|
+
extensionNames.length !== 1 ||
|
|
998
|
+
extensionNames[0] !== PerMessageDeflate.extensionName
|
|
999
|
+
) {
|
|
1000
|
+
const message = 'Server indicated an extension that was not requested';
|
|
1001
|
+
abortHandshake(websocket, socket, message);
|
|
1002
|
+
return;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
try {
|
|
1006
|
+
perMessageDeflate.accept(extensions[PerMessageDeflate.extensionName]);
|
|
1007
|
+
} catch (err) {
|
|
1008
|
+
const message = 'Invalid Sec-WebSocket-Extensions header';
|
|
1009
|
+
abortHandshake(websocket, socket, message);
|
|
1010
|
+
return;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
websocket._extensions[PerMessageDeflate.extensionName] =
|
|
1014
|
+
perMessageDeflate;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
websocket.setSocket(socket, head, {
|
|
1018
|
+
allowSynchronousEvents: opts.allowSynchronousEvents,
|
|
1019
|
+
generateMask: opts.generateMask,
|
|
1020
|
+
maxPayload: opts.maxPayload,
|
|
1021
|
+
skipUTF8Validation: opts.skipUTF8Validation
|
|
1022
|
+
});
|
|
1023
|
+
});
|
|
1024
|
+
|
|
1025
|
+
if (opts.finishRequest) {
|
|
1026
|
+
opts.finishRequest(req, websocket);
|
|
1027
|
+
} else {
|
|
1028
|
+
req.end();
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* Emit the `'error'` and `'close'` events.
|
|
1034
|
+
*
|
|
1035
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1036
|
+
* @param {Error} The error to emit
|
|
1037
|
+
* @private
|
|
1038
|
+
*/
|
|
1039
|
+
function emitErrorAndClose(websocket, err) {
|
|
1040
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1041
|
+
//
|
|
1042
|
+
// The following assignment is practically useless and is done only for
|
|
1043
|
+
// consistency.
|
|
1044
|
+
//
|
|
1045
|
+
websocket._errorEmitted = true;
|
|
1046
|
+
websocket.emit('error', err);
|
|
1047
|
+
websocket.emitClose();
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
/**
|
|
1051
|
+
* Create a `net.Socket` and initiate a connection.
|
|
1052
|
+
*
|
|
1053
|
+
* @param {Object} options Connection options
|
|
1054
|
+
* @return {net.Socket} The newly created socket used to start the connection
|
|
1055
|
+
* @private
|
|
1056
|
+
*/
|
|
1057
|
+
function netConnect(options) {
|
|
1058
|
+
options.path = options.socketPath;
|
|
1059
|
+
return net.connect(options);
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
/**
|
|
1063
|
+
* Create a `tls.TLSSocket` and initiate a connection.
|
|
1064
|
+
*
|
|
1065
|
+
* @param {Object} options Connection options
|
|
1066
|
+
* @return {tls.TLSSocket} The newly created socket used to start the connection
|
|
1067
|
+
* @private
|
|
1068
|
+
*/
|
|
1069
|
+
function tlsConnect(options) {
|
|
1070
|
+
options.path = undefined;
|
|
1071
|
+
|
|
1072
|
+
if (!options.servername && options.servername !== '') {
|
|
1073
|
+
options.servername = net.isIP(options.host) ? '' : options.host;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
return tls.connect(options);
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* Abort the handshake and emit an error.
|
|
1081
|
+
*
|
|
1082
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1083
|
+
* @param {(http.ClientRequest|net.Socket|tls.Socket)} stream The request to
|
|
1084
|
+
* abort or the socket to destroy
|
|
1085
|
+
* @param {String} message The error message
|
|
1086
|
+
* @private
|
|
1087
|
+
*/
|
|
1088
|
+
function abortHandshake(websocket, stream, message) {
|
|
1089
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1090
|
+
|
|
1091
|
+
const err = new Error(message);
|
|
1092
|
+
Error.captureStackTrace(err, abortHandshake);
|
|
1093
|
+
|
|
1094
|
+
if (stream.setHeader) {
|
|
1095
|
+
stream[kAborted] = true;
|
|
1096
|
+
stream.abort();
|
|
1097
|
+
|
|
1098
|
+
if (stream.socket && !stream.socket.destroyed) {
|
|
1099
|
+
//
|
|
1100
|
+
// On Node.js >= 14.3.0 `request.abort()` does not destroy the socket if
|
|
1101
|
+
// called after the request completed. See
|
|
1102
|
+
// https://github.com/websockets/ws/issues/1869.
|
|
1103
|
+
//
|
|
1104
|
+
stream.socket.destroy();
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
process.nextTick(emitErrorAndClose, websocket, err);
|
|
1108
|
+
} else {
|
|
1109
|
+
stream.destroy(err);
|
|
1110
|
+
stream.once('error', websocket.emit.bind(websocket, 'error'));
|
|
1111
|
+
stream.once('close', websocket.emitClose.bind(websocket));
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* Handle cases where the `ping()`, `pong()`, or `send()` methods are called
|
|
1117
|
+
* when the `readyState` attribute is `CLOSING` or `CLOSED`.
|
|
1118
|
+
*
|
|
1119
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1120
|
+
* @param {*} [data] The data to send
|
|
1121
|
+
* @param {Function} [cb] Callback
|
|
1122
|
+
* @private
|
|
1123
|
+
*/
|
|
1124
|
+
function sendAfterClose(websocket, data, cb) {
|
|
1125
|
+
if (data) {
|
|
1126
|
+
const length = isBlob(data) ? data.size : toBuffer(data).length;
|
|
1127
|
+
|
|
1128
|
+
//
|
|
1129
|
+
// The `_bufferedAmount` property is used only when the peer is a client and
|
|
1130
|
+
// the opening handshake fails. Under these circumstances, in fact, the
|
|
1131
|
+
// `setSocket()` method is not called, so the `_socket` and `_sender`
|
|
1132
|
+
// properties are set to `null`.
|
|
1133
|
+
//
|
|
1134
|
+
if (websocket._socket) websocket._sender._bufferedBytes += length;
|
|
1135
|
+
else websocket._bufferedAmount += length;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
if (cb) {
|
|
1139
|
+
const err = new Error(
|
|
1140
|
+
`WebSocket is not open: readyState ${websocket.readyState} ` +
|
|
1141
|
+
`(${readyStates[websocket.readyState]})`
|
|
1142
|
+
);
|
|
1143
|
+
process.nextTick(cb, err);
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* The listener of the `Receiver` `'conclude'` event.
|
|
1149
|
+
*
|
|
1150
|
+
* @param {Number} code The status code
|
|
1151
|
+
* @param {Buffer} reason The reason for closing
|
|
1152
|
+
* @private
|
|
1153
|
+
*/
|
|
1154
|
+
function receiverOnConclude(code, reason) {
|
|
1155
|
+
const websocket = this[kWebSocket];
|
|
1156
|
+
|
|
1157
|
+
websocket._closeFrameReceived = true;
|
|
1158
|
+
websocket._closeMessage = reason;
|
|
1159
|
+
websocket._closeCode = code;
|
|
1160
|
+
|
|
1161
|
+
if (websocket._socket[kWebSocket] === undefined) return;
|
|
1162
|
+
|
|
1163
|
+
websocket._socket.removeListener('data', socketOnData);
|
|
1164
|
+
process.nextTick(resume, websocket._socket);
|
|
1165
|
+
|
|
1166
|
+
if (code === 1005) websocket.close();
|
|
1167
|
+
else websocket.close(code, reason);
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
/**
|
|
1171
|
+
* The listener of the `Receiver` `'drain'` event.
|
|
1172
|
+
*
|
|
1173
|
+
* @private
|
|
1174
|
+
*/
|
|
1175
|
+
function receiverOnDrain() {
|
|
1176
|
+
const websocket = this[kWebSocket];
|
|
1177
|
+
|
|
1178
|
+
if (!websocket.isPaused) websocket._socket.resume();
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
/**
|
|
1182
|
+
* The listener of the `Receiver` `'error'` event.
|
|
1183
|
+
*
|
|
1184
|
+
* @param {(RangeError|Error)} err The emitted error
|
|
1185
|
+
* @private
|
|
1186
|
+
*/
|
|
1187
|
+
function receiverOnError(err) {
|
|
1188
|
+
const websocket = this[kWebSocket];
|
|
1189
|
+
|
|
1190
|
+
if (websocket._socket[kWebSocket] !== undefined) {
|
|
1191
|
+
websocket._socket.removeListener('data', socketOnData);
|
|
1192
|
+
|
|
1193
|
+
//
|
|
1194
|
+
// On Node.js < 14.0.0 the `'error'` event is emitted synchronously. See
|
|
1195
|
+
// https://github.com/websockets/ws/issues/1940.
|
|
1196
|
+
//
|
|
1197
|
+
process.nextTick(resume, websocket._socket);
|
|
1198
|
+
|
|
1199
|
+
websocket.close(err[kStatusCode]);
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
if (!websocket._errorEmitted) {
|
|
1203
|
+
websocket._errorEmitted = true;
|
|
1204
|
+
websocket.emit('error', err);
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
/**
|
|
1209
|
+
* The listener of the `Receiver` `'finish'` event.
|
|
1210
|
+
*
|
|
1211
|
+
* @private
|
|
1212
|
+
*/
|
|
1213
|
+
function receiverOnFinish() {
|
|
1214
|
+
this[kWebSocket].emitClose();
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
/**
|
|
1218
|
+
* The listener of the `Receiver` `'message'` event.
|
|
1219
|
+
*
|
|
1220
|
+
* @param {Buffer|ArrayBuffer|Buffer[])} data The message
|
|
1221
|
+
* @param {Boolean} isBinary Specifies whether the message is binary or not
|
|
1222
|
+
* @private
|
|
1223
|
+
*/
|
|
1224
|
+
function receiverOnMessage(data, isBinary) {
|
|
1225
|
+
this[kWebSocket].emit('message', data, isBinary);
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
/**
|
|
1229
|
+
* The listener of the `Receiver` `'ping'` event.
|
|
1230
|
+
*
|
|
1231
|
+
* @param {Buffer} data The data included in the ping frame
|
|
1232
|
+
* @private
|
|
1233
|
+
*/
|
|
1234
|
+
function receiverOnPing(data) {
|
|
1235
|
+
const websocket = this[kWebSocket];
|
|
1236
|
+
|
|
1237
|
+
if (websocket._autoPong) websocket.pong(data, !this._isServer, NOOP);
|
|
1238
|
+
websocket.emit('ping', data);
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
/**
|
|
1242
|
+
* The listener of the `Receiver` `'pong'` event.
|
|
1243
|
+
*
|
|
1244
|
+
* @param {Buffer} data The data included in the pong frame
|
|
1245
|
+
* @private
|
|
1246
|
+
*/
|
|
1247
|
+
function receiverOnPong(data) {
|
|
1248
|
+
this[kWebSocket].emit('pong', data);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
/**
|
|
1252
|
+
* Resume a readable stream
|
|
1253
|
+
*
|
|
1254
|
+
* @param {Readable} stream The readable stream
|
|
1255
|
+
* @private
|
|
1256
|
+
*/
|
|
1257
|
+
function resume(stream) {
|
|
1258
|
+
stream.resume();
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
/**
|
|
1262
|
+
* The `Sender` error event handler.
|
|
1263
|
+
*
|
|
1264
|
+
* @param {Error} The error
|
|
1265
|
+
* @private
|
|
1266
|
+
*/
|
|
1267
|
+
function senderOnError(err) {
|
|
1268
|
+
const websocket = this[kWebSocket];
|
|
1269
|
+
|
|
1270
|
+
if (websocket.readyState === WebSocket.CLOSED) return;
|
|
1271
|
+
if (websocket.readyState === WebSocket.OPEN) {
|
|
1272
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1273
|
+
setCloseTimer(websocket);
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
//
|
|
1277
|
+
// `socket.end()` is used instead of `socket.destroy()` to allow the other
|
|
1278
|
+
// peer to finish sending queued data. There is no need to set a timer here
|
|
1279
|
+
// because `CLOSING` means that it is already set or not needed.
|
|
1280
|
+
//
|
|
1281
|
+
this._socket.end();
|
|
1282
|
+
|
|
1283
|
+
if (!websocket._errorEmitted) {
|
|
1284
|
+
websocket._errorEmitted = true;
|
|
1285
|
+
websocket.emit('error', err);
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
/**
|
|
1290
|
+
* Set a timer to destroy the underlying raw socket of a WebSocket.
|
|
1291
|
+
*
|
|
1292
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1293
|
+
* @private
|
|
1294
|
+
*/
|
|
1295
|
+
function setCloseTimer(websocket) {
|
|
1296
|
+
websocket._closeTimer = setTimeout(
|
|
1297
|
+
websocket._socket.destroy.bind(websocket._socket),
|
|
1298
|
+
websocket._closeTimeout
|
|
1299
|
+
);
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
/**
|
|
1303
|
+
* The listener of the socket `'close'` event.
|
|
1304
|
+
*
|
|
1305
|
+
* @private
|
|
1306
|
+
*/
|
|
1307
|
+
function socketOnClose() {
|
|
1308
|
+
const websocket = this[kWebSocket];
|
|
1309
|
+
|
|
1310
|
+
this.removeListener('close', socketOnClose);
|
|
1311
|
+
this.removeListener('data', socketOnData);
|
|
1312
|
+
this.removeListener('end', socketOnEnd);
|
|
1313
|
+
|
|
1314
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1315
|
+
|
|
1316
|
+
//
|
|
1317
|
+
// The close frame might not have been received or the `'end'` event emitted,
|
|
1318
|
+
// for example, if the socket was destroyed due to an error. Ensure that the
|
|
1319
|
+
// `receiver` stream is closed after writing any remaining buffered data to
|
|
1320
|
+
// it. If the readable side of the socket is in flowing mode then there is no
|
|
1321
|
+
// buffered data as everything has been already written. If instead, the
|
|
1322
|
+
// socket is paused, any possible buffered data will be read as a single
|
|
1323
|
+
// chunk.
|
|
1324
|
+
//
|
|
1325
|
+
if (
|
|
1326
|
+
!this._readableState.endEmitted &&
|
|
1327
|
+
!websocket._closeFrameReceived &&
|
|
1328
|
+
!websocket._receiver._writableState.errorEmitted &&
|
|
1329
|
+
this._readableState.length !== 0
|
|
1330
|
+
) {
|
|
1331
|
+
const chunk = this.read(this._readableState.length);
|
|
1332
|
+
|
|
1333
|
+
websocket._receiver.write(chunk);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
websocket._receiver.end();
|
|
1337
|
+
|
|
1338
|
+
this[kWebSocket] = undefined;
|
|
1339
|
+
|
|
1340
|
+
clearTimeout(websocket._closeTimer);
|
|
1341
|
+
|
|
1342
|
+
if (
|
|
1343
|
+
websocket._receiver._writableState.finished ||
|
|
1344
|
+
websocket._receiver._writableState.errorEmitted
|
|
1345
|
+
) {
|
|
1346
|
+
websocket.emitClose();
|
|
1347
|
+
} else {
|
|
1348
|
+
websocket._receiver.on('error', receiverOnFinish);
|
|
1349
|
+
websocket._receiver.on('finish', receiverOnFinish);
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
/**
|
|
1354
|
+
* The listener of the socket `'data'` event.
|
|
1355
|
+
*
|
|
1356
|
+
* @param {Buffer} chunk A chunk of data
|
|
1357
|
+
* @private
|
|
1358
|
+
*/
|
|
1359
|
+
function socketOnData(chunk) {
|
|
1360
|
+
if (!this[kWebSocket]._receiver.write(chunk)) {
|
|
1361
|
+
this.pause();
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
/**
|
|
1366
|
+
* The listener of the socket `'end'` event.
|
|
1367
|
+
*
|
|
1368
|
+
* @private
|
|
1369
|
+
*/
|
|
1370
|
+
function socketOnEnd() {
|
|
1371
|
+
const websocket = this[kWebSocket];
|
|
1372
|
+
|
|
1373
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1374
|
+
websocket._receiver.end();
|
|
1375
|
+
this.end();
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
/**
|
|
1379
|
+
* The listener of the socket `'error'` event.
|
|
1380
|
+
*
|
|
1381
|
+
* @private
|
|
1382
|
+
*/
|
|
1383
|
+
function socketOnError() {
|
|
1384
|
+
const websocket = this[kWebSocket];
|
|
1385
|
+
|
|
1386
|
+
this.removeListener('error', socketOnError);
|
|
1387
|
+
this.on('error', NOOP);
|
|
1388
|
+
|
|
1389
|
+
if (websocket) {
|
|
1390
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1391
|
+
this.destroy();
|
|
1392
|
+
}
|
|
1393
|
+
}
|