@juspay/neurolink 10.6.2 → 10.6.4

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 CHANGED
@@ -1,3 +1,15 @@
1
+ ## [10.6.4](https://github.com/juspay/neurolink/compare/v10.6.3...v10.6.4) (2026-07-29)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **(media):** resolve no-type-export-outside-types in media processor barrel ([#1168](https://github.com/juspay/neurolink/issues/1168)) ([85b8214](https://github.com/juspay/neurolink/commit/85b8214032b8637cd8cdd385fa7560f4c230943f))
6
+
7
+ ## [10.6.3](https://github.com/juspay/neurolink/compare/v10.6.2...v10.6.3) (2026-07-29)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **(types):** make duplicate type names unique ([63134cd](https://github.com/juspay/neurolink/commit/63134cdabb760ca2f9ad3cfdd29cbe43c8f25b66))
12
+
1
13
  ## [10.6.2](https://github.com/juspay/neurolink/compare/v10.6.1...v10.6.2) (2026-07-28)
2
14
 
3
15
  ## [10.6.1](https://github.com/juspay/neurolink/compare/v10.6.0...v10.6.1) (2026-07-28)
@@ -12,8 +12,8 @@
12
12
  * videoProcessor,
13
13
  * isVideoFile,
14
14
  * processVideo,
15
- * type ProcessedVideo,
16
15
  * } from "./media/index.js";
16
+ * import type { ProcessedVideo } from "../../types/index.js";
17
17
  *
18
18
  * if (isVideoFile(file.mimetype, file.name)) {
19
19
  * const result = await processVideo(fileInfo);
@@ -12,8 +12,8 @@
12
12
  * videoProcessor,
13
13
  * isVideoFile,
14
14
  * processVideo,
15
- * type ProcessedVideo,
16
15
  * } from "./media/index.js";
16
+ * import type { ProcessedVideo } from "../../types/index.js";
17
17
  *
