@langchain/langgraph-api 0.0.30 → 0.0.31
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/api/assistants.d.mts +3 -0
- package/dist/api/assistants.mjs +37 -21
- package/dist/api/meta.d.mts +3 -0
- package/dist/api/runs.d.mts +3 -0
- package/dist/api/store.d.mts +3 -0
- package/dist/api/threads.d.mts +3 -0
- package/dist/auth/custom.d.mts +12 -0
- package/dist/auth/index.d.mts +1 -1
- package/dist/cli/entrypoint.d.mts +1 -0
- package/dist/cli/utils/ipc/client.d.mts +5 -0
- package/dist/cli/utils/ipc/utils/get-pipe-path.d.mts +1 -0
- package/dist/cli/utils/ipc/utils/temporary-directory.d.mts +5 -0
- package/dist/command.d.mts +11 -0
- package/dist/graph/load.d.mts +16 -0
- package/dist/graph/load.hooks.d.mts +2 -0
- package/dist/graph/load.mjs +17 -4
- package/dist/graph/load.utils.d.mts +22 -0
- package/dist/graph/load.utils.mjs +4 -36
- package/dist/graph/parser/index.d.mts +17 -0
- package/dist/graph/parser/index.mjs +41 -0
- package/dist/graph/parser/parser.d.mts +63 -0
- package/dist/graph/parser/parser.mjs +3 -3
- package/dist/graph/parser/parser.worker.d.mts +1 -0
- package/dist/graph/parser/schema/types.d.mts +154 -0
- package/dist/graph/parser/schema/types.mjs +0 -111
- package/dist/graph/parser/schema/types.template.d.mts +1 -0
- package/dist/http/custom.d.mts +6 -0
- package/dist/http/middleware.d.mts +11 -0
- package/dist/logging.d.mts +7 -0
- package/dist/loopback.d.mts +3 -0
- package/dist/preload.d.mts +1 -0
- package/dist/queue.d.mts +1 -0
- package/dist/schemas.d.mts +1369 -0
- package/dist/server.d.mts +157 -0
- package/dist/state.d.mts +3 -0
- package/dist/storage/checkpoint.d.mts +19 -0
- package/dist/storage/importMap.d.mts +55 -0
- package/dist/storage/ops.d.mts +284 -0
- package/dist/storage/persist.d.mts +18 -0
- package/dist/storage/store.d.mts +17 -0
- package/dist/stream.d.mts +38 -0
- package/dist/ui/load.d.mts +8 -0
- package/dist/utils/abort.d.mts +1 -0
- package/dist/utils/hono.d.mts +5 -0
- package/dist/utils/importMap.d.mts +55 -0
- package/dist/utils/runnableConfig.d.mts +3 -0
- package/dist/utils/serde.d.mts +5 -0
- package/dist/webhook.d.mts +11 -0
- package/package.json +10 -6
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Run } from "./storage/ops.mjs";
|
|
2
|
+
import type { StreamCheckpoint } from "./stream.mjs";
|
|
3
|
+
export declare function callWebhook(result: {
|
|
4
|
+
checkpoint: StreamCheckpoint | undefined;
|
|
5
|
+
status: string | undefined;
|
|
6
|
+
exception: Error | undefined;
|
|
7
|
+
run: Run;
|
|
8
|
+
webhook: string;
|
|
9
|
+
run_started_at: Date;
|
|
10
|
+
run_ended_at: Date | undefined;
|
|
11
|
+
}): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/langgraph-api",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "^18.19.0 || >=20.16.0"
|
|
@@ -12,17 +12,21 @@
|
|
|
12
12
|
],
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
-
"types": "./dist/cli/spawn.d.
|
|
15
|
+
"types": "./dist/cli/spawn.d.mts",
|
|
16
16
|
"default": "./dist/cli/spawn.mjs"
|
|
17
17
|
},
|
|
18
18
|
"./auth": {
|
|
19
|
-
"types": "./dist/auth/index.d.
|
|
19
|
+
"types": "./dist/auth/index.d.mts",
|
|
20
20
|
"default": "./dist/auth/index.mjs"
|
|
21
21
|
},
|
|
22
22
|
"./semver": {
|
|
23
|
-
"types": "./dist/semver/index.d.
|
|
23
|
+
"types": "./dist/semver/index.d.mts",
|
|
24
24
|
"default": "./dist/semver/index.mjs"
|
|
25
25
|
},
|
|
26
|
+
"./schema": {
|
|
27
|
+
"types": "./dist/graph/parser/index.d.mts",
|
|
28
|
+
"default": "./dist/graph/parser/index.mjs"
|
|
29
|
+
},
|
|
26
30
|
"./package.json": "./package.json"
|
|
27
31
|
},
|
|
28
32
|
"repository": {
|
|
@@ -49,13 +53,13 @@
|
|
|
49
53
|
"winston": "^3.17.0",
|
|
50
54
|
"winston-console-format": "^1.0.8",
|
|
51
55
|
"zod": "^3.23.8",
|
|
52
|
-
"@langchain/langgraph-ui": "0.0.
|
|
56
|
+
"@langchain/langgraph-ui": "0.0.31"
|
|
53
57
|
},
|
|
54
58
|
"peerDependencies": {
|
|
55
59
|
"@langchain/core": "^0.3.42",
|
|
56
60
|
"@langchain/langgraph": "^0.2.57",
|
|
57
61
|
"@langchain/langgraph-checkpoint": "~0.0.16",
|
|
58
|
-
"@langchain/langgraph-sdk": "
|
|
62
|
+
"@langchain/langgraph-sdk": "~0.0.70",
|
|
59
63
|
"typescript": "^5.5.4"
|
|
60
64
|
},
|
|
61
65
|
"peerDependenciesMeta": {
|