podojo-cli 0.2.0__tar.gz → 0.2.1__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.
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/PKG-INFO +1 -1
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/pyproject.toml +1 -1
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/sessions.py +6 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/tests/test_sessions.py +2 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/uv.lock +1 -1
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/.github/workflows/publish.yml +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/.gitignore +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/CLAUDE.md +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/README.md +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/__init__.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/client.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/__init__.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/auth.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/gdrive.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/projects.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/showreel.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/transcripts.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/commands/videos.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/config.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/gdrive/__init__.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/gdrive/list.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/gdrive/upload.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/main.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/video/__init__.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/src/podojo_cli/video/showreel.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/tests/conftest.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/tests/test_auth.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/tests/test_gdrive.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/tests/test_projects.py +0 -0
- {podojo_cli-0.2.0 → podojo_cli-0.2.1}/tests/test_showreel.py +0 -0
|
@@ -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
|
|
|
@@ -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
|
],
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|