@copilotkit/runtime 1.4.0-pre-1-4-0-alpha.10 → 1.4.0-pre-1-4-0.13

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 (42) hide show
  1. package/CHANGELOG.md +147 -24
  2. package/dist/{chunk-YUJSVJWS.mjs → chunk-AQBZWBJD.mjs} +2 -2
  3. package/dist/{chunk-SBWLAAB3.mjs → chunk-CBZV4PPM.mjs} +2 -2
  4. package/dist/{chunk-RDHJQVWH.mjs → chunk-NKGWZWKJ.mjs} +18 -18
  5. package/dist/chunk-NKGWZWKJ.mjs.map +1 -0
  6. package/dist/{chunk-SVL5LEKB.mjs → chunk-P4EZLCB6.mjs} +2 -2
  7. package/dist/{copilot-runtime-dbe5fa02.d.ts → copilot-runtime-d9ef5d8c.d.ts} +7 -7
  8. package/dist/index.d.ts +1 -1
  9. package/dist/index.js +19 -19
  10. package/dist/index.js.map +1 -1
  11. package/dist/index.mjs +6 -6
  12. package/dist/lib/index.d.ts +1 -1
  13. package/dist/lib/index.js +19 -19
  14. package/dist/lib/index.js.map +1 -1
  15. package/dist/lib/index.mjs +6 -6
  16. package/dist/lib/integrations/index.d.ts +2 -2
  17. package/dist/lib/integrations/index.js +4 -4
  18. package/dist/lib/integrations/index.js.map +1 -1
  19. package/dist/lib/integrations/index.mjs +4 -4
  20. package/dist/lib/integrations/nest/index.d.ts +1 -1
  21. package/dist/lib/integrations/nest/index.js +4 -4
  22. package/dist/lib/integrations/nest/index.js.map +1 -1
  23. package/dist/lib/integrations/nest/index.mjs +2 -2
  24. package/dist/lib/integrations/node-express/index.d.ts +1 -1
  25. package/dist/lib/integrations/node-express/index.js +4 -4
  26. package/dist/lib/integrations/node-express/index.js.map +1 -1
  27. package/dist/lib/integrations/node-express/index.mjs +2 -2
  28. package/dist/lib/integrations/node-http/index.d.ts +1 -1
  29. package/dist/lib/integrations/node-http/index.js +4 -4
  30. package/dist/lib/integrations/node-http/index.js.map +1 -1
  31. package/dist/lib/integrations/node-http/index.mjs +1 -1
  32. package/package.json +4 -4
  33. package/src/agents/langgraph/event-source.ts +2 -2
  34. package/src/lib/runtime/copilot-runtime.ts +6 -6
  35. package/src/lib/runtime/remote-action-constructors.ts +7 -7
  36. package/src/lib/runtime/remote-actions.ts +9 -9
  37. package/src/lib/runtime/{remote-lg-cloud-action.ts → remote-lg-action.ts} +18 -18
  38. package/src/lib/telemetry-client.ts +3 -3
  39. package/dist/chunk-RDHJQVWH.mjs.map +0 -1
  40. /package/dist/{chunk-YUJSVJWS.mjs.map → chunk-AQBZWBJD.mjs.map} +0 -0
  41. /package/dist/{chunk-SBWLAAB3.mjs.map → chunk-CBZV4PPM.mjs.map} +0 -0
  42. /package/dist/{chunk-SVL5LEKB.mjs.map → chunk-P4EZLCB6.mjs.map} +0 -0
@@ -44,7 +44,7 @@ var require_package = __commonJS({
44
44
  publishConfig: {
45
45
  access: "public"
46
46
  },
47
- version: "1.4.0-pre-1-4-0-alpha.10",
47
+ version: "1.4.0-pre-1-4-0.13",
48
48
  sideEffects: false,
49
49
  main: "./dist/index.js",
50
50
  module: "./dist/index.mjs",
@@ -1188,7 +1188,7 @@ var import_shared2 = require("@copilotkit/shared");
1188
1188
  var EndpointType;
1189
1189
  (function(EndpointType2) {
1190
1190
  EndpointType2["CopilotKit"] = "copilotKit";
1191
- EndpointType2["LangGraphCloud"] = "langgraph-cloud";
1191
+ EndpointType2["LangGraphPlatform"] = "langgraph-platform";
1192
1192
  })(EndpointType || (EndpointType = {}));
1193
1193
 
1194
1194
  // src/lib/telemetry-client.ts
@@ -1252,7 +1252,7 @@ var import_rxjs = require("rxjs");
1252
1252
  function resolveEndpointType(endpoint) {
1253
1253
  if (!endpoint.type) {
1254
1254
  if ("langsmithApiKey" in endpoint && "deploymentUrl" in endpoint && "agents" in endpoint) {
1255
- return EndpointType.LangGraphCloud;
1255
+ return EndpointType.LangGraphPlatform;
1256
1256
  } else {
1257
1257
  return EndpointType.CopilotKit;
1258
1258
  }
@@ -1282,7 +1282,7 @@ function getRuntimeInstanceTelemetryInfo(runtime) {
1282
1282
  ]
1283
1283
  };
1284
1284
  }
1285
- if (endpointType === EndpointType.LangGraphCloud) {
1285
+ if (endpointType === EndpointType.LangGraphPlatform) {
1286
1286
  const ep = endpoint;
1287
1287
  info = {
1288
1288
  ...info,