@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
12 lines (11 loc) • 520 B
TypeScript
/**
* SessionIdentity — generates unique user_id / session_id values per account
* so that Anthropic sees consistent "user" fingerprints even when requests are
* spread across multiple accounts.
*
* The generated metadata matches Claude Code's shape:
* {"device_id":"<64 hex>","account_uuid":"<uuid>","session_id":"<uuid>"}
*/
import type { CloakingPlugin } from "../../../types/index.js";
export declare function purgeExpiredSessions(): void;
export declare function createSessionIdentity(): CloakingPlugin;