crowdtime-cli 0.8.1__tar.gz → 0.8.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.
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/PKG-INFO +1 -1
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/pyproject.toml +1 -1
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/__init__.py +1 -1
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/log_cmd.py +6 -6
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/.gitignore +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/LICENSE +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/README.md +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/auth.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/client.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/__init__.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/ai_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/auth_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/billing_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/clients_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/config_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/expense_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/favorites_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/invoice_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/org_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/payroll_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/projects_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/report_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/skill_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/tasks_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/timer_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/commands/timesheet_cmd.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/config.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/formatters.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/main.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/models.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/oauth.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/resolvers.py +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/skills/crowdtime/SKILL.md +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/skills/crowdtime/references/commands.md +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/skills/crowdtime/references/workflows.md +0 -0
- {crowdtime_cli-0.8.1 → crowdtime_cli-0.8.2}/src/crowdtime_cli/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crowdtime-cli
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: AI-powered time tracking CLI — a modern, developer-friendly alternative to Harvest
|
|
5
5
|
Project-URL: Homepage, https://crowdtime.lat
|
|
6
6
|
Project-URL: Documentation, https://crowdtime.lat/docs
|
|
@@ -246,23 +246,23 @@ def _list_entries(
|
|
|
246
246
|
elif week:
|
|
247
247
|
today = date_type.today()
|
|
248
248
|
start = today - timedelta(days=today.weekday())
|
|
249
|
-
params["
|
|
250
|
-
params["
|
|
249
|
+
params["date_from"] = format_date(start)
|
|
250
|
+
params["date_to"] = format_date(today)
|
|
251
251
|
elif month:
|
|
252
252
|
today = date_type.today()
|
|
253
253
|
start = today.replace(day=1)
|
|
254
|
-
params["
|
|
255
|
-
params["
|
|
254
|
+
params["date_from"] = format_date(start)
|
|
255
|
+
params["date_to"] = format_date(today)
|
|
256
256
|
|
|
257
257
|
if from_date:
|
|
258
258
|
try:
|
|
259
|
-
params["
|
|
259
|
+
params["date_from"] = format_date(parse_date(from_date))
|
|
260
260
|
except ValueError as e:
|
|
261
261
|
format_error(str(e))
|
|
262
262
|
raise typer.Exit(1)
|
|
263
263
|
if to_date:
|
|
264
264
|
try:
|
|
265
|
-
params["
|
|
265
|
+
params["date_to"] = format_date(parse_date(to_date))
|
|
266
266
|
except ValueError as e:
|
|
267
267
|
format_error(str(e))
|
|
268
268
|
raise typer.Exit(1)
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|