@langchain/langgraph 0.2.10-rc.0 → 0.2.10-rc.2

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/dist/index.cjs CHANGED
@@ -15,10 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
16
  };
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.MessagesAnnotation = void 0;
19
18
  const async_local_storage_js_1 = require("./setup/async_local_storage.cjs");
20
19
  // Initialize global async local storage instance for tracing
21
20
  (0, async_local_storage_js_1.initializeAsyncLocalStorageSingleton)();
22
21
  __exportStar(require("./web.cjs"), exports);
23
- var messages_annotation_js_1 = require("./graph/messages_annotation.cjs");
24
- Object.defineProperty(exports, "MessagesAnnotation", { enumerable: true, get: function () { return messages_annotation_js_1.MessagesAnnotation; } });
package/dist/index.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  export * from "./web.js";
2
- export { MessagesAnnotation } from "./graph/messages_annotation.js";
package/dist/index.js CHANGED
@@ -3,4 +3,3 @@ import { initializeAsyncLocalStorageSingleton } from "./setup/async_local_storag
3
3
  // Initialize global async local storage instance for tracing
4
4
  initializeAsyncLocalStorageSingleton();
5
5
  export * from "./web.js";
6
- export { MessagesAnnotation } from "./graph/messages_annotation.js";
package/dist/web.cjs CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.MemoryStore = exports.AsyncBatchedStore = exports.BaseStore = exports.BaseCheckpointSaver = exports.emptyCheckpoint = exports.copyCheckpoint = exports.MemorySaver = exports.Send = exports.BinaryOperatorAggregate = exports.BaseChannel = exports.Annotation = exports.messagesStateReducer = exports.MessageGraph = exports.StateGraph = exports.START = exports.Graph = exports.END = void 0;
17
+ exports.MessagesAnnotation = exports.MemoryStore = exports.AsyncBatchedStore = exports.BaseStore = exports.BaseCheckpointSaver = exports.emptyCheckpoint = exports.copyCheckpoint = exports.MemorySaver = exports.Send = exports.BinaryOperatorAggregate = exports.BaseChannel = exports.Annotation = exports.messagesStateReducer = exports.MessageGraph = exports.StateGraph = exports.START = exports.Graph = exports.END = void 0;
18
18
  var index_js_1 = require("./graph/index.cjs");
19
19
  Object.defineProperty(exports, "END", { enumerable: true, get: function () { return index_js_1.END; } });
20
20
  Object.defineProperty(exports, "Graph", { enumerable: true, get: function () { return index_js_1.Graph; } });
@@ -38,3 +38,5 @@ Object.defineProperty(exports, "BaseStore", { enumerable: true, get: function ()
38
38
  Object.defineProperty(exports, "AsyncBatchedStore", { enumerable: true, get: function () { return langgraph_checkpoint_1.AsyncBatchedStore; } });
39
39
  Object.defineProperty(exports, "MemoryStore", { enumerable: true, get: function () { return langgraph_checkpoint_1.MemoryStore; } });
40
40
  __exportStar(require("./managed/index.cjs"), exports);
41
+ var messages_annotation_js_1 = require("./graph/messages_annotation.cjs");
42
+ Object.defineProperty(exports, "MessagesAnnotation", { enumerable: true, get: function () { return messages_annotation_js_1.MessagesAnnotation; } });
package/dist/web.d.ts CHANGED
@@ -7,4 +7,5 @@ export { type RetryPolicy } from "./pregel/utils/index.js";
7
7
  export { Send } from "./constants.js";
8
8
  export { MemorySaver, type Checkpoint, type CheckpointMetadata, type CheckpointTuple, copyCheckpoint, emptyCheckpoint, BaseCheckpointSaver, type Item, type GetOperation, type SearchOperation, type PutOperation, type Operation, type OperationResults, BaseStore, AsyncBatchedStore, MemoryStore, type NameSpacePath, type NamespaceMatchType, type MatchCondition, type ListNamespacesOperation, } from "@langchain/langgraph-checkpoint";
9
9
  export * from "./managed/index.js";
10
+ export { MessagesAnnotation } from "./graph/messages_annotation.js";
10
11
  export { type LangGraphRunnableConfig } from "./pregel/runnable_types.js";
package/dist/web.js CHANGED
@@ -4,3 +4,4 @@ export { BaseChannel, BinaryOperatorAggregate, } from "./channels/index.js";
4
4
  export { Send } from "./constants.js";
5
5
  export { MemorySaver, copyCheckpoint, emptyCheckpoint, BaseCheckpointSaver, BaseStore, AsyncBatchedStore, MemoryStore, } from "@langchain/langgraph-checkpoint";
6
6
  export * from "./managed/index.js";
7
+ export { MessagesAnnotation } from "./graph/messages_annotation.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph",
3
- "version": "0.2.10-rc.0",
3
+ "version": "0.2.10-rc.2",
4
4
  "description": "LangGraph",
5
5
  "type": "module",
6
6
  "engines": {
@@ -46,7 +46,7 @@
46
46
  "@langchain/core": "^0.3.0",
47
47
  "@langchain/langgraph-checkpoint-sqlite": "workspace:*",
48
48
  "@langchain/openai": "^0.3.0",
49
- "@langchain/scripts": ">=0.1.2 <0.2.0",
49
+ "@langchain/scripts": ">=0.1.3 <0.2.0",
50
50
  "@swc/core": "^1.3.90",
51
51
  "@swc/jest": "^0.2.29",
52
52
  "@tsconfig/recommended": "^1.0.3",