unrealon 2.0.6__py3-none-any.whl → 2.0.7__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.
- {unrealon-2.0.6.dist-info → unrealon-2.0.7.dist-info}/METADATA +1 -1
- {unrealon-2.0.6.dist-info → unrealon-2.0.7.dist-info}/RECORD +7 -7
- unrealon_core/models/websocket/broadcast.py +33 -2
- {unrealon-2.0.6.dist-info → unrealon-2.0.7.dist-info}/LICENSE +0 -0
- {unrealon-2.0.6.dist-info → unrealon-2.0.7.dist-info}/WHEEL +0 -0
- {unrealon-2.0.6.dist-info → unrealon-2.0.7.dist-info}/entry_points.txt +0 -0
- {unrealon-2.0.6.dist-info → unrealon-2.0.7.dist-info}/top_level.txt +0 -0
|
@@ -63,7 +63,7 @@ unrealon_core/models/typed_responses.py,sha256=shEvV4A7mYUKIzG3zD4zoRO2PmVLL3iLt
|
|
|
63
63
|
unrealon_core/models/websocket_session.py,sha256=q3RXQP2CwRTgUTYMRnb4xzzdGWUOeL8maYxVFPmF92w,5119
|
|
64
64
|
unrealon_core/models/websocket/__init__.py,sha256=wBgv1ZI_0_SiC2AX-UOA5fivi4rf3GEFhLDG159-x_s,2845
|
|
65
65
|
unrealon_core/models/websocket/base.py,sha256=gmkJ-vLpsajc4aGlPBeMURIFNg3AgX4yYSnJQAqqkf0,1388
|
|
66
|
-
unrealon_core/models/websocket/broadcast.py,sha256=
|
|
66
|
+
unrealon_core/models/websocket/broadcast.py,sha256=XoefNORneicJUQxutFkzuPJDEAEyQlZEWtmBqL97yVg,4126
|
|
67
67
|
unrealon_core/models/websocket/config.py,sha256=AZz9wK8j0UIkRkDE17Nsxdocimh-41MJQkS-_VzTnM0,4665
|
|
68
68
|
unrealon_core/models/websocket/driver.py,sha256=Bi1B7nSSWkLFCwfIOLJSkPUxGS5r9x4Mw9XWvHuSxa0,5206
|
|
69
69
|
unrealon_core/models/websocket/errors.py,sha256=l5w1rCx_RrzdISPwLOoKtoPCuSNjHL5XExyFaHgayS4,3095
|
|
@@ -121,9 +121,9 @@ unrealon_driver/managers/threading.py,sha256=djw5cSC99dfBKmep3IJ_8IgxQceMXtNvCp5
|
|
|
121
121
|
unrealon_driver/managers/update.py,sha256=-hohVxGXpj5bZ6ZTQN6NH1RK9Pd6GVzCMtu3GS2SdcQ,3582
|
|
122
122
|
unrealon_driver/utils/__init__.py,sha256=qxXVoQJVdLJhaLBXk_LZV_062AhrvBrMPXWAKfEc3C4,104
|
|
123
123
|
unrealon_driver/utils/time.py,sha256=Oxk1eicKeZl8ZWbf7gu1Ll716k6CpXmVj67FHSnPIsA,184
|
|
124
|
-
unrealon-2.0.
|
|
125
|
-
unrealon-2.0.
|
|
126
|
-
unrealon-2.0.
|
|
127
|
-
unrealon-2.0.
|
|
128
|
-
unrealon-2.0.
|
|
129
|
-
unrealon-2.0.
|
|
124
|
+
unrealon-2.0.7.dist-info/LICENSE,sha256=eEH8mWZW49YMpl4Sh5MtKqkZ8aVTzKQXiNPEnvL14ns,1070
|
|
125
|
+
unrealon-2.0.7.dist-info/METADATA,sha256=6emT2rPYUexfKJNIKu4CuuhuSCYptvwMahqhmiXqzRs,15688
|
|
126
|
+
unrealon-2.0.7.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
|
|
127
|
+
unrealon-2.0.7.dist-info/entry_points.txt,sha256=k0qM-eotpajkKUq-almJmxj9afhXprZ6IkvQkSdcKhI,104
|
|
128
|
+
unrealon-2.0.7.dist-info/top_level.txt,sha256=Gu8IeIfIVfUxdi-h-F0nKMQxo15pjhHZ0aTadXTpRE8,47
|
|
129
|
+
unrealon-2.0.7.dist-info/RECORD,,
|
|
@@ -81,6 +81,38 @@ class DriverBroadcastData(UnrealOnBaseModel):
|
|
|
81
81
|
default=None,
|
|
82
82
|
description="ISO timestamp when driver disconnected"
|
|
83
83
|
)
|
|
84
|
+
|
|
85
|
+
# Additional fields for complete driver information
|
|
86
|
+
version: Optional[str] = Field(
|
|
87
|
+
default=None,
|
|
88
|
+
description="Driver version"
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
driver_name: Optional[str] = Field(
|
|
92
|
+
default=None,
|
|
93
|
+
description="Human-readable driver name"
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
environment: Optional[str] = Field(
|
|
97
|
+
default=None,
|
|
98
|
+
description="Driver environment (development, production, etc.)"
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
region: Optional[str] = Field(
|
|
102
|
+
default=None,
|
|
103
|
+
description="Driver region"
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
max_concurrent_tasks: Optional[int] = Field(
|
|
107
|
+
default=None,
|
|
108
|
+
ge=1,
|
|
109
|
+
description="Maximum concurrent tasks"
|
|
110
|
+
)
|
|
111
|
+
|
|
112
|
+
tags: List[str] = Field(
|
|
113
|
+
default_factory=list,
|
|
114
|
+
description="Driver tags"
|
|
115
|
+
)
|
|
84
116
|
|
|
85
117
|
|
|
86
118
|
class DriverRegisterBroadcast(WebSocketMessage):
|
|
@@ -92,8 +124,7 @@ class DriverRegisterBroadcast(WebSocketMessage):
|
|
|
92
124
|
)
|
|
93
125
|
|
|
94
126
|
type: MessageType = Field(
|
|
95
|
-
default=MessageType.DRIVER_REGISTER
|
|
96
|
-
frozen=True
|
|
127
|
+
default=MessageType.DRIVER_REGISTER
|
|
97
128
|
)
|
|
98
129
|
|
|
99
130
|
data: DriverBroadcastData = Field(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|