chore: bumped version to 0.0.31

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-07-06 21:43:15 -07:00
parent 8df8565e0a
commit 1c9ab207ef
56 changed files with 520 additions and 190 deletions

View file

@ -218,9 +218,7 @@ MCP_SERVICES: dict[str, MCPServiceConfig] = {
"create-pages",
"update-page",
],
readonly_tools=frozenset(
{"notion-search", "notion-fetch", "search", "fetch"}
),
readonly_tools=frozenset({"notion-search", "notion-fetch", "search", "fetch"}),
account_metadata_keys=["workspace_name"],
),
"confluence": MCPServiceConfig(

View file

@ -22,7 +22,12 @@ from sqlalchemy.ext.asyncio import AsyncSession
from app.services.etl_credit_service import InsufficientCreditsError
__all__ = ["InsufficientCreditsError", "apply_debit", "check_balance", "spendable_micros"]
__all__ = [
"InsufficientCreditsError",
"apply_debit",
"check_balance",
"spendable_micros",
]
async def spendable_micros(session: AsyncSession, user_id: str | UUID) -> int: