- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
19 lines
1.1 KiB
TypeScript
19 lines
1.1 KiB
TypeScript
import { CacheSettings, FetchResponse, Helpers, Polyfills } from "./types/growthbook";
|
|
import type { GrowthBook, InitOptions, InitSyncOptions, GrowthBookClient } from ".";
|
|
export declare const helpers: Helpers;
|
|
export declare function setPolyfills(overrides: Partial<Polyfills>): void;
|
|
export declare function configureCache(overrides: Partial<CacheSettings>): void;
|
|
export declare function clearCache(): Promise<void>;
|
|
export declare function refreshFeatures({ instance, timeout, skipCache, allowStale, backgroundSync, }: {
|
|
instance: GrowthBook | GrowthBookClient;
|
|
timeout?: number;
|
|
skipCache?: boolean;
|
|
allowStale?: boolean;
|
|
backgroundSync?: boolean;
|
|
}): Promise<FetchResponse>;
|
|
export declare function unsubscribe(instance: GrowthBook | GrowthBookClient): void;
|
|
export declare function onHidden(): void;
|
|
export declare function onVisible(): void;
|
|
export declare function clearAutoRefresh(): void;
|
|
export declare function startStreaming(instance: GrowthBook | GrowthBookClient, options: InitOptions | InitSyncOptions): void;
|
|
//# sourceMappingURL=feature-repository.d.ts.map
|