@flutchai/flutch-sdk 0.2.8 → 0.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flutchai/flutch-sdk",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
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",
@@ -56,6 +56,10 @@
56
56
  "./utils": {
57
57
  "types": "./dist/utils/index.d.ts",
58
58
  "default": "./dist/utils/index.js"
59
+ },
60
+ "./oauth": {
61
+ "types": "./dist/oauth/index.d.ts",
62
+ "default": "./dist/oauth/index.js"
59
63
  }
60
64
  },
61
65
  "files": [
@@ -93,46 +97,87 @@
93
97
  },
94
98
  "dependencies": {
95
99
  "@langchain/anthropic": "^1.3.22",
96
- "@langchain/azure-openai": "^0.0.11",
100
+ "@langchain/aws": "^1.3.1",
97
101
  "@langchain/cohere": "^1.0.4",
98
102
  "@langchain/core": "^1.1.30",
99
103
  "@langchain/langgraph": "^1.2.0",
100
104
  "@langchain/langgraph-checkpoint-mongodb": "1.0.0",
101
105
  "@langchain/mistralai": "^1.0.7",
102
106
  "@langchain/openai": "^1.2.12",
103
- "@nestjs/axios": "^3.0.0",
104
- "@nestjs/common": "^10.0.0",
105
- "@nestjs/config": "^3.0.0",
106
- "@nestjs/core": "^10.0.0",
107
- "@nestjs/mongoose": "^10.0.0",
108
- "@nestjs/platform-express": "^10.0.0",
109
- "@nestjs/swagger": "^11.2.0",
110
- "@nestjs/terminus": "^10.0.1",
111
- "@willsoto/nestjs-prometheus": "^5.0.0",
112
107
  "axios": "^1.6.5",
113
108
  "class-transformer": "^0.5.1",
114
109
  "class-validator": "^0.14.2",
115
- "ioredis": "^5.3.2",
116
110
  "mongodb": "^6.20.0",
117
- "mongoose": "^8.22.0",
118
- "prom-client": "^14.0.0",
119
- "reflect-metadata": "^0.2.0",
120
111
  "rxjs": "^7.8.1",
121
112
  "zod": "^3.22.4",
122
113
  "zod-from-json-schema": "^0.5.1",
123
114
  "zod-to-json-schema": "^3.25.0"
124
115
  },
116
+ "peerDependencies": {
117
+ "@nestjs/axios": "^3.0.0",
118
+ "@nestjs/common": "^10.0.0 || ^11.0.0",
119
+ "@nestjs/config": "^3.0.0",
120
+ "@nestjs/core": "^10.0.0 || ^11.0.0",
121
+ "@nestjs/mongoose": "^10.0.0",
122
+ "@nestjs/platform-express": "^10.0.0 || ^11.0.0",
123
+ "@nestjs/swagger": "^7.0.0 || ^11.0.0",
124
+ "@nestjs/terminus": "^10.0.0",
125
+ "@willsoto/nestjs-prometheus": "^5.0.0",
126
+ "ioredis": "^5.3.0",
127
+ "mongoose": "^8.0.0",
128
+ "prom-client": "^14.0.0",
129
+ "reflect-metadata": "^0.2.0"
130
+ },
131
+ "peerDependenciesMeta": {
132
+ "@nestjs/axios": {
133
+ "optional": true
134
+ },
135
+ "@nestjs/mongoose": {
136
+ "optional": true
137
+ },
138
+ "@nestjs/swagger": {
139
+ "optional": true
140
+ },
141
+ "@nestjs/terminus": {
142
+ "optional": true
143
+ },
144
+ "@willsoto/nestjs-prometheus": {
145
+ "optional": true
146
+ },
147
+ "ioredis": {
148
+ "optional": true
149
+ },
150
+ "mongoose": {
151
+ "optional": true
152
+ },
153
+ "prom-client": {
154
+ "optional": true
155
+ }
156
+ },
125
157
  "devDependencies": {
126
158
  "@jest/globals": "^29.0.0",
159
+ "@nestjs/axios": "^3.0.0",
160
+ "@nestjs/common": "^10.0.0",
161
+ "@nestjs/config": "^3.0.0",
162
+ "@nestjs/core": "^10.0.0",
163
+ "@nestjs/mongoose": "^10.0.0",
164
+ "@nestjs/platform-express": "^10.0.0",
165
+ "@nestjs/swagger": "^11.2.0",
166
+ "@nestjs/terminus": "^10.0.1",
127
167
  "@types/express": "^4.17.17",
128
168
  "@types/ioredis-mock": "^8",
129
169
  "@types/jest": "^29.0.0",
130
170
  "@types/json-schema": "^7.0.15",
131
171
  "@types/node": "^20.3.1",
172
+ "@willsoto/nestjs-prometheus": "^5.0.0",
173
+ "ioredis": "^5.3.2",
132
174
  "ioredis-mock": "^8.9.0",
133
175
  "jest": "^29.0.0",
134
176
  "json-schema": "^0.4.0",
177
+ "mongoose": "^8.22.0",
135
178
  "prettier": "^3.0.0",
179
+ "prom-client": "^14.0.0",
180
+ "reflect-metadata": "^0.2.0",
136
181
  "ts-jest": "^29.0.0",
137
182
  "tsup": "^8.5.0",
138
183
  "typescript": "^5.1.3"