@juspay/neurolink
Version:
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 applicatio
18 lines (17 loc) • 730 B
TypeScript
/**
* Proxy auto-update version checker.
*
* Queries the npm registry for the latest published version of
* `@juspay/neurolink` and compares it against the currently running version.
* Designed to be non-blocking and failure-tolerant — any error (network,
* timeout, parse) silently returns `updateAvailable: false`.
*/
import type { UpdateCheckResult } from "../types/index.js";
/**
* Query npm for the latest version of `@juspay/neurolink` and compare it
* against {@link currentVersion}.
*
* On **any** failure the function resolves (never rejects) with
* `{ updateAvailable: false, latestVersion: currentVersion }`.
*/
export declare function checkForUpdate(currentVersion: string): Promise<UpdateCheckResult>;