UNPKG

watchtower-node-sdk

Version:

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

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[]; }