opencode-immune 1.0.43 → 1.0.44

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.
Files changed (2) hide show
  1. package/dist/plugin.js +3 -3
  2. package/package.json +1 -1
package/dist/plugin.js CHANGED
@@ -11,7 +11,7 @@ const child_process_1 = require("child_process");
11
11
  // ═══════════════════════════════════════════════════════════════════════════════
12
12
  // PLUGIN VERSION CHECK
13
13
  // ═══════════════════════════════════════════════════════════════════════════════
14
- const PLUGIN_VERSION = "1.0.43";
14
+ const PLUGIN_VERSION = "1.0.44";
15
15
  const PLUGIN_PACKAGE_NAME = "opencode-immune";
16
16
  /**
17
17
  * Read plugin version from package.json at runtime.
@@ -96,11 +96,11 @@ const MANAGED_SESSION_TTL_MS = 7 * 24 * 60 * 60 * 1000;
96
96
  const PROVIDER_RETRY_WATCHDOG_MS = 30_000;
97
97
  const CHILD_FALLBACK_REQUEST_TTL_MS = 10 * 60 * 1000;
98
98
  const RATE_LIMIT_FALLBACK_MODEL = {
99
- providerID: "externcash",
99
+ providerID: "codexsale",
100
100
  modelID: "gpt-5.5",
101
101
  };
102
102
  const CHILD_SESSION_FALLBACK_MODEL = {
103
- providerID: "externcash",
103
+ providerID: "codexsale",
104
104
  modelID: "gpt-5.5",
105
105
  };
106
106
  function isManagedUltraworkSession(state, sessionID) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-immune",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "OpenCode plugin: session recovery, auto-retry, multi-cycle automation, context monitoring",
5
5
  "exports": {
6
6
  "./server": "./dist/plugin.js"