@iqai/adk-cli 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @iqai/adk-cli
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [5d19967]
8
+ - @iqai/adk@0.3.3
9
+
10
+ ## 0.3.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 2da690a: - **Dependency Updates:**
15
+
16
+ - Upgraded dependencies and devDependencies across multiple packages ensuring compatibility with the latest library versions.
17
+
18
+ - **Schema Handling:**
19
+
20
+ - Transitioned schema conversion to use `z.toJSONSchema`, reducing dependencies.
21
+ - Enhanced type safety in the workflow tool's schema handling.
22
+
23
+ - **Error Reporting and Validation:**
24
+
25
+ - Improved error messages in `AgentBuilder` for better debugging.
26
+ - Enhanced output validation for LLM.
27
+
28
+ - **AI SDK and Model Integration:**
29
+
30
+ - Refined model ID handling in `AiSdkLlm`.
31
+ - Updated field references to align with AI SDK changes.
32
+
33
+ - **Code Quality Enhancements:**
34
+ - Improved import order and code formatting for consistency.
35
+
36
+ This changeset ensures improved stability, security, and developer experience across the updated packages.
37
+
38
+ - Updated dependencies [2da690a]
39
+ - @iqai/adk@0.3.2
40
+
3
41
  ## 0.3.0
4
42
 
5
43
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iqai/adk-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "CLI tool for creating, running, and testing ADK agents",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",
@@ -24,29 +24,29 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@clack/prompts": "^0.11.0",
27
- "@nestjs/common": "^10.4.0",
28
- "@nestjs/core": "^10.4.0",
29
- "@nestjs/platform-express": "^10.4.0",
30
- "@nestjs/swagger": "^7.4.2",
31
- "chalk": "^5.4.1",
27
+ "@nestjs/common": "^11.1.6",
28
+ "@nestjs/core": "^11.1.6",
29
+ "@nestjs/platform-express": "^11.1.6",
30
+ "@nestjs/swagger": "^11.2.0",
31
+ "chalk": "^5.6.2",
32
32
  "class-transformer": "^0.5.1",
33
- "class-validator": "^0.14.1",
34
- "dedent": "^1.6.0",
35
- "esbuild": "^0.23.0",
33
+ "class-validator": "^0.14.2",
34
+ "dedent": "^1.7.0",
35
+ "esbuild": "^0.25.9",
36
36
  "giget": "^2.0.0",
37
- "marked": "^14.1.3",
38
- "marked-terminal": "^7.2.1",
39
- "nest-commander": "^3.4.0",
37
+ "marked": "^16.2.1",
38
+ "marked-terminal": "^7.3.0",
39
+ "nest-commander": "^3.19.1",
40
40
  "reflect-metadata": "^0.2.2",
41
- "rxjs": "^7.8.1",
41
+ "rxjs": "^7.8.2",
42
42
  "swagger-ui-express": "^5.0.1",
43
- "@iqai/adk": "0.3.1"
43
+ "@iqai/adk": "0.3.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/marked-terminal": "^6.1.1",
47
- "@types/node": "^20.17.30",
48
- "typescript": "^5.3.2",
49
- "vitest": "^3.1.3",
47
+ "@types/node": "^24.3.1",
48
+ "typescript": "^5.9.2",
49
+ "vitest": "^3.2.4",
50
50
  "@iqai/tsconfig": "0.0.1"
51
51
  },
52
52
  "packageManager": "pnpm@9.0.0",