UNPKG

@hivetechs/hive-ai

Version:

Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API

15 lines 716 B
export interface SubscriptionInfo { valid: boolean; plan?: string; email?: string; expiresAt?: string; remainingConversations?: number; error?: string; } export declare function getLicenseKey(): Promise<string | null>; export declare function saveLicenseKey(licenseKey: string, email?: string): Promise<void>; export declare function getCachedSubscription(): Promise<SubscriptionInfo | null>; export declare function cacheSubscription(subscription: SubscriptionInfo): Promise<void>; export declare function validateSubscription(licenseKey?: string): Promise<SubscriptionInfo>; export declare function reportUsage(conversationId: string): Promise<void>; //# sourceMappingURL=validator.d.ts.map