@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.
Files changed (40) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/dist/auth/tokenStore.d.ts +0 -1
  3. package/dist/client/httpClient.d.ts +1 -2
  4. package/dist/client/sseClient.d.ts +1 -2
  5. package/dist/client/wsClient.d.ts +1 -2
  6. package/dist/core/toolEvents.d.ts +0 -1
  7. package/dist/lib/auth/tokenStore.d.ts +0 -1
  8. package/dist/lib/client/httpClient.d.ts +1 -2
  9. package/dist/lib/client/sseClient.d.ts +1 -2
  10. package/dist/lib/client/wsClient.d.ts +1 -2
  11. package/dist/lib/core/toolEvents.d.ts +0 -1
  12. package/dist/lib/memory/hippocampusInitializer.d.ts +1 -2
  13. package/dist/lib/memory/hippocampusInitializer.js +1 -1
  14. package/dist/lib/models/anthropicModels.d.ts +0 -1
  15. package/dist/lib/models/anthropicModels.js +1 -0
  16. package/dist/lib/neurolink.js +1 -1
  17. package/dist/lib/observability/exporterRegistry.d.ts +1 -2
  18. package/dist/lib/observability/retryPolicy.d.ts +0 -1
  19. package/dist/lib/observability/sampling/samplers.d.ts +0 -1
  20. package/dist/lib/observability/spanProcessor.d.ts +0 -1
  21. package/dist/lib/processors/errors/errorHelpers.d.ts +1 -1
  22. package/dist/lib/providers/googleNativeGemini3.d.ts +1 -2
  23. package/dist/lib/proxy/proxyHealth.d.ts +0 -1
  24. package/dist/lib/proxy/routingPolicy.d.ts +1 -2
  25. package/dist/lib/utils/sanitizers/filename.d.ts +0 -1
  26. package/dist/memory/hippocampusInitializer.d.ts +1 -2
  27. package/dist/memory/hippocampusInitializer.js +1 -1
  28. package/dist/models/anthropicModels.d.ts +0 -1
  29. package/dist/models/anthropicModels.js +1 -0
  30. package/dist/neurolink.js +1 -1
  31. package/dist/observability/exporterRegistry.d.ts +1 -2
  32. package/dist/observability/retryPolicy.d.ts +0 -1
  33. package/dist/observability/sampling/samplers.d.ts +0 -1
  34. package/dist/observability/spanProcessor.d.ts +0 -1
  35. package/dist/processors/errors/errorHelpers.d.ts +1 -1
  36. package/dist/providers/googleNativeGemini3.d.ts +1 -2
  37. package/dist/proxy/proxyHealth.d.ts +0 -1
  38. package/dist/proxy/routingPolicy.d.ts +1 -2
  39. package/dist/utils/sanitizers/filename.d.ts +0 -1
  40. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## [9.54.6](https://github.com/juspay/neurolink/compare/v9.54.5...v9.54.6) (2026-04-15)
2
+
1
3
  ## [9.54.5](https://github.com/juspay/neurolink/compare/v9.54.4...v9.54.5) (2026-04-15)
2
4
 
3
5
  ### Bug Fixes
@@ -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, ClientApiError, ClientRetryConfig, ClientMiddleware, ClientMiddlewareRequest, ClientMiddlewareResponse, ClientMiddlewareContext, ClientStreamCallbacks, ClientStreamEvent, ClientStreamResult, ClientGenerateRequestOptions, ClientGenerateResponse, ClientStreamRequestOptions, ClientAgentExecuteOptions, ClientAgentExecuteResult, ClientAgentInfo, ClientWorkflowExecuteOptions, ClientWorkflowExecuteResult, ClientWorkflowInfo, ClientToolInfo, ClientProviderStatus, ClientWebSocketOptions, ClientWebSocketState, ClientWebSocketMessageHandler, UnknownRecord } from "../types/index.js";
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, ClientStreamEvent as StreamEvent, ClientStreamResult as StreamResult, ClientApiError, SSEConfig, SSEEventHandlers, SSERequestOptions, SSEState } from "../types/index.js";
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, ClientStreamEvent as StreamEvent, ClientStreamResult as StreamResult, ClientApiError, WebSocketEventHandlers, ClientClientWebSocketState, ClientWebSocketMessage, ClientWebSocketConfig } from "../types/index.js";
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
1
  import type { ToolEventPayload } from "../types/index.js";
2
- export type { ToolEventPayload };
3
2
  export declare function createToolEventPayload(toolName: string, payload?: Omit<ToolEventPayload, "tool" | "toolName">): ToolEventPayload;
