@flutchai/flutch-sdk 0.2.16 → 0.2.18
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 +195 -145
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -6
- package/dist/index.d.ts +14 -6
- package/dist/index.js +196 -146
- package/dist/index.js.map +1 -1
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flutchai/flutch-sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Base infrastructure package for building graph microservices - core interfaces, types, utilities, and execution engine",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -102,11 +102,13 @@
|
|
|
102
102
|
"@langchain/core": "^1.1.30",
|
|
103
103
|
"@langchain/langgraph": "^1.2.0",
|
|
104
104
|
"@langchain/langgraph-checkpoint-mongodb": "1.0.0",
|
|
105
|
+
"@langchain/langgraph-checkpoint-postgres": "^1.0.1",
|
|
105
106
|
"@langchain/mistralai": "^1.0.7",
|
|
106
107
|
"@langchain/openai": "^1.2.12",
|
|
107
108
|
"axios": "^1.6.5",
|
|
108
109
|
"class-transformer": "^0.5.1",
|
|
109
110
|
"class-validator": "^0.14.2",
|
|
111
|
+
"ioredis-mock": "^8.9.0",
|
|
110
112
|
"mongodb": "^6.20.0",
|
|
111
113
|
"rxjs": "^7.8.1",
|
|
112
114
|
"zod": "^3.22.4",
|
|
@@ -129,6 +131,9 @@
|
|
|
129
131
|
"reflect-metadata": "^0.2.0"
|
|
130
132
|
},
|
|
131
133
|
"peerDependenciesMeta": {
|
|
134
|
+
"@langchain/langgraph-checkpoint-postgres": {
|
|
135
|
+
"optional": true
|
|
136
|
+
},
|
|
132
137
|
"@nestjs/axios": {
|
|
133
138
|
"optional": true
|
|
134
139
|
},
|