wandelbots_api_client 26.3.0.dev29__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 (693) hide show
  1. wandelbots_api_client-26.3.0.dev29/PKG-INFO +241 -0
  2. wandelbots_api_client-26.3.0.dev29/README.md +212 -0
  3. wandelbots_api_client-26.3.0.dev29/pyproject.toml +95 -0
  4. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/__init__.py +48 -0
  5. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/__init__.py +63 -0
  6. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/application_api.py +1514 -0
  7. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/cell_api.py +1424 -0
  8. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/controller_api.py +2951 -0
  9. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/controller_ios_api.py +1205 -0
  10. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/coordinate_systems_api.py +1267 -0
  11. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/device_configuration_api.py +1193 -0
  12. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/library_program_api.py +1326 -0
  13. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/library_program_metadata_api.py +1090 -0
  14. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/library_recipe_api.py +1351 -0
  15. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/library_recipe_metadata_api.py +1050 -0
  16. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/license_api.py +865 -0
  17. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/motion_api.py +3596 -0
  18. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/motion_group_api.py +956 -0
  19. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/motion_group_infos_api.py +2611 -0
  20. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/motion_group_jogging_api.py +685 -0
  21. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/motion_group_kinematic_api.py +1055 -0
  22. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/program_api.py +1987 -0
  23. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/program_operator_api.py +1881 -0
  24. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/program_values_api.py +1444 -0
  25. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/store_collision_components_api.py +3074 -0
  26. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/store_collision_scenes_api.py +951 -0
  27. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/store_object_api.py +1387 -0
  28. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/system_api.py +1075 -0
  29. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/version_api.py +237 -0
  30. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/virtual_robot_api.py +1583 -0
  31. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/virtual_robot_behavior_api.py +649 -0
  32. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/virtual_robot_mode_api.py +1467 -0
  33. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api/virtual_robot_setup_api.py +2116 -0
  34. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api_client.py +688 -0
  35. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/api_response.py +20 -0
  36. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/authorization.py +243 -0
  37. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/configuration.py +579 -0
  38. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/exceptions.py +216 -0
  39. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/__init__.py +316 -0
  40. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/abb_controller.py +112 -0
  41. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/abb_controller_egm_server.py +87 -0
  42. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/activate_license_request.py +86 -0
  43. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/add_request.py +95 -0
  44. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/all_joint_positions_request.py +96 -0
  45. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/all_joint_positions_response.py +109 -0
  46. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/api_version.py +86 -0
  47. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/app.py +148 -0
  48. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/array_input.py +114 -0
  49. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/array_output.py +116 -0
  50. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/behavior.py +35 -0
  51. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/blending_auto.py +99 -0
  52. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/blending_position.py +97 -0
  53. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/box.py +98 -0
  54. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/box2.py +112 -0
  55. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/box3.py +112 -0
  56. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/capsule.py +87 -0
  57. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/capsule2.py +97 -0
  58. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/capsule3.py +101 -0
  59. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/capture.py +86 -0
  60. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cell.py +142 -0
  61. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/circle.py +99 -0
  62. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/code_with_arguments.py +108 -0
  63. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collection_value.py +322 -0
  64. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collider.py +105 -0
  65. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collider_input.py +105 -0
  66. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collider_output.py +105 -0
  67. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collider_output_shape.py +242 -0
  68. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collider_shape.py +280 -0
  69. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision.py +110 -0
  70. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_contact.py +92 -0
  71. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_motion_group.py +124 -0
  72. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_motion_group_assembly.py +128 -0
  73. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_robot_configuration_input.py +121 -0
  74. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_robot_configuration_output.py +121 -0
  75. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_scene.py +117 -0
  76. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/collision_scene_assembly.py +133 -0
  77. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/command.py +140 -0
  78. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/command_settings.py +104 -0
  79. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/comparator.py +39 -0
  80. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/compound.py +114 -0
  81. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/container_environment_inner.py +87 -0
  82. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/container_image.py +122 -0
  83. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/container_image_secrets_inner.py +86 -0
  84. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/container_resources.py +89 -0
  85. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/container_storage.py +97 -0
  86. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/controller_capabilities.py +89 -0
  87. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/controller_instance.py +148 -0
  88. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/controller_instance_list.py +109 -0
  89. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/convex_hull.py +109 -0
  90. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/convex_hull2.py +97 -0
  91. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/convex_hull3.py +97 -0
  92. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/coordinate_system.py +108 -0
  93. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/coordinate_systems.py +109 -0
  94. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/create_program_run200_response.py +88 -0
  95. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/create_program_run_request.py +86 -0
  96. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/create_trigger200_response.py +86 -0
  97. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/create_trigger_request.py +101 -0
  98. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cubic_spline.py +109 -0
  99. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py +93 -0
  100. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cubic_spline_parameter.py +93 -0
  101. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cycle_time.py +86 -0
  102. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cylinder.py +87 -0
  103. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cylinder2.py +95 -0
  104. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/cylinder3.py +101 -0
  105. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/devices_inner.py +321 -0
  106. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/dh_parameter.py +98 -0
  107. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/direction.py +34 -0
  108. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/direction_jogging_request.py +136 -0
  109. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/error.py +87 -0
  110. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/execute_trajectory_request.py +182 -0
  111. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/execute_trajectory_response.py +223 -0
  112. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/execution_result.py +113 -0
  113. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/external_joint_stream_datapoint.py +96 -0
  114. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/external_joint_stream_datapoint_value.py +96 -0
  115. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/fanuc_controller.py +99 -0
  116. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/feedback_collision.py +126 -0
  117. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/feedback_joint_limit_exceeded.py +101 -0
  118. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/feedback_out_of_workspace.py +103 -0
  119. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/feedback_singularity.py +102 -0
  120. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/flag.py +86 -0
  121. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/force_vector.py +103 -0
  122. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/geometry.py +167 -0
  123. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/get_all_program_runs200_response.py +109 -0
  124. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/get_all_triggers200_response.py +109 -0
  125. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/get_mode_response.py +87 -0
  126. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/get_trajectory_response.py +112 -0
  127. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/get_trajectory_sample_response.py +90 -0
  128. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/google_protobuf_any.py +102 -0
  129. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/http_exception_response.py +86 -0
  130. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/http_validation_error.py +109 -0
  131. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/http_validation_error2.py +109 -0
  132. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/image_credentials.py +88 -0
  133. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/info_service_capabilities.py +110 -0
  134. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/initialize_movement_request.py +111 -0
  135. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/initialize_movement_response.py +96 -0
  136. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/initialize_movement_response_init_response.py +89 -0
  137. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/io.py +105 -0
  138. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/io_description.py +156 -0
  139. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/io_value.py +104 -0
  140. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/ios.py +109 -0
  141. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/jogging_response.py +117 -0
  142. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/jogging_service_capabilities.py +87 -0
  143. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/joint_jogging_request.py +108 -0
  144. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/joint_limit.py +123 -0
  145. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/joint_limit_exceeded.py +96 -0
  146. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/joint_position_request.py +104 -0
  147. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/joint_trajectory.py +117 -0
  148. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/joints.py +86 -0
  149. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/kinematic_service_capabilities.py +96 -0
  150. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/kuka_controller.py +112 -0
  151. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/kuka_controller_rsi_server.py +92 -0
  152. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/license.py +124 -0
  153. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/license_status.py +88 -0
  154. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/license_status_enum.py +37 -0
  155. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/limit_settings.py +223 -0
  156. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/limits_override.py +132 -0
  157. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_io_descriptions_response.py +109 -0
  158. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_io_values_response.py +109 -0
  159. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_payloads_response.py +109 -0
  160. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_program_metadata_response.py +109 -0
  161. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_recipe_metadata_response.py +109 -0
  162. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_response.py +109 -0
  163. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/list_tcps_response.py +112 -0
  164. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/location_inner.py +153 -0
  165. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/location_inner1.py +142 -0
  166. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/manufacturer.py +37 -0
  167. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/mode_change_response.py +97 -0
  168. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_command.py +109 -0
  169. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_command_blending.py +164 -0
  170. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_command_path.py +221 -0
  171. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_behavior_getter.py +87 -0
  172. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_info.py +88 -0
  173. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_infos.py +109 -0
  174. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_instance.py +101 -0
  175. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_instance_list.py +109 -0
  176. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_joints.py +100 -0
  177. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_physical.py +105 -0
  178. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_specification.py +136 -0
  179. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_state.py +180 -0
  180. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_state_joint_limit_reached.py +86 -0
  181. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_group_state_response.py +103 -0
  182. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_id.py +88 -0
  183. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_ids_list_response.py +89 -0
  184. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/motion_vector.py +103 -0
  185. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/mounting.py +98 -0
  186. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/move_request.py +162 -0
  187. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/move_response.py +91 -0
  188. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py +107 -0
  189. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/movement.py +90 -0
  190. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/movement_error.py +90 -0
  191. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/movement_error_error.py +86 -0
  192. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/movement_movement.py +98 -0
  193. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/op_mode.py +93 -0
  194. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/opcua_node_value_trigger_config.py +100 -0
  195. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py +159 -0
  196. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/optimizer_setup.py +145 -0
  197. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/out_of_workspace.py +92 -0
  198. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/path.py +109 -0
  199. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/path_cartesian_ptp.py +103 -0
  200. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/path_circle.py +108 -0
  201. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/path_cubic_spline.py +118 -0
  202. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/path_joint_ptp.py +96 -0
  203. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/path_line.py +103 -0
  204. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pause_movement_request.py +95 -0
  205. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pause_movement_response.py +96 -0
  206. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pause_movement_response_pause_response.py +89 -0
  207. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pause_on_io.py +96 -0
  208. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/payload.py +103 -0
  209. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_collision_free_ptp_request.py +131 -0
  210. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_collision_free_ptp_request_target.py +150 -0
  211. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_failed_on_trajectory_response.py +149 -0
  212. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_failed_response.py +136 -0
  213. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_request.py +127 -0
  214. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_response.py +112 -0
  215. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_successful_response.py +100 -0
  216. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_trajectory_failed_response.py +106 -0
  217. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py +209 -0
  218. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_trajectory_request.py +154 -0
  219. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_trajectory_response.py +92 -0
  220. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plan_trajectory_response_response.py +147 -0
  221. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plane2.py +93 -0
  222. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/plane3.py +93 -0
  223. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/planned_motion.py +125 -0
  224. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/planner_pose.py +100 -0
  225. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/planning_limits.py +168 -0
  226. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/planning_limits_limit_range.py +87 -0
  227. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/playback_speed_request.py +94 -0
  228. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/playback_speed_response.py +96 -0
  229. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/playback_speed_response_playback_speed_response.py +86 -0
  230. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/point_cloud.py +86 -0
  231. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pose.py +107 -0
  232. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pose2.py +93 -0
  233. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/program_metadata.py +100 -0
  234. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/program_run.py +168 -0
  235. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/program_run_object.py +103 -0
  236. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/program_run_state.py +37 -0
  237. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/program_runner_reference.py +88 -0
  238. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyjectory_datatypes_core_pose.py +88 -0
  239. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py +87 -0
  240. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py +87 -0
  241. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py +87 -0
  242. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py +101 -0
  243. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py +101 -0
  244. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py +99 -0
  245. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py +107 -0
  246. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py +119 -0
  247. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py +130 -0
  248. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py +130 -0
  249. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py +102 -0
  250. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py +99 -0
  251. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py +94 -0
  252. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py +94 -0
  253. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/quaternion.py +89 -0
  254. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/recipe_metadata.py +102 -0
  255. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rectangle.py +87 -0
  256. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rectangle2.py +95 -0
  257. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rectangle3.py +101 -0
  258. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rectangular_capsule.py +94 -0
  259. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rectangular_capsule2.py +103 -0
  260. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rectangular_capsule3.py +103 -0
  261. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/release_channel.py +34 -0
  262. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/request.py +142 -0
  263. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/request1.py +140 -0
  264. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/response_get_devices_devices_get_inner.py +321 -0
  265. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/response_get_value_programs_values_key_get.py +317 -0
  266. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/response_get_values_programs_values_get_value.py +322 -0
  267. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_controller.py +108 -0
  268. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_controller_configuration.py +262 -0
  269. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_controller_state.py +191 -0
  270. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_link_geometry.py +98 -0
  271. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_state.py +101 -0
  272. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_system_mode.py +37 -0
  273. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_tcp.py +104 -0
  274. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/robot_tcps.py +109 -0
  275. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rotation_angle_types.py +58 -0
  276. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/rotation_angles.py +91 -0
  277. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_configuration.py +182 -0
  278. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_setup.py +172 -0
  279. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_setup_safety_settings.py +106 -0
  280. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_setup_safety_zone.py +103 -0
  281. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_zone.py +98 -0
  282. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_zone_limits.py +96 -0
  283. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/safety_zone_violation.py +86 -0
  284. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/service_status.py +96 -0
  285. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/service_status_phase.py +46 -0
  286. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/service_status_severity.py +35 -0
  287. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/service_status_status.py +90 -0
  288. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/set_io.py +93 -0
  289. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/set_playback_speed.py +91 -0
  290. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/single_joint_limit.py +112 -0
  291. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/singularity.py +110 -0
  292. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/singularity_type_enum.py +35 -0
  293. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/sphere.py +86 -0
  294. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/sphere2.py +94 -0
  295. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/sphere3.py +96 -0
  296. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/standstill.py +92 -0
  297. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/standstill_reason.py +36 -0
  298. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/standstill_standstill.py +99 -0
  299. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/start_movement_request.py +135 -0
  300. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/start_on_io.py +96 -0
  301. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/status.py +119 -0
  302. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stop_response.py +109 -0
  303. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/store_value.py +349 -0
  304. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_move_backward.py +90 -0
  305. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_move_forward.py +90 -0
  306. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_move_playback_speed.py +92 -0
  307. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_move_request.py +207 -0
  308. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_move_response.py +110 -0
  309. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_move_to_trajectory.py +96 -0
  310. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/stream_stop.py +90 -0
  311. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/tcp_pose.py +105 -0
  312. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/tcp_pose_request.py +106 -0
  313. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/tool_geometry.py +111 -0
  314. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/trajectory_sample.py +139 -0
  315. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/trigger_object.py +110 -0
  316. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/trigger_type.py +33 -0
  317. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/universalrobots_controller.py +102 -0
  318. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/update_nova_version_request.py +87 -0
  319. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/update_program_metadata_request.py +88 -0
  320. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/update_recipe_metadata_request.py +88 -0
  321. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/update_trigger_request.py +100 -0
  322. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/validation_error.py +113 -0
  323. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/validation_error2.py +113 -0
  324. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/value.py +317 -0
  325. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/vector3d.py +88 -0
  326. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/version_number.py +113 -0
  327. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/virtual_controller.py +117 -0
  328. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/virtual_controller_types.py +153 -0
  329. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/virtual_robot_configuration.py +91 -0
  330. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/models/yaskawa_controller.py +99 -0
  331. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/py.typed +0 -0
  332. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/rest.py +188 -0
  333. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/__init__.py +49 -0
  334. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/__init__.py +55 -0
  335. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/application_api.py +1532 -0
  336. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +4534 -0
  337. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/cell_api.py +2163 -0
  338. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/controller_api.py +3238 -0
  339. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/controller_inputs_outputs_api.py +1244 -0
  340. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/jogging_api.py +113 -0
  341. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/kinematics_api.py +555 -0
  342. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/license_api.py +877 -0
  343. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/motion_group_api.py +689 -0
  344. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/motion_group_models_api.py +1222 -0
  345. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/nova_cloud_api.py +760 -0
  346. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/program_api.py +988 -0
  347. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/robot_configurations_api.py +485 -0
  348. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/store_collision_components_api.py +3479 -0
  349. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/store_collision_setups_api.py +1169 -0
  350. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/store_object_api.py +1414 -0
  351. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/system_api.py +2696 -0
  352. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/trajectory_caching_api.py +1339 -0
  353. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/trajectory_execution_api.py +115 -0
  354. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/trajectory_planning_api.py +811 -0
  355. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/version_api.py +240 -0
  356. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/virtual_controller_api.py +4534 -0
  357. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/virtual_controller_behavior_api.py +863 -0
  358. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py +895 -0
  359. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api_client.py +692 -0
  360. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/api_response.py +20 -0
  361. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/configuration.py +579 -0
  362. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/exceptions.py +216 -0
  363. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/__init__.py +317 -0
  364. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/abb_controller.py +104 -0
  365. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/abb_controller_egm_server.py +84 -0
  366. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/activate_license_request.py +83 -0
  367. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/add_trajectory_error.py +95 -0
  368. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/add_trajectory_error_data.py +298 -0
  369. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/add_trajectory_request.py +97 -0
  370. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/add_trajectory_response.py +99 -0
  371. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/add_virtual_controller_motion_group_request.py +147 -0
  372. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/api_version.py +83 -0
  373. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/app.py +156 -0
  374. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/behavior.py +35 -0
  375. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/blending_auto.py +97 -0
  376. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/blending_position.py +143 -0
  377. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/blending_space.py +34 -0
  378. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/boolean_value.py +91 -0
  379. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/box.py +109 -0
  380. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_description.py +111 -0
  381. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_modbus_client.py +100 -0
  382. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_modbus_server.py +127 -0
  383. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_modbus_tcp_client.py +98 -0
  384. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_modbus_tcp_server.py +97 -0
  385. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_modbus_virtual.py +90 -0
  386. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_profinet.py +131 -0
  387. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_profinet_default_route.py +84 -0
  388. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_profinet_ip_config.py +85 -0
  389. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_profinet_network.py +101 -0
  390. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_profinet_slot.py +92 -0
  391. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_profinet_virtual.py +90 -0
  392. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_io_type.py +223 -0
  393. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_ios_state.py +88 -0
  394. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/bus_ios_state_enum.py +36 -0
  395. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/capsule.py +94 -0
  396. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cartesian_limits.py +108 -0
  397. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cell.py +127 -0
  398. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_config_status.py +164 -0
  399. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_config_status_configured.py +97 -0
  400. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_config_status_not_configured.py +90 -0
  401. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_configuration.py +84 -0
  402. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error.py +87 -0
  403. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_error.py +275 -0
  404. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_invalid_token.py +102 -0
  405. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details.py +95 -0
  406. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details_cloud_response.py +90 -0
  407. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error.py +106 -0
  408. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error_details.py +83 -0
  409. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_timeout.py +91 -0
  410. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_leafnode_restart_timeout.py +91 -0
  411. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_nats_failed.py +102 -0
  412. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_nats_failed_details.py +84 -0
  413. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response.py +104 -0
  414. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details.py +95 -0
  415. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details_cloud_response.py +85 -0
  416. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_connection_request.py +98 -0
  417. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_disconnection_error.py +89 -0
  418. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_disconnection_status_disconnected.py +90 -0
  419. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_disconnection_status_disconnecting.py +90 -0
  420. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cloud_registration_success_response.py +83 -0
  421. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collider.py +102 -0
  422. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collider_shape.py +278 -0
  423. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collision.py +107 -0
  424. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collision_contact.py +89 -0
  425. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collision_error.py +100 -0
  426. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collision_free_algorithm.py +164 -0
  427. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/collision_setup.py +130 -0
  428. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/comparator.py +38 -0
  429. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/configuration_archive_status.py +197 -0
  430. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/configuration_archive_status_creating.py +94 -0
  431. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/configuration_archive_status_error.py +91 -0
  432. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/configuration_archive_status_success.py +90 -0
  433. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/configuration_resource.py +104 -0
  434. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/container_environment_inner.py +84 -0
  435. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/container_image.py +110 -0
  436. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/container_image_secrets_inner.py +83 -0
  437. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/container_resources.py +87 -0
  438. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/container_storage.py +94 -0
  439. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/controller_description.py +97 -0
  440. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/convex_hull.py +94 -0
  441. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/coordinate_system.py +115 -0
  442. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/coordinate_system_data.py +106 -0
  443. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cubic_spline_parameter.py +90 -0
  444. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cycle_time.py +86 -0
  445. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/cylinder.py +92 -0
  446. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/dh_parameter.py +98 -0
  447. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/direction.py +34 -0
  448. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/error.py +84 -0
  449. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/error_invalid_joint_count.py +98 -0
  450. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/error_joint_limit_exceeded.py +103 -0
  451. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/error_joint_position_collision.py +106 -0
  452. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/error_max_iterations_exceeded.py +91 -0
  453. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/execute.py +95 -0
  454. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/execute_details.py +164 -0
  455. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/execute_jogging_request.py +204 -0
  456. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/execute_jogging_response.py +246 -0
  457. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/execute_trajectory_request.py +209 -0
  458. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/execute_trajectory_response.py +246 -0
  459. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/external_joint_stream_datapoint.py +93 -0
  460. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/external_joint_stream_request.py +97 -0
  461. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/fanuc_controller.py +91 -0
  462. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/feedback_collision.py +112 -0
  463. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py +99 -0
  464. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/feedback_no_solution_in_current_configuration.py +100 -0
  465. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/feedback_out_of_workspace.py +100 -0
  466. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/feedback_singularity.py +99 -0
  467. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/flag.py +83 -0
  468. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/flange_payload.py +98 -0
  469. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/float_value.py +91 -0
  470. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/forward_kinematics422_response.py +97 -0
  471. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/forward_kinematics_request.py +104 -0
  472. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/forward_kinematics_response.py +93 -0
  473. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/forward_kinematics_validation_error.py +107 -0
  474. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/get_trajectory_response.py +97 -0
  475. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/http_validation_error.py +93 -0
  476. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/image_credentials.py +85 -0
  477. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inconsistent_trajectory_size_error.py +106 -0
  478. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inconsistent_trajectory_size_error_inconsistent_trajectory_size.py +91 -0
  479. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/initialize_jogging_request.py +95 -0
  480. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/initialize_jogging_response.py +91 -0
  481. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/initialize_movement_request.py +112 -0
  482. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py +164 -0
  483. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/initialize_movement_response.py +107 -0
  484. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/integer_value.py +91 -0
  485. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/invalid_dof_error.py +100 -0
  486. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/invalid_dof_error_invalid_dof.py +86 -0
  487. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inverse_kinematics422_response.py +97 -0
  488. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inverse_kinematics_request.py +152 -0
  489. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inverse_kinematics_response.py +83 -0
  490. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inverse_kinematics_validation_error.py +107 -0
  491. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/inverse_kinematics_validation_error_all_of_data.py +164 -0
  492. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_boolean_value.py +92 -0
  493. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_boundary.py +183 -0
  494. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_description.py +116 -0
  495. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_direction.py +34 -0
  496. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_float_value.py +92 -0
  497. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_integer_value.py +94 -0
  498. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_origin.py +34 -0
  499. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_value.py +183 -0
  500. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/io_value_type.py +35 -0
  501. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_details.py +97 -0
  502. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_details_state.py +275 -0
  503. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_paused_by_user.py +90 -0
  504. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_paused_near_collision.py +91 -0
  505. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_paused_near_joint_limit.py +92 -0
  506. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_paused_near_singularity.py +91 -0
  507. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_paused_on_io.py +90 -0
  508. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/jogging_running.py +90 -0
  509. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/joint_limit_exceeded_error.py +102 -0
  510. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/joint_limits.py +101 -0
  511. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/joint_trajectory.py +89 -0
  512. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/joint_type_enum.py +34 -0
  513. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/joint_velocity_request.py +91 -0
  514. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/joint_velocity_response.py +91 -0
  515. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/kinematic_model.py +118 -0
  516. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/kuka_controller.py +106 -0
  517. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/kuka_controller_rsi_server.py +89 -0
  518. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/license.py +121 -0
  519. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/license_status.py +85 -0
  520. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/license_status_enum.py +37 -0
  521. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/limit_range.py +84 -0
  522. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/limit_set.py +118 -0
  523. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/limits_override.py +136 -0
  524. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/list_trajectories_response.py +86 -0
  525. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/location1_inner.py +153 -0
  526. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/manufacturer.py +37 -0
  527. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories422_response.py +97 -0
  528. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_error.py +97 -0
  529. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_error_error_feedback.py +209 -0
  530. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_request.py +107 -0
  531. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_response.py +109 -0
  532. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_response_feedback_inner.py +147 -0
  533. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_segment.py +126 -0
  534. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/merge_trajectories_validation_error.py +109 -0
  535. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py +102 -0
  536. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/modbus_io.py +109 -0
  537. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/modbus_io_area.py +37 -0
  538. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/modbus_io_byte_order.py +37 -0
  539. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/modbus_io_data.py +105 -0
  540. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/modbus_io_type_enum.py +36 -0
  541. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_command.py +106 -0
  542. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_command_blending.py +164 -0
  543. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_command_path.py +221 -0
  544. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_description.py +235 -0
  545. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_from_json.py +100 -0
  546. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_from_type.py +96 -0
  547. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_info.py +90 -0
  548. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_joints.py +97 -0
  549. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_setup.py +140 -0
  550. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_state.py +182 -0
  551. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py +83 -0
  552. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/movement_error_response.py +91 -0
  553. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/nan_value_error.py +100 -0
  554. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/nan_value_error_nan_value.py +85 -0
  555. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/network_device.py +85 -0
  556. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/network_interface.py +86 -0
  557. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/network_state.py +125 -0
  558. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/op_mode.py +84 -0
  559. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/operating_state.py +34 -0
  560. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/operation_limits.py +106 -0
  561. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/operation_mode.py +42 -0
  562. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/orientation_type.py +58 -0
  563. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/path_cartesian_ptp.py +100 -0
  564. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/path_circle.py +105 -0
  565. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/path_cubic_spline.py +106 -0
  566. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/path_joint_ptp.py +93 -0
  567. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/path_line.py +100 -0
  568. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/pause_jogging_request.py +90 -0
  569. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/pause_jogging_response.py +91 -0
  570. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/pause_movement_request.py +90 -0
  571. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/pause_movement_response.py +91 -0
  572. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/pause_on_io.py +99 -0
  573. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/payload.py +98 -0
  574. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan422_response.py +93 -0
  575. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_collision_free_failed_response.py +93 -0
  576. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_collision_free_request.py +109 -0
  577. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_collision_free_response.py +89 -0
  578. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_collision_free_response_response.py +147 -0
  579. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_trajectory_failed_response.py +105 -0
  580. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py +252 -0
  581. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_trajectory_request.py +113 -0
  582. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_trajectory_response.py +89 -0
  583. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_trajectory_response_response.py +147 -0
  584. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_validation_error.py +107 -0
  585. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plan_validation_error_all_of_data.py +183 -0
  586. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/plane.py +90 -0
  587. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/playback_speed_request.py +96 -0
  588. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/playback_speed_response.py +91 -0
  589. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/pose.py +90 -0
  590. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_description.py +112 -0
  591. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_input_output_config.py +98 -0
  592. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_io.py +109 -0
  593. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_io_data.py +105 -0
  594. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_io_direction.py +35 -0
  595. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_io_type_enum.py +42 -0
  596. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_slot_description.py +106 -0
  597. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/profinet_sub_slot_description.py +92 -0
  598. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/program.py +105 -0
  599. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/program_run.py +124 -0
  600. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/program_run_state.py +37 -0
  601. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/program_start_request.py +83 -0
  602. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/rectangle.py +92 -0
  603. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/rectangular_capsule.py +100 -0
  604. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/release_channel.py +34 -0
  605. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_controller.py +105 -0
  606. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_controller_configuration.py +262 -0
  607. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_controller_configuration_request.py +99 -0
  608. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_controller_state.py +138 -0
  609. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_system_mode.py +37 -0
  610. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_tcp.py +110 -0
  611. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/robot_tcp_data.py +108 -0
  612. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/rrt_connect_algorithm.py +127 -0
  613. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/safety_state_type.py +48 -0
  614. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/service_group.py +36 -0
  615. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/service_status.py +96 -0
  616. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/service_status_phase.py +46 -0
  617. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/service_status_response.py +100 -0
  618. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/service_status_severity.py +35 -0
  619. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/service_status_status.py +87 -0
  620. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/set_io.py +96 -0
  621. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/settable_robot_system_mode.py +36 -0
  622. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/singularity_type_enum.py +35 -0
  623. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/sphere.py +91 -0
  624. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/start_movement_request.py +133 -0
  625. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/start_movement_response.py +91 -0
  626. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/start_on_io.py +99 -0
  627. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/stream_io_values_response.py +103 -0
  628. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/tcp_offset.py +88 -0
  629. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/tcp_required_error.py +96 -0
  630. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/tcp_velocity_request.py +110 -0
  631. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/tcp_velocity_response.py +91 -0
  632. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/torque_exceeded_error.py +102 -0
  633. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/torque_exceeded_error_torque_exceeded.py +86 -0
  634. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_data.py +106 -0
  635. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_details.py +106 -0
  636. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_details_state.py +239 -0
  637. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_ended.py +90 -0
  638. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_id.py +93 -0
  639. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_paused_by_user.py +90 -0
  640. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_paused_on_io.py +90 -0
  641. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_running.py +94 -0
  642. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_section.py +84 -0
  643. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/trajectory_wait_for_io.py +90 -0
  644. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/unit_type.py +42 -0
  645. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/universalrobots_controller.py +91 -0
  646. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/update_cell_version_request.py +84 -0
  647. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/update_nova_version_request.py +90 -0
  648. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/validation_error.py +101 -0
  649. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/validation_error2.py +85 -0
  650. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/virtual_controller.py +113 -0
  651. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/virtual_robot_configuration.py +88 -0
  652. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/wait_for_io_event_request.py +93 -0
  653. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/yaskawa_controller.py +91 -0
  654. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/zod_validation_error.py +87 -0
  655. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/zod_validation_error_error.py +108 -0
  656. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py +101 -0
  657. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py +153 -0
  658. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/py.typed +0 -0
  659. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2/rest.py +188 -0
  660. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/__init__.py +49 -0
  661. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/__init__.py +55 -0
  662. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/application_api.py +1532 -0
  663. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +4534 -0
  664. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/cell_api.py +2163 -0
  665. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/controller_api.py +3238 -0
  666. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/controller_inputs_outputs_api.py +1244 -0
  667. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/jogging_api.py +113 -0
  668. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/kinematics_api.py +555 -0
  669. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/license_api.py +877 -0
  670. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/motion_group_api.py +689 -0
  671. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +1222 -0
  672. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py +760 -0
  673. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/program_api.py +988 -0
  674. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py +485 -0
  675. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/store_collision_components_api.py +3479 -0
  676. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/store_collision_setups_api.py +1169 -0
  677. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/store_object_api.py +1414 -0
  678. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/system_api.py +2696 -0
  679. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/trajectory_caching_api.py +1339 -0
  680. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +115 -0
  681. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/trajectory_planning_api.py +811 -0
  682. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/version_api.py +240 -0
  683. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py +4534 -0
  684. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py +863 -0
  685. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py +895 -0
  686. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api_client.py +692 -0
  687. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/api_response.py +20 -0
  688. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/configuration.py +579 -0
  689. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/exceptions.py +216 -0
  690. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/models/__init__.py +642 -0
  691. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/models/models.py +5090 -0
  692. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/py.typed +0 -0
  693. wandelbots_api_client-26.3.0.dev29/wandelbots_api_client/v2_pydantic/rest.py +188 -0
