regscale-cli 6.22.0.0__py3-none-any.whl → 6.22.0.1__py3-none-any.whl

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.

Potentially problematic release.


This version of regscale-cli might be problematic. Click here for more details.

regscale/_version.py CHANGED
@@ -33,7 +33,7 @@ def get_version_from_pyproject() -> str:
33
33
  return match.group(1)
34
34
  except Exception:
35
35
  pass
36
- return "6.22.0.0" # fallback version
36
+ return "6.22.0.1" # fallback version
37
37
 
38
38
 
39
39
  __version__ = get_version_from_pyproject()
@@ -73,18 +73,12 @@ def sync_sentinelone(regscale_ssp_id: int, edr_events_url: str) -> None:
73
73
 
74
74
  @edr.command(name="sync_sophos")
75
75
  @regscale_ssp_id()
76
- @click.option(
77
- "--url",
78
- type=click.STRING,
79
- help="Base URL for the Sophos Endpoint API.",
80
- required=False,
81
- )
82
- def sync_sophos(regscale_ssp_id: int, url: str) -> None:
76
+ def sync_sophos(regscale_ssp_id: int) -> None:
83
77
  """Sync Edr from Sophos to RegScale."""
84
78
  from regscale.models.integration_models.synqly_models.connectors import Edr
85
79
 
86
80
  edr_sophos = Edr("sophos")
87
- edr_sophos.run_sync(regscale_ssp_id=regscale_ssp_id, url=url)
81
+ edr_sophos.run_sync(regscale_ssp_id=regscale_ssp_id)
88
82
 
89
83
 
90
84
  @edr.command(name="sync_tanium")
File without changes