wandelbots-isaacsim-api 2.3.0__tar.gz → 2.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. wandelbots_isaacsim_api-2.7.1/PKG-INFO +27 -0
  2. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/README.md +2 -2
  3. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/pyproject.toml +2 -2
  4. wandelbots_isaacsim_api-2.7.1/setup.cfg +7 -0
  5. wandelbots_isaacsim_api-2.7.1/setup.py +51 -0
  6. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/__init__.py +2 -2
  7. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/collision_world_api.py +21 -2
  8. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/default_api.py +1 -1
  9. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/manipulators_motion_group_api.py +1 -1
  10. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/periphery_camera_api.py +1 -1
  11. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/prims_api.py +31 -33
  12. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/stage_api.py +1 -1
  13. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/teaching_api.py +23 -2
  14. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/trajectory_api.py +1 -1
  15. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/ui_api.py +1 -1
  16. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api_client.py +2 -2
  17. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/configuration.py +3 -3
  18. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/exceptions.py +1 -1
  19. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/__init__.py +6 -6
  20. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/auth0_credentials.py +1 -1
  21. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_apply_relative_pose.py +1 -1
  22. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_set_joint_state.py +1 -1
  23. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_set_prim_metadata.py +1 -1
  24. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_set_prim_visibility.py +1 -1
  25. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_set_semantic_label.py +1 -1
  26. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_update_colliders.py +1 -1
  27. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/body_update_pose.py +1 -1
  28. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/bounding_box2_d.py +1 -1
  29. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/bounding_box3_d.py +1 -1
  30. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/box.py +1 -1
  31. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/box_sweep_parameters.py +1 -1
  32. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/capsule.py +1 -1
  33. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/collider.py +1 -1
  34. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api/models/color.py +139 -0
  35. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/convex_hull.py +1 -1
  36. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/create_ghost_object.py +1 -1
  37. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/custom_prim.py +1 -1
  38. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/custom_prim_data.py +1 -1
  39. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/cylinder.py +1 -1
  40. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/ghost_object.py +1 -1
  41. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/ghost_object_source.py +1 -1
  42. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/gizmo_prim.py +1 -1
  43. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/http_validation_error.py +1 -1
  44. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/instance_segmentation_data.py +1 -1
  45. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/instance_segmentation_info.py +1 -1
  46. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/motion_group_configuration.py +12 -5
  47. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/motion_stream_configuration.py +4 -2
  48. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/patch_trajectory_data.py +1 -1
  49. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/plane.py +1 -1
  50. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/point_cloud.py +1 -1
  51. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/pose.py +2 -2
  52. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/pose_position_inner.py +1 -1
  53. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/prim.py +1 -1
  54. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/prim_selection.py +1 -1
  55. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/quat_pose.py +1 -1
  56. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/relative_pose_mode.py +1 -1
  57. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/response_get_pose.py +1 -1
  58. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/response_get_relative_pose.py +1 -1
  59. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/response_list_default_poses_value.py +1 -1
  60. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/semantic_segmentation_data.py +1 -1
  61. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/semantic_segmentation_info.py +1 -1
  62. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/shape.py +1 -1
  63. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/simulation_state.py +1 -1
  64. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/sphere.py +1 -1
  65. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/sphere_sweep_parameters.py +1 -1
  66. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/stage_units.py +1 -1
  67. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/sweep_arguments.py +1 -1
  68. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/tcp_source.py +1 -1
  69. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/trajectory_data.py +5 -5
  70. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/trajectory_marker.py +2 -2
  71. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/trajectory_object.py +1 -1
  72. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/trajectory_options.py +15 -8
  73. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/usd_stage_model.py +1 -1
  74. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/validation_error.py +1 -1
  75. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/validation_error_loc_inner.py +1 -1
  76. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api/models/width.py +138 -0
  77. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/models/ws_pose.py +1 -1
  78. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/rest.py +1 -1
  79. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/trajectory/trajectory_viewer.py +12 -6
  80. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/trajectory/utils.py +9 -7
  81. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api.egg-info/PKG-INFO +27 -0
  82. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api.egg-info/SOURCES.txt +91 -0
  83. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api.egg-info/dependency_links.txt +1 -0
  84. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api.egg-info/requires.txt +6 -0
  85. wandelbots_isaacsim_api-2.7.1/wandelbots_isaacsim_api.egg-info/top_level.txt +1 -0
  86. wandelbots_isaacsim_api-2.3.0/PKG-INFO +0 -60
  87. wandelbots_isaacsim_api-2.3.0/wandelbots_isaacsim_api/models/body_assign_default_poses.py +0 -91
  88. wandelbots_isaacsim_api-2.3.0/wandelbots_isaacsim_api/models/body_reset_to_default_poses.py +0 -91
  89. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/LICENSE +0 -0
  90. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api/__init__.py +0 -0
  91. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/api_response.py +0 -0
  92. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/collision/__init__.py +0 -0
  93. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/collision/utils.py +0 -0
  94. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/py.typed +0 -0
  95. {wandelbots_isaacsim_api-2.3.0 → wandelbots_isaacsim_api-2.7.1}/wandelbots_isaacsim_api/trajectory/__init__.py +0 -0
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: wandelbots-isaacsim-api
3
+ Version: 2.7.1
4
+ Summary: Wandelbots Omniservice
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: team@openapitools.org
8
+ Keywords: OpenAPI,OpenAPI-Generator,Wandelbots Omniservice
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: aiohttp>=3.8.4
14
+ Requires-Dist: aiohttp-retry>=2.8.3
15
+ Requires-Dist: pydantic>=2
16
+ Requires-Dist: typing-extensions>=4.7.1
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: keywords
22
+ Dynamic: license-file
23
+ Dynamic: requires-dist
24
+ Dynamic: summary
25
+
26
+ A microservice-based framework for managing Omniverse functionalities
27
+
@@ -1,7 +1,7 @@
1
1
  # wandelbots-isaacsim-api
