UNPKG

sjursen-digital-watchtower

Version:

A TypeScript Node.js SDK for Watchtower, an Intelligence as a Service (IaaS) platform that uses Google's Gemini AI model to transform traditional logging into an active intelligence system with predictive analytics and automated decision-making capabiliti

15 lines (13 loc) 281 B
export interface ListItemsRequest { organization_apikey: string; app_apikey: string; tenant_apikey?: string; } export interface Item { item_id: string; friendly_name?: string; last_seen: string; } export interface ListItemsResponse { items: Item[]; }