wandelbots_api_client 26.6.0.dev65__py3-none-any.whl → 26.6.0.dev67__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.dev65"
16
+ __version__ = "26.6.0.dev67"
17
17
 
18
18
  from . import api
19
19
  from . import api_client
@@ -30,6 +30,7 @@ from wandelbots_api_client.v2.models.copy_motion_group_model_request import Copy
30
30
  from wandelbots_api_client.v2.models.dynamic_model import DynamicModel
31
31
  from wandelbots_api_client.v2.models.kinematic_model import KinematicModel
32
32
  from wandelbots_api_client.v2.models.motion_group_configuration import MotionGroupConfiguration
33
+ from wandelbots_api_client.v2.models.motion_group_model_catalog import MotionGroupModelCatalog
33
34
  from wandelbots_api_client.v2.models.motion_group_model_description import MotionGroupModelDescription
34
35
  from wandelbots_api_client.v2.models.operation_limits import OperationLimits
35
36
 
@@ -2710,6 +2711,210 @@ class MotionGroupModelsApi:
2710
2711
  _request_auth=_request_auth,
2711
2712
  )
2712
2713
 
2714
+ @validate_call
2715
+ async def get_motion_group_models_catalog(
2716
+ self,
2717
+ _request_timeout: Union[
2718
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
2719
+ ] = None,
2720
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2721
+ _content_type: Optional[StrictStr] = None,
2722
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2723
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2724
+ ) -> List[MotionGroupModelCatalog]:
2725
+ """Motion Group Model Catalog
2726
+
2727
+ **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
2728
+
2729
+ :param _request_timeout: timeout setting for this request. If one
2730
+ number provided, it will be total request
2731
+ timeout. It can also be a pair (tuple) of
2732
+ (connection, read) timeouts.
2733
+ :type _request_timeout: int, tuple(int, int), optional
2734
+ :param _request_auth: set to override the auth_settings for an a single
2735
+ request; this effectively ignores the
2736
+ authentication in the spec for a single request.
2737
+ :type _request_auth: dict, optional
2738
+ :param _content_type: force content-type for the request.
2739
+ :type _content_type: str, Optional
2740
+ :param _headers: set to override the headers for a single
2741
+ request; this effectively ignores the headers
2742
+ in the spec for a single request.
2743
+ :type _headers: dict, optional
2744
+ :param _host_index: set to override the host_index for a single
2745
+ request; this effectively ignores the host_index
2746
+ in the spec for a single request.
2747
+ :type _host_index: int, optional
2748
+ :return: Returns the result object.
2749
+ """ # noqa: E501
2750
+
2751
+ _param = self._get_motion_group_models_catalog_serialize(
2752
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
2753
+ )
2754
+
2755
+ _response_types_map: Dict[str, Optional[str]] = {
2756
+ "200": "List[MotionGroupModelCatalog]",
2757
+ "404": None,
2758
+ "500": None,
2759
+ }
2760
+
2761
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
2762
+ await response_data.read()
2763
+ return self.api_client.response_deserialize(
2764
+ response_data=response_data,
2765
+ response_types_map=_response_types_map,
2766
+ ).data
2767
+
2768
+ @validate_call
2769
+ async def get_motion_group_models_catalog_with_http_info(
2770
+ self,
2771
+ _request_timeout: Union[
2772
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
2773
+ ] = None,
2774
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2775
+ _content_type: Optional[StrictStr] = None,
2776
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2777
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2778
+ ) -> ApiResponse[List[MotionGroupModelCatalog]]:
2779
+ """Motion Group Model Catalog
2780
+
2781
+ **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
2782
+
2783
+ :param _request_timeout: timeout setting for this request. If one
2784
+ number provided, it will be total request
2785
+ timeout. It can also be a pair (tuple) of
2786
+ (connection, read) timeouts.
2787
+ :type _request_timeout: int, tuple(int, int), optional
2788
+ :param _request_auth: set to override the auth_settings for an a single
2789
+ request; this effectively ignores the
2790
+ authentication in the spec for a single request.
2791
+ :type _request_auth: dict, optional
2792
+ :param _content_type: force content-type for the request.
2793
+ :type _content_type: str, Optional
2794
+ :param _headers: set to override the headers for a single
2795
+ request; this effectively ignores the headers
2796
+ in the spec for a single request.
2797
+ :type _headers: dict, optional
2798
+ :param _host_index: set to override the host_index for a single
2799
+ request; this effectively ignores the host_index
2800
+ in the spec for a single request.
2801
+ :type _host_index: int, optional
2802
+ :return: Returns the result object.
2803
+ """ # noqa: E501
2804
+
2805
+ _param = self._get_motion_group_models_catalog_serialize(
2806
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
2807
+ )
2808
+
2809
+ _response_types_map: Dict[str, Optional[str]] = {
2810
+ "200": "List[MotionGroupModelCatalog]",
2811
+ "404": None,
2812
+ "500": None,
2813
+ }
2814
+
2815
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
2816
+ await response_data.read()
2817
+ return self.api_client.response_deserialize(
2818
+ response_data=response_data,
2819
+ response_types_map=_response_types_map,
2820
+ )
2821
+
2822
+ @validate_call
2823
+ async def get_motion_group_models_catalog_without_preload_content(
2824
+ self,
2825
+ _request_timeout: Union[
2826
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
2827
+ ] = None,
2828
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2829
+ _content_type: Optional[StrictStr] = None,
2830
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2831
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2832
+ ) -> RESTResponseType:
2833
+ """Motion Group Model Catalog
2834
+
2835
+ **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
2836
+
2837
+ :param _request_timeout: timeout setting for this request. If one
2838
+ number provided, it will be total request
2839
+ timeout. It can also be a pair (tuple) of
2840
+ (connection, read) timeouts.
2841
+ :type _request_timeout: int, tuple(int, int), optional
2842
+ :param _request_auth: set to override the auth_settings for an a single
2843
+ request; this effectively ignores the
2844
+ authentication in the spec for a single request.
2845
+ :type _request_auth: dict, optional
2846
+ :param _content_type: force content-type for the request.
2847
+ :type _content_type: str, Optional
2848
+ :param _headers: set to override the headers for a single
2849
+ request; this effectively ignores the headers
2850
+ in the spec for a single request.
2851
+ :type _headers: dict, optional
2852
+ :param _host_index: set to override the host_index for a single
2853
+ request; this effectively ignores the host_index
2854
+ in the spec for a single request.
2855
+ :type _host_index: int, optional
2856
+ :return: Returns the result object.
2857
+ """ # noqa: E501
2858
+
2859
+ _param = self._get_motion_group_models_catalog_serialize(
2860
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
2861
+ )
2862
+
2863
+ _response_types_map: Dict[str, Optional[str]] = {
2864
+ "200": "List[MotionGroupModelCatalog]",
2865
+ "404": None,
2866
+ "500": None,
2867
+ }
2868
+
2869
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
2870
+ return response_data.response
2871
+
2872
+ def _get_motion_group_models_catalog_serialize(
2873
+ self,
2874
+ _request_auth,
2875
+ _content_type,
2876
+ _headers,
2877
+ _host_index,
2878
+ ) -> RequestSerialized:
2879
+
2880
+ _host = None
2881
+
2882
+ _collection_formats: Dict[str, str] = {}
2883
+
2884
+ _path_params: Dict[str, str] = {}
2885
+ _query_params: List[Tuple[str, str]] = []
2886
+ _header_params: Dict[str, Optional[str]] = _headers or {}
2887
+ _form_params: List[Tuple[str, str]] = []
2888
+ _files: Dict[str, Union[str, bytes]] = {}
2889
+ _body_params: Optional[bytes] = None
2890
+
2891
+ # process the path parameters
2892
+ # process the query parameters
2893
+ # process the header parameters
2894
+ # process the form parameters
2895
+ # process the body parameter
2896
+
2897
+ # set the HTTP header `Accept`
2898
+ _header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
2899
+
2900
+ # authentication setting
2901
+ _auth_settings: List[str] = ["BearerAuth"]
2902
+
2903
+ return self.api_client.param_serialize(
2904
+ method="GET",
2905
+ resource_path="/experimental/motion-group-models/catalog",
2906
+ path_params=_path_params,
2907
+ query_params=_query_params,
2908
+ header_params=_header_params,
2909
+ body=_body_params,
2910
+ post_params=_form_params,
2911
+ files=_files,
2912
+ auth_settings=_auth_settings,
2913
+ collection_formats=_collection_formats,
2914
+ _host=_host,
2915
+ _request_auth=_request_auth,
2916
+ )
2917
+
2713
2918
  @validate_call
