wandelbots_api_client 26.6.0.dev39__py3-none-any.whl → 26.6.0.dev40__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.
- wandelbots_api_client/__init__.py +1 -1
- wandelbots_api_client/api_client.py +1 -1
- wandelbots_api_client/configuration.py +1 -1
- wandelbots_api_client/v2/__init__.py +1 -1
- wandelbots_api_client/v2/api/motion_group_models_api.py +9 -9
- wandelbots_api_client/v2/api_client.py +1 -1
- wandelbots_api_client/v2/configuration.py +1 -1
- wandelbots_api_client/v2/models/__init__.py +1 -0
- wandelbots_api_client/v2/models/cartesian_velocity.py +89 -0
- wandelbots_api_client/v2/models/motion_group_state.py +21 -2
- wandelbots_api_client/v2_pydantic/__init__.py +1 -1
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +9 -9
- wandelbots_api_client/v2_pydantic/api_client.py +1 -1
- wandelbots_api_client/v2_pydantic/configuration.py +1 -1
- wandelbots_api_client/v2_pydantic/models/__init__.py +4 -2
- wandelbots_api_client/v2_pydantic/models/models.py +26 -3
- {wandelbots_api_client-26.6.0.dev39.dist-info → wandelbots_api_client-26.6.0.dev40.dist-info}/METADATA +2 -2
- {wandelbots_api_client-26.6.0.dev39.dist-info → wandelbots_api_client-26.6.0.dev40.dist-info}/RECORD +19 -18
- {wandelbots_api_client-26.6.0.dev39.dist-info → wandelbots_api_client-26.6.0.dev40.dist-info}/WHEEL +0 -0
|
@@ -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.
|
|
86
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev40"
|
|
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.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev40".format(env=sys.platform, pyversion=sys.version)
|
|
516
516
|
)
|
|
517
517
|
|
|
518
518
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -108,7 +108,7 @@ class MotionGroupModelsApi:
|
|
|
108
108
|
)
|
|
109
109
|
|
|
110
110
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
111
|
-
"
|
|
111
|
+
"200": "MotionGroupModelDescription",
|
|
112
112
|
"404": None,
|
|
113
113
|
"409": None,
|
|
114
114
|
"500": None,
|
|
@@ -179,7 +179,7 @@ class MotionGroupModelsApi:
|
|
|
179
179
|
)
|
|
180
180
|
|
|
181
181
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
182
|
-
"
|
|
182
|
+
"200": "MotionGroupModelDescription",
|
|
183
183
|
"404": None,
|
|
184
184
|
"409": None,
|
|
185
185
|
"500": None,
|
|
@@ -250,7 +250,7 @@ class MotionGroupModelsApi:
|
|
|
250
250
|
)
|
|
251
251
|
|
|
252
252
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
253
|
-
"
|
|
253
|
+
"200": "MotionGroupModelDescription",
|
|
254
254
|
"404": None,
|
|
255
255
|
"409": None,
|
|
256
256
|
"500": None,
|
|
@@ -306,7 +306,7 @@ class MotionGroupModelsApi:
|
|
|
306
306
|
|
|
307
307
|
return self.api_client.param_serialize(
|
|
308
308
|
method="POST",
|
|
309
|
-
resource_path="/experimental/motion-group-models/{motion-group-model}",
|
|
309
|
+
resource_path="/experimental/motion-group-models/{motion-group-model}/archive",
|
|
310
310
|
path_params=_path_params,
|
|
311
311
|
query_params=_query_params,
|
|
312
312
|
header_params=_header_params,
|
|
@@ -338,7 +338,7 @@ class MotionGroupModelsApi:
|
|
|
338
338
|
) -> None:
|
|
339
339
|
"""Delete Motion Group Model
|
|
340
340
|
|
|
341
|
-
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
341
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
342
342
|
|
|
343
343
|
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration). (required)
|
|
344
344
|
:type motion_group_model: str
|
|
@@ -405,7 +405,7 @@ class MotionGroupModelsApi:
|
|
|
405
405
|
) -> ApiResponse[None]:
|
|
406
406
|
"""Delete Motion Group Model
|
|
407
407
|
|
|
408
|
-
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
408
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
409
409
|
|
|
410
410
|
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration). (required)
|
|
411
411
|
:type motion_group_model: str
|
|
@@ -472,7 +472,7 @@ class MotionGroupModelsApi:
|
|
|
472
472
|
) -> RESTResponseType:
|
|
473
473
|
"""Delete Motion Group Model
|
|
474
474
|
|
|
475
|
-
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
475
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
476
476
|
|
|
477
477
|
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration). (required)
|
|
478
478
|
:type motion_group_model: str
|
|
@@ -549,7 +549,7 @@ class MotionGroupModelsApi:
|
|
|
549
549
|
|
|
550
550
|
return self.api_client.param_serialize(
|
|
551
551
|
method="DELETE",
|
|
552
|
-
resource_path="/experimental/motion-group-models/{motion-group-model}",
|
|
552
|
+
resource_path="/experimental/motion-group-models/{motion-group-model}/archive",
|
|
553
553
|
path_params=_path_params,
|
|
554
554
|
query_params=_query_params,
|
|
555
555
|
header_params=_header_params,
|
|
@@ -792,7 +792,7 @@ class MotionGroupModelsApi:
|
|
|
792
792
|
|
|
793
793
|
return self.api_client.param_serialize(
|
|
794
794
|
method="GET",
|
|
795
|
-
resource_path="/experimental/motion-group-models/{motion-group-model}",
|
|
795
|
+
resource_path="/experimental/motion-group-models/{motion-group-model}/archive",
|
|
796
796
|
path_params=_path_params,
|
|
797
797
|
query_params=_query_params,
|
|
798
798
|
header_params=_header_params,
|
|
@@ -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.
|
|
88
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev40"
|
|
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.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev40".format(env=sys.platform, pyversion=sys.version)
|
|
516
516
|
)
|
|
517
517
|
|
|
518
518
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -52,6 +52,7 @@ from wandelbots_api_client.v2.models.bus_ios_state_enum import BusIOsStateEnum
|
|
|
52
52
|
from wandelbots_api_client.v2.models.capability_entry import CapabilityEntry
|
|
53
53
|
from wandelbots_api_client.v2.models.capsule import Capsule
|
|
54
54
|
from wandelbots_api_client.v2.models.cartesian_limits import CartesianLimits
|
|
55
|
+
from wandelbots_api_client.v2.models.cartesian_velocity import CartesianVelocity
|
|
55
56
|
from wandelbots_api_client.v2.models.cell import Cell
|
|
56
57
|
from wandelbots_api_client.v2.models.cloud_config_status import CloudConfigStatus
|
|
57
58
|
from wandelbots_api_client.v2.models.cloud_config_status_configured import CloudConfigStatusConfigured
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Wandelbots NOVA API
|
|
5
|
+
|
|
6
|
+
Interact with robots in an easy and intuitive way.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.6.0 dev
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
import pprint
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
import json
|
|
18
|
+
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Union
|
|
21
|
+
from typing_extensions import Annotated
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
from pydantic_core import to_jsonable_python
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class CartesianVelocity(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
Defines a cartesian velocity in 3D space. The unit of the translation velocity is mm/s and the unit of the rotation velocity is rad/s.
|
|
30
|
+
""" # noqa: E501
|
|
31
|
+
|
|
32
|
+
translation: Annotated[List[Union[StrictFloat, StrictInt]], Field(min_length=3, max_length=3)] = Field(
|
|
33
|
+
description="A three-dimensional vector [x, y, z] with double precision. "
|
|
34
|
+
)
|
|
35
|
+
rotation: Annotated[List[Union[StrictFloat, StrictInt]], Field(min_length=3, max_length=3)] = Field(
|
|
36
|
+
description="A three-dimensional vector [x, y, z] with double precision. "
|
|
37
|
+
)
|
|
38
|
+
__properties: ClassVar[List[str]] = ["translation", "rotation"]
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
validate_by_name=True,
|
|
42
|
+
validate_by_alias=True,
|
|
43
|
+
validate_assignment=True,
|
|
44
|
+
protected_namespaces=(),
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
return json.dumps(to_jsonable_python(self.to_dict()))
|
|
54
|
+
|
|
55
|
+
@classmethod
|
|
56
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
57
|
+
"""Create an instance of CartesianVelocity from a JSON string"""
|
|
58
|
+
return cls.from_dict(json.loads(json_str))
|
|
59
|
+
|
|
60
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
61
|
+
"""Return the dictionary representation of the model using alias.
|
|
62
|
+
|
|
63
|
+
This has the following differences from calling pydantic's
|
|
64
|
+
`self.model_dump(by_alias=True)`:
|
|
65
|
+
|
|
66
|
+
* `None` is only added to the output dict for nullable fields that
|
|
67
|
+
were set at model initialization. Other fields with value `None`
|
|
68
|
+
are ignored.
|
|
69
|
+
"""
|
|
70
|
+
excluded_fields: Set[str] = set([])
|
|
71
|
+
|
|
72
|
+
_dict = self.model_dump(
|
|
73
|
+
by_alias=True,
|
|
74
|
+
exclude=excluded_fields,
|
|
75
|
+
exclude_none=True,
|
|
76
|
+
)
|
|
77
|
+
return _dict
|
|
78
|
+
|
|
79
|
+
@classmethod
|
|
80
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
81
|
+
"""Create an instance of CartesianVelocity from a dict"""
|
|
82
|
+
if obj is None:
|
|
83
|
+
return None
|
|
84
|
+
|
|
85
|
+
if not isinstance(obj, dict):
|
|
86
|
+
return cls.model_validate(obj)
|
|
87
|
+
|
|
88
|
+
_obj = cls.model_validate({"translation": obj.get("translation"), "rotation": obj.get("rotation")})
|
|
89
|
+
return _obj
|
|
@@ -20,6 +20,7 @@ from datetime import datetime
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
+
from wandelbots_api_client.v2.models.cartesian_velocity import CartesianVelocity
|
|
23
24
|
from wandelbots_api_client.v2.models.execute import Execute
|
|
24
25
|
from wandelbots_api_client.v2.models.motion_group_state_joint_limit_reached import MotionGroupStateJointLimitReached
|
|
25
26
|
from wandelbots_api_client.v2.models.pose import Pose
|
|
@@ -55,7 +56,11 @@ class MotionGroupState(BaseModel):
|
|
|
55
56
|
)
|
|
56
57
|
flange_pose: Optional[Pose] = Field(
|
|
57
58
|
default=None,
|
|
58
|
-
description="Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
59
|
+
description="Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. For robot arms, a flange pose is always returned. For positioners, the flange might not be available, depending on the model. ",
|
|
60
|
+
)
|
|
61
|
+
flange_velocity: Optional[CartesianVelocity] = Field(
|
|
62
|
+
default=None,
|
|
63
|
+
description="Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request. ",
|
|
59
64
|
)
|
|
60
65
|
tcp: Optional[StrictStr] = Field(
|
|
61
66
|
default=None,
|
|
@@ -63,7 +68,11 @@ class MotionGroupState(BaseModel):
|
|
|
63
68
|
)
|
|
64
69
|
tcp_pose: Optional[Pose] = Field(
|
|
65
70
|
default=None,
|
|
66
|
-
description="Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
71
|
+
description="Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. Might not be returned for positioners as some do not support TCPs, depending on the model. ",
|
|
72
|
+
)
|
|
73
|
+
tcp_velocity: Optional[CartesianVelocity] = Field(
|
|
74
|
+
default=None,
|
|
75
|
+
description="Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request. ",
|
|
67
76
|
)
|
|
68
77
|
coordinate_system: Optional[StrictStr] = Field(
|
|
69
78
|
default=None,
|
|
@@ -93,8 +102,10 @@ class MotionGroupState(BaseModel):
|
|
|
93
102
|
"joint_torque",
|
|
94
103
|
"joint_current",
|
|
95
104
|
"flange_pose",
|
|
105
|
+
"flange_velocity",
|
|
96
106
|
"tcp",
|
|
97
107
|
"tcp_pose",
|
|
108
|
+
"tcp_velocity",
|
|
98
109
|
"coordinate_system",
|
|
99
110
|
"payload",
|
|
100
111
|
"standstill",
|
|
@@ -145,9 +156,15 @@ class MotionGroupState(BaseModel):
|
|
|
145
156
|
# override the default output from pydantic by calling `to_dict()` of flange_pose
|
|
146
157
|
if self.flange_pose:
|
|
147
158
|
_dict["flange_pose"] = self.flange_pose.to_dict()
|
|
159
|
+
# override the default output from pydantic by calling `to_dict()` of flange_velocity
|
|
160
|
+
if self.flange_velocity:
|
|
161
|
+
_dict["flange_velocity"] = self.flange_velocity.to_dict()
|
|
148
162
|
# override the default output from pydantic by calling `to_dict()` of tcp_pose
|
|
149
163
|
if self.tcp_pose:
|
|
150
164
|
_dict["tcp_pose"] = self.tcp_pose.to_dict()
|
|
165
|
+
# override the default output from pydantic by calling `to_dict()` of tcp_velocity
|
|
166
|
+
if self.tcp_velocity:
|
|
167
|
+
_dict["tcp_velocity"] = self.tcp_velocity.to_dict()
|
|
151
168
|
# override the default output from pydantic by calling `to_dict()` of execute
|
|
152
169
|
if self.execute:
|
|
153
170
|
_dict["execute"] = self.execute.to_dict()
|
|
@@ -175,8 +192,10 @@ class MotionGroupState(BaseModel):
|
|
|
175
192
|
"joint_torque": obj.get("joint_torque"),
|
|
176
193
|
"joint_current": obj.get("joint_current"),
|
|
177
194
|
"flange_pose": Pose.from_dict(obj["flange_pose"]) if obj.get("flange_pose") is not None else None,
|
|
195
|
+
"flange_velocity": CartesianVelocity.from_dict(obj["flange_velocity"]) if obj.get("flange_velocity") is not None else None,
|
|
178
196
|
"tcp": obj.get("tcp"),
|
|
179
197
|
"tcp_pose": Pose.from_dict(obj["tcp_pose"]) if obj.get("tcp_pose") is not None else None,
|
|
198
|
+
"tcp_velocity": CartesianVelocity.from_dict(obj["tcp_velocity"]) if obj.get("tcp_velocity") is not None else None,
|
|
180
199
|
"coordinate_system": obj.get("coordinate_system"),
|
|
181
200
|
"payload": obj.get("payload"),
|
|
182
201
|
"standstill": obj.get("standstill"),
|
|
@@ -108,7 +108,7 @@ class MotionGroupModelsApi:
|
|
|
108
108
|
)
|
|
109
109
|
|
|
110
110
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
111
|
-
"
|
|
111
|
+
"200": "MotionGroupModelDescription",
|
|
112
112
|
"404": None,
|
|
113
113
|
"409": None,
|
|
114
114
|
"500": None,
|
|
@@ -179,7 +179,7 @@ class MotionGroupModelsApi:
|
|
|
179
179
|
)
|
|
180
180
|
|
|
181
181
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
182
|
-
"
|
|
182
|
+
"200": "MotionGroupModelDescription",
|
|
183
183
|
"404": None,
|
|
184
184
|
"409": None,
|
|
185
185
|
"500": None,
|
|
@@ -250,7 +250,7 @@ class MotionGroupModelsApi:
|
|
|
250
250
|
)
|
|
251
251
|
|
|
252
252
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
253
|
-
"
|
|
253
|
+
"200": "MotionGroupModelDescription",
|
|
254
254
|
"404": None,
|
|
255
255
|
"409": None,
|
|
256
256
|
"500": None,
|
|
@@ -306,7 +306,7 @@ class MotionGroupModelsApi:
|
|
|
306
306
|
|
|
307
307
|
return self.api_client.param_serialize(
|
|
308
308
|
method="POST",
|
|
309
|
-
resource_path="/experimental/motion-group-models/{motion-group-model}",
|
|
309
|
+
resource_path="/experimental/motion-group-models/{motion-group-model}/archive",
|
|
310
310
|
path_params=_path_params,
|
|
311
311
|
query_params=_query_params,
|
|
312
312
|
header_params=_header_params,
|
|
@@ -338,7 +338,7 @@ class MotionGroupModelsApi:
|
|
|
338
338
|
) -> None:
|
|
339
339
|
"""Delete Motion Group Model
|
|
340
340
|
|
|
341
|
-
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
341
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
342
342
|
|
|
343
343
|
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration). (required)
|
|
344
344
|
:type motion_group_model: str
|
|
@@ -405,7 +405,7 @@ class MotionGroupModelsApi:
|
|
|
405
405
|
) -> ApiResponse[None]:
|
|
406
406
|
"""Delete Motion Group Model
|
|
407
407
|
|
|
408
|
-
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
408
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
409
409
|
|
|
410
410
|
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration). (required)
|
|
411
411
|
:type motion_group_model: str
|
|
@@ -472,7 +472,7 @@ class MotionGroupModelsApi:
|
|
|
472
472
|
) -> RESTResponseType:
|
|
473
473
|
"""Delete Motion Group Model
|
|
474
474
|
|
|
475
|
-
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
475
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
476
476
|
|
|
477
477
|
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration). (required)
|
|
478
478
|
:type motion_group_model: str
|
|
@@ -549,7 +549,7 @@ class MotionGroupModelsApi:
|
|
|
549
549
|
|
|
550
550
|
return self.api_client.param_serialize(
|
|
551
551
|
method="DELETE",
|
|
552
|
-
resource_path="/experimental/motion-group-models/{motion-group-model}",
|
|
552
|
+
resource_path="/experimental/motion-group-models/{motion-group-model}/archive",
|
|
553
553
|
path_params=_path_params,
|
|
554
554
|
query_params=_query_params,
|
|
555
555
|
header_params=_header_params,
|
|
@@ -792,7 +792,7 @@ class MotionGroupModelsApi:
|
|
|
792
792
|
|
|
793
793
|
return self.api_client.param_serialize(
|
|
794
794
|
method="GET",
|
|
795
|
-
resource_path="/experimental/motion-group-models/{motion-group-model}",
|
|
795
|
+
resource_path="/experimental/motion-group-models/{motion-group-model}/archive",
|
|
796
796
|
path_params=_path_params,
|
|
797
797
|
query_params=_query_params,
|
|
798
798
|
header_params=_header_params,
|
|
@@ -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.
|
|
88
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev40"
|
|
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.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev40".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:
|
|
3
|
-
# timestamp: 2026-06-
|
|
2
|
+
# filename: tmp753abanu
|
|
3
|
+
# timestamp: 2026-06-29T14:45:11+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -48,6 +48,7 @@ from .models import (
|
|
|
48
48
|
Capacity,
|
|
49
49
|
Capsule,
|
|
50
50
|
CartesianLimits,
|
|
51
|
+
CartesianVelocity,
|
|
51
52
|
Cell,
|
|
52
53
|
CellDescription,
|
|
53
54
|
CellName,
|
|
@@ -482,6 +483,7 @@ __all__ = [
|
|
|
482
483
|
"Capacity",
|
|
483
484
|
"Capsule",
|
|
484
485
|
"CartesianLimits",
|
|
486
|
+
"CartesianVelocity",
|
|
485
487
|
"Cell",
|
|
486
488
|
"CellDescription",
|
|
487
489
|
"CellName",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: models.yaml
|
|
3
|
-
# timestamp: 2026-06-
|
|
3
|
+
# timestamp: 2026-06-29T14:45:11+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
|
|
@@ -2032,6 +2032,17 @@ class MotionGroupStateJointLimitReached(BaseModel):
|
|
|
2032
2032
|
"""
|
|
2033
2033
|
|
|
2034
2034
|
|
|
2035
|
+
class CartesianVelocity(BaseModel):
|
|
2036
|
+
"""
|
|
2037
|
+
Defines a cartesian velocity in 3D space.
|
|
2038
|
+
The unit of the translation velocity is mm/s and the unit of the rotation velocity is rad/s.
|
|
2039
|
+
|
|
2040
|
+
"""
|
|
2041
|
+
|
|
2042
|
+
translation: Vector3d
|
|
2043
|
+
rotation: Vector3d
|
|
2044
|
+
|
|
2045
|
+
|
|
2035
2046
|
class JoggingRunning(BaseModel):
|
|
2036
2047
|
"""
|
|
2037
2048
|
Jogging is active.
|
|
@@ -2290,9 +2301,15 @@ class MotionGroupState(BaseModel):
|
|
|
2290
2301
|
Pose of the flange.
|
|
2291
2302
|
Positions are in [mm].
|
|
2292
2303
|
Orientations are in [rad].
|
|
2293
|
-
The pose is relative to the
|
|
2304
|
+
The pose is relative to the response coordinate system specified in the request.
|
|
2294
2305
|
For robot arms, a flange pose is always returned. For positioners, the flange might not be available, depending on the model.
|
|
2295
2306
|
|
|
2307
|
+
"""
|
|
2308
|
+
flange_velocity: CartesianVelocity | None = None
|
|
2309
|
+
"""
|
|
2310
|
+
Cartesian velocity of the flange.
|
|
2311
|
+
The velocity is relative to the response coordinate system specified in the request.
|
|
2312
|
+
|
|
2296
2313
|
"""
|
|
2297
2314
|
tcp: str | None = None
|
|
2298
2315
|
"""
|
|
@@ -2305,9 +2322,15 @@ class MotionGroupState(BaseModel):
|
|
|
2305
2322
|
Pose of the TCP selected on the robot control panel.
|
|
2306
2323
|
Positions are in [mm].
|
|
2307
2324
|
Orientations are in [rad].
|
|
2308
|
-
The pose is relative to the
|
|
2325
|
+
The pose is relative to the response coordinate system specified in the request.
|
|
2309
2326
|
Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
2310
2327
|
|
|
2328
|
+
"""
|
|
2329
|
+
tcp_velocity: CartesianVelocity | None = None
|
|
2330
|
+
"""
|
|
2331
|
+
Cartesian velocity of the TCP selected on the robot control panel.
|
|
2332
|
+
The velocity is relative to the response coordinate system specified in the request.
|
|
2333
|
+
|
|
2311
2334
|
"""
|
|
2312
2335
|
coordinate_system: str | None = None
|
|
2313
2336
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wandelbots_api_client
|
|
3
|
-
Version: 26.6.0.
|
|
3
|
+
Version: 26.6.0.dev40
|
|
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.
|
|
34
|
+
- Package version: 26.6.0.dev40
|
|
35
35
|
|
|
36
36
|
## Requirements.
|
|
37
37
|
Python >=3.11, Python < 4.0
|
{wandelbots_api_client-26.6.0.dev39.dist-info → wandelbots_api_client-26.6.0.dev40.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
wandelbots_api_client/__init__.py,sha256=
|
|
1
|
+
wandelbots_api_client/__init__.py,sha256=kiXO-lBUU1XfZjh8ymsFNneK2XSePlnd26Lej7L0Ua8,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=
|
|
31
|
+
wandelbots_api_client/api_client.py,sha256=NXRvZ-kMQM5E3Eq2pPE0XKh5QxA4vpBTL8mXsDQhPs8,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=
|
|
34
|
+
wandelbots_api_client/configuration.py,sha256=iyhSCUu5ZkCwVZ3SYMklvDiILgLIB_aqn3TnH-P_Xb8,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=
|
|
330
|
+
wandelbots_api_client/v2/__init__.py,sha256=Azu3OybIbLnzC7wbJHe8mEtaRbpjUtvF613jg2_FC3w,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=3V_7OHnjzC0LnS-jAnEhb_Yv90TGnAP-egURffcUIcs,267414
|
|
@@ -338,7 +338,7 @@ wandelbots_api_client/v2/api/jogging_api.py,sha256=gYOaxnuuuJZFBo5UAN6uCNEj-hbYn
|
|
|
338
338
|
wandelbots_api_client/v2/api/kinematics_api.py,sha256=F_utXvXRXBghgTxvFmrT3b9j3sgNC4nmK_4Rlyfmf5E,64927
|
|
339
339
|
wandelbots_api_client/v2/api/license_api.py,sha256=7o_JyRCOvC0_Wdh6_rnm9C2bts8-vTUJR5iI8Yq05Gs,39538
|
|
340
340
|
wandelbots_api_client/v2/api/motion_group_api.py,sha256=CByNFNC4GrQTyXlQbltQ2vC9PZpyBn4sWtRYykRdNJQ,32988
|
|
341
|
-
wandelbots_api_client/v2/api/motion_group_models_api.py,sha256=
|
|
341
|
+
wandelbots_api_client/v2/api/motion_group_models_api.py,sha256=C6DZken6vr23QD9kL9-dAe4Vi4xFX3A9jme50uFDZ6I,156302
|
|
342
342
|
wandelbots_api_client/v2/api/nova_cloud_api.py,sha256=AapfBM9R6cr5RtCh3S80EEoqkpmaUHpHfzrgLAEbd1w,39135
|
|
343
343
|
wandelbots_api_client/v2/api/program_api.py,sha256=8wzRU05gL_6Gjezm9yJ3e4wHq7ADeKL0yCCaNQGL4A4,44678
|
|
344
344
|
wandelbots_api_client/v2/api/robot_configurations_api.py,sha256=6klutuPMM7Hi4fmp1v5wnoNrYGuQ-d2kHpq7hwVS7zw,22115
|
|
@@ -354,11 +354,11 @@ 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=
|
|
357
|
+
wandelbots_api_client/v2/api_client.py,sha256=2hKrBAQb2_SxOusTQARC_BKvVEGqlPJR1upFIQu5WI4,27803
|
|
358
358
|
wandelbots_api_client/v2/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
|
359
|
-
wandelbots_api_client/v2/configuration.py,sha256=
|
|
359
|
+
wandelbots_api_client/v2/configuration.py,sha256=M3RRrCSGuZcqOY3qhAVO_pu2YnBz_chJP_wLzMBLSfs,18047
|
|
360
360
|
wandelbots_api_client/v2/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
|
|
361
|
-
wandelbots_api_client/v2/models/__init__.py,sha256=
|
|
361
|
+
wandelbots_api_client/v2/models/__init__.py,sha256=4wLRAzaYdkgSfHjD-vvFPsngM6Wp4Cf9GDRn7gwp0IA,36492
|
|
362
362
|
wandelbots_api_client/v2/models/abb_confdata.py,sha256=lXK9rOsDRyCc2urbmVISftopF5LEbANjZ1R-1jXeLNg,3378
|
|
363
363
|
wandelbots_api_client/v2/models/abb_configured_pose.py,sha256=Lg-eaUD80RzyQRshY3vm5BIq3_qFPZdz3kQk0ue9w_w,3144
|
|
364
364
|
wandelbots_api_client/v2/models/abb_controller.py,sha256=P7QY_bKvz5fbW_nub4o2yROATVzb8xNr4cBetw5reSk,3741
|
|
@@ -398,6 +398,7 @@ wandelbots_api_client/v2/models/bus_ios_state_enum.py,sha256=qoB4vwa_spVIz3tCp9M
|
|
|
398
398
|
wandelbots_api_client/v2/models/capability_entry.py,sha256=Ywsx3KkQbo3o7GyQKvf7fh9iy6PvZvl0cAhs5NVCDWY,2943
|
|
399
399
|
wandelbots_api_client/v2/models/capsule.py,sha256=dXpffO6bfkaB42noxwZ0ZLVDzA7XA0UvyNGt4bTFlfY,3156
|
|
400
400
|
wandelbots_api_client/v2/models/cartesian_limits.py,sha256=CjyzT__-mQe8ij8f9FCoD_9VDQMAOCBG6dnDdXACLj8,3620
|
|
401
|
+
wandelbots_api_client/v2/models/cartesian_velocity.py,sha256=N5vDStSHZq9UapPi1SPdfMTlV-mO32WO8XmA34BBxgo,3017
|
|
401
402
|
wandelbots_api_client/v2/models/cell.py,sha256=SLSGOxSjNHjfcsovR8IXJX35eZGdfbHBDM7TkG0ANkU,5615
|
|
402
403
|
wandelbots_api_client/v2/models/cloud_config_status.py,sha256=3ekBU8MA8h7vLC8xMhTrQFhhmqjfGI_VkH1GTGcoOik,6716
|
|
403
404
|
wandelbots_api_client/v2/models/cloud_config_status_configured.py,sha256=RXc936R38hr-HhM2zjiGfV1zscc4rnI0_qkVsVtupwI,3113
|
|
@@ -607,7 +608,7 @@ wandelbots_api_client/v2/models/motion_group_info.py,sha256=19eCUMmVa-MP3xlaG-Pz
|
|
|
607
608
|
wandelbots_api_client/v2/models/motion_group_joints.py,sha256=e9UjESBc6j_sXqzIMFb8bVHZ4y-yTU-9wJ9RNC11CTM,3394
|
|
608
609
|
wandelbots_api_client/v2/models/motion_group_model_description.py,sha256=9C5oRCJnToIdzy9TAVQFXhY1NdY8jnD_0ItCc363ebo,3182
|
|
609
610
|
wandelbots_api_client/v2/models/motion_group_setup.py,sha256=pjdTRs0SCLxqDFQoWYTa05X-7yCDAaZSVS1XmK-szdc,6241
|
|
610
|
-
wandelbots_api_client/v2/models/motion_group_state.py,sha256=
|
|
611
|
+
wandelbots_api_client/v2/models/motion_group_state.py,sha256=b3Whs5Lr4e3T_joPCmXpriwV7AkBuA6CHrW8VmCjTS0,10545
|
|
611
612
|
wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py,sha256=nE_Faz9TkuV31rP6wKqCNeMvjbAFO79upLTuxscxdZc,2742
|
|
612
613
|
wandelbots_api_client/v2/models/movement_error_response.py,sha256=K6xeBtQI6cd1AQhoHPeLbkYS-WzYIuEc_Qui3Fx_rF4,2897
|
|
613
614
|
wandelbots_api_client/v2/models/multi_collision_setup.py,sha256=unFWN8kFP031F3wwPoKCE2-1vczXggpaHep5d9qMbZU,4667
|
|
@@ -761,7 +762,7 @@ wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py,sha2
|
|
|
761
762
|
wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py,sha256=BJFV1ZqYKcQauiUfZ10UhbRxVhOL0DjQyHzHhlQ-hUA,5652
|
|
762
763
|
wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
763
764
|
wandelbots_api_client/v2/rest.py,sha256=pzalGbo_80nNBxbupQKYjZjOpOgPbYrEJtCfm236vL4,7253
|
|
764
|
-
wandelbots_api_client/v2_pydantic/__init__.py,sha256=
|
|
765
|
+
wandelbots_api_client/v2_pydantic/__init__.py,sha256=Ai6GS4KwCc-tc6aEZEUrYJs91UE0lEJpcb6FOSGko6o,1041
|
|
765
766
|
wandelbots_api_client/v2_pydantic/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
|
|
766
767
|
wandelbots_api_client/v2_pydantic/api/application_api.py,sha256=vU-xA4SdVSJuXu7EAO7tTK9yJjSkMR1Y5_76RZdBp-E,69591
|
|
767
768
|
wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py,sha256=CKmqk0PsMcT0Cp-2zEQDIS65dTWJJonJ83vkCAWEjn8,267356
|
|
@@ -772,7 +773,7 @@ wandelbots_api_client/v2_pydantic/api/jogging_api.py,sha256=_OvliXuDKMqKRTQVR2kd
|
|
|
772
773
|
wandelbots_api_client/v2_pydantic/api/kinematics_api.py,sha256=kbOn-NaGtHtPoEJeFK2CGE3mPziCKK6opjGIpYyUG9Q,64691
|
|
773
774
|
wandelbots_api_client/v2_pydantic/api/license_api.py,sha256=YIglT4yT4C_Rl4UIegWXwPpD2T7vGaGOaJha8POQ02U,39544
|
|
774
775
|
wandelbots_api_client/v2_pydantic/api/motion_group_api.py,sha256=X8yc2jwOB87mh1XkGJLyKXverOWrBkElNzSoC1qefQU,32989
|
|
775
|
-
wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py,sha256=
|
|
776
|
+
wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py,sha256=G2oBtaa1eLwSmfAPUDpgQoBos85zZY8jNxGI0TkAslU,156246
|
|
776
777
|
wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py,sha256=Ax33qal6yu1Flgh6JfBA5SokJxLCUnpzqFZivlRVO1A,39077
|
|
777
778
|
wandelbots_api_client/v2_pydantic/api/program_api.py,sha256=3NkIGAfWvKNNocckgH-672f_RLa9_oUYv5zS_fBCxR4,44690
|
|
778
779
|
wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py,sha256=dcNwNhPc8uf6SOOPUH30eODK4sO1R611fdnR62Gs0AY,22104
|
|
@@ -788,14 +789,14 @@ wandelbots_api_client/v2_pydantic/api/version_api.py,sha256=TTJwo3cWTBgxpeDO2S-S
|
|
|
788
789
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py,sha256=rdrD4YOLnKKg_ILuzc37Ku_VMMJh2MUsR2a8frZraXc,291365
|
|
789
790
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py,sha256=3mNzqQUb8JM_E7iZ4MJGg7rnEGdL9VFFqjLlrMa6bss,41027
|
|
790
791
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py,sha256=LItWYQPUCu8mh2XAA9gOudhYTNMzIjtzY1ijXoV4w2E,42039
|
|
791
|
-
wandelbots_api_client/v2_pydantic/api_client.py,sha256=
|
|
792
|
+
wandelbots_api_client/v2_pydantic/api_client.py,sha256=p73QP6DqQfU2U92T6-FykCWqKylOPREn798AZjqRQ98,27857
|
|
792
793
|
wandelbots_api_client/v2_pydantic/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
|
793
|
-
wandelbots_api_client/v2_pydantic/configuration.py,sha256=
|
|
794
|
+
wandelbots_api_client/v2_pydantic/configuration.py,sha256=uqPAl2wXwm-uHTCR0grEizDDCbSbkva0aYvektSBEbQ,18056
|
|
794
795
|
wandelbots_api_client/v2_pydantic/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
|
|
795
|
-
wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=
|
|
796
|
-
wandelbots_api_client/v2_pydantic/models/models.py,sha256=
|
|
796
|
+
wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=DOtV1RMusYb92DU_TxCMjylzvBCCd4XRoxxsuZK4PgQ,22385
|
|
797
|
+
wandelbots_api_client/v2_pydantic/models/models.py,sha256=U0x_63dbb45p6lPdXTMFq8l0BcoB6Q4J2YVTouxUIco,209028
|
|
797
798
|
wandelbots_api_client/v2_pydantic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
798
799
|
wandelbots_api_client/v2_pydantic/rest.py,sha256=EDM0lK-GKehCIR2PgMyO_5a5MGlOHws5c7Ue3j0FeSc,7262
|
|
799
|
-
wandelbots_api_client-26.6.0.
|
|
800
|
-
wandelbots_api_client-26.6.0.
|
|
801
|
-
wandelbots_api_client-26.6.0.
|
|
800
|
+
wandelbots_api_client-26.6.0.dev40.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
|
|
801
|
+
wandelbots_api_client-26.6.0.dev40.dist-info/METADATA,sha256=YprqWqCN4I6s3-tNNoerEeF9inmVCu6NhUnu2ADbG-M,7693
|
|
802
|
+
wandelbots_api_client-26.6.0.dev40.dist-info/RECORD,,
|
{wandelbots_api_client-26.6.0.dev39.dist-info → wandelbots_api_client-26.6.0.dev40.dist-info}/WHEEL
RENAMED
|
File without changes
|