@juspay/neurolink 9.54.5 → 9.54.6
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 +2 -0
- package/dist/auth/tokenStore.d.ts +0 -1
- package/dist/client/httpClient.d.ts +1 -2
- package/dist/client/sseClient.d.ts +1 -2
- package/dist/client/wsClient.d.ts +1 -2
- package/dist/core/toolEvents.d.ts +0 -1
- package/dist/lib/auth/tokenStore.d.ts +0 -1
- package/dist/lib/client/httpClient.d.ts +1 -2
- package/dist/lib/client/sseClient.d.ts +1 -2
- package/dist/lib/client/wsClient.d.ts +1 -2
- package/dist/lib/core/toolEvents.d.ts +0 -1
- package/dist/lib/memory/hippocampusInitializer.d.ts +1 -2
- package/dist/lib/memory/hippocampusInitializer.js +1 -1
- package/dist/lib/models/anthropicModels.d.ts +0 -1
- package/dist/lib/models/anthropicModels.js +1 -0
- package/dist/lib/neurolink.js +1 -1
- package/dist/lib/observability/exporterRegistry.d.ts +1 -2
- package/dist/lib/observability/retryPolicy.d.ts +0 -1
- package/dist/lib/observability/sampling/samplers.d.ts +0 -1
- package/dist/lib/observability/spanProcessor.d.ts +0 -1
- package/dist/lib/processors/errors/errorHelpers.d.ts +1 -1
- package/dist/lib/providers/googleNativeGemini3.d.ts +1 -2
- package/dist/lib/proxy/proxyHealth.d.ts +0 -1
- package/dist/lib/proxy/routingPolicy.d.ts +1 -2
- package/dist/lib/utils/sanitizers/filename.d.ts +0 -1
- package/dist/memory/hippocampusInitializer.d.ts +1 -2
- package/dist/memory/hippocampusInitializer.js +1 -1
- package/dist/models/anthropicModels.d.ts +0 -1
- package/dist/models/anthropicModels.js +1 -0
- package/dist/neurolink.js +1 -1
- package/dist/observability/exporterRegistry.d.ts +1 -2
- package/dist/observability/retryPolicy.d.ts +0 -1
- package/dist/observability/sampling/samplers.d.ts +0 -1
- package/dist/observability/spanProcessor.d.ts +0 -1
- package/dist/processors/errors/errorHelpers.d.ts +1 -1
- package/dist/providers/googleNativeGemini3.d.ts +1 -2
- package/dist/proxy/proxyHealth.d.ts +0 -1
- package/dist/proxy/routingPolicy.d.ts +1 -2
- package/dist/utils/sanitizers/filename.d.ts +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
* - Cross-platform support (Unix/macOS/Windows)
|
|
14
14
|
*/
|
|
15
15
|
import type { StoredOAuthTokens, TokenRefresher } from "../types/index.js";
|
|
16
|
-
export type { StoredOAuthTokens, TokenRefresher };
|
|
17
16
|
/**
|
|
18
17
|
* Secure token storage for OAuth tokens with multi-provider support
|
|
19
18
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* @module @neurolink/client
|
|
8
8
|
*/
|
|
9
|
-
import type { ClientConfig, ClientRequestOptions, ClientApiResponse,
|
|
9
|
+
import type { ClientConfig, ClientRequestOptions, ClientApiResponse, ClientMiddleware, ClientStreamCallbacks, ClientStreamResult, ClientGenerateRequestOptions, ClientGenerateResponse, ClientStreamRequestOptions, ClientAgentExecuteOptions, ClientAgentExecuteResult, ClientAgentInfo, ClientWorkflowExecuteOptions, ClientWorkflowExecuteResult, ClientWorkflowInfo, ClientToolInfo, ClientProviderStatus, ClientWebSocketOptions, ClientWebSocketState, ClientWebSocketMessageHandler, UnknownRecord } from "../types/index.js";
|
|
10
10
|
import { HttpError, ClientNetworkError, ClientTimeoutError } from "./errors.js";
|
|
11
11
|
/**
|
|
12
12
|
* Combine multiple AbortSignals into a single signal.
|
|
@@ -293,4 +293,3 @@ export declare class NeuroLinkClient {
|
|
|
293
293
|
* ```
|
|
294
294
|
*/
|
|
295
295
|
export declare function createClient(config: ClientConfig): NeuroLinkClient;
|
|
296
|
-
export type { ClientConfig, ClientRequestOptions, ClientApiResponse, ClientApiError, ClientRetryConfig, ClientMiddleware, ClientMiddlewareRequest, ClientMiddlewareResponse, ClientMiddlewareContext, ClientStreamCallbacks, ClientStreamEvent, ClientStreamResult, ClientGenerateRequestOptions, ClientGenerateResponse, ClientStreamRequestOptions, ClientAgentExecuteOptions, ClientAgentExecuteResult, ClientAgentInfo, ClientWorkflowExecuteOptions, ClientWorkflowExecuteResult, ClientWorkflowInfo, ClientToolInfo, ClientProviderStatus, ClientWebSocketOptions, ClientWebSocketState, ClientWebSocketMessageHandler, };
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* @module @neurolink/client/sseClient
|
|
9
9
|
*/
|
|
10
|
-
import type { ClientStreamCallbacks,
|
|
10
|
+
import type { ClientStreamCallbacks, SSEConfig, SSEEventHandlers, SSERequestOptions, SSEState } from "../types/index.js";
|
|
11
11
|
/**
|
|
12
12
|
* SSE streaming client for NeuroLink
|
|
13
13
|
*
|
|
@@ -112,4 +112,3 @@ export declare class NeuroLinkSSE {
|
|
|
112
112
|
* ```
|
|
113
113
|
*/
|
|
114
114
|
export declare function createSSEClient(config: SSEConfig): NeuroLinkSSE;
|
|
115
|
-
export type { ClientStreamCallbacks, StreamEvent, StreamResult, ClientApiError, };
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* @module @neurolink/client/wsClient
|
|
9
9
|
*/
|
|
10
|
-
import type { ClientStreamCallbacks,
|
|
10
|
+
import type { ClientStreamCallbacks, WebSocketEventHandlers, ClientClientWebSocketState, ClientWebSocketMessage, ClientWebSocketConfig } from "../types/index.js";
|
|
11
11
|
/**
|
|
12
12
|
* WebSocket streaming client for NeuroLink
|
|
13
13
|
*
|
|
@@ -119,4 +119,3 @@ export declare class NeuroLinkWebSocket {
|
|
|
119
119
|
* ```
|
|
120
120
|
*/
|
|
121
121
|
export declare function createWebSocketClient(config: ClientWebSocketConfig): NeuroLinkWebSocket;
|
|
122
|
-
export type { ClientStreamCallbacks, StreamEvent, StreamResult, ClientApiError, };
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
* - Cross-platform support (Unix/macOS/Windows)
|
|
14
14
|
*/
|
|
15
15
|
import type { StoredOAuthTokens, TokenRefresher } from "../types/index.js";
|
|
16
|
-
export type { StoredOAuthTokens, TokenRefresher };
|
|
17
16
|
/**
|
|
18
17
|
* Secure token storage for OAuth tokens with multi-provider support
|
|
19
18
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* @module @neurolink/client
|
|
8
8
|
*/
|
|
9
|
-
import type { ClientConfig, ClientRequestOptions, ClientApiResponse,
|
|
9
|
+
import type { ClientConfig, ClientRequestOptions, ClientApiResponse, ClientMiddleware, ClientStreamCallbacks, ClientStreamResult, ClientGenerateRequestOptions, ClientGenerateResponse, ClientStreamRequestOptions, ClientAgentExecuteOptions, ClientAgentExecuteResult, ClientAgentInfo, ClientWorkflowExecuteOptions, ClientWorkflowExecuteResult, ClientWorkflowInfo, ClientToolInfo, ClientProviderStatus, ClientWebSocketOptions, ClientWebSocketState, ClientWebSocketMessageHandler, UnknownRecord } from "../types/index.js";
|
|
10
10
|
import { HttpError, ClientNetworkError, ClientTimeoutError } from "./errors.js";
|
|
11
11
|
/**
|
|
12
12
|
* Combine multiple AbortSignals into a single signal.
|
|
@@ -293,4 +293,3 @@ export declare class NeuroLinkClient {
|
|
|
293
293
|
* ```
|
|
294
294
|
*/
|
|
295
295
|
export declare function createClient(config: ClientConfig): NeuroLinkClient;
|
|
296
|
-
export type { ClientConfig, ClientRequestOptions, ClientApiResponse, ClientApiError, ClientRetryConfig, ClientMiddleware, ClientMiddlewareRequest, ClientMiddlewareResponse, ClientMiddlewareContext, ClientStreamCallbacks, ClientStreamEvent, ClientStreamResult, ClientGenerateRequestOptions, ClientGenerateResponse, ClientStreamRequestOptions, ClientAgentExecuteOptions, ClientAgentExecuteResult, ClientAgentInfo, ClientWorkflowExecuteOptions, ClientWorkflowExecuteResult, ClientWorkflowInfo, ClientToolInfo, ClientProviderStatus, ClientWebSocketOptions, ClientWebSocketState, ClientWebSocketMessageHandler, };
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* @module @neurolink/client/sseClient
|
|
9
9
|
*/
|
|
10
|
-
import type { ClientStreamCallbacks,
|
|
10
|
+
import type { ClientStreamCallbacks, SSEConfig, SSEEventHandlers, SSERequestOptions, SSEState } from "../types/index.js";
|
|
11
11
|
/**
|
|
12
12
|
* SSE streaming client for NeuroLink
|
|
13
13
|
*
|
|
@@ -112,4 +112,3 @@ export declare class NeuroLinkSSE {
|
|
|
112
112
|
* ```
|
|
113
113
|
*/
|
|
114
114
|
export declare function createSSEClient(config: SSEConfig): NeuroLinkSSE;
|
|
115
|
-
export type { ClientStreamCallbacks, StreamEvent, StreamResult, ClientApiError, };
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* @module @neurolink/client/wsClient
|
|
9
9
|
*/
|
|
10
|
-
import type { ClientStreamCallbacks,
|
|
10
|
+
import type { ClientStreamCallbacks, WebSocketEventHandlers, ClientClientWebSocketState, ClientWebSocketMessage, ClientWebSocketConfig } from "../types/index.js";
|
|
11
11
|
/**
|
|
12
12
|
* WebSocket streaming client for NeuroLink
|
|
13
13
|
*
|
|
@@ -119,4 +119,3 @@ export declare class NeuroLinkWebSocket {
|
|
|
119
119
|
* ```
|
|
120
120
|
*/
|
|
121
121
|
export declare function createWebSocketClient(config: ClientWebSocketConfig): NeuroLinkWebSocket;
|
|
122
|
-
export type { ClientStreamCallbacks, StreamEvent, StreamResult, ClientApiError, };
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import { Hippocampus, type HippocampusConfig
|
|
2
|
-
export type { HippocampusConfig, StorageConfig };
|
|
1
|
+
import { Hippocampus, type HippocampusConfig } from "@juspay/hippocampus";
|
|
3
2
|
export declare function initializeHippocampus(config: HippocampusConfig): Hippocampus | null;
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { ClaudeSubscriptionTier, AnthropicModelMetadata } from "../types/index.js";
|
|
8
8
|
import { ModelAccessError } from "../types/index.js";
|
|
9
|
-
export type { ClaudeSubscriptionTier, AnthropicModelMetadata };
|
|
10
9
|
export { ModelAccessError };
|
|
11
10
|
/**
|
|
12
11
|
* Anthropic Claude model identifiers
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* model capabilities, and provides helper functions for tier-based access control.
|
|
6
6
|
*/
|
|
7
7
|
import { ModelAccessError } from "../types/index.js";
|
|
8
|
+
// Re-export runtime value for convenience
|
|
8
9
|
export { ModelAccessError };
|
|
9
10
|
// ============================================================================
|
|
10
11
|
// ANTHROPIC MODEL ENUM
|
package/dist/lib/neurolink.js
CHANGED
|
@@ -47,7 +47,7 @@ import { ToolRouter } from "./mcp/routing/index.js";
|
|
|
47
47
|
import { directToolsServer } from "./mcp/servers/agent/directToolsServer.js";
|
|
48
48
|
import { inferAnnotations, isSafeToRetry } from "./mcp/toolAnnotations.js";
|
|
49
49
|
import { MCPToolRegistry } from "./mcp/toolRegistry.js";
|
|
50
|
-
import { initializeHippocampus
|
|
50
|
+
import { initializeHippocampus } from "./memory/hippocampusInitializer.js";
|
|
51
51
|
import { createMemoryRetrievalTools } from "./memory/memoryRetrievalTools.js";
|
|
52
52
|
import { getMetricsAggregator, MetricsAggregator, } from "./observability/metricsAggregator.js";
|
|
53
53
|
import { SpanStatus, SpanType, CircuitBreakerOpenError, ConversationMemoryError, AuthenticationError, AuthorizationError, InvalidModelError, } from "./types/index.js";
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
* Manages multiple observability exporters with circuit breaker protection
|
|
4
4
|
*/
|
|
5
5
|
import type { BaseExporter } from "./exporters/baseExporter.js";
|
|
6
|
-
import type { Sampler } from "
|
|
7
|
-
import type { ExporterHealthStatus, ExportResult, SpanData } from "../types/index.js";
|
|
6
|
+
import type { ExporterHealthStatus, ExportResult, Sampler, SpanData } from "../types/index.js";
|
|
8
7
|
/**
|
|
9
8
|
* Circuit breaker state for an exporter
|
|
10
9
|
*/
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import type { FileProcessingError } from "../../types/index.js";
|
|
11
11
|
import { FileErrorCode } from "./FileErrorCode.js";
|
|
12
|
-
export type { FileProcessingError };
|
|
13
12
|
/**
|
|
14
13
|
* Summary of file processing operations.
|
|
15
14
|
*/
|
|
@@ -149,3 +148,4 @@ export declare function combineSummaries(summaries: FileProcessingSummary[]): Fi
|
|
|
149
148
|
* @returns Delay in milliseconds before next retry
|
|
150
149
|
*/
|
|
151
150
|
export declare function getRetryDelay(error: unknown, attempt: number, baseDelayMs?: number): number;
|
|
151
|
+
export {};
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
* providers so they can share a single implementation.
|
|
10
10
|
*/
|
|
11
11
|
import { type Tool } from "ai";
|
|
12
|
-
import type { ThinkingConfig, CollectedChunkResult, NativeFunctionCall,
|
|
13
|
-
export type { CollectedChunkResult, NativeFunctionCall, NativeFunctionDeclaration, NativeFunctionResponse, NativeToolDeclarationsResult, NativeToolsConfig, TextChannel, };
|
|
12
|
+
import type { ThinkingConfig, CollectedChunkResult, NativeFunctionCall, NativeFunctionResponse, NativeToolDeclarationsResult, NativeToolsConfig, TextChannel } from "../types/index.js";
|
|
14
13
|
/**
|
|
15
14
|
* Sanitize a JSON Schema for Gemini's proto-based API.
|
|
16
15
|
*
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { ProxyHealthResponse, ProxyReadinessState } from "../types/index.js";
|
|
2
|
-
export type { ProxyHealthResponse, ProxyReadinessState };
|
|
3
2
|
export declare function createProxyReadinessState(startTimeMs?: number): ProxyReadinessState;
|
|
4
3
|
export declare function markProxyReady(state: ProxyReadinessState, readyAtMs?: number): void;
|
|
5
4
|
export declare function buildProxyHealthResponse(state: ProxyReadinessState, options: {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { ClaudeProxyModelTier, FallbackEntry, ParsedClaudeRequest,
|
|
2
|
-
export type { ClaudeProxyModelTier, ProxyTranslationAttempt, ProxyTranslationPlan, };
|
|
1
|
+
import type { ClaudeProxyModelTier, FallbackEntry, ParsedClaudeRequest, ProxyTranslationPlan } from "../types/index.js";
|
|
3
2
|
export declare function inferClaudeProxyModelTier(modelName: string): ClaudeProxyModelTier;
|
|
4
3
|
/**
|
|
5
4
|
* Build a translation plan for a Claude-compatible proxy request.
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* @see https://cheatsheetseries.owasp.org/cheatsheets/Input_Validation_Cheat_Sheet.html
|
|
11
11
|
*/
|
|
12
12
|
import type { SanitizeFileNameOptions, SanitizeDisplayNameOptions } from "../../types/index.js";
|
|
13
|
-
export type { SanitizeFileNameOptions, SanitizeDisplayNameOptions };
|
|
14
13
|
/**
|
|
15
14
|
* Sanitize a filename for safe filesystem storage.
|
|
16
15
|
* Removes characters that are invalid on various operating systems.
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import { Hippocampus, type HippocampusConfig
|
|
2
|
-
export type { HippocampusConfig, StorageConfig };
|
|
1
|
+
import { Hippocampus, type HippocampusConfig } from "@juspay/hippocampus";
|
|
3
2
|
export declare function initializeHippocampus(config: HippocampusConfig): Hippocampus | null;
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { ClaudeSubscriptionTier, AnthropicModelMetadata } from "../types/index.js";
|
|
8
8
|
import { ModelAccessError } from "../types/index.js";
|
|
9
|
-
export type { ClaudeSubscriptionTier, AnthropicModelMetadata };
|
|
10
9
|
export { ModelAccessError };
|
|
11
10
|
/**
|
|
12
11
|
* Anthropic Claude model identifiers
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* model capabilities, and provides helper functions for tier-based access control.
|
|
6
6
|
*/
|
|
7
7
|
import { ModelAccessError } from "../types/index.js";
|
|
8
|
+
// Re-export runtime value for convenience
|
|
8
9
|
export { ModelAccessError };
|
|
9
10
|
// ============================================================================
|
|
10
11
|
// ANTHROPIC MODEL ENUM
|
package/dist/neurolink.js
CHANGED
|
@@ -47,7 +47,7 @@ import { ToolRouter } from "./mcp/routing/index.js";
|
|
|
47
47
|
import { directToolsServer } from "./mcp/servers/agent/directToolsServer.js";
|
|
48
48
|
import { inferAnnotations, isSafeToRetry } from "./mcp/toolAnnotations.js";
|
|
49
49
|
import { MCPToolRegistry } from "./mcp/toolRegistry.js";
|
|
50
|
-
import { initializeHippocampus
|
|
50
|
+
import { initializeHippocampus } from "./memory/hippocampusInitializer.js";
|
|
51
51
|
import { createMemoryRetrievalTools } from "./memory/memoryRetrievalTools.js";
|
|
52
52
|
import { getMetricsAggregator, MetricsAggregator, } from "./observability/metricsAggregator.js";
|
|
53
53
|
import { SpanStatus, SpanType, CircuitBreakerOpenError, ConversationMemoryError, AuthenticationError, AuthorizationError, InvalidModelError, } from "./types/index.js";
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
* Manages multiple observability exporters with circuit breaker protection
|
|
4
4
|
*/
|
|
5
5
|
import type { BaseExporter } from "./exporters/baseExporter.js";
|
|
6
|
-
import type { Sampler } from "
|
|
7
|
-
import type { ExporterHealthStatus, ExportResult, SpanData } from "../types/index.js";
|
|
6
|
+
import type { ExporterHealthStatus, ExportResult, Sampler, SpanData } from "../types/index.js";
|
|
8
7
|
/**
|
|
9
8
|
* Circuit breaker state for an exporter
|
|
10
9
|
*/
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import type { FileProcessingError } from "../../types/index.js";
|
|
11
11
|
import { FileErrorCode } from "./FileErrorCode.js";
|
|
12
|
-
export type { FileProcessingError };
|
|
13
12
|
/**
|
|
14
13
|
* Summary of file processing operations.
|
|
15
14
|
*/
|
|
@@ -149,3 +148,4 @@ export declare function combineSummaries(summaries: FileProcessingSummary[]): Fi
|
|
|
149
148
|
* @returns Delay in milliseconds before next retry
|
|
150
149
|
*/
|
|
151
150
|
export declare function getRetryDelay(error: unknown, attempt: number, baseDelayMs?: number): number;
|
|
151
|
+
export {};
|
|
@@ -9,8 +9,7 @@
|
|
|
9
9
|
* providers so they can share a single implementation.
|
|
10
10
|
*/
|
|
11
11
|
import { type Tool } from "ai";
|
|
12
|
-
import type { ThinkingConfig, CollectedChunkResult, NativeFunctionCall,
|
|
13
|
-
export type { CollectedChunkResult, NativeFunctionCall, NativeFunctionDeclaration, NativeFunctionResponse, NativeToolDeclarationsResult, NativeToolsConfig, TextChannel, };
|
|
12
|
+
import type { ThinkingConfig, CollectedChunkResult, NativeFunctionCall, NativeFunctionResponse, NativeToolDeclarationsResult, NativeToolsConfig, TextChannel } from "../types/index.js";
|
|
14
13
|
/**
|
|
15
14
|
* Sanitize a JSON Schema for Gemini's proto-based API.
|
|
16
15
|
*
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { ProxyHealthResponse, ProxyReadinessState } from "../types/index.js";
|
|
2
|
-
export type { ProxyHealthResponse, ProxyReadinessState };
|
|
3
2
|
export declare function createProxyReadinessState(startTimeMs?: number): ProxyReadinessState;
|
|
4
3
|
export declare function markProxyReady(state: ProxyReadinessState, readyAtMs?: number): void;
|
|
5
4
|
export declare function buildProxyHealthResponse(state: ProxyReadinessState, options: {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { ClaudeProxyModelTier, FallbackEntry, ParsedClaudeRequest,
|
|
2
|
-
export type { ClaudeProxyModelTier, ProxyTranslationAttempt, ProxyTranslationPlan, };
|
|
1
|
+
import type { ClaudeProxyModelTier, FallbackEntry, ParsedClaudeRequest, ProxyTranslationPlan } from "../types/index.js";
|
|
3
2
|
export declare function inferClaudeProxyModelTier(modelName: string): ClaudeProxyModelTier;
|
|
4
3
|
/**
|
|
5
4
|
* Build a translation plan for a Claude-compatible proxy request.
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* @see https://cheatsheetseries.owasp.org/cheatsheets/Input_Validation_Cheat_Sheet.html
|
|
11
11
|
*/
|
|
12
12
|
import type { SanitizeFileNameOptions, SanitizeDisplayNameOptions } from "../../types/index.js";
|
|
13
|
-
export type { SanitizeFileNameOptions, SanitizeDisplayNameOptions };
|
|
14
13
|
/**
|
|
15
14
|
* Sanitize a filename for safe filesystem storage.
|
|
16
15
|
* Removes characters that are invalid on various operating systems.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.54.
|
|
3
|
+
"version": "9.54.6",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"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.",
|
|
6
6
|
"author": {
|