@@ -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, ClientApiError, ClientRetryConfig, ClientMiddleware, ClientMiddlewareRequest, ClientMiddlewareResponse, ClientMiddlewareContext, ClientStreamCallbacks, ClientStreamEvent, ClientStreamResult, ClientGenerateRequestOptions, ClientGenerateResponse, ClientStreamRequestOptions, ClientAgentExecuteOptions, ClientAgentExecuteResult, ClientAgentInfo, ClientWorkflowExecuteOptions, ClientWorkflowExecuteResult, ClientWorkflowInfo, ClientToolInfo, ClientProviderStatus, ClientWebSocketOptions, ClientWebSocketState, ClientWebSocketMessageHandler, UnknownRecord } from "../types/index.js";
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, ClientStreamEvent as StreamEvent, ClientStreamResult as StreamResult, ClientApiError, SSEConfig, SSEEventHandlers, SSERequestOptions, SSEState } from "../types/index.js";
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, ClientStreamEvent as StreamEvent, ClientStreamResult as StreamResult, ClientApiError, WebSocketEventHandlers, ClientClientWebSocketState, ClientWebSocketMessage, ClientWebSocketConfig } from "../types/index.js";
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
1
  import type { ToolEventPayload } from "../types/index.js";
2
- export type { ToolEventPayload };
3
2
  export declare function createToolEventPayload(toolName: string, payload?: Omit<ToolEventPayload, "tool" | "toolName">): ToolEventPayload;
@@ -1,3 +1,2 @@
1
- import { Hippocampus, type HippocampusConfig, type StorageConfig } from "@juspay/hippocampus";
2
- export type { HippocampusConfig, StorageConfig };
1
+ import { Hippocampus, type HippocampusConfig } from "@juspay/hippocampus";
3
2
  export declare function initializeHippocampus(config: HippocampusConfig): Hippocampus | null;
@@ -1,4 +1,4 @@
1
- import { Hippocampus, } from "@juspay/hippocampus";
1
+ import { Hippocampus } from "@juspay/hippocampus";
2
2
  import { logger } from "../utils/logger.js";
3
3
  export function initializeHippocampus(config) {
4
4
  try {
@@ -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
@@ -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, } from "./memory/hippocampusInitializer.js";
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 "./sampling/samplers.js";
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
  */
@@ -3,7 +3,6 @@
3
3
  * Configurable retry strategies for observability exporters
4
4
  */
5
5
  import type { RetryPolicy, RetryContext, RetryDecision } from "../types/index.js";
6
- export type { RetryPolicy };
7
6
  /**
8
7
  * Base retry policy with common configuration
9
8
  */
@@ -3,7 +3,6 @@
3
3
  * Control which spans are exported for production optimization
4
4
  */
5
5
  import type { SamplerConfig, SamplingRule, SpanData, Sampler } from "../../types/index.js";
6
- export type { Sampler };
7
6
  /**
8
7
  * Always sample all spans
9
8
  */
@@ -4,7 +4,6 @@
4
4
  * Fills the 9% gap in pattern compliance
5
5
  */
6
6
  import type { SpanAttributes, SpanData, SpanProcessor } from "../types/index.js";
7
- export type { SpanProcessor };
8
7
  /**
9
8
  * No-op processor that passes spans through unchanged
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, NativeFunctionDeclaration, NativeFunctionResponse, NativeToolDeclarationsResult, NativeToolsConfig, TextChannel } from "../types/index.js";
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, ProxyTranslationAttempt, ProxyTranslationPlan } from "../types/index.js";
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, type StorageConfig } from "@juspay/hippocampus";
2
- export type { HippocampusConfig, StorageConfig };
1
+ import { Hippocampus, type HippocampusConfig } from "@juspay/hippocampus";
3
2
  export declare function initializeHippocampus(config: HippocampusConfig): Hippocampus | null;
@@ -1,4 +1,4 @@
1
- import { Hippocampus, } from "@juspay/hippocampus";
1
+ import { Hippocampus } from "@juspay/hippocampus";
2
2
  import { logger } from "../utils/logger.js";
3
3
  export function initializeHippocampus(config) {
4
4
  try {
@@ -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, } from "./memory/hippocampusInitializer.js";
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 "./sampling/samplers.js";
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
  */
@@ -3,7 +3,6 @@
3
3
  * Configurable retry strategies for observability exporters
4
4
  */
5
5
  import type { RetryPolicy, RetryContext, RetryDecision } from "../types/index.js";
6
- export type { RetryPolicy };
7
6
  /**
8
7
  * Base retry policy with common configuration
9
8
  */
@@ -3,7 +3,6 @@
3
3
  * Control which spans are exported for production optimization
4
4
  */
5
5
  import type { SamplerConfig, SamplingRule, SpanData, Sampler } from "../../types/index.js";
6
- export type { Sampler };
7
6
  /**
8
7
  * Always sample all spans
9
8
  */
@@ -4,7 +4,6 @@
4
4
  * Fills the 9% gap in pattern compliance
5
5
  */
6
6
  import type { SpanAttributes, SpanData, SpanProcessor } from "../types/index.js";
7
- export type { SpanProcessor };
8
7
  /**
9
8
  * No-op processor that passes spans through unchanged
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, NativeFunctionDeclaration, NativeFunctionResponse, NativeToolDeclarationsResult, NativeToolsConfig, TextChannel } from "../types/index.js";
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, ProxyTranslationAttempt, ProxyTranslationPlan } from "../types/index.js";
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.5",
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": {