fenix-mcp 0.5.9__tar.gz → 0.5.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/PKG-INFO +1 -1
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/__init__.py +1 -1
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/productivity.py +2 -2
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp.egg-info/PKG-INFO +1 -1
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/README.md +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/presenters.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tool_base.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tool_registry.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/__init__.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/health.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/initialize.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/intelligence.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/knowledge.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/application/tools/user_config.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/domain/initialization.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/domain/intelligence.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/domain/knowledge.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/domain/productivity.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/domain/user_config.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/infrastructure/config.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/infrastructure/context.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/infrastructure/fenix_api/client.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/infrastructure/http_client.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/infrastructure/logging.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/interface/mcp_server.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/interface/transports.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp/main.py +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp.egg-info/SOURCES.txt +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp.egg-info/dependency_links.txt +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp.egg-info/entry_points.txt +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp.egg-info/requires.txt +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/fenix_mcp.egg-info/top_level.txt +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/pyproject.toml +0 -0
- {fenix_mcp-0.5.9 → fenix_mcp-0.5.10}/setup.cfg +0 -0
|
@@ -66,8 +66,8 @@ class ProductivityRequest(ToolRequest):
|
|
|
66
66
|
content: Optional[str] = Field(
|
|
67
67
|
default=None, description="Conteúdo em Markdown (obrigatório em create)."
|
|
68
68
|
)
|
|
69
|
-
status: Optional[str] = Field(default=
|
|
70
|
-
priority: Optional[str] = Field(default=
|
|
69
|
+
status: Optional[str] = Field(default=None, description="Status do TODO.")
|
|
70
|
+
priority: Optional[str] = Field(default=None, description="Prioridade do TODO.")
|
|
71
71
|
category: Optional[str] = Field(default=None, description="Categoria opcional.")
|
|
72
72
|
tags: Optional[List[str]] = Field(default=None, description="Lista de tags.")
|
|
73
73
|
due_date: Optional[str] = Field(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|