@copilotkit/sdk-js 1.50.0-beta.0 → 1.50.0-beta.10

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 +60 -0
  2. package/package.json +17 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,65 @@
1
1
  # @copilotkit/sdk-js
2
2
 
3
+ ## 1.50.0-beta.10
4
+
5
+ ### Minor Changes
6
+
7
+ - add new runner with telemetry baked in
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @copilotkit/shared@1.50.0-beta.10
13
+
14
+ ## 1.50.0-beta.9
15
+
16
+ ### Minor Changes
17
+
18
+ - Refactor suggestions to not always run
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @copilotkit/shared@1.50.0-beta.9
24
+
25
+ ## 1.50.0-beta.8
26
+
27
+ ### Patch Changes
28
+
29
+ - d1089a7: - fix: allow langgraph 1.0
30
+ - @copilotkit/shared@1.50.0-beta.8
31
+
32
+ ## 1.50.0-beta.7
33
+
34
+ ### Patch Changes
35
+
36
+ - @copilotkit/shared@1.50.0-beta.7
37
+
38
+ ## 1.50.0-beta.6
39
+
40
+ ### Minor Changes
41
+
42
+ - Updating dependency versions across all packages
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies
47
+ - @copilotkit/shared@1.50.0-beta.6
48
+
49
+ ## 1.50.0-beta.4
50
+
51
+ ### Patch Changes
52
+
53
+ - Updated dependencies [b0e3652]
54
+ - Updated dependencies [4942f62]
55
+ - @copilotkit/shared@1.50.0-beta.4
56
+
57
+ ## 1.10.7-next.0
58
+
59
+ ### Patch Changes
60
+
61
+ - @copilotkit/shared@1.10.7-next.0
62
+
3
63
  ## 1.10.6
4
64
 
5
65
  ### Patch Changes
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "version": "1.50.0-beta.0",
12
+ "version": "1.50.0-beta.10",
13
13
  "sideEffects": false,
14
14
  "main": "./dist/index.js",
15
15
  "module": "./dist/index.mjs",
@@ -32,15 +32,6 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "license": "MIT",
35
- "scripts": {
36
- "build": "tsup --clean",
37
- "dev": "tsup --watch --no-splitting",
38
- "test": "jest --passWithNoTests",
39
- "check-types": "tsc --noEmit",
40
- "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next",
41
- "link:global": "pnpm link --global",
42
- "unlink:global": "pnpm unlink --global"
43
- },
44
35
  "devDependencies": {
45
36
  "@langchain/langgraph": "^0.4.5",
46
37
  "@swc/core": "1.5.28",
@@ -49,23 +40,22 @@
49
40
  "@types/node": "^18.11.17",
50
41
  "@whatwg-node/server": "^0.9.34",
51
42
  "eslint": "^8.56.0",
52
- "eslint-config-custom": "workspace:*",
53
43
  "jest": "^29.6.4",
54
44
  "nodemon": "^3.1.3",
55
45
  "ts-jest": "^29.1.1",
56
46
  "ts-node": "^10.9.2",
57
- "tsconfig": "workspace:*",
58
47
  "tsup": "^6.7.0",
59
48
  "typescript": "^5.2.3",
60
- "zod-to-json-schema": "^3.23.5"
49
+ "tsconfig": "1.4.6",
50
+ "eslint-config-custom": "1.4.6"
61
51
  },
62
52
  "dependencies": {
63
- "@copilotkit/shared": "workspace:*"
53
+ "@copilotkit/shared": "1.50.0-beta.10"
64
54
  },
65
55
  "peerDependencies": {
66
56
  "@langchain/community": "^0.0.53",
67
- "@langchain/core": "^0.3.13 || ^0.4.0",
68
- "@langchain/langgraph": "^0.2.44 || ^0.3.0 || ^0.4.0",
57
+ "@langchain/core": ">=0.4.0 <2.0.0",
58
+ "@langchain/langgraph": ">=0.4.0 <2.0.0",
69
59
  "langchain": "^0.3.3",
70
60
  "typescript": "^5.2.3",
71
61
  "zod": "^3.23.3 || ^3.24.0 || ^3.25.0"
@@ -81,5 +71,14 @@
81
71
  "javascript",
82
72
  "automation",
83
73
  "textarea"
84
- ]
85
- }
74
+ ],
75
+ "scripts": {
76
+ "build": "tsup --clean",
77
+ "dev": "tsup --watch --no-splitting",
78
+ "test": "jest --passWithNoTests",
79
+ "check-types": "tsc --noEmit",
80
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next",
81
+ "link:global": "pnpm link --global",
82
+ "unlink:global": "pnpm unlink --global"
83
+ }
84
+ }