@langchain/langgraph 0.0.4 → 0.0.5

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.
@@ -1,9 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StateGraph = exports.START = exports.Graph = exports.END = void 0;
3
+ exports.MessageGraph = exports.StateGraph = exports.START = exports.Graph = exports.END = void 0;
4
4
  var graph_js_1 = require("./graph.cjs");
5
5
  Object.defineProperty(exports, "END", { enumerable: true, get: function () { return graph_js_1.END; } });
6
6
  Object.defineProperty(exports, "Graph", { enumerable: true, get: function () { return graph_js_1.Graph; } });
7
7
  var state_js_1 = require("./state.cjs");
8
8
  Object.defineProperty(exports, "START", { enumerable: true, get: function () { return state_js_1.START; } });
9
9
  Object.defineProperty(exports, "StateGraph", { enumerable: true, get: function () { return state_js_1.StateGraph; } });
10
+ var message_js_1 = require("./message.cjs");
11
+ Object.defineProperty(exports, "MessageGraph", { enumerable: true, get: function () { return message_js_1.MessageGraph; } });
@@ -1,2 +1,3 @@
1
1
  export { END, Graph } from "./graph.js";
2
2
  export { type StateGraphArgs, START, StateGraph } from "./state.js";
3
+ export { MessageGraph } from "./message.js";
@@ -1,2 +1,3 @@
1
1
  export { END, Graph } from "./graph.js";
2
2
  export { START, StateGraph } from "./state.js";
3
+ export { MessageGraph } from "./message.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "LangGraph",
5
5
  "type": "module",
6
6
  "engines": {