standardbots 2.0.0.dev1753213530__py3-none-any.whl → 2.0.0.dev1754069572__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 standardbots might be problematic. Click here for more details.
- standardbots/auto_generated/models.py +4 -2
- {standardbots-2.0.0.dev1753213530.dist-info → standardbots-2.0.0.dev1754069572.dist-info}/METADATA +1 -1
- {standardbots-2.0.0.dev1753213530.dist-info → standardbots-2.0.0.dev1754069572.dist-info}/RECORD +5 -5
- {standardbots-2.0.0.dev1753213530.dist-info → standardbots-2.0.0.dev1754069572.dist-info}/WHEEL +0 -0
- {standardbots-2.0.0.dev1753213530.dist-info → standardbots-2.0.0.dev1754069572.dist-info}/top_level.txt +0 -0
|
@@ -2478,6 +2478,8 @@ class RecorderStatus(Enum):
|
|
|
2478
2478
|
"""Enum Error = `error`"""
|
|
2479
2479
|
Complete = "complete"
|
|
2480
2480
|
"""Enum Complete = `complete`"""
|
|
2481
|
+
Initializing = "initializing"
|
|
2482
|
+
"""Enum Initializing = `initializing`"""
|
|
2481
2483
|
|
|
2482
2484
|
def parse_recorder_status(data: object) -> RecorderStatus:
|
|
2483
2485
|
return RecorderStatus(data)
|
|
@@ -6445,7 +6447,7 @@ class RecorderBotDetails:
|
|
|
6445
6447
|
if value is None:
|
|
6446
6448
|
return [True, ""]
|
|
6447
6449
|
|
|
6448
|
-
if not ((isinstance(value, str) and RecorderStatus in ['not_recording', 'recording', 'error', 'complete']) or isinstance(value, RecorderStatus)):
|
|
6450
|
+
if not ((isinstance(value, str) and RecorderStatus in ['not_recording', 'recording', 'error', 'complete', 'initializing']) or isinstance(value, RecorderStatus)):
|
|
6449
6451
|
return [False, "status must be of type RecorderStatus for RecorderBotDetails, got " + type(value).__name__]
|
|
6450
6452
|
|
|
6451
6453
|
return [True, ""]
|
|
@@ -8780,7 +8782,7 @@ class RecorderState:
|
|
|
8780
8782
|
if value is None:
|
|
8781
8783
|
return [True, ""]
|
|
8782
8784
|
|
|
8783
|
-
if not ((isinstance(value, str) and RecorderStatus in ['not_recording', 'recording', 'error', 'complete']) or isinstance(value, RecorderStatus)):
|
|
8785
|
+
if not ((isinstance(value, str) and RecorderStatus in ['not_recording', 'recording', 'error', 'complete', 'initializing']) or isinstance(value, RecorderStatus)):
|
|
8784
8786
|
return [False, "status must be of type RecorderStatus for RecorderState, got " + type(value).__name__]
|
|
8785
8787
|
|
|
8786
8788
|
return [True, ""]
|
{standardbots-2.0.0.dev1753213530.dist-info → standardbots-2.0.0.dev1754069572.dist-info}/RECORD
RENAMED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
standardbots/__init__.py,sha256=PT6Z2HPama2fb6SaNhF3J1skpYABQWGgDzKEtQY6BDM,29
|
|
2
2
|
standardbots/auto_generated/__init__.py,sha256=PZtDUzYcjIO6R-gE-0NzY0vFXk1Je1tJ3je0ivV5o-k,98
|
|
3
3
|
standardbots/auto_generated/apis.py,sha256=PImtR3DhXTi2SAMyaXavFwKIPL_UDU8t7f50E9m-GLw,135953
|
|
4
|
-
standardbots/auto_generated/models.py,sha256=
|
|
4
|
+
standardbots/auto_generated/models.py,sha256=wRruVCwZIQgMO6bQ1nvDHEPGInZWGPS8zes6rJIEJ50,375566
|
|
5
5
|
tests/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
tests/fixtures/client_fixt.py,sha256=LfeKYuYfHui-7YEFBlgtV33QN-MEI7DhAkJ6BUoZP6s,633
|
|
7
7
|
tests/fixtures/robot_fixt.py,sha256=6-0SgAjhEOUeydfRRu4dRVX-no1yYQxGKesAtvoPppc,1716
|
|
8
8
|
tests/fixtures/routines_fixt.py,sha256=XdcWUM0dl2SWJhtLd8-xYqI4nh4ge23SqJWquCIrQe0,2124
|
|
9
|
-
standardbots-2.0.0.
|
|
10
|
-
standardbots-2.0.0.
|
|
11
|
-
standardbots-2.0.0.
|
|
12
|
-
standardbots-2.0.0.
|
|
9
|
+
standardbots-2.0.0.dev1754069572.dist-info/METADATA,sha256=FT9-4zw4xU6ylo9_I4474RxNBMH3zmDfiXJO5bUeqdw,558
|
|
10
|
+
standardbots-2.0.0.dev1754069572.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
11
|
+
standardbots-2.0.0.dev1754069572.dist-info/top_level.txt,sha256=eHgNxowGe-eEE7gOyeuwXN3bHLClu-TQ1VnsOOzzTkw,19
|
|
12
|
+
standardbots-2.0.0.dev1754069572.dist-info/RECORD,,
|
{standardbots-2.0.0.dev1753213530.dist-info → standardbots-2.0.0.dev1754069572.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|