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
17 lines (16 loc) • 533 B
TypeScript
export declare class WatchtowerError extends Error {
constructor(message: string);
}
export declare class InvalidRequestError extends WatchtowerError {
constructor(message: string);
}
export declare class AuthenticationError extends WatchtowerError {
constructor(message: string);
}
export declare class NotFoundError extends WatchtowerError {
constructor(message: string);
}
export declare class ServerError extends WatchtowerError {
constructor(message: string);
}
export declare const BATCH_SIZE_LIMIT = 1000;