isar 1.22.1__py3-none-any.whl → 1.22.2__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 isar might be problematic. Click here for more details.
- {isar-1.22.1.dist-info → isar-1.22.2.dist-info}/METADATA +1 -1
- {isar-1.22.1.dist-info → isar-1.22.2.dist-info}/RECORD +8 -7
- {isar-1.22.1.dist-info → isar-1.22.2.dist-info}/WHEEL +1 -1
- robot_interface/telemetry/media_connection_type.py +5 -0
- robot_interface/telemetry/payloads.py +8 -0
- {isar-1.22.1.dist-info → isar-1.22.2.dist-info}/LICENSE +0 -0
- {isar-1.22.1.dist-info → isar-1.22.2.dist-info}/entry_points.txt +0 -0
- {isar-1.22.1.dist-info → isar-1.22.2.dist-info}/top_level.txt +0 -0
|
@@ -103,14 +103,15 @@ robot_interface/models/mission/task.py,sha256=Nup8e_M_KYhtEtGNeV4FzVzaRH4YpDWiKf
|
|
|
103
103
|
robot_interface/models/robots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
104
|
robot_interface/models/robots/robot_model.py,sha256=pZQsqhn9hh6XE3EjMZhWMzYqg5oJ4CJ4CXeOASKvEf8,452
|
|
105
105
|
robot_interface/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
robot_interface/telemetry/media_connection_type.py,sha256=Z8Jayi5SjBJh_xEd5KdS__A6bM-nofbSAedc6u41iAY,91
|
|
106
107
|
robot_interface/telemetry/mqtt_client.py,sha256=um7j7XDSAlY6-wWLpBl6ZYjmQ-G0lY7f2_NaZ3ciZ7U,2757
|
|
107
|
-
robot_interface/telemetry/payloads.py,sha256=
|
|
108
|
+
robot_interface/telemetry/payloads.py,sha256=FafpIwsOvcTNtaBZqyOX7r5EjG7nZ2uLNhyJo2l5GiI,1767
|
|
108
109
|
robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
110
|
robot_interface/utilities/json_service.py,sha256=nU2Q_3P9Fq9hs6F_wtUjWtHfl_g1Siy-yDhXXSKwHwg,1018
|
|
110
111
|
robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
|
|
111
|
-
isar-1.22.
|
|
112
|
-
isar-1.22.
|
|
113
|
-
isar-1.22.
|
|
114
|
-
isar-1.22.
|
|
115
|
-
isar-1.22.
|
|
116
|
-
isar-1.22.
|
|
112
|
+
isar-1.22.2.dist-info/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
|
|
113
|
+
isar-1.22.2.dist-info/METADATA,sha256=nkEUtu4NfMTeBP9O_N-rJ9FJFUNdKvHmUqjFQgoKqJk,30674
|
|
114
|
+
isar-1.22.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
115
|
+
isar-1.22.2.dist-info/entry_points.txt,sha256=TFam7uNNw7J0iiDYzsH2gfG0u1eV1wh3JTw_HkhgKLk,49
|
|
116
|
+
isar-1.22.2.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
|
|
117
|
+
isar-1.22.2.dist-info/RECORD,,
|
|
@@ -6,6 +6,7 @@ from alitra import Pose
|
|
|
6
6
|
from transitions import State
|
|
7
7
|
|
|
8
8
|
from robot_interface.models.mission.status import RobotStatus
|
|
9
|
+
from robot_interface.telemetry.media_connection_type import MediaConnectionType
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
@dataclass
|
|
@@ -55,6 +56,13 @@ class VideoStream:
|
|
|
55
56
|
type: str
|
|
56
57
|
|
|
57
58
|
|
|
59
|
+
@dataclass
|
|
60
|
+
class MediaConfig(TelemetryPayload):
|
|
61
|
+
url: str
|
|
62
|
+
token: str
|
|
63
|
+
media_connection_type: MediaConnectionType
|
|
64
|
+
|
|
65
|
+
|
|
58
66
|
@dataclass
|
|
59
67
|
class RobotStatusPayload:
|
|
60
68
|
isar_id: str
|
|
File without changes
|
|
File without changes
|
|
File without changes
|