2714
2919
  async def get_motion_group_usd_model(
2715
2920
  self,
@@ -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.dev65"
88
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev67"
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.dev65".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev67".format(env=sys.platform, pyversion=sys.version)
516
516
  )
517
517
 
518
518
  def get_host_settings(self) -> List[HostSetting]:
@@ -274,6 +274,7 @@ from wandelbots_api_client.v2.models.motion_group_from_json import MotionGroupFr
274
274
  from wandelbots_api_client.v2.models.motion_group_from_type import MotionGroupFromType
275
275
  from wandelbots_api_client.v2.models.motion_group_info import MotionGroupInfo
276
276
  from wandelbots_api_client.v2.models.motion_group_joints import MotionGroupJoints
277
+ from wandelbots_api_client.v2.models.motion_group_model_catalog import MotionGroupModelCatalog
277
278
  from wandelbots_api_client.v2.models.motion_group_model_description import MotionGroupModelDescription
278
279
  from wandelbots_api_client.v2.models.motion_group_setup import MotionGroupSetup
279
280
  from wandelbots_api_client.v2.models.motion_group_state import MotionGroupState
@@ -0,0 +1,84 @@
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, StrictStr
20
+ from typing import Any, ClassVar, Dict, List
21
+ from typing import Optional, Set
22
+ from typing_extensions import Self
23
+ from pydantic_core import to_jsonable_python
24
+
25
+
26
+ class MotionGroupModelCatalog(BaseModel):
27
+ """
28
+ Entry for a motion group with its name and readable name.
29
+ """ # noqa: E501
30
+
31
+ motion_group_name: StrictStr = Field(description="Name of the motion group.")
32
+ readable_name: StrictStr = Field(description="Readable name for the motion group.")
33
+ __properties: ClassVar[List[str]] = ["motion_group_name", "readable_name"]
34
+
35
+ model_config = ConfigDict(
36
+ validate_by_name=True,
37
+ validate_by_alias=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ return json.dumps(to_jsonable_python(self.to_dict()))
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of MotionGroupModelCatalog from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ """
65
+ excluded_fields: Set[str] = set([])
66
+
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude=excluded_fields,
70
+ exclude_none=True,
71
+ )
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
76
+ """Create an instance of MotionGroupModelCatalog from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return cls.model_validate(obj)
82
+
83
+ _obj = cls.model_validate({"motion_group_name": obj.get("motion_group_name"), "readable_name": obj.get("readable_name")})
84
+ 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.dev65"
16
+ __version__ = "26.6.0.dev67"
17
17
 
18
18
  from . import api
19
19
  from . import api_client
@@ -30,6 +30,7 @@ from wandelbots_api_client.v2_pydantic.models import CopyMotionGroupModelRequest
30
30
  from wandelbots_api_client.v2_pydantic.models import DynamicModel
31
31
  from wandelbots_api_client.v2_pydantic.models import KinematicModel
32
32
  from wandelbots_api_client.v2_pydantic.models import MotionGroupConfiguration
33
+ from wandelbots_api_client.v2_pydantic.models import MotionGroupModelCatalog
33
34
  from wandelbots_api_client.v2_pydantic.models import MotionGroupModelDescription
34
35
  from wandelbots_api_client.v2_pydantic.models import OperationLimits
35
36
 
@@ -2710,6 +2711,210 @@ class MotionGroupModelsApi:
2710
2711
  _request_auth=_request_auth,
2711
2712
  )
