commune-cli 0.2.1__tar.gz → 0.2.2__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.
Files changed (33) hide show
  1. {commune_cli-0.2.1 → commune_cli-0.2.2}/PKG-INFO +1 -1
  2. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/__init__.py +1 -1
  3. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/describe.py +1 -1
  4. {commune_cli-0.2.1 → commune_cli-0.2.2}/pyproject.toml +1 -1
  5. {commune_cli-0.2.1 → commune_cli-0.2.2}/.gitignore +0 -0
  6. {commune_cli-0.2.1 → commune_cli-0.2.2}/LICENSE +0 -0
  7. {commune_cli-0.2.1 → commune_cli-0.2.2}/README.md +0 -0
  8. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/banner.py +0 -0
  9. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/client.py +0 -0
  10. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/__init__.py +0 -0
  11. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/attachments.py +0 -0
  12. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/config_cmd.py +0 -0
  13. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/context.py +0 -0
  14. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/credits.py +0 -0
  15. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/data.py +0 -0
  16. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/delivery.py +0 -0
  17. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/dmarc.py +0 -0
  18. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/doctor.py +0 -0
  19. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/domains.py +0 -0
  20. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/feedback.py +0 -0
  21. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/inboxes.py +0 -0
  22. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/messages.py +0 -0
  23. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/phone_numbers.py +0 -0
  24. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/search.py +0 -0
  25. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/sms.py +0 -0
  26. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/threads.py +0 -0
  27. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/commands/webhooks.py +0 -0
  28. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/config.py +0 -0
  29. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/errors.py +0 -0
  30. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/main.py +0 -0
  31. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/output.py +0 -0
  32. {commune_cli-0.2.1 → commune_cli-0.2.2}/commune_cli/state.py +0 -0
  33. {commune_cli-0.2.1 → commune_cli-0.2.2}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commune-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Official CLI for the Commune email API — agent-native, pipe-friendly, covers every API surface.
5
5
  Project-URL: Homepage, https://commune.email
6
6
  Project-URL: Documentation, https://docs.commune.email
@@ -1,3 +1,3 @@
1
1
  """Commune CLI — official command-line interface for the Commune email API."""
2
2
 
3
- __version__ = "0.2.1"
3
+ __version__ = "0.2.2"
@@ -535,7 +535,7 @@ _COMMANDS: dict[str, dict] = {
535
535
  },
536
536
  "sms.thread": {
537
537
  "description": "Get all messages in an SMS thread",
538
- "method": "GET /v1/sms/threads/{remote_number}",
538
+ "method": "GET /v1/sms/conversations/{remote_number}",
539
539
  "parameters": {
540
540
  "remote_number": {"type": "string (E.164)", "required": True},
541
541
  "--phone-number-id": {"type": "string", "required": True},
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "commune-cli"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Official CLI for the Commune email API — agent-native, pipe-friendly, covers every API surface."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes
File without changes
File without changes
File without changes