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.
- package/dist/plugin.js +3 -3
- 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.
|
|
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: "
|
|
99
|
+
providerID: "codexsale",
|
|
100
100
|
modelID: "gpt-5.5",
|
|
101
101
|
};
|
|
102
102
|
const CHILD_SESSION_FALLBACK_MODEL = {
|
|
103
|
-
providerID: "
|
|
103
|
+
providerID: "codexsale",
|
|
104
104
|
modelID: "gpt-5.5",
|
|
105
105
|
};
|
|
106
106
|
function isManagedUltraworkSession(state, sessionID) {
|