2
2
  A microservice-based framework for managing Omniverse functionalities
3
- - Compatible API version: 2.3.0 (can be found at the home screen of your instance -> API)
4
- - Package version: 2.3.0
3
+ - Compatible API version: 2.7.1 (can be found at the home screen of your instance -> API)
4
+ - Package version: 2.7.1
5
5
 
6
6
  Sign up for our [Wandelbots Developers Beta program](https://www.wandelbots.com/developers-beta) to get access to the Wandelbots API.
7
7
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wandelbots-isaacsim-api"
3
- version = "2.3.0"
3
+ version = "2.7.1"
4
4
  description = "Wandelbots IsaacSim Python Client: A microservice-based framework for managing Omniverse functionalities"
5
5
  authors = ["Wandelbots GmbH <contact@wandelbots.com>"]
6
6
  license = "Apache-2.0"
@@ -29,7 +29,7 @@ pydantic = ">=2"
29
29
  typing-extensions = ">=4.7.1"
30
30
  pydantic_core = "*"
31
31
  annotated-types = "*"
32
- wandelbots-nova = "2"
32
+ wandelbots-nova = ">=2.0.0"
33
33
 
34
34
  [tool.poetry.dev-dependencies]
35
35
  pytest = ">=7.2.1"
@@ -0,0 +1,7 @@
1
+ [flake8]
2
+ max-line-length = 99
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
@@ -0,0 +1,51 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wandelbots Omniservice
5
+
6
+ A microservice-based framework for managing Omniverse functionalities
7
+
8
+ The version of the OpenAPI document: 2.7.1
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from setuptools import setup, find_packages # noqa: H301
16
+
17
+ # To install the library, run the following
18
+ #
19
+ # python setup.py install
20
+ #
21
+ # prerequisite: setuptools
22
+ # http://pypi.python.org/pypi/setuptools
23
+ NAME = "wandelbots-isaacsim-api"
24
+ VERSION = "2.7.1"
25
+ PYTHON_REQUIRES = ">= 3.8"
26
+ REQUIRES = [
27
+ "urllib3 >= 1.25.3, < 3.0.0",
28
+ "python-dateutil >= 2.8.2",
29
+ "aiohttp >= 3.8.4",
30
+ "aiohttp-retry >= 2.8.3",
31
+ "pydantic >= 2",
32
+ "typing-extensions >= 4.7.1",
33
+ ]
34
+
35
+ setup(
36
+ name=NAME,
37
+ version=VERSION,
38
+ description="Wandelbots Omniservice",
39
+ author="OpenAPI Generator community",
40
+ author_email="team@openapitools.org",
41
+ url="",
42
+ keywords=["OpenAPI", "OpenAPI-Generator", "Wandelbots Omniservice"],
43
+ install_requires=REQUIRES,
44
+ packages=find_packages(exclude=["test", "tests"]),
45
+ include_package_data=True,
46
+ long_description_content_type='text/markdown',
47
+ long_description="""\
48
+ A microservice-based framework for managing Omniverse functionalities
49
+ """, # noqa: E501
50
+ package_data={"wandelbots_isaacsim_api": ["py.typed"]},
51
+ )
@@ -7,14 +7,14 @@
7
7
 
8
8
  A microservice-based framework for managing Omniverse functionalities
9
9
 
10
- The version of the OpenAPI document: 2.3.0
10
+ The version of the OpenAPI document: 2.7.1
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "2.3.0"
17
+ __version__ = "2.7.1"
18
18
 
19
19
  from . import models
20
20
  from . import api
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -23,7 +23,9 @@ from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, U
23
23
  from typing_extensions import Annotated
24
24
  from urllib.parse import quote
25
25
 
26
- from typing import Dict
26
+ from pydantic import Field, StrictStr
27
+ from typing import Dict, Optional
28
+ from typing_extensions import Annotated
27
29
  from wandelbots_isaacsim_api.models.collider import Collider
28
30
  from wandelbots_isaacsim_api.models.sweep_arguments import SweepArguments
29
31
 
@@ -47,6 +49,7 @@ class CollisionWorldApi:
47
49
  async def sweep_collisions(
48
50
  self,
49
51
  sweep_arguments: SweepArguments,
52
+ relative_to_prim: Annotated[Optional[StrictStr], Field(description="Prim path to which the collision object poses are relative to. If not provided, world coordinates are used.")] = None,
50
53
  _request_timeout: Union[
51
54
  None,
52
55
  Annotated[StrictFloat, Field(gt=0)],
@@ -66,6 +69,8 @@ class CollisionWorldApi:
66
69
 
67
70
  :param sweep_arguments: (required)
68
71
  :type sweep_arguments: SweepArguments
72
+ :param relative_to_prim: Prim path to which the collision object poses are relative to. If not provided, world coordinates are used.
73
+ :type relative_to_prim: str
69
74
  :param _request_timeout: timeout setting for this request. If one
70
75
  number provided, it will be total request
71
76
  timeout. It can also be a pair (tuple) of
@@ -90,6 +95,7 @@ class CollisionWorldApi:
90
95
 
91
96
  _param = self._sweep_collisions_serialize(
92
97
  sweep_arguments=sweep_arguments,
98
+ relative_to_prim=relative_to_prim,
93
99
  _request_auth=_request_auth,
94
100
  _content_type=_content_type,
95
101
  _headers=_headers,
@@ -115,6 +121,7 @@ class CollisionWorldApi:
115
121
  async def sweep_collisions_with_http_info(
116
122
  self,
117
123
  sweep_arguments: SweepArguments,
124
+ relative_to_prim: Annotated[Optional[StrictStr], Field(description="Prim path to which the collision object poses are relative to. If not provided, world coordinates are used.")] = None,
118
125
  _request_timeout: Union[
119
126
  None,
120
127
  Annotated[StrictFloat, Field(gt=0)],
@@ -134,6 +141,8 @@ class CollisionWorldApi:
134
141
 
135
142
  :param sweep_arguments: (required)
136
143
  :type sweep_arguments: SweepArguments
144
+ :param relative_to_prim: Prim path to which the collision object poses are relative to. If not provided, world coordinates are used.
145
+ :type relative_to_prim: str
137
146
  :param _request_timeout: timeout setting for this request. If one
138
147
  number provided, it will be total request
139
148
  timeout. It can also be a pair (tuple) of
@@ -158,6 +167,7 @@ class CollisionWorldApi:
158
167
 
159
168
  _param = self._sweep_collisions_serialize(
160
169
  sweep_arguments=sweep_arguments,
170
+ relative_to_prim=relative_to_prim,
161
171
  _request_auth=_request_auth,
162
172
  _content_type=_content_type,
163
173
  _headers=_headers,
@@ -183,6 +193,7 @@ class CollisionWorldApi:
183
193
  async def sweep_collisions_without_preload_content(
184
194
  self,
185
195
  sweep_arguments: SweepArguments,
196
+ relative_to_prim: Annotated[Optional[StrictStr], Field(description="Prim path to which the collision object poses are relative to. If not provided, world coordinates are used.")] = None,
186
197
  _request_timeout: Union[
187
198
  None,
188
199
  Annotated[StrictFloat, Field(gt=0)],
@@ -202,6 +213,8 @@ class CollisionWorldApi:
202
213
 
203
214
  :param sweep_arguments: (required)
204
215
  :type sweep_arguments: SweepArguments
216
+ :param relative_to_prim: Prim path to which the collision object poses are relative to. If not provided, world coordinates are used.
217
+ :type relative_to_prim: str
205
218
  :param _request_timeout: timeout setting for this request. If one
206
219
  number provided, it will be total request
207
220
  timeout. It can also be a pair (tuple) of
@@ -226,6 +239,7 @@ class CollisionWorldApi:
226
239
 
227
240
  _param = self._sweep_collisions_serialize(
228
241
  sweep_arguments=sweep_arguments,
242
+ relative_to_prim=relative_to_prim,
229
243
  _request_auth=_request_auth,
230
244
  _content_type=_content_type,
231
245
  _headers=_headers,
@@ -246,6 +260,7 @@ class CollisionWorldApi:
246
260
  def _sweep_collisions_serialize(
247
261
  self,
248
262
  sweep_arguments,
263
+ relative_to_prim,
249
264
  _request_auth,
250
265
  _content_type,
251
266
  _headers,
@@ -266,6 +281,10 @@ class CollisionWorldApi:
266
281
 
267
282
  # process the path parameters
268
283
  # process the query parameters
284
+ if relative_to_prim is not None:
285
+
286
+ _query_params.append(('relative_to_prim', relative_to_prim))
287
+
269
288
  # process the header parameters
270
289
  # process the form parameters
271
290
  # process the body parameter
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -27,8 +27,6 @@ from pydantic import Field, StrictStr, field_validator
27
27
  from typing import Dict, List, Optional
28
28
  from typing_extensions import Annotated
29
29
  from wandelbots_isaacsim_api.models.body_apply_relative_pose import BodyApplyRelativePose
30
- from wandelbots_isaacsim_api.models.body_assign_default_poses import BodyAssignDefaultPoses
31
- from wandelbots_isaacsim_api.models.body_reset_to_default_poses import BodyResetToDefaultPoses
32
30
  from wandelbots_isaacsim_api.models.body_set_joint_state import BodySetJointState
33
31
  from wandelbots_isaacsim_api.models.body_set_prim_metadata import BodySetPrimMetadata
34
32
  from wandelbots_isaacsim_api.models.body_set_prim_visibility import BodySetPrimVisibility
@@ -338,7 +336,7 @@ class PrimsApi:
338
336
  @validate_call
339
337
  async def assign_default_poses(
340
338
  self,
341
- body_assign_default_poses: BodyAssignDefaultPoses,
339
+ body: StrictStr,
342
340
  _request_timeout: Union[
343
341
  None,
344
342
  Annotated[StrictFloat, Field(gt=0)],
@@ -356,8 +354,8 @@ class PrimsApi:
356
354
 
357
355
  Sets default poses to the given prim and all its children prims. For this, the poses at runtime are overwritten as default. Can be used for resetting objects even when physics simulation is playing
358
356
 
359
- :param body_assign_default_poses: (required)
360
- :type body_assign_default_poses: BodyAssignDefaultPoses
357
+ :param body: (required)
358
+ :type body: str
361
359
  :param _request_timeout: timeout setting for this request. If one
362
360
  number provided, it will be total request
363
361
  timeout. It can also be a pair (tuple) of
@@ -381,7 +379,7 @@ class PrimsApi:
381
379
  """ # noqa: E501
382
380
 
383
381
  _param = self._assign_default_poses_serialize(
384
- body_assign_default_poses=body_assign_default_poses,
382
+ body=body,
385
383
  _request_auth=_request_auth,
386
384
  _content_type=_content_type,
387
385
  _headers=_headers,
@@ -408,7 +406,7 @@ class PrimsApi:
408
406
  @validate_call
409
407
  async def assign_default_poses_with_http_info(
410
408
  self,
411
- body_assign_default_poses: BodyAssignDefaultPoses,
409
+ body: StrictStr,
412
410
  _request_timeout: Union[
413
411
  None,
414
412
  Annotated[StrictFloat, Field(gt=0)],
@@ -426,8 +424,8 @@ class PrimsApi:
426
424
 
427
425
  Sets default poses to the given prim and all its children prims. For this, the poses at runtime are overwritten as default. Can be used for resetting objects even when physics simulation is playing
428
426
 
429
- :param body_assign_default_poses: (required)
430
- :type body_assign_default_poses: BodyAssignDefaultPoses
427
+ :param body: (required)
428
+ :type body: str
431
429
  :param _request_timeout: timeout setting for this request. If one
432
430
  number provided, it will be total request
433
431
  timeout. It can also be a pair (tuple) of
@@ -451,7 +449,7 @@ class PrimsApi:
451
449
  """ # noqa: E501
452
450
 
453
451
  _param = self._assign_default_poses_serialize(
454
- body_assign_default_poses=body_assign_default_poses,
452
+ body=body,
455
453
  _request_auth=_request_auth,
456
454
  _content_type=_content_type,
457
455
  _headers=_headers,
@@ -478,7 +476,7 @@ class PrimsApi:
478
476
  @validate_call
479
477
  async def assign_default_poses_without_preload_content(
480
478
  self,
481
- body_assign_default_poses: BodyAssignDefaultPoses,
479
+ body: StrictStr,
482
480
  _request_timeout: Union[
483
481
  None,
484
482
  Annotated[StrictFloat, Field(gt=0)],
@@ -496,8 +494,8 @@ class PrimsApi:
496
494
 
497
495
  Sets default poses to the given prim and all its children prims. For this, the poses at runtime are overwritten as default. Can be used for resetting objects even when physics simulation is playing
498
496
 
499
- :param body_assign_default_poses: (required)
500
- :type body_assign_default_poses: BodyAssignDefaultPoses
497
+ :param body: (required)
498
+ :type body: str
501
499
  :param _request_timeout: timeout setting for this request. If one
502
500
  number provided, it will be total request
503
501
  timeout. It can also be a pair (tuple) of
@@ -521,7 +519,7 @@ class PrimsApi:
521
519
  """ # noqa: E501
522
520
 
523
521
  _param = self._assign_default_poses_serialize(
524
- body_assign_default_poses=body_assign_default_poses,
522
+ body=body,
525
523
  _request_auth=_request_auth,
526
524
  _content_type=_content_type,
527
525
  _headers=_headers,
@@ -543,7 +541,7 @@ class PrimsApi:
543
541
 
544
542
  def _assign_default_poses_serialize(
545
543
  self,
546
- body_assign_default_poses,
544
+ body,
547
545
  _request_auth,
548
546
  _content_type,
549
547
  _headers,
@@ -567,8 +565,8 @@ class PrimsApi:
567
565
  # process the header parameters
568
566
  # process the form parameters
569
567
  # process the body parameter
570
- if body_assign_default_poses is not None:
571
- _body_params = body_assign_default_poses
568
+ if body is not None:
569
+ _body_params = body
572
570
 
573
571
 
574
572
  # set the HTTP header `Accept`
@@ -2750,7 +2748,7 @@ class PrimsApi:
2750
2748
  @validate_call
2751
2749
  async def reset_to_default_poses(
2752
2750
  self,
2753
- body_reset_to_default_poses: BodyResetToDefaultPoses,
2751
+ body: StrictStr,
2754
2752
  _request_timeout: Union[
2755
2753
  None,
2756
2754
  Annotated[StrictFloat, Field(gt=0)],
@@ -2768,8 +2766,8 @@ class PrimsApi:
2768
2766
 
2769
2767
  Resets the prims to the default poses set given a prim path. Can be used for resetting objects even when physics simulation is playing.
2770
2768
 
2771
- :param body_reset_to_default_poses: (required)
2772
- :type body_reset_to_default_poses: BodyResetToDefaultPoses
2769
+ :param body: (required)
2770
+ :type body: str
2773
2771
  :param _request_timeout: timeout setting for this request. If one
2774
2772
  number provided, it will be total request
2775
2773
  timeout. It can also be a pair (tuple) of
@@ -2793,7 +2791,7 @@ class PrimsApi:
2793
2791
  """ # noqa: E501
2794
2792
 
2795
2793
  _param = self._reset_to_default_poses_serialize(
2796
- body_reset_to_default_poses=body_reset_to_default_poses,
2794
+ body=body,
2797
2795
  _request_auth=_request_auth,
2798
2796
  _content_type=_content_type,
2799
2797
  _headers=_headers,
@@ -2820,7 +2818,7 @@ class PrimsApi:
2820
2818
  @validate_call
2821
2819
  async def reset_to_default_poses_with_http_info(
2822
2820
  self,
2823
- body_reset_to_default_poses: BodyResetToDefaultPoses,
2821
+ body: StrictStr,
2824
2822
  _request_timeout: Union[
2825
2823
  None,
2826
2824
  Annotated[StrictFloat, Field(gt=0)],
@@ -2838,8 +2836,8 @@ class PrimsApi:
2838
2836
 
2839
2837
  Resets the prims to the default poses set given a prim path. Can be used for resetting objects even when physics simulation is playing.
2840
2838
 
2841
- :param body_reset_to_default_poses: (required)
2842
- :type body_reset_to_default_poses: BodyResetToDefaultPoses
2839
+ :param body: (required)
2840
+ :type body: str
2843
2841
  :param _request_timeout: timeout setting for this request. If one
2844
2842
  number provided, it will be total request
2845
2843
  timeout. It can also be a pair (tuple) of
@@ -2863,7 +2861,7 @@ class PrimsApi:
2863
2861
  """ # noqa: E501
2864
2862
 
2865
2863
  _param = self._reset_to_default_poses_serialize(
2866
- body_reset_to_default_poses=body_reset_to_default_poses,
2864
+ body=body,
2867
2865
  _request_auth=_request_auth,
2868
2866
  _content_type=_content_type,
2869
2867
  _headers=_headers,
@@ -2890,7 +2888,7 @@ class PrimsApi:
2890
2888
  @validate_call
2891
2889
  async def reset_to_default_poses_without_preload_content(
2892
2890
  self,
2893
- body_reset_to_default_poses: BodyResetToDefaultPoses,
2891
+ body: StrictStr,
2894
2892
  _request_timeout: Union[
2895
2893
  None,
2896
2894
  Annotated[StrictFloat, Field(gt=0)],
@@ -2908,8 +2906,8 @@ class PrimsApi:
2908
2906
 
2909
2907
  Resets the prims to the default poses set given a prim path. Can be used for resetting objects even when physics simulation is playing.
2910
2908
 
2911
- :param body_reset_to_default_poses: (required)
2912
- :type body_reset_to_default_poses: BodyResetToDefaultPoses
2909
+ :param body: (required)
2910
+ :type body: str
2913
2911
  :param _request_timeout: timeout setting for this request. If one
2914
2912
  number provided, it will be total request
2915
2913
  timeout. It can also be a pair (tuple) of
@@ -2933,7 +2931,7 @@ class PrimsApi:
2933
2931
  """ # noqa: E501
2934
2932
 
2935
2933
  _param = self._reset_to_default_poses_serialize(
2936
- body_reset_to_default_poses=body_reset_to_default_poses,
2934
+ body=body,
2937
2935
  _request_auth=_request_auth,
2938
2936
  _content_type=_content_type,
2939
2937
  _headers=_headers,
@@ -2955,7 +2953,7 @@ class PrimsApi:
2955
2953
 
2956
2954
  def _reset_to_default_poses_serialize(
2957
2955
  self,
2958
- body_reset_to_default_poses,
2956
+ body,
2959
2957
  _request_auth,
2960
2958
  _content_type,
2961
2959
  _headers,
@@ -2979,8 +2977,8 @@ class PrimsApi:
2979
2977
  # process the header parameters
2980
2978
  # process the form parameters
2981
2979
  # process the body parameter
2982
- if body_reset_to_default_poses is not None:
2983
- _body_params = body_reset_to_default_poses
2980
+ if body is not None:
2981
+ _body_params = body
2984
2982
 
2985
2983
 
2986
2984
  # set the HTTP header `Accept`
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -23,8 +23,9 @@ from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, U
23
23
  from typing_extensions import Annotated
24
24
  from urllib.parse import quote
25
25
 
26
- from pydantic import StrictStr
26
+ from pydantic import Field, StrictStr
27
27
  from typing import List, Optional
28
+ from typing_extensions import Annotated
28
29
  from wandelbots_isaacsim_api.models.create_ghost_object import CreateGhostObject
29
30
  from wandelbots_isaacsim_api.models.ghost_object import GhostObject
30
31
  from wandelbots_isaacsim_api.models.ghost_object_source import GhostObjectSource
@@ -826,6 +827,7 @@ class TeachingApi:
826
827
  @validate_call
827
828
  async def list_ghost_objects(
828
829
  self,
830
+ relative_to_prim: Annotated[Optional[StrictStr], Field(description="Prim path to which the ghost object poses are relative")] = None,
829
831
  _request_timeout: Union[
830
832
  None,
831
833
  Annotated[StrictFloat, Field(gt=0)],
@@ -843,6 +845,8 @@ class TeachingApi:
843
845
 
844
846
  Fetches all ghost objects defined in the scene
845
847
 
848
+ :param relative_to_prim: Prim path to which the ghost object poses are relative
849
+ :type relative_to_prim: str
846
850
  :param _request_timeout: timeout setting for this request. If one
847
851
  number provided, it will be total request
848
852
  timeout. It can also be a pair (tuple) of
@@ -866,6 +870,7 @@ class TeachingApi:
866
870
  """ # noqa: E501
867
871
 
868
872
  _param = self._list_ghost_objects_serialize(
873
+ relative_to_prim=relative_to_prim,
869
874
  _request_auth=_request_auth,
870
875
  _content_type=_content_type,
871
876
  _headers=_headers,
@@ -875,6 +880,7 @@ class TeachingApi:
875
880
  _response_types_map: Dict[str, Optional[str]] = {
876
881
  '200': "List[GhostObject]",
877
882
  '500': None,
883
+ '422': "HTTPValidationError",
878
884
  }
879
885
  response_data = await self.api_client.call_api(
880
886
  *_param,
@@ -890,6 +896,7 @@ class TeachingApi:
890
896
  @validate_call
891
897
  async def list_ghost_objects_with_http_info(
892
898
  self,
899
+ relative_to_prim: Annotated[Optional[StrictStr], Field(description="Prim path to which the ghost object poses are relative")] = None,
893
900
  _request_timeout: Union[
894
901
  None,
895
902
  Annotated[StrictFloat, Field(gt=0)],
@@ -907,6 +914,8 @@ class TeachingApi:
907
914
 
908
915
  Fetches all ghost objects defined in the scene
909
916
 
917
+ :param relative_to_prim: Prim path to which the ghost object poses are relative
918
+ :type relative_to_prim: str
910
919
  :param _request_timeout: timeout setting for this request. If one
911
920
  number provided, it will be total request
912
921
  timeout. It can also be a pair (tuple) of
@@ -930,6 +939,7 @@ class TeachingApi:
930
939
  """ # noqa: E501
931
940
 
932
941
  _param = self._list_ghost_objects_serialize(
942
+ relative_to_prim=relative_to_prim,
933
943
  _request_auth=_request_auth,
934
944
  _content_type=_content_type,
935
945
  _headers=_headers,
@@ -939,6 +949,7 @@ class TeachingApi:
939
949
  _response_types_map: Dict[str, Optional[str]] = {
940
950
  '200': "List[GhostObject]",
941
951
  '500': None,
952
+ '422': "HTTPValidationError",
942
953
  }
943
954
  response_data = await self.api_client.call_api(
944
955
  *_param,
@@ -954,6 +965,7 @@ class TeachingApi:
954
965
  @validate_call
955
966
  async def list_ghost_objects_without_preload_content(
956
967
  self,
968
+ relative_to_prim: Annotated[Optional[StrictStr], Field(description="Prim path to which the ghost object poses are relative")] = None,
957
969
  _request_timeout: Union[
958
970
  None,
959
971
  Annotated[StrictFloat, Field(gt=0)],
@@ -971,6 +983,8 @@ class TeachingApi:
971
983
 
972
984
  Fetches all ghost objects defined in the scene
973
985
 
986
+ :param relative_to_prim: Prim path to which the ghost object poses are relative
987
+ :type relative_to_prim: str
974
988
  :param _request_timeout: timeout setting for this request. If one
975
989
  number provided, it will be total request
976
990
  timeout. It can also be a pair (tuple) of
@@ -994,6 +1008,7 @@ class TeachingApi:
994
1008
  """ # noqa: E501
995
1009
 
996
1010
  _param = self._list_ghost_objects_serialize(
1011
+ relative_to_prim=relative_to_prim,
997
1012
  _request_auth=_request_auth,
998
1013
  _content_type=_content_type,
999
1014
  _headers=_headers,
@@ -1003,6 +1018,7 @@ class TeachingApi:
1003
1018
  _response_types_map: Dict[str, Optional[str]] = {
1004
1019
  '200': "List[GhostObject]",
1005
1020
  '500': None,
1021
+ '422': "HTTPValidationError",
1006
1022
  }
1007
1023
  response_data = await self.api_client.call_api(
1008
1024
  *_param,
@@ -1013,6 +1029,7 @@ class TeachingApi:
1013
1029
 
1014
1030
  def _list_ghost_objects_serialize(
1015
1031
  self,
1032
+ relative_to_prim,
1016
1033
  _request_auth,
1017
1034
  _content_type,
1018
1035
  _headers,
@@ -1033,6 +1050,10 @@ class TeachingApi:
1033
1050
 
1034
1051
  # process the path parameters
1035
1052
  # process the query parameters
1053
+ if relative_to_prim is not None:
1054
+
1055
+ _query_params.append(('relative_to_prim', relative_to_prim))
1056
+
1036
1057
  # process the header parameters
1037
1058
  # process the form parameters
1038
1059
  # process the body parameter
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.3.0
8
+ The version of the OpenAPI document: 2.7.1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.