mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-10 22:32:16 +02:00
chore: bumped version to 0.0.31
This commit is contained in:
parent
8df8565e0a
commit
1c9ab207ef
56 changed files with 520 additions and 190 deletions
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue