@copilotkit/runtime 1.52.1 → 1.52.2-next.1

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,5 +1,23 @@
1
1
  # @copilotkit/runtime
2
2
 
3
+ ## 1.52.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - d1f7aba: feat(runtime): expose messages in afterRequestMiddleware
8
+ - Updated dependencies [bf1fc6f]
9
+ - @copilotkit/shared@1.52.2-next.1
10
+ - @copilotkitnext/agent@1.52.2-next.1
11
+ - @copilotkitnext/runtime@1.52.2-next.1
12
+
13
+ ## 1.52.2-next.0
14
+
15
+ ### Patch Changes
16
+
17
+ - @copilotkit/shared@1.52.2-next.0
18
+ - @copilotkitnext/agent@1.52.2-next.0
19
+ - @copilotkitnext/runtime@1.52.2-next.0
20
+
3
21
  ## 1.52.1
4
22
 
5
23
  ### Patch Changes
package/dist/package.cjs CHANGED
@@ -12,7 +12,7 @@ var require_package = /* @__PURE__ */ require_runtime.__commonJSMin(((exports, m
12
12
  "url": "https://github.com/CopilotKit/CopilotKit.git"
13
13
  },
14
14
  "publishConfig": { "access": "public" },
15
- "version": "1.52.1",
15
+ "version": "1.52.2-next.1",
16
16
  "sideEffects": [
17
17
  "./dist/index.mjs",
18
18
  "./dist/index.cjs",
@@ -39,7 +39,7 @@ var require_package = /* @__PURE__ */ require_runtime.__commonJSMin(((exports, m
39
39
  "types": "./dist/index.d.cts",
40
40
  "license": "MIT",
41
41
  "scripts": {
42
- "build": "pnpm run generate-graphql-schema && tsdown",
42
+ "build": "tsdown",
43
43
  "dev": "tsdown --watch",
44
44
  "test": "vitest run",
45
45
  "test:watch": "vitest",
@@ -114,6 +114,7 @@ var require_package = /* @__PURE__ */ require_runtime.__commonJSMin(((exports, m
114
114
  "langchain": { "optional": true },
115
115
  "openai": { "optional": true }
116
116
  },
117
+ "nx": { "targets": { "build": { "dependsOn": ["generate-graphql-schema", "^build"] } } },
117
118
  "keywords": [
118
119
  "copilotkit",
119
120
  "copilot",
package/dist/package.mjs CHANGED
@@ -12,7 +12,7 @@ var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
12
12
  "url": "https://github.com/CopilotKit/CopilotKit.git"
13
13
  },
14
14
  "publishConfig": { "access": "public" },
15
- "version": "1.52.1",
15
+ "version": "1.52.2-next.1",
16
16
  "sideEffects": [
17
17
  "./dist/index.mjs",
18
18
  "./dist/index.cjs",
@@ -39,7 +39,7 @@ var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
39
39
  "types": "./dist/index.d.cts",
40
40
  "license": "MIT",
41
41
  "scripts": {
42
- "build": "pnpm run generate-graphql-schema && tsdown",
42
+ "build": "tsdown",
43
43
  "dev": "tsdown --watch",
44
44
  "test": "vitest run",
45
45
  "test:watch": "vitest",
@@ -114,6 +114,7 @@ var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
114
114
  "langchain": { "optional": true },
115
115
  "openai": { "optional": true }
116
116
  },
117
+ "nx": { "targets": { "build": { "dependsOn": ["generate-graphql-schema", "^build"] } } },
117
118
  "keywords": [
118
119
  "copilotkit",
119
120
  "copilot",
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "version": "1.52.1",
12
+ "version": "1.52.2-next.1",
13
13
  "sideEffects": [
14
14
  "./dist/index.mjs",
15
15
  "./dist/index.cjs",
@@ -72,9 +72,9 @@
72
72
  "rxjs": "7.8.1",
73
73
  "type-graphql": "2.0.0-rc.1",
74
74
  "zod": "^3.23.3",
75
- "@copilotkit/shared": "1.52.1",
76
- "@copilotkitnext/agent": "1.52.1",
77
- "@copilotkitnext/runtime": "1.52.1"
75
+ "@copilotkit/shared": "1.52.2-next.1",
76
+ "@copilotkitnext/agent": "1.52.2-next.1",
77
+ "@copilotkitnext/runtime": "1.52.2-next.1"
78
78
  },
79
79
  "peerDependencies": {
80
80
  "@anthropic-ai/sdk": "^0.57.0",
@@ -117,6 +117,16 @@
117
117
  "optional": true
118
118
  }
119
119
  },
120
+ "nx": {
121
+ "targets": {
122
+ "build": {
123
+ "dependsOn": [
124
+ "generate-graphql-schema",
125
+ "^build"
126
+ ]
127
+ }
128
+ }
129
+ },
120
130
  "keywords": [
121
131
  "copilotkit",
122
132
  "copilot",
@@ -130,7 +140,7 @@
130
140
  "textarea"
131
141
  ],
132
142
  "scripts": {
133
- "build": "pnpm run generate-graphql-schema && tsdown",
143
+ "build": "tsdown",
134
144
  "dev": "tsdown --watch",
135
145
  "test": "vitest run",
136
146
  "test:watch": "vitest",