@carlonicora/nestjs-neo4jsonapi 1.29.0 → 1.31.0
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/config/base.config.d.ts.map +1 -1
- package/dist/config/base.config.js +7 -0
- package/dist/config/base.config.js.map +1 -1
- package/dist/config/interfaces/base.config.interface.d.ts +2 -0
- package/dist/config/interfaces/base.config.interface.d.ts.map +1 -1
- package/dist/config/interfaces/config.ai.interface.d.ts +6 -0
- package/dist/config/interfaces/config.ai.interface.d.ts.map +1 -1
- package/dist/config/interfaces/config.google.interface.d.ts +5 -0
- package/dist/config/interfaces/config.google.interface.d.ts.map +1 -0
- package/dist/config/interfaces/config.google.interface.js +3 -0
- package/dist/config/interfaces/config.google.interface.js.map +1 -0
- package/dist/config/interfaces/index.d.ts +1 -0
- package/dist/config/interfaces/index.d.ts.map +1 -1
- package/dist/config/interfaces/index.js +1 -0
- package/dist/config/interfaces/index.js.map +1 -1
- package/dist/core/llm/services/model.service.d.ts.map +1 -1
- package/dist/core/llm/services/model.service.js +38 -0
- package/dist/core/llm/services/model.service.js.map +1 -1
- package/dist/core/llm/services/vision.llm.service.d.ts +14 -0
- package/dist/core/llm/services/vision.llm.service.d.ts.map +1 -1
- package/dist/core/llm/services/vision.llm.service.js +48 -1
- package/dist/core/llm/services/vision.llm.service.js.map +1 -1
- package/dist/foundations/auth/auth.module.d.ts.map +1 -1
- package/dist/foundations/auth/auth.module.js +13 -3
- package/dist/foundations/auth/auth.module.js.map +1 -1
- package/dist/foundations/auth/controllers/auth.google.controller.d.ts +13 -0
- package/dist/foundations/auth/controllers/auth.google.controller.d.ts.map +1 -0
- package/dist/foundations/auth/controllers/auth.google.controller.js +61 -0
- package/dist/foundations/auth/controllers/auth.google.controller.js.map +1 -0
- package/dist/foundations/auth/services/auth.google.service.d.ts +28 -0
- package/dist/foundations/auth/services/auth.google.service.d.ts.map +1 -0
- package/dist/foundations/auth/services/auth.google.service.js +123 -0
- package/dist/foundations/auth/services/auth.google.service.js.map +1 -0
- package/dist/foundations/auth/services/auth.service.d.ts +3 -1
- package/dist/foundations/auth/services/auth.service.d.ts.map +1 -1
- package/dist/foundations/auth/services/auth.service.js +20 -2
- package/dist/foundations/auth/services/auth.service.js.map +1 -1
- package/dist/foundations/google-user/entities/google-user.d.ts +21 -0
- package/dist/foundations/google-user/entities/google-user.d.ts.map +1 -0
- package/dist/foundations/google-user/entities/google-user.js +28 -0
- package/dist/foundations/google-user/entities/google-user.js.map +1 -0
- package/dist/foundations/google-user/google-user.module.d.ts +3 -0
- package/dist/foundations/google-user/google-user.module.d.ts.map +1 -0
- package/dist/foundations/google-user/google-user.module.js +26 -0
- package/dist/foundations/google-user/google-user.module.js.map +1 -0
- package/dist/foundations/google-user/index.d.ts +6 -0
- package/dist/foundations/google-user/index.d.ts.map +1 -0
- package/dist/foundations/google-user/index.js +22 -0
- package/dist/foundations/google-user/index.js.map +1 -0
- package/dist/foundations/google-user/repositories/google-user.repository.d.ts +21 -0
- package/dist/foundations/google-user/repositories/google-user.repository.d.ts.map +1 -0
- package/dist/foundations/google-user/repositories/google-user.repository.js +50 -0
- package/dist/foundations/google-user/repositories/google-user.repository.js.map +1 -0
- package/dist/foundations/google-user/services/google-user.service.d.ts +21 -0
- package/dist/foundations/google-user/services/google-user.service.d.ts.map +1 -0
- package/dist/foundations/google-user/services/google-user.service.js +63 -0
- package/dist/foundations/google-user/services/google-user.service.js.map +1 -0
- package/dist/foundations/google-user/types/google.user.type.d.ts +7 -0
- package/dist/foundations/google-user/types/google.user.type.d.ts.map +1 -0
- package/dist/foundations/google-user/types/google.user.type.js +3 -0
- package/dist/foundations/google-user/types/google.user.type.js.map +1 -0
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlonicora/nestjs-neo4jsonapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.0",
|
|
4
4
|
"description": "NestJS foundation package with JSON:API, Neo4j, Redis, LangChain agents, and common utilities",
|
|
5
5
|
"author": "Carlo Nicora",
|
|
6
6
|
"license": "GPL-3.0-or-later",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"@getbrevo/brevo": "^3.0.1",
|
|
68
68
|
"@langchain/community": "^1.1.2",
|
|
69
69
|
"@langchain/core": "^1.1.11",
|
|
70
|
+
"@langchain/google-vertexai": "^2.1.7",
|
|
70
71
|
"@langchain/langgraph": "^1.0.7",
|
|
71
72
|
"@langchain/openai": "^1.2.1",
|
|
72
73
|
"@langchain/textsplitters": "^1.0.1",
|