wandelbots_api_client 26.6.0.dev33__py3-none-any.whl → 26.6.0.dev35__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.
@@ -13,7 +13,7 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
- __version__ = "26.6.0.dev33"
16
+ __version__ = "26.6.0.dev35"
17
17
 
18
18
  from . import models
19
19
  from . import api
@@ -83,7 +83,7 @@ class ApiClient:
83
83
  self.default_headers[header_name] = header_value
84
84
  self.cookie = cookie
85
85
  # Set default User-Agent.
86
- self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev33"
86
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev35"
87
87
  self.client_side_validation = configuration.client_side_validation
88
88
 
89
89
  async def __aenter__(self):
@@ -512,7 +512,7 @@ class Configuration:
512
512
  "OS: {env}\n"
513
513
  "Python Version: {pyversion}\n"
514
514
  "Version of the API: 1.6.0 dev\n"
515
- "SDK Package Version: 26.6.0.dev33".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev35".format(env=sys.platform, pyversion=sys.version)
516
516
  )
517
517
 
518
518
  def get_host_settings(self) -> List[HostSetting]:
@@ -13,7 +13,7 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
- __version__ = "26.6.0.dev33"
16
+ __version__ = "26.6.0.dev35"
17
17
 
18
18
  from . import api
19
19
  from . import api_client
@@ -85,7 +85,7 @@ class ApiClient:
85
85
  self.default_headers[header_name] = header_value
86
86
  self.cookie = cookie
87
87
  # Set default User-Agent.
88
- self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev33"
88
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev35"
89
89
  self.client_side_validation = configuration.client_side_validation
90
90
 
91
91
  async def __aenter__(self):
@@ -512,7 +512,7 @@ class Configuration:
512
512
  "OS: {env}\n"
513
513
  "Python Version: {pyversion}\n"
514
514
  "Version of the API: 2.6.0 dev\n"
515
- "SDK Package Version: 26.6.0.dev33".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev35".format(env=sys.platform, pyversion=sys.version)
516
516
  )
517
517
 
518
518
  def get_host_settings(self) -> List[HostSetting]:
