@copilotkit/runtime 1.9.3-next.4 → 1.10.0-next.0

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 (32) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/{chunk-VM2GXVSW.mjs → chunk-HB5Z72TJ.mjs} +2 -2
  3. package/dist/{chunk-TOTCMKGV.mjs → chunk-I5VNKUWI.mjs} +2 -2
  4. package/dist/{chunk-M52XCCYL.mjs → chunk-IMZSBLG7.mjs} +2 -2
  5. package/dist/{chunk-UNXHBYJH.mjs → chunk-X76SZ4PE.mjs} +3 -2
  6. package/dist/chunk-X76SZ4PE.mjs.map +1 -0
  7. package/dist/{chunk-L5XBPLH4.mjs → chunk-Z5WUVWW7.mjs} +2 -2
  8. package/dist/index.js +2 -1
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.mjs +5 -5
  11. package/dist/lib/index.js +2 -1
  12. package/dist/lib/index.js.map +1 -1
  13. package/dist/lib/index.mjs +5 -5
  14. package/dist/lib/integrations/index.js +1 -1
  15. package/dist/lib/integrations/index.js.map +1 -1
  16. package/dist/lib/integrations/index.mjs +4 -4
  17. package/dist/lib/integrations/nest/index.js +1 -1
  18. package/dist/lib/integrations/nest/index.js.map +1 -1
  19. package/dist/lib/integrations/nest/index.mjs +2 -2
  20. package/dist/lib/integrations/node-express/index.js +1 -1
  21. package/dist/lib/integrations/node-express/index.js.map +1 -1
  22. package/dist/lib/integrations/node-express/index.mjs +2 -2
  23. package/dist/lib/integrations/node-http/index.js +1 -1
  24. package/dist/lib/integrations/node-http/index.js.map +1 -1
  25. package/dist/lib/integrations/node-http/index.mjs +1 -1
  26. package/package.json +2 -2
  27. package/src/lib/streaming.ts +1 -0
  28. package/dist/chunk-UNXHBYJH.mjs.map +0 -1
  29. /package/dist/{chunk-VM2GXVSW.mjs.map → chunk-HB5Z72TJ.mjs.map} +0 -0
  30. /package/dist/{chunk-TOTCMKGV.mjs.map → chunk-I5VNKUWI.mjs.map} +0 -0
  31. /package/dist/{chunk-M52XCCYL.mjs.map → chunk-IMZSBLG7.mjs.map} +0 -0
  32. /package/dist/{chunk-L5XBPLH4.mjs.map → chunk-Z5WUVWW7.mjs.map} +0 -0
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  copilotRuntimeNodeHttpEndpoint
3
- } from "../../../chunk-UNXHBYJH.mjs";
3
+ } from "../../../chunk-X76SZ4PE.mjs";
4
4
  import "../../../chunk-SHBDMA63.mjs";
5
5
  import "../../../chunk-QLLV2QVK.mjs";
6
6
  import "../../../chunk-XWBDEXDA.mjs";
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "version": "1.9.3-next.4",
12
+ "version": "1.10.0-next.0",
13
13
  "sideEffects": false,
14
14
  "main": "./dist/index.js",
15
15
  "module": "./dist/index.mjs",
@@ -69,7 +69,7 @@
69
69
  "rxjs": "7.8.1",
70
70
  "type-graphql": "2.0.0-rc.1",
71
71
  "zod": "^3.23.3",
72
- "@copilotkit/shared": "1.9.3-next.4"
72
+ "@copilotkit/shared": "1.10.0-next.0"
73
73
  },
74
74
  "peerDependencies": {
75
75
  "@ag-ui/client": ">=0.0.34",
@@ -81,6 +81,7 @@ function convertStreamingErrorToStructured(error: any): CopilotKitError {
81
81
  error?.message?.includes("other side closed") ||
82
82
  error?.code === "UND_ERR_SOCKET"
83
83
  ) {
84
+ console.log("error", error);
84
85
  return new CopilotKitLowLevelError({
85
86
  error: error instanceof Error ? error : new Error(String(error)),
86
87
  url: "streaming connection",