standardbots 2.20240619.1__tar.gz → 2.20240723.2__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 standardbots might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: standardbots
3
- Version: 2.20240619.1
3
+ Version: 2.20240723.2
4
4
  Summary: Standard Bots RO1 Robotics API
5
5
  Home-page:
6
6
  Author: Standard Bots Support
@@ -13,7 +13,7 @@
13
13
  from setuptools import setup, find_packages # noqa: H301
14
14
 
15
15
  NAME = "standardbots"
16
- VERSION = "2.20240619.1"
16
+ VERSION = "2.20240723.2"
17
17
  # To install the library, run the following
18
18
  #
19
19
  # python setup.py install
@@ -1256,7 +1256,7 @@ class RoutineEditor:
1256
1256
 
1257
1257
  def load(
1258
1258
  self,
1259
- variable_id: str,
1259
+ variable_name: str,
1260
1260
  ) -> Response[
1261
1261
  Union[
1262
1262
  models.RuntimeVariable,
@@ -1268,8 +1268,8 @@ class RoutineEditor:
1268
1268
  """
1269
1269
  Returns current state of a variable
1270
1270
  """
1271
- path = "/api/v1/routine-editor/variables/{variable_id}"
1272
- path = path.replace("{variable_id}", str(variable_id))
1271
+ path = "/api/v1/routine-editor/variables/{variable_name}"
1272
+ path = path.replace("{variable_name}", str(variable_name))
1273
1273
  response = self._request_manager.request(
1274
1274
  "GET",
1275
1275
  path,
@@ -1293,7 +1293,7 @@ class RoutineEditor:
1293
1293
  def update(
1294
1294
  self,
1295
1295
  body: models.RuntimeVariable,
1296
- variable_id: str,
1296
+ variable_name: str,
1297
1297
  ) -> Response[
1298
1298
  Union[
1299
1299
  models.RuntimeVariable,
@@ -1305,8 +1305,8 @@ class RoutineEditor:
1305
1305
  """
1306
1306
  Update the value of a variable
1307
1307
  """
1308
- path = "/api/v1/routine-editor/variables/{variable_id}"
1309
- path = path.replace("{variable_id}", str(variable_id))
1308
+ path = "/api/v1/routine-editor/variables/{variable_name}"
1309
+ path = path.replace("{variable_name}", str(variable_name))
1310
1310
  response = self._request_manager.request(
1311
1311
  "POST",
1312
1312
  path,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: standardbots
3
- Version: 2.20240619.1
3
+ Version: 2.20240723.2
4
4
  Summary: Standard Bots RO1 Robotics API
5
5
  Home-page:
6
6
  Author: Standard Bots Support