2712
2713
 
2714
+ @validate_call
2715
+ async def get_motion_group_models_catalog(
2716
+ self,
2717
+ _request_timeout: Union[
2718
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
2719
+ ] = None,
2720
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2721
+ _content_type: Optional[StrictStr] = None,
2722
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2723
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2724
+ ) -> List[MotionGroupModelCatalog]:
2725
+ """Motion Group Model Catalog
2726
+
2727
+ **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
2728
+
2729
+ :param _request_timeout: timeout setting for this request. If one
2730
+ number provided, it will be total request
2731
+ timeout. It can also be a pair (tuple) of
2732
+ (connection, read) timeouts.
2733
+ :type _request_timeout: int, tuple(int, int), optional
2734
+ :param _request_auth: set to override the auth_settings for an a single
2735
+ request; this effectively ignores the
2736
+ authentication in the spec for a single request.
2737
+ :type _request_auth: dict, optional
2738
+ :param _content_type: force content-type for the request.
2739
+ :type _content_type: str, Optional
2740
+ :param _headers: set to override the headers for a single
2741
+ request; this effectively ignores the headers
2742
+ in the spec for a single request.
2743
+ :type _headers: dict, optional
2744
+ :param _host_index: set to override the host_index for a single
2745
+ request; this effectively ignores the host_index
2746
+ in the spec for a single request.
2747
+ :type _host_index: int, optional
2748
+ :return: Returns the result object.
2749
+ """ # noqa: E501
2750
+
2751
+ _param = self._get_motion_group_models_catalog_serialize(
2752
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
2753
+ )
2754
+
2755
+ _response_types_map: Dict[str, Optional[str]] = {
2756
+ "200": "List[MotionGroupModelCatalog]",
2757
+ "404": None,
2758
+ "500": None,
2759
+ }
2760
+
2761
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
2762
+ await response_data.read()
2763
+ return self.api_client.response_deserialize(
2764
+ response_data=response_data,
2765
+ response_types_map=_response_types_map,
2766
+ ).data
2767
+
2768
+ @validate_call
2769
+ async def get_motion_group_models_catalog_with_http_info(
2770
+ self,
2771
+ _request_timeout: Union[
2772
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
2773
+ ] = None,
2774
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2775
+ _content_type: Optional[StrictStr] = None,
2776
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2777
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2778
+ ) -> ApiResponse[List[MotionGroupModelCatalog]]:
2779
+ """Motion Group Model Catalog
2780
+
2781
+ **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
2782
+
2783
+ :param _request_timeout: timeout setting for this request. If one
2784
+ number provided, it will be total request
2785
+ timeout. It can also be a pair (tuple) of
2786
+ (connection, read) timeouts.
2787
+ :type _request_timeout: int, tuple(int, int), optional
2788
+ :param _request_auth: set to override the auth_settings for an a single
2789
+ request; this effectively ignores the
2790
+ authentication in the spec for a single request.
2791
+ :type _request_auth: dict, optional
2792
+ :param _content_type: force content-type for the request.
2793
+ :type _content_type: str, Optional
2794
+ :param _headers: set to override the headers for a single
2795
+ request; this effectively ignores the headers
2796
+ in the spec for a single request.
2797
+ :type _headers: dict, optional
2798
+ :param _host_index: set to override the host_index for a single
2799
+ request; this effectively ignores the host_index
2800
+ in the spec for a single request.
2801
+ :type _host_index: int, optional
2802
+ :return: Returns the result object.
2803
+ """ # noqa: E501
2804
+
2805
+ _param = self._get_motion_group_models_catalog_serialize(
2806
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
2807
+ )
2808
+
2809
+ _response_types_map: Dict[str, Optional[str]] = {
2810
+ "200": "List[MotionGroupModelCatalog]",
2811
+ "404": None,
2812
+ "500": None,
2813
+ }
2814
+
2815
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
2816
+ await response_data.read()
2817
+ return self.api_client.response_deserialize(
2818
+ response_data=response_data,
2819
+ response_types_map=_response_types_map,
2820
+ )
2821
+
2822
+ @validate_call
2823
+ async def get_motion_group_models_catalog_without_preload_content(
2824
+ self,
2825
+ _request_timeout: Union[
2826
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
2827
+ ] = None,
2828
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
2829
+ _content_type: Optional[StrictStr] = None,
2830
+ _headers: Optional[Dict[StrictStr, Any]] = None,
2831
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2832
+ ) -> RESTResponseType:
2833
+ """Motion Group Model Catalog
2834
+
2835
+ **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
2836
+
2837
+ :param _request_timeout: timeout setting for this request. If one
2838
+ number provided, it will be total request
2839
+ timeout. It can also be a pair (tuple) of
2840
+ (connection, read) timeouts.
2841
+ :type _request_timeout: int, tuple(int, int), optional
2842
+ :param _request_auth: set to override the auth_settings for an a single
2843
+ request; this effectively ignores the
2844
+ authentication in the spec for a single request.
2845
+ :type _request_auth: dict, optional
2846
+ :param _content_type: force content-type for the request.
2847
+ :type _content_type: str, Optional
2848
+ :param _headers: set to override the headers for a single
2849
+ request; this effectively ignores the headers
2850
+ in the spec for a single request.
2851
+ :type _headers: dict, optional
2852
+ :param _host_index: set to override the host_index for a single
2853
+ request; this effectively ignores the host_index
2854
+ in the spec for a single request.
2855
+ :type _host_index: int, optional
2856
+ :return: Returns the result object.
2857
+ """ # noqa: E501
2858
+
2859
+ _param = self._get_motion_group_models_catalog_serialize(
2860
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
2861
+ )
2862
+
2863
+ _response_types_map: Dict[str, Optional[str]] = {
2864
+ "200": "List[MotionGroupModelCatalog]",
2865
+ "404": None,
2866
+ "500": None,
2867
+ }
2868
+
2869
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
2870
+ return response_data.response
2871
+
2872
+ def _get_motion_group_models_catalog_serialize(
2873
+ self,
2874
+ _request_auth,
2875
+ _content_type,
2876
+ _headers,
2877
+ _host_index,
2878
+ ) -> RequestSerialized:
2879
+
2880
+ _host = None
2881
+
2882
+ _collection_formats: Dict[str, str] = {}
2883
+
2884
+ _path_params: Dict[str, str] = {}
2885
+ _query_params: List[Tuple[str, str]] = []
2886
+ _header_params: Dict[str, Optional[str]] = _headers or {}
2887
+ _form_params: List[Tuple[str, str]] = []
2888
+ _files: Dict[str, Union[str, bytes]] = {}
2889
+ _body_params: Optional[bytes] = None
2890
+
2891
+ # process the path parameters
2892
+ # process the query parameters
2893
+ # process the header parameters
2894
+ # process the form parameters
2895
+ # process the body parameter
2896
+
2897
+ # set the HTTP header `Accept`
2898
+ _header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
2899
+
2900
+ # authentication setting
2901
+ _auth_settings: List[str] = ["BearerAuth"]
2902
+
2903
+ return self.api_client.param_serialize(
2904
+ method="GET",
2905
+ resource_path="/experimental/motion-group-models/catalog",
2906
+ path_params=_path_params,
2907
+ query_params=_query_params,
2908
+ header_params=_header_params,
2909
+ body=_body_params,
2910
+ post_params=_form_params,
2911
+ files=_files,
2912
+ auth_settings=_auth_settings,
2913
+ collection_formats=_collection_formats,
2914
+ _host=_host,
2915
+ _request_auth=_request_auth,
2916
+ )
2917
+
2713
2918
  @validate_call
2714
2919
  async def get_motion_group_usd_model(
2715
2920
  self,
@@ -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.dev65"
88
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev67"
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.dev65".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev67".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: tmpgagaad_l
3
- # timestamp: 2026-07-09T10:47:10+00:00
2
+ # filename: tmp2i2kqjur
3
+ # timestamp: 2026-07-09T17:38:57+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -287,6 +287,7 @@ from .models import (
287
287
  MotionGroupInfos,
288
288
  MotionGroupJoints,
289
289
  MotionGroupModel,
290
+ MotionGroupModelCatalog,
290
291
  MotionGroupModelDescription,
291
292
  MotionGroupSetup,
292
293
  MotionGroupSetupDictionary,
@@ -728,6 +729,7 @@ __all__ = [
728
729
  "MotionGroupInfos",
729
730
  "MotionGroupJoints",
730
731
  "MotionGroupModel",
732
+ "MotionGroupModelCatalog",
731
733
  "MotionGroupModelDescription",
732
734
  "MotionGroupSetup",
733
735
  "MotionGroupSetupDictionary",
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: models.yaml
3
- # timestamp: 2026-07-09T10:47:10+00:00
3
+ # timestamp: 2026-07-09T17:38:57+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
  from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
@@ -1357,6 +1357,21 @@ class MotionGroupModelDescription(BaseModel):
1357
1357
  """
1358
1358
 
1359
1359
 
1360
+ class MotionGroupModelCatalog(BaseModel):
1361
+ """
1362
+ Entry for a motion group with its name and readable name.
1363
+ """
1364
+
1365
+ motion_group_name: str = Field(..., examples=["UniversalRobots_UR10e"])
1366
+ """
1367
+ Name of the motion group.
1368
+ """
1369
+ readable_name: str = Field(..., examples=["UR10e"])
1370
+ """
1371
+ Readable name for the motion group.
1372
+ """
1373
+
1374
+
1360
1375
  class MotionGroupConfiguration(BaseModel):
1361
1376
  """
1362
1377
  Response for motion group configuration lookup.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wandelbots_api_client
3
- Version: 26.6.0.dev65
3
+ Version: 26.6.0.dev67
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: 2.6.0 dev (can be found at the home screen of your instance -> API)
34
- - Package version: 26.6.0.dev65
34
+ - Package version: 26.6.0.dev67
35
35
 
36
36
  ## Requirements.
37
37
  Python >=3.9, Python < 4.0
@@ -1,6 +1,6 @@
1
1
  wandelbots_api_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  wandelbots_api_client/authorization.py,sha256=QNd828qdNPI-ctZ2hteyFgqLnd7zpIfEehxbfxJ75-U,7979
3
- wandelbots_api_client/v2/__init__.py,sha256=LhYkzQjWzOAsk_C_KBPypw6sfJixifLj9tESQrsoWT4,1032
3
+ wandelbots_api_client/v2/__init__.py,sha256=swi-tHf_knUr4WO1ozq1ptkEOMS7yIxgQLQ5Lqqin_4,1032
4
4
  wandelbots_api_client/v2/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
5
5
  wandelbots_api_client/v2/api/application_api.py,sha256=nVY1ZFCeazTJOou0UKhtAaFURbixCIFAl-AIAFvn4-8,69559
6
6
  wandelbots_api_client/v2/api/bus_inputs_outputs_api.py,sha256=3V_7OHnjzC0LnS-jAnEhb_Yv90TGnAP-egURffcUIcs,267414
@@ -11,7 +11,7 @@ wandelbots_api_client/v2/api/jogging_api.py,sha256=gYOaxnuuuJZFBo5UAN6uCNEj-hbYn
11
11
  wandelbots_api_client/v2/api/kinematics_api.py,sha256=F_utXvXRXBghgTxvFmrT3b9j3sgNC4nmK_4Rlyfmf5E,64927
12
12
  wandelbots_api_client/v2/api/license_api.py,sha256=7o_JyRCOvC0_Wdh6_rnm9C2bts8-vTUJR5iI8Yq05Gs,39538
13
13
  wandelbots_api_client/v2/api/motion_group_api.py,sha256=CByNFNC4GrQTyXlQbltQ2vC9PZpyBn4sWtRYykRdNJQ,32988
14
- wandelbots_api_client/v2/api/motion_group_models_api.py,sha256=C6DZken6vr23QD9kL9-dAe4Vi4xFX3A9jme50uFDZ6I,156302
14
+ wandelbots_api_client/v2/api/motion_group_models_api.py,sha256=1A507_m9m5rjc6QxmvPFknNK2VGspbEzFxa86ltl_Zw,165901
15
15
  wandelbots_api_client/v2/api/nova_cloud_api.py,sha256=ZLo3BE0gk79salFAN8iFnUoy9QZHi8G2mpj28uXLtQY,48633
16
16
  wandelbots_api_client/v2/api/program_api.py,sha256=8wzRU05gL_6Gjezm9yJ3e4wHq7ADeKL0yCCaNQGL4A4,44678
17
17
  wandelbots_api_client/v2/api/robot_configurations_api.py,sha256=6klutuPMM7Hi4fmp1v5wnoNrYGuQ-d2kHpq7hwVS7zw,22115
@@ -27,11 +27,11 @@ wandelbots_api_client/v2/api/version_api.py,sha256=1dAhtFz73CmB6F8fMOgsLGjCWq4w6
27
27
  wandelbots_api_client/v2/api/virtual_controller_api.py,sha256=nQ_rkwRufKGKGHB3QIjm7i771tqKRJGlt8nGxWupMPI,291431
28
28
  wandelbots_api_client/v2/api/virtual_controller_behavior_api.py,sha256=ByeJFFto88jrhAu8LpXAuHosXXIKpks5rSY8ZOWUdG4,41046
29
29
  wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py,sha256=OcQg8mxoQqZLHpByvSY3iqWNLia8rsxlvdpwlc02wb0,42027
30
- wandelbots_api_client/v2/api_client.py,sha256=M_a6j6C6VZi6TQI6Vk3bzAgG29TDDid9zmAVP9pKotA,27803
30
+ wandelbots_api_client/v2/api_client.py,sha256=LTPlV9K4NRQqElmDNzVvydB-hD0o7TN_jYLVp05Fab4,27803
31
31
  wandelbots_api_client/v2/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
32
- wandelbots_api_client/v2/configuration.py,sha256=kjPos7kpF6IlLcldGQ3dq7gjFDsAXH9cWmRPF-Hq08E,18047
32
+ wandelbots_api_client/v2/configuration.py,sha256=PuOTkR2ykF4RENz3ZbjnROZWo8wehVN6bocLZqDgbj4,18047
33
33
  wandelbots_api_client/v2/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
34
- wandelbots_api_client/v2/models/__init__.py,sha256=ThlfWpgeycjbjxIS-pi-GWE5DoATVWPDq2L8E3sTIiQ,36901
34
+ wandelbots_api_client/v2/models/__init__.py,sha256=xE9DzCj5bx5jSc_Y5Jt5BfI3CW8fUhyQy33Jh8M6esQ,36996
35
35
  wandelbots_api_client/v2/models/abb_confdata.py,sha256=lXK9rOsDRyCc2urbmVISftopF5LEbANjZ1R-1jXeLNg,3378
36
36
  wandelbots_api_client/v2/models/abb_configured_pose.py,sha256=Lg-eaUD80RzyQRshY3vm5BIq3_qFPZdz3kQk0ue9w_w,3144
37
37
  wandelbots_api_client/v2/models/abb_controller.py,sha256=P7QY_bKvz5fbW_nub4o2yROATVzb8xNr4cBetw5reSk,3741
@@ -283,6 +283,7 @@ wandelbots_api_client/v2/models/motion_group_from_json.py,sha256=2a6Qbl1Xz1GC6oW
283
283
  wandelbots_api_client/v2/models/motion_group_from_type.py,sha256=ebph-vm7XwrPohFqq_pgMHWWPtB7QcnTT1RtB-7GG_4,3509
284
284
  wandelbots_api_client/v2/models/motion_group_info.py,sha256=19eCUMmVa-MP3xlaG-PzTc1AiHaprd-29I6CBtXprRw,2926
285
285
  wandelbots_api_client/v2/models/motion_group_joints.py,sha256=e9UjESBc6j_sXqzIMFb8bVHZ4y-yTU-9wJ9RNC11CTM,3394
286
+ wandelbots_api_client/v2/models/motion_group_model_catalog.py,sha256=VuRAe4MY0gQS7uRpMep3F9hYyTuA-Bmy_3OBSoeYn0w,2710
286
287
  wandelbots_api_client/v2/models/motion_group_model_description.py,sha256=9C5oRCJnToIdzy9TAVQFXhY1NdY8jnD_0ItCc363ebo,3182
287
288
  wandelbots_api_client/v2/models/motion_group_setup.py,sha256=pjdTRs0SCLxqDFQoWYTa05X-7yCDAaZSVS1XmK-szdc,6241
288
289
  wandelbots_api_client/v2/models/motion_group_state.py,sha256=b3Whs5Lr4e3T_joPCmXpriwV7AkBuA6CHrW8VmCjTS0,10545
@@ -440,7 +441,7 @@ wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py,sha2
440
441
  wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py,sha256=BJFV1ZqYKcQauiUfZ10UhbRxVhOL0DjQyHzHhlQ-hUA,5652
441
442
  wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
443
  wandelbots_api_client/v2/rest.py,sha256=pzalGbo_80nNBxbupQKYjZjOpOgPbYrEJtCfm236vL4,7253
443
- wandelbots_api_client/v2_pydantic/__init__.py,sha256=3sNrM8nbcDM4UA8nuaHIk10U0M1j51jCZsdCsmo_YJo,1041
444
+ wandelbots_api_client/v2_pydantic/__init__.py,sha256=5qJO06U3RLp-K6wHFxEhrvtT4qkbIa2VY0C-N7axYyc,1041
444
445
  wandelbots_api_client/v2_pydantic/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
445
446
  wandelbots_api_client/v2_pydantic/api/application_api.py,sha256=vU-xA4SdVSJuXu7EAO7tTK9yJjSkMR1Y5_76RZdBp-E,69591
446
447
  wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py,sha256=CKmqk0PsMcT0Cp-2zEQDIS65dTWJJonJ83vkCAWEjn8,267356
@@ -451,7 +452,7 @@ wandelbots_api_client/v2_pydantic/api/jogging_api.py,sha256=_OvliXuDKMqKRTQVR2kd
451
452
  wandelbots_api_client/v2_pydantic/api/kinematics_api.py,sha256=kbOn-NaGtHtPoEJeFK2CGE3mPziCKK6opjGIpYyUG9Q,64691
452
453
  wandelbots_api_client/v2_pydantic/api/license_api.py,sha256=YIglT4yT4C_Rl4UIegWXwPpD2T7vGaGOaJha8POQ02U,39544
453
454
  wandelbots_api_client/v2_pydantic/api/motion_group_api.py,sha256=X8yc2jwOB87mh1XkGJLyKXverOWrBkElNzSoC1qefQU,32989
454
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py,sha256=G2oBtaa1eLwSmfAPUDpgQoBos85zZY8jNxGI0TkAslU,156246
455
+ wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py,sha256=hFATTLTe3E845xJ3ZYHM5I9bUx11pARY2gJr4PGjQxM,165827
455
456
  wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py,sha256=IbJPl6EPuq1SNWLAyRFFLpPBFE601YVgr_t_vg3nsIo,48571
456
457
  wandelbots_api_client/v2_pydantic/api/program_api.py,sha256=3NkIGAfWvKNNocckgH-672f_RLa9_oUYv5zS_fBCxR4,44690
457
458
  wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py,sha256=dcNwNhPc8uf6SOOPUH30eODK4sO1R611fdnR62Gs0AY,22104
@@ -467,14 +468,14 @@ wandelbots_api_client/v2_pydantic/api/version_api.py,sha256=TTJwo3cWTBgxpeDO2S-S
467
468
  wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py,sha256=rdrD4YOLnKKg_ILuzc37Ku_VMMJh2MUsR2a8frZraXc,291365
468
469
  wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py,sha256=3mNzqQUb8JM_E7iZ4MJGg7rnEGdL9VFFqjLlrMa6bss,41027
469
470
  wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py,sha256=LItWYQPUCu8mh2XAA9gOudhYTNMzIjtzY1ijXoV4w2E,42039
470
- wandelbots_api_client/v2_pydantic/api_client.py,sha256=Gf_8PeitCPBbMBhMlnmZD7yXA16IKQQYDE9BkndMQgo,27857
471
+ wandelbots_api_client/v2_pydantic/api_client.py,sha256=u8WX6mms4eyk5wDhSKE3U5qpSkP7JbRAF1iEJv-_Mp0,27857
471
472
  wandelbots_api_client/v2_pydantic/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
472
- wandelbots_api_client/v2_pydantic/configuration.py,sha256=gOWjtEK-o4KjS_B8XwGFYqEqvS1AtbJKZbhMkUlZmZI,18056
473
+ wandelbots_api_client/v2_pydantic/configuration.py,sha256=0jKRLbZ786IOXzr0EpRSUsmnga8upH5VGSvkHpbf_GU,18056
473
474
  wandelbots_api_client/v2_pydantic/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
474
- wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=ylJnVxor53dMAz8Gn1owMMWCPj9bhlsCYb5aGtiSmZk,22659
475
- wandelbots_api_client/v2_pydantic/models/models.py,sha256=sTtOTjPvVHmUTfQaWaczUSYRLCjGPcXKPMa-x4HSHF0,213058
475
+ wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=GEBg1SS6K2c6UVy5_5ntybUg5S-hJPBW3thRahbODrA,22719
476
+ wandelbots_api_client/v2_pydantic/models/models.py,sha256=2KbAzXp-738qiQ24SjawCSVZsqz-OBd8F1RPyuwMDvg,213415
476
477
  wandelbots_api_client/v2_pydantic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
478
  wandelbots_api_client/v2_pydantic/rest.py,sha256=EDM0lK-GKehCIR2PgMyO_5a5MGlOHws5c7Ue3j0FeSc,7262
478
- wandelbots_api_client-26.6.0.dev65.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
479
- wandelbots_api_client-26.6.0.dev65.dist-info/METADATA,sha256=cTyiNYYpwuxF7adbVpLKK6C-GBZ-yJ-BnxoYhQau80g,1411
480
- wandelbots_api_client-26.6.0.dev65.dist-info/RECORD,,
479
+ wandelbots_api_client-26.6.0.dev67.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
480
+ wandelbots_api_client-26.6.0.dev67.dist-info/METADATA,sha256=O_Ozgat9BEPL29qKbRuZDrAuef-YeHBFWblgr7i6bWI,1411
481
+ wandelbots_api_client-26.6.0.dev67.dist-info/RECORD,,