@@ -0,0 +1,241 @@
1
+ Metadata-Version: 2.4
2
+ Name: wandelbots_api_client
3
+ Version: 26.3.0.dev29
4
+ Summary: Wandelbots Python Client: Interact with robots in an easy and intuitive way.
5
+ Author: Copyright (c) 2025 Wandelbots GmbH
6
+ Author-email: Copyright (c) 2025 Wandelbots GmbH <contact@wandelbots.com>
7
+ License-Expression: Apache-2.0
8
+ Classifier: Typing :: Typed
9
+ Classifier: Topic :: Software Development
10
+ Classifier: Operating System :: Microsoft :: Windows
11
+ Classifier: Operating System :: POSIX
12
+ Classifier: Operating System :: Unix
13
+ Classifier: Operating System :: MacOS
14
+ Requires-Dist: urllib3>=1.25.3
15
+ Requires-Dist: python-dateutil>=2.8.2
16
+ Requires-Dist: aiohttp>=3.8.4
17
+ Requires-Dist: aiohttp-retry>=2.8.3
18
+ Requires-Dist: pydantic>=2
19
+ Requires-Dist: websockets
20
+ Requires-Dist: typing-extensions>=4.7.1
21
+ Requires-Dist: furl
22
+ Requires-Dist: pyhumps
23
+ Requires-Dist: pydantic-core
24
+ Requires-Dist: annotated-types
25
+ Requires-Dist: pydantic[email]
26
+ Requires-Python: >=3.9
27
+ Project-URL: homepage, https://wandelbots.com/
28
+ Description-Content-Type: text/markdown
29
+
30
+ # wandelbots-api-client
31
+ Interact with robots in an easy and intuitive way.
32
+
33
+ - Compatible API version: 1.4.0 dev (can be found at the home screen of your instance -> API)
34
+ - Package version: 26.3.0.dev29
35
+
36
+ ## Requirements.
37
+ Python >=3.11, Python < 4.0
38
+
39
+ ## Installation
40
+
41
+ ```bash
42
+ pip install wandelbots-api-client
43
+ ```
44
+
45
+ OR with uv:
46
+
47
+ ```bash
48
+ uv init
49
+ uv add wandelbots-api-client
50
+ ```
51
+
52
+ ## Authentication
53
+
54
+ The SDK supports OAuth2 device code flow authentication for both Entra ID (formerly Azure AD) and Auth0. This authentication method is ideal for CLI applications, scripts, and headless environments.
55
+
56
+ ### Entra ID (Azure AD) Authentication
57
+
58
+ ```python
59
+ import asyncio
60
+ from wandelbots_api_client import ApiClient, Configuration
61
+ from wandelbots_api_client.authorization import EntraIDConfig
62
+
63
+ async def main():
64
+ # Initialize Entra ID config
65
+ auth = EntraIDConfig(
66
+ client_id="GIVEN_CLIENT_ID",
67
+ tenant_id="GIVEN_TENANT_ID",
68
+ scope="openid profile email offline_access GIVEN_CLIENT_ID\.default"
69
+ )
70
+
71
+ # Request device code
72
+ device_response = await auth.request_device_code()
73
+
74
+ # Display user instructions
75
+ print(f"\nPlease authenticate:")
76
+ print(f"1. Go to: {device_response['verification_uri']}")
77
+ print(f"2. Enter code: {device_response['user_code']}")
78
+ print(f"Waiting for authentication...\n")
79
+
80
+ # Poll for token (will wait until user completes authentication)
81
+ token_response = await auth.poll_token_endpoint(
82
+ device_code=device_response["device_code"],
83
+ interval=device_response.get("interval", 5),
84
+ expires_in=device_response.get("expires_in", 900)
85
+ )
86
+
87
+ print("Authentication successful!")
88
+
89
+ # Configure API client with access token
90
+ config = Configuration(
91
+ host="https://your-instance.wandelbots.io",
92
+ access_token=token_response["access_token"]
93
+ )
94
+
95
+ async with ApiClient(configuration=config) as api_client:
96
+ # Use the API client for authenticated requests
97
+ # Example: api = YourApi(api_client)
98
+ # result = await api.your_method()
99
+ pass
100
+
101
+ # Optionally refresh the token later
102
+ if "refresh_token" in token_response:
103
+ new_token = await auth.refresh_token(token_response["refresh_token"])
104
+ config.access_token = new_token["access_token"]
105
+
106
+ asyncio.run(main())
107
+ ```
108
+
109
+ ### Auth0 Authentication
110
+
111
+ ```python
112
+ import asyncio
113
+ from wandelbots_api_client import ApiClient, Configuration
114
+ from wandelbots_api_client.authorization import Auth0Config
115
+
116
+ async def main():
117
+ # Initialize Auth0 config
118
+ auth = Auth0Config(
119
+ client_id="GIVEN_CLIENT_ID",
120
+ domain="auth.portal.wandelbots.io",
121
+ audience="GIVEN_AUDIENCE",
122
+ scope="openid profile email offline_access"
123
+ )
124
+
125
+ # Or use default config from template variables
126
+ # auth = Auth0Config.default()
127
+
128
+ # Request device code
129
+ device_response = await auth.request_device_code()
130
+
131
+ # Display user instructions
132
+ print(f"\nPlease authenticate:")
133
+ print(f"1. Go to: {device_response['verification_uri']}")
134
+ print(f"2. Enter code: {device_response['user_code']}")
135
+ print(f"Waiting for authentication...\n")
136
+
137
+ # Poll for token (will wait until user completes authentication)
138
+ token_response = await auth.poll_token_endpoint(
139
+ device_code=device_response["device_code"],
140
+ interval=device_response.get("interval", 5),
141
+ expires_in=device_response.get("expires_in", 900)
142
+ )
143
+
144
+ print("Authentication successful!")
145
+
146
+ # Configure API client with access token
147
+ config = Configuration(
148
+ host="https://XYZ.instances.wandelbots.io",
149
+ access_token=token_response["access_token"]
150
+ )
151
+
152
+ async with ApiClient(configuration=config) as api_client:
153
+ # Use the API client for authenticated requests
154
+ # Example: api = YourApi(api_client)
155
+ # result = await api.your_method()
156
+ pass
157
+
158
+ asyncio.run(main())
159
+ ```
160
+
161
+ ### Token Refresh
162
+
163
+ To maintain long-lived sessions, use refresh tokens to obtain new access tokens:
164
+
165
+ ```python
166
+ # When your access token expires
167
+ if "refresh_token" in token_response:
168
+ refreshed = await auth.refresh_token(token_response["refresh_token"])
169
+ config.access_token = refreshed["access_token"]
170
+
171
+ # Update refresh token if a new one is provided
172
+ if "refresh_token" in refreshed:
173
+ token_response["refresh_token"] = refreshed["refresh_token"]
174
+ ```
175
+
176
+ ### Complete Example with Error Handling
177
+
178
+ ```python
179
+ import asyncio
180
+ from wandelbots_api_client import ApiClient, Configuration
181
+ from wandelbots_api_client.authorization import EntraIDConfig
182
+
183
+ async def authenticate_and_call_api():
184
+ """Complete example with error handling."""
185
+ try:
186
+ # Initialize authentication
187
+ auth = EntraIDConfig(
188
+ client_id="GIVEN_CLIENT_ID",
189
+ tenant_id="GIVEN_TENANT_ID",
190
+ scopen="openid profile email offline_access GIVEN_CLIENT_ID\.default"
191
+ )
192
+
193
+ # Verify configuration
194
+ if not auth.is_complete():
195
+ raise ValueError("Authentication configuration is incomplete")
196
+
197
+ # Request device code
198
+ device_response = await auth.request_device_code()
199
+
200
+ # Display instructions
201
+ print(f"\n{'='*60}")
202
+ print(f"AUTHENTICATION REQUIRED")
203
+ print(f"{'='*60}")
204
+ print(f"Visit: {device_response['verification_uri']}")
205
+ print(f"Enter code: {device_response['user_code']}")
206
+ print(f"{'='*60}\n")
207
+
208
+ # Wait for user to authenticate
209
+ token_response = await auth.poll_token_endpoint(
210
+ device_code=device_response["device_code"],
211
+ interval=device_response.get("interval", 5),
212
+ expires_in=device_response.get("expires_in", 900)
213
+ )
214
+
215
+ print("✓ Authentication successful!\n")
216
+
217
+ # Create API client
218
+ config = Configuration(
219
+ host="https://XYZ.instance.wandelbots.io",
220
+ access_token=token_response["access_token"]
221
+ )
222
+
223
+ async with ApiClient(configuration=config) as api_client:
224
+ # Make authenticated API calls here
225
+ # Example:
226
+ # from wandelbots_api_client.api import YourApi
227
+ # api = YourApi(api_client)
228
+ # result = await api.your_method()
229
+ print("API client ready for requests")
230
+
231
+ except TimeoutError:
232
+ print("Authentication timed out. Please try again.")
233
+ except ValueError as e:
234
+ print(f"Configuration error: {e}")
235
+ except Exception as e:
236
+ print(f"Authentication failed: {e}")
237
+
238
+ asyncio.run(authenticate_and_call_api())
239
+ ```
240
+
241
+
@@ -0,0 +1,212 @@
1
+ # wandelbots-api-client
2
+ Interact with robots in an easy and intuitive way.
3
+
4
+ - Compatible API version: 1.4.0 dev (can be found at the home screen of your instance -> API)
5
+ - Package version: 26.3.0.dev29
6
+
7
+ ## Requirements.
8
+ Python >=3.11, Python < 4.0
9
+
10
+ ## Installation
11
+
12
+ ```bash
13
+ pip install wandelbots-api-client
14
+ ```
15
+
16
+ OR with uv:
17
+
18
+ ```bash
19
+ uv init
20
+ uv add wandelbots-api-client
21
+ ```
22
+
23
+ ## Authentication
24
+
25
+ The SDK supports OAuth2 device code flow authentication for both Entra ID (formerly Azure AD) and Auth0. This authentication method is ideal for CLI applications, scripts, and headless environments.
26
+
27
+ ### Entra ID (Azure AD) Authentication
28
+
29
+ ```python
30
+ import asyncio
31
+ from wandelbots_api_client import ApiClient, Configuration
32
+ from wandelbots_api_client.authorization import EntraIDConfig
33
+
34
+ async def main():
35
+ # Initialize Entra ID config
36
+ auth = EntraIDConfig(
37
+ client_id="GIVEN_CLIENT_ID",
38
+ tenant_id="GIVEN_TENANT_ID",
39
+ scope="openid profile email offline_access GIVEN_CLIENT_ID\.default"
40
+ )
41
+
42
+ # Request device code
43
+ device_response = await auth.request_device_code()
44
+
45
+ # Display user instructions
46
+ print(f"\nPlease authenticate:")
47
+ print(f"1. Go to: {device_response['verification_uri']}")
48
+ print(f"2. Enter code: {device_response['user_code']}")
49
+ print(f"Waiting for authentication...\n")
50
+
51
+ # Poll for token (will wait until user completes authentication)
52
+ token_response = await auth.poll_token_endpoint(
53
+ device_code=device_response["device_code"],
54
+ interval=device_response.get("interval", 5),
55
+ expires_in=device_response.get("expires_in", 900)
56
+ )
57
+
58
+ print("Authentication successful!")
59
+
60
+ # Configure API client with access token
61
+ config = Configuration(
62
+ host="https://your-instance.wandelbots.io",
63
+ access_token=token_response["access_token"]
64
+ )
65
+
66
+ async with ApiClient(configuration=config) as api_client:
67
+ # Use the API client for authenticated requests
68
+ # Example: api = YourApi(api_client)
69
+ # result = await api.your_method()
70
+ pass
71
+
72
+ # Optionally refresh the token later
73
+ if "refresh_token" in token_response:
74
+ new_token = await auth.refresh_token(token_response["refresh_token"])
75
+ config.access_token = new_token["access_token"]
76
+
77
+ asyncio.run(main())
78
+ ```
79
+
80
+ ### Auth0 Authentication
81
+
82
+ ```python
83
+ import asyncio
84
+ from wandelbots_api_client import ApiClient, Configuration
85
+ from wandelbots_api_client.authorization import Auth0Config
86
+
87
+ async def main():
88
+ # Initialize Auth0 config
89
+ auth = Auth0Config(
90
+ client_id="GIVEN_CLIENT_ID",
91
+ domain="auth.portal.wandelbots.io",
92
+ audience="GIVEN_AUDIENCE",
93
+ scope="openid profile email offline_access"
94
+ )
95
+
96
+ # Or use default config from template variables
97
+ # auth = Auth0Config.default()
98
+
99
+ # Request device code
100
+ device_response = await auth.request_device_code()
101
+
102
+ # Display user instructions
103
+ print(f"\nPlease authenticate:")
104
+ print(f"1. Go to: {device_response['verification_uri']}")
105
+ print(f"2. Enter code: {device_response['user_code']}")
106
+ print(f"Waiting for authentication...\n")
107
+
108
+ # Poll for token (will wait until user completes authentication)
109
+ token_response = await auth.poll_token_endpoint(
110
+ device_code=device_response["device_code"],
111
+ interval=device_response.get("interval", 5),
112
+ expires_in=device_response.get("expires_in", 900)
113
+ )
114
+
115
+ print("Authentication successful!")
116
+
117
+ # Configure API client with access token
118
+ config = Configuration(
119
+ host="https://XYZ.instances.wandelbots.io",
120
+ access_token=token_response["access_token"]
121
+ )
122
+
123
+ async with ApiClient(configuration=config) as api_client:
124
+ # Use the API client for authenticated requests
125
+ # Example: api = YourApi(api_client)
126
+ # result = await api.your_method()
127
+ pass
128
+
129
+ asyncio.run(main())
130
+ ```
131
+
132
+ ### Token Refresh
133
+
134
+ To maintain long-lived sessions, use refresh tokens to obtain new access tokens:
135
+
136
+ ```python
137
+ # When your access token expires
138
+ if "refresh_token" in token_response:
139
+ refreshed = await auth.refresh_token(token_response["refresh_token"])
140
+ config.access_token = refreshed["access_token"]
141
+
142
+ # Update refresh token if a new one is provided
143
+ if "refresh_token" in refreshed:
144
+ token_response["refresh_token"] = refreshed["refresh_token"]
145
+ ```
146
+
147
+ ### Complete Example with Error Handling
148
+
149
+ ```python
150
+ import asyncio
151
+ from wandelbots_api_client import ApiClient, Configuration
152
+ from wandelbots_api_client.authorization import EntraIDConfig
153
+
154
+ async def authenticate_and_call_api():
155
+ """Complete example with error handling."""
156
+ try:
157
+ # Initialize authentication
158
+ auth = EntraIDConfig(
159
+ client_id="GIVEN_CLIENT_ID",
160
+ tenant_id="GIVEN_TENANT_ID",
161
+ scopen="openid profile email offline_access GIVEN_CLIENT_ID\.default"
162
+ )
163
+
164
+ # Verify configuration
165
+ if not auth.is_complete():
166
+ raise ValueError("Authentication configuration is incomplete")
167
+
168
+ # Request device code
169
+ device_response = await auth.request_device_code()
170
+
171
+ # Display instructions
172
+ print(f"\n{'='*60}")
173
+ print(f"AUTHENTICATION REQUIRED")
174
+ print(f"{'='*60}")
175
+ print(f"Visit: {device_response['verification_uri']}")
176
+ print(f"Enter code: {device_response['user_code']}")
177
+ print(f"{'='*60}\n")
178
+
179
+ # Wait for user to authenticate
180
+ token_response = await auth.poll_token_endpoint(
181
+ device_code=device_response["device_code"],
182
+ interval=device_response.get("interval", 5),
183
+ expires_in=device_response.get("expires_in", 900)
184
+ )
185
+
186
+ print("✓ Authentication successful!\n")
187
+
188
+ # Create API client
189
+ config = Configuration(
190
+ host="https://XYZ.instance.wandelbots.io",
191
+ access_token=token_response["access_token"]
192
+ )
193
+
194
+ async with ApiClient(configuration=config) as api_client:
195
+ # Make authenticated API calls here
196
+ # Example:
197
+ # from wandelbots_api_client.api import YourApi
198
+ # api = YourApi(api_client)
199
+ # result = await api.your_method()
200
+ print("API client ready for requests")
201
+
202
+ except TimeoutError:
203
+ print("Authentication timed out. Please try again.")
204
+ except ValueError as e:
205
+ print(f"Configuration error: {e}")
206
+ except Exception as e:
207
+ print(f"Authentication failed: {e}")
208
+
209
+ asyncio.run(authenticate_and_call_api())
210
+ ```
211
+
212
+
@@ -0,0 +1,95 @@
1
+ [project]
2
+ name = "wandelbots_api_client"
3
+ version = "26.3.0.dev29"
4
+ description = "Wandelbots Python Client: Interact with robots in an easy and intuitive way. "
5
+ authors = [{ name="Copyright (c) 2025 Wandelbots GmbH", email="contact@wandelbots.com" }]
6
+ license = "Apache-2.0"
7
+ readme = "README.md"
8
+ urls = { homepage = "https://wandelbots.com/" }
9
+
10
+ classifiers = [
11
+ 'Typing :: Typed',
12
+ 'Topic :: Software Development',
13
+ 'Operating System :: Microsoft :: Windows',
14
+ 'Operating System :: POSIX',
15
+ 'Operating System :: Unix',
16
+ 'Operating System :: MacOS',
17
+ ]
18
+
19
+ requires-python = ">=3.9"
20
+
21
+ dependencies = [
22
+ "urllib3 >= 1.25.3",
23
+ "python-dateutil >=2.8.2",
24
+ "aiohttp >= 3.8.4",
25
+ "aiohttp-retry >= 2.8.3",
26
+ "pydantic >=2",
27
+ "websockets",
28
+ "typing-extensions >=4.7.1",
29
+ "furl",
30
+ "pyhumps",
31
+ "pydantic_core",
32
+ "annotated-types",
33
+ "pydantic[email]",
34
+ ]
35
+
36
+ [dependency-groups]
37
+ dev = [
38
+ "pytest>=7.2.1",
39
+ "types-python-dateutil>=2.8.19.14",
40
+ "mypy>=1.4.1"
41
+ ]
42
+
43
+ [build-system]
44
+ requires = ["uv_build>=0.10.9,<0.11.0"]
45
+ build-backend = "uv_build"
46
+
47
+ [tool.uv.build-backend]
48
+ module-root = ""
49
+ module-name = "wandelbots_api_client"
50
+
51
+ [tool.pylint.'MESSAGES CONTROL']
52
+ extension-pkg-whitelist = "pydantic"
53
+
54
+ [tool.mypy]
55
+ files = [
56
+ "wandelbots_api_client",
57
+ #"test", # auto-generated tests
58
+ #"tests", # hand-written tests
59
+ ]
60
+
61
+ # TODO: enable "strict" once all these individual checks are passing
62
+ # strict = true
63
+
64
+ # List from: https://mypy.readthedocs.io/en/stable/existing_code.html#introduce-stricter-options
65
+ warn_unused_configs = true
66
+ warn_redundant_casts = true
67
+ warn_unused_ignores = true
68
+
69
+ ## Getting these passing should be easy
70
+ strict_equality = true
71
+ extra_checks = true
72
+
73
+ ## Strongly recommend enabling this one as soon as you can
74
+ check_untyped_defs = true
75
+
76
+ ## These shouldn't be too much additional work, but may be tricky to
77
+ ## get passing if you use a lot of untyped libraries
78
+ disallow_subclassing_any = true
79
+ disallow_untyped_decorators = true
80
+ disallow_any_generics = true
81
+
82
+ ### These next few are various gradations of forcing use of type annotations
83
+ #disallow_untyped_calls = true
84
+ #disallow_incomplete_defs = true
85
+ #disallow_untyped_defs = true
86
+ #
87
+ ### This one isn't too hard to get passing, but return on investment is lower
88
+ #no_implicit_reexport = true
89
+ #
90
+ ### This one can be tricky to get passing if you use a lot of untyped libraries
91
+ #warn_return_any = true
92
+
93
+ [[tool.mypy.overrides]]
94
+ module = ["furl.*"]
95
+ follow_untyped_imports = true
@@ -0,0 +1,48 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Wandelbots NOVA API
7
+
8
+ Interact with robots in an easy and intuitive way.
9
+
10
+ The version of the OpenAPI document: 1.4.0 dev
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+ __version__ = "26.3.0.dev29"
17
+
18
+ from . import models
19
+ from . import api
20
+ from . import api_client
21
+ from . import exceptions
22
+ from . import configuration
23
+
24
+ from .api import *
25
+
26
+ # import ApiClient
27
+ from .api_response import ApiResponse
28
+ from .api_client import ApiClient
29
+ from .configuration import Configuration
30
+ from .exceptions import OpenApiException
31
+ from .exceptions import ApiTypeError
32
+ from .exceptions import ApiValueError
33
+ from .exceptions import ApiKeyError
34
+ from .exceptions import ApiAttributeError
35
+ from .exceptions import ApiException
36
+
37
+
38
+ __all__ = [
39
+ "ApiResponse",
40
+ "ApiClient",
41
+ "Configuration",
42
+ "OpenApiException",
43
+ "ApiTypeError",
44
+ "ApiValueError",
45
+ "ApiKeyError",
46
+ "ApiAttributeError",
47
+ "ApiException",
48
+ ]
@@ -0,0 +1,63 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from .application_api import ApplicationApi
5
+ from .cell_api import CellApi
6
+ from .controller_api import ControllerApi
7
+ from .controller_ios_api import ControllerIOsApi
8
+ from .coordinate_systems_api import CoordinateSystemsApi
9
+ from .device_configuration_api import DeviceConfigurationApi
10
+ from .library_program_api import LibraryProgramApi
11
+ from .library_program_metadata_api import LibraryProgramMetadataApi
12
+ from .library_recipe_api import LibraryRecipeApi
13
+ from .library_recipe_metadata_api import LibraryRecipeMetadataApi
14
+ from .license_api import LicenseApi
15
+ from .motion_api import MotionApi
16
+ from .motion_group_api import MotionGroupApi
17
+ from .motion_group_infos_api import MotionGroupInfosApi
18
+ from .motion_group_jogging_api import MotionGroupJoggingApi
19
+ from .motion_group_kinematic_api import MotionGroupKinematicApi
20
+ from .program_api import ProgramApi
21
+ from .program_operator_api import ProgramOperatorApi
22
+ from .program_values_api import ProgramValuesApi
23
+ from .store_collision_components_api import StoreCollisionComponentsApi
24
+ from .store_collision_scenes_api import StoreCollisionScenesApi
25
+ from .store_object_api import StoreObjectApi
26
+ from .system_api import SystemApi
27
+ from .version_api import VersionApi
28
+ from .virtual_robot_api import VirtualRobotApi
29
+ from .virtual_robot_behavior_api import VirtualRobotBehaviorApi
30
+ from .virtual_robot_mode_api import VirtualRobotModeApi
31
+ from .virtual_robot_setup_api import VirtualRobotSetupApi
32
+
33
+
34
+ __all__ = [
35
+ "ApplicationApi",
36
+ "CellApi",
37
+ "ControllerApi",
38
+ "ControllerIOsApi",
39
+ "CoordinateSystemsApi",
40
+ "DeviceConfigurationApi",
41
+ "LibraryProgramApi",
42
+ "LibraryProgramMetadataApi",
43
+ "LibraryRecipeApi",
44
+ "LibraryRecipeMetadataApi",
45
+ "LicenseApi",
46
+ "MotionApi",
47
+ "MotionGroupApi",
48
+ "MotionGroupInfosApi",
49
+ "MotionGroupJoggingApi",
50
+ "MotionGroupKinematicApi",
51
+ "ProgramApi",
52
+ "ProgramOperatorApi",
53
+ "ProgramValuesApi",
54
+ "StoreCollisionComponentsApi",
55
+ "StoreCollisionScenesApi",
56
+ "StoreObjectApi",
57
+ "SystemApi",
58
+ "VersionApi",
59
+ "VirtualRobotApi",
60
+ "VirtualRobotBehaviorApi",
61
+ "VirtualRobotModeApi",
62
+ "VirtualRobotSetupApi",
63
+ ]