@@ -27,7 +27,7 @@ ADDVIRTUALCONTROLLERMOTIONGROUPREQUEST_ONE_OF_SCHEMAS = ["MotionGroupFromJson",
27
27
 
28
28
  class AddVirtualControllerMotionGroupRequest(BaseModel):
29
29
  """
30
- Request body wrapper for `addVirtualControllerMotionGroup`. Allow callers to either reference a predefined motion group model or upload a full JSON configuration that the backend extracts into a motion group description.
30
+ Request body wrapper for `addVirtualControllerMotionGroup`. Allow either referencing a predefined motion group model or uploading a JSON configuration that the backend converts into a motion group description.
31
31
  """
32
32
 
33
33
  # data type: MotionGroupFromType
@@ -34,7 +34,7 @@ class App(BaseModel):
34
34
  """ # noqa: E501
35
35
 
36
36
  name: Annotated[str, Field(min_length=1, strict=True)] = Field(
37
- description="The name of the provided application. The name must be unique within the cell and is used as a identifier for addressing the application in all API calls , e.g., when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names). "
37
+ description="The name of the provided application. The name must be unique within the cell and is used as an identifier for addressing the application in all API calls , e.g., when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names). "
38
38
  )
39
39
  app_icon: Annotated[str, Field(min_length=1, strict=True)] = Field(
40
40
  description="The path of the icon for the App (/$cell/$name/$app_icon)."
@@ -30,14 +30,14 @@ class MotionGroupFromJson(BaseModel):
30
30
 
31
31
  motion_group: StrictStr = Field(description="Unique identifier for the motion group to be added.")
32
32
  json_data: StrictStr = Field(
33
- description="Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller's configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). "
33
+ description="JSON configuration of the virtual robot controller, can be obtained from the physical controller's configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). "
34
34
  )
35
35
  extracted_motion_group_id: StrictStr = Field(
36
36
  description="The identifier of the motion group that needs to be extracted from the provided JSON configuration. "
37
37
  )
38
38
  initial_joint_position: Optional[StrictStr] = Field(
39
39
  default=None,
40
- description="Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot's degrees of freedom (DOF), e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros. ",
40
+ description="Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot's degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros. ",
41
41
  )
42
42
  __properties: ClassVar[List[str]] = ["motion_group", "json_data", "extracted_motion_group_id", "initial_joint_position"]
43
43
 
@@ -34,7 +34,7 @@ class MotionGroupFromType(BaseModel):
34
34
  )
35
35
  initial_joint_position: Optional[StrictStr] = Field(
36
36
  default=None,
37
- description="Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot's degrees of freedom (DOF), e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot's DOF, the array will be adjusted; if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros. ",
37
+ description="Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot's degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot's DOF, the array will be adjusted; if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros. ",
38
38
  )
39
39
  __properties: ClassVar[List[str]] = ["motion_group", "motion_group_model", "initial_joint_position"]
40
40
 
@@ -18,6 +18,8 @@ import json
18
18
 
19
19
  from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
20
20
  from typing import Any, ClassVar, Dict, List, Optional
21
+ from typing_extensions import Annotated
22
+ from wandelbots_api_client.v2.models.add_virtual_controller_motion_group_request import AddVirtualControllerMotionGroupRequest
21
23
  from wandelbots_api_client.v2.models.manufacturer import Manufacturer
22
24
  from typing import Optional, Set
23
25
  from typing_extensions import Self
@@ -42,9 +44,13 @@ class VirtualController(BaseModel):
42
44
  )
43
45
  initial_joint_position: Optional[StrictStr] = Field(
44
46
  default=None,
45
- description="Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot's degrees of freedom (DOF), e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros. ",
47
+ description="Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians. The array length must match the robot's degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros. ",
46
48
  )
47
- __properties: ClassVar[List[str]] = ["kind", "manufacturer", "type", "json", "initial_joint_position"]
49
+ motion_groups: Optional[Annotated[List[AddVirtualControllerMotionGroupRequest], Field(max_length=10)]] = Field(
50
+ default=None,
51
+ description="Adds a motion group configuration for the virtual robot controller. > **NOTE** > > Set only one of the two options, **motion_group_model**, or **json_data** - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types - **json_data**: JSON configuration of the virtual robot controller, can be obtained from the physical controller's configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration) - **extracted_motion_group_id**: Motion group identifier to extract from the provided JSON configuration, required when using json_data - **motion_group**: Unique identifier for the motion group - **initial_joint_position**: Specifies the initial joint position for the added motion group ",
52
+ )
53
+ __properties: ClassVar[List[str]] = ["kind", "manufacturer", "type", "json", "initial_joint_position", "motion_groups"]
48
54
 
49
55
  @field_validator("kind")
50
56
  def kind_validate_enum(cls, value):
@@ -90,6 +96,13 @@ class VirtualController(BaseModel):
90
96
  exclude=excluded_fields,
91
97
  exclude_none=True,
92
98
  )
99
+ # override the default output from pydantic by calling `to_dict()` of each item in motion_groups (list)
100
+ _items = []
101
+ if self.motion_groups:
102
+ for _item_motion_groups in self.motion_groups:
103
+ if _item_motion_groups:
104
+ _items.append(_item_motion_groups.to_dict())
105
+ _dict["motion_groups"] = _items
93
106
  return _dict
94
107
 
95
108
  @classmethod
@@ -108,6 +121,9 @@ class VirtualController(BaseModel):
108
121
  "type": obj.get("type"),
109
122
  "json": obj.get("json"),
110
123
  "initial_joint_position": obj.get("initial_joint_position"),
124
+ "motion_groups": [AddVirtualControllerMotionGroupRequest.from_dict(_item) for _item in obj["motion_groups"]]
125
+ if obj.get("motion_groups") is not None
126
+ else None,
111
127
  }
112
128
  )
113
129
  return _obj
@@ -13,7 +13,7 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
- __version__ = "26.6.0.dev33"
16
+ __version__ = "26.6.0.dev35"
17
17
 
18
18
  from . import api
19
19
  from . import api_client
@@ -85,7 +85,7 @@ class ApiClient:
85
85
  self.default_headers[header_name] = header_value
86
86
  self.cookie = cookie
87
87
  # Set default User-Agent.
88
- self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev33"
88
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev35"
89
89
  self.client_side_validation = configuration.client_side_validation
90
90
 
91
91
  async def __aenter__(self):
@@ -512,7 +512,7 @@ class Configuration:
512
512
  "OS: {env}\n"
513
513
  "Python Version: {pyversion}\n"
514
514
  "Version of the API: 2.6.0 dev\n"
515
- "SDK Package Version: 26.6.0.dev33".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev35".format(env=sys.platform, pyversion=sys.version)
516
516
  )
517
517
 
518
518
  def get_host_settings(self) -> List[HostSetting]:
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
- # filename: tmpz7h52an2
3
- # timestamp: 2026-06-24T22:53:32+00:00
2
+ # filename: tmprf9puikc
3
+ # timestamp: 2026-06-25T10:21:26+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: models.yaml
3
- # timestamp: 2026-06-24T22:53:32+00:00
3
+ # timestamp: 2026-06-25T10:21:26+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
  from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
@@ -182,6 +182,74 @@ class Manufacturer(Enum):
182
182
  YASKAWA = "yaskawa"
183
183
 
184
184
 
185
+ class MotionGroupModel(RootModel[str]):
186
+ root: str = Field(
187
+ ...,
188
+ examples=["ABB_1010_037_15", "FANUC_ARC_Mate_100iD", "KUKA_KR10_R1100", "UniversalRobots_UR10", "Yaskawa_AR1440"],
189
+ title="MotionGroupModel",
190
+ )
191
+ """
192
+ Identifies a single motion group model.
193
+ See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
194
+
195
+ """
196
+
197
+
198
+ class MotionGroupFromType(BaseModel):
199
+ motion_group: str
200
+ """
201
+ Unique identifier for the motion group to be added.
202
+ """
203
+ motion_group_model: MotionGroupModel
204
+ initial_joint_position: str | None = None
205
+ """
206
+ Initial joint position of the added motion group.
207
+ Provides the joint position as a JSON array of float values in radians. The array length
208
+ must match the robot's degrees of freedom, e.g., `"[0, 0, 0, 0, 0, 0]"` for a 6-DOF robot.
209
+ If the provided array length does not match the robot's DOF, the array will be adjusted; if it is longer, extra values will be truncated;
210
+ if it is shorter, missing values will be filled with zeros.
211
+
212
+ """
213
+
214
+
215
+ class MotionGroupFromJson(BaseModel):
216
+ motion_group: str
217
+ """
218
+ Unique identifier for the motion group to be added.
219
+ """
220
+ json_data: str
221
+ """
222
+ JSON configuration of the virtual robot controller, can be obtained from the physical controller's configuration
223
+ via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
224
+
225
+ """
226
+ extracted_motion_group_id: str
227
+ """
228
+ The identifier of the motion group that needs to be extracted from the provided JSON configuration.
229
+
230
+ """
231
+ initial_joint_position: str | None = None
232
+ """
233
+ Initial joint position of the added motion group.
234
+ Provides the joint position as a JSON array of float values in radians. The array length
235
+ must match the robot's degrees of freedom, e.g., `"[0, 0, 0, 0, 0, 0]"` for a 6-DOF robot.
236
+ If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated;
237
+ if it is shorter, missing values will be filled with zeros.
238
+
239
+ """
240
+
241
+
242
+ class AddVirtualControllerMotionGroupRequest(RootModel[MotionGroupFromType | MotionGroupFromJson]):
243
+ root: MotionGroupFromType | MotionGroupFromJson = Field(..., title="AddVirtualControllerMotionGroupRequest")
244
+ """
245
+ Request body wrapper for `addVirtualControllerMotionGroup`.
246
+ Allow either referencing a predefined motion group model or
247
+ uploading a JSON configuration that the backend converts into a
248
+ motion group description.
249
+
250
+ """
251
+
252
+
185
253
  class VirtualController(BaseModel):
186
254
  """
187
255
  The configuration of a virtual robot controller has to contain the manufacturer string,
@@ -225,12 +293,28 @@ class VirtualController(BaseModel):
225
293
  initial_joint_position: str | None = None
226
294
  """
227
295
  Initial joint position of the first motion group from the virtual robot controller.
228
- Provides the joint position as a JSON array of float values in radians, where the array length
229
- must match the robot's degrees of freedom (DOF), e.g., `"[0, 0, 0, 0, 0, 0]"` for a 6-DOF robot.
296
+ Provides the joint position as a JSON array of float values in radians. The array length
297
+ must match the robot's degrees of freedom, e.g., `"[0, 0, 0, 0, 0, 0]"` for a 6-DOF robot.
230
298
  If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated;
231
299
  if it is shorter, missing values will be filled with zeros.
232
300
 
233
301
  """
302
+ motion_groups: list[AddVirtualControllerMotionGroupRequest] | None = Field(None, max_length=10)
303
+ """
304
+ Adds a motion group configuration for the virtual robot controller.
305
+
306
+ > **NOTE**
307
+ >
308
+ > Set only one of the two options, **motion_group_model**, or **json_data**
309
+
310
+ - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types
311
+ - **json_data**: JSON configuration of the virtual robot controller, can be obtained from the physical controller's configuration
312
+ via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration)
313
+ - **extracted_motion_group_id**: Motion group identifier to extract from the provided JSON configuration, required when using json_data
314
+ - **motion_group**: Unique identifier for the motion group
315
+ - **initial_joint_position**: Specifies the initial joint position for the added motion group
316
+
317
+ """
234
318
 
235
319
 
236
320
  class YaskawaController(BaseModel):
@@ -383,7 +467,7 @@ class App(BaseModel):
383
467
  name: str = Field(..., min_length=1, pattern="^[a-z][a-z0-9-]{0,61}[a-z0-9]$")
384
468
  """
385
469
  The name of the provided application.
386
- The name must be unique within the cell and is used as a identifier for addressing the application in all API calls
470
+ The name must be unique within the cell and is used as an identifier for addressing the application in all API calls
387
471
  , e.g., when updating the application.
388
472
 
389
473
  It also defines where the application is reachable (/$cell/$name).
@@ -1184,19 +1268,6 @@ class MotionGroupModelDescription(BaseModel):
1184
1268
  """
1185
1269
 
1186
1270
 
1187
- class MotionGroupModel(RootModel[str]):
1188
- root: str = Field(
1189
- ...,
1190
- examples=["ABB_1010_037_15", "FANUC_ARC_Mate_100iD", "KUKA_KR10_R1100", "UniversalRobots_UR10", "Yaskawa_AR1440"],
1191
- title="MotionGroupModel",
1192
- )
1193
- """
1194
- Identifies a single motion group model.
1195
- See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
1196
-
1197
- """
1198
-
1199
-
1200
1271
  class MotionGroupConfiguration(BaseModel):
1201
1272
  """
1202
1273
  Response for motion group configuration lookup.
@@ -5882,61 +5953,6 @@ class MotionGroupInfos(RootModel[list[MotionGroupInfo]]):
5882
5953
  return iter(self.root)
5883
5954
 
5884
5955
 
5885
- class MotionGroupFromType(BaseModel):
5886
- motion_group: str
5887
- """
5888
- Unique identifier for the motion group to be added.
5889
- """
5890
- motion_group_model: MotionGroupModel
5891
- initial_joint_position: str | None = None
5892
- """
5893
- Initial joint position of the added motion group.
5894
- Provides the joint position as a JSON array of float values in radians, where the array length
5895
- must match the robot's degrees of freedom (DOF), e.g., `"[0, 0, 0, 0, 0, 0]"` for a 6-DOF robot.
5896
- If the provided array length does not match the robot's DOF, the array will be adjusted; if it is longer, extra values will be truncated;
5897
- if it is shorter, missing values will be filled with zeros.
5898
-
5899
- """
5900
-
5901
-
5902
- class MotionGroupFromJson(BaseModel):
5903
- motion_group: str
5904
- """
5905
- Unique identifier for the motion group to be added.
5906
- """
5907
- json_data: str
5908
- """
5909
- Full JSON configuration of the virtual robot controller.
5910
- This can be obtained from the physical controller's configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
5911
-
5912
- """
5913
- extracted_motion_group_id: str
5914
- """
5915
- The identifier of the motion group that needs to be extracted from the provided JSON configuration.
5916
-
5917
- """
5918
- initial_joint_position: str | None = None
5919
- """
5920
- Initial joint position of the added motion group.
5921
- Provides the joint position as a JSON array of float values in radians, where the array length
5922
- must match the robot's degrees of freedom (DOF), e.g., `"[0, 0, 0, 0, 0, 0]"` for a 6-DOF robot.
5923
- If the provided array length does not match the robot's DOF, the array will be adjusted: if it is longer, extra values will be truncated;
5924
- if it is shorter, missing values will be filled with zeros.
5925
-
5926
- """
5927
-
5928
-
5929
- class AddVirtualControllerMotionGroupRequest(RootModel[MotionGroupFromType | MotionGroupFromJson]):
5930
- root: MotionGroupFromType | MotionGroupFromJson = Field(..., title="AddVirtualControllerMotionGroupRequest")
5931
- """
5932
- Request body wrapper for `addVirtualControllerMotionGroup`.
5933
- Allow callers to either reference a predefined motion group model or
5934
- upload a full JSON configuration that the backend extracts into a
5935
- motion group description.
5936
-
5937
- """
5938
-
5939
-
5940
5956
  class SafetyGeometrySphere(BaseModel):
5941
5957
  """
5942
5958
  Sphere shape defined by a center point and a radius.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wandelbots_api_client
3
- Version: 26.6.0.dev33
3
+ Version: 26.6.0.dev35
4
4
  Summary: Wandelbots Python Client: Interact with robots in an easy and intuitive way.
5
5
  Author: Copyright (c) 2025 Wandelbots GmbH
6
6
  Author-email: Copyright (c) 2025 Wandelbots GmbH <contact@wandelbots.com>
@@ -31,7 +31,7 @@ Description-Content-Type: text/markdown
31
31
  Interact with robots in an easy and intuitive way.
32
32
 
33
33
  - Compatible API version: 1.6.0 dev (can be found at the home screen of your instance -> API)
34
- - Package version: 26.6.0.dev33
34
+ - Package version: 26.6.0.dev35
35
35
 
36
36
  ## Requirements.
37
37
  Python >=3.11, Python < 4.0
@@ -1,4 +1,4 @@
1
- wandelbots_api_client/__init__.py,sha256=KZjjzgEdhUJs5-v8y0LjrC_WXN5htUr1Q7_jqjXkiZQ,1006
1
+ wandelbots_api_client/__init__.py,sha256=aFbTbIrXj7ylXNJWhAP5p-aV-KvcoWfesLm-SNRBEGY,1006
2
2
  wandelbots_api_client/api/__init__.py,sha256=piFvcUqVadKhV50ReEqZToWDDC4g0frxtAfyafQlDkY,2187
3
3
  wandelbots_api_client/api/application_api.py,sha256=-5DwphV1M6vjTIoLAnbCZQ0qMyhItyUOa34mBVwwy6k,69180
4
4
  wandelbots_api_client/api/cell_api.py,sha256=tyIzo-u_9MYFugxzG1KVS8yu7lPLDmjNbjMI25bnavE,64318
@@ -28,10 +28,10 @@ wandelbots_api_client/api/virtual_robot_api.py,sha256=wJTD35wDNe_4yQSDDZclMJs35u
28
28
  wandelbots_api_client/api/virtual_robot_behavior_api.py,sha256=bs-KPZ-3bVg_1_ue_8ZCpHPAPRTdaHpFCWcbxVKNcb0,32218
29
29
  wandelbots_api_client/api/virtual_robot_mode_api.py,sha256=10-Uegk-HtigwJnAMPMDrhtkDOnZdh7ESJ0kD_nOXfo,72987
30
30
  wandelbots_api_client/api/virtual_robot_setup_api.py,sha256=Twl6ZmHhHoa9-kBcVNV1TibwTErvBhIPTAVi_5eSil4,114644
31
- wandelbots_api_client/api_client.py,sha256=r1jgjdH_EkSvQTP7ettvfhnOFUASl1YKbdqbMpgQ5pE,26427
31
+ wandelbots_api_client/api_client.py,sha256=mj8nuIDAahGu15nEYvMelc0UkdqeWvF3GvOXlfEPJeE,26427
32
32
  wandelbots_api_client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
33
33
  wandelbots_api_client/authorization.py,sha256=JERTe2xyuipN5rznFtCkfFVib1LeuUHroTRERYhEzYI,9405
34
- wandelbots_api_client/configuration.py,sha256=qKMVl-jSl9TNSv5KVjJ5ZZmb1hoUdWqnChIBooc6E0Q,18044
34
+ wandelbots_api_client/configuration.py,sha256=CDxaX-WkKXOQX-YbIh94pEFG07P-ebYuOkaL72nhcNY,18044
35
35
  wandelbots_api_client/exceptions.py,sha256=JycLLlMu4Vcf4EGkp_XQN5l53je8c24OYUvT4w86FxM,6393
36
36
  wandelbots_api_client/models/__init__.py,sha256=LtudGp9PcPN_DoWK1SuIU0TfCX1BDosgsIhYvoZ7ZgY,23912
37
37
  wandelbots_api_client/models/abb_controller.py,sha256=TAwe89bqD2wPPsr-Fu_ibV9AquDfI1UzlAns33P0RIs,4054
@@ -327,7 +327,7 @@ wandelbots_api_client/models/virtual_robot_configuration.py,sha256=FiYA1J2cx_fN_
327
327
  wandelbots_api_client/models/yaskawa_controller.py,sha256=7JEYdmDPS-vaCCMB9036FuGszqZP0TivmVL7S1yf_dQ,3140
328
328
  wandelbots_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
329
  wandelbots_api_client/rest.py,sha256=1dKCKmzslgorZRAC3aYw0_SA8lnuB2b-1nyBoORhoCc,7250
330
- wandelbots_api_client/v2/__init__.py,sha256=r-UmdwLo_IyyTsske8qIsj6VgrMDl0RGwJ6dOqdIHPc,1032
330
+ wandelbots_api_client/v2/__init__.py,sha256=bIxsSPnkoAmYS8jDGL9DTSJVzCLldJjJsGEtQmXQ8Ko,1032
331
331
  wandelbots_api_client/v2/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
332
332
  wandelbots_api_client/v2/api/application_api.py,sha256=nVY1ZFCeazTJOou0UKhtAaFURbixCIFAl-AIAFvn4-8,69559
333
333
  wandelbots_api_client/v2/api/bus_inputs_outputs_api.py,sha256=4PyltlWL5AKmc7zcSjrb9eYQbO4lyfi6iPIN1RkwCd0,264684
@@ -354,9 +354,9 @@ wandelbots_api_client/v2/api/version_api.py,sha256=1dAhtFz73CmB6F8fMOgsLGjCWq4w6
354
354
  wandelbots_api_client/v2/api/virtual_controller_api.py,sha256=nQ_rkwRufKGKGHB3QIjm7i771tqKRJGlt8nGxWupMPI,291431
355
355
  wandelbots_api_client/v2/api/virtual_controller_behavior_api.py,sha256=ByeJFFto88jrhAu8LpXAuHosXXIKpks5rSY8ZOWUdG4,41046
356
356
  wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py,sha256=OcQg8mxoQqZLHpByvSY3iqWNLia8rsxlvdpwlc02wb0,42027
357
- wandelbots_api_client/v2/api_client.py,sha256=YF1poGyPf3kfJkyIuQNxm4JCdaZNFWaD2pnbIpHQz0Y,27803
357
+ wandelbots_api_client/v2/api_client.py,sha256=7pR0olrZzI8-Z45s3NJjhwQMJAYGfYuntjMautMx5PA,27803
358
358
  wandelbots_api_client/v2/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
359
- wandelbots_api_client/v2/configuration.py,sha256=-vF7IlnkrqxjWZj7F35ZclaiTl-DsVzeMcSiXMIzgZ0,18047
359
+ wandelbots_api_client/v2/configuration.py,sha256=VYHylOUurJSaRlEJVMyvBpoF8Z5NRNO4a8OmOTYJujA,18047
360
360
  wandelbots_api_client/v2/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
361
361
  wandelbots_api_client/v2/models/__init__.py,sha256=QWkXRd6Se0Fb4H9WKZP6x_Dcv9t7JU0v4EPvHq9SKDY,36327
362
362
  wandelbots_api_client/v2/models/abb_confdata.py,sha256=lXK9rOsDRyCc2urbmVISftopF5LEbANjZ1R-1jXeLNg,3378
@@ -369,9 +369,9 @@ wandelbots_api_client/v2/models/add_trajectory_error.py,sha256=4ZZNgmkVjrCXUyqmo
369
369
  wandelbots_api_client/v2/models/add_trajectory_error_data.py,sha256=yBwEjh44aaCSsfT-8BX0Dn8S8IYeLKURQ2-lkgKt0_Q,12037
370
370
  wandelbots_api_client/v2/models/add_trajectory_request.py,sha256=v1AkFMCRtyps9TZIJATZPgezaDjdNrE5subG013_08c,3340
371
371
  wandelbots_api_client/v2/models/add_trajectory_response.py,sha256=nLQ5NJ8Wa4mYHTmcVn26mMaN7vu-RNl9HF0XUYV71Zc,4107
372
- wandelbots_api_client/v2/models/add_virtual_controller_motion_group_request.py,sha256=WI0MW_7hNW8mjHzlIVfWHj8OrxRr_RCp_6T4KmtRbhM,6003
372
+ wandelbots_api_client/v2/models/add_virtual_controller_motion_group_request.py,sha256=oNPZMJ0nbKEh33m7qS8SR3MZ61_h7h4QQSOTZNC2Hq0,5992
373
373
  wandelbots_api_client/v2/models/api_version.py,sha256=GSg2sjNUXrPsfKYW9qESM_uOj_yS4RjMKp7aAlMzmh8,2434
374
- wandelbots_api_client/v2/models/app.py,sha256=sJKGN_mgD0OrS69Q-_l7ZhejWE1NTm9sViwvJDtRNss,7400
374
+ wandelbots_api_client/v2/models/app.py,sha256=Kf4_xcKsqXDfZ4-GuHCPMJwKKH4X-7ZrSqHu-ApEWYI,7401
375
375
  wandelbots_api_client/v2/models/axis_range.py,sha256=_NFRBYPhK6f9sbQ3OkYiYPpBGXuqTHwGHc0ypElZIBs,2852
376
376
  wandelbots_api_client/v2/models/behavior.py,sha256=aT7Zk899s7cTeA0kbBW94Mm6c1tvz0kPctHC_1WR_NU,1760
377
377
  wandelbots_api_client/v2/models/blending_auto.py,sha256=2z9xoc8xJHOcu7bMejDKFEGZ_XaEJCBhSI0KpT_YWDc,3350
@@ -601,8 +601,8 @@ wandelbots_api_client/v2/models/motion_command_blending.py,sha256=OagbqpBKZIngWk
601
601
  wandelbots_api_client/v2/models/motion_command_path.py,sha256=qw5dxdoD_SIBGjZT_cYn4kCjYb144fwICSdKfnPC7wg,11990
602
602
  wandelbots_api_client/v2/models/motion_group_configuration.py,sha256=jUrLoRAFpJqCrsQla-OjwEqWzmMQejKHPhT8EPOgiJY,3333
603
603
  wandelbots_api_client/v2/models/motion_group_description.py,sha256=c20KRlvuBgTBAzeYs8kZEmy_unaS-h9PP4KtpCV4cKs,12906
604
- wandelbots_api_client/v2/models/motion_group_from_json.py,sha256=G5GXa-_oRq_hlLAg1DYAP7zNw8ro525IjACn1zbwOoM,3865
605
- wandelbots_api_client/v2/models/motion_group_from_type.py,sha256=sQ2kM1tM3XsEdlBWAsYNKlsh5k1Nb8QpQiadkHdaX0Q,3521
604
+ wandelbots_api_client/v2/models/motion_group_from_json.py,sha256=2a6Qbl1Xz1GC6oWBWrqpP91cuHeSS253GpGL6UZdocs,3843
605
+ wandelbots_api_client/v2/models/motion_group_from_type.py,sha256=ebph-vm7XwrPohFqq_pgMHWWPtB7QcnTT1RtB-7GG_4,3509
606
606
  wandelbots_api_client/v2/models/motion_group_info.py,sha256=19eCUMmVa-MP3xlaG-PzTc1AiHaprd-29I6CBtXprRw,2926
607
607
  wandelbots_api_client/v2/models/motion_group_joints.py,sha256=e9UjESBc6j_sXqzIMFb8bVHZ4y-yTU-9wJ9RNC11CTM,3394
608
608
  wandelbots_api_client/v2/models/motion_group_model_description.py,sha256=9C5oRCJnToIdzy9TAVQFXhY1NdY8jnD_0ItCc363ebo,3182
@@ -750,7 +750,7 @@ wandelbots_api_client/v2/models/update_nova_version_request.py,sha256=Ud4caP7pki
750
750
  wandelbots_api_client/v2/models/user.py,sha256=VFWqbqojbO9chOLy9GplTbF4-33XbsjbJ3FOzmkZRAA,2819
751
751
  wandelbots_api_client/v2/models/validation_error.py,sha256=75BIzg8BvvAyiV4hSXxg-7we9WxWEzVKnsQe6D4n2YE,3119
752
752
  wandelbots_api_client/v2/models/validation_error2.py,sha256=DsUSXwFuMgD_ALT4tENHQg0yWnz6Al0n7ovAO_Dc0VY,2523
753
- wandelbots_api_client/v2/models/virtual_controller.py,sha256=TbcM22fvxXhg5PYXrlyR18J4Lwul_93ijQKDYTWQ7IY,4479
753
+ wandelbots_api_client/v2/models/virtual_controller.py,sha256=B4mPkKx4-lVgnT7HFlK0-nUBh3VqaHHAw1tXiwL45is,6211
754
754
  wandelbots_api_client/v2/models/virtual_robot_configuration.py,sha256=YT0CMFyiyg7OrIVpIbm9x6oHFlsy1EiVKSNWss91YOY,2817
755
755
  wandelbots_api_client/v2/models/wait_for_io_event_request.py,sha256=-etzsegz0Y-yZt58hmmXhcd8BUAbEoVEoVbGlMIzm_g,3065
756
756
  wandelbots_api_client/v2/models/yaskawa_controller.py,sha256=vNtXL8T3-KADzU1__0YWJ7_9QikLML4VFsbv2nz3owU,2843
@@ -760,7 +760,7 @@ wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py,sha2
760
760
  wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py,sha256=BJFV1ZqYKcQauiUfZ10UhbRxVhOL0DjQyHzHhlQ-hUA,5652
761
761
  wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
762
762
  wandelbots_api_client/v2/rest.py,sha256=pzalGbo_80nNBxbupQKYjZjOpOgPbYrEJtCfm236vL4,7253
763
- wandelbots_api_client/v2_pydantic/__init__.py,sha256=2FHjc59TC3gSuqSArnJg1I2VQdzYWJGOuEryOY3vfJg,1041
763
+ wandelbots_api_client/v2_pydantic/__init__.py,sha256=FDFab0B-RsHKD1HNWSZc2Y3vM6wOR-iRV7vVZdMa0uc,1041
764
764
  wandelbots_api_client/v2_pydantic/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
765
765
  wandelbots_api_client/v2_pydantic/api/application_api.py,sha256=vU-xA4SdVSJuXu7EAO7tTK9yJjSkMR1Y5_76RZdBp-E,69591
766
766
  wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py,sha256=WXa9c8h4BnJcrlMmMAYF7l1XsyCWgo8jAdoTGSmL-zE,264638
@@ -787,14 +787,14 @@ wandelbots_api_client/v2_pydantic/api/version_api.py,sha256=TTJwo3cWTBgxpeDO2S-S
787
787
  wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py,sha256=rdrD4YOLnKKg_ILuzc37Ku_VMMJh2MUsR2a8frZraXc,291365
788
788
  wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py,sha256=3mNzqQUb8JM_E7iZ4MJGg7rnEGdL9VFFqjLlrMa6bss,41027
789
789
  wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py,sha256=LItWYQPUCu8mh2XAA9gOudhYTNMzIjtzY1ijXoV4w2E,42039
790
- wandelbots_api_client/v2_pydantic/api_client.py,sha256=oTogKIjMkv61rkzLZK6SLwK2mEJvdY5emt6HDPTgOT8,27857
790
+ wandelbots_api_client/v2_pydantic/api_client.py,sha256=XKJh4aMHCg2EGw5tzGbf6aY6dzWOg8QicVTcZNjTW_0,27857
791
791
  wandelbots_api_client/v2_pydantic/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
792
- wandelbots_api_client/v2_pydantic/configuration.py,sha256=03drcwQ8C1-D619KyHe_IVjnU_3arveJedppLqzJK0U,18056
792
+ wandelbots_api_client/v2_pydantic/configuration.py,sha256=m88OXuALeNc94frKKoqxrD1EO8V6OWa1uiXurKlPgtI,18056
793
793
  wandelbots_api_client/v2_pydantic/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
794
- wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=9f1XtO144GAlMz08Bp2DZoU9roXI4fp3zJ9W2DmoH8Q,22287
795
- wandelbots_api_client/v2_pydantic/models/models.py,sha256=T7O_235v54v4L6XGGCEHVjyvCNKsWJFve034hk6f4G0,205815
794
+ wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=JDD6-pEnPSgjq2kZiBo-YupmukEEabH2D10OW63pZVk,22287
795
+ wandelbots_api_client/v2_pydantic/models/models.py,sha256=yETJYy3_az4j4aZqDHh_EP730IgSyk6zIh26RljW6bc,206729
796
796
  wandelbots_api_client/v2_pydantic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
797
797
  wandelbots_api_client/v2_pydantic/rest.py,sha256=EDM0lK-GKehCIR2PgMyO_5a5MGlOHws5c7Ue3j0FeSc,7262
798
- wandelbots_api_client-26.6.0.dev33.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
799
- wandelbots_api_client-26.6.0.dev33.dist-info/METADATA,sha256=ekz8fEXuS00tn5PGyO3EoMGu27Yu3IXCd7C7pD6-cYY,7693
800
- wandelbots_api_client-26.6.0.dev33.dist-info/RECORD,,
798
+ wandelbots_api_client-26.6.0.dev35.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
799
+ wandelbots_api_client-26.6.0.dev35.dist-info/METADATA,sha256=jd1JhcclNhN7Rp-h363bCZZ9ewxAF_3TN6J3ahsWZz4,7693
800
+ wandelbots_api_client-26.6.0.dev35.dist-info/RECORD,,