@tryarcanist/cli 0.1.44 → 0.1.45
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1149,6 +1149,7 @@ var ERROR_CODES = [
|
|
|
1149
1149
|
"max_duration_exceeded",
|
|
1150
1150
|
"spawn_timeout",
|
|
1151
1151
|
"spawn_modal_error",
|
|
1152
|
+
"spawn_provider_error",
|
|
1152
1153
|
"spawn_deadline_no_object",
|
|
1153
1154
|
"spawn_deadline_no_bridge",
|
|
1154
1155
|
"spawn_preconnect",
|
|
@@ -1181,8 +1182,9 @@ var ERROR_CODE_LABELS = {
|
|
|
1181
1182
|
stale_prompt: "Prompt became inactive",
|
|
1182
1183
|
max_duration_exceeded: "Prompt exceeded maximum duration",
|
|
1183
1184
|
spawn_timeout: "Sandbox spawn timed out",
|
|
1184
|
-
spawn_modal_error: "Sandbox spawn failed (
|
|
1185
|
-
|
|
1185
|
+
spawn_modal_error: "Sandbox spawn failed (legacy provider error)",
|
|
1186
|
+
spawn_provider_error: "Sandbox spawn failed (provider API error)",
|
|
1187
|
+
spawn_deadline_no_object: "Sandbox spawn timed out before provider responded",
|
|
1186
1188
|
spawn_deadline_no_bridge: "Sandbox spawn timed out before bridge connected",
|
|
1187
1189
|
spawn_preconnect: "Sandbox failed before connecting",
|
|
1188
1190
|
sandbox_terminated: "Sandbox terminated",
|