@juspay/neurolink 9.65.0 → 9.65.1

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.
@@ -544,3 +544,19 @@ export type ProviderDetails = {
544
544
  provider: string;
545
545
  model: string;
546
546
  };
547
+ /**
548
+ * Reduced ChatMessage shape used by callers (typically tests and history
549
+ * reconstructors) that pass synthetic entries into the Gemini history
550
+ * reconstructor without filling every `ChatMessage` field. Mirrors the
551
+ * fields actually read by `prependConversationMessages`.
552
+ */
553
+ export type MinimalChatMessage = {
554
+ role: ChatMessage["role"];
555
+ content: string;
556
+ tool?: string;
557
+ args?: Record<string, unknown>;
558
+ metadata?: {
559
+ stepIndex?: number;
560
+ thoughtSignature?: string;
561
+ };
562
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "9.65.0",
3
+ "version": "9.65.1",
4
4
  "packageManager": "pnpm@10.15.1",
5
5
  "description": "Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applications with 21+ providers: OpenAI, Anthropic, Google AI Studio, Google Vertex, AWS Bedrock, Azure OpenAI, Mistral, LiteLLM, SageMaker, Hugging Face, Ollama, OpenAI-compatible, OpenRouter, DeepSeek, NVIDIA NIM, LM Studio, llama.cpp, plus voice (OpenAI TTS, ElevenLabs, Deepgram, Azure Speech).",
6
6
  "author": {