opencode-anthropic-multi-account 0.2.121 → 0.2.122

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.
@@ -12,7 +12,7 @@ import {
12
12
  refreshLiveFingerprintAsync,
13
13
  resetFingerprintCaptureForTest,
14
14
  setFingerprintCaptureTestOverridesForTest
15
- } from "./chunk-6ULMUPJ4.js";
15
+ } from "./chunk-CYHT342C.js";
16
16
  import "./chunk-QTHKVNEI.js";
17
17
  export {
18
18
  LIVE_TTL_MS,
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import {
2
+ CLAUDE_CODE_CONFIG_SCOPED_TOOL_NAMES,
2
3
  applyClaudeCodeUpstreamBodyFields,
3
4
  checkCCCompat,
4
5
  clampEffortAfterRejection,
@@ -23,7 +24,7 @@ import {
23
24
  selectClaudeCodeSystemPrompt,
24
25
  stampClaudeCodeCch,
25
26
  toClaudeCodeWireModelId
26
- } from "./chunk-6ULMUPJ4.js";
27
+ } from "./chunk-CYHT342C.js";
27
28
  import "./chunk-ITZJ5FTB.js";
28
29
  import "./chunk-QTHKVNEI.js";
29
30
 
@@ -2877,7 +2878,10 @@ function collectReferencedToolNames(parsed) {
2877
2878
  return [...names];
2878
2879
  }
2879
2880
  function buildClaudeToolNameSet(claudeToolNames) {
2880
- return new Set(claudeToolNames.filter((name) => typeof name === "string" && name.length > 0));
2881
+ return /* @__PURE__ */ new Set([
2882
+ ...claudeToolNames.filter((name) => typeof name === "string" && name.length > 0),
2883
+ ...CLAUDE_CODE_CONFIG_SCOPED_TOOL_NAMES
2884
+ ]);
2881
2885
  }
2882
2886
  function buildToolFlowLookup(parsed, claudeToolNames) {
2883
2887
  const originalToOutgoing = /* @__PURE__ */ new Map();