@khalilgharbaoui/opencode-claude-code-plugin 0.4.17 → 0.4.18

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/index.d.ts +3 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -96,6 +96,9 @@ type OpenCodeHooks = {
96
96
  };
97
97
  type OpenCodePlugin = (input: unknown, options?: Record<string, unknown>) => Promise<OpenCodeHooks>;
98
98
 
99
+ type LogLevel = "debug" | "info" | "notice" | "warn" | "error";
100
+ type LogMode = "silent" | "debug";
101
+
99
102
  interface ClaudeCodeConfig {
100
103
  provider: string;
101
104
  cliPath: string;
@@ -147,8 +150,6 @@ interface LoggingConfig {
147
150
  */
148
151
  level?: LogLevel;
149
152
  }
150
- type LogLevel = "debug" | "info" | "notice" | "warn" | "error";
151
- type LogMode = "silent" | "debug";
152
153
  type WebSearchRouting = "claude" | "disabled" | (string & {});
153
154
  interface ClaudeCodeProviderSettings {
154
155
  cliPath?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khalilgharbaoui/opencode-claude-code-plugin",
3
- "version": "0.4.17",
3
+ "version": "0.4.18",
4
4
  "description": "Claude Code CLI provider plugin for opencode",
5
5
  "author": "Khalil Gharbaoui",
6
6
  "type": "module",