UNPKG

watchtower-node-sdk

Version:

A TypeScript Node.js SDK for the Watchtower API, providing API key management, connection string generation, and more

14 lines (13 loc) 279 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[]; }