@mondaycom/apps-cli
Version:
A cli tool to manage apps (and monday-code projects) in monday.com
31 lines (30 loc) • 622 B
TypeScript
export declare enum LogItemType {
CONSOLE = "console",
HTTP_REQUESTS = "http"
}
export declare enum LogItemSeverity {
INFO = "INFO",
LOG = "LOG",
WARNING = "WARNING",
ERROR = "ERROR",
DEFAULT = "DEFAULT",
DEBUG = "DEBUG",
UNDEFINED = "UNDEFINED"
}
export type LogItem = {
type: LogItemType;
severity?: LogItemSeverity;
message?: string;
request?: {
url: string;
method: string;
size: number;
userAgent: string;
remoteIp: string;
};
response?: {
status: number;
size: number;
};
timestamp: Date;
};