18
18
  * if (isVideoFile(file.mimetype, file.name)) {
19
19
  * const result = await processVideo(fileInfo);
@@ -637,15 +637,15 @@ export type CLIMCPServerConfig = {
637
637
  * OpenAI setup configuration types
638
638
  */
639
639
  export declare namespace OpenAISetup {
640
- type SetupOptions = {
640
+ type OpenAISetupOptions = {
641
641
  checkOnly?: boolean;
642
642
  interactive?: boolean;
643
643
  };
644
- type SetupArgv = {
644
+ type OpenAISetupArgv = {
645
645
  check?: boolean;
646
646
  nonInteractive?: boolean;
647
647
  };
648
- type Config = {
648
+ type OpenAISetupConfig = {
649
649
  apiKey?: string;
650
650
  organization?: string;
651
651
  model?: string;
@@ -656,15 +656,15 @@ export declare namespace OpenAISetup {
656
656
  * Anthropic setup configuration types
657
657
  */
658
658
  export declare namespace AnthropicSetup {
659
- type SetupOptions = {
659
+ type AnthropicSetupOptions = {
660
660
  checkOnly?: boolean;
661
661
  interactive?: boolean;
662
662
  };
663
- type SetupArgv = {
663
+ type AnthropicSetupArgv = {
664
664
  check?: boolean;
665
665
  nonInteractive?: boolean;
666
666
  };
667
- type Config = {
667
+ type AnthropicSetupConfig = {
668
668
  apiKey?: string;
669
669
  model?: string;
670
670
  isReconfiguring?: boolean;
@@ -674,15 +674,15 @@ export declare namespace AnthropicSetup {
674
674
  * Google AI setup configuration types
675
675
  */
676
676
  export declare namespace GoogleAISetup {
677
- type SetupOptions = {
677
+ type GoogleAISetupOptions = {
678
678
  checkOnly?: boolean;
679
679
  interactive?: boolean;
680
680
  };
681
- type SetupArgv = {
681
+ type GoogleAISetupArgv = {
682
682
  check?: boolean;
683
683
  nonInteractive?: boolean;
684
684
  };
685
- type Config = {
685
+ type GoogleAISetupConfig = {
686
686
  apiKey?: string;
687
687
  model?: string;
688
688
  isReconfiguring?: boolean;
@@ -692,15 +692,15 @@ export declare namespace GoogleAISetup {
692
692
  * Azure setup configuration types
693
693
  */
694
694
  export declare namespace AzureSetup {
695
- type SetupOptions = {
695
+ type AzureSetupOptions = {
696
696
  checkOnly?: boolean;
697
697
  interactive?: boolean;
698
698
  };
699
- type SetupArgv = {
699
+ type AzureSetupArgv = {
700
700
  check?: boolean;
701
701
  nonInteractive?: boolean;
702
702
  };
703
- type Config = {
703
+ type AzureSetupConfig = {
704
704
  apiKey?: string;
705
705
  endpoint?: string;
706
706
  deploymentName?: string;
@@ -713,11 +713,11 @@ export declare namespace AzureSetup {
713
713
  * AWS Bedrock setup configuration types
714
714
  */
715
715
  export declare namespace BedrockSetup {
716
- type SetupOptions = {
716
+ type BedrockSetupOptions = {
717
717
  checkOnly?: boolean;
718
718
  interactive?: boolean;
719
719
  };
720
- type SetupArgv = {
720
+ type BedrockSetupArgv = {
721
721
  check?: boolean;
722
722
  nonInteractive?: boolean;
723
723
  };
@@ -738,11 +738,11 @@ export declare namespace BedrockSetup {
738
738
  * GCP/Vertex AI setup configuration types
739
739
  */
740
740
  export declare namespace GCPSetup {
741
- type SetupOptions = {
741
+ type GCPSetupOptions = {
742
742
  checkOnly?: boolean;
743
743
  interactive?: boolean;
744
744
  };
745
- type SetupArgv = {
745
+ type GCPSetupArgv = {
746
746
  check?: boolean;
747
747
  nonInteractive?: boolean;
748
748
  };
@@ -757,7 +757,7 @@ export declare namespace GCPSetup {
757
757
  * Hugging Face setup configuration types
758
758
  */
759
759
  export declare namespace HuggingFaceSetup {
760
- type SetupArgs = {
760
+ type HuggingFaceSetupArgs = {
761
761
  check?: boolean;
762
762
  nonInteractive?: boolean;
763
763
  help?: boolean;
@@ -767,7 +767,7 @@ export declare namespace HuggingFaceSetup {
767
767
  * Mistral setup configuration types
768
768
  */
769
769
  export declare namespace MistralSetup {
770
- type SetupArgs = {
770
+ type MistralSetupArgs = {
771
771
  check?: boolean;
772
772
  nonInteractive?: boolean;
773
773
  help?: boolean;
@@ -1479,7 +1479,7 @@ export type ProviderHealthCheckOptions = {
1479
1479
  * Amazon Bedrock specific types
1480
1480
  */
1481
1481
  export declare namespace BedrockTypes {
1482
- type Client = {
1482
+ type BedrockClient = {
1483
1483
  send(command: unknown): Promise<unknown>;
1484
1484
  config: {
1485
1485
  region?: string;
@@ -1498,7 +1498,7 @@ export declare namespace BedrockTypes {
1498
1498
  * Mistral specific types
1499
1499
  */
1500
1500
  export declare namespace MistralTypes {
1501
- type Client = {
1501
+ type MistralClient = {
1502
1502
  chat?: {
1503
1503
  complete?: (options: unknown) => Promise<unknown>;
1504
1504
  stream?: (options: unknown) => AsyncIterable<unknown>;
@@ -12,8 +12,8 @@
12
12
  * videoProcessor,
13
13
  * isVideoFile,
14
14
  * processVideo,
15
- * type ProcessedVideo,
16
15
  * } from "./media/index.js";
16
+ * import type { ProcessedVideo } from "../../types/index.js";
17
17
  *
18
18
  * if (isVideoFile(file.mimetype, file.name)) {
19
19
  * const result = await processVideo(fileInfo);
@@ -12,8 +12,8 @@
12
12
  * videoProcessor,
13
13
  * isVideoFile,
14
14
  * processVideo,
15
- * type ProcessedVideo,
16
15
  * } from "./media/index.js";
16
+ * import type { ProcessedVideo } from "../../types/index.js";
17
17
  *
18
18
  * if (isVideoFile(file.mimetype, file.name)) {
19
19
  * const result = await processVideo(fileInfo);
@@ -637,15 +637,15 @@ export type CLIMCPServerConfig = {
637
637
  * OpenAI setup configuration types
638
638
  */
639
639
  export declare namespace OpenAISetup {
640
- type SetupOptions = {
640
+ type OpenAISetupOptions = {
641
641
  checkOnly?: boolean;
642
642
  interactive?: boolean;
643
643
  };
644
- type SetupArgv = {
644
+ type OpenAISetupArgv = {
645
645
  check?: boolean;
646
646
  nonInteractive?: boolean;
647
647
  };
648
- type Config = {
648
+ type OpenAISetupConfig = {
649
649
  apiKey?: string;
650
650
  organization?: string;
651
651
  model?: string;
@@ -656,15 +656,15 @@ export declare namespace OpenAISetup {
656
656
  * Anthropic setup configuration types
657
657
  */
658
658
  export declare namespace AnthropicSetup {
659
- type SetupOptions = {
659
+ type AnthropicSetupOptions = {
660
660
  checkOnly?: boolean;
661
661
  interactive?: boolean;
662
662
  };
663
- type SetupArgv = {
663
+ type AnthropicSetupArgv = {
664
664
  check?: boolean;
665
665
  nonInteractive?: boolean;
666
666
  };
667
- type Config = {
667
+ type AnthropicSetupConfig = {
668
668
  apiKey?: string;
669
669
  model?: string;
670
670
  isReconfiguring?: boolean;
@@ -674,15 +674,15 @@ export declare namespace AnthropicSetup {
674
674
  * Google AI setup configuration types
675
675
  */
676
676
  export declare namespace GoogleAISetup {
677
- type SetupOptions = {
677
+ type GoogleAISetupOptions = {
678
678
  checkOnly?: boolean;
679
679
  interactive?: boolean;
680
680
  };
681
- type SetupArgv = {
681
+ type GoogleAISetupArgv = {
682
682
  check?: boolean;
683
683
  nonInteractive?: boolean;
684
684
  };
685
- type Config = {
685
+ type GoogleAISetupConfig = {
686
686
  apiKey?: string;
687
687
  model?: string;
688
688
  isReconfiguring?: boolean;
@@ -692,15 +692,15 @@ export declare namespace GoogleAISetup {
692
692
  * Azure setup configuration types
693
693
  */
694
694
  export declare namespace AzureSetup {
695
- type SetupOptions = {
695
+ type AzureSetupOptions = {
696
696
  checkOnly?: boolean;
697
697
  interactive?: boolean;
698
698
  };
699
- type SetupArgv = {
699
+ type AzureSetupArgv = {
700
700
  check?: boolean;
701
701
  nonInteractive?: boolean;
702
702
  };
703
- type Config = {
703
+ type AzureSetupConfig = {
704
704
  apiKey?: string;
705
705
  endpoint?: string;
706
706
  deploymentName?: string;
@@ -713,11 +713,11 @@ export declare namespace AzureSetup {
713
713
  * AWS Bedrock setup configuration types
714
714
  */
715
715
  export declare namespace BedrockSetup {
716
- type SetupOptions = {
716
+ type BedrockSetupOptions = {
717
717
  checkOnly?: boolean;
718
718
  interactive?: boolean;
719
719
  };
720
- type SetupArgv = {
720
+ type BedrockSetupArgv = {
721
721
  check?: boolean;
722
722
  nonInteractive?: boolean;
723
723
  };
@@ -738,11 +738,11 @@ export declare namespace BedrockSetup {
738
738
  * GCP/Vertex AI setup configuration types
739
739
  */
740
740
  export declare namespace GCPSetup {
741
- type SetupOptions = {
741
+ type GCPSetupOptions = {
742
742
  checkOnly?: boolean;
743
743
  interactive?: boolean;
744
744
  };
745
- type SetupArgv = {
745
+ type GCPSetupArgv = {
746
746
  check?: boolean;
747
747
  nonInteractive?: boolean;
748
748
  };
@@ -757,7 +757,7 @@ export declare namespace GCPSetup {
757
757
  * Hugging Face setup configuration types
758
758
  */
759
759
  export declare namespace HuggingFaceSetup {
760
- type SetupArgs = {
760
+ type HuggingFaceSetupArgs = {
761
761
  check?: boolean;
762
762
  nonInteractive?: boolean;
763
763
  help?: boolean;
@@ -767,7 +767,7 @@ export declare namespace HuggingFaceSetup {
767
767
  * Mistral setup configuration types
768
768
  */
769
769
  export declare namespace MistralSetup {
770
- type SetupArgs = {
770
+ type MistralSetupArgs = {
771
771
  check?: boolean;
772
772
  nonInteractive?: boolean;
773
773
  help?: boolean;
@@ -1479,7 +1479,7 @@ export type ProviderHealthCheckOptions = {
1479
1479
  * Amazon Bedrock specific types
1480
1480
  */
1481
1481
  export declare namespace BedrockTypes {
1482
- type Client = {
1482
+ type BedrockClient = {
1483
1483
  send(command: unknown): Promise<unknown>;
1484
1484
  config: {
1485
1485
  region?: string;
@@ -1498,7 +1498,7 @@ export declare namespace BedrockTypes {
1498
1498
  * Mistral specific types
1499
1499
  */
1500
1500
  export declare namespace MistralTypes {
1501
- type Client = {
1501
+ type MistralClient = {
1502
1502
  chat?: {
1503
1503
  complete?: (options: unknown) => Promise<unknown>;
1504
1504
  stream?: (options: unknown) => AsyncIterable<unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "10.6.2",
3
+ "version": "10.6.4",
4
4
  "packageManager": "pnpm@10.15.1",
5
5
  "description": "TypeScript AI SDK with 24+ LLM providers behind one consistent API. MCP-native (connect any MCP server), voice TTS/STT/realtime, RAG, agents, memory, context compaction. OpenAI · Anthropic · Gemini · Bedrock · Azure · Ollama · DeepSeek · NVIDIA NIM and more.",
6
6
  "author": {