@kalera/munin-kilo 1.0.1 → 1.0.3

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-kilo@1.0.1 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/kilo
2
+ > @kalera/munin-kilo@1.0.3 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/kilo
3
3
  > tsc -p tsconfig.json
4
4
 
package/README.md CHANGED
@@ -8,7 +8,6 @@ Scaffold adapter generated from generic MCP template.
8
8
  import { createKiloCodeMuninAdapter } from "@kalera/munin-kilo";
9
9
 
10
10
  const adapter = createKiloCodeMuninAdapter({
11
- baseUrl: process.env.MUNIN_BASE_URL ?? "https://munin.kalera.dev",
12
11
  apiKey: process.env.MUNIN_API_KEY,
13
12
  project: process.env.MUNIN_PROJECT ?? "default-core",
14
13
  });
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export declare function createKiloCodeMuninAdapter(config: {
2
- baseUrl: string;
2
+ baseUrl?: string;
3
3
  apiKey?: string;
4
4
  }): {
5
5
  run: (projectId: string, action: string, payload: Record<string, unknown>) => Promise<import("@kalera/munin-sdk").MuninResponse<unknown>>;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@kalera/munin-kilo",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "dependencies": {
6
- "@kalera/munin-sdk": "1.0.0"
6
+ "@kalera/munin-sdk": "1.0.2"
7
7
  },
8
8
  "devDependencies": {
9
9
  "typescript": "^5.9.2"
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { MuninClient } from "@kalera/munin-sdk";
2
2
 
3
3
  export function createKiloCodeMuninAdapter(config: {
4
- baseUrl: string;
4
+ baseUrl?: string;
5
5
  apiKey?: string;
6
6
 
7
7
  }) {