@mondaycom/apps-cli
Version:
A cli tool to manage apps (and monday-code projects) in monday.com
21 lines (20 loc) • 484 B
TypeScript
export declare enum LogType {
HTTP = "http",
HTTP_HISTORY = "http-history",
CONSOLE = "console",
CONSOLE_HISTORY = "console-history"
}
export type LogsFilterCriteriaArguments = {
fromDate: Date;
toDate: Date;
text?: string;
};
export type LogsCommandArguments = {
appVersionId: number;
logsType: LogType;
logsFilterCriteria?: LogsFilterCriteriaArguments | null;
};
export declare enum EventSource {
LIVE = "live",
HISTORY = "history"
}