@kalera/munin-gemini 1.2.8 → 1.4.0

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @kalera/munin-gemini@1.2.8 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/gemini
2
+ > @kalera/munin-gemini@1.4.0 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/gemini
3
3
  > tsc -p tsconfig.json
4
4
 
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export declare function createGeminiCliMuninAdapter(config: {
3
3
  apiKey?: string;
4
4
  timeoutMs?: number;
5
5
  }): {
6
- callTool: (projectId: string, name: string, args: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
6
+ callTool: (projectId: string, name: string, args: Record<string, unknown>) => Promise<any>;
7
7
  capabilities: () => Promise<import("@kalera/munin-sdk").MuninCapabilities>;
8
8
  beforeAgent: (systemPrompt: string) => Promise<string>;
9
9
  };
@@ -43,7 +43,7 @@ export declare const tools: ({
43
43
  };
44
44
  required: string[];
45
45
  };
46
- execute: (args: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
46
+ execute: (args: Record<string, unknown>) => Promise<any>;
47
47
  } | {
48
48
  name: string;
49
49
  description: string;
@@ -67,7 +67,7 @@ export declare const tools: ({
67
67
  };
68
68
  required: string[];
69
69
  };
70
- execute: (args: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
70
+ execute: (args: Record<string, unknown>) => Promise<any>;
71
71
  } | {
72
72
  name: string;
73
73
  description: string;
@@ -100,7 +100,7 @@ export declare const tools: ({
100
100
  };
101
101
  required: string[];
102
102
  };
103
- execute: (args: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
103
+ execute: (args: Record<string, unknown>) => Promise<any>;
104
104
  } | {
105
105
  name: string;
106
106
  description: string;
@@ -126,7 +126,7 @@ export declare const tools: ({
126
126
  };
127
127
  required: string[];
128
128
  };
129
- execute: (args: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
129
+ execute: (args: Record<string, unknown>) => Promise<any>;
130
130
  } | {
131
131
  name: string;
132
132
  description: string;
@@ -150,5 +150,5 @@ export declare const tools: ({
150
150
  };
151
151
  required: string[];
152
152
  };
153
- execute: (args: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
153
+ execute: (args: Record<string, unknown>) => Promise<any>;
154
154
  })[];
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "@kalera/munin-gemini",
3
- "version": "1.2.8",
4
3
  "type": "module",
5
4
  "bin": {
6
5
  "munin-gemini": "dist/cli.js"
7
6
  },
8
7
  "dependencies": {
9
- "@kalera/munin-sdk": "1.2.8",
10
- "@kalera/munin-runtime": "1.2.8"
8
+ "@kalera/munin-sdk": "1.4.0",
9
+ "@kalera/munin-runtime": "1.4.0"
11
10
  },
12
11
  "devDependencies": {
12
+ "@types/node": "^24.3.0",
13
13
  "typescript": "^5.9.2"
14
14
  },
15
+ "version": "1.4.0",
15
16
  "scripts": {
16
17
  "build": "tsc -p tsconfig.json",
17
18
  "lint": "tsc -p tsconfig.json --noEmit",