@vellumai/assistant 0.3.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/.dockerignore +27 -0
- package/.env.example +22 -0
- package/Dockerfile +99 -0
- package/Dockerfile.sandbox +5 -0
- package/README.md +248 -0
- package/bun.lock +1723 -0
- package/bunfig.toml +2 -0
- package/docs/skills.md +158 -0
- package/drizzle/0000_dizzy_maggott.sql +301 -0
- package/drizzle/meta/0000_snapshot.json +1999 -0
- package/drizzle/meta/_journal.json +13 -0
- package/drizzle.config.ts +7 -0
- package/eslint.config.mjs +17 -0
- package/hook-templates/debug-prompt-logger/hook.json +7 -0
- package/hook-templates/debug-prompt-logger/run.sh +68 -0
- package/knip.json +9 -0
- package/package.json +70 -0
- package/scripts/capture-x-graphql.ts +545 -0
- package/scripts/ipc/check-contract-inventory.ts +104 -0
- package/scripts/ipc/check-swift-decoder-drift.ts +166 -0
- package/scripts/ipc/generate-swift.ts +492 -0
- package/scripts/test-filesystem-tools.sh +48 -0
- package/scripts/test.sh +127 -0
- package/src/__tests__/__snapshots__/ipc-snapshot.test.ts.snap +2485 -0
- package/src/__tests__/account-registry.test.ts +245 -0
- package/src/__tests__/active-skill-tools.test.ts +378 -0
- package/src/__tests__/agent-heartbeat-service.test.ts +250 -0
- package/src/__tests__/agent-loop-thinking.test.ts +81 -0
- package/src/__tests__/agent-loop.test.ts +1135 -0
- package/src/__tests__/anthropic-provider.test.ts +778 -0
- package/src/__tests__/app-builder-tool-scripts.test.ts +290 -0
- package/src/__tests__/app-bundler.test.ts +292 -0
- package/src/__tests__/app-executors.test.ts +613 -0
- package/src/__tests__/app-git-history.test.ts +176 -0
- package/src/__tests__/app-git-service.test.ts +169 -0
- package/src/__tests__/app-open-proxy.test.ts +62 -0
- package/src/__tests__/asset-materialize-tool.test.ts +452 -0
- package/src/__tests__/asset-search-tool.test.ts +477 -0
- package/src/__tests__/assistant-attachment-directive.test.ts +401 -0
- package/src/__tests__/assistant-attachments.test.ts +437 -0
- package/src/__tests__/assistant-event-hub.test.ts +226 -0
- package/src/__tests__/assistant-event.test.ts +123 -0
- package/src/__tests__/assistant-events-sse-hardening.test.ts +315 -0
- package/src/__tests__/attachments-store.test.ts +476 -0
- package/src/__tests__/attachments.test.ts +134 -0
- package/src/__tests__/audit-log-rotation.test.ts +154 -0
- package/src/__tests__/browser-fill-credential.test.ts +309 -0
- package/src/__tests__/browser-manager.test.ts +203 -0
- package/src/__tests__/browser-runtime-check.test.ts +55 -0
- package/src/__tests__/browser-skill-baseline-tool-payload.test.ts +68 -0
- package/src/__tests__/browser-skill-endstate.test.ts +195 -0
- package/src/__tests__/bundle-scanner.test.ts +313 -0
- package/src/__tests__/call-bridge.test.ts +517 -0
- package/src/__tests__/call-constants.test.ts +40 -0
- package/src/__tests__/call-domain.test.ts +163 -0
- package/src/__tests__/call-orchestrator.test.ts +625 -0
- package/src/__tests__/call-recovery.test.ts +518 -0
- package/src/__tests__/call-routes-http.test.ts +699 -0
- package/src/__tests__/call-state-machine.test.ts +143 -0
- package/src/__tests__/call-state.test.ts +174 -0
- package/src/__tests__/call-store.test.ts +691 -0
- package/src/__tests__/channel-approval-routes.test.ts +2356 -0
- package/src/__tests__/channel-approval.test.ts +299 -0
- package/src/__tests__/channel-approvals.test.ts +521 -0
- package/src/__tests__/channel-delivery-store.test.ts +447 -0
- package/src/__tests__/channel-guardian.test.ts +1005 -0
- package/src/__tests__/checker.test.ts +3519 -0
- package/src/__tests__/clarification-resolver.test.ts +159 -0
- package/src/__tests__/classifier.test.ts +67 -0
- package/src/__tests__/claude-code-skill-regression.test.ts +127 -0
- package/src/__tests__/claude-code-tool-profiles.test.ts +88 -0
- package/src/__tests__/cli-discover.test.ts +85 -0
- package/src/__tests__/cli.test.ts +26 -0
- package/src/__tests__/clipboard.test.ts +80 -0
- package/src/__tests__/commit-guarantee.test.ts +335 -0
- package/src/__tests__/commit-message-enrichment-service.test.ts +550 -0
- package/src/__tests__/compaction.benchmark.test.ts +176 -0
- package/src/__tests__/computer-use-session-compaction.test.ts +132 -0
- package/src/__tests__/computer-use-session-lifecycle.test.ts +293 -0
- package/src/__tests__/computer-use-session-working-dir.test.ts +117 -0
- package/src/__tests__/computer-use-skill-baseline.test.ts +74 -0
- package/src/__tests__/computer-use-skill-endstate.test.ts +89 -0
- package/src/__tests__/computer-use-skill-lifecycle-cleanup.test.ts +217 -0
- package/src/__tests__/computer-use-skill-manifest-regression.test.ts +107 -0
- package/src/__tests__/computer-use-skill-proxy-bridge.test.ts +54 -0
- package/src/__tests__/computer-use-tools.test.ts +250 -0
- package/src/__tests__/config-schema.test.ts +1462 -0
- package/src/__tests__/conflict-intent-tokenization.test.ts +141 -0
- package/src/__tests__/conflict-policy.test.ts +121 -0
- package/src/__tests__/conflict-store.test.ts +332 -0
- package/src/__tests__/connection-policy.test.ts +102 -0
- package/src/__tests__/contacts-tools.test.ts +331 -0
- package/src/__tests__/context-memory-e2e.test.ts +434 -0
- package/src/__tests__/context-token-estimator.test.ts +135 -0
- package/src/__tests__/context-window-manager.test.ts +376 -0
- package/src/__tests__/contradiction-checker.test.ts +314 -0
- package/src/__tests__/conversation-store.test.ts +612 -0
- package/src/__tests__/credential-broker-browser-fill.test.ts +517 -0
- package/src/__tests__/credential-broker-server-use.test.ts +554 -0
- package/src/__tests__/credential-broker.test.ts +167 -0
- package/src/__tests__/credential-host-pattern-match.test.ts +104 -0
- package/src/__tests__/credential-metadata-store.test.ts +779 -0
- package/src/__tests__/credential-policy-validate.test.ts +121 -0
- package/src/__tests__/credential-resolve.test.ts +328 -0
- package/src/__tests__/credential-security-e2e.test.ts +352 -0
- package/src/__tests__/credential-security-invariants.test.ts +583 -0
- package/src/__tests__/credential-selection.test.ts +354 -0
- package/src/__tests__/credential-vault-unit.test.ts +780 -0
- package/src/__tests__/credential-vault.test.ts +852 -0
- package/src/__tests__/daemon-assistant-events.test.ts +164 -0
- package/src/__tests__/daemon-server-session-init.test.ts +522 -0
- package/src/__tests__/date-context.test.ts +373 -0
- package/src/__tests__/db-schedule-syntax-migration.test.ts +129 -0
- package/src/__tests__/delete-managed-skill-tool.test.ts +97 -0
- package/src/__tests__/diff.test.ts +121 -0
- package/src/__tests__/domain-normalize.test.ts +112 -0
- package/src/__tests__/domain-policy.test.ts +124 -0
- package/src/__tests__/doordash-client.test.ts +186 -0
- package/src/__tests__/doordash-session.test.ts +152 -0
- package/src/__tests__/dynamic-page-surface.test.ts +91 -0
- package/src/__tests__/dynamic-skill-workflow-prompt.test.ts +132 -0
- package/src/__tests__/edit-engine.test.ts +180 -0
- package/src/__tests__/elevenlabs-client.test.ts +271 -0
- package/src/__tests__/email-cli.test.ts +283 -0
- package/src/__tests__/encrypted-store.test.ts +332 -0
- package/src/__tests__/entity-extractor.test.ts +190 -0
- package/src/__tests__/ephemeral-permissions.test.ts +362 -0
- package/src/__tests__/evaluate-typescript-tool.test.ts +286 -0
- package/src/__tests__/event-bus.test.ts +222 -0
- package/src/__tests__/file-edit-tool.test.ts +122 -0
- package/src/__tests__/file-ops-service.test.ts +330 -0
- package/src/__tests__/file-read-tool.test.ts +75 -0
- package/src/__tests__/file-write-tool.test.ts +113 -0
- package/src/__tests__/filesystem-tools.test.ts +579 -0
- package/src/__tests__/fixtures/credential-security-fixtures.ts +181 -0
- package/src/__tests__/fixtures/media-reuse-fixtures.ts +126 -0
- package/src/__tests__/fixtures/mock-signup-server.ts +387 -0
- package/src/__tests__/fixtures/proxy-fixtures.ts +147 -0
- package/src/__tests__/followup-tools.test.ts +303 -0
- package/src/__tests__/forbidden-legacy-symbols.test.ts +71 -0
- package/src/__tests__/fuzzy-match-property.test.ts +216 -0
- package/src/__tests__/fuzzy-match.test.ts +138 -0
- package/src/__tests__/gateway-only-enforcement.test.ts +631 -0
- package/src/__tests__/gemini-image-service.test.ts +261 -0
- package/src/__tests__/gemini-provider.test.ts +651 -0
- package/src/__tests__/get-weather.test.ts +318 -0
- package/src/__tests__/gmail-integration.test.ts +73 -0
- package/src/__tests__/handlers-add-trust-rule-metadata.test.ts +202 -0
- package/src/__tests__/handlers-cu-observation-blob.test.ts +352 -0
- package/src/__tests__/handlers-ipc-blob-probe.test.ts +191 -0
- package/src/__tests__/handlers-slack-config.test.ts +200 -0
- package/src/__tests__/handlers-task-submit-slash.test.ts +38 -0
- package/src/__tests__/handlers-telegram-config.test.ts +968 -0
- package/src/__tests__/handlers-twilio-config.test.ts +659 -0
- package/src/__tests__/handlers-twitter-config.test.ts +858 -0
- package/src/__tests__/headless-browser-interactions.test.ts +536 -0
- package/src/__tests__/headless-browser-navigate.test.ts +211 -0
- package/src/__tests__/headless-browser-read-tools.test.ts +261 -0
- package/src/__tests__/headless-browser-snapshot.test.ts +185 -0
- package/src/__tests__/history-repair-observability.test.ts +56 -0
- package/src/__tests__/history-repair.test.ts +510 -0
- package/src/__tests__/home-base-bootstrap.test.ts +82 -0
- package/src/__tests__/hooks-blocking.test.ts +128 -0
- package/src/__tests__/hooks-cli.test.ts +144 -0
- package/src/__tests__/hooks-config.test.ts +93 -0
- package/src/__tests__/hooks-discovery.test.ts +199 -0
- package/src/__tests__/hooks-integration.test.ts +189 -0
- package/src/__tests__/hooks-manager.test.ts +187 -0
- package/src/__tests__/hooks-runner.test.ts +182 -0
- package/src/__tests__/hooks-settings.test.ts +154 -0
- package/src/__tests__/hooks-templates.test.ts +137 -0
- package/src/__tests__/hooks-ts-runner.test.ts +125 -0
- package/src/__tests__/hooks-watch.test.ts +100 -0
- package/src/__tests__/host-file-edit-tool.test.ts +228 -0
- package/src/__tests__/host-file-read-tool.test.ts +123 -0
- package/src/__tests__/host-file-write-tool.test.ts +136 -0
- package/src/__tests__/host-shell-tool.test.ts +562 -0
- package/src/__tests__/ingress-reconcile.test.ts +581 -0
- package/src/__tests__/ingress-url-consistency.test.ts +214 -0
- package/src/__tests__/intent-routing.test.ts +259 -0
- package/src/__tests__/ipc-blob-store.test.ts +315 -0
- package/src/__tests__/ipc-contract-inventory.test.ts +54 -0
- package/src/__tests__/ipc-contract.test.ts +74 -0
- package/src/__tests__/ipc-protocol.test.ts +113 -0
- package/src/__tests__/ipc-roundtrip.benchmark.test.ts +237 -0
- package/src/__tests__/ipc-snapshot.test.ts +1769 -0
- package/src/__tests__/ipc-validate.test.ts +407 -0
- package/src/__tests__/key-migration.test.ts +206 -0
- package/src/__tests__/keychain.test.ts +258 -0
- package/src/__tests__/llm-usage-store.test.ts +221 -0
- package/src/__tests__/managed-skill-lifecycle.test.ts +257 -0
- package/src/__tests__/managed-store.test.ts +608 -0
- package/src/__tests__/media-generate-image.test.ts +238 -0
- package/src/__tests__/media-reuse-story.e2e.test.ts +676 -0
- package/src/__tests__/media-visibility-policy.test.ts +141 -0
- package/src/__tests__/memory-context-benchmark.benchmark.test.ts +235 -0
- package/src/__tests__/memory-lifecycle-e2e.test.ts +481 -0
- package/src/__tests__/memory-query-builder.test.ts +59 -0
- package/src/__tests__/memory-recall-quality.test.ts +846 -0
- package/src/__tests__/memory-regressions.experimental.test.ts +538 -0
- package/src/__tests__/memory-regressions.test.ts +4435 -0
- package/src/__tests__/memory-retrieval-budget.test.ts +49 -0
- package/src/__tests__/memory-retrieval.benchmark.test.ts +430 -0
- package/src/__tests__/migration-cli-flows.test.ts +169 -0
- package/src/__tests__/migration-ordering.test.ts +249 -0
- package/src/__tests__/mock-signup-server.test.ts +528 -0
- package/src/__tests__/oauth-callback-registry.test.ts +92 -0
- package/src/__tests__/oauth2-gateway-transport.test.ts +285 -0
- package/src/__tests__/onboarding-starter-tasks.test.ts +176 -0
- package/src/__tests__/onboarding-template-contract.test.ts +58 -0
- package/src/__tests__/openai-provider.test.ts +753 -0
- package/src/__tests__/parallel-tool.benchmark.test.ts +294 -0
- package/src/__tests__/parser.test.ts +472 -0
- package/src/__tests__/path-classifier.test.ts +73 -0
- package/src/__tests__/path-policy.test.ts +435 -0
- package/src/__tests__/platform-move-helper.test.ts +99 -0
- package/src/__tests__/platform-socket-path.test.ts +52 -0
- package/src/__tests__/platform-workspace-migration.test.ts +1000 -0
- package/src/__tests__/platform.test.ts +131 -0
- package/src/__tests__/playbook-execution.test.ts +502 -0
- package/src/__tests__/playbook-tools.test.ts +340 -0
- package/src/__tests__/prebuilt-home-base-seed.test.ts +75 -0
- package/src/__tests__/pricing.test.ts +256 -0
- package/src/__tests__/profile-compiler.test.ts +374 -0
- package/src/__tests__/provider-commit-message-generator.test.ts +342 -0
- package/src/__tests__/provider-registry-ollama.test.ts +16 -0
- package/src/__tests__/provider-streaming.benchmark.test.ts +773 -0
- package/src/__tests__/proxy-approval-callback.test.ts +601 -0
- package/src/__tests__/public-ingress-urls.test.ts +256 -0
- package/src/__tests__/qdrant-manager.test.ts +267 -0
- package/src/__tests__/ratelimit.test.ts +297 -0
- package/src/__tests__/recurrence-engine-rruleset.test.ts +175 -0
- package/src/__tests__/recurrence-engine.test.ts +78 -0
- package/src/__tests__/recurrence-types.test.ts +79 -0
- package/src/__tests__/registry.test.ts +494 -0
- package/src/__tests__/relay-server.test.ts +688 -0
- package/src/__tests__/reminder-store.test.ts +223 -0
- package/src/__tests__/reminder.test.ts +229 -0
- package/src/__tests__/request-file-tool.test.ts +158 -0
- package/src/__tests__/run-orchestrator-assistant-events.test.ts +227 -0
- package/src/__tests__/run-orchestrator.test.ts +425 -0
- package/src/__tests__/runtime-attachment-metadata.test.ts +189 -0
- package/src/__tests__/runtime-events-sse-parity.test.ts +343 -0
- package/src/__tests__/runtime-events-sse.test.ts +162 -0
- package/src/__tests__/runtime-runs-http.test.ts +438 -0
- package/src/__tests__/runtime-runs.test.ts +260 -0
- package/src/__tests__/sandbox-diagnostics.test.ts +408 -0
- package/src/__tests__/sandbox-host-parity.test.ts +950 -0
- package/src/__tests__/scaffold-managed-skill-tool.test.ts +253 -0
- package/src/__tests__/schedule-store.test.ts +484 -0
- package/src/__tests__/schedule-tools.test.ts +783 -0
- package/src/__tests__/scheduler-recurrence.test.ts +430 -0
- package/src/__tests__/script-proxy-certs.test.ts +90 -0
- package/src/__tests__/script-proxy-connect-tunnel.test.ts +177 -0
- package/src/__tests__/script-proxy-decision-trace.test.ts +156 -0
- package/src/__tests__/script-proxy-http-forwarder.test.ts +281 -0
- package/src/__tests__/script-proxy-injection-runtime.test.ts +401 -0
- package/src/__tests__/script-proxy-mitm-handler.test.ts +407 -0
- package/src/__tests__/script-proxy-policy-runtime.test.ts +287 -0
- package/src/__tests__/script-proxy-policy.test.ts +310 -0
- package/src/__tests__/script-proxy-rewrite-specificity.test.ts +135 -0
- package/src/__tests__/script-proxy-router.test.ts +180 -0
- package/src/__tests__/script-proxy-session-manager.test.ts +382 -0
- package/src/__tests__/script-proxy-session-runtime.test.ts +113 -0
- package/src/__tests__/secret-allowlist.test.ts +230 -0
- package/src/__tests__/secret-ingress-handler.test.ts +110 -0
- package/src/__tests__/secret-onetime-send.test.ts +130 -0
- package/src/__tests__/secret-prompt-log-hygiene.test.ts +106 -0
- package/src/__tests__/secret-response-routing.test.ts +93 -0
- package/src/__tests__/secret-scanner-executor.test.ts +348 -0
- package/src/__tests__/secret-scanner.test.ts +900 -0
- package/src/__tests__/secure-keys.test.ts +323 -0
- package/src/__tests__/server-history-render.test.ts +431 -0
- package/src/__tests__/session-abort-tool-results.test.ts +240 -0
- package/src/__tests__/session-conflict-gate.test.ts +1136 -0
- package/src/__tests__/session-error.test.ts +369 -0
- package/src/__tests__/session-evictor.test.ts +188 -0
- package/src/__tests__/session-init.benchmark.test.ts +465 -0
- package/src/__tests__/session-load-history-repair.test.ts +222 -0
- package/src/__tests__/session-pre-run-repair.test.ts +213 -0
- package/src/__tests__/session-process-bridge.test.ts +242 -0
- package/src/__tests__/session-profile-injection.test.ts +444 -0
- package/src/__tests__/session-provider-retry-repair.test.ts +306 -0
- package/src/__tests__/session-queue.test.ts +1535 -0
- package/src/__tests__/session-runtime-assembly.test.ts +476 -0
- package/src/__tests__/session-runtime-workspace.test.ts +183 -0
- package/src/__tests__/session-skill-tools.test.ts +2431 -0
- package/src/__tests__/session-slash-known.test.ts +368 -0
- package/src/__tests__/session-slash-queue.test.ts +288 -0
- package/src/__tests__/session-slash-unknown.test.ts +271 -0
- package/src/__tests__/session-surfaces-task-progress.test.ts +104 -0
- package/src/__tests__/session-tool-setup-app-refresh.test.ts +473 -0
- package/src/__tests__/session-tool-setup-memory-scope.test.ts +140 -0
- package/src/__tests__/session-tool-setup-side-effect-flag.test.ts +140 -0
- package/src/__tests__/session-undo.test.ts +75 -0
- package/src/__tests__/session-workspace-cache-state.test.ts +246 -0
- package/src/__tests__/session-workspace-injection.test.ts +327 -0
- package/src/__tests__/session-workspace-tool-tracking.test.ts +240 -0
- package/src/__tests__/shared-filesystem-errors.test.ts +78 -0
- package/src/__tests__/shell-credential-ref.test.ts +187 -0
- package/src/__tests__/shell-identity.test.ts +256 -0
- package/src/__tests__/shell-parser-fuzz.test.ts +544 -0
- package/src/__tests__/shell-parser-property.test.ts +433 -0
- package/src/__tests__/shell-tool-proxy-mode.test.ts +272 -0
- package/src/__tests__/signup-e2e.test.ts +353 -0
- package/src/__tests__/size-guard.test.ts +117 -0
- package/src/__tests__/skill-include-graph.test.ts +303 -0
- package/src/__tests__/skill-load-tool.test.ts +409 -0
- package/src/__tests__/skill-projection.benchmark.test.ts +338 -0
- package/src/__tests__/skill-script-runner-host.test.ts +489 -0
- package/src/__tests__/skill-script-runner-sandbox.test.ts +349 -0
- package/src/__tests__/skill-script-runner.test.ts +159 -0
- package/src/__tests__/skill-tool-factory.test.ts +252 -0
- package/src/__tests__/skill-tool-manifest.test.ts +658 -0
- package/src/__tests__/skill-version-hash.test.ts +182 -0
- package/src/__tests__/skills.test.ts +680 -0
- package/src/__tests__/slash-commands-catalog.test.ts +86 -0
- package/src/__tests__/slash-commands-parser.test.ts +119 -0
- package/src/__tests__/slash-commands-resolver.test.ts +193 -0
- package/src/__tests__/slash-commands-rewrite.test.ts +39 -0
- package/src/__tests__/speaker-identification.test.ts +52 -0
- package/src/__tests__/starter-bundle.test.ts +136 -0
- package/src/__tests__/starter-task-flow.test.ts +143 -0
- package/src/__tests__/subagent-manager-notify.test.ts +404 -0
- package/src/__tests__/subagent-tools.test.ts +801 -0
- package/src/__tests__/subagent-types.test.ts +78 -0
- package/src/__tests__/swarm-orchestrator.test.ts +428 -0
- package/src/__tests__/swarm-plan-validator.test.ts +330 -0
- package/src/__tests__/swarm-recursion.test.ts +165 -0
- package/src/__tests__/swarm-router-planner.test.ts +208 -0
- package/src/__tests__/swarm-session-integration.test.ts +274 -0
- package/src/__tests__/swarm-tool.test.ts +145 -0
- package/src/__tests__/swarm-worker-backend.test.ts +129 -0
- package/src/__tests__/swarm-worker-runner.test.ts +272 -0
- package/src/__tests__/system-prompt.test.ts +439 -0
- package/src/__tests__/task-compiler.test.ts +284 -0
- package/src/__tests__/task-management-tools.test.ts +936 -0
- package/src/__tests__/task-runner.test.ts +216 -0
- package/src/__tests__/task-scheduler.test.ts +217 -0
- package/src/__tests__/task-tools.test.ts +595 -0
- package/src/__tests__/terminal-sandbox-docker.test.ts +1064 -0
- package/src/__tests__/terminal-sandbox.integration.test.ts +178 -0
- package/src/__tests__/terminal-sandbox.test.ts +202 -0
- package/src/__tests__/terminal-tools.test.ts +840 -0
- package/src/__tests__/test-support/browser-skill-harness.ts +90 -0
- package/src/__tests__/test-support/computer-use-skill-harness.ts +45 -0
- package/src/__tests__/tool-audit-listener.test.ts +113 -0
- package/src/__tests__/tool-domain-event-publisher.test.ts +253 -0
- package/src/__tests__/tool-execution-pipeline.benchmark.test.ts +500 -0
- package/src/__tests__/tool-executor-lifecycle-events.test.ts +516 -0
- package/src/__tests__/tool-executor-redaction.test.ts +289 -0
- package/src/__tests__/tool-executor-shell-integration.test.ts +301 -0
- package/src/__tests__/tool-executor.test.ts +1989 -0
- package/src/__tests__/tool-metrics-listener.test.ts +225 -0
- package/src/__tests__/tool-notification-listener.test.ts +49 -0
- package/src/__tests__/tool-permission-simulate-handler.test.ts +336 -0
- package/src/__tests__/tool-policy.test.ts +54 -0
- package/src/__tests__/tool-profiling-listener.test.ts +268 -0
- package/src/__tests__/tool-result-truncation.test.ts +217 -0
- package/src/__tests__/tool-trace-listener.test.ts +226 -0
- package/src/__tests__/top-level-renderer.test.ts +121 -0
- package/src/__tests__/top-level-scanner.test.ts +141 -0
- package/src/__tests__/trace-emitter.test.ts +173 -0
- package/src/__tests__/trust-store.test.ts +1605 -0
- package/src/__tests__/turn-commit.test.ts +554 -0
- package/src/__tests__/twilio-provider.test.ts +329 -0
- package/src/__tests__/twilio-routes-elevenlabs.test.ts +375 -0
- package/src/__tests__/twilio-routes-twiml.test.ts +127 -0
- package/src/__tests__/twilio-routes.test.ts +577 -0
- package/src/__tests__/twitter-auth-handler.test.ts +667 -0
- package/src/__tests__/twitter-cli-error-shaping.test.ts +208 -0
- package/src/__tests__/twitter-cli-routing.test.ts +252 -0
- package/src/__tests__/twitter-oauth-client.test.ts +209 -0
- package/src/__tests__/url-safety.test.ts +418 -0
- package/src/__tests__/view-image-tool.test.ts +217 -0
- package/src/__tests__/weather-skill-regression.test.ts +225 -0
- package/src/__tests__/web-fetch.test.ts +869 -0
- package/src/__tests__/web-search.test.ts +584 -0
- package/src/__tests__/workspace-git-service.test.ts +1153 -0
- package/src/__tests__/workspace-heartbeat-service.test.ts +486 -0
- package/src/__tests__/workspace-lifecycle.test.ts +292 -0
- package/src/__tests__/workspace-policy.test.ts +213 -0
- package/src/agent/attachments.ts +35 -0
- package/src/agent/loop.ts +500 -0
- package/src/agent/message-types.ts +17 -0
- package/src/agent-heartbeat/agent-heartbeat-service.ts +155 -0
- package/src/autonomy/autonomy-resolver.ts +60 -0
- package/src/autonomy/autonomy-store.ts +122 -0
- package/src/autonomy/disposition-mapper.ts +31 -0
- package/src/autonomy/index.ts +11 -0
- package/src/autonomy/types.ts +39 -0
- package/src/bundler/app-bundler.ts +295 -0
- package/src/bundler/bundle-scanner.ts +535 -0
- package/src/bundler/bundle-signer.ts +124 -0
- package/src/bundler/manifest.ts +21 -0
- package/src/bundler/signature-verifier.ts +184 -0
- package/src/calls/call-bridge.ts +168 -0
- package/src/calls/call-constants.ts +48 -0
- package/src/calls/call-domain.ts +430 -0
- package/src/calls/call-orchestrator.ts +498 -0
- package/src/calls/call-recovery.ts +207 -0
- package/src/calls/call-state-machine.ts +68 -0
- package/src/calls/call-state.ts +87 -0
- package/src/calls/call-store.ts +422 -0
- package/src/calls/elevenlabs-client.ts +97 -0
- package/src/calls/elevenlabs-config.ts +31 -0
- package/src/calls/relay-server.ts +390 -0
- package/src/calls/speaker-identification.ts +213 -0
- package/src/calls/twilio-config.ts +45 -0
- package/src/calls/twilio-provider.ts +263 -0
- package/src/calls/twilio-rest.ts +156 -0
- package/src/calls/twilio-routes.ts +311 -0
- package/src/calls/types.ts +39 -0
- package/src/calls/voice-provider.ts +14 -0
- package/src/calls/voice-quality.ts +114 -0
- package/src/cli/autonomy.ts +188 -0
- package/src/cli/config-commands.ts +334 -0
- package/src/cli/contacts.ts +149 -0
- package/src/cli/core-commands.ts +784 -0
- package/src/cli/doordash.ts +1055 -0
- package/src/cli/email-guardrails.ts +200 -0
- package/src/cli/email.ts +405 -0
- package/src/cli/ipc-client.ts +82 -0
- package/src/cli/main-screen.tsx +53 -0
- package/src/cli/map.ts +270 -0
- package/src/cli/twitter.ts +754 -0
- package/src/cli.ts +918 -0
- package/src/commands/__tests__/cc-command-registry.test.ts +319 -0
- package/src/commands/cc-command-registry.ts +209 -0
- package/src/config/bundled-skills/.gitkeep +0 -0
- package/src/config/bundled-skills/agentmail/SKILL.md +128 -0
- package/src/config/bundled-skills/agentmail/icon.svg +21 -0
- package/src/config/bundled-skills/app-builder/SKILL.md +1404 -0
- package/src/config/bundled-skills/app-builder/TOOLS.json +279 -0
- package/src/config/bundled-skills/app-builder/icon.svg +9 -0
- package/src/config/bundled-skills/app-builder/tools/app-create.ts +15 -0
- package/src/config/bundled-skills/app-builder/tools/app-delete.ts +10 -0
- package/src/config/bundled-skills/app-builder/tools/app-file-edit.ts +11 -0
- package/src/config/bundled-skills/app-builder/tools/app-file-list.ts +10 -0
- package/src/config/bundled-skills/app-builder/tools/app-file-read.ts +18 -0
- package/src/config/bundled-skills/app-builder/tools/app-file-write.ts +11 -0
- package/src/config/bundled-skills/app-builder/tools/app-list.ts +10 -0
- package/src/config/bundled-skills/app-builder/tools/app-query.ts +10 -0
- package/src/config/bundled-skills/app-builder/tools/app-update.ts +20 -0
- package/src/config/bundled-skills/browser/SKILL.md +28 -0
- package/src/config/bundled-skills/browser/TOOLS.json +234 -0
- package/src/config/bundled-skills/browser/tools/browser-click.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-close.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-extract.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-fill-credential.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-navigate.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-press-key.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-screenshot.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-snapshot.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-type.ts +9 -0
- package/src/config/bundled-skills/browser/tools/browser-wait-for.ts +9 -0
- package/src/config/bundled-skills/claude-code/SKILL.md +50 -0
- package/src/config/bundled-skills/claude-code/TOOLS.json +40 -0
- package/src/config/bundled-skills/claude-code/tools/claude-code.ts +9 -0
- package/src/config/bundled-skills/computer-use/SKILL.md +17 -0
- package/src/config/bundled-skills/computer-use/TOOLS.json +326 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-click.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-done.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-double-click.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-drag.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-key.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-open-app.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-request-control.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-respond.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-right-click.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-run-applescript.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-scroll.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-type-text.ts +9 -0
- package/src/config/bundled-skills/computer-use/tools/computer-use-wait.ts +9 -0
- package/src/config/bundled-skills/contacts/SKILL.md +39 -0
- package/src/config/bundled-skills/contacts/TOOLS.json +122 -0
- package/src/config/bundled-skills/contacts/tools/contact-merge.ts +57 -0
- package/src/config/bundled-skills/contacts/tools/contact-search.ts +60 -0
- package/src/config/bundled-skills/contacts/tools/contact-upsert.ts +66 -0
- package/src/config/bundled-skills/document/SKILL.md +26 -0
- package/src/config/bundled-skills/document/TOOLS.json +53 -0
- package/src/config/bundled-skills/document/tools/document-create.ts +9 -0
- package/src/config/bundled-skills/document/tools/document-update.ts +9 -0
- package/src/config/bundled-skills/doordash/SKILL.md +163 -0
- package/src/config/bundled-skills/followups/SKILL.md +32 -0
- package/src/config/bundled-skills/followups/TOOLS.json +100 -0
- package/src/config/bundled-skills/followups/icon.svg +24 -0
- package/src/config/bundled-skills/followups/tools/followup-create.ts +9 -0
- package/src/config/bundled-skills/followups/tools/followup-list.ts +9 -0
- package/src/config/bundled-skills/followups/tools/followup-resolve.ts +9 -0
- package/src/config/bundled-skills/google-calendar/SKILL.md +51 -0
- package/src/config/bundled-skills/google-calendar/TOOLS.json +108 -0
- package/src/config/bundled-skills/google-calendar/calendar-client.ts +165 -0
- package/src/config/bundled-skills/google-calendar/tools/calendar-check-availability.ts +21 -0
- package/src/config/bundled-skills/google-calendar/tools/calendar-create-event.ts +42 -0
- package/src/config/bundled-skills/google-calendar/tools/calendar-get-event.ts +13 -0
- package/src/config/bundled-skills/google-calendar/tools/calendar-list-events.ts +30 -0
- package/src/config/bundled-skills/google-calendar/tools/calendar-rsvp.ts +41 -0
- package/src/config/bundled-skills/google-calendar/tools/shared.ts +18 -0
- package/src/config/bundled-skills/google-calendar/types.ts +97 -0
- package/src/config/bundled-skills/image-studio/SKILL.md +32 -0
- package/src/config/bundled-skills/image-studio/TOOLS.json +42 -0
- package/src/config/bundled-skills/image-studio/tools/media-generate-image.ts +115 -0
- package/src/config/bundled-skills/macos-automation/SKILL.md +66 -0
- package/src/config/bundled-skills/messaging/SKILL.md +153 -0
- package/src/config/bundled-skills/messaging/TOOLS.json +357 -0
- package/src/config/bundled-skills/messaging/tools/gmail-archive.ts +23 -0
- package/src/config/bundled-skills/messaging/tools/gmail-batch-archive.ts +23 -0
- package/src/config/bundled-skills/messaging/tools/gmail-batch-label.ts +25 -0
- package/src/config/bundled-skills/messaging/tools/gmail-draft.ts +26 -0
- package/src/config/bundled-skills/messaging/tools/gmail-label.ts +25 -0
- package/src/config/bundled-skills/messaging/tools/gmail-trash.ts +23 -0
- package/src/config/bundled-skills/messaging/tools/gmail-unsubscribe.ts +84 -0
- package/src/config/bundled-skills/messaging/tools/messaging-analyze-activity.ts +18 -0
- package/src/config/bundled-skills/messaging/tools/messaging-analyze-style.ts +125 -0
- package/src/config/bundled-skills/messaging/tools/messaging-auth-test.ts +16 -0
- package/src/config/bundled-skills/messaging/tools/messaging-draft.ts +49 -0
- package/src/config/bundled-skills/messaging/tools/messaging-list-conversations.ts +21 -0
- package/src/config/bundled-skills/messaging/tools/messaging-mark-read.ts +25 -0
- package/src/config/bundled-skills/messaging/tools/messaging-read.ts +28 -0
- package/src/config/bundled-skills/messaging/tools/messaging-reply.ts +32 -0
- package/src/config/bundled-skills/messaging/tools/messaging-search.ts +22 -0
- package/src/config/bundled-skills/messaging/tools/messaging-send.ts +31 -0
- package/src/config/bundled-skills/messaging/tools/shared.ts +76 -0
- package/src/config/bundled-skills/messaging/tools/slack-add-reaction.ts +25 -0
- package/src/config/bundled-skills/messaging/tools/slack-leave-channel.ts +23 -0
- package/src/config/bundled-skills/phone-calls/SKILL.md +533 -0
- package/src/config/bundled-skills/playbooks/SKILL.md +31 -0
- package/src/config/bundled-skills/playbooks/TOOLS.json +126 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-create.ts +98 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-delete.ts +54 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-list.ts +76 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-update.ts +113 -0
- package/src/config/bundled-skills/public-ingress/SKILL.md +200 -0
- package/src/config/bundled-skills/reminder/SKILL.md +20 -0
- package/src/config/bundled-skills/reminder/TOOLS.json +67 -0
- package/src/config/bundled-skills/reminder/tools/reminder-cancel.ts +9 -0
- package/src/config/bundled-skills/reminder/tools/reminder-create.ts +9 -0
- package/src/config/bundled-skills/reminder/tools/reminder-list.ts +9 -0
- package/src/config/bundled-skills/schedule/SKILL.md +74 -0
- package/src/config/bundled-skills/schedule/TOOLS.json +135 -0
- package/src/config/bundled-skills/schedule/tools/schedule-create.ts +9 -0
- package/src/config/bundled-skills/schedule/tools/schedule-delete.ts +9 -0
- package/src/config/bundled-skills/schedule/tools/schedule-list.ts +9 -0
- package/src/config/bundled-skills/schedule/tools/schedule-update.ts +9 -0
- package/src/config/bundled-skills/self-upgrade/SKILL.md +68 -0
- package/src/config/bundled-skills/start-the-day/SKILL.md +70 -0
- package/src/config/bundled-skills/start-the-day/icon.svg +13 -0
- package/src/config/bundled-skills/subagent/SKILL.md +25 -0
- package/src/config/bundled-skills/subagent/TOOLS.json +107 -0
- package/src/config/bundled-skills/subagent/tools/subagent-abort.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-message.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-read.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-spawn.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-status.ts +9 -0
- package/src/config/bundled-skills/tasks/SKILL.md +28 -0
- package/src/config/bundled-skills/tasks/TOOLS.json +281 -0
- package/src/config/bundled-skills/tasks/tools/task-delete.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-add.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-remove.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-show.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-update.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-queue-run.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-run.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-save.ts +9 -0
- package/src/config/bundled-skills/transcribe/SKILL.md +25 -0
- package/src/config/bundled-skills/transcribe/TOOLS.json +32 -0
- package/src/config/bundled-skills/transcribe/tools/transcribe-media.ts +370 -0
- package/src/config/bundled-skills/twitter/SKILL.md +220 -0
- package/src/config/bundled-skills/watcher/SKILL.md +27 -0
- package/src/config/bundled-skills/watcher/TOOLS.json +147 -0
- package/src/config/bundled-skills/watcher/tools/watcher-create.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-delete.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-digest.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-list.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-update.ts +9 -0
- package/src/config/bundled-skills/weather/SKILL.md +37 -0
- package/src/config/bundled-skills/weather/TOOLS.json +32 -0
- package/src/config/bundled-skills/weather/icon.svg +24 -0
- package/src/config/bundled-skills/weather/tools/get-weather.ts +9 -0
- package/src/config/computer-use-prompt.ts +97 -0
- package/src/config/defaults.ts +263 -0
- package/src/config/loader.ts +339 -0
- package/src/config/schema.ts +1436 -0
- package/src/config/skill-state.ts +95 -0
- package/src/config/skills.ts +972 -0
- package/src/config/system-prompt.ts +675 -0
- package/src/config/templates/BOOTSTRAP.md +70 -0
- package/src/config/templates/IDENTITY.md +25 -0
- package/src/config/templates/LOOKS.md +25 -0
- package/src/config/templates/SOUL.md +37 -0
- package/src/config/templates/USER.md +19 -0
- package/src/config/types.ts +42 -0
- package/src/config/vellum-skills/chatgpt-import/SKILL.md +24 -0
- package/src/config/vellum-skills/chatgpt-import/TOOLS.json +23 -0
- package/src/config/vellum-skills/chatgpt-import/tools/chatgpt-import.ts +284 -0
- package/src/config/vellum-skills/deploy-fullstack-vercel/SKILL.md +179 -0
- package/src/config/vellum-skills/document-writer/SKILL.md +195 -0
- package/src/config/vellum-skills/google-oauth-setup/SKILL.md +199 -0
- package/src/config/vellum-skills/slack-oauth-setup/SKILL.md +153 -0
- package/src/config/vellum-skills/telegram-setup/SKILL.md +143 -0
- package/src/config/vellum-skills/twilio-setup/SKILL.md +213 -0
- package/src/contacts/contact-store.ts +410 -0
- package/src/contacts/index.ts +11 -0
- package/src/contacts/types.ts +28 -0
- package/src/context/token-estimator.ts +108 -0
- package/src/context/tool-result-truncation.ts +128 -0
- package/src/context/window-manager.ts +531 -0
- package/src/daemon/assistant-attachments.ts +691 -0
- package/src/daemon/classifier.ts +110 -0
- package/src/daemon/computer-use-session.ts +903 -0
- package/src/daemon/connection-policy.ts +41 -0
- package/src/daemon/date-context.ts +136 -0
- package/src/daemon/handlers/apps.ts +530 -0
- package/src/daemon/handlers/browser.ts +54 -0
- package/src/daemon/handlers/computer-use.ts +187 -0
- package/src/daemon/handlers/config.ts +1517 -0
- package/src/daemon/handlers/diagnostics.ts +338 -0
- package/src/daemon/handlers/documents.ts +173 -0
- package/src/daemon/handlers/home-base.ts +78 -0
- package/src/daemon/handlers/identity.ts +127 -0
- package/src/daemon/handlers/index.ts +129 -0
- package/src/daemon/handlers/misc.ts +331 -0
- package/src/daemon/handlers/open-bundle-handler.ts +80 -0
- package/src/daemon/handlers/publish.ts +187 -0
- package/src/daemon/handlers/sessions.ts +555 -0
- package/src/daemon/handlers/shared.ts +570 -0
- package/src/daemon/handlers/signing.ts +37 -0
- package/src/daemon/handlers/skills.ts +486 -0
- package/src/daemon/handlers/subagents.ts +210 -0
- package/src/daemon/handlers/twitter-auth.ts +198 -0
- package/src/daemon/handlers/work-items.ts +632 -0
- package/src/daemon/handlers/workspace-files.ts +75 -0
- package/src/daemon/handlers.ts +17 -0
- package/src/daemon/history-repair.ts +214 -0
- package/src/daemon/ipc-blob-store.ts +231 -0
- package/src/daemon/ipc-contract-inventory.json +495 -0
- package/src/daemon/ipc-contract-inventory.ts +126 -0
- package/src/daemon/ipc-contract.ts +2551 -0
- package/src/daemon/ipc-protocol.ts +75 -0
- package/src/daemon/ipc-validate.ts +188 -0
- package/src/daemon/lifecycle.ts +582 -0
- package/src/daemon/main.ts +21 -0
- package/src/daemon/media-visibility-policy.ts +57 -0
- package/src/daemon/ride-shotgun-handler.ts +309 -0
- package/src/daemon/server.ts +1215 -0
- package/src/daemon/session-agent-loop.ts +922 -0
- package/src/daemon/session-attachments.ts +196 -0
- package/src/daemon/session-conflict-gate.ts +184 -0
- package/src/daemon/session-dynamic-profile.ts +63 -0
- package/src/daemon/session-error.ts +290 -0
- package/src/daemon/session-evictor.ts +196 -0
- package/src/daemon/session-history.ts +437 -0
- package/src/daemon/session-lifecycle.ts +147 -0
- package/src/daemon/session-media-retry.ts +147 -0
- package/src/daemon/session-memory.ts +212 -0
- package/src/daemon/session-messaging.ts +145 -0
- package/src/daemon/session-notifiers.ts +193 -0
- package/src/daemon/session-process.ts +323 -0
- package/src/daemon/session-queue-manager.ts +82 -0
- package/src/daemon/session-runtime-assembly.ts +447 -0
- package/src/daemon/session-skill-tools.ts +356 -0
- package/src/daemon/session-slash.ts +305 -0
- package/src/daemon/session-surfaces.ts +702 -0
- package/src/daemon/session-tool-setup.ts +523 -0
- package/src/daemon/session-usage.ts +72 -0
- package/src/daemon/session-workspace.ts +19 -0
- package/src/daemon/session.ts +400 -0
- package/src/daemon/tls-certs.ts +189 -0
- package/src/daemon/trace-emitter.ts +82 -0
- package/src/daemon/video-thumbnail.ts +62 -0
- package/src/daemon/watch-handler.ts +274 -0
- package/src/doordash/client.ts +999 -0
- package/src/doordash/queries.ts +1311 -0
- package/src/doordash/query-extractor.ts +93 -0
- package/src/doordash/session.ts +82 -0
- package/src/email/provider.ts +117 -0
- package/src/email/providers/agentmail.ts +317 -0
- package/src/email/providers/index.ts +58 -0
- package/src/email/service.ts +303 -0
- package/src/email/types.ts +126 -0
- package/src/events/bus.ts +157 -0
- package/src/events/domain-events.ts +83 -0
- package/src/events/index.ts +18 -0
- package/src/events/tool-audit-listener.ts +80 -0
- package/src/events/tool-domain-event-publisher.ts +111 -0
- package/src/events/tool-metrics-listener.ts +159 -0
- package/src/events/tool-notification-listener.ts +17 -0
- package/src/events/tool-profiling-listener.ts +158 -0
- package/src/events/tool-trace-listener.ts +75 -0
- package/src/export/formatter.ts +98 -0
- package/src/followups/followup-store.ts +168 -0
- package/src/followups/index.ts +10 -0
- package/src/followups/types.ts +29 -0
- package/src/gallery/default-gallery.ts +795 -0
- package/src/gallery/gallery-manifest.ts +24 -0
- package/src/home-base/app-link-store.ts +82 -0
- package/src/home-base/bootstrap.ts +68 -0
- package/src/home-base/prebuilt/index.html +662 -0
- package/src/home-base/prebuilt/seed-metadata.json +21 -0
- package/src/home-base/prebuilt/seed.ts +112 -0
- package/src/home-base/prebuilt-home-base-updater.ts +30 -0
- package/src/hooks/cli.ts +163 -0
- package/src/hooks/config.ts +88 -0
- package/src/hooks/discovery.ts +110 -0
- package/src/hooks/manager.ts +124 -0
- package/src/hooks/runner.ts +123 -0
- package/src/hooks/templates.ts +52 -0
- package/src/hooks/types.ts +72 -0
- package/src/inbound/public-ingress-urls.ts +123 -0
- package/src/index.ts +81 -0
- package/src/instrument.ts +60 -0
- package/src/logfire.ts +99 -0
- package/src/media/gemini-image-service.ts +136 -0
- package/src/memory/account-store.ts +108 -0
- package/src/memory/admin.ts +211 -0
- package/src/memory/app-git-service.ts +295 -0
- package/src/memory/app-store.ts +577 -0
- package/src/memory/attachments-store.ts +397 -0
- package/src/memory/channel-delivery-store.ts +353 -0
- package/src/memory/channel-guardian-store.ts +669 -0
- package/src/memory/checkpoints.ts +52 -0
- package/src/memory/clarification-resolver.ts +298 -0
- package/src/memory/conflict-intent.ts +157 -0
- package/src/memory/conflict-policy.ts +73 -0
- package/src/memory/conflict-store.ts +350 -0
- package/src/memory/contradiction-checker.ts +358 -0
- package/src/memory/conversation-key-store.ts +122 -0
- package/src/memory/conversation-store.ts +470 -0
- package/src/memory/db.ts +1991 -0
- package/src/memory/embedding-backend.ts +229 -0
- package/src/memory/embedding-gemini.ts +52 -0
- package/src/memory/embedding-local.ts +65 -0
- package/src/memory/embedding-ollama.ts +55 -0
- package/src/memory/embedding-openai.ts +25 -0
- package/src/memory/entity-extractor.ts +474 -0
- package/src/memory/external-conversation-store.ts +234 -0
- package/src/memory/fingerprint.ts +20 -0
- package/src/memory/indexer.ts +156 -0
- package/src/memory/items-extractor.ts +461 -0
- package/src/memory/job-handlers/backfill.ts +139 -0
- package/src/memory/job-handlers/cleanup.ts +58 -0
- package/src/memory/job-handlers/conflict.ts +141 -0
- package/src/memory/job-handlers/embedding.ts +61 -0
- package/src/memory/job-handlers/extraction.ts +123 -0
- package/src/memory/job-handlers/index-maintenance.ts +54 -0
- package/src/memory/job-handlers/summarization.ts +286 -0
- package/src/memory/job-utils.ts +170 -0
- package/src/memory/jobs-store.ts +401 -0
- package/src/memory/jobs-worker.ts +313 -0
- package/src/memory/llm-request-log-store.ts +45 -0
- package/src/memory/llm-usage-store.ts +60 -0
- package/src/memory/message-content.ts +54 -0
- package/src/memory/profile-compiler.ts +160 -0
- package/src/memory/published-pages-store.ts +137 -0
- package/src/memory/qdrant-client.ts +366 -0
- package/src/memory/qdrant-manager.ts +242 -0
- package/src/memory/query-builder.ts +45 -0
- package/src/memory/retrieval-budget.ts +30 -0
- package/src/memory/retriever.ts +653 -0
- package/src/memory/runs-store.ts +305 -0
- package/src/memory/schema.ts +677 -0
- package/src/memory/search/entity.ts +298 -0
- package/src/memory/search/formatting.ts +207 -0
- package/src/memory/search/lexical.ts +227 -0
- package/src/memory/search/ranking.ts +401 -0
- package/src/memory/search/semantic.ts +121 -0
- package/src/memory/search/types.ts +137 -0
- package/src/memory/segmenter.ts +68 -0
- package/src/memory/shared-app-links-store.ts +138 -0
- package/src/memory/tool-usage-store.ts +62 -0
- package/src/messaging/activity-analyzer.ts +76 -0
- package/src/messaging/draft-store.ts +88 -0
- package/src/messaging/index.ts +3 -0
- package/src/messaging/provider-types.ts +80 -0
- package/src/messaging/provider.ts +52 -0
- package/src/messaging/providers/gmail/adapter.ts +193 -0
- package/src/messaging/providers/gmail/client.ts +204 -0
- package/src/messaging/providers/gmail/types.ts +90 -0
- package/src/messaging/providers/slack/adapter.ts +202 -0
- package/src/messaging/providers/slack/client.ts +198 -0
- package/src/messaging/providers/slack/types.ts +119 -0
- package/src/messaging/providers/telegram-bot/adapter.ts +162 -0
- package/src/messaging/providers/telegram-bot/client.ts +104 -0
- package/src/messaging/providers/telegram-bot/types.ts +15 -0
- package/src/messaging/registry.ts +35 -0
- package/src/messaging/style-analyzer.ts +159 -0
- package/src/messaging/thread-summarizer.ts +306 -0
- package/src/messaging/triage-engine.ts +323 -0
- package/src/messaging/types.ts +55 -0
- package/src/permissions/checker.ts +640 -0
- package/src/permissions/defaults.ts +254 -0
- package/src/permissions/prompter.ts +98 -0
- package/src/permissions/secret-prompter.ts +114 -0
- package/src/permissions/shell-identity.ts +227 -0
- package/src/permissions/trust-store.ts +607 -0
- package/src/permissions/types.ts +43 -0
- package/src/permissions/workspace-policy.ts +114 -0
- package/src/playbooks/index.ts +2 -0
- package/src/playbooks/playbook-compiler.ts +90 -0
- package/src/playbooks/types.ts +55 -0
- package/src/providers/anthropic/client.ts +751 -0
- package/src/providers/failover.ts +129 -0
- package/src/providers/fireworks/client.ts +20 -0
- package/src/providers/gemini/client.ts +285 -0
- package/src/providers/ollama/client.ts +30 -0
- package/src/providers/openai/client.ts +337 -0
- package/src/providers/openrouter/client.ts +20 -0
- package/src/providers/ratelimit.ts +93 -0
- package/src/providers/registry.ts +146 -0
- package/src/providers/retry.ts +81 -0
- package/src/providers/stream-timeout.ts +38 -0
- package/src/providers/types.ts +109 -0
- package/src/runtime/assistant-event-hub.ts +157 -0
- package/src/runtime/assistant-event.ts +82 -0
- package/src/runtime/channel-approval-parser.ts +60 -0
- package/src/runtime/channel-approval-types.ts +73 -0
- package/src/runtime/channel-approvals.ts +206 -0
- package/src/runtime/channel-guardian-service.ts +212 -0
- package/src/runtime/gateway-client.ts +58 -0
- package/src/runtime/http-server.ts +1076 -0
- package/src/runtime/http-types.ts +66 -0
- package/src/runtime/routes/app-routes.ts +174 -0
- package/src/runtime/routes/attachment-routes.ts +133 -0
- package/src/runtime/routes/call-routes.ts +190 -0
- package/src/runtime/routes/channel-routes.ts +1404 -0
- package/src/runtime/routes/conversation-routes.ts +352 -0
- package/src/runtime/routes/events-routes.ts +148 -0
- package/src/runtime/routes/run-routes.ts +257 -0
- package/src/runtime/routes/secret-routes.ts +76 -0
- package/src/runtime/run-orchestrator.ts +330 -0
- package/src/schedule/recurrence-engine.ts +162 -0
- package/src/schedule/recurrence-types.ts +67 -0
- package/src/schedule/schedule-store.ts +506 -0
- package/src/schedule/scheduler.ts +171 -0
- package/src/security/encrypted-store.ts +238 -0
- package/src/security/keychain.ts +252 -0
- package/src/security/oauth-callback-registry.ts +66 -0
- package/src/security/oauth2.ts +274 -0
- package/src/security/redaction.ts +89 -0
- package/src/security/secret-allowlist.ts +164 -0
- package/src/security/secret-ingress.ts +57 -0
- package/src/security/secret-scanner.ts +550 -0
- package/src/security/secure-keys.ts +180 -0
- package/src/security/token-manager.ts +141 -0
- package/src/services/published-app-updater.ts +69 -0
- package/src/services/vercel-deploy.ts +73 -0
- package/src/skills/active-skill-tools.ts +81 -0
- package/src/skills/clawhub.ts +414 -0
- package/src/skills/include-graph.ts +146 -0
- package/src/skills/managed-store.ts +233 -0
- package/src/skills/path-classifier.ts +128 -0
- package/src/skills/slash-commands.ts +174 -0
- package/src/skills/tool-manifest.ts +165 -0
- package/src/skills/version-hash.ts +110 -0
- package/src/slack/slack-webhook.ts +61 -0
- package/src/subagent/index.ts +19 -0
- package/src/subagent/manager.ts +511 -0
- package/src/subagent/types.ts +69 -0
- package/src/swarm/backend-claude-code.ts +145 -0
- package/src/swarm/index.ts +44 -0
- package/src/swarm/limits.ts +37 -0
- package/src/swarm/orchestrator.ts +279 -0
- package/src/swarm/plan-validator.ts +151 -0
- package/src/swarm/router-planner.ts +100 -0
- package/src/swarm/router-prompts.ts +36 -0
- package/src/swarm/synthesizer.ts +62 -0
- package/src/swarm/types.ts +62 -0
- package/src/swarm/worker-backend.ts +121 -0
- package/src/swarm/worker-prompts.ts +79 -0
- package/src/swarm/worker-runner.ts +164 -0
- package/src/tasks/SPEC.md +139 -0
- package/src/tasks/candidate-store.ts +86 -0
- package/src/tasks/ephemeral-permissions.ts +48 -0
- package/src/tasks/task-compiler.ts +199 -0
- package/src/tasks/task-runner.ts +90 -0
- package/src/tasks/task-scheduler.ts +21 -0
- package/src/tasks/task-store.ts +127 -0
- package/src/tasks/tool-sanitizer.ts +36 -0
- package/src/tools/apps/definitions.ts +59 -0
- package/src/tools/apps/executors.ts +313 -0
- package/src/tools/apps/open-proxy.ts +43 -0
- package/src/tools/apps/registry.ts +16 -0
- package/src/tools/assets/materialize.ts +218 -0
- package/src/tools/assets/search.ts +361 -0
- package/src/tools/browser/__tests__/auth-cache.test.ts +219 -0
- package/src/tools/browser/__tests__/auth-detector.test.ts +362 -0
- package/src/tools/browser/__tests__/jit-auth.test.ts +189 -0
- package/src/tools/browser/api-map.ts +293 -0
- package/src/tools/browser/auth-cache.ts +149 -0
- package/src/tools/browser/auth-detector.ts +347 -0
- package/src/tools/browser/auto-navigate.ts +270 -0
- package/src/tools/browser/browser-execution.ts +980 -0
- package/src/tools/browser/browser-handoff.ts +79 -0
- package/src/tools/browser/browser-manager.ts +715 -0
- package/src/tools/browser/browser-screencast.ts +217 -0
- package/src/tools/browser/headless-browser.ts +450 -0
- package/src/tools/browser/jit-auth.ts +51 -0
- package/src/tools/browser/network-recorder.ts +349 -0
- package/src/tools/browser/network-recording-types.ts +49 -0
- package/src/tools/browser/recording-store.ts +49 -0
- package/src/tools/browser/runtime-check.ts +43 -0
- package/src/tools/browser/x-auto-navigate.ts +207 -0
- package/src/tools/calls/call-end.ts +67 -0
- package/src/tools/calls/call-start.ts +81 -0
- package/src/tools/calls/call-status.ts +81 -0
- package/src/tools/claude-code/claude-code.ts +428 -0
- package/src/tools/computer-use/definitions.ts +443 -0
- package/src/tools/computer-use/registry.ts +22 -0
- package/src/tools/computer-use/request-computer-control.ts +53 -0
- package/src/tools/computer-use/skill-proxy-bridge.ts +28 -0
- package/src/tools/credentials/account-registry.ts +127 -0
- package/src/tools/credentials/broker-types.ts +107 -0
- package/src/tools/credentials/broker.ts +372 -0
- package/src/tools/credentials/domain-policy.ts +51 -0
- package/src/tools/credentials/host-pattern-match.ts +60 -0
- package/src/tools/credentials/metadata-store.ts +335 -0
- package/src/tools/credentials/policy-types.ts +52 -0
- package/src/tools/credentials/policy-validate.ts +80 -0
- package/src/tools/credentials/resolve.ts +122 -0
- package/src/tools/credentials/selection.ts +159 -0
- package/src/tools/credentials/tool-policy.ts +25 -0
- package/src/tools/credentials/vault.ts +657 -0
- package/src/tools/document/document-tool.ts +92 -0
- package/src/tools/document/editor-template.ts +237 -0
- package/src/tools/execution-target.ts +21 -0
- package/src/tools/execution-timeout.ts +49 -0
- package/src/tools/executor.ts +815 -0
- package/src/tools/filesystem/edit.ts +127 -0
- package/src/tools/filesystem/fuzzy-match.ts +202 -0
- package/src/tools/filesystem/read.ts +71 -0
- package/src/tools/filesystem/view-image.ts +199 -0
- package/src/tools/filesystem/write.ts +79 -0
- package/src/tools/followups/followup_create.ts +76 -0
- package/src/tools/followups/followup_list.ts +60 -0
- package/src/tools/followups/followup_resolve.ts +56 -0
- package/src/tools/host-filesystem/edit.ts +125 -0
- package/src/tools/host-filesystem/read.ts +80 -0
- package/src/tools/host-filesystem/write.ts +76 -0
- package/src/tools/host-terminal/cli-discover.ts +180 -0
- package/src/tools/host-terminal/host-shell.ts +191 -0
- package/src/tools/memory/definitions.ts +69 -0
- package/src/tools/memory/handlers.ts +246 -0
- package/src/tools/memory/register.ts +66 -0
- package/src/tools/network/__tests__/web-search.test.ts +427 -0
- package/src/tools/network/domain-normalize.ts +85 -0
- package/src/tools/network/script-proxy/__tests__/logging.test.ts +248 -0
- package/src/tools/network/script-proxy/__tests__/policy.test.ts +234 -0
- package/src/tools/network/script-proxy/__tests__/router.test.ts +76 -0
- package/src/tools/network/script-proxy/certs.ts +237 -0
- package/src/tools/network/script-proxy/connect-tunnel.ts +82 -0
- package/src/tools/network/script-proxy/http-forwarder.ts +151 -0
- package/src/tools/network/script-proxy/index.ts +28 -0
- package/src/tools/network/script-proxy/logging.ts +196 -0
- package/src/tools/network/script-proxy/mitm-handler.ts +269 -0
- package/src/tools/network/script-proxy/policy.ts +152 -0
- package/src/tools/network/script-proxy/router.ts +60 -0
- package/src/tools/network/script-proxy/server.ts +136 -0
- package/src/tools/network/script-proxy/session-manager.ts +534 -0
- package/src/tools/network/script-proxy/types.ts +125 -0
- package/src/tools/network/url-safety.ts +227 -0
- package/src/tools/network/web-fetch.ts +713 -0
- package/src/tools/network/web-search.ts +296 -0
- package/src/tools/policy-context.ts +29 -0
- package/src/tools/registry.ts +295 -0
- package/src/tools/reminder/reminder-store.ts +148 -0
- package/src/tools/reminder/reminder.ts +80 -0
- package/src/tools/schedule/create.ts +81 -0
- package/src/tools/schedule/delete.ts +28 -0
- package/src/tools/schedule/list.ts +69 -0
- package/src/tools/schedule/update.ts +97 -0
- package/src/tools/shared/filesystem/edit-engine.ts +56 -0
- package/src/tools/shared/filesystem/errors.ts +85 -0
- package/src/tools/shared/filesystem/file-ops-service.ts +215 -0
- package/src/tools/shared/filesystem/format-diff.ts +35 -0
- package/src/tools/shared/filesystem/path-policy.ts +125 -0
- package/src/tools/shared/filesystem/size-guard.ts +41 -0
- package/src/tools/shared/filesystem/types.ts +80 -0
- package/src/tools/shared/shell-output.ts +52 -0
- package/src/tools/skills/delete-managed.ts +60 -0
- package/src/tools/skills/load.ts +139 -0
- package/src/tools/skills/sandbox-runner.ts +279 -0
- package/src/tools/skills/scaffold-managed.ts +150 -0
- package/src/tools/skills/script-contract.ts +6 -0
- package/src/tools/skills/skill-script-runner.ts +86 -0
- package/src/tools/skills/skill-tool-factory.ts +64 -0
- package/src/tools/skills/vellum-catalog.ts +217 -0
- package/src/tools/subagent/abort.ts +33 -0
- package/src/tools/subagent/message.ts +39 -0
- package/src/tools/subagent/read.ts +67 -0
- package/src/tools/subagent/spawn.ts +46 -0
- package/src/tools/subagent/status.ts +45 -0
- package/src/tools/swarm/delegate.ts +183 -0
- package/src/tools/system/request-permission.ts +98 -0
- package/src/tools/system/version.ts +43 -0
- package/src/tools/tasks/index.ts +27 -0
- package/src/tools/tasks/task-delete.ts +82 -0
- package/src/tools/tasks/task-list.ts +44 -0
- package/src/tools/tasks/task-run.ts +97 -0
- package/src/tools/tasks/task-save.ts +47 -0
- package/src/tools/tasks/work-item-enqueue.ts +234 -0
- package/src/tools/tasks/work-item-list.ts +55 -0
- package/src/tools/tasks/work-item-remove.ts +60 -0
- package/src/tools/tasks/work-item-run.ts +78 -0
- package/src/tools/tasks/work-item-update.ts +114 -0
- package/src/tools/terminal/backends/docker.ts +372 -0
- package/src/tools/terminal/backends/native.ts +190 -0
- package/src/tools/terminal/backends/types.ts +26 -0
- package/src/tools/terminal/evaluate-typescript.ts +275 -0
- package/src/tools/terminal/parser.ts +413 -0
- package/src/tools/terminal/safe-env.ts +37 -0
- package/src/tools/terminal/sandbox-diagnostics.ts +149 -0
- package/src/tools/terminal/sandbox.ts +44 -0
- package/src/tools/terminal/shell.ts +257 -0
- package/src/tools/tool-manifest.ts +198 -0
- package/src/tools/types.ts +176 -0
- package/src/tools/ui-surface/definitions.ts +244 -0
- package/src/tools/ui-surface/registry.ts +14 -0
- package/src/tools/watch/screen-watch.ts +130 -0
- package/src/tools/watch/watch-state.ts +119 -0
- package/src/tools/watcher/create.ts +64 -0
- package/src/tools/watcher/delete.ts +27 -0
- package/src/tools/watcher/digest.ts +50 -0
- package/src/tools/watcher/list.ts +60 -0
- package/src/tools/watcher/update.ts +56 -0
- package/src/tools/weather/service.ts +551 -0
- package/src/twitter/client.ts +690 -0
- package/src/twitter/oauth-client.ts +102 -0
- package/src/twitter/router.ts +101 -0
- package/src/twitter/session.ts +91 -0
- package/src/usage/actors.ts +24 -0
- package/src/usage/types.ts +37 -0
- package/src/util/clipboard.ts +33 -0
- package/src/util/content-id.ts +16 -0
- package/src/util/debounce.ts +88 -0
- package/src/util/diff.ts +181 -0
- package/src/util/errors.ts +129 -0
- package/src/util/logger.ts +243 -0
- package/src/util/network-info.ts +47 -0
- package/src/util/platform.ts +632 -0
- package/src/util/pricing.ts +150 -0
- package/src/util/promise-guard.ts +37 -0
- package/src/util/retry.ts +98 -0
- package/src/util/spinner.ts +51 -0
- package/src/util/time.ts +16 -0
- package/src/util/truncate.ts +6 -0
- package/src/util/xml.ts +4 -0
- package/src/version.ts +3 -0
- package/src/watcher/constants.ts +11 -0
- package/src/watcher/engine.ts +199 -0
- package/src/watcher/provider-registry.ts +15 -0
- package/src/watcher/provider-types.ts +48 -0
- package/src/watcher/providers/gmail.ts +198 -0
- package/src/watcher/providers/google-calendar.ts +228 -0
- package/src/watcher/providers/slack.ts +129 -0
- package/src/watcher/watcher-store.ts +419 -0
- package/src/work-items/work-item-runner.ts +171 -0
- package/src/work-items/work-item-store.ts +325 -0
- package/src/workspace/commit-message-enrichment-service.ts +284 -0
- package/src/workspace/commit-message-provider.ts +95 -0
- package/src/workspace/git-service.ts +857 -0
- package/src/workspace/heartbeat-service.ts +345 -0
- package/src/workspace/provider-commit-message-generator.ts +285 -0
- package/src/workspace/top-level-renderer.ts +19 -0
- package/src/workspace/top-level-scanner.ts +41 -0
- package/src/workspace/turn-commit.ts +175 -0
- package/tsconfig.json +21 -0
|
@@ -0,0 +1,999 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DoorDash GraphQL API client.
|
|
3
|
+
* Executes GraphQL queries through Chrome's CDP (Runtime.evaluate) so requests
|
|
4
|
+
* go through the browser's authenticated session with Cloudflare tokens intact.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import {
|
|
8
|
+
loadSession,
|
|
9
|
+
type DoorDashSession,
|
|
10
|
+
} from './session.js';
|
|
11
|
+
import {
|
|
12
|
+
SEARCH_QUERY,
|
|
13
|
+
HOME_PAGE_QUERY,
|
|
14
|
+
STORE_PAGE_QUERY,
|
|
15
|
+
RETAIL_STORE_FEED_QUERY,
|
|
16
|
+
RETAIL_SEARCH_QUERY,
|
|
17
|
+
ITEM_PAGE_QUERY,
|
|
18
|
+
REMOVE_CART_ITEM_QUERY,
|
|
19
|
+
DETAILED_CART_QUERY,
|
|
20
|
+
LIST_CARTS_QUERY,
|
|
21
|
+
DROPOFF_OPTIONS_QUERY,
|
|
22
|
+
CREATE_ORDER_FROM_CART_QUERY,
|
|
23
|
+
PAYMENT_METHODS_QUERY,
|
|
24
|
+
UPDATE_CART_ITEM_QUERY,
|
|
25
|
+
} from './queries.js';
|
|
26
|
+
import { loadCapturedQueries } from './query-extractor.js';
|
|
27
|
+
import { truncate } from '../util/truncate.js';
|
|
28
|
+
|
|
29
|
+
const GRAPHQL_BASE = 'https://www.doordash.com/graphql';
|
|
30
|
+
const CDP_BASE = 'http://localhost:9222';
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Returns a captured query if one exists for the given operation name,
|
|
34
|
+
* otherwise falls back to the static query string from queries.ts.
|
|
35
|
+
*/
|
|
36
|
+
function getQuery(operationName: string, staticFallback: string): string {
|
|
37
|
+
const captured = loadCapturedQueries();
|
|
38
|
+
return captured[operationName]?.query ?? staticFallback;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
interface GraphQLResponse<T = unknown> {
|
|
42
|
+
data?: T;
|
|
43
|
+
errors?: Array<{ message: string; extensions?: unknown }>;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/** Thrown when the session is missing or expired. The CLI handles this specially. */
|
|
47
|
+
export class SessionExpiredError extends Error {
|
|
48
|
+
constructor(reason: string) {
|
|
49
|
+
super(reason);
|
|
50
|
+
this.name = 'SessionExpiredError';
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/** Thrown when DoorDash returns HTTP 403 (rate limited). */
|
|
55
|
+
export class RateLimitError extends Error {
|
|
56
|
+
constructor(reason: string) {
|
|
57
|
+
super(reason);
|
|
58
|
+
this.name = 'RateLimitError';
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function requireSession(): DoorDashSession {
|
|
63
|
+
const session = loadSession();
|
|
64
|
+
if (!session) {
|
|
65
|
+
throw new SessionExpiredError('No DoorDash session found.');
|
|
66
|
+
}
|
|
67
|
+
return session;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Find a Chrome tab on doordash.com and return its WebSocket debugger URL.
|
|
72
|
+
*/
|
|
73
|
+
async function findDoordashTab(): Promise<string> {
|
|
74
|
+
const res = await fetch(`${CDP_BASE}/json/list`).catch(() => null);
|
|
75
|
+
if (!res?.ok) {
|
|
76
|
+
throw new SessionExpiredError('Chrome CDP not available. Run `vellum doordash refresh` first.');
|
|
77
|
+
}
|
|
78
|
+
const targets = (await res.json()) as Array<{ type: string; url: string; webSocketDebuggerUrl: string }>;
|
|
79
|
+
// Prefer a tab already on doordash.com
|
|
80
|
+
const ddTab = targets.find(
|
|
81
|
+
t => t.type === 'page' && t.url.includes('doordash.com'),
|
|
82
|
+
);
|
|
83
|
+
const tab = ddTab ?? targets.find(t => t.type === 'page');
|
|
84
|
+
if (!tab?.webSocketDebuggerUrl) {
|
|
85
|
+
throw new SessionExpiredError('No Chrome tab available for DoorDash requests.');
|
|
86
|
+
}
|
|
87
|
+
return tab.webSocketDebuggerUrl;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Execute a fetch() call inside Chrome's page context via CDP Runtime.evaluate.
|
|
92
|
+
* This ensures the request uses the browser's cookies and Cloudflare clearance.
|
|
93
|
+
*/
|
|
94
|
+
async function cdpFetch(wsUrl: string, url: string, body: string): Promise<unknown> {
|
|
95
|
+
return new Promise((resolve, reject) => {
|
|
96
|
+
const ws = new WebSocket(wsUrl);
|
|
97
|
+
const id = 1;
|
|
98
|
+
|
|
99
|
+
const timeout = setTimeout(() => {
|
|
100
|
+
ws.close();
|
|
101
|
+
reject(new Error('CDP fetch timed out after 30s'));
|
|
102
|
+
}, 30000);
|
|
103
|
+
|
|
104
|
+
ws.onopen = () => {
|
|
105
|
+
// First navigate to doordash.com if not already there (needed for CORS)
|
|
106
|
+
// Extract CSRF token from cookies and include in fetch headers
|
|
107
|
+
const fetchScript = `
|
|
108
|
+
(function() {
|
|
109
|
+
var csrf = (document.cookie.match(/csrf_token=([^;]+)/) || [])[1] || '';
|
|
110
|
+
return fetch(${JSON.stringify(url)}, {
|
|
111
|
+
method: 'POST',
|
|
112
|
+
headers: {
|
|
113
|
+
'Content-Type': 'application/json',
|
|
114
|
+
'x-channel-id': 'marketplace',
|
|
115
|
+
'x-experience-id': 'doordash',
|
|
116
|
+
'x-csrftoken': csrf,
|
|
117
|
+
'apollographql-client-name': '@doordash/app-consumer-production-ssr-client',
|
|
118
|
+
'apollographql-client-version': '3.0',
|
|
119
|
+
},
|
|
120
|
+
body: ${JSON.stringify(body)},
|
|
121
|
+
credentials: 'include',
|
|
122
|
+
})
|
|
123
|
+
.then(function(r) {
|
|
124
|
+
if (!r.ok) return r.text().then(function(t) {
|
|
125
|
+
return JSON.stringify({ __status: r.status, __error: true, __body: t.substring(0, 500) });
|
|
126
|
+
});
|
|
127
|
+
return r.text();
|
|
128
|
+
})
|
|
129
|
+
.catch(function(e) { return JSON.stringify({ __error: true, __message: e.message }); });
|
|
130
|
+
})()
|
|
131
|
+
`;
|
|
132
|
+
|
|
133
|
+
ws.send(JSON.stringify({
|
|
134
|
+
id,
|
|
135
|
+
method: 'Runtime.evaluate',
|
|
136
|
+
params: {
|
|
137
|
+
expression: fetchScript,
|
|
138
|
+
awaitPromise: true,
|
|
139
|
+
returnByValue: true,
|
|
140
|
+
},
|
|
141
|
+
}));
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
ws.onmessage = (event) => {
|
|
145
|
+
try {
|
|
146
|
+
const msg = JSON.parse(typeof event.data === 'string' ? event.data : '');
|
|
147
|
+
if (msg.id === id) {
|
|
148
|
+
clearTimeout(timeout);
|
|
149
|
+
ws.close();
|
|
150
|
+
|
|
151
|
+
if (msg.error) {
|
|
152
|
+
reject(new Error(`CDP error: ${msg.error.message}`));
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
const value = msg.result?.result?.value;
|
|
157
|
+
if (!value) {
|
|
158
|
+
reject(new Error('Empty CDP response'));
|
|
159
|
+
return;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
const parsed = typeof value === 'string' ? JSON.parse(value) : value;
|
|
163
|
+
if (parsed.__error) {
|
|
164
|
+
if (parsed.__status === 401) {
|
|
165
|
+
reject(new SessionExpiredError('DoorDash session has expired.'));
|
|
166
|
+
} else if (parsed.__status === 403) {
|
|
167
|
+
reject(new RateLimitError('DoorDash rate limit hit (HTTP 403).'));
|
|
168
|
+
} else {
|
|
169
|
+
reject(new Error(parsed.__message ?? `HTTP ${parsed.__status}: ${parsed.__body ?? ''}`));
|
|
170
|
+
}
|
|
171
|
+
return;
|
|
172
|
+
}
|
|
173
|
+
resolve(parsed);
|
|
174
|
+
}
|
|
175
|
+
} catch (err) {
|
|
176
|
+
clearTimeout(timeout);
|
|
177
|
+
ws.close();
|
|
178
|
+
reject(err);
|
|
179
|
+
}
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
ws.onerror = () => {
|
|
183
|
+
clearTimeout(timeout);
|
|
184
|
+
reject(new SessionExpiredError('CDP connection failed.'));
|
|
185
|
+
};
|
|
186
|
+
});
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
let lastRequestTime = 0;
|
|
190
|
+
|
|
191
|
+
async function graphql<T = unknown>(
|
|
192
|
+
operationName: string,
|
|
193
|
+
query: string,
|
|
194
|
+
variables: Record<string, unknown>,
|
|
195
|
+
_session?: DoorDashSession,
|
|
196
|
+
): Promise<T> {
|
|
197
|
+
if (!_session) requireSession();
|
|
198
|
+
|
|
199
|
+
const wsUrl = await findDoordashTab();
|
|
200
|
+
const url = `${GRAPHQL_BASE}/${operationName}?operation=${operationName}`;
|
|
201
|
+
const body = JSON.stringify({ operationName, variables, query });
|
|
202
|
+
|
|
203
|
+
const backoffSchedule = [5000, 10000, 20000];
|
|
204
|
+
|
|
205
|
+
for (let attempt = 0; ; attempt++) {
|
|
206
|
+
// Inter-request delay
|
|
207
|
+
const now = Date.now();
|
|
208
|
+
const elapsed = now - lastRequestTime;
|
|
209
|
+
if (lastRequestTime > 0 && elapsed < 2000) {
|
|
210
|
+
await new Promise(r => setTimeout(r, 2000 - elapsed));
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
try {
|
|
214
|
+
lastRequestTime = Date.now();
|
|
215
|
+
const json = (await cdpFetch(wsUrl, url, body)) as GraphQLResponse<T>;
|
|
216
|
+
|
|
217
|
+
if (json.errors?.length) {
|
|
218
|
+
const msgs = json.errors.map(e => e.message || JSON.stringify(e)).join('; ');
|
|
219
|
+
throw new Error(`Unexpected response from DoorDash API: ${msgs}`);
|
|
220
|
+
}
|
|
221
|
+
if (!json.data) {
|
|
222
|
+
throw new Error('Unexpected response format from DoorDash API');
|
|
223
|
+
}
|
|
224
|
+
return json.data;
|
|
225
|
+
} catch (err) {
|
|
226
|
+
if (err instanceof RateLimitError && attempt < backoffSchedule.length) {
|
|
227
|
+
const delay = backoffSchedule[attempt];
|
|
228
|
+
process.stderr.write(
|
|
229
|
+
`[doordash] Rate limited, retrying in ${delay / 1000}s... (attempt ${attempt + 1}/${backoffSchedule.length})\n`,
|
|
230
|
+
);
|
|
231
|
+
await new Promise(r => setTimeout(r, delay));
|
|
232
|
+
continue;
|
|
233
|
+
}
|
|
234
|
+
throw err;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// ---------------------------------------------------------------------------
|
|
240
|
+
// Public API
|
|
241
|
+
// ---------------------------------------------------------------------------
|
|
242
|
+
|
|
243
|
+
export interface SearchResult {
|
|
244
|
+
id: string;
|
|
245
|
+
name: string;
|
|
246
|
+
description?: string;
|
|
247
|
+
imageUrl?: string;
|
|
248
|
+
rating?: string;
|
|
249
|
+
deliveryFee?: string;
|
|
250
|
+
storeId?: string;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export async function search(query: string): Promise<SearchResult[]> {
|
|
254
|
+
const data = await graphql<{ autocompleteFacetFeed: unknown }>(
|
|
255
|
+
'autocompleteFacetFeed',
|
|
256
|
+
getQuery('autocompleteFacetFeed', SEARCH_QUERY),
|
|
257
|
+
{ query, serializedBundleGlobalSearchContext: null },
|
|
258
|
+
);
|
|
259
|
+
return extractSearchResults(data.autocompleteFacetFeed);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Search for items/stores using the home page feed with a filter query.
|
|
264
|
+
* This works for convenience/retail stores that don't expose menus through storepageFeed.
|
|
265
|
+
*/
|
|
266
|
+
export async function searchItems(query: string, opts?: { debug?: boolean }): Promise<SearchResult[]> {
|
|
267
|
+
const data = await graphql<{ homePageFacetFeed: unknown }>(
|
|
268
|
+
'homePageFacetFeed',
|
|
269
|
+
getQuery('homePageFacetFeed', HOME_PAGE_QUERY),
|
|
270
|
+
{
|
|
271
|
+
cursor: null,
|
|
272
|
+
filterQuery: query,
|
|
273
|
+
displayHeader: false,
|
|
274
|
+
isDebug: false,
|
|
275
|
+
cuisineFilterVerticalIds: '',
|
|
276
|
+
},
|
|
277
|
+
);
|
|
278
|
+
if (opts?.debug) {
|
|
279
|
+
process.stderr.write(
|
|
280
|
+
`[debug] homePageFacetFeed raw: ${truncate(JSON.stringify(data.homePageFacetFeed), 3000, '')}\n`,
|
|
281
|
+
);
|
|
282
|
+
}
|
|
283
|
+
return extractSearchResults(data.homePageFacetFeed);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Search for items within a specific retail/convenience store.
|
|
288
|
+
* Uses the retailSearch API (convenienceSearchQuery).
|
|
289
|
+
*/
|
|
290
|
+
export async function retailSearch(storeId: string, query: string, opts?: { limit?: number }): Promise<{
|
|
291
|
+
items: MenuItem[];
|
|
292
|
+
totalCount: number;
|
|
293
|
+
suggestedKeyword?: string;
|
|
294
|
+
}> {
|
|
295
|
+
const data = await graphql<{ retailSearch: Record<string, unknown> }>(
|
|
296
|
+
'convenienceSearchQuery',
|
|
297
|
+
getQuery('convenienceSearchQuery', RETAIL_SEARCH_QUERY),
|
|
298
|
+
{
|
|
299
|
+
input: {
|
|
300
|
+
query,
|
|
301
|
+
storeId,
|
|
302
|
+
disableSpellCheck: false,
|
|
303
|
+
limit: opts?.limit ?? 30,
|
|
304
|
+
origin: 'RETAIL_SEARCH',
|
|
305
|
+
filterQuery: '',
|
|
306
|
+
cursor: null,
|
|
307
|
+
aggregateStoreIds: [],
|
|
308
|
+
isDebug: false,
|
|
309
|
+
},
|
|
310
|
+
},
|
|
311
|
+
);
|
|
312
|
+
const result = data.retailSearch;
|
|
313
|
+
const legoItems = (result.legoRetailItems ?? []) as Array<Record<string, unknown>>;
|
|
314
|
+
const summary = (result.searchSummary ?? {}) as Record<string, unknown>;
|
|
315
|
+
|
|
316
|
+
const items: MenuItem[] = [];
|
|
317
|
+
for (const facet of legoItems) {
|
|
318
|
+
try {
|
|
319
|
+
const customStr = facet.custom as string | undefined;
|
|
320
|
+
if (!customStr) continue;
|
|
321
|
+
const custom = JSON.parse(customStr) as Record<string, unknown>;
|
|
322
|
+
const itemData = custom.item_data as Record<string, unknown> | undefined;
|
|
323
|
+
if (!itemData) continue;
|
|
324
|
+
const price = itemData.price as Record<string, unknown> | undefined;
|
|
325
|
+
const image = custom.image as Record<string, Record<string, string>> | undefined;
|
|
326
|
+
items.push({
|
|
327
|
+
id: String(itemData.item_id ?? ''),
|
|
328
|
+
name: String(itemData.item_name ?? ''),
|
|
329
|
+
description: itemData.description as string | undefined,
|
|
330
|
+
price: price?.display_string as string | undefined,
|
|
331
|
+
imageUrl: image?.remote?.uri,
|
|
332
|
+
storeId: String(itemData.store_id ?? ''),
|
|
333
|
+
menuId: String(itemData.menu_id ?? ''),
|
|
334
|
+
unitAmount: price?.unit_amount as number | undefined,
|
|
335
|
+
});
|
|
336
|
+
} catch { /* skip malformed entries */ }
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
return {
|
|
340
|
+
items,
|
|
341
|
+
totalCount: Number(summary.totalCount ?? items.length),
|
|
342
|
+
suggestedKeyword: summary.suggestedSearchKeyword as string | undefined,
|
|
343
|
+
};
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export interface StoreInfo {
|
|
347
|
+
id: string;
|
|
348
|
+
name: string;
|
|
349
|
+
description?: string;
|
|
350
|
+
address?: string;
|
|
351
|
+
rating?: number;
|
|
352
|
+
numRatings?: string;
|
|
353
|
+
deliveryFee?: string;
|
|
354
|
+
deliveryTime?: string;
|
|
355
|
+
priceRange?: string;
|
|
356
|
+
categories: Array<{ id: string; name: string; numItems: number }>;
|
|
357
|
+
items: Array<MenuItem>;
|
|
358
|
+
/** True for convenience/pharmacy stores that require store-search for items */
|
|
359
|
+
isRetail?: boolean;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export interface MenuItem {
|
|
363
|
+
id: string;
|
|
364
|
+
name: string;
|
|
365
|
+
description?: string;
|
|
366
|
+
price?: string;
|
|
367
|
+
imageUrl?: string;
|
|
368
|
+
storeId?: string;
|
|
369
|
+
menuId?: string;
|
|
370
|
+
unitAmount?: number;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
export async function getStoreMenu(
|
|
374
|
+
storeId: string,
|
|
375
|
+
menuId?: string,
|
|
376
|
+
opts?: { debug?: boolean },
|
|
377
|
+
): Promise<StoreInfo> {
|
|
378
|
+
const data = await graphql<{ storepageFeed: Record<string, unknown> }>(
|
|
379
|
+
'storepageFeed',
|
|
380
|
+
getQuery('storepageFeed', STORE_PAGE_QUERY),
|
|
381
|
+
{
|
|
382
|
+
storeId,
|
|
383
|
+
menuId: menuId ?? null,
|
|
384
|
+
isMerchantPreview: false,
|
|
385
|
+
fulfillmentType: 'Delivery',
|
|
386
|
+
cursor: null,
|
|
387
|
+
scheduledTime: null,
|
|
388
|
+
entryPoint: 'HomePage',
|
|
389
|
+
},
|
|
390
|
+
);
|
|
391
|
+
const feed = data.storepageFeed;
|
|
392
|
+
const rawItemLists = (feed.itemLists ?? []) as unknown[];
|
|
393
|
+
const rawCarousels = (feed.carousels ?? []) as unknown[];
|
|
394
|
+
|
|
395
|
+
if (opts?.debug) {
|
|
396
|
+
const menuBook = feed.menuBook as Record<string, unknown> | undefined;
|
|
397
|
+
process.stderr.write(
|
|
398
|
+
`[debug] storepageFeed keys: ${Object.keys(feed).join(', ')}\n` +
|
|
399
|
+
`[debug] itemLists count: ${rawItemLists.length}, carousels count: ${rawCarousels.length}\n` +
|
|
400
|
+
`[debug] menuBook: ${truncate(JSON.stringify(menuBook), 2000, '')}\n`,
|
|
401
|
+
);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
const info = extractStoreInfo(feed);
|
|
405
|
+
|
|
406
|
+
// If storepageFeed returned no items, try the retail store feed
|
|
407
|
+
// (convenience/pharmacy stores use a different API)
|
|
408
|
+
if (info.items.length === 0 && info.categories.length === 0) {
|
|
409
|
+
if (opts?.debug) {
|
|
410
|
+
process.stderr.write('[debug] No items from storepageFeed, trying retailStorePageFeed...\n');
|
|
411
|
+
}
|
|
412
|
+
return getRetailStoreMenu(storeId, opts);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
return info;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* Get menu for a retail/convenience store (CVS, Duane Reade, etc.).
|
|
420
|
+
* These stores use `retailStorePageFeed` instead of `storepageFeed`.
|
|
421
|
+
*/
|
|
422
|
+
export async function getRetailStoreMenu(
|
|
423
|
+
storeId: string,
|
|
424
|
+
opts?: { debug?: boolean },
|
|
425
|
+
): Promise<StoreInfo> {
|
|
426
|
+
const data = await graphql<{ retailStorePageFeed: Record<string, unknown> }>(
|
|
427
|
+
'storeFeed',
|
|
428
|
+
getQuery('storeFeed', RETAIL_STORE_FEED_QUERY),
|
|
429
|
+
{
|
|
430
|
+
storeId,
|
|
431
|
+
attrSrc: 'store',
|
|
432
|
+
cursor: null,
|
|
433
|
+
enableDebug: false,
|
|
434
|
+
},
|
|
435
|
+
);
|
|
436
|
+
if (opts?.debug) {
|
|
437
|
+
const feed = data.retailStorePageFeed;
|
|
438
|
+
const l1Cats = (feed.l1Categories ?? []) as unknown[];
|
|
439
|
+
const collections = (feed.collections ?? []) as unknown[];
|
|
440
|
+
const page = feed.page as Record<string, unknown> | undefined;
|
|
441
|
+
process.stderr.write(
|
|
442
|
+
`[debug] retailStorePageFeed keys: ${Object.keys(feed).join(', ')}\n` +
|
|
443
|
+
`[debug] l1Categories count: ${l1Cats.length}, collections count: ${collections.length}\n` +
|
|
444
|
+
`[debug] page: ${truncate(JSON.stringify(page), 500, '')}\n` +
|
|
445
|
+
`[debug] collections sample: ${truncate(JSON.stringify(collections.slice(0, 2)), 2000, '')}\n`,
|
|
446
|
+
);
|
|
447
|
+
}
|
|
448
|
+
return extractRetailStoreInfo(data.retailStorePageFeed);
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
export interface ItemDetails {
|
|
452
|
+
id: string;
|
|
453
|
+
name: string;
|
|
454
|
+
description?: string;
|
|
455
|
+
price?: string;
|
|
456
|
+
unitAmount?: number;
|
|
457
|
+
currency?: string;
|
|
458
|
+
imageUrl?: string;
|
|
459
|
+
menuId?: string;
|
|
460
|
+
options: Array<{
|
|
461
|
+
id: string;
|
|
462
|
+
name: string;
|
|
463
|
+
required: boolean;
|
|
464
|
+
minSelections?: number;
|
|
465
|
+
maxSelections?: number;
|
|
466
|
+
choices: Array<{
|
|
467
|
+
id: string;
|
|
468
|
+
name: string;
|
|
469
|
+
price?: string;
|
|
470
|
+
unitAmount?: number;
|
|
471
|
+
defaultQuantity?: number;
|
|
472
|
+
nestedOptions?: Array<{
|
|
473
|
+
id: string;
|
|
474
|
+
name: string;
|
|
475
|
+
required: boolean;
|
|
476
|
+
choices: Array<{
|
|
477
|
+
id: string;
|
|
478
|
+
name: string;
|
|
479
|
+
price?: string;
|
|
480
|
+
}>;
|
|
481
|
+
}>;
|
|
482
|
+
}>;
|
|
483
|
+
}>;
|
|
484
|
+
specialInstructionsConfig?: {
|
|
485
|
+
maxLength: number;
|
|
486
|
+
placeholderText?: string;
|
|
487
|
+
isEnabled: boolean;
|
|
488
|
+
};
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
export async function getItemDetails(
|
|
492
|
+
storeId: string,
|
|
493
|
+
itemId: string,
|
|
494
|
+
): Promise<ItemDetails> {
|
|
495
|
+
const data = await graphql<{ itemPage: Record<string, unknown> }>(
|
|
496
|
+
'itemPage',
|
|
497
|
+
getQuery('itemPage', ITEM_PAGE_QUERY),
|
|
498
|
+
{
|
|
499
|
+
storeId,
|
|
500
|
+
itemId,
|
|
501
|
+
isMerchantPreview: false,
|
|
502
|
+
isNested: false,
|
|
503
|
+
shouldFetchPresetCarousels: false,
|
|
504
|
+
fulfillmentType: 'Delivery',
|
|
505
|
+
shouldFetchStoreLiteData: false,
|
|
506
|
+
},
|
|
507
|
+
);
|
|
508
|
+
return extractItemDetails(data.itemPage);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
export interface CartSummary {
|
|
512
|
+
cartId: string;
|
|
513
|
+
storeName?: string;
|
|
514
|
+
storeId?: string;
|
|
515
|
+
subtotal?: number;
|
|
516
|
+
total?: number;
|
|
517
|
+
items: Array<{
|
|
518
|
+
id: string;
|
|
519
|
+
name: string;
|
|
520
|
+
quantity: number;
|
|
521
|
+
price?: string;
|
|
522
|
+
}>;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
export async function addToCart(opts: {
|
|
526
|
+
storeId: string;
|
|
527
|
+
menuId: string;
|
|
528
|
+
itemId: string;
|
|
529
|
+
itemName: string;
|
|
530
|
+
itemDescription?: string;
|
|
531
|
+
unitPrice: number;
|
|
532
|
+
quantity?: number;
|
|
533
|
+
cartId?: string;
|
|
534
|
+
nestedOptions?: string;
|
|
535
|
+
specialInstructions?: string;
|
|
536
|
+
}): Promise<CartSummary> {
|
|
537
|
+
// Use updateCartItemV2 — DoorDash now uses this for both adding and updating cart items
|
|
538
|
+
const data = await graphql<{ updateCartItemV2: Record<string, unknown> }>(
|
|
539
|
+
'updateCartItem',
|
|
540
|
+
getQuery('updateCartItem', UPDATE_CART_ITEM_QUERY),
|
|
541
|
+
{
|
|
542
|
+
updateCartItemApiParams: {
|
|
543
|
+
cartId: opts.cartId ?? '',
|
|
544
|
+
cartItemId: '',
|
|
545
|
+
itemId: opts.itemId,
|
|
546
|
+
itemName: opts.itemName,
|
|
547
|
+
itemDescription: opts.itemDescription ?? '',
|
|
548
|
+
currency: 'USD',
|
|
549
|
+
quantity: opts.quantity ?? 1,
|
|
550
|
+
unitPrice: opts.unitPrice,
|
|
551
|
+
storeId: opts.storeId,
|
|
552
|
+
menuId: opts.menuId,
|
|
553
|
+
creatorId: '',
|
|
554
|
+
nestedOptions: opts.nestedOptions ?? '[]',
|
|
555
|
+
specialInstructions: opts.specialInstructions ?? '',
|
|
556
|
+
substitutionPreference: 'contact',
|
|
557
|
+
purchaseTypeOptions: {
|
|
558
|
+
purchaseType: 'PURCHASE_TYPE_UNIT',
|
|
559
|
+
unit: 'qty',
|
|
560
|
+
estimatedPricingDescription: '',
|
|
561
|
+
continuousQuantity: 0,
|
|
562
|
+
},
|
|
563
|
+
isAdsItem: false,
|
|
564
|
+
isBundle: false,
|
|
565
|
+
bundleType: 'BUNDLE_TYPE_UNSPECIFIED',
|
|
566
|
+
cartFilter: null,
|
|
567
|
+
},
|
|
568
|
+
fulfillmentContext: {
|
|
569
|
+
shouldUpdateFulfillment: false,
|
|
570
|
+
fulfillmentType: 'Delivery',
|
|
571
|
+
},
|
|
572
|
+
returnCartFromOrderService: false,
|
|
573
|
+
shouldKeepOnlyOneActiveCart: false,
|
|
574
|
+
},
|
|
575
|
+
);
|
|
576
|
+
return extractCartSummary(data.updateCartItemV2);
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
export async function removeFromCart(
|
|
580
|
+
cartId: string,
|
|
581
|
+
itemId: string,
|
|
582
|
+
): Promise<CartSummary> {
|
|
583
|
+
const data = await graphql<{ removeCartItemV2: Record<string, unknown> }>(
|
|
584
|
+
'removeCartItem',
|
|
585
|
+
getQuery('removeCartItem', REMOVE_CART_ITEM_QUERY),
|
|
586
|
+
{
|
|
587
|
+
cartId,
|
|
588
|
+
itemId,
|
|
589
|
+
returnCartFromOrderService: false,
|
|
590
|
+
monitoringContext: { isGroup: false },
|
|
591
|
+
cartFilter: null,
|
|
592
|
+
cartContext: { deleteBundleCarts: false },
|
|
593
|
+
},
|
|
594
|
+
);
|
|
595
|
+
return extractCartSummary(data.removeCartItemV2);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
export async function viewCart(cartId: string): Promise<CartSummary> {
|
|
599
|
+
const data = await graphql<{ orderCart: Record<string, unknown> }>(
|
|
600
|
+
'detailedCartItems',
|
|
601
|
+
getQuery('detailedCartItems', DETAILED_CART_QUERY),
|
|
602
|
+
{ orderCartId: cartId, isCardPayment: true },
|
|
603
|
+
);
|
|
604
|
+
return extractCartSummary(data.orderCart);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
export async function listCarts(storeId?: string): Promise<CartSummary[]> {
|
|
608
|
+
const input: Record<string, unknown> = {
|
|
609
|
+
cartFilter: { shouldIncludeSubmitted: true },
|
|
610
|
+
};
|
|
611
|
+
if (storeId) {
|
|
612
|
+
input.cartContextFilter = {
|
|
613
|
+
experienceCase: 'MULTI_CART_EXPERIENCE_CONTEXT',
|
|
614
|
+
multiCartExperienceContext: { storeId },
|
|
615
|
+
};
|
|
616
|
+
}
|
|
617
|
+
const data = await graphql<{ listCarts: Record<string, unknown>[] }>(
|
|
618
|
+
'listCarts',
|
|
619
|
+
getQuery('listCarts', LIST_CARTS_QUERY),
|
|
620
|
+
{ input },
|
|
621
|
+
);
|
|
622
|
+
return (data.listCarts ?? []).map(extractCartSummary);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export interface DropoffOption {
|
|
626
|
+
id: string;
|
|
627
|
+
displayString: string;
|
|
628
|
+
isDefault: boolean;
|
|
629
|
+
isEnabled: boolean;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
export async function getDropoffOptions(
|
|
633
|
+
cartId: string,
|
|
634
|
+
addressId?: string,
|
|
635
|
+
): Promise<DropoffOption[]> {
|
|
636
|
+
const data = await graphql<{
|
|
637
|
+
dropoffOptions: Array<Record<string, unknown>>;
|
|
638
|
+
}>('dropoffOptions', getQuery('dropoffOptions', DROPOFF_OPTIONS_QUERY), {
|
|
639
|
+
cartId,
|
|
640
|
+
addressId: addressId ?? null,
|
|
641
|
+
});
|
|
642
|
+
return (data.dropoffOptions ?? []).map(o => ({
|
|
643
|
+
id: String(o.id),
|
|
644
|
+
displayString: String(o.displayString ?? ''),
|
|
645
|
+
isDefault: Boolean(o.isDefault),
|
|
646
|
+
isEnabled: Boolean(o.isEnabled),
|
|
647
|
+
}));
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
export interface PaymentMethod {
|
|
651
|
+
id: string;
|
|
652
|
+
type: string;
|
|
653
|
+
last4: string;
|
|
654
|
+
isDefault: boolean;
|
|
655
|
+
uuid: string;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
export async function getPaymentMethods(): Promise<PaymentMethod[]> {
|
|
659
|
+
const data = await graphql<{ getPaymentMethodList: Array<Record<string, unknown>> }>(
|
|
660
|
+
'paymentMethodQuery',
|
|
661
|
+
getQuery('paymentMethodQuery', PAYMENT_METHODS_QUERY),
|
|
662
|
+
{
|
|
663
|
+
country: 'US',
|
|
664
|
+
usePaymentConfigQuery: true,
|
|
665
|
+
usePaymentConfigQueryV2: true,
|
|
666
|
+
},
|
|
667
|
+
);
|
|
668
|
+
return (data.getPaymentMethodList ?? []).map(p => ({
|
|
669
|
+
id: String(p.id ?? ''),
|
|
670
|
+
type: String(p.type ?? ''),
|
|
671
|
+
last4: String(p.last4 ?? ''),
|
|
672
|
+
isDefault: Boolean(p.isDefault),
|
|
673
|
+
uuid: String(p.paymentMethodUuid ?? p.uuid ?? ''),
|
|
674
|
+
}));
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
export interface PlaceOrderResult {
|
|
678
|
+
cartId: string;
|
|
679
|
+
orderUuid: string;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
export async function placeOrder(opts: {
|
|
683
|
+
cartId: string;
|
|
684
|
+
storeId: string;
|
|
685
|
+
total: number;
|
|
686
|
+
tipAmount?: number;
|
|
687
|
+
deliveryOptionType?: string;
|
|
688
|
+
dropoffOptionId?: string;
|
|
689
|
+
paymentMethodUuid?: string;
|
|
690
|
+
paymentMethodType?: string;
|
|
691
|
+
}): Promise<PlaceOrderResult> {
|
|
692
|
+
// If no payment method specified, use the default one
|
|
693
|
+
let pmUuid = opts.paymentMethodUuid;
|
|
694
|
+
let pmType = opts.paymentMethodType ?? 'Card';
|
|
695
|
+
if (!pmUuid) {
|
|
696
|
+
const methods = await getPaymentMethods();
|
|
697
|
+
const defaultMethod = methods.find(m => m.isDefault) ?? methods[0];
|
|
698
|
+
if (!defaultMethod) {
|
|
699
|
+
throw new Error('No payment method found. Add a payment method in the DoorDash app first.');
|
|
700
|
+
}
|
|
701
|
+
pmUuid = defaultMethod.uuid;
|
|
702
|
+
// defaultMethod.type is the card brand (e.g. "Visa"), not the PaymentMethodType enum
|
|
703
|
+
pmType = 'Card';
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
// Build dropoff preferences
|
|
707
|
+
const dropoffPreferences = opts.dropoffOptionId
|
|
708
|
+
? JSON.stringify([{ typename: 'DropoffPreference', option_id: opts.dropoffOptionId, is_default: true, instructions: '' }])
|
|
709
|
+
: '[]';
|
|
710
|
+
|
|
711
|
+
const data = await graphql<{ createOrderFromCart: Record<string, unknown> }>(
|
|
712
|
+
'createOrderFromCart',
|
|
713
|
+
getQuery('createOrderFromCart', CREATE_ORDER_FROM_CART_QUERY),
|
|
714
|
+
{
|
|
715
|
+
cartId: opts.cartId,
|
|
716
|
+
storeId: opts.storeId,
|
|
717
|
+
total: opts.total,
|
|
718
|
+
sosDeliveryFee: 0,
|
|
719
|
+
isPickupOrder: false,
|
|
720
|
+
verifiedAgeRequirement: false,
|
|
721
|
+
deliveryTime: 'ASAP',
|
|
722
|
+
menuOptions: null,
|
|
723
|
+
attributionData: '{}',
|
|
724
|
+
fulfillsOwnDeliveries: false,
|
|
725
|
+
teamId: null,
|
|
726
|
+
budgetId: null,
|
|
727
|
+
giftOptions: null,
|
|
728
|
+
recipientShippingDetails: null,
|
|
729
|
+
tipAmounts: [{ tipRecipient: 'DASHER', amount: opts.tipAmount ?? 0 }],
|
|
730
|
+
paymentMethod: null,
|
|
731
|
+
deliveryOptionType: opts.deliveryOptionType ?? 'STANDARD',
|
|
732
|
+
workOrderOptions: null,
|
|
733
|
+
isCardPayment: true,
|
|
734
|
+
clientFraudContext: null,
|
|
735
|
+
programId: '',
|
|
736
|
+
membershipId: '',
|
|
737
|
+
dropoffPreferences,
|
|
738
|
+
monitoringContext: { isGroup: false },
|
|
739
|
+
routineReorderDetails: {},
|
|
740
|
+
supplementalPaymentDetailsList: [],
|
|
741
|
+
shouldApplyCredits: true,
|
|
742
|
+
dasherPickupInstructions: '',
|
|
743
|
+
paymentMethodUuid: pmUuid,
|
|
744
|
+
paymentMethodType: pmType,
|
|
745
|
+
deviceTimezone: Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
746
|
+
},
|
|
747
|
+
);
|
|
748
|
+
|
|
749
|
+
return {
|
|
750
|
+
cartId: String(data.createOrderFromCart.cartId ?? ''),
|
|
751
|
+
orderUuid: String(data.createOrderFromCart.orderUuid ?? ''),
|
|
752
|
+
};
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
// ---------------------------------------------------------------------------
|
|
756
|
+
// Response extraction helpers
|
|
757
|
+
// ---------------------------------------------------------------------------
|
|
758
|
+
|
|
759
|
+
function extractSearchResults(feed: unknown): SearchResult[] {
|
|
760
|
+
const results: SearchResult[] = [];
|
|
761
|
+
if (!feed || typeof feed !== 'object') return results;
|
|
762
|
+
const f = feed as Record<string, unknown>;
|
|
763
|
+
const bodies = (f.body ?? []) as Array<Record<string, unknown>>;
|
|
764
|
+
for (const section of bodies) {
|
|
765
|
+
const items = (section.body ?? []) as Array<Record<string, unknown>>;
|
|
766
|
+
for (const item of items) {
|
|
767
|
+
const text = item.text as Record<string, string> | undefined;
|
|
768
|
+
const images = item.images as Record<string, Record<string, string>> | undefined;
|
|
769
|
+
const events = item.events as Record<string, Record<string, string>> | undefined;
|
|
770
|
+
let storeId: string | undefined;
|
|
771
|
+
// Try click event data first
|
|
772
|
+
if (events?.click?.data) {
|
|
773
|
+
try {
|
|
774
|
+
const clickData = JSON.parse(events.click.data) as Record<string, unknown>;
|
|
775
|
+
storeId = String(clickData.store_id ?? clickData.storeId ?? '');
|
|
776
|
+
} catch { /* ignore */ }
|
|
777
|
+
}
|
|
778
|
+
// Fall back to parsing from the item ID (format: "row.search-result:STORE_ID:INDEX")
|
|
779
|
+
if (!storeId) {
|
|
780
|
+
const idStr = String(item.id ?? '');
|
|
781
|
+
const match = idStr.match(/search-result:(\d+)/);
|
|
782
|
+
if (match) storeId = match[1];
|
|
783
|
+
}
|
|
784
|
+
if (text?.title) {
|
|
785
|
+
results.push({
|
|
786
|
+
id: String(item.id ?? ''),
|
|
787
|
+
name: text.title,
|
|
788
|
+
description: text.subtitle || text.description,
|
|
789
|
+
imageUrl: images?.main?.uri,
|
|
790
|
+
rating: text.accessory,
|
|
791
|
+
storeId,
|
|
792
|
+
});
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
return results;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
function extractStoreInfo(feed: Record<string, unknown>): StoreInfo {
|
|
800
|
+
const header = (feed.storeHeader ?? {}) as Record<string, unknown>;
|
|
801
|
+
const menuBook = (feed.menuBook ?? {}) as Record<string, unknown>;
|
|
802
|
+
const itemLists = (feed.itemLists ?? []) as Array<Record<string, unknown>>;
|
|
803
|
+
const address = header.address as Record<string, string> | undefined;
|
|
804
|
+
const ratings = header.ratings as Record<string, unknown> | undefined;
|
|
805
|
+
const deliveryFee = header.deliveryFeeLayout as Record<string, string> | undefined;
|
|
806
|
+
const deliveryTime = header.deliveryTimeLayout as Record<string, string> | undefined;
|
|
807
|
+
|
|
808
|
+
const categories = ((menuBook.menuCategories ?? []) as Array<Record<string, unknown>>).map(c => ({
|
|
809
|
+
id: String(c.id),
|
|
810
|
+
name: String(c.name),
|
|
811
|
+
numItems: Number(c.numItems ?? 0),
|
|
812
|
+
}));
|
|
813
|
+
|
|
814
|
+
const items: MenuItem[] = [];
|
|
815
|
+
for (const list of itemLists) {
|
|
816
|
+
for (const item of (list.items ?? []) as Array<Record<string, unknown>>) {
|
|
817
|
+
items.push({
|
|
818
|
+
id: String(item.id),
|
|
819
|
+
name: String(item.name ?? ''),
|
|
820
|
+
description: item.description as string | undefined,
|
|
821
|
+
price: item.displayPrice as string | undefined,
|
|
822
|
+
imageUrl: item.imageUrl as string | undefined,
|
|
823
|
+
storeId: item.storeId as string | undefined,
|
|
824
|
+
});
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
// Also extract from carousels (used by convenience/pharmacy stores)
|
|
829
|
+
const carousels = (feed.carousels ?? []) as Array<Record<string, unknown>>;
|
|
830
|
+
for (const carousel of carousels) {
|
|
831
|
+
for (const item of (carousel.items ?? []) as Array<Record<string, unknown>>) {
|
|
832
|
+
items.push({
|
|
833
|
+
id: String(item.id),
|
|
834
|
+
name: String(item.name ?? ''),
|
|
835
|
+
description: item.description as string | undefined,
|
|
836
|
+
price: item.displayPrice as string | undefined,
|
|
837
|
+
imageUrl: item.imgUrl as string | undefined,
|
|
838
|
+
});
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
return {
|
|
843
|
+
id: String(header.id ?? ''),
|
|
844
|
+
name: String(header.name ?? ''),
|
|
845
|
+
description: header.description as string | undefined,
|
|
846
|
+
address: address?.displayAddress,
|
|
847
|
+
rating: ratings?.averageRating as number | undefined,
|
|
848
|
+
numRatings: ratings?.numRatingsDisplayString as string | undefined,
|
|
849
|
+
deliveryFee: deliveryFee?.title,
|
|
850
|
+
deliveryTime: deliveryTime?.title,
|
|
851
|
+
priceRange: header.priceRangeDisplayString as string | undefined,
|
|
852
|
+
categories,
|
|
853
|
+
items,
|
|
854
|
+
};
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
function extractNestedOptions(extrasList: Array<Record<string, unknown>>): ItemDetails['options'][number]['choices'][number]['nestedOptions'] {
|
|
858
|
+
return extrasList.map(nested => ({
|
|
859
|
+
id: String(nested.id),
|
|
860
|
+
name: String(nested.name ?? ''),
|
|
861
|
+
required: !nested.isOptional,
|
|
862
|
+
choices: ((nested.options ?? []) as Array<Record<string, unknown>>).map(o => ({
|
|
863
|
+
id: String(o.id),
|
|
864
|
+
name: String(o.name ?? ''),
|
|
865
|
+
price: o.displayString as string | undefined,
|
|
866
|
+
})),
|
|
867
|
+
}));
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
function extractItemDetails(page: Record<string, unknown>): ItemDetails {
|
|
871
|
+
const header = (page.itemHeader ?? {}) as Record<string, unknown>;
|
|
872
|
+
const optionLists = (page.optionLists ?? []) as Array<Record<string, unknown>>;
|
|
873
|
+
const itemPreferences = page.itemPreferences as Record<string, unknown> | undefined;
|
|
874
|
+
|
|
875
|
+
const result: ItemDetails = {
|
|
876
|
+
id: String(header.id ?? ''),
|
|
877
|
+
name: String(header.name ?? ''),
|
|
878
|
+
description: header.description as string | undefined,
|
|
879
|
+
price: header.displayString as string | undefined,
|
|
880
|
+
unitAmount: header.unitAmount as number | undefined,
|
|
881
|
+
currency: header.currency as string | undefined,
|
|
882
|
+
imageUrl: header.imgUrl as string | undefined,
|
|
883
|
+
menuId: header.menuId as string | undefined,
|
|
884
|
+
options: optionLists.map(ol => {
|
|
885
|
+
const choices = ((ol.options ?? []) as Array<Record<string, unknown>>).map(o => {
|
|
886
|
+
const choice: ItemDetails['options'][number]['choices'][number] = {
|
|
887
|
+
id: String(o.id),
|
|
888
|
+
name: String(o.name ?? ''),
|
|
889
|
+
price: o.displayString as string | undefined,
|
|
890
|
+
unitAmount: o.unitAmount as number | undefined,
|
|
891
|
+
defaultQuantity: o.defaultQuantity as number | undefined,
|
|
892
|
+
};
|
|
893
|
+
const nestedExtrasList = (o.nestedExtrasList ?? []) as Array<Record<string, unknown>>;
|
|
894
|
+
if (nestedExtrasList.length > 0) {
|
|
895
|
+
choice.nestedOptions = extractNestedOptions(nestedExtrasList);
|
|
896
|
+
}
|
|
897
|
+
return choice;
|
|
898
|
+
});
|
|
899
|
+
|
|
900
|
+
return {
|
|
901
|
+
id: String(ol.id),
|
|
902
|
+
name: String(ol.name ?? ''),
|
|
903
|
+
required: !ol.isOptional,
|
|
904
|
+
minSelections: ol.minNumOptions as number | undefined,
|
|
905
|
+
maxSelections: ol.maxNumOptions as number | undefined,
|
|
906
|
+
choices,
|
|
907
|
+
};
|
|
908
|
+
}),
|
|
909
|
+
};
|
|
910
|
+
|
|
911
|
+
if (itemPreferences) {
|
|
912
|
+
const specialInstructions = (itemPreferences.specialInstructions ?? {}) as Record<string, unknown>;
|
|
913
|
+
result.specialInstructionsConfig = {
|
|
914
|
+
maxLength: Number(specialInstructions.characterMaxLength ?? 500),
|
|
915
|
+
placeholderText: specialInstructions.placeholderText as string | undefined,
|
|
916
|
+
isEnabled: specialInstructions.isEnabled !== false,
|
|
917
|
+
};
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
return result;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
function extractRetailStoreInfo(feed: Record<string, unknown>): StoreInfo {
|
|
924
|
+
const storeDetails = (feed.storeDetails ?? {}) as Record<string, unknown>;
|
|
925
|
+
const storeHeader = (storeDetails.storeHeader ?? {}) as Record<string, unknown>;
|
|
926
|
+
const ratings = storeHeader.ratings as Record<string, unknown> | undefined;
|
|
927
|
+
const deliveryFee = storeHeader.deliveryFeeLayout as Record<string, string> | undefined;
|
|
928
|
+
const status = storeHeader.status as Record<string, Record<string, unknown>> | undefined;
|
|
929
|
+
|
|
930
|
+
const l1Categories = (feed.l1Categories ?? []) as Array<Record<string, unknown>>;
|
|
931
|
+
const collections = (feed.collections ?? []) as Array<Record<string, unknown>>;
|
|
932
|
+
|
|
933
|
+
const categories = l1Categories.map(c => ({
|
|
934
|
+
id: String(c.id),
|
|
935
|
+
name: String(c.name),
|
|
936
|
+
numItems: Number(c.numItems ?? 0),
|
|
937
|
+
}));
|
|
938
|
+
|
|
939
|
+
const items: MenuItem[] = [];
|
|
940
|
+
for (const collection of collections) {
|
|
941
|
+
// Retail collections use `products`, not `items`
|
|
942
|
+
const products = (collection.products ?? collection.items ?? []) as Array<Record<string, unknown>>;
|
|
943
|
+
for (const item of products) {
|
|
944
|
+
const price = item.price as Record<string, unknown> | undefined;
|
|
945
|
+
items.push({
|
|
946
|
+
id: String(item.id),
|
|
947
|
+
name: String(item.name ?? ''),
|
|
948
|
+
description: item.description as string | undefined,
|
|
949
|
+
price: (price?.displayString ?? item.displayPrice) as string | undefined,
|
|
950
|
+
imageUrl: (item.imageUrl ?? item.imgUrl) as string | undefined,
|
|
951
|
+
storeId: item.storeId as string | undefined,
|
|
952
|
+
});
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
const address = storeHeader.address as Record<string, string> | undefined;
|
|
957
|
+
|
|
958
|
+
return {
|
|
959
|
+
id: String(storeDetails.id ?? ''),
|
|
960
|
+
name: String(storeHeader.name ?? storeDetails.name ?? ''),
|
|
961
|
+
description: storeHeader.description as string | undefined,
|
|
962
|
+
address: address?.displayAddress,
|
|
963
|
+
rating: ratings?.averageRating as number | undefined,
|
|
964
|
+
numRatings: ratings?.numRatingsDisplayString as string | undefined,
|
|
965
|
+
deliveryFee: deliveryFee?.title,
|
|
966
|
+
deliveryTime: status?.delivery?.etaDisplayString as string | undefined,
|
|
967
|
+
priceRange: storeHeader.priceRangeDisplayString as string | undefined,
|
|
968
|
+
categories,
|
|
969
|
+
items,
|
|
970
|
+
isRetail: true,
|
|
971
|
+
};
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
function extractCartSummary(cart: Record<string, unknown>): CartSummary {
|
|
975
|
+
const restaurant = (cart.restaurant ?? {}) as Record<string, unknown>;
|
|
976
|
+
const orders = (cart.orders ?? []) as Array<Record<string, unknown>>;
|
|
977
|
+
|
|
978
|
+
const items: CartSummary['items'] = [];
|
|
979
|
+
for (const order of orders) {
|
|
980
|
+
for (const oi of (order.orderItems ?? []) as Array<Record<string, unknown>>) {
|
|
981
|
+
const item = (oi.item ?? {}) as Record<string, unknown>;
|
|
982
|
+
items.push({
|
|
983
|
+
id: String(oi.id ?? ''),
|
|
984
|
+
name: String(item.name ?? ''),
|
|
985
|
+
quantity: Number(oi.quantity ?? 1),
|
|
986
|
+
price: oi.priceDisplayString as string | undefined,
|
|
987
|
+
});
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
return {
|
|
992
|
+
cartId: String(cart.id ?? ''),
|
|
993
|
+
storeName: restaurant.name as string | undefined,
|
|
994
|
+
storeId: restaurant.id as string | undefined,
|
|
995
|
+
subtotal: cart.subtotal as number | undefined,
|
|
996
|
+
total: cart.total as number | undefined,
|
|
997
|
+
items,
|
|
998
|
+
};
|
|
999
|
+
}
|