watchtower-node-sdk
Version:
A TypeScript Node.js SDK for the Watchtower API, providing API key management, connection string generation, and more
16 lines (15 loc) • 370 B
TypeScript
export interface RollAPIKeyRequest {
current_apikey: string;
type: 'organization' | 'app' | 'tenant';
}
export interface RolledAPIKey {
key: string;
type: 'organization' | 'app' | 'tenant';
organization_id: string;
app_id?: string;
tenant_id?: string;
name: string;
status: 'active';
created_at: string;
updated_at: string;
}