bbdc-cli 0.4.1__tar.gz → 0.4.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.
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/PKG-INFO +1 -1
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli/__main__.py +5 -1
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli.egg-info/PKG-INFO +1 -1
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/pyproject.toml +1 -1
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/README.md +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli/__init__.py +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli.egg-info/SOURCES.txt +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli.egg-info/dependency_links.txt +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli.egg-info/entry_points.txt +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli.egg-info/requires.txt +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/bbdc_cli.egg-info/top_level.txt +0 -0
- {bbdc_cli-0.4.1 → bbdc_cli-0.4.2}/setup.cfg +0 -0
|
@@ -1758,6 +1758,7 @@ def account_me(
|
|
|
1758
1758
|
),
|
|
1759
1759
|
limit: int = typer.Option(25, help="Page size for account-related paged endpoints"),
|
|
1760
1760
|
max_items: int = typer.Option(100, help="Max items per account-related endpoint"),
|
|
1761
|
+
json_out: bool = typer.Option(False, "--json", help="Print raw JSON response"),
|
|
1761
1762
|
):
|
|
1762
1763
|
"""Get a consolidated snapshot of the authenticated account.
|
|
1763
1764
|
|
|
@@ -1772,7 +1773,10 @@ def account_me(
|
|
|
1772
1773
|
limit=limit,
|
|
1773
1774
|
max_items=max_items,
|
|
1774
1775
|
)
|
|
1775
|
-
|
|
1776
|
+
if json_out:
|
|
1777
|
+
_print_json(resp["data"])
|
|
1778
|
+
else:
|
|
1779
|
+
_print_json(resp["data"])
|
|
1776
1780
|
|
|
1777
1781
|
|
|
1778
1782
|
@pr_app.command("list")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|