@langchain/langgraph-sdk 0.0.22 → 0.0.23-dev.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/client.d.cts +1 -1
- package/dist/types.d.ts +1 -1
- package/index.d.cts +1 -1
- package/package.json +9 -10
package/client.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './dist/client.
|
|
1
|
+
export * from './dist/client.js'
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Checkpoint, Config, Metadata } from "./schema.js";
|
|
2
|
-
export type StreamMode = "values" | "messages" | "updates" | "events" | "debug";
|
|
2
|
+
export type StreamMode = "values" | "messages" | "updates" | "events" | "debug" | "custom" | "messages-tuple";
|
|
3
3
|
export type MultitaskStrategy = "reject" | "interrupt" | "rollback" | "enqueue";
|
|
4
4
|
export type OnConflictBehavior = "raise" | "do_nothing";
|
|
5
5
|
export type OnCompletionBehavior = "complete" | "continue";
|
package/index.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './dist/index.
|
|
1
|
+
export * from './dist/index.js'
|
package/package.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/langgraph-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23-dev.1",
|
|
4
4
|
"description": "Client library for interacting with the LangGraph API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "yarn@1.22.19",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"clean": "rm -rf dist/
|
|
9
|
-
"build": "yarn clean && yarn
|
|
10
|
-
"build:esm": "rm -f src/package.json && tsc --outDir dist/ && rm -rf dist/tests dist/**/tests",
|
|
11
|
-
"build:cjs": "echo '{}' > src/package.json && tsc --outDir dist-cjs/ -p tsconfig.cjs.json && node scripts/move-cjs-to-dist.js && rm -r dist-cjs src/package.json",
|
|
8
|
+
"clean": "rm -rf dist/ dist-cjs/",
|
|
9
|
+
"build": "yarn clean && yarn lc_build --create-entrypoints --pre --tree-shaking",
|
|
12
10
|
"prepublish": "yarn run build",
|
|
13
11
|
"format": "prettier --write src",
|
|
14
12
|
"lint": "prettier --check src && tsc --noEmit"
|
|
@@ -22,6 +20,7 @@
|
|
|
22
20
|
"uuid": "^9.0.0"
|
|
23
21
|
},
|
|
24
22
|
"devDependencies": {
|
|
23
|
+
"@langchain/scripts": "^0.1.3",
|
|
25
24
|
"@tsconfig/recommended": "^1.0.2",
|
|
26
25
|
"@types/node": "^20.12.12",
|
|
27
26
|
"@types/uuid": "^9.0.1",
|
|
@@ -54,13 +53,13 @@
|
|
|
54
53
|
},
|
|
55
54
|
"files": [
|
|
56
55
|
"dist/",
|
|
57
|
-
"client.cjs",
|
|
58
|
-
"client.js",
|
|
59
|
-
"client.d.ts",
|
|
60
|
-
"client.d.cts",
|
|
61
56
|
"index.cjs",
|
|
62
57
|
"index.js",
|
|
63
58
|
"index.d.ts",
|
|
64
|
-
"index.d.cts"
|
|
59
|
+
"index.d.cts",
|
|
60
|
+
"client.cjs",
|
|
61
|
+
"client.js",
|
|
62
|
+
"client.d.ts",
|
|
63
|
+
"client.d.cts"
|
|
65
64
|
]
|
|
66
65
|
}
|