mcp-daily-tasks
Version:
MCP para manejar tareas y resúmenes con integración ClickUp.
19 lines (18 loc) • 692 B
JavaScript
export var ReportType;
(function (ReportType) {
ReportType["DAILY"] = "daily";
ReportType["WEEKLY"] = "weekly";
ReportType["MONTHLY"] = "monthly";
ReportType["CUSTOM"] = "custom";
})(ReportType || (ReportType = {}));
export var ReportPeriod;
(function (ReportPeriod) {
ReportPeriod["TODAY"] = "today";
ReportPeriod["YESTERDAY"] = "yesterday";
ReportPeriod["THIS_WEEK"] = "this_week";
ReportPeriod["LAST_WEEK"] = "last_week";
ReportPeriod["LAST_7_DAYS"] = "last_7_days";
ReportPeriod["THIS_MONTH"] = "this_month";
ReportPeriod["LAST_MONTH"] = "last_month";
ReportPeriod["CUSTOM_RANGE"] = "custom_range";
})(ReportPeriod || (ReportPeriod = {}));