@juspay/neurolink 9.26.2 → 9.27.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/CHANGELOG.md +6 -0
- package/dist/lib/memory/hippocampusInitializer.d.ts +2 -2
- package/dist/lib/memory/hippocampusInitializer.js +1 -1
- package/dist/lib/types/conversation.d.ts +2 -2
- package/dist/lib/types/index.d.ts +1 -0
- package/dist/memory/hippocampusInitializer.d.ts +2 -2
- package/dist/memory/hippocampusInitializer.js +1 -1
- package/dist/types/conversation.d.ts +2 -2
- package/dist/types/index.d.ts +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [9.27.0](https://github.com/juspay/neurolink/compare/v9.26.2...v9.27.0) (2026-03-18)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(memory):** add CustomStorageConfig type to Hippocampus integration ([dfcea2b](https://github.com/juspay/neurolink/commit/dfcea2b04834a86812f13c5d85ad3d7b9ab530a7))
|
|
6
|
+
|
|
1
7
|
## [9.26.2](https://github.com/juspay/neurolink/compare/v9.26.1...v9.26.2) (2026-03-18)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Hippocampus, type HippocampusConfig } from "@juspay/hippocampus";
|
|
2
|
-
export type { HippocampusConfig };
|
|
1
|
+
import { Hippocampus, type HippocampusConfig, type CustomStorageConfig } from "@juspay/hippocampus";
|
|
2
|
+
export type { HippocampusConfig, CustomStorageConfig };
|
|
3
3
|
export type Memory = HippocampusConfig & {
|
|
4
4
|
enabled?: boolean;
|
|
5
5
|
};
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
* - Current time (ISO): `new Date().toISOString()`
|
|
34
34
|
*/
|
|
35
35
|
import type { Mem0Config } from "../memory/mem0Initializer.js";
|
|
36
|
-
import type { Memory } from "../memory/hippocampusInitializer.js";
|
|
37
|
-
export type { Memory };
|
|
36
|
+
import type { Memory, CustomStorageConfig } from "../memory/hippocampusInitializer.js";
|
|
37
|
+
export type { Memory, CustomStorageConfig };
|
|
38
38
|
/**
|
|
39
39
|
* Configuration for conversation memory feature
|
|
40
40
|
*/
|
|
@@ -38,4 +38,5 @@ export * from "./contextTypes.js";
|
|
|
38
38
|
export * from "./fileReferenceTypes.js";
|
|
39
39
|
export * from "./ragTypes.js";
|
|
40
40
|
export * from "./conversationMemoryInterface.js";
|
|
41
|
+
export type { CustomStorageConfig } from "./conversation.js";
|
|
41
42
|
export * from "./subscriptionTypes.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Hippocampus, type HippocampusConfig } from "@juspay/hippocampus";
|
|
2
|
-
export type { HippocampusConfig };
|
|
1
|
+
import { Hippocampus, type HippocampusConfig, type CustomStorageConfig } from "@juspay/hippocampus";
|
|
2
|
+
export type { HippocampusConfig, CustomStorageConfig };
|
|
3
3
|
export type Memory = HippocampusConfig & {
|
|
4
4
|
enabled?: boolean;
|
|
5
5
|
};
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
* - Current time (ISO): `new Date().toISOString()`
|
|
34
34
|
*/
|
|
35
35
|
import type { Mem0Config } from "../memory/mem0Initializer.js";
|
|
36
|
-
import type { Memory } from "../memory/hippocampusInitializer.js";
|
|
37
|
-
export type { Memory };
|
|
36
|
+
import type { Memory, CustomStorageConfig } from "../memory/hippocampusInitializer.js";
|
|
37
|
+
export type { Memory, CustomStorageConfig };
|
|
38
38
|
/**
|
|
39
39
|
* Configuration for conversation memory feature
|
|
40
40
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -38,4 +38,5 @@ export * from "./contextTypes.js";
|
|
|
38
38
|
export * from "./fileReferenceTypes.js";
|
|
39
39
|
export * from "./ragTypes.js";
|
|
40
40
|
export * from "./conversationMemoryInterface.js";
|
|
41
|
+
export type { CustomStorageConfig } from "./conversation.js";
|
|
41
42
|
export * from "./subscriptionTypes.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.27.0",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"@google/genai": "^1.34.0",
|
|
187
187
|
"@google/generative-ai": "^0.24.1",
|
|
188
188
|
"@huggingface/inference": "^2.8.1",
|
|
189
|
-
"@juspay/hippocampus": "^0.1.
|
|
189
|
+
"@juspay/hippocampus": "^0.1.3",
|
|
190
190
|
"@langfuse/otel": "^4.2.0",
|
|
191
191
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
192
192
|
"@openrouter/ai-sdk-provider": "^0.7.5",
|