@kalera/munin-qwen 1.0.0 → 1.0.2

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-qwen@1.0.0 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/qwen
2
+ > @kalera/munin-qwen@1.0.2 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/qwen
3
3
  > tsc -p tsconfig.json
4
4
 
package/README.md CHANGED
@@ -8,9 +8,8 @@ Scaffold adapter generated from generic MCP template.
8
8
  import { createQwenCodeMuninAdapter } from "@kalera/munin-qwen";
9
9
 
10
10
  const adapter = createQwenCodeMuninAdapter({
11
- baseUrl: process.env.MUNIN_BASE_URL!,
12
11
  apiKey: process.env.MUNIN_API_KEY,
13
- project: process.env.MUNIN_PROJECT ?? "default",
12
+ project: process.env.MUNIN_PROJECT ?? "default-core",
14
13
  });
15
14
 
16
15
  await adapter.execute("list", { limit: 10 });
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export declare function createQwenCodeMuninAdapter(config: {
2
- baseUrl: string;
2
+ baseUrl?: string;
3
3
  apiKey?: string;
4
4
  }): {
5
5
  execute: (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-qwen",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "dependencies": {
6
- "@kalera/munin-sdk": "1.0.0"
6
+ "@kalera/munin-sdk": "1.0.1"
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 createQwenCodeMuninAdapter(config: {
4
- baseUrl: string;
4
+ baseUrl?: string;
5
5
  apiKey?: string;
6
6
 
7
7
  }) {