watchtower-node-sdk
Version:
A TypeScript Node.js SDK for the Watchtower API, providing API key management, connection string generation, and more
19 lines (18 loc) • 457 B
TypeScript
export interface ConnectionStringRequest {
organization_apikey: string;
app_apikey: string;
tenant_apikey?: string;
expires_in?: number;
}
export interface ConnectionStringResponse {
connection_string: string;
expires_at?: number;
}
export interface ParsedConnectionString {
organization_apikey: string;
app_apikey: string;
tenant_apikey?: string;
is_valid: boolean;
app_name?: string;
expires_at?: number;
}