antioch-py 3.0.3__tar.gz → 3.0.13__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.

Potentially problematic release.


This version of antioch-py might be problematic. Click here for more details.

Files changed (68) hide show
  1. {antioch_py-3.0.3/antioch_py.egg-info → antioch_py-3.0.13}/PKG-INFO +1 -1
  2. {antioch_py-3.0.3 → antioch_py-3.0.13/antioch_py.egg-info}/PKG-INFO +1 -1
  3. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/constants.py +7 -0
  4. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/telemetry.py +1 -1
  5. {antioch_py-3.0.3 → antioch_py-3.0.13}/pyproject.toml +1 -1
  6. {antioch_py-3.0.3 → antioch_py-3.0.13}/LICENSE +0 -0
  7. {antioch_py-3.0.3 → antioch_py-3.0.13}/MANIFEST.in +0 -0
  8. {antioch_py-3.0.3 → antioch_py-3.0.13}/README.md +0 -0
  9. {antioch_py-3.0.3 → antioch_py-3.0.13}/README.pypi.md +0 -0
  10. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch/__init__.py +0 -0
  11. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch/clock.py +0 -0
  12. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch/execution.py +0 -0
  13. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch/input.py +0 -0
  14. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch/module.py +0 -0
  15. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch/node.py +0 -0
  16. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch_py.egg-info/SOURCES.txt +0 -0
  17. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch_py.egg-info/dependency_links.txt +0 -0
  18. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch_py.egg-info/requires.txt +0 -0
  19. {antioch_py-3.0.3 → antioch_py-3.0.13}/antioch_py.egg-info/top_level.txt +0 -0
  20. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/__init__.py +0 -0
  21. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/__init__.py +0 -0
  22. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/ark.py +0 -0
  23. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/hardware.py +0 -0
  24. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/kinematics.py +0 -0
  25. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/module.py +0 -0
  26. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/node.py +0 -0
  27. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/scheduler.py +0 -0
  28. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/sim.py +0 -0
  29. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/ark/token.py +0 -0
  30. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/assets/__init__.py +0 -0
  31. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/assets/rigging.usd +0 -0
  32. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/__init__.py +0 -0
  33. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/auth.py +0 -0
  34. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/container.py +0 -0
  35. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/registry.py +0 -0
  36. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/rome.py +0 -0
  37. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/core/types.py +0 -0
  38. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/__init__.py +0 -0
  39. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/annotation.py +0 -0
  40. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/array.py +0 -0
  41. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/camera.py +0 -0
  42. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/color.py +0 -0
  43. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/detection.py +0 -0
  44. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/foxglove.py +0 -0
  45. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/frame.py +0 -0
  46. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/image.py +0 -0
  47. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/imu.py +0 -0
  48. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/joint.py +0 -0
  49. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/log.py +0 -0
  50. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/message.py +0 -0
  51. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/pir.py +0 -0
  52. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/plot.py +0 -0
  53. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/point.py +0 -0
  54. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/point_cloud.py +0 -0
  55. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/pose.py +0 -0
  56. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/quaternion.py +0 -0
  57. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/radar.py +0 -0
  58. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/twist.py +0 -0
  59. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/types.py +0 -0
  60. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/message/vector.py +0 -0
  61. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/sim/__init__.py +0 -0
  62. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/sim/objects.py +0 -0
  63. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/sim/state.py +0 -0
  64. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/utils/__init__.py +0 -0
  65. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/utils/comms.py +0 -0
  66. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/utils/logger.py +0 -0
  67. {antioch_py-3.0.3 → antioch_py-3.0.13}/common/utils/time.py +0 -0
  68. {antioch_py-3.0.3 → antioch_py-3.0.13}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: antioch-py
3
- Version: 3.0.3
3
+ Version: 3.0.13
4
4
  Summary: Antioch Python Module SDK
5
5
  Author-email: Antioch Robotics <support@antioch.dev>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: antioch-py
3
- Version: 3.0.3
3
+ Version: 3.0.13
4
4
  Summary: Antioch Python Module SDK
5
5
  Author-email: Antioch Robotics <support@antioch.dev>
6
6
  License-Expression: MIT
@@ -50,6 +50,13 @@ AUTH_TIMEOUT_SECONDS = 120
50
50
  # JWT claim names (namespaced for Auth0)
51
51
  AUTH_ORG_ID_CLAIM = "https://antioch.com/org_id"
52
52
  AUTH_ORG_NAME_CLAIM = "https://antioch.com/org_name"
53
+ AUTH_ORG_ROLE_CLAIM = "https://antioch.com/org_role"
54
+
55
+ # Organization roles (mutually exclusive within an org)
56
+ ORG_ROLE_ADMIN = "team_admin"
57
+ ORG_ROLE_MEMBER = "team_member"
58
+ ORG_ROLE_SUPPORT = "support_staff"
59
+ ORG_ROLES = (ORG_ROLE_ADMIN, ORG_ROLE_MEMBER, ORG_ROLE_SUPPORT)
53
60
 
54
61
  # =============================================================================
55
62
  # Telemetry Configuration
@@ -76,7 +76,7 @@ class TelemetryManager:
76
76
  if "Address already in use" in str(e):
77
77
  raise RuntimeError(
78
78
  f"Foxglove server port {FOXGLOVE_WEBSOCKET_PORT} is already in use. "
79
- f"Another simulation may be running. Stop it first with sim.stop(), "
79
+ f"Another simulation may be running. Stop it first with sim.close(), "
80
80
  f"or kill the process: lsof -ti :{FOXGLOVE_WEBSOCKET_PORT} | xargs -r kill"
81
81
  ) from None
82
82
  raise
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "antioch-py"
3
- version = "3.0.3"
3
+ version = "3.0.13"
4
4
  description = "Antioch Python Module SDK"
5
5
  readme = "README.pypi.md"
6
6
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes