lr-gladiator 0.2.0__tar.gz → 0.3.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lr-gladiator
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: CLI and Python client for Arena PLM (app.bom.com): login, get revisions, list/download attachments, and upload to working revisions.
5
5
  Author-email: Jonas Estberger <jonas.estberger@lumenradio.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "lr-gladiator"
7
- version = "0.2.0"
7
+ version = "0.3.0"
8
8
  description = "CLI and Python client for Arena PLM (app.bom.com): login, get revisions, list/download attachments, and upload to working revisions."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -413,7 +413,8 @@ class ArenaClient:
413
413
  return data
414
414
 
415
415
  # Else: create a new association on WORKING
416
- # 2) Resolve file category guid by name (default: CAD Data) cats_url = f"{self._api_base()}/settings/files/categories"
416
+ # 2) Resolve file category guid by name (default: CAD Data)
417
+ cats_url = f"{self._api_base()}/settings/files/categories"
417
418
  self._log(f"GET {cats_url}")
418
419
  r = self.session.get(cats_url)
419
420
  r.raise_for_status()
@@ -118,7 +118,6 @@ def get_files(
118
118
  item: str = typer.Argument(..., help="Item/article number"),
119
119
  revision: Optional[str] = typer.Option(None, "--rev", help="Revision (default: latest approved)"),
120
120
  out: Path = typer.Option(Path("downloads"), "--out", help="Output directory"),
121
- format: Optional[str] = typer.Option(None, "--format", "-f", help="Output format: human (default) or json"),
122
121
  ):
123
122
  try:
124
123
  paths = _client().download_files(item, revision, out_dir=out)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lr-gladiator
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: CLI and Python client for Arena PLM (app.bom.com): login, get revisions, list/download attachments, and upload to working revisions.
5
5
  Author-email: Jonas Estberger <jonas.estberger@lumenradio.com>
6
6
  License: MIT
File without changes
File without changes
File without changes