@copilotkit/sdk-js 1.54.1 → 1.55.0-next.8

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.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,21 @@
1
1
  # @copilotkit/sdk-js
2
2
 
3
- ## 1.54.1
3
+ ## 1.55.0-next.8
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - a0a1cf4: feat: re export state streaming langgraph middleware
8
- - @copilotkit/shared@1.54.1
7
+ - @copilotkit/shared@1.55.0-next.8
8
+
9
+ ## 1.55.0-next.7
10
+
11
+ ### Minor Changes
12
+
13
+ - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [1ceb963]
18
+ - @copilotkit/shared@1.55.0-next.7
9
19
 
10
20
  ## 1.54.1-next.6
11
21
 
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "version": "1.54.1",
13
+ "version": "1.55.0-next.8",
14
14
  "sideEffects": false,
15
15
  "main": "./dist/index.cjs",
16
16
  "module": "./dist/index.mjs",
@@ -37,7 +37,7 @@
37
37
  "license": "MIT",
38
38
  "dependencies": {
39
39
  "@ag-ui/langgraph": "^0.0.25",
40
- "@copilotkit/shared": "1.54.1"
40
+ "@copilotkit/shared": "1.55.0-next.8"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@langchain/core": "^1.1.8",
@@ -53,8 +53,8 @@
53
53
  "vitest": "^3.2.4",
54
54
  "tsdown": "^0.20.3",
55
55
  "typescript": "^5.2.3",
56
- "eslint-config-custom": "1.4.13",
57
- "tsconfig": "1.4.13"
56
+ "eslint-config-custom": "1.4.12",
57
+ "tsconfig": "1.4.12"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@langchain/community": "^0.3.58",
package/tsconfig.json CHANGED
@@ -7,5 +7,12 @@
7
7
  "strict": false
8
8
  },
9
9
  "include": ["./src/**/*.ts"],
10
- "exclude": ["dist", "build", "node_modules", "**/*.test.ts", "**/*.test.tsx", "**/__tests__/*"]
10
+ "exclude": [
11
+ "dist",
12
+ "build",
13
+ "node_modules",
14
+ "**/*.test.ts",
15
+ "**/*.test.tsx",
16
+ "**/__tests__/*"
17
+ ]
11
18
  }