podojo-cli 0.2.0__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 (30) hide show
  1. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/PKG-INFO +1 -1
  2. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/pyproject.toml +1 -1
  3. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/sessions.py +9 -0
  4. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/tests/test_sessions.py +2 -0
  5. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/uv.lock +1 -1
  6. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/.github/workflows/publish.yml +0 -0
  7. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/.gitignore +0 -0
  8. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/CLAUDE.md +0 -0
  9. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/README.md +0 -0
  10. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/__init__.py +0 -0
  11. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/client.py +0 -0
  12. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/__init__.py +0 -0
  13. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/auth.py +0 -0
  14. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/gdrive.py +0 -0
  15. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/projects.py +0 -0
  16. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/showreel.py +0 -0
  17. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/transcripts.py +0 -0
  18. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/commands/videos.py +0 -0
  19. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/config.py +0 -0
  20. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/gdrive/__init__.py +0 -0
  21. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/gdrive/list.py +0 -0
  22. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/gdrive/upload.py +0 -0
  23. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/main.py +0 -0
  24. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/video/__init__.py +0 -0
  25. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/src/podojo_cli/video/showreel.py +0 -0
  26. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/tests/conftest.py +0 -0
  27. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/tests/test_auth.py +0 -0
  28. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/tests/test_gdrive.py +0 -0
  29. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/tests/test_projects.py +0 -0
  30. {podojo_cli-0.2.0 → podojo_cli-0.2.2}/tests/test_showreel.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: podojo-cli
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: CLI for the Podojo user research platform
5
5
  License-Expression: MIT
6
6
  Requires-Python: >=3.12
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "podojo-cli"
3
- version = "0.2.0"
3
+ version = "0.2.2"
4
4
  description = "CLI for the Podojo user research platform"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -49,6 +49,9 @@ promo_code_info: "Use this code for 10% off your next purchase"
49
49
  # Optional: link session to a project
50
50
  project_name: checkout-redesign-q1
51
51
 
52
+ # Optional: set session live (default: false)
53
+ # live: true
54
+
52
55
  # Steps define what participants see and do
53
56
  # Each step requires: type ("screen" or "prototype") and title
54
57
  # Screen steps should have a variant: "question" (open-ended) or "task" (action-based)
@@ -173,14 +176,17 @@ def list_sessions(
173
176
  table.add_column("Title")
174
177
  table.add_column("Client")
175
178
  table.add_column("Steps", justify="right")
179
+ table.add_column("Live")
176
180
  table.add_column("Last Updated")
177
181
 
178
182
  for s in sessions:
183
+ live = "[green]Yes[/green]" if s.get("live") else "[dim]No[/dim]"
179
184
  table.add_row(
180
185
  s.get("session_id", ""),
181
186
  s.get("title", ""),
182
187
  s.get("client", ""),
183
188
  str(s.get("step_count", "")),
189
+ live,
184
190
  s.get("last_updated", ""),
185
191
  )
186
192
 
@@ -223,6 +229,9 @@ def create_session(
223
229
  console.print(f" {err}")
224
230
  raise typer.Exit(1)
225
231
 
232
+ if "project_name" not in data:
233
+ data["project_name"] = data["session_id"]
234
+
226
235
  client = PodojoClient()
227
236
  try:
228
237
  result = client.create_session(data)
@@ -23,6 +23,7 @@ LIST_RESPONSE = {
23
23
  "title": "Session One",
24
24
  "client": "Acme",
25
25
  "step_count": 3,
26
+ "live": True,
26
27
  "last_updated": "2026-03-01T12:00:00",
27
28
  },
28
29
  {
@@ -30,6 +31,7 @@ LIST_RESPONSE = {
30
31
  "title": "Session Two",
31
32
  "client": "Beta",
32
33
  "step_count": 5,
34
+ "live": False,
33
35
  "last_updated": "2026-03-02T12:00:00",
34
36
  },
35
37
  ],
@@ -404,7 +404,7 @@ wheels = [
404
404
 
405
405
  [[package]]
406
406
  name = "podojo-cli"
407
- version = "0.1.0"
407
+ version = "0.2.1"
408
408
  source = { editable = "." }
409
409
  dependencies = [
410
410
  { name = "google-api-python-client" },
File without changes
File without changes
File without changes
File without changes