@juspay/neurolink 10.6.2 → 10.6.3
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/types/cli.d.ts +18 -18
- package/dist/lib/types/providers.d.ts +2 -2
- package/dist/types/cli.d.ts +18 -18
- package/dist/types/providers.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [10.6.3](https://github.com/juspay/neurolink/compare/v10.6.2...v10.6.3) (2026-07-29)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(types):** make duplicate type names unique ([63134cd](https://github.com/juspay/neurolink/commit/63134cdabb760ca2f9ad3cfdd29cbe43c8f25b66))
|
|
6
|
+
|
|
1
7
|
## [10.6.2](https://github.com/juspay/neurolink/compare/v10.6.1...v10.6.2) (2026-07-28)
|
|
2
8
|
|
|
3
9
|
## [10.6.1](https://github.com/juspay/neurolink/compare/v10.6.0...v10.6.1) (2026-07-28)
|
package/dist/lib/types/cli.d.ts
CHANGED
|
@@ -637,15 +637,15 @@ export type CLIMCPServerConfig = {
|
|
|
637
637
|
* OpenAI setup configuration types
|
|
638
638
|
*/
|
|
639
639
|
export declare namespace OpenAISetup {
|
|
640
|
-
type
|
|
640
|
+
type OpenAISetupOptions = {
|
|
641
641
|
checkOnly?: boolean;
|
|
642
642
|
interactive?: boolean;
|
|
643
643
|
};
|
|
644
|
-
type
|
|
644
|
+
type OpenAISetupArgv = {
|
|
645
645
|
check?: boolean;
|
|
646
646
|
nonInteractive?: boolean;
|
|
647
647
|
};
|
|
648
|
-
type
|
|
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
|
|
659
|
+
type AnthropicSetupOptions = {
|
|
660
660
|
checkOnly?: boolean;
|
|
661
661
|
interactive?: boolean;
|
|
662
662
|
};
|
|
663
|
-
type
|
|
663
|
+
type AnthropicSetupArgv = {
|
|
664
664
|
check?: boolean;
|
|
665
665
|
nonInteractive?: boolean;
|
|
666
666
|
};
|
|
667
|
-
type
|
|
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
|
|
677
|
+
type GoogleAISetupOptions = {
|
|
678
678
|
checkOnly?: boolean;
|
|
679
679
|
interactive?: boolean;
|
|
680
680
|
};
|
|
681
|
-
type
|
|
681
|
+
type GoogleAISetupArgv = {
|
|
682
682
|
check?: boolean;
|
|
683
683
|
nonInteractive?: boolean;
|
|
684
684
|
};
|
|
685
|
-
type
|
|
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
|
|
695
|
+
type AzureSetupOptions = {
|
|
696
696
|
checkOnly?: boolean;
|
|
697
697
|
interactive?: boolean;
|
|
698
698
|
};
|
|
699
|
-
type
|
|
699
|
+
type AzureSetupArgv = {
|
|
700
700
|
check?: boolean;
|
|
701
701
|
nonInteractive?: boolean;
|
|
702
702
|
};
|
|
703
|
-
type
|
|
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
|
|
716
|
+
type BedrockSetupOptions = {
|
|
717
717
|
checkOnly?: boolean;
|
|
718
718
|
interactive?: boolean;
|
|
719
719
|
};
|
|
720
|
-
type
|
|
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
|
|
741
|
+
type GCPSetupOptions = {
|
|
742
742
|
checkOnly?: boolean;
|
|
743
743
|
interactive?: boolean;
|
|
744
744
|
};
|
|
745
|
-
type
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1501
|
+
type MistralClient = {
|
|
1502
1502
|
chat?: {
|
|
1503
1503
|
complete?: (options: unknown) => Promise<unknown>;
|
|
1504
1504
|
stream?: (options: unknown) => AsyncIterable<unknown>;
|
package/dist/types/cli.d.ts
CHANGED
|
@@ -637,15 +637,15 @@ export type CLIMCPServerConfig = {
|
|
|
637
637
|
* OpenAI setup configuration types
|
|
638
638
|
*/
|
|
639
639
|
export declare namespace OpenAISetup {
|
|
640
|
-
type
|
|
640
|
+
type OpenAISetupOptions = {
|
|
641
641
|
checkOnly?: boolean;
|
|
642
642
|
interactive?: boolean;
|
|
643
643
|
};
|
|
644
|
-
type
|
|
644
|
+
type OpenAISetupArgv = {
|
|
645
645
|
check?: boolean;
|
|
646
646
|
nonInteractive?: boolean;
|
|
647
647
|
};
|
|
648
|
-
type
|
|
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
|
|
659
|
+
type AnthropicSetupOptions = {
|
|
660
660
|
checkOnly?: boolean;
|
|
661
661
|
interactive?: boolean;
|
|
662
662
|
};
|
|
663
|
-
type
|
|
663
|
+
type AnthropicSetupArgv = {
|
|
664
664
|
check?: boolean;
|
|
665
665
|
nonInteractive?: boolean;
|
|
666
666
|
};
|
|
667
|
-
type
|
|
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
|
|
677
|
+
type GoogleAISetupOptions = {
|
|
678
678
|
checkOnly?: boolean;
|
|
679
679
|
interactive?: boolean;
|
|
680
680
|
};
|
|
681
|
-
type
|
|
681
|
+
type GoogleAISetupArgv = {
|
|
682
682
|
check?: boolean;
|
|
683
683
|
nonInteractive?: boolean;
|
|
684
684
|
};
|
|
685
|
-
type
|
|
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
|
|
695
|
+
type AzureSetupOptions = {
|
|
696
696
|
checkOnly?: boolean;
|
|
697
697
|
interactive?: boolean;
|
|
698
698
|
};
|
|
699
|
-
type
|
|
699
|
+
type AzureSetupArgv = {
|
|
700
700
|
check?: boolean;
|
|
701
701
|
nonInteractive?: boolean;
|
|
702
702
|
};
|
|
703
|
-
type
|
|
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
|
|
716
|
+
type BedrockSetupOptions = {
|
|
717
717
|
checkOnly?: boolean;
|
|
718
718
|
interactive?: boolean;
|
|
719
719
|
};
|
|
720
|
-
type
|
|
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
|
|
741
|
+
type GCPSetupOptions = {
|
|
742
742
|
checkOnly?: boolean;
|
|
743
743
|
interactive?: boolean;
|
|
744
744
|
};
|
|
745
|
-
type
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
"version": "10.6.3",
|
|
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": {
|