janet-cli 0.3.9__tar.gz → 0.3.11__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 (42) hide show
  1. {janet_cli-0.3.9/janet_cli.egg-info → janet_cli-0.3.11}/PKG-INFO +1 -1
  2. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/sync/readme_generator.py +1 -1
  3. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/sync/sse_watcher.py +6 -1
  4. {janet_cli-0.3.9 → janet_cli-0.3.11/janet_cli.egg-info}/PKG-INFO +1 -1
  5. {janet_cli-0.3.9 → janet_cli-0.3.11}/pyproject.toml +1 -1
  6. {janet_cli-0.3.9 → janet_cli-0.3.11}/.env.example +0 -0
  7. {janet_cli-0.3.9 → janet_cli-0.3.11}/LICENSE +0 -0
  8. {janet_cli-0.3.9 → janet_cli-0.3.11}/MANIFEST.in +0 -0
  9. {janet_cli-0.3.9 → janet_cli-0.3.11}/README.md +0 -0
  10. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/__init__.py +0 -0
  11. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/__main__.py +0 -0
  12. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/api/__init__.py +0 -0
  13. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/api/client.py +0 -0
  14. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/api/models.py +0 -0
  15. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/api/organizations.py +0 -0
  16. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/api/projects.py +0 -0
  17. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/api/tickets.py +0 -0
  18. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/auth/__init__.py +0 -0
  19. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/auth/callback_server.py +0 -0
  20. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/auth/oauth_flow.py +0 -0
  21. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/auth/token_manager.py +0 -0
  22. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/cli.py +0 -0
  23. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/config/__init__.py +0 -0
  24. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/config/manager.py +0 -0
  25. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/config/models.py +0 -0
  26. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/markdown/__init__.py +0 -0
  27. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/markdown/generator.py +0 -0
  28. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/markdown/yjs_converter.py +0 -0
  29. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/sync/__init__.py +0 -0
  30. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/sync/file_manager.py +0 -0
  31. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/sync/sync_engine.py +0 -0
  32. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/utils/__init__.py +0 -0
  33. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/utils/console.py +0 -0
  34. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/utils/errors.py +0 -0
  35. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet/utils/paths.py +0 -0
  36. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet_cli.egg-info/SOURCES.txt +0 -0
  37. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet_cli.egg-info/dependency_links.txt +0 -0
  38. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet_cli.egg-info/entry_points.txt +0 -0
  39. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet_cli.egg-info/requires.txt +0 -0
  40. {janet_cli-0.3.9 → janet_cli-0.3.11}/janet_cli.egg-info/top_level.txt +0 -0
  41. {janet_cli-0.3.9 → janet_cli-0.3.11}/requirements.txt +0 -0
  42. {janet_cli-0.3.9 → janet_cli-0.3.11}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: janet-cli
3
- Version: 0.3.9
3
+ Version: 0.3.11
4
4
  Summary: CLI tool to sync Janet AI tickets to local markdown files
5
5
  Author-email: Janet AI <support@janet-ai.com>
6
6
  License: MIT
@@ -255,7 +255,7 @@ class ReadmeGenerator:
255
255
  # Footer
256
256
  sections.append("---\n")
257
257
  sections.append(
258
- f"*Synced from [Janet AI](https://app.tryjanet.ai) "
258
+ f"*Synced from [Janet AI](https://app.janet.ai) "
259
259
  f"on {sync_time.strftime('%B %d, %Y at %I:%M %p')}*\n"
260
260
  )
261
261
 
@@ -75,6 +75,11 @@ class SSEWatcher:
75
75
  event: Event dictionary
76
76
  """
77
77
  event_type = event.get("type")
78
+
79
+ # Ignore keepalive pings
80
+ if event_type == "ping":
81
+ return
82
+
78
83
  project_id = event.get("projectId")
79
84
  ticket_id = event.get("ticketId")
80
85
  ticket_data = event.get("ticketData", {})
@@ -230,7 +235,7 @@ class SSEWatcher:
230
235
  break
231
236
  # Expected disconnection from load balancer timeout - reconnect silently
232
237
  elif "incomplete chunked read" in error_str or "closed" in error_str.lower():
233
- console.print("[dim]Connection closed, reconnecting...[/dim]")
238
+ pass # Silent reconnect - this is normal behavior
234
239
  else:
235
240
  console.print(f"[yellow]Connection interrupted: {e}[/yellow]")
236
241
  import time
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: janet-cli
3
- Version: 0.3.9
3
+ Version: 0.3.11
4
4
  Summary: CLI tool to sync Janet AI tickets to local markdown files
5
5
  Author-email: Janet AI <support@janet-ai.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "janet-cli"
7
- version = "0.3.9"
7
+ version = "0.3.11"
8
8
  description = "CLI tool to sync Janet AI tickets to local markdown files"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
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