meshagent-cli 0.7.0__py3-none-any.whl → 0.23.0__py3-none-any.whl
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.
- meshagent/cli/agent.py +23 -13
- meshagent/cli/api_keys.py +4 -4
- meshagent/cli/async_typer.py +52 -4
- meshagent/cli/call.py +27 -36
- meshagent/cli/chatbot.py +1559 -177
- meshagent/cli/cli.py +23 -22
- meshagent/cli/cli_mcp.py +92 -28
- meshagent/cli/cli_secrets.py +10 -10
- meshagent/cli/common_options.py +19 -4
- meshagent/cli/containers.py +164 -16
- meshagent/cli/database.py +997 -0
- meshagent/cli/developer.py +3 -3
- meshagent/cli/exec.py +22 -6
- meshagent/cli/helper.py +101 -12
- meshagent/cli/helpers.py +65 -11
- meshagent/cli/host.py +41 -0
- meshagent/cli/mailbot.py +1104 -79
- meshagent/cli/mailboxes.py +223 -0
- meshagent/cli/meeting_transcriber.py +29 -15
- meshagent/cli/messaging.py +7 -10
- meshagent/cli/multi.py +357 -0
- meshagent/cli/oauth2.py +192 -40
- meshagent/cli/participant_token.py +5 -3
- meshagent/cli/port.py +70 -0
- meshagent/cli/queue.py +2 -2
- meshagent/cli/room.py +24 -212
- meshagent/cli/rooms.py +214 -0
- meshagent/cli/services.py +269 -37
- meshagent/cli/sessions.py +5 -5
- meshagent/cli/storage.py +5 -5
- meshagent/cli/sync.py +434 -0
- meshagent/cli/task_runner.py +1317 -0
- meshagent/cli/version.py +1 -1
- meshagent/cli/voicebot.py +544 -98
- meshagent/cli/webhook.py +7 -7
- meshagent/cli/worker.py +1403 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/METADATA +15 -13
- meshagent_cli-0.23.0.dist-info/RECORD +45 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/WHEEL +1 -1
- meshagent_cli-0.7.0.dist-info/RECORD +0 -36
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/entry_points.txt +0 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/top_level.txt +0 -0
meshagent/cli/webhook.py
CHANGED
|
@@ -7,17 +7,17 @@ from meshagent.cli.common_options import ProjectIdOption
|
|
|
7
7
|
from meshagent.cli import async_typer
|
|
8
8
|
from meshagent.cli.helper import get_client, print_json_table, resolve_project_id
|
|
9
9
|
|
|
10
|
-
app = async_typer.AsyncTyper()
|
|
10
|
+
app = async_typer.AsyncTyper(help="Manage project webhooks")
|
|
11
11
|
|
|
12
12
|
# ---------------------------------------------------------------------------
|
|
13
13
|
# Webhook commands
|
|
14
14
|
# ---------------------------------------------------------------------------
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
@app.async_command("create")
|
|
17
|
+
@app.async_command("create", help="Create a webhook")
|
|
18
18
|
async def webhook_create(
|
|
19
19
|
*,
|
|
20
|
-
project_id: ProjectIdOption
|
|
20
|
+
project_id: ProjectIdOption,
|
|
21
21
|
name: Annotated[str, typer.Option(help="Friendly name for the webhook")],
|
|
22
22
|
url: Annotated[str, typer.Option(help="Target URL that will receive POSTs")],
|
|
23
23
|
event: Annotated[
|
|
@@ -61,10 +61,10 @@ async def webhook_create(
|
|
|
61
61
|
await client.close()
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
@app.async_command("list")
|
|
64
|
+
@app.async_command("list", help="List webhooks")
|
|
65
65
|
async def webhook_list(
|
|
66
66
|
*,
|
|
67
|
-
project_id: ProjectIdOption
|
|
67
|
+
project_id: ProjectIdOption,
|
|
68
68
|
):
|
|
69
69
|
"""List all webhooks for the project."""
|
|
70
70
|
client = await get_client()
|
|
@@ -84,10 +84,10 @@ async def webhook_list(
|
|
|
84
84
|
await client.close()
|
|
85
85
|
|
|
86
86
|
|
|
87
|
-
@app.async_command("delete")
|
|
87
|
+
@app.async_command("delete", help="Delete a webhook")
|
|
88
88
|
async def webhook_delete(
|
|
89
89
|
*,
|
|
90
|
-
project_id: ProjectIdOption
|
|
90
|
+
project_id: ProjectIdOption,
|
|
91
91
|
webhook_id: Annotated[str, typer.Argument(help="ID of the webhook to delete")],
|
|
92
92
|
):
|
|
93
93
|
"""Delete a project webhook."""
|