@cleocode/adapters 2026.4.63 → 2026.4.65

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/adapters",
3
- "version": "2026.4.63",
3
+ "version": "2026.4.65",
4
4
  "description": "Unified provider adapters for CLEO (Claude Code, OpenCode, Cursor)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -14,8 +14,8 @@
14
14
  "dependencies": {
15
15
  "@anthropic-ai/claude-agent-sdk": "0.2.108",
16
16
  "@openai/agents": "0.8.3",
17
- "@cleocode/caamp": "2026.4.63",
18
- "@cleocode/contracts": "2026.4.63"
17
+ "@cleocode/caamp": "2026.4.65",
18
+ "@cleocode/contracts": "2026.4.65"
19
19
  },
20
20
  "license": "MIT",
21
21
  "engines": {
@@ -107,9 +107,9 @@ describe('ClaudeSDKSpawnProvider', () => {
107
107
  },
108
108
  });
109
109
  vi.doMock('node:fs', () => ({
110
- existsSync: vi.fn().mockImplementation((p: string) =>
111
- String(p).endsWith('.credentials.json'),
112
- ),
110
+ existsSync: vi
111
+ .fn()
112
+ .mockImplementation((p: string) => String(p).endsWith('.credentials.json')),
113
113
  readFileSync: vi.fn().mockImplementation((p: string) => {
114
114
  if (String(p).endsWith('.credentials.json')) return validCreds;
115
115
  throw new Error('mocked: file not found');