@tryarcanist/cli 0.1.102 → 0.1.103
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
|
@@ -1709,6 +1709,7 @@ function resolveAuthoritativePromptEventsWithDiagnostics(raw) {
|
|
|
1709
1709
|
// ../../shared/types/error-codes.ts
|
|
1710
1710
|
var ERROR_CODES = [
|
|
1711
1711
|
"auth",
|
|
1712
|
+
"policy_block",
|
|
1712
1713
|
"handled_automatically",
|
|
1713
1714
|
"output_length",
|
|
1714
1715
|
"context_overflow",
|
|
@@ -1730,6 +1731,7 @@ var ERROR_CODES = [
|
|
|
1730
1731
|
"spawn_preconnect",
|
|
1731
1732
|
"sandbox_terminated",
|
|
1732
1733
|
"sandbox_disconnected",
|
|
1734
|
+
"sandbox_disconnected_exhausted",
|
|
1733
1735
|
"session_archived",
|
|
1734
1736
|
"sandbox_callback",
|
|
1735
1737
|
"codex_startup_timeout",
|
|
@@ -1744,6 +1746,7 @@ var ERROR_CODES = [
|
|
|
1744
1746
|
var ERROR_CODE_SET = new Set(ERROR_CODES);
|
|
1745
1747
|
var ERROR_CODE_LABELS = {
|
|
1746
1748
|
auth: "Authentication failed",
|
|
1749
|
+
policy_block: "Policy block",
|
|
1747
1750
|
handled_automatically: "Handled automatically",
|
|
1748
1751
|
output_length: "Output was too long",
|
|
1749
1752
|
context_overflow: "Context window exceeded",
|
|
@@ -1765,6 +1768,7 @@ var ERROR_CODE_LABELS = {
|
|
|
1765
1768
|
spawn_preconnect: "Sandbox failed before connecting",
|
|
1766
1769
|
sandbox_terminated: "Sandbox terminated",
|
|
1767
1770
|
sandbox_disconnected: "Sandbox disconnected",
|
|
1771
|
+
sandbox_disconnected_exhausted: "Sandbox kept disconnecting",
|
|
1768
1772
|
session_archived: "Session archived while processing",
|
|
1769
1773
|
sandbox_callback: "Sandbox callback failed",
|
|
1770
1774
|
codex_startup_timeout: "Codex startup timed out",
|