@tryarcanist/cli 0.1.21 → 0.1.22
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/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -853,6 +853,8 @@ var ERROR_CODES = [
|
|
|
853
853
|
"sandbox_disconnected",
|
|
854
854
|
"sandbox_callback",
|
|
855
855
|
"opencode_startup_timeout",
|
|
856
|
+
"opencode_api_readiness_timeout",
|
|
857
|
+
"opencode_session_create_timeout",
|
|
856
858
|
"opencode_prompt_dispatch_timeout",
|
|
857
859
|
"opencode_unrecoverable",
|
|
858
860
|
"unknown"
|
|
@@ -880,6 +882,8 @@ var ERROR_CODE_LABELS = {
|
|
|
880
882
|
sandbox_disconnected: "Sandbox disconnected",
|
|
881
883
|
sandbox_callback: "Sandbox callback failed",
|
|
882
884
|
opencode_startup_timeout: "OpenCode startup timed out",
|
|
885
|
+
opencode_api_readiness_timeout: "OpenCode API readiness timed out",
|
|
886
|
+
opencode_session_create_timeout: "OpenCode session creation timed out",
|
|
883
887
|
opencode_prompt_dispatch_timeout: "OpenCode prompt dispatch timed out",
|
|
884
888
|
opencode_unrecoverable: "OpenCode unrecoverable failure",
|
|
885
889
|
unknown: "Unknown failure"
|