wandelbots-api-client 25.6.0.dev7__py3-none-any.whl → 25.10.0rc2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (658) hide show
  1. wandelbots_api_client/__init__.py +2 -3
  2. wandelbots_api_client/api/__init__.py +2 -0
  3. wandelbots_api_client/api/application_api.py +1 -2
  4. wandelbots_api_client/api/cell_api.py +1 -2
  5. wandelbots_api_client/api/controller_api.py +13 -8
  6. wandelbots_api_client/api/controller_ios_api.py +3 -6
  7. wandelbots_api_client/api/coordinate_systems_api.py +1 -2
  8. wandelbots_api_client/api/device_configuration_api.py +1 -2
  9. wandelbots_api_client/api/library_program_api.py +1 -2
  10. wandelbots_api_client/api/library_program_metadata_api.py +1 -2
  11. wandelbots_api_client/api/library_recipe_api.py +1 -2
  12. wandelbots_api_client/api/library_recipe_metadata_api.py +1 -2
  13. wandelbots_api_client/api/license_api.py +1 -2
  14. wandelbots_api_client/api/motion_api.py +59 -8
  15. wandelbots_api_client/api/motion_group_api.py +1 -2
  16. wandelbots_api_client/api/motion_group_infos_api.py +3 -2
  17. wandelbots_api_client/api/motion_group_jogging_api.py +53 -8
  18. wandelbots_api_client/api/motion_group_kinematic_api.py +1 -2
  19. wandelbots_api_client/api/program_api.py +1 -2
  20. wandelbots_api_client/api/program_operator_api.py +1 -2
  21. wandelbots_api_client/api/program_values_api.py +1 -2
  22. wandelbots_api_client/api/store_collision_components_api.py +10 -8
  23. wandelbots_api_client/api/store_collision_scenes_api.py +1 -2
  24. wandelbots_api_client/api/store_object_api.py +1 -2
  25. wandelbots_api_client/api/system_api.py +1 -2
  26. wandelbots_api_client/api/version_api.py +284 -0
  27. wandelbots_api_client/api/virtual_robot_api.py +1 -2
  28. wandelbots_api_client/api/virtual_robot_behavior_api.py +27 -5
  29. wandelbots_api_client/api/virtual_robot_mode_api.py +1 -2
  30. wandelbots_api_client/api/virtual_robot_setup_api.py +16 -17
  31. wandelbots_api_client/api_client.py +14 -7
  32. wandelbots_api_client/authorization.py +244 -0
  33. wandelbots_api_client/configuration.py +18 -7
  34. wandelbots_api_client/exceptions.py +1 -1
  35. wandelbots_api_client/models/__init__.py +3 -4
  36. wandelbots_api_client/models/abb_controller.py +5 -5
  37. wandelbots_api_client/models/abb_controller_egm_server.py +3 -3
  38. wandelbots_api_client/models/activate_license_request.py +2 -2
  39. wandelbots_api_client/models/add_request.py +3 -3
  40. wandelbots_api_client/models/all_joint_positions_request.py +3 -3
  41. wandelbots_api_client/models/all_joint_positions_response.py +2 -2
  42. wandelbots_api_client/{v2/models/error2.py → models/api_version.py} +10 -10
  43. wandelbots_api_client/models/app.py +8 -8
  44. wandelbots_api_client/models/array_input.py +2 -2
  45. wandelbots_api_client/models/array_output.py +2 -2
  46. wandelbots_api_client/models/behavior.py +1 -1
  47. wandelbots_api_client/models/blending_auto.py +3 -3
  48. wandelbots_api_client/models/blending_position.py +3 -3
  49. wandelbots_api_client/models/box.py +5 -5
  50. wandelbots_api_client/models/box2.py +6 -6
  51. wandelbots_api_client/models/box3.py +6 -6
  52. wandelbots_api_client/models/capsule.py +3 -3
  53. wandelbots_api_client/models/capsule2.py +4 -4
  54. wandelbots_api_client/models/capsule3.py +4 -4
  55. wandelbots_api_client/models/capture.py +2 -2
  56. wandelbots_api_client/models/cell.py +4 -4
  57. wandelbots_api_client/models/circle.py +3 -3
  58. wandelbots_api_client/models/code_with_arguments.py +7 -6
  59. wandelbots_api_client/models/collection_value.py +1 -1
  60. wandelbots_api_client/models/collider.py +4 -4
  61. wandelbots_api_client/models/collider_input.py +4 -4
  62. wandelbots_api_client/models/collider_output.py +4 -4
  63. wandelbots_api_client/models/collider_output_shape.py +1 -1
  64. wandelbots_api_client/models/collider_shape.py +1 -41
  65. wandelbots_api_client/models/collision.py +7 -7
  66. wandelbots_api_client/models/collision_contact.py +3 -3
  67. wandelbots_api_client/models/collision_motion_group.py +7 -6
  68. wandelbots_api_client/models/collision_motion_group_assembly.py +9 -8
  69. wandelbots_api_client/models/collision_robot_configuration_input.py +12 -10
  70. wandelbots_api_client/models/collision_robot_configuration_output.py +12 -10
  71. wandelbots_api_client/models/collision_scene.py +11 -9
  72. wandelbots_api_client/models/collision_scene_assembly.py +14 -12
  73. wandelbots_api_client/models/command.py +7 -7
  74. wandelbots_api_client/models/command_settings.py +4 -4
  75. wandelbots_api_client/models/comparator.py +1 -1
  76. wandelbots_api_client/models/compound.py +2 -2
  77. wandelbots_api_client/models/container_environment_inner.py +3 -3
  78. wandelbots_api_client/models/container_image.py +4 -4
  79. wandelbots_api_client/models/container_image_secrets_inner.py +2 -2
  80. wandelbots_api_client/models/container_resources.py +2 -2
  81. wandelbots_api_client/models/container_storage.py +3 -3
  82. wandelbots_api_client/models/controller_capabilities.py +3 -3
  83. wandelbots_api_client/models/controller_instance.py +9 -9
  84. wandelbots_api_client/models/controller_instance_list.py +2 -2
  85. wandelbots_api_client/models/convex_hull.py +2 -2
  86. wandelbots_api_client/models/convex_hull2.py +3 -3
  87. wandelbots_api_client/models/convex_hull3.py +3 -3
  88. wandelbots_api_client/models/coordinate_system.py +6 -6
  89. wandelbots_api_client/models/coordinate_systems.py +2 -2
  90. wandelbots_api_client/models/create_device_request_inner.py +1 -1
  91. wandelbots_api_client/models/create_program_run200_response.py +2 -2
  92. wandelbots_api_client/models/create_program_run_request.py +2 -2
  93. wandelbots_api_client/models/create_trigger200_response.py +2 -2
  94. wandelbots_api_client/models/create_trigger_request.py +7 -7
  95. wandelbots_api_client/models/cubic_spline.py +2 -2
  96. wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py +3 -3
  97. wandelbots_api_client/models/cubic_spline_parameter.py +3 -3
  98. wandelbots_api_client/models/cycle_time.py +2 -2
  99. wandelbots_api_client/models/cylinder.py +3 -3
  100. wandelbots_api_client/models/cylinder2.py +4 -4
  101. wandelbots_api_client/models/cylinder3.py +4 -4
  102. wandelbots_api_client/models/dh_parameter.py +6 -6
  103. wandelbots_api_client/models/direction.py +1 -1
  104. wandelbots_api_client/models/direction_jogging_request.py +10 -10
  105. wandelbots_api_client/models/error.py +3 -3
  106. wandelbots_api_client/models/execute_trajectory_request.py +1 -1
  107. wandelbots_api_client/models/execute_trajectory_response.py +1 -1
  108. wandelbots_api_client/models/execution_result.py +4 -4
  109. wandelbots_api_client/models/external_joint_stream_datapoint.py +3 -3
  110. wandelbots_api_client/models/external_joint_stream_datapoint_value.py +5 -5
  111. wandelbots_api_client/models/fanuc_controller.py +3 -3
  112. wandelbots_api_client/models/feedback_collision.py +5 -5
  113. wandelbots_api_client/models/feedback_joint_limit_exceeded.py +4 -4
  114. wandelbots_api_client/models/feedback_out_of_workspace.py +3 -3
  115. wandelbots_api_client/models/feedback_singularity.py +4 -4
  116. wandelbots_api_client/models/flag.py +2 -2
  117. wandelbots_api_client/models/force_vector.py +4 -4
  118. wandelbots_api_client/models/geometry.py +12 -12
  119. wandelbots_api_client/models/get_all_program_runs200_response.py +2 -2
  120. wandelbots_api_client/models/get_all_triggers200_response.py +2 -2
  121. wandelbots_api_client/models/get_mode_response.py +2 -2
  122. wandelbots_api_client/models/get_trajectory_response.py +2 -2
  123. wandelbots_api_client/models/get_trajectory_sample_response.py +2 -2
  124. wandelbots_api_client/models/google_protobuf_any.py +2 -2
  125. wandelbots_api_client/models/http_exception_response.py +2 -2
  126. wandelbots_api_client/models/http_validation_error.py +2 -2
  127. wandelbots_api_client/models/http_validation_error2.py +2 -2
  128. wandelbots_api_client/models/image_credentials.py +4 -4
  129. wandelbots_api_client/models/info_service_capabilities.py +8 -8
  130. wandelbots_api_client/models/initialize_movement_request.py +6 -6
  131. wandelbots_api_client/models/initialize_movement_response.py +2 -2
  132. wandelbots_api_client/models/initialize_movement_response_init_response.py +3 -3
  133. wandelbots_api_client/models/io.py +6 -6
  134. wandelbots_api_client/models/io_description.py +10 -10
  135. wandelbots_api_client/models/io_value.py +5 -5
  136. wandelbots_api_client/models/ios.py +2 -2
  137. wandelbots_api_client/models/jogging_response.py +4 -4
  138. wandelbots_api_client/models/jogging_service_capabilities.py +3 -3
  139. wandelbots_api_client/models/joint_jogging_request.py +6 -6
  140. wandelbots_api_client/models/joint_limit.py +5 -5
  141. wandelbots_api_client/models/joint_limit_exceeded.py +3 -3
  142. wandelbots_api_client/models/joint_position_request.py +4 -4
  143. wandelbots_api_client/models/joint_trajectory.py +4 -4
  144. wandelbots_api_client/models/joints.py +2 -2
  145. wandelbots_api_client/models/kinematic_service_capabilities.py +4 -4
  146. wandelbots_api_client/models/kuka_controller.py +10 -8
  147. wandelbots_api_client/models/kuka_controller_rsi_server.py +3 -3
  148. wandelbots_api_client/models/license.py +11 -11
  149. wandelbots_api_client/models/license_status.py +3 -3
  150. wandelbots_api_client/models/license_status_enum.py +1 -1
  151. wandelbots_api_client/models/limit_settings.py +13 -13
  152. wandelbots_api_client/models/limits_override.py +7 -7
  153. wandelbots_api_client/models/list_devices200_response_inner.py +1 -1
  154. wandelbots_api_client/models/list_io_descriptions_response.py +2 -2
  155. wandelbots_api_client/models/list_io_values_response.py +2 -2
  156. wandelbots_api_client/models/list_payloads_response.py +2 -2
  157. wandelbots_api_client/models/list_program_metadata_response.py +2 -2
  158. wandelbots_api_client/models/list_recipe_metadata_response.py +2 -2
  159. wandelbots_api_client/models/list_response.py +2 -2
  160. wandelbots_api_client/models/list_tcps_response.py +2 -2
  161. wandelbots_api_client/models/manufacturer.py +1 -1
  162. wandelbots_api_client/models/mode_change_response.py +5 -5
  163. wandelbots_api_client/models/motion_command.py +4 -4
  164. wandelbots_api_client/models/motion_command_blending.py +1 -1
  165. wandelbots_api_client/models/motion_command_path.py +1 -1
  166. wandelbots_api_client/models/motion_group_behavior_getter.py +2 -2
  167. wandelbots_api_client/models/motion_group_info.py +4 -4
  168. wandelbots_api_client/models/motion_group_infos.py +2 -2
  169. wandelbots_api_client/models/motion_group_instance.py +6 -6
  170. wandelbots_api_client/models/motion_group_instance_list.py +2 -2
  171. wandelbots_api_client/models/motion_group_joints.py +5 -5
  172. wandelbots_api_client/models/motion_group_physical.py +6 -6
  173. wandelbots_api_client/models/motion_group_specification.py +3 -3
  174. wandelbots_api_client/models/motion_group_state.py +13 -13
  175. wandelbots_api_client/models/motion_group_state_joint_limit_reached.py +2 -2
  176. wandelbots_api_client/models/motion_group_state_response.py +3 -3
  177. wandelbots_api_client/models/motion_id.py +2 -2
  178. wandelbots_api_client/models/motion_ids_list_response.py +2 -2
  179. wandelbots_api_client/models/motion_vector.py +4 -4
  180. wandelbots_api_client/models/mounting.py +3 -3
  181. wandelbots_api_client/models/move_request.py +9 -9
  182. wandelbots_api_client/models/move_response.py +3 -3
  183. wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py +5 -5
  184. wandelbots_api_client/models/movement.py +2 -2
  185. wandelbots_api_client/models/movement_error.py +2 -2
  186. wandelbots_api_client/models/movement_error_error.py +2 -2
  187. wandelbots_api_client/models/movement_movement.py +4 -4
  188. wandelbots_api_client/models/op_mode.py +2 -2
  189. wandelbots_api_client/models/opcua_node_value_trigger_config.py +4 -4
  190. wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py +1 -1
  191. wandelbots_api_client/models/optimizer_setup.py +8 -8
  192. wandelbots_api_client/models/out_of_workspace.py +2 -2
  193. wandelbots_api_client/models/path.py +2 -2
  194. wandelbots_api_client/models/path_cartesian_ptp.py +3 -3
  195. wandelbots_api_client/models/path_circle.py +4 -4
  196. wandelbots_api_client/models/path_cubic_spline.py +3 -3
  197. wandelbots_api_client/models/path_joint_ptp.py +3 -3
  198. wandelbots_api_client/models/path_line.py +3 -3
  199. wandelbots_api_client/models/pause_movement_request.py +3 -3
  200. wandelbots_api_client/models/pause_movement_response.py +2 -2
  201. wandelbots_api_client/models/pause_movement_response_pause_response.py +3 -3
  202. wandelbots_api_client/models/pause_on_io.py +3 -3
  203. wandelbots_api_client/models/payload.py +5 -5
  204. wandelbots_api_client/models/plan_collision_free_ptp_request.py +10 -9
  205. wandelbots_api_client/models/plan_collision_free_ptp_request_target.py +1 -1
  206. wandelbots_api_client/models/plan_failed_on_trajectory_response.py +10 -10
  207. wandelbots_api_client/models/plan_failed_response.py +8 -8
  208. wandelbots_api_client/models/plan_request.py +6 -6
  209. wandelbots_api_client/models/plan_response.py +4 -4
  210. wandelbots_api_client/models/plan_successful_response.py +3 -3
  211. wandelbots_api_client/models/plan_trajectory_failed_response.py +4 -4
  212. wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py +1 -1
  213. wandelbots_api_client/models/plan_trajectory_request.py +10 -9
  214. wandelbots_api_client/models/plan_trajectory_response.py +2 -2
  215. wandelbots_api_client/models/plan_trajectory_response_response.py +1 -1
  216. wandelbots_api_client/models/plane2.py +2 -2
  217. wandelbots_api_client/models/plane3.py +2 -2
  218. wandelbots_api_client/models/planned_motion.py +6 -6
  219. wandelbots_api_client/models/planner_pose.py +3 -3
  220. wandelbots_api_client/models/planning_limits.py +13 -13
  221. wandelbots_api_client/models/planning_limits_limit_range.py +3 -3
  222. wandelbots_api_client/models/playback_speed_request.py +3 -3
  223. wandelbots_api_client/models/playback_speed_response.py +2 -2
  224. wandelbots_api_client/models/playback_speed_response_playback_speed_response.py +2 -2
  225. wandelbots_api_client/models/point_cloud.py +2 -2
  226. wandelbots_api_client/models/pose.py +4 -4
  227. wandelbots_api_client/models/pose2.py +3 -3
  228. wandelbots_api_client/models/program_metadata.py +7 -7
  229. wandelbots_api_client/models/program_run.py +15 -14
  230. wandelbots_api_client/models/program_run_object.py +7 -7
  231. wandelbots_api_client/models/program_run_state.py +1 -1
  232. wandelbots_api_client/models/program_runner_reference.py +3 -3
  233. wandelbots_api_client/models/pyjectory_datatypes_core_pose.py +3 -3
  234. wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py +2 -2
  235. wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py +2 -2
  236. wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py +2 -2
  237. wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py +5 -5
  238. wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py +5 -5
  239. wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py +4 -4
  240. wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py +7 -7
  241. wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py +8 -8
  242. wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py +13 -11
  243. wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py +13 -11
  244. wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py +3 -3
  245. wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py +4 -4
  246. wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py +3 -3
  247. wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py +3 -3
  248. wandelbots_api_client/models/quaternion.py +5 -5
  249. wandelbots_api_client/models/recipe_metadata.py +8 -8
  250. wandelbots_api_client/models/rectangle.py +3 -3
  251. wandelbots_api_client/models/rectangle2.py +4 -4
  252. wandelbots_api_client/models/rectangle3.py +4 -4
  253. wandelbots_api_client/models/rectangular_capsule.py +4 -4
  254. wandelbots_api_client/models/rectangular_capsule2.py +5 -5
  255. wandelbots_api_client/models/rectangular_capsule3.py +5 -5
  256. wandelbots_api_client/models/release_channel.py +1 -1
  257. wandelbots_api_client/models/request.py +1 -1
  258. wandelbots_api_client/models/request1.py +1 -1
  259. wandelbots_api_client/models/response_get_value_programs_values_key_get.py +1 -1
  260. wandelbots_api_client/models/response_get_values_programs_values_get_value.py +1 -1
  261. wandelbots_api_client/models/robot_controller.py +3 -3
  262. wandelbots_api_client/models/robot_controller_configuration.py +1 -1
  263. wandelbots_api_client/models/robot_controller_state.py +8 -8
  264. wandelbots_api_client/models/robot_link_geometry.py +3 -3
  265. wandelbots_api_client/models/robot_state.py +3 -3
  266. wandelbots_api_client/models/robot_system_mode.py +1 -1
  267. wandelbots_api_client/models/robot_tcp.py +5 -5
  268. wandelbots_api_client/models/robot_tcps.py +2 -2
  269. wandelbots_api_client/models/rotation_angle_types.py +1 -1
  270. wandelbots_api_client/models/rotation_angles.py +3 -3
  271. wandelbots_api_client/models/safety_configuration.py +6 -6
  272. wandelbots_api_client/models/safety_setup.py +5 -5
  273. wandelbots_api_client/models/safety_setup_safety_settings.py +3 -3
  274. wandelbots_api_client/models/safety_setup_safety_zone.py +5 -5
  275. wandelbots_api_client/models/safety_zone.py +4 -4
  276. wandelbots_api_client/models/safety_zone_limits.py +3 -3
  277. wandelbots_api_client/models/safety_zone_violation.py +2 -2
  278. wandelbots_api_client/models/service_status.py +3 -3
  279. wandelbots_api_client/models/service_status_phase.py +1 -1
  280. wandelbots_api_client/models/service_status_severity.py +1 -1
  281. wandelbots_api_client/models/service_status_status.py +4 -4
  282. wandelbots_api_client/models/set_io.py +3 -3
  283. wandelbots_api_client/models/set_playback_speed.py +3 -3
  284. wandelbots_api_client/models/single_joint_limit.py +3 -3
  285. wandelbots_api_client/models/singularity.py +3 -3
  286. wandelbots_api_client/models/singularity_type_enum.py +1 -1
  287. wandelbots_api_client/models/sphere.py +2 -2
  288. wandelbots_api_client/models/sphere2.py +3 -3
  289. wandelbots_api_client/models/sphere3.py +3 -3
  290. wandelbots_api_client/models/standstill.py +2 -2
  291. wandelbots_api_client/models/standstill_reason.py +1 -1
  292. wandelbots_api_client/models/standstill_standstill.py +4 -4
  293. wandelbots_api_client/models/start_movement_request.py +6 -6
  294. wandelbots_api_client/models/start_on_io.py +3 -3
  295. wandelbots_api_client/models/status.py +4 -4
  296. wandelbots_api_client/models/stop_response.py +4 -4
  297. wandelbots_api_client/models/store_value.py +1 -1
  298. wandelbots_api_client/models/stream_move_backward.py +2 -2
  299. wandelbots_api_client/models/stream_move_forward.py +2 -2
  300. wandelbots_api_client/models/stream_move_playback_speed.py +2 -2
  301. wandelbots_api_client/models/stream_move_request.py +1 -1
  302. wandelbots_api_client/models/stream_move_response.py +4 -4
  303. wandelbots_api_client/models/stream_move_to_trajectory.py +2 -2
  304. wandelbots_api_client/models/stream_stop.py +2 -2
  305. wandelbots_api_client/models/tcp_pose.py +5 -5
  306. wandelbots_api_client/models/tcp_pose_request.py +5 -5
  307. wandelbots_api_client/models/tool_geometry.py +3 -3
  308. wandelbots_api_client/models/trajectory_sample.py +12 -12
  309. wandelbots_api_client/models/trigger_object.py +11 -11
  310. wandelbots_api_client/models/trigger_type.py +1 -1
  311. wandelbots_api_client/models/universalrobots_controller.py +3 -3
  312. wandelbots_api_client/models/update_nova_version_request.py +2 -2
  313. wandelbots_api_client/models/update_program_metadata_request.py +4 -4
  314. wandelbots_api_client/models/update_recipe_metadata_request.py +4 -4
  315. wandelbots_api_client/models/update_trigger_request.py +6 -6
  316. wandelbots_api_client/models/validation_error.py +4 -4
  317. wandelbots_api_client/models/validation_error2.py +4 -4
  318. wandelbots_api_client/models/validation_error2_loc_inner.py +1 -1
  319. wandelbots_api_client/models/validation_error_loc_inner.py +1 -1
  320. wandelbots_api_client/models/value.py +1 -1
  321. wandelbots_api_client/models/vector3d.py +4 -4
  322. wandelbots_api_client/models/version_number.py +9 -9
  323. wandelbots_api_client/models/virtual_controller.py +7 -7
  324. wandelbots_api_client/models/virtual_controller_types.py +17 -2
  325. wandelbots_api_client/models/virtual_robot_configuration.py +3 -3
  326. wandelbots_api_client/models/yaskawa_controller.py +3 -3
  327. wandelbots_api_client/rest.py +3 -2
  328. wandelbots_api_client/v2/__init__.py +3 -4
  329. wandelbots_api_client/v2/api/__init__.py +16 -16
  330. wandelbots_api_client/v2/api/application_api.py +11 -12
  331. wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +4555 -0
  332. wandelbots_api_client/v2/api/cell_api.py +8 -9
  333. wandelbots_api_client/v2/api/controller_api.py +206 -202
  334. wandelbots_api_client/v2/api/controller_inputs_outputs_api.py +45 -44
  335. wandelbots_api_client/v2/api/jogging_api.py +33 -11
  336. wandelbots_api_client/v2/api/kinematics_api.py +636 -0
  337. wandelbots_api_client/v2/api/license_api.py +8 -9
  338. wandelbots_api_client/v2/api/motion_group_api.py +61 -31
  339. wandelbots_api_client/v2/api/motion_group_models_api.py +557 -0
  340. wandelbots_api_client/v2/api/program_api.py +167 -1308
  341. wandelbots_api_client/v2/api/store_collision_components_api.py +823 -50
  342. wandelbots_api_client/v2/api/store_collision_setups_api.py +1404 -0
  343. wandelbots_api_client/v2/api/store_object_api.py +11 -12
  344. wandelbots_api_client/v2/api/system_api.py +282 -18
  345. wandelbots_api_client/v2/api/trajectory_caching_api.py +94 -20
  346. wandelbots_api_client/v2/api/trajectory_execution_api.py +33 -11
  347. wandelbots_api_client/v2/api/trajectory_planning_api.py +68 -323
  348. wandelbots_api_client/v2/api/{inverse_kinematics_api.py → version_api.py} +24 -81
  349. wandelbots_api_client/v2/api/virtual_controller_api.py +4565 -0
  350. wandelbots_api_client/v2/api/virtual_controller_behavior_api.py +982 -0
  351. wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py +1003 -0
  352. wandelbots_api_client/v2/api_client.py +15 -8
  353. wandelbots_api_client/v2/configuration.py +19 -8
  354. wandelbots_api_client/v2/exceptions.py +2 -2
  355. wandelbots_api_client/v2/models/__init__.py +210 -159
  356. wandelbots_api_client/v2/models/abb_controller.py +8 -11
  357. wandelbots_api_client/v2/models/abb_controller_egm_server.py +4 -4
  358. wandelbots_api_client/v2/models/activate_license_request.py +3 -3
  359. wandelbots_api_client/v2/models/add_trajectory_error.py +5 -5
  360. wandelbots_api_client/v2/models/add_trajectory_error_data.py +66 -66
  361. wandelbots_api_client/v2/models/add_trajectory_request.py +5 -5
  362. wandelbots_api_client/v2/models/add_trajectory_response.py +4 -4
  363. wandelbots_api_client/v2/models/{jogging_error_response_error.py → api_version.py} +9 -9
  364. wandelbots_api_client/v2/models/app.py +19 -11
  365. wandelbots_api_client/v2/models/behavior.py +3 -3
  366. wandelbots_api_client/v2/models/blending_auto.py +6 -5
  367. wandelbots_api_client/v2/models/blending_position.py +4 -4
  368. wandelbots_api_client/v2/models/boolean_value.py +7 -10
  369. wandelbots_api_client/v2/models/box.py +7 -7
  370. wandelbots_api_client/v2/models/{program_run_object.py → bus_io_description.py} +31 -20
  371. wandelbots_api_client/v2/models/{jogging_error_response.py → bus_io_modbus_client.py} +23 -14
  372. wandelbots_api_client/v2/models/bus_io_modbus_server.py +115 -0
  373. wandelbots_api_client/v2/models/bus_io_modbus_tcp_client.py +106 -0
  374. wandelbots_api_client/v2/models/bus_io_modbus_tcp_server.py +104 -0
  375. wandelbots_api_client/v2/models/{movement_error_error.py → bus_io_modbus_virtual.py} +17 -10
  376. wandelbots_api_client/v2/models/bus_io_profinet.py +114 -0
  377. wandelbots_api_client/v2/models/{motion_group_behavior_getter.py → bus_io_profinet_default_route.py} +12 -11
  378. wandelbots_api_client/v2/models/bus_io_profinet_ip_config.py +95 -0
  379. wandelbots_api_client/v2/models/{update_trigger_request.py → bus_io_profinet_network.py} +18 -18
  380. wandelbots_api_client/v2/models/bus_io_profinet_virtual.py +98 -0
  381. wandelbots_api_client/v2/models/bus_io_type.py +212 -0
  382. wandelbots_api_client/v2/models/{create_trigger200_response.py → bus_ios_state.py} +12 -9
  383. wandelbots_api_client/v2/models/bus_ios_state_enum.py +39 -0
  384. wandelbots_api_client/v2/models/capsule.py +5 -5
  385. wandelbots_api_client/v2/models/{robot_state.py → cartesian_limits.py} +15 -15
  386. wandelbots_api_client/v2/models/cell.py +7 -7
  387. wandelbots_api_client/v2/models/collider.py +5 -5
  388. wandelbots_api_client/v2/models/collider_shape.py +2 -42
  389. wandelbots_api_client/v2/models/collision.py +11 -11
  390. wandelbots_api_client/v2/models/collision_contact.py +6 -6
  391. wandelbots_api_client/v2/models/{collision2.py → collision_error.py} +7 -7
  392. wandelbots_api_client/v2/models/collision_free_algorithm.py +155 -0
  393. wandelbots_api_client/v2/models/{collision_motion_group_assembly.py → collision_setup.py} +32 -18
  394. wandelbots_api_client/v2/models/comparator.py +2 -2
  395. wandelbots_api_client/v2/models/configuration_archive_status.py +174 -0
  396. wandelbots_api_client/v2/models/{joints.py → configuration_archive_status_creating.py} +20 -10
  397. wandelbots_api_client/v2/models/configuration_archive_status_error.py +100 -0
  398. wandelbots_api_client/v2/models/configuration_archive_status_success.py +98 -0
  399. wandelbots_api_client/v2/models/configuration_resource.py +5 -5
  400. wandelbots_api_client/v2/models/container_environment_inner.py +4 -4
  401. wandelbots_api_client/v2/models/container_image.py +5 -5
  402. wandelbots_api_client/v2/models/container_image_secrets_inner.py +3 -3
  403. wandelbots_api_client/v2/models/{create_program_operator_run200_response.py → container_resources.py} +12 -9
  404. wandelbots_api_client/v2/models/container_storage.py +4 -4
  405. wandelbots_api_client/v2/models/{create_trigger_request.py → controller_description.py} +16 -21
  406. wandelbots_api_client/v2/models/convex_hull.py +4 -4
  407. wandelbots_api_client/v2/models/coordinate_system.py +11 -11
  408. wandelbots_api_client/v2/models/coordinate_system_data.py +101 -0
  409. wandelbots_api_client/v2/models/cubic_spline_parameter.py +4 -4
  410. wandelbots_api_client/v2/models/cycle_time.py +5 -4
  411. wandelbots_api_client/v2/models/cylinder.py +5 -5
  412. wandelbots_api_client/v2/models/dh_parameter.py +7 -7
  413. wandelbots_api_client/v2/models/direction.py +2 -2
  414. wandelbots_api_client/v2/models/error.py +4 -4
  415. wandelbots_api_client/v2/models/{jogging_paused_collision.py → error_invalid_joint_count.py} +21 -14
  416. wandelbots_api_client/v2/models/error_joint_limit_exceeded.py +103 -0
  417. wandelbots_api_client/v2/models/{coordinate_systems.py → error_joint_position_collision.py} +30 -19
  418. wandelbots_api_client/v2/models/error_max_iterations_exceeded.py +100 -0
  419. wandelbots_api_client/v2/models/execute.py +97 -0
  420. wandelbots_api_client/v2/models/{set_io_values_request_inner.py → execute_details.py} +47 -43
  421. wandelbots_api_client/v2/models/execute_jogging_request.py +52 -10
  422. wandelbots_api_client/v2/models/execute_jogging_response.py +87 -26
  423. wandelbots_api_client/v2/models/execute_trajectory_request.py +30 -2
  424. wandelbots_api_client/v2/models/execute_trajectory_response.py +61 -42
  425. wandelbots_api_client/v2/models/external_joint_stream_datapoint.py +6 -6
  426. wandelbots_api_client/v2/models/{robot_tcps.py → external_joint_stream_request.py} +17 -17
  427. wandelbots_api_client/v2/models/fanuc_controller.py +6 -9
  428. wandelbots_api_client/v2/models/feedback_collision.py +6 -6
  429. wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py +7 -6
  430. wandelbots_api_client/v2/models/feedback_out_of_workspace.py +4 -4
  431. wandelbots_api_client/v2/models/feedback_singularity.py +5 -5
  432. wandelbots_api_client/v2/models/flag.py +3 -3
  433. wandelbots_api_client/v2/models/float_value.py +8 -11
  434. wandelbots_api_client/v2/models/{get_all_triggers200_response.py → forward_kinematics422_response.py} +17 -17
  435. wandelbots_api_client/v2/models/forward_kinematics_request.py +104 -0
  436. wandelbots_api_client/v2/models/{controllers_list.py → forward_kinematics_response.py} +18 -18
  437. wandelbots_api_client/v2/models/{list_coordinate_systems_response.py → forward_kinematics_validation_error.py} +30 -18
  438. wandelbots_api_client/v2/models/get_trajectory_response.py +5 -5
  439. wandelbots_api_client/v2/models/http_validation_error.py +5 -5
  440. wandelbots_api_client/v2/models/image_credentials.py +5 -5
  441. wandelbots_api_client/v2/models/{inconsitent_trajectory_size.py → inconsistent_trajectory_size_error.py} +9 -9
  442. wandelbots_api_client/v2/models/{inconsitent_trajectory_size_inconsistent_trajectory_size.py → inconsistent_trajectory_size_error_inconsistent_trajectory_size.py} +9 -9
  443. wandelbots_api_client/v2/models/initialize_jogging_request.py +9 -16
  444. wandelbots_api_client/v2/models/initialize_jogging_response.py +17 -12
  445. wandelbots_api_client/v2/models/initialize_movement_request.py +7 -12
  446. wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py +2 -2
  447. wandelbots_api_client/v2/models/initialize_movement_response.py +22 -11
  448. wandelbots_api_client/v2/models/integer_value.py +8 -11
  449. wandelbots_api_client/v2/models/{invalid_dof.py → invalid_dof_error.py} +9 -9
  450. wandelbots_api_client/v2/models/{invalid_dof_invalid_dof.py → invalid_dof_error_invalid_dof.py} +8 -8
  451. wandelbots_api_client/v2/models/{motion_group_infos.py → inverse_kinematics422_response.py} +18 -18
  452. wandelbots_api_client/v2/models/inverse_kinematics_request.py +51 -31
  453. wandelbots_api_client/v2/models/inverse_kinematics_response.py +3 -3
  454. wandelbots_api_client/v2/models/inverse_kinematics_validation_error.py +120 -0
  455. wandelbots_api_client/v2/models/inverse_kinematics_validation_error_all_of_data.py +155 -0
  456. wandelbots_api_client/v2/models/io_boolean_value.py +8 -11
  457. wandelbots_api_client/v2/models/{io_description_min.py → io_boundary.py} +10 -25
  458. wandelbots_api_client/v2/models/io_description.py +15 -15
  459. wandelbots_api_client/v2/models/io_direction.py +2 -2
  460. wandelbots_api_client/v2/models/io_float_value.py +9 -12
  461. wandelbots_api_client/v2/models/io_integer_value.py +9 -12
  462. wandelbots_api_client/v2/models/{trigger_type.py → io_origin.py} +7 -6
  463. wandelbots_api_client/v2/models/{set_output_values_request_inner.py → io_value.py} +10 -25
  464. wandelbots_api_client/v2/models/io_value_type.py +2 -2
  465. wandelbots_api_client/v2/models/{movement_movement.py → jogging_details.py} +21 -16
  466. wandelbots_api_client/v2/models/{jogging_state.py → jogging_details_state.py} +76 -43
  467. wandelbots_api_client/v2/models/{program_run_reference.py → jogging_paused_by_user.py} +17 -13
  468. wandelbots_api_client/v2/models/{jogging_paused_collision_paused_near_collision.py → jogging_paused_near_collision.py} +19 -10
  469. wandelbots_api_client/v2/models/{jogging_paused_joint_limit_paused_near_joint_limit.py → jogging_paused_near_joint_limit.py} +20 -10
  470. wandelbots_api_client/v2/models/jogging_paused_on_io.py +14 -7
  471. wandelbots_api_client/v2/models/jogging_running.py +14 -7
  472. wandelbots_api_client/v2/models/{joint_limit_exceeded.py → joint_limit_exceeded_error.py} +7 -7
  473. wandelbots_api_client/v2/models/joint_limits.py +101 -0
  474. wandelbots_api_client/v2/models/joint_trajectory.py +6 -23
  475. wandelbots_api_client/v2/models/joint_velocity_request.py +7 -14
  476. wandelbots_api_client/v2/models/joint_velocity_response.py +100 -0
  477. wandelbots_api_client/v2/models/kuka_controller.py +12 -13
  478. wandelbots_api_client/v2/models/kuka_controller_rsi_server.py +4 -4
  479. wandelbots_api_client/v2/models/license.py +12 -12
  480. wandelbots_api_client/v2/models/license_status.py +4 -4
  481. wandelbots_api_client/v2/models/license_status_enum.py +2 -2
  482. wandelbots_api_client/v2/models/{planning_limits_limit_range.py → limit_range.py} +8 -8
  483. wandelbots_api_client/v2/models/limit_set.py +129 -0
  484. wandelbots_api_client/v2/models/limits_override.py +8 -8
  485. wandelbots_api_client/v2/models/list_trajectories_response.py +3 -3
  486. wandelbots_api_client/v2/models/manufacturer.py +2 -2
  487. wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py +101 -0
  488. wandelbots_api_client/v2/models/modbus_io.py +105 -0
  489. wandelbots_api_client/v2/models/modbus_io_area.py +40 -0
  490. wandelbots_api_client/v2/models/modbus_io_byte_order.py +40 -0
  491. wandelbots_api_client/v2/models/modbus_io_data.py +103 -0
  492. wandelbots_api_client/v2/models/modbus_io_type_enum.py +39 -0
  493. wandelbots_api_client/v2/models/motion_command.py +5 -5
  494. wandelbots_api_client/v2/models/motion_command_blending.py +2 -2
  495. wandelbots_api_client/v2/models/motion_command_path.py +2 -2
  496. wandelbots_api_client/v2/models/{planning_parameters.py → motion_group_description.py} +40 -35
  497. wandelbots_api_client/v2/models/motion_group_info.py +7 -6
  498. wandelbots_api_client/v2/models/motion_group_joints.py +6 -6
  499. wandelbots_api_client/v2/models/{robot_setup.py → motion_group_setup.py} +33 -35
  500. wandelbots_api_client/v2/models/motion_group_state.py +32 -44
  501. wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py +3 -3
  502. wandelbots_api_client/v2/models/movement_error_response.py +100 -0
  503. wandelbots_api_client/v2/models/{nan_value.py → nan_value_error.py} +9 -9
  504. wandelbots_api_client/v2/models/{nan_value_nan_value.py → nan_value_error_nan_value.py} +6 -6
  505. wandelbots_api_client/v2/models/op_mode.py +3 -3
  506. wandelbots_api_client/v2/models/operating_state.py +2 -2
  507. wandelbots_api_client/v2/models/operation_limits.py +110 -0
  508. wandelbots_api_client/v2/models/operation_mode.py +2 -2
  509. wandelbots_api_client/v2/models/orientation_type.py +2 -2
  510. wandelbots_api_client/v2/models/path_cartesian_ptp.py +4 -4
  511. wandelbots_api_client/v2/models/path_circle.py +5 -5
  512. wandelbots_api_client/v2/models/path_cubic_spline.py +4 -4
  513. wandelbots_api_client/v2/models/path_joint_ptp.py +4 -4
  514. wandelbots_api_client/v2/models/path_line.py +4 -4
  515. wandelbots_api_client/v2/models/pause_jogging_request.py +98 -0
  516. wandelbots_api_client/v2/models/{initialize_jogging_response_init_response.py → pause_jogging_response.py} +19 -12
  517. wandelbots_api_client/v2/models/pause_movement_request.py +7 -12
  518. wandelbots_api_client/v2/models/pause_movement_response.py +17 -12
  519. wandelbots_api_client/v2/models/pause_on_io.py +11 -8
  520. wandelbots_api_client/v2/models/payload.py +6 -6
  521. wandelbots_api_client/v2/models/{http_validation_error2.py → plan422_response.py} +9 -9
  522. wandelbots_api_client/v2/models/{movement.py → plan_collision_free_failed_response.py} +13 -13
  523. wandelbots_api_client/v2/models/{jogging_response_jogging.py → plan_collision_free_request.py} +25 -21
  524. wandelbots_api_client/v2/models/{standstill.py → plan_collision_free_response.py} +13 -13
  525. wandelbots_api_client/{models/create_trigger_request_config.py → v2/models/plan_collision_free_response_response.py} +34 -20
  526. wandelbots_api_client/v2/models/plan_trajectory_failed_response.py +5 -5
  527. wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py +2 -2
  528. wandelbots_api_client/v2/models/plan_trajectory_request.py +11 -11
  529. wandelbots_api_client/v2/models/plan_trajectory_response.py +3 -3
  530. wandelbots_api_client/v2/models/plan_trajectory_response_response.py +2 -2
  531. wandelbots_api_client/v2/models/{get_all_program_operator_runs200_response.py → plan_validation_error.py} +30 -18
  532. wandelbots_api_client/v2/models/plan_validation_error_all_of_data.py +174 -0
  533. wandelbots_api_client/v2/models/plane.py +3 -3
  534. wandelbots_api_client/v2/models/playback_speed_request.py +7 -9
  535. wandelbots_api_client/v2/models/playback_speed_response.py +17 -12
  536. wandelbots_api_client/v2/models/pose.py +4 -4
  537. wandelbots_api_client/v2/models/profinet_description.py +120 -0
  538. wandelbots_api_client/v2/models/{opcua_node_value_trigger_config.py → profinet_input_output_config.py} +14 -17
  539. wandelbots_api_client/v2/models/profinet_io.py +104 -0
  540. wandelbots_api_client/v2/models/{program_request.py → profinet_io_data.py} +20 -39
  541. wandelbots_api_client/v2/models/profinet_io_direction.py +38 -0
  542. wandelbots_api_client/v2/models/profinet_io_type_enum.py +45 -0
  543. wandelbots_api_client/v2/models/{list_io_descriptions_response.py → profinet_slot_description.py} +23 -18
  544. wandelbots_api_client/v2/models/profinet_sub_slot_description.py +96 -0
  545. wandelbots_api_client/v2/models/program.py +109 -0
  546. wandelbots_api_client/v2/models/program_run.py +23 -35
  547. wandelbots_api_client/v2/models/program_run_state.py +8 -8
  548. wandelbots_api_client/v2/models/{jogging_paused_user_request.py → program_start_request.py} +10 -10
  549. wandelbots_api_client/v2/models/rectangle.py +5 -5
  550. wandelbots_api_client/v2/models/rectangular_capsule.py +6 -6
  551. wandelbots_api_client/v2/models/release_channel.py +2 -2
  552. wandelbots_api_client/v2/models/robot_controller.py +4 -4
  553. wandelbots_api_client/v2/models/robot_controller_configuration.py +2 -2
  554. wandelbots_api_client/v2/models/robot_controller_state.py +17 -11
  555. wandelbots_api_client/v2/models/robot_system_mode.py +8 -8
  556. wandelbots_api_client/v2/models/robot_tcp.py +10 -10
  557. wandelbots_api_client/v2/models/{motion_vector.py → robot_tcp_data.py} +16 -13
  558. wandelbots_api_client/v2/models/rrt_connect_algorithm.py +109 -0
  559. wandelbots_api_client/v2/models/safety_state_type.py +2 -2
  560. wandelbots_api_client/v2/models/service_group.py +2 -2
  561. wandelbots_api_client/v2/models/service_status.py +5 -5
  562. wandelbots_api_client/v2/models/service_status_phase.py +2 -2
  563. wandelbots_api_client/v2/models/service_status_response.py +4 -4
  564. wandelbots_api_client/v2/models/service_status_severity.py +2 -2
  565. wandelbots_api_client/v2/models/service_status_status.py +5 -5
  566. wandelbots_api_client/v2/models/{standstill_standstill.py → set_io.py} +17 -17
  567. wandelbots_api_client/v2/models/settable_robot_system_mode.py +2 -2
  568. wandelbots_api_client/v2/models/singularity_type_enum.py +2 -2
  569. wandelbots_api_client/v2/models/sphere.py +4 -4
  570. wandelbots_api_client/v2/models/start_movement_request.py +14 -15
  571. wandelbots_api_client/v2/models/start_movement_response.py +100 -0
  572. wandelbots_api_client/v2/models/start_on_io.py +11 -8
  573. wandelbots_api_client/v2/models/{list_io_values_response.py → stream_io_values_response.py} +17 -11
  574. wandelbots_api_client/v2/models/tcp_offset.py +4 -4
  575. wandelbots_api_client/v2/models/{tcp_required.py → tcp_required_error.py} +6 -6
  576. wandelbots_api_client/v2/models/tcp_velocity_request.py +6 -9
  577. wandelbots_api_client/v2/models/tcp_velocity_response.py +100 -0
  578. wandelbots_api_client/v2/models/{torque_exceeded.py → torque_exceeded_error.py} +9 -9
  579. wandelbots_api_client/v2/models/{torque_exceeded_torque_exceeded.py → torque_exceeded_error_torque_exceeded.py} +8 -8
  580. wandelbots_api_client/v2/models/trajectory_data.py +6 -6
  581. wandelbots_api_client/v2/models/trajectory_details.py +108 -0
  582. wandelbots_api_client/v2/models/trajectory_details_state.py +212 -0
  583. wandelbots_api_client/v2/models/trajectory_ended.py +98 -0
  584. wandelbots_api_client/v2/models/trajectory_id.py +4 -4
  585. wandelbots_api_client/v2/models/{get_mode_response.py → trajectory_paused_by_user.py} +17 -11
  586. wandelbots_api_client/v2/models/trajectory_paused_on_io.py +98 -0
  587. wandelbots_api_client/v2/models/trajectory_running.py +101 -0
  588. wandelbots_api_client/v2/models/{create_program_operator_run_request.py → trajectory_wait_for_io.py} +17 -10
  589. wandelbots_api_client/v2/models/unit_type.py +3 -3
  590. wandelbots_api_client/v2/models/universalrobots_controller.py +6 -9
  591. wandelbots_api_client/v2/models/update_nova_version_request.py +3 -3
  592. wandelbots_api_client/v2/models/validation_error.py +9 -7
  593. wandelbots_api_client/v2/models/validation_error2.py +6 -6
  594. wandelbots_api_client/v2/models/validation_error_loc_inner.py +2 -2
  595. wandelbots_api_client/v2/models/virtual_controller.py +11 -14
  596. wandelbots_api_client/v2/models/virtual_controller_types.py +18 -3
  597. wandelbots_api_client/v2/models/virtual_robot_configuration.py +4 -4
  598. wandelbots_api_client/v2/models/wait_for_io_event_request.py +6 -6
  599. wandelbots_api_client/v2/models/yaskawa_controller.py +6 -9
  600. wandelbots_api_client/v2/rest.py +4 -3
  601. wandelbots_api_client/v2_pydantic/__init__.py +50 -0
  602. wandelbots_api_client/v2_pydantic/api/__init__.py +51 -0
  603. wandelbots_api_client/{v2/api/virtual_robot_api.py → v2_pydantic/api/application_api.py} +327 -426
  604. wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +4603 -0
  605. wandelbots_api_client/{v2/api/virtual_robot_setup_api.py → v2_pydantic/api/cell_api.py} +291 -771
  606. wandelbots_api_client/v2_pydantic/api/controller_api.py +3721 -0
  607. wandelbots_api_client/v2_pydantic/api/controller_inputs_outputs_api.py +1395 -0
  608. wandelbots_api_client/v2_pydantic/api/jogging_api.py +125 -0
  609. wandelbots_api_client/v2_pydantic/api/kinematics_api.py +642 -0
  610. wandelbots_api_client/{v2/api/store_collision_scenes_api.py → v2_pydantic/api/license_api.py} +158 -248
  611. wandelbots_api_client/{v2/api/virtual_robot_behavior_api.py → v2_pydantic/api/motion_group_api.py} +156 -131
  612. wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +563 -0
  613. wandelbots_api_client/{v2/api/store_program_api.py → v2_pydantic/api/program_api.py} +191 -181
  614. wandelbots_api_client/v2_pydantic/api/store_collision_components_api.py +4170 -0
  615. wandelbots_api_client/v2_pydantic/api/store_collision_setups_api.py +1419 -0
  616. wandelbots_api_client/v2_pydantic/api/store_object_api.py +1719 -0
  617. wandelbots_api_client/{v2/api/program_operator_api.py → v2_pydantic/api/system_api.py} +625 -476
  618. wandelbots_api_client/{v2/api/virtual_robot_mode_api.py → v2_pydantic/api/trajectory_caching_api.py} +208 -162
  619. wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +125 -0
  620. wandelbots_api_client/v2_pydantic/api/trajectory_planning_api.py +642 -0
  621. wandelbots_api_client/v2_pydantic/api/version_api.py +287 -0
  622. wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py +4610 -0
  623. wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py +991 -0
  624. wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py +1012 -0
  625. wandelbots_api_client/v2_pydantic/api_client.py +809 -0
  626. wandelbots_api_client/v2_pydantic/api_response.py +21 -0
  627. wandelbots_api_client/v2_pydantic/configuration.py +606 -0
  628. wandelbots_api_client/v2_pydantic/exceptions.py +216 -0
  629. wandelbots_api_client/v2_pydantic/models.py +4561 -0
  630. wandelbots_api_client/v2_pydantic/py.typed +0 -0
  631. wandelbots_api_client/v2_pydantic/rest.py +213 -0
  632. wandelbots_api_client-25.10.0rc2.dist-info/METADATA +62 -0
  633. wandelbots_api_client-25.10.0rc2.dist-info/RECORD +640 -0
  634. {wandelbots_api_client-25.6.0.dev7.dist-info → wandelbots_api_client-25.10.0rc2.dist-info}/WHEEL +2 -1
  635. wandelbots_api_client-25.10.0rc2.dist-info/top_level.txt +1 -0
  636. wandelbots_api_client/v2/models/collision_motion_group.py +0 -121
  637. wandelbots_api_client/v2/models/collision_scene.py +0 -119
  638. wandelbots_api_client/v2/models/collision_scene_assembly.py +0 -129
  639. wandelbots_api_client/v2/models/controller.py +0 -132
  640. wandelbots_api_client/v2/models/external_joint_stream_datapoint_value.py +0 -97
  641. wandelbots_api_client/v2/models/initialize_movement_response_init_response.py +0 -93
  642. wandelbots_api_client/v2/models/jogging_paused_joint_limit.py +0 -95
  643. wandelbots_api_client/v2/models/jogging_response.py +0 -95
  644. wandelbots_api_client/v2/models/motion_group_instance.py +0 -101
  645. wandelbots_api_client/v2/models/motion_group_state_without_payload.py +0 -146
  646. wandelbots_api_client/v2/models/movement_error.py +0 -95
  647. wandelbots_api_client/v2/models/opcua_node_value_trigger_config_node_value.py +0 -160
  648. wandelbots_api_client/v2/models/pause_movement_response_pause_response.py +0 -93
  649. wandelbots_api_client/v2/models/planning_limits.py +0 -130
  650. wandelbots_api_client/v2/models/playback_speed_response_playback_speed_response.py +0 -91
  651. wandelbots_api_client/v2/models/program_run_result.py +0 -108
  652. wandelbots_api_client/v2/models/single_motion_group_collision_scene.py +0 -135
  653. wandelbots_api_client/v2/models/standstill_reason.py +0 -39
  654. wandelbots_api_client/v2/models/trigger_object.py +0 -111
  655. wandelbots_api_client/v2/models/version_number.py +0 -105
  656. wandelbots_api_client-25.6.0.dev7.dist-info/METADATA +0 -63
  657. wandelbots_api_client-25.6.0.dev7.dist-info/RECORD +0 -580
  658. {wandelbots_api_client-25.6.0.dev7.dist-info → wandelbots_api_client-25.10.0rc2.dist-info/licenses}/LICENSE +0 -0
@@ -1,580 +0,0 @@
1
- wandelbots_api_client/__init__.py,sha256=oOMIwEQRqx-RjBwO90P6FM-Mu-wLT8QtE_Sor8I3BPo,1027
2
- wandelbots_api_client/api/__init__.py,sha256=LCro2rt4NjT1jOBiLAWzPYZgTFleOUX7TajzN7O2G3o,2157
3
- wandelbots_api_client/api/application_api.py,sha256=9yFe8tqXR3H8bedcvOhqT856LBZZlKITzUNKymyA1y4,70756
4
- wandelbots_api_client/api/cell_api.py,sha256=toSkLAl43dmajeonzdoVcvGkCVlM1nbro5qXaqzO7iI,66058
5
- wandelbots_api_client/api/controller_api.py,sha256=9qR5CC34uXrcorEbjqy7cuK8Qr03AbtrONX6H0licac,147285
6
- wandelbots_api_client/api/controller_ios_api.py,sha256=Flv65Of47rVqZZiTP6YfiTayeKJUE9NXUdhwKFnvwvQ,59734
7
- wandelbots_api_client/api/coordinate_systems_api.py,sha256=OincxVScfSyaE49REoESEugSO1v1N3ehbzq4c9QVn40,68976
8
- wandelbots_api_client/api/device_configuration_api.py,sha256=NkQN7NrmT0f7-B_wpD2P8J091c27aAsy7ExeRiUjgGI,57593
9
- wandelbots_api_client/api/library_program_api.py,sha256=zVBk4xV17h-FH642c0OZOY03Cb2tX2Jx9rjse6HUv94,65125
10
- wandelbots_api_client/api/library_program_metadata_api.py,sha256=HpyxocJBEgQ6GhcuVfSKCztIBcGF6fJPkS_IegB8y9k,51809
11
- wandelbots_api_client/api/library_recipe_api.py,sha256=VOxQTGEjwwFrgct9jk1nHmIlwRtm12GfDwk14X0Fl1E,63328
12
- wandelbots_api_client/api/library_recipe_metadata_api.py,sha256=TH4Re305P0m0t1Daql_-sHpOekARy7eOjb9oXwSntg0,50001
13
- wandelbots_api_client/api/license_api.py,sha256=BasavpYNQJ7Kr0uD-EbjvaQaPOqogZducwuzXWqGSxo,40621
14
- wandelbots_api_client/api/motion_api.py,sha256=qCc8JDc9lai_qseymPrOVtDUPB2szQeUitTJ95vwxIo,193487
15
- wandelbots_api_client/api/motion_group_api.py,sha256=Yx6ERBkPtAtZm5R7Yw190dvjtI41og5Hy-rdsAz1ynE,46676
16
- wandelbots_api_client/api/motion_group_infos_api.py,sha256=6lvuIdATE14tissLByw5ytz2G3HI6btNyM_5DSqkSNQ,124417
17
- wandelbots_api_client/api/motion_group_jogging_api.py,sha256=gzOSM9Pg8DXfFGnaaCp_WmdWh3vTm2pRW9v5wPQ7mZM,37587
18
- wandelbots_api_client/api/motion_group_kinematic_api.py,sha256=-fCdExDwOZ7Fxvw9Pwycod4lDxC6bk1QskJgy1lxcBU,54267
19
- wandelbots_api_client/api/program_api.py,sha256=eOeJAimbDmdF_FyQXDbTI9nocqc6GXGMC6gJM7HOHlo,99647
20
- wandelbots_api_client/api/program_operator_api.py,sha256=KaC2tgVigU97bqhtqek2tVm7hAtTSdgtDjj0CZ2-g34,92718
21
- wandelbots_api_client/api/program_values_api.py,sha256=YgVsfd4R2lkVPX4BGDbtdbWYfApDhtNjjbd67XrbWXo,72114
22
- wandelbots_api_client/api/store_collision_components_api.py,sha256=tIwuffX5YVR-s6l3NQ6TwezgJCdfJHBSrbsLN0_WVjg,149007
23
- wandelbots_api_client/api/store_collision_scenes_api.py,sha256=SbfPqViwoGzut2YSh5vmYutQFyYY7IpTtbb5MkgO-dk,46202
24
- wandelbots_api_client/api/store_object_api.py,sha256=FLyDPoC0ollvPnpMobybucIWBVaYK4KVV2zyKcso6kI,65484
25
- wandelbots_api_client/api/system_api.py,sha256=c55z_GFNBv6fTXPcBovnQ-dbiNvHClgvqLIPl4ryN5E,51654
26
- wandelbots_api_client/api/virtual_robot_api.py,sha256=xxs3-X7u7YSEA7W68FalYnB-74H4OcSQ1-q0KUlXCt8,75170
27
- wandelbots_api_client/api/virtual_robot_behavior_api.py,sha256=tvXhhE8QJXMxaaoKk-9LNIACcJIZI7g2kZazAwYrUdY,31125
28
- wandelbots_api_client/api/virtual_robot_mode_api.py,sha256=XPeC_tvWpDbakrP3PrMP5MC6NWAuYqHYC_mZxOH7EdY,73442
29
- wandelbots_api_client/api/virtual_robot_setup_api.py,sha256=GplC3AhPq_z8MLNb6TRQUzCcUZbFvVdNlWNxBaRr7mI,103329
30
- wandelbots_api_client/api_client.py,sha256=auvSp2LYeVj7UI5Tj7FgTns70175_7dSlBgV-j-kd1s,27600
31
- wandelbots_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
32
- wandelbots_api_client/configuration.py,sha256=73J9zkN0a9plboNMkJHGQ9Eezf7CBI1OIm8s7Yw9hRI,18322
33
- wandelbots_api_client/exceptions.py,sha256=JInZg8YXpgVa6UKmo8PF40NaiQ26MBoFoh93rEMC9pY,6433
34
- wandelbots_api_client/models/__init__.py,sha256=e6bASjATD25OR8m4vhUgmBoE3zPmiLo_-KuRRrNoX6w,23776
35
- wandelbots_api_client/models/abb_controller.py,sha256=22Z-Uhw8WMlT51sUgYvQGvet1xvPdh2oL2-GHWffNGg,4054
36
- wandelbots_api_client/models/abb_controller_egm_server.py,sha256=J_XRNMvGzfiDnzW2FYl2gn0TPbqlTMWQWM_3eQd5Bug,2774
37
- wandelbots_api_client/models/activate_license_request.py,sha256=JwnuT1JLOdr9kwOzU0WslzSviaq9PbEkC02fPa_q2so,2693
38
- wandelbots_api_client/models/add_request.py,sha256=ewzpFSx2n-NjjTKNblVEDlBuT6L5yDADg8hCkPMUgkE,3152
39
- wandelbots_api_client/models/all_joint_positions_request.py,sha256=pHbiqJnnJf6tqgxmsbqkY3wNdfZ4x2mmnmWJqkTbGoE,3162
40
- wandelbots_api_client/models/all_joint_positions_response.py,sha256=y8eNUrVQFkFRY4d1sMn809LEWxxGBm14G1okSJRAdqk,3917
41
- wandelbots_api_client/models/app.py,sha256=5EE_7zSESL4Bb7UIFnwOqZjGI0psKOW_Qji3-mcGXXI,6700
42
- wandelbots_api_client/models/array_input.py,sha256=O4TX-_HPj-IvE_Jn51nM-dwI0kIIsHFK2G-ioAnd8Ug,3722
43
- wandelbots_api_client/models/array_output.py,sha256=QutpR6RFPhwOhL7Iqxphgfpg556zbtlUHQaVYMuN1C4,3852
44
- wandelbots_api_client/models/behavior.py,sha256=ZSVbSuMifAxMQCee_IiJIt9YzY130TzcCyraVjrkAes,1767
45
- wandelbots_api_client/models/blending_auto.py,sha256=U6aarPKtqwuI3lEUKN_CZVf4K20TlC2Ri3IaDz2Nglw,3306
46
- wandelbots_api_client/models/blending_position.py,sha256=U6L8lvju1k1URdUNUam1eBWlGK0PYDWdvAHSqdrYpk0,3418
47
- wandelbots_api_client/models/box.py,sha256=JZR117wcBcTlfcUy7YJFAdmZZTmDkO5FEuyMZ3e_wKs,3412
48
- wandelbots_api_client/models/box2.py,sha256=B76yqdMEGMwBvyYEj5fW9IntlHYpE2Djl3QHn19Z5ms,4067
49
- wandelbots_api_client/models/box3.py,sha256=B4MA0EHmf-UpnHGwr0GOSiQ0RSczObRQhd5tkLvpB-s,3754
50
- wandelbots_api_client/models/capsule.py,sha256=02F2yABigjkHkvImyZTr9HR3JhBE_TP8agetx5A4gsk,2911
51
- wandelbots_api_client/models/capsule2.py,sha256=bJixSD6NIpdUlNIgf3X8cCC-PRQnty5d3DmJw5gLbf0,3331
52
- wandelbots_api_client/models/capsule3.py,sha256=0pQpjldtIb5Zt_sWPOvZtEJZInK5hnYJkCkm6KTKiQU,3164
53
- wandelbots_api_client/models/capture.py,sha256=dn2dLoT8frUZM1O_js2ZwxA0D-e9wTIlaeFzbkWuA9I,2529
54
- wandelbots_api_client/models/cell.py,sha256=vTGp4pJQPF4Fd3Uyx4wh3kAHW-l7hwWaWDiYG0-voqQ,5818
55
- wandelbots_api_client/models/circle.py,sha256=WjFWrsk3YRAfKMovLyrcLWFrfA6rYA84OAhKqfUn5u0,3127
56
- wandelbots_api_client/models/code_with_arguments.py,sha256=nsIYaatzGZ7wck93ZOEBV8QMPBHPM8MlQoZImtRioeU,3692
57
- wandelbots_api_client/models/collection_value.py,sha256=pMwggJQhHzSYBC0glEEPnf3T2wKCkfsiT1ME-Z_Nchk,11813
58
- wandelbots_api_client/models/collider.py,sha256=mJgGpgF3yfFyhBqpPjcMhBgBSdhVUEu02gX4xCuXMdQ,3952
59
- wandelbots_api_client/models/collider_input.py,sha256=VVld-7PvrMFNbF0Lt0tIO4Ryw08y8mmB2lJ6QkPsx_M,3697
60
- wandelbots_api_client/models/collider_output.py,sha256=Nzbf9tWP0vIZdRe5vrUGi9KzE2reaZyUZ6GkT6vnl_o,3700
61
- wandelbots_api_client/models/collider_output_shape.py,sha256=YTMjTXIGs-OE0Fe3QWJJhdTilrjf-i8Utwg7iOCWNYg,9287
62
- wandelbots_api_client/models/collider_shape.py,sha256=L82yvl9T26yaCdjjdKCk-yE_2oDEcq0Kt3j5n2U0EsY,12441
63
- wandelbots_api_client/models/collision.py,sha256=7dq2gkjC8O7LGnhB9UjVee6mEjRXxZKCCwGWu--Py6o,4037
64
- wandelbots_api_client/models/collision_contact.py,sha256=UF5nSnRjuqso5Ymu5yFDF12c9D2NXy00Jbzz9qXn984,3139
65
- wandelbots_api_client/models/collision_motion_group.py,sha256=_6yYudjeV4naJHWPiP35PkgAsfqnavsKmpnavEq96sQ,5429
66
- wandelbots_api_client/models/collision_motion_group_assembly.py,sha256=4Sdje8wcdvrvSezs8vTmF2Qrrj18MdwHJdSUmgAyWKo,5836
67
- wandelbots_api_client/models/collision_robot_configuration_input.py,sha256=5fI7XYQOXFSBzDoD3J6XIYH_YZ9_laEmz7fCmt4ZIuc,5362
68
- wandelbots_api_client/models/collision_robot_configuration_output.py,sha256=P1pZSvVLDT20MQkqPFCTNrS3jiWEwcvU-KIBcs8tuBQ,5371
69
- wandelbots_api_client/models/collision_scene.py,sha256=ps7YY4HeCgFgURl-NBVREUEjETpdbP33ukA3D9iaI2I,5260
70
- wandelbots_api_client/models/collision_scene_assembly.py,sha256=BoGKIFeefM_ETYLLd2_DawA6KBVZRPZcvSzEw4W47fs,6547
71
- wandelbots_api_client/models/command.py,sha256=0PKtAhUQq5GFiXnx7x-sWJhiR-FzxO6vma2ZEa1w3VU,6785
72
- wandelbots_api_client/models/command_settings.py,sha256=AAxoc6ypI7qUhtJpXT46mMHuVi18NARpy8WTUtjW7P0,4118
73
- wandelbots_api_client/models/comparator.py,sha256=TKhHkhFPeAL0dnEhnVwf_XzFmUqYg10pcr10JHw7c0E,1143
74
- wandelbots_api_client/models/compound.py,sha256=kiVeZe1fd1gLO00aKQX45tExLpruTfhyZBG1Uj_xFgo,3983
75
- wandelbots_api_client/models/container_environment_inner.py,sha256=CSWuB_xnuk252EZsY_sBWuCo4qvB9bzyk143vt8WJxA,2666
76
- wandelbots_api_client/models/container_image.py,sha256=JxncfxhJxedNQ3_PY_Ge_ZoMoRtsJntAuRKwn-RIl30,4631
77
- wandelbots_api_client/models/container_image_secrets_inner.py,sha256=QvBdS4nchhNuhIVIO6oNvWxmvUoq-yijeUcRUkGSBjo,2601
78
- wandelbots_api_client/models/container_resources.py,sha256=fAUu6Cl-ABf7UEViCtwXooEDxkiDo8oCWsk5NPGXPoI,2812
79
- wandelbots_api_client/models/container_storage.py,sha256=WIDsnSgFDGZJl9hgV1EFjT7BAXpkqp4xy_gvbKe1y-g,3375
80
- wandelbots_api_client/models/controller_capabilities.py,sha256=rOjuzQG_ZQQb7E04spXdA0gxD-6KjrOSiicA-PpQgII,2969
81
- wandelbots_api_client/models/controller_instance.py,sha256=qdK1yApY_yLtG7wleTTmHpSegDqDO7vvzUMif6pbjLY,6411
82
- wandelbots_api_client/models/controller_instance_list.py,sha256=HSLjA0e0zFWLpmWnqVmGCBpV5-ZKA5EiwT5qthV5d9o,3755
83
- wandelbots_api_client/models/convex_hull.py,sha256=COYXtEcn9nIsik8AVB83av5XJ-4trbgOh0HsA2TY1d0,3735
84
- wandelbots_api_client/models/convex_hull2.py,sha256=Lo4uuFBJAAfyCosiN-2ZA6W0YRRBw8IzuxPABPBxeJE,3175
85
- wandelbots_api_client/models/convex_hull3.py,sha256=suBCizLj6XsOecbA9N4d-OqATa5ZyY94jJu5tOk1p5o,3096
86
- wandelbots_api_client/models/coordinate_system.py,sha256=fKDyMMyZCx_UmHKGeCmpu8d6AbYGCmExfQt32Z3xP-8,3876
87
- wandelbots_api_client/models/coordinate_systems.py,sha256=Rk3snb-qAWUEjGFl_ux6rdK83OTMZxaWl3v2oWREahs,3787
88
- wandelbots_api_client/models/create_device_request_inner.py,sha256=VbyJkVFzHdtZvIhIfjza1T4968Cf5U02zIjtuuc5jVk,16205
89
- wandelbots_api_client/models/create_program_run200_response.py,sha256=89ugGBDZWOGdkv1AtEZshklY1We6V64f50C29VVo7ro,2743
90
- wandelbots_api_client/models/create_program_run_request.py,sha256=NCWExYeacVDsh_LxLwWIWhxKMrj1mGZDD7c4ZwOXAsM,2704
91
- wandelbots_api_client/models/create_trigger200_response.py,sha256=y-KjUE3rVBbhOJBRfdiwfVfFF7S7sSSwviGOuz884bg,2688
92
- wandelbots_api_client/models/create_trigger_request.py,sha256=ifav9vf6zBoX8mBGVzh51S3B8Q_BWHBQ2ursDVqSwxI,3451
93
- wandelbots_api_client/models/create_trigger_request_config.py,sha256=sQLiY_6g6bKP9d9iXa8tro5chRBPtMjXnDVbh5M_BYc,4843
94
- wandelbots_api_client/models/cubic_spline.py,sha256=MPN2JgsPz9LbRgNkAqDuoj2IRKjgTOuBMs98CF8vga0,3769
95
- wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py,sha256=eaBOwv1ytsoOzrDPDQu86Tvsr_fARzM7Tb9YTJHGAHw,3018
96
- wandelbots_api_client/models/cubic_spline_parameter.py,sha256=qitz2EqLAhsueWRQKPrKtz0neX869asF02wJrI7Q-Zs,2978
97
- wandelbots_api_client/models/cycle_time.py,sha256=5o9J4GG_2yPOEEqHZbWuxO-5UcSQKkGMNannaliCcFk,2647
98
- wandelbots_api_client/models/cylinder.py,sha256=vpodLSKdR1wCxAbVHEwloanWiWpO3zSlXB9DJYRGSoQ,2842
99
- wandelbots_api_client/models/cylinder2.py,sha256=lf2JNJbG_Tj-LnZxQile1GJIhStHLNCLG6o9vheIsP0,3325
100
- wandelbots_api_client/models/cylinder3.py,sha256=81PFkF2SrAmU83LyWuhbdWQxNTOeewX1aidmf48yRwI,3216
101
- wandelbots_api_client/models/dh_parameter.py,sha256=0G_aITCB0biinwtNsMUqoYV0dcYHY5FLo2iazltT15M,3423
102
- wandelbots_api_client/models/direction.py,sha256=S9tJRcqsPvV7FfAuZWamUUujP0Ji3M0K0Gxx4D5sCQk,807
103
- wandelbots_api_client/models/direction_jogging_request.py,sha256=3L-FaUNcFAmsC9gEOQmNOo6F3HZ4iWmp2k210skVxjc,5184
104
- wandelbots_api_client/models/error.py,sha256=Y09SSL5Xckze6IEwW_MlyLzKmxflpqVEigVnM6dr0Rw,2594
105
- wandelbots_api_client/models/execute_trajectory_request.py,sha256=vEjd8AXiGD7E4-dEevJGQ3VaQm7M8wqbK9DrYBzGfi4,7404
106
- wandelbots_api_client/models/execute_trajectory_response.py,sha256=OYEUdlJACaqRlfgDoQ2RSuc0C06odhcBolObtN5SyAM,8707
107
- wandelbots_api_client/models/execution_result.py,sha256=2-9kcdhLSU5wP0ocq13zUKgWcOFVgSvFm4N_2DOnF5o,4145
108
- wandelbots_api_client/models/external_joint_stream_datapoint.py,sha256=AJnHi7SXGxlhHUE98vLU4b63W4ADrBu18V2UCrdKaBk,3145
109
- wandelbots_api_client/models/external_joint_stream_datapoint_value.py,sha256=roFuuFOPGDLAxhlKDr4-tBXt_BkzvZTO2ZUk6E5cg_U,3301
110
- wandelbots_api_client/models/fanuc_controller.py,sha256=xDHnvg_Iy1rPjb52w8jeOefS2wt8nn2UqYEtI0j1q9Q,3192
111
- wandelbots_api_client/models/feedback_collision.py,sha256=tsIVIb5jotyC-lXJIrH26WJ9X8hGqe46rvb-ff6ijIk,4699
112
- wandelbots_api_client/models/feedback_joint_limit_exceeded.py,sha256=x_EX3xIMRTjwgMOxTdkpFp6ddyyV8KAp5FFu9ZltwwY,3435
113
- wandelbots_api_client/models/feedback_out_of_workspace.py,sha256=M-ASA9FMWar9jQPB6KDCcUglNcFKQx5THiQOZpTKiRE,3451
114
- wandelbots_api_client/models/feedback_singularity.py,sha256=9J10jSgrq6DOLZJ8S58F0XqKyRQPjUuAL8roJetWCQI,3878
115
- wandelbots_api_client/models/flag.py,sha256=u26YlfU57kh66Ng-c6hIu_rtaMk4kw2JkzTsgQDg3_A,2523
116
- wandelbots_api_client/models/force_vector.py,sha256=8a0hTtNkRHhTbqZ_3fzzwrWVqJ6m6qwhUJHaiZvDww8,3471
117
- wandelbots_api_client/models/geometry.py,sha256=v6TrlPoTl8UgwzFOntII4uCe8mU0Sa7ORjx0E4DNuQo,6510
118
- wandelbots_api_client/models/get_all_program_runs200_response.py,sha256=rgINz0m2NKsFFoG70FOSftj8WTqRAV7BtCCkhgbPVqw,3805
119
- wandelbots_api_client/models/get_all_triggers200_response.py,sha256=hnDfls9LoO20thP6J54eKOdBkGU0Ojh_NAVwwpfAWrA,3741
120
- wandelbots_api_client/models/get_mode_response.py,sha256=gw69REhg8PxVLaI21o7zRE3YzQZfnMybkrpDhbcQLxU,2679
121
- wandelbots_api_client/models/get_trajectory_response.py,sha256=zMsDzam1P3ohAaka5rkaUJuqttCYR0EoKl7s-YQsClI,3909
122
- wandelbots_api_client/models/get_trajectory_sample_response.py,sha256=S3JL6rqQOfwtHQB11OGBXg0d_uGitxjSWM7Wc2VUIV8,2940
123
- wandelbots_api_client/models/google_protobuf_any.py,sha256=FQTT8m4pHJpEMIbtLSzSdn57ou8aVdT7Q7u74gLIE3U,3371
124
- wandelbots_api_client/models/http_exception_response.py,sha256=WumZJ9D-Npv3MD8gikMw7yfvuugm71YkhcP4x3tdy-Q,2651
125
- wandelbots_api_client/models/http_validation_error.py,sha256=cZD4HlBIJzDdRDvuWmZias-cQSop7KEyrTpUbV1jVhk,3709
126
- wandelbots_api_client/models/http_validation_error2.py,sha256=2b9uWupirUGKLuLLOU3Y-LCLUre1W0qlrmcnwQv5LGY,3718
127
- wandelbots_api_client/models/image_credentials.py,sha256=_9wY47Ubh6RXjmECczFNIFN5JzA7GMauvDFhJfpV9b0,2789
128
- wandelbots_api_client/models/info_service_capabilities.py,sha256=1hr-wdUs25q8RRS0zHy88cWUuAuOcWG4OW8nn8FnF1w,3940
129
- wandelbots_api_client/models/initialize_movement_request.py,sha256=JW4gJ4jv5TK0bI7lyRkp_3P0n5ZKA5NqInI5efA14Xg,5402
130
- wandelbots_api_client/models/initialize_movement_response.py,sha256=F3KQ8rzd0xg24CkOxkD6Cr3zL8o_oUHiS9qx40tT8x4,3085
131
- wandelbots_api_client/models/initialize_movement_response_init_response.py,sha256=pX0CjCWFV3i6sYsb_oFboKabq_X3m0L23zien_OIaDM,3101
132
- wandelbots_api_client/models/io.py,sha256=r_kpNbQ1slfELWpzNyadOBl52sYv0WV8zYeT4JJ9ZFk,3238
133
- wandelbots_api_client/models/io_description.py,sha256=J52wJ8_izNpCgge40G8y5W-DMOc_M0QxQLjUCrfBiTM,5652
134
- wandelbots_api_client/models/io_value.py,sha256=4MAKqcTNzAGxEzVC4D5_PKEp5Q9_tpi8E08yLunVfG0,3811
135
- wandelbots_api_client/models/ios.py,sha256=jUOOet1Criril-3WwxkLvBpzWOBgk4rFqA5SrctD5ps,3553
136
- wandelbots_api_client/models/jogging_response.py,sha256=Ri2l2RkThgZTMiaGJIGpnFnoV792rUjklGnyzptHCXU,4003
137
- wandelbots_api_client/models/jogging_service_capabilities.py,sha256=NzhKv40t51W-JOIO2QQb3q6GCRQBAKJRZWUv6kSSLmM,2914
138
- wandelbots_api_client/models/joint_jogging_request.py,sha256=tMlIBaBEV6DvPz0fXlROulln3pevXU6stcXlUefVfNk,3734
139
- wandelbots_api_client/models/joint_limit.py,sha256=VEpMi7zH7geW2M05Fs6vfGgzPkjPq5zMEZkiiSXBx3E,4189
140
- wandelbots_api_client/models/joint_limit_exceeded.py,sha256=5w-TYMAJRS_cxFI-3Z4JVyPVPYHDNsSxvigVj8mVcGs,3216
141
- wandelbots_api_client/models/joint_position_request.py,sha256=BPSnk6apEz0ClQDNYYw_4F_TxUd_WkgGop6uvx7NLng,3657
142
- wandelbots_api_client/models/joint_trajectory.py,sha256=2ONdcejNTyMIYogLgc9SN_yAUMAVaXZ0ZhtmnHWCfb4,4500
143
- wandelbots_api_client/models/joints.py,sha256=DeliX1dWFxL9jMtQuNnTCdVKLfJ-RziY2dgfCfPN56Y,2989
144
- wandelbots_api_client/models/kinematic_service_capabilities.py,sha256=BCELxFuWJ7h0V3rAmTd10gsHr30s3MoeZoEItef2IUo,3274
145
- wandelbots_api_client/models/kuka_controller.py,sha256=8LaOotLjgPZX7O3dQI-2imSF3n2OWWENcryKn5agiyA,3988
146
- wandelbots_api_client/models/kuka_controller_rsi_server.py,sha256=5nCUMhlL5IuzrhaivddhAIXp8KYn3IYZ5UH91xKnBRo,2759
147
- wandelbots_api_client/models/license.py,sha256=JVsK-Me9R9c06b-EZvfqsAEJHMFB1hpv_SbyK7nRlkA,4581
148
- wandelbots_api_client/models/license_status.py,sha256=iFbGmHSm9XHXXsNbiy0bJbwRG3AHQb4b42OsFzJQ5X4,2730
149
- wandelbots_api_client/models/license_status_enum.py,sha256=ckqw8OaMG_3YrZpBW5Mw08p40fPVglVEp-bGzASYNaU,820
150
- wandelbots_api_client/models/limit_settings.py,sha256=ISMBTCSJiWSwvbq2zyvKhF9B8B6T7OmMGQ3X-YWW37c,10548
151
- wandelbots_api_client/models/limits_override.py,sha256=rAAS_NO8vhcHryQQ6BT0vQ9rPokZToLdd1oSo0OtfJQ,4902
152
- wandelbots_api_client/models/list_devices200_response_inner.py,sha256=73KzofoC6g49-Xpu5sIbmtfHCVRvqbT-oN1bano2LEQ,16238
153
- wandelbots_api_client/models/list_io_descriptions_response.py,sha256=01deGxExg2BiKmDXuOpez2ORZ1fVriXC1veWWUgLd9Q,3787
154
- wandelbots_api_client/models/list_io_values_response.py,sha256=A7dDqd-zmmt8-X5JQiZ26vTMEBMH447KTLKA82vJLM8,3673
155
- wandelbots_api_client/models/list_payloads_response.py,sha256=gvLR1YEMlr-3fIfmasfOCnGrQ7Zp9Qb-OKNtO3YV49Q,3690
156
- wandelbots_api_client/models/list_program_metadata_response.py,sha256=itQYQ2Jw9X2wbZTUqmCWl5YLU0Rxep2Liwhir29LJ7E,3768
157
- wandelbots_api_client/models/list_recipe_metadata_response.py,sha256=7Jc65US3M_vIMQCxNWpURgOURZjzut_DIeieK5WZL6k,3750
158
- wandelbots_api_client/models/list_response.py,sha256=_Bpx7odmpM1VeZjqgDPFxzAWr-h3I0slD8IOvooDVCo,3785
159
- wandelbots_api_client/models/list_tcps_response.py,sha256=nYPzo--X5O97epP-rNQ4QV2WQaoaC3M-JmYV7KeMXN8,3799
160
- wandelbots_api_client/models/manufacturer.py,sha256=ectmXx2osWBxR_urv3whGwIZ_U9QcP7oL8HTuA4Nr-k,785
161
- wandelbots_api_client/models/mode_change_response.py,sha256=YJ7PFuJYniezDR5WWx79chctaIjYu74hHLYByzVL0CA,4163
162
- wandelbots_api_client/models/motion_command.py,sha256=hgLpkBY5yxcOuyGlNfEyRAOC8Xv9jjbycyYuvRuilwc,3912
163
- wandelbots_api_client/models/motion_command_blending.py,sha256=os7lQTBGZrB5xEd8x95FBsf6aq5DNlIWPvLhlCY5XfQ,6178
164
- wandelbots_api_client/models/motion_command_path.py,sha256=K-SuWewxgIDNMrJR3w_rLU-iFlj8WtNZjtnH-DzEAyE,8745
165
- wandelbots_api_client/models/motion_group_behavior_getter.py,sha256=fTKqvxqFvEMuI6i_ZEcD7P5fEhtoB36xb0w1AWrpxRw,2660
166
- wandelbots_api_client/models/motion_group_info.py,sha256=jkyoZUYwJOOCBhLciVAzNEniSQFjrh3uvGXZ4FdfEPE,2976
167
- wandelbots_api_client/models/motion_group_infos.py,sha256=71wQRpFIkxu6b_CJ4wiLoXvVkqhAiZVuebnrhZ2B1lQ,3725
168
- wandelbots_api_client/models/motion_group_instance.py,sha256=wrc5AvM-KN4ddQX5uvLUHTBtI9FB-tcvyFxSu4fn-vY,3693
169
- wandelbots_api_client/models/motion_group_instance_list.py,sha256=fJjR0R-ee6hE995a9yoVSnUIgFnOUn0rQPsIFW3YDCo,3747
170
- wandelbots_api_client/models/motion_group_joints.py,sha256=7fYJt0nYShiKaav94LBkhZi26aEmIUcDAkXeoezI02Q,3457
171
- wandelbots_api_client/models/motion_group_physical.py,sha256=QpCTkhj80IyVktE9xeOaKOoz6Z7_gbPG6Kv8VqXoNjY,4011
172
- wandelbots_api_client/models/motion_group_specification.py,sha256=vrwchktZdihdAV_1J-itTqGUxJwiM3080uSdFdyMbJQ,5986
173
- wandelbots_api_client/models/motion_group_state.py,sha256=3ncWZBaWw_XckRX8SCpwixFsMaiALrAOudCJXxPna7Q,8676
174
- wandelbots_api_client/models/motion_group_state_joint_limit_reached.py,sha256=9WgzqXNY0CzYJ_6LcFSnOpvuAwE02ZmUAHZ-VCW6lfw,2911
175
- wandelbots_api_client/models/motion_group_state_response.py,sha256=-TYW3hNqOlwJBeIyIVpfuVzBAFdJAMrf2FJDzzIGuwg,3841
176
- wandelbots_api_client/models/motion_id.py,sha256=kx5aoriLPLmGSboqj4hiXUZz2BW_SVNLbbmWY3_wVGA,2767
177
- wandelbots_api_client/models/motion_ids_list_response.py,sha256=j8B31GpIO9fSmegdqIjKicegojUqyY9aQ6HTZeOGdBY,2852
178
- wandelbots_api_client/models/motion_vector.py,sha256=wVy5g6lZoMEcaMtOLHa0cj8V_fUIPk-jGPqTDI3Bzps,3419
179
- wandelbots_api_client/models/mounting.py,sha256=wRb74U9i-CpoPFvssEuhPHO78xZVB-v9-4Gz_Ze3gWE,3146
180
- wandelbots_api_client/models/move_request.py,sha256=CNns3j0_1UIqSsTF_nvKr6XP40Xh1o5FD03QW0HRI1w,7806
181
- wandelbots_api_client/models/move_response.py,sha256=2S_y5kbqlB74Ehtz8KEPoqpZS9W7JbsLe0zr9-gQUIE,2969
182
- wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py,sha256=ClzKfZyTwl7krAUoV91mqcxDxokozJ3DwHCrjeJIw5s,4714
183
- wandelbots_api_client/models/movement.py,sha256=9FMKazRYxnRGZr4CHhPw9QCc4qIKCalKM8aNigtIspw,2977
184
- wandelbots_api_client/models/movement_error.py,sha256=zkqrbB_cdYa_MpuqHAdkjGzcX9uIpZktZeSWWuR8-KI,3046
185
- wandelbots_api_client/models/movement_error_error.py,sha256=RCpouv6iEpE_Ddau3PmQJOZxsxj8A36b5k4bJdYbqBg,2691
186
- wandelbots_api_client/models/movement_movement.py,sha256=AGSJv2ePzGx_MidSESfGpKq0FDlENHEl587MVGu7QX4,3393
187
- wandelbots_api_client/models/op_mode.py,sha256=lz_WLkbQEcqvPAIK3nR0W1RWBp7haRJL9rC45_ZXauE,3157
188
- wandelbots_api_client/models/opcua_node_value_trigger_config.py,sha256=tykKPVDPOVgqg0iS_u2eQ43Ej_B8_zQMDTHEJ5uR_hA,3435
189
- wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py,sha256=LVzBqHS8wRuq55mwjQhSN9g5J8oVOy5q54bH4cSYDTg,5717
190
- wandelbots_api_client/models/optimizer_setup.py,sha256=gqRHjMtP7oUx3qO-h841Q-KuMWDeqtae3kxyoHKSlRY,6247
191
- wandelbots_api_client/models/out_of_workspace.py,sha256=R26v-zQW1ObIPBCkQijuiqSm-qh_UxIT39u0bYZmmCA,2973
192
- wandelbots_api_client/models/path.py,sha256=3ZNUBiPQFVrMgZMpilh8ywlwS_xCtuBXkMHdDcbXzx8,3615
193
- wandelbots_api_client/models/path_cartesian_ptp.py,sha256=Zfsu_f95Z3e8QiMs5a8iv20cWxIBF_8f_xEQmcUHgOI,3645
194
- wandelbots_api_client/models/path_circle.py,sha256=G_YIcRAexks5F3t-2ob7XAfzjyTJAkzAzDVs_Jo9M0M,3999
195
- wandelbots_api_client/models/path_cubic_spline.py,sha256=ektqBUvl4qUegDv2_isMM9hUT3V2gS8CKKK1PDhL3uQ,4361
196
- wandelbots_api_client/models/path_joint_ptp.py,sha256=bhNUOwikjNqusMq8ir0cDI_e5yVOzo-T38Z7DwtnVUM,3180
197
- wandelbots_api_client/models/path_line.py,sha256=x0yLnwDor4fjGCBobf0yLu_8a4uZOUv-XF5mV3u76zo,3489
198
- wandelbots_api_client/models/pause_movement_request.py,sha256=XOqr3d-0vAz9MmaJ8YwKNQHdZJBwuq2fEiYl2UZLqMw,3274
199
- wandelbots_api_client/models/pause_movement_response.py,sha256=blk1nIkYlS2H7EmiicjVSEunjCpw-UDatlc5qUQsB6E,3284
200
- wandelbots_api_client/models/pause_movement_response_pause_response.py,sha256=KGsVDh2JP6D6zq6J0HStWAGXD4IYccC5d6QKnMtZ4FA,2994
201
- wandelbots_api_client/models/pause_on_io.py,sha256=GqePF77O_i2aPeDzZDfoDWrBzYmqaTvAsP1xanpslzI,3195
202
- wandelbots_api_client/models/payload.py,sha256=OrwI7ZDnyrqkqTNSctk75GJVAFS9KLWzPqb30iuLUQY,3623
203
- wandelbots_api_client/models/plan_collision_free_ptp_request.py,sha256=YE5CCN83Q-F1XH0wsYmnAXbExD1crj50NF6BqoQbvJE,5230
204
- wandelbots_api_client/models/plan_collision_free_ptp_request_target.py,sha256=S1ahpklt6juvVW8A45XcbeRRpuBPbGGT0KRXKi4zka0,5474
205
- wandelbots_api_client/models/plan_failed_on_trajectory_response.py,sha256=eggJEirGKUfrLRQdjl14GT9rQlz0gGrZIPZDNP0ouJU,6438
206
- wandelbots_api_client/models/plan_failed_response.py,sha256=SX-ie-KRaIKY1l8N_JU-KeOwQYN4e8pPji_o63uBCUQ,5384
207
- wandelbots_api_client/models/plan_request.py,sha256=y2K6HAjrjS0W9Gww8Joy4Uz0hxdA5t2igrJbKUK1ZNg,5404
208
- wandelbots_api_client/models/plan_response.py,sha256=rQHkFripPbmqev6s-CxwVZmvD67Gsn0NEDKCQWA8pUI,5096
209
- wandelbots_api_client/models/plan_successful_response.py,sha256=x_pKeovRxKibMoAYf9acZE6y3r2dzBTg1Z62Zs7sVDg,3319
210
- wandelbots_api_client/models/plan_trajectory_failed_response.py,sha256=DVymBUL-UQT-igCJF00o_UJQf3X-NBZbAIDNtLzp7xo,3922
211
- wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py,sha256=sQAxnrdoptGCFmrAIXldIYKqRBejt-Zn5XUu-PUi1gQ,8713
212
- wandelbots_api_client/models/plan_trajectory_request.py,sha256=6DVY_ZzqmSVbsDKrfyy6U-NMYoH0se8A5mU_D9uLqCY,6182
213
- wandelbots_api_client/models/plan_trajectory_response.py,sha256=_p7x66KJ0lJxdJI3dprdaNfupy4Ts0wzsmf-bSHA45M,2969
214
- wandelbots_api_client/models/plan_trajectory_response_response.py,sha256=rm-Hv2tyfSOZ1JO8_9WIhsV72IGhgCM70x3BRORAJX4,5676
215
- wandelbots_api_client/models/plane2.py,sha256=saca5W6I4cvsva6euV3Cg4soHbJ_XtWIuKniJrGUsgo,2841
216
- wandelbots_api_client/models/plane3.py,sha256=lhp3j1LnD9TPzabRq_8Pjx-x2r6luWAlHcjoOZWsNfw,2860
217
- wandelbots_api_client/models/planned_motion.py,sha256=61iER3dOWjRsp9hgW2bs1TMOBPosQVFlosTVgdm99IQ,4943
218
- wandelbots_api_client/models/planner_pose.py,sha256=0vvt8YGLUWkxxuJUMM_HCDl9PIuRtNagwOxs1O-cJq4,3282
219
- wandelbots_api_client/models/planning_limits.py,sha256=2xSKQj7cdz9_g4F5pB_x3q7x5pRGt8EKvxmDtE3RtTQ,7202
220
- wandelbots_api_client/models/planning_limits_limit_range.py,sha256=4zh8CUjF4uEYktRbhFqzIVWffnHoxbbOwUx0MLTuQFo,2803
221
- wandelbots_api_client/models/playback_speed_request.py,sha256=FWyfoSZjBzq8bWeCUSWKVwYdcN66jc2taWh22c8ScZ4,3613
222
- wandelbots_api_client/models/playback_speed_response.py,sha256=w_W1CY381B2OkQ9145KKE4kEGwiaRePI6aaNbP8Uubg,3150
223
- wandelbots_api_client/models/playback_speed_response_playback_speed_response.py,sha256=--g4gH44WpT1OaO9uBVetx2gk3rFIMiKTIHwAeVaqgs,2793
224
- wandelbots_api_client/models/point_cloud.py,sha256=_Yj4n0S5hdYkB4-kS96dQ1_QkBVMOwAKl2xldqi6nAk,2561
225
- wandelbots_api_client/models/pose.py,sha256=5fCz7ycezn4ASuym09us7jkwVLkeVHnAUnI6j1prBxY,4008
226
- wandelbots_api_client/models/pose2.py,sha256=c2bau3srcmwmmw1oDWumwbSDLw4C95kFFK5VGC3u3ds,3355
227
- wandelbots_api_client/models/program_metadata.py,sha256=C6OcwVAPNgT8GB0QaCeXjVyR-m-nELDKen0kWINGMlw,3471
228
- wandelbots_api_client/models/program_run.py,sha256=fEO6Bd3fjQ0tk3RISrm9b_mdEOal0tyfsMaTmYMc5tc,6224
229
- wandelbots_api_client/models/program_run_object.py,sha256=8_wvapPMPQpACnwn6suux7NHfSiF0ky_vX3r-bEYFDg,3629
230
- wandelbots_api_client/models/program_run_state.py,sha256=XeBSxsY0qSoAGuP0rRQkculNxMnXuFuWL3o0o5s0tPU,806
231
- wandelbots_api_client/models/program_runner_reference.py,sha256=ITNig9eWIGUa-GQrqumjA2CJlBSRuxQmKWHcqqIPStU,2727
232
- wandelbots_api_client/models/pyjectory_datatypes_core_pose.py,sha256=ym-YeP4sLVs3rERci8eSD7R5y3KVxftZg8yFBwH__7E,2845
233
- wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py,sha256=VOwsEzgu1lc9ep1fh2wHi4HHUt8fzx9tGd5ylyIbVkY,3032
234
- wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py,sha256=utToq5fz7UVIX0Xl-Wc0wzVSh4zTRNRftSD6K4ZnTGk,2809
235
- wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py,sha256=kUk5WIZU_4DcK1dyjBbjFBxOk5mYNzWKvgWzz6fFee4,2777
236
- wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py,sha256=ygFQN9GiuZpFO4tOQ_32eb9FkDUjKW2jsrxvEmDS21o,3750
237
- wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py,sha256=sF-iU6Bkf_3JMhJ8eQm_9wb-dQr00Sdd9H-Eg5aRavo,3282
238
- wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py,sha256=yRaKA9dnqT3gkm0LWohJ53TRZRzEUFsVbS5zlcgcfsk,3239
239
- wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py,sha256=2yXehAytSjtUImmdA2cCyzEtm1419k_Q0RwMIO8jn40,3969
240
- wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py,sha256=NhjE8ZziZ08nTRkJ23_e07xs-5MYiKn7G3qO-8y8wMg,4547
241
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py,sha256=H2ywic8IxvCsW0hbSH0_ggiLAwqd6mWBPa_Drha6n7U,5317
242
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py,sha256=8zChkwE1X9NMgTA0S6MIQplWdfwb5ISikwG3xjr6_LI,5329
243
- wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py,sha256=orpoFXmqYZPo4NOSa3S9d_I1QadUS_S1kwvX1tSezI8,3246
244
- wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py,sha256=VTh4b5v32oSz-Yj9zt5rYwccdWMPU2_v4T5BfnwKkNE,3341
245
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py,sha256=DhG_FESXe4H9m2pE_Noh_8kPoo_fgIevWEcwwVsue3o,3074
246
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py,sha256=bUDaTOFP_Wel7UhIYDRuzvsfRCKP549p8WLqRbfgbFw,3092
247
- wandelbots_api_client/models/quaternion.py,sha256=FmZxqoMGMHz2-HviqO1vFfHM3dE6XMadZzeQSSQ8648,2901
248
- wandelbots_api_client/models/recipe_metadata.py,sha256=RnSxj-ZLOZ7xtsHGL4-OYtBwPfTsmEOEx1r0Y9kliyQ,3225
249
- wandelbots_api_client/models/rectangle.py,sha256=5FzpI1Hf9rk0X8-VYb79VHYcjsMeXewMnO5jTkJA4no,2832
250
- wandelbots_api_client/models/rectangle2.py,sha256=RdMUyMuEA3Frz8nqDRT3qrhI3tJ1lsg3_G3M5hOx7eU,3232
251
- wandelbots_api_client/models/rectangle3.py,sha256=dplcXTc2bhWrd-QVMbz-ox02peI2GusQiYt6NJZcIwI,3113
252
- wandelbots_api_client/models/rectangular_capsule.py,sha256=Pm9lZ63j22Oxdt5mRN_6f28RE69EqxqwBY_484SK5zc,3344
253
- wandelbots_api_client/models/rectangular_capsule2.py,sha256=_E8zP1EMfdyYtYwdbGknn51OCiTzk8Dl6rcjsESnOsY,3752
254
- wandelbots_api_client/models/rectangular_capsule3.py,sha256=M8D5oLLjHsdg47_TCutPb9lKMjELIX8njwzArQhIw70,3582
255
- wandelbots_api_client/models/release_channel.py,sha256=PD_vkysotG9M86yEIDTDaM07bt8bXQp5kmF0vXlotQE,851
256
- wandelbots_api_client/models/request.py,sha256=YStehxiHrHEoqh5xcMbnOelcyxxiRePeG8h-C1AIf-I,4994
257
- wandelbots_api_client/models/request1.py,sha256=35yB-9tCIQitbNolonU3WcWI5QGEJRH8uq0obaO25Fw,4971
258
- wandelbots_api_client/models/response_get_value_programs_values_key_get.py,sha256=ovcb32hOvA6Gu0yzmBcDCho5HHLB_LAXfBplB_3LZLA,11864
259
- wandelbots_api_client/models/response_get_values_programs_values_get_value.py,sha256=FiIPB6X1aSyV-Kz9F1NeSqw0g1kQ-5Ao4vbFRo5kcJ4,11996
260
- wandelbots_api_client/models/robot_controller.py,sha256=TLrSh5jJzlKcWR_-bWU0voBql4UBiab_kOUtF3wv7ro,3725
261
- wandelbots_api_client/models/robot_controller_configuration.py,sha256=pgymzFtXIyrA2QifStjIgbV_k0vUTbDq6eAD0IYO1l0,10281
262
- wandelbots_api_client/models/robot_controller_state.py,sha256=HcEWstscFKz2OyjeHAtXI1qeX__EVHQSF-Aa05OE9Pw,8047
263
- wandelbots_api_client/models/robot_link_geometry.py,sha256=JcbvjZ6DdJIKAbTMZCKoYg5rEC8A9RKqzBoA7C89Cpw,3190
264
- wandelbots_api_client/models/robot_state.py,sha256=b1r_jN3I7r1G6AUvDw43VnxmLDQLLBeGuCg-kDWtmyg,3282
265
- wandelbots_api_client/models/robot_system_mode.py,sha256=H9YJ-mSRpS72TuZyyZo81yGsteN9yTxbz9vqJukUoe8,2592
266
- wandelbots_api_client/models/robot_tcp.py,sha256=3Slac6nQHLPjbhwQUnkDp-Q6QX-fRilvnD7Loq3dzdU,3572
267
- wandelbots_api_client/models/robot_tcps.py,sha256=L3vNaKoYcFXSvmBmyH6CR3woJYYcMNFihphZv876css,3589
268
- wandelbots_api_client/models/rotation_angle_types.py,sha256=Kg9l88Begh5HAGu97PVWhm16S_3Vhd6dprOCI3YaI08,3005
269
- wandelbots_api_client/models/rotation_angles.py,sha256=KprdqCMhsff35l0TAhG1AoI9P4lejg9VCVTUiwazq2E,3081
270
- wandelbots_api_client/models/safety_configuration.py,sha256=wpnCTlfA0LqjsqrkI51FnTgTuekq1RGVQSRhUU7IcOU,8497
271
- wandelbots_api_client/models/safety_setup.py,sha256=RTK9uM4ccSa5tk0qzTHToJFbca2twZqQFspGs3EgSXY,7723
272
- wandelbots_api_client/models/safety_setup_safety_settings.py,sha256=W5tDUT1dKU8VRJl3KSMdvnYffzSRIEGdmSe29D11TS8,3593
273
- wandelbots_api_client/models/safety_setup_safety_zone.py,sha256=5a9UgrHBuNw8nh-QsXnSDClcIZLFMgC6pYT32Q-sbbg,3579
274
- wandelbots_api_client/models/safety_zone.py,sha256=hiktP0N-jGowtwMjsjfpNpgY13vMl5k1G954yXUfvBM,3151
275
- wandelbots_api_client/models/safety_zone_limits.py,sha256=cZ9gwaIHwv9AiWxHC9rbTm07CPHGuHBfWpxBctw3ro4,3000
276
- wandelbots_api_client/models/safety_zone_violation.py,sha256=SR53jbTXdkBt7Z08JdbBrXYoeFC327k3vW9kcqjADdQ,2804
277
- wandelbots_api_client/models/service_status.py,sha256=e5Hi57UMfLGiFbtLGh1yYWsoo__8mm9stCVLu504tNQ,2958
278
- wandelbots_api_client/models/service_status_phase.py,sha256=qQNDgNH1leel3bJOR5_lum5fOU7-Q7lvHLWVY702seE,1113
279
- wandelbots_api_client/models/service_status_severity.py,sha256=jxVxPCt8cnuvGPcyXPH3KddranFgKbgeKzJHbgqPe_c,756
280
- wandelbots_api_client/models/service_status_status.py,sha256=fvQITa6NsiPnDVVwwibJzWCnszLM0ftP4EKa80HwsUk,2943
281
- wandelbots_api_client/models/set_io.py,sha256=U7HoUoO-O_p6r3FbOUNcFwulZ3Qff4vsGpdC8TH_HCw,3055
282
- wandelbots_api_client/models/set_playback_speed.py,sha256=XYcbTe_T6A_8Sz-ckip1MutQQPu44odeEqHDfudneqc,3674
283
- wandelbots_api_client/models/single_joint_limit.py,sha256=4FlYkn5MUANiPnPDOf84RWmkz4CcUoEukB3FPEfmjis,3748
284
- wandelbots_api_client/models/singularity.py,sha256=D9GfFHm-V2mQvHQRj9zBGVTnJcS0XZ8eUR5JdiQovso,4041
285
- wandelbots_api_client/models/singularity_type_enum.py,sha256=4EKQv96i7ospHd6LPPsikNlscjltGn22FF7hAdDvOtQ,754
286
- wandelbots_api_client/models/sphere.py,sha256=cP9WbUmaE-JLhU89R_ZW3eXisJl9QAoEJaQwVf_joEw,2679
287
- wandelbots_api_client/models/sphere2.py,sha256=lvgHP9Ieu8W-Y2XZNbC3ARqUjLlfsGyBJUIfZaXcXE8,3046
288
- wandelbots_api_client/models/sphere3.py,sha256=9b8YngrZTFm_eahymQeFJtrEDizrXPZXP-t1511hAZg,3004
289
- wandelbots_api_client/models/standstill.py,sha256=-9lGM7RrKV1ESlprJmzUcsB1urwPxyJ_Lx3KRTZzeIg,3004
290
- wandelbots_api_client/models/standstill_reason.py,sha256=3MsUAXadnG7JvGECI9-uxqBNIexc7SzTqfd6T30Py4s,909
291
- wandelbots_api_client/models/standstill_standstill.py,sha256=hevJnEVUhFsWGjSecNtvS3WYbZW9tD9OopOKIYkA-Es,3288
292
- wandelbots_api_client/models/start_movement_request.py,sha256=1zkS4vB-sl6tXlGHz_TOqoRhN60aVfeu4ORFkmxWpbQ,6020
293
- wandelbots_api_client/models/start_on_io.py,sha256=Hzob81m8c4lzkDZe0zOR-VrJJJlJTsbPG3NeiutLi1E,3174
294
- wandelbots_api_client/models/status.py,sha256=qaSjthYw88BBZllvBOc5NhV9ugJ07Vfu3L_xwsZq7HA,4702
295
- wandelbots_api_client/models/stop_response.py,sha256=KJOKvg93vSDT_xfameLYCIbxKMPZ7TdCPfa5FtZPCfg,3623
296
- wandelbots_api_client/models/store_value.py,sha256=WXV3rBnbyFgxijcNUFUBLL7FaT1ROMPU_KqPD6fu5tc,12438
297
- wandelbots_api_client/models/stream_move_backward.py,sha256=yA5mH-SjS56jR-Z_IHiTOaFqmkWL4zUXzqK1gnSN-TE,2875
298
- wandelbots_api_client/models/stream_move_forward.py,sha256=XhS5gr1RqUZZymhnDVSgB3HJ_u-58zCqTk3aniTOVGM,2862
299
- wandelbots_api_client/models/stream_move_playback_speed.py,sha256=5mMBy2y4z670BT4RxITXXfAotzKzpA76bc1F_fyJ73k,2970
300
- wandelbots_api_client/models/stream_move_request.py,sha256=T-2nOpm5sBBC55XwOhGRSkx3OsBYkesnTiktjssqsNE,7965
301
- wandelbots_api_client/models/stream_move_response.py,sha256=FNzqoGhcrhdcQGXea4v49OJbiE4SuqOFr_jPd7FRoPE,4262
302
- wandelbots_api_client/models/stream_move_to_trajectory.py,sha256=4ffKauz4zwAJ7_uKVuOK3ULuQVHKXfAlpMsjK19323Y,3033
303
- wandelbots_api_client/models/stream_stop.py,sha256=RwAkJ3eaZzSXcmnMf9YIFUFIpQlJsBWj7OhmMiSNdM4,2795
304
- wandelbots_api_client/models/tcp_pose.py,sha256=s1wuXhJCAQ1p_NtgC3N2NBvlVzrkoURWxAttE0t0j_I,3593
305
- wandelbots_api_client/models/tcp_pose_request.py,sha256=C136UhwSdbnmAdzIe6X2OcnFPKX0DQExFdCfjBl4E5c,3651
306
- wandelbots_api_client/models/tool_geometry.py,sha256=POeJye2yd4f5P_xdYlGjYI0BTyWYu_e43rRCBhKn-TY,3941
307
- wandelbots_api_client/models/trajectory_sample.py,sha256=bjJzGoZJJZD9oL28VpE4S0Xxxv1Rd7BYl58i0Dc20JA,5742
308
- wandelbots_api_client/models/trigger_object.py,sha256=PiCtp9x1ZyiSg25xJc40VZ3c9FRsr8iT3k981tLRON0,4134
309
- wandelbots_api_client/models/trigger_type.py,sha256=hMHfzkDc7CJxzW2Cqs5b0V_3K8OCVB3dCZzCfOVbz2s,719
310
- wandelbots_api_client/models/universalrobots_controller.py,sha256=xSrs-dFhAhIl1AViaXx6DUo4tERfNGkkv9NUgIBVQ1Y,3267
311
- wandelbots_api_client/models/update_nova_version_request.py,sha256=-zFhaeLl-SF6BKFpfOFiGqMA8_leb_oYds53o5bP5Q4,2718
312
- wandelbots_api_client/models/update_program_metadata_request.py,sha256=Gtd7arO97W_VlcodKmmhLH1Ud9QkitLOZVgteAZ-eRs,2899
313
- wandelbots_api_client/models/update_recipe_metadata_request.py,sha256=bdtvboQUVe5Dx7OGUVSO9Ez0sOEcId-F38yMq9a5Eeo,2931
314
- wandelbots_api_client/models/update_trigger_request.py,sha256=Tjnwjjz2XGMdNUnx_wk9vc_4Gf6QtyLgayHcTZyuAYk,3356
315
- wandelbots_api_client/models/validation_error.py,sha256=SWLDV8LAT738o-Zoq7jK0Pj9b0WeVvu9vhfLk3YBA34,3818
316
- wandelbots_api_client/models/validation_error2.py,sha256=JV8OluM-VbMHpiaDvywVd7ZbjLc-0p_A88eJ-Gu2zs4,3827
317
- wandelbots_api_client/models/validation_error2_loc_inner.py,sha256=brx3eI5zi_ETPd_BV2prPQm5FmVrjR08mcRigOPLPBc,4853
318
- wandelbots_api_client/models/validation_error_loc_inner.py,sha256=5B0ey1e03SzkSDuTVJN-oEyP5EOyROVnrphdA4wwGsU,5264
319
- wandelbots_api_client/models/value.py,sha256=kn-2AIr1gAB8sxGxkbmo19cn4EenWqWejbErJX9poeo,11663
320
- wandelbots_api_client/models/vector3d.py,sha256=BGk8XMi8BsGstkjp8ITq3aU1dKphDI_h2B9NPKfWOhE,2740
321
- wandelbots_api_client/models/version_number.py,sha256=lw36gd-8JeCNNO2NB5_yAWgTF75w34cB_yAityCvxqg,3912
322
- wandelbots_api_client/models/virtual_controller.py,sha256=ElCvBUnLT1bpJZiVuUrmvXpZYdgfQt_Jnfyu5v7h7Lo,4233
323
- wandelbots_api_client/models/virtual_controller_types.py,sha256=9ifrAU8bHyf7eOgidamc-8mmUWLam_Nt-kQYHfaBFIc,5815
324
- wandelbots_api_client/models/virtual_robot_configuration.py,sha256=scL29Rmgo1-bqSYOKthc-ttMvg3ltYUo3YkYHH0Id64,2957
325
- wandelbots_api_client/models/yaskawa_controller.py,sha256=1PoRt2GWu1pX-HVfeWPKVTSvR_5StdiQ7IhFyssdI5g,3208
326
- wandelbots_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
- wandelbots_api_client/rest.py,sha256=-Sa2MPEa3vNQN4BQAm5FLLhzypL_hzwhCuUCTn9OYto,7213
328
- wandelbots_api_client/v2/__init__.py,sha256=Q78NFhX0G5W---zI7zM3B_7gbWF2NWLLKAblRh5gKw0,1110
329
- wandelbots_api_client/v2/api/__init__.py,sha256=jxkGm-FREbQVvDmM9k3XvPbWufCWa0vcHG3rXWp2olc,1741
330
- wandelbots_api_client/v2/api/application_api.py,sha256=PsKFVU7v-XpkXPCFCUrvOysYgBmSBe20mCrAUaLisuY,70855
331
- wandelbots_api_client/v2/api/cell_api.py,sha256=qSPLq8jEoouPpBgz9IiQF0ghQkaslDJomcZq33_HsAc,77418
332
- wandelbots_api_client/v2/api/controller_api.py,sha256=nn7EafCuQg8NxS2bJbe7vNFiaPbvjQhhrAWaDUVkoow,163304
333
- wandelbots_api_client/v2/api/controller_inputs_outputs_api.py,sha256=z_LALPKD5SU1sFmhKaLpTwEAiVg5zS_ND3zF9t8WirM,63090
334
- wandelbots_api_client/v2/api/inverse_kinematics_api.py,sha256=UzRgFkaGNGDB9WWIOCx9h07L70NwAUi_ihOcN4VezTA,13442
335
- wandelbots_api_client/v2/api/jogging_api.py,sha256=Bonv9yPNO5-coSFaIqJ65UcuIqDpGyklBUPCXPPcu38,6208
336
- wandelbots_api_client/v2/api/license_api.py,sha256=MEI4y7YmQKFFmKUIt_pPUPSs9zFGQS1fgrJYi08zwWc,40722
337
- wandelbots_api_client/v2/api/motion_group_api.py,sha256=Vp-EstvlENAxqDuwEp50WqDezqqJ9ZOuH24D8j_Z_nQ,30630
338
- wandelbots_api_client/v2/api/program_api.py,sha256=BSdSRcDOV4TwkH0BTUU_pbeAGQWt2Sg5HCx5a7wKAqA,91859
339
- wandelbots_api_client/v2/api/program_operator_api.py,sha256=zY2WVSkW9jmRNp2yu2vwbi3wDzXKcvCIjeupDYz0CCs,93487
340
- wandelbots_api_client/v2/api/store_collision_components_api.py,sha256=cgKiVZpudjFyy8pdFF_2Q_tYoSV81T-IcqmBLbAkJx0,134888
341
- wandelbots_api_client/v2/api/store_collision_scenes_api.py,sha256=kDmtfyS7MET9M8K5lIN5Wn-aLwI_yR68RvXmqrDmaLc,46828
342
- wandelbots_api_client/v2/api/store_object_api.py,sha256=6jQ4hiSRor6R1njXoxMWStUr_4xj3cpd36yy1oH8mDg,66205
343
- wandelbots_api_client/v2/api/store_program_api.py,sha256=9trej3FfUsuBVdze5gD0FOOLEzePHbpy7ECrqsTgwK0,44751
344
- wandelbots_api_client/v2/api/system_api.py,sha256=RWvLwwcC4vqCnOm2zV_8rnMB6aRLwM_nleH0kivbJqQ,85190
345
- wandelbots_api_client/v2/api/trajectory_caching_api.py,sha256=iNEDRNOF2iKtqM9E0BU3dWW3bJfI-1f7vnfN2oMLl3w,63979
346
- wandelbots_api_client/v2/api/trajectory_execution_api.py,sha256=yBI0-xSawa8odrAdYKW4XCD2MrYO8V4GTuRMejJelpY,7824
347
- wandelbots_api_client/v2/api/trajectory_planning_api.py,sha256=ncYw9wQAzqjjS4V5aHmBjo5yehLJJXnWf9T38N-jO3E,40413
348
- wandelbots_api_client/v2/api/virtual_robot_api.py,sha256=M3RvC3nf4hQ11gFKRTxmYr6ohpv0Lzv8PFLRVAN-Rjw,81196
349
- wandelbots_api_client/v2/api/virtual_robot_behavior_api.py,sha256=W1SSceArKIYH7HXRIFp-vmM6VoxsI6EfKhgq50JwscQ,31750
350
- wandelbots_api_client/v2/api/virtual_robot_mode_api.py,sha256=1XN7AWpgCRMNCv6aGCUYDetIKQjhXAJ-h4y-s6DFrT4,62728
351
- wandelbots_api_client/v2/api/virtual_robot_setup_api.py,sha256=g0uPo4rKqU95bD8t57XPq4ibSUmedufao-VAyxSCZcU,105247
352
- wandelbots_api_client/v2/api_client.py,sha256=plwehuj1vAuwRnYw_o3RO4mivcAi4o-fO49OscouZR8,27701
353
- wandelbots_api_client/v2/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
354
- wandelbots_api_client/v2/configuration.py,sha256=_WkYfe9W2bQjPTrROz_sbG-kLaBE0jkpnZoYbz9TvJQ,18411
355
- wandelbots_api_client/v2/exceptions.py,sha256=dAl-6ZWR0W3REJYdNiRpXHF9yH_6QNlr6dWAaUUMM3E,6516
356
- wandelbots_api_client/v2/models/__init__.py,sha256=abxbdrsDcIdeybtmG9S_WZmr19jCo7aybfaqIgDl3Mk,17851
357
- wandelbots_api_client/v2/models/abb_controller.py,sha256=XZZ6vqKWzYzgBE1MJVD7QfZ9z5PkCTpNjXthX2Pqysc,4071
358
- wandelbots_api_client/v2/models/abb_controller_egm_server.py,sha256=Ssh2iVQFxuMw1uvQhsJ3PyFpuEufy3UEA4wqGPrBcT0,2858
359
- wandelbots_api_client/v2/models/activate_license_request.py,sha256=agPG10-o3E1Kn7iRmbCi-vWKmfIIjOA9iZJvobAj4jc,2776
360
- wandelbots_api_client/v2/models/add_trajectory_error.py,sha256=v2g_uCtVmLYgdF2cqh3mi69oItEK5RwkupAJSbS-vmk,3335
361
- wandelbots_api_client/v2/models/add_trajectory_error_data.py,sha256=Fb01CMNJeHAGSVQ-q1QD1_jiqDcW5uSTKzSn-UVpmhI,9266
362
- wandelbots_api_client/v2/models/add_trajectory_request.py,sha256=vAOpgWwt3T4Uphfi96C5n2l1B7oSNXP5N2eeeR4XJW8,3517
363
- wandelbots_api_client/v2/models/add_trajectory_response.py,sha256=DZkLBb7jkjBTPsDyWMQoueqaDdfR8CRW5b7of3hchWU,4216
364
- wandelbots_api_client/v2/models/app.py,sha256=kkZgjXyqoOXkhCdM2n17HTaP9eYbj4O1392Q22eFaVg,7040
365
- wandelbots_api_client/v2/models/behavior.py,sha256=CF53Y7AgPqYbF_Ry0VHNHYVxzvm70Fr3XEtRnGk35uk,1850
366
- wandelbots_api_client/v2/models/blending_auto.py,sha256=mLKzGdrD1vB_VUEYLKuuiHzVN6KZe43tOnL3C__9Spo,3389
367
- wandelbots_api_client/v2/models/blending_position.py,sha256=R-YPxMybH33cenjH_fPUu-X-KfSCyo4a7ZqkaBZPuH4,3501
368
- wandelbots_api_client/v2/models/boolean_value.py,sha256=xOk09eQ-Uguw5adXhy0ERFMrmNCYjsHmx3qjMRLaudE,3132
369
- wandelbots_api_client/v2/models/box.py,sha256=N7Lx9sVILaGjFV-o7aotiseez9P7I6E2saLEubmAKAc,4147
370
- wandelbots_api_client/v2/models/capsule.py,sha256=UCO6rmugj6cNPkKP_voHiHpRrht1UKI3TykNROI4oF8,3411
371
- wandelbots_api_client/v2/models/cell.py,sha256=G7IkT9GopVzOGb1gX7ImPIafJgLAKOWSL4Ups7whQVc,6116
372
- wandelbots_api_client/v2/models/collider.py,sha256=kxIKLB9ziTeGO-0ODR--mf2MKeMSIMuR9rLEOMJ3esM,4037
373
- wandelbots_api_client/v2/models/collider_shape.py,sha256=U-xOZeDub6RVvb_hPSO_AHs9HgNkos_ASckcml4jlNg,12364
374
- wandelbots_api_client/v2/models/collision.py,sha256=FniLu1_DTeHj90vi1tkPJWxoQYn1vNp8IGencWI5MAw,4089
375
- wandelbots_api_client/v2/models/collision2.py,sha256=44q7Vjwx3_oSjXiQZ_DVNEtBdE4eDCyl3z8beT8kpsA,2989
376
- wandelbots_api_client/v2/models/collision_contact.py,sha256=FKsxsDDrkgw8sOz-3ffVPbR_GYe0HzH_mnBen44g4D4,3154
377
- wandelbots_api_client/v2/models/collision_motion_group.py,sha256=fZZyKHzzlf7SofPSHiU4k4c4d8WmX9XB3Ib8Pf1ZRTU,5515
378
- wandelbots_api_client/v2/models/collision_motion_group_assembly.py,sha256=WE6lI425xpBKYmwxu4l5g8xNN2lZ1g2ZvQhB6VGqLcI,5922
379
- wandelbots_api_client/v2/models/collision_scene.py,sha256=ChC-Aa0sS6k5V9vcE7HfPKkLm-aTlbYgWslfR7ztIuA,5349
380
- wandelbots_api_client/v2/models/collision_scene_assembly.py,sha256=NcngXi2FN_5lpN_09TAQYZrfDVZm5OrhMHJaZOE-7w4,6639
381
- wandelbots_api_client/v2/models/comparator.py,sha256=44s65i3_8Rj3USDAJ-5EyfmR6CmrDVloCT0ie-NauKo,1180
382
- wandelbots_api_client/v2/models/configuration_resource.py,sha256=wR4_elau85w4MEiqQvikSaiHzBKzC-QmrwbVoNlclg8,4208
383
- wandelbots_api_client/v2/models/container_environment_inner.py,sha256=xrYAaR_zBpetj-_u7vTmrZaVoD4URQEbktn_bnKZq90,2749
384
- wandelbots_api_client/v2/models/container_image.py,sha256=tcwsD3Yo6fVoZJ18WxWsF8BcfV-gV_iQ0mKZ05xM8MY,4720
385
- wandelbots_api_client/v2/models/container_image_secrets_inner.py,sha256=aQU8q5X5GhQB6JK8euzfT2_-jr0aZO5ao0b24MaIJDY,2684
386
- wandelbots_api_client/v2/models/container_storage.py,sha256=0J7FnII8TK1yxt7oujV6c7rwUfPwazKqdXnIdPK2nRI,3434
387
- wandelbots_api_client/v2/models/controller.py,sha256=bCKw9YaDd0-k_kovi5F91vugoIrrShQHWx_ZW20iGSY,7283
388
- wandelbots_api_client/v2/models/controllers_list.py,sha256=z0pUHnNBERsGdNKVkb9nbodAbPH5FWN-eNKnXag3XVo,3797
389
- wandelbots_api_client/v2/models/convex_hull.py,sha256=fMSdSI2NHb2UaEWHeJoll1eH7KX7TYdIN1hdR-m5Ogg,3255
390
- wandelbots_api_client/v2/models/coordinate_system.py,sha256=awVSWio8YeRYWsvqJ6dMBeb-A9khJMjFtDU1IZu072A,4111
391
- wandelbots_api_client/v2/models/coordinate_systems.py,sha256=KmWj6qHwCXV2GzBt7ge-n696EuxAIC8ilxYAYFMPIfc,3873
392
- wandelbots_api_client/v2/models/create_program_operator_run200_response.py,sha256=GsMfy2_bM_dcRT0zRVsujGLSVP4uGfPkolzFDFaBs8c,2858
393
- wandelbots_api_client/v2/models/create_program_operator_run_request.py,sha256=RelBPBrXHCn1zzhirydi53a9SY8A2Jgkdo2RtkTCM7Q,2819
394
- wandelbots_api_client/v2/models/create_trigger200_response.py,sha256=TC3Ym6LR-jq4LdGCSYrs70XDP81KnFqQek2RvBD7p9k,2771
395
- wandelbots_api_client/v2/models/create_trigger_request.py,sha256=dqNcHAiA4Zd6-tengdfid6PuXaX6WWb_LoHkVxsdPCs,3545
396
- wandelbots_api_client/v2/models/cubic_spline_parameter.py,sha256=q9gzpmcGn0zuA1YjLtKgeU5pqoe5Q_ohM-4TBQxIuro,3060
397
- wandelbots_api_client/v2/models/cycle_time.py,sha256=fWetdjTCKj90aPh-vrH-qx-HQPwuJP6yxaqacfiLOL0,2730
398
- wandelbots_api_client/v2/models/cylinder.py,sha256=nxgW3I4WibLayJiUSiBYkn8eI471uTxpjg6Q5R4LbrA,3405
399
- wandelbots_api_client/v2/models/dh_parameter.py,sha256=rLyo-8vCSV1XSN3bkUEUyGulaaf8P2mDJjIl8vaT1R0,3506
400
- wandelbots_api_client/v2/models/direction.py,sha256=uLV77IAnPM1NALsgPMNCRqhqCYNdyELl_fxNKPHVAeI,891
401
- wandelbots_api_client/v2/models/error.py,sha256=YxNRuIlVH1EJJqBnVGjjUcD5N8Em0gDna6MsqFDF5ao,2704
402
- wandelbots_api_client/v2/models/error2.py,sha256=lSOOyBjnBmzCwd74vSoStr2AONR5Qu15Q5ihwLUqRNI,2616
403
- wandelbots_api_client/v2/models/execute_jogging_request.py,sha256=S4XhG3StfKF4LnTkcZn0jaqxq6dDxApo5qTkLZ_mB70,6550
404
- wandelbots_api_client/v2/models/execute_jogging_response.py,sha256=QXCGfjNnPv7N3UkNdr9Hfn9yui_qKTKdUXufkoIR6PA,6523
405
- wandelbots_api_client/v2/models/execute_trajectory_request.py,sha256=Wktx7NQxe94o0bTaQfgyWkCC2VaFfbjiKxkr6YZzdUs,7499
406
- wandelbots_api_client/v2/models/execute_trajectory_response.py,sha256=DiMMzuc0iUgzMRFHWqjHNsf4nSBfK2R_jjS8C9c3Dwo,8808
407
- wandelbots_api_client/v2/models/external_joint_stream_datapoint.py,sha256=P01xBwvu4Qzala6V8JKIOai5GRN1PUiDZAnEhw7CJ_I,3260
408
- wandelbots_api_client/v2/models/external_joint_stream_datapoint_value.py,sha256=nmCbokGz_ICW_KVJKqqe46y2eI0THcBKLwucYnaJarI,3384
409
- wandelbots_api_client/v2/models/fanuc_controller.py,sha256=xLaHl-UmDV2N_oUeYiUDxSSBZ8PtsQ45vJt_UAkomSQ,3241
410
- wandelbots_api_client/v2/models/feedback_collision.py,sha256=z71W1ccxq9qbupte-fmbKl3OlGPihG0aOIxmpkz7OHk,4784
411
- wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py,sha256=vuXJHWkEwS_dF2t_0tRWG4H2PfB6oe0eSm10a-y9jSQ,3518
412
- wandelbots_api_client/v2/models/feedback_out_of_workspace.py,sha256=8CjKgufP8HgzvlC2dBRZKHvOFKYGwQ57jELTl4iYnHQ,3533
413
- wandelbots_api_client/v2/models/feedback_singularity.py,sha256=A2yWq9-6xg04U5QR2CfM4EJWlrrV-YgFX2AbCcMSNtI,3964
414
- wandelbots_api_client/v2/models/flag.py,sha256=Gc7Z93N2XXUQg22DvBQJNg6U4m7UcF8GtiobHmFQK-Y,2606
415
- wandelbots_api_client/v2/models/float_value.py,sha256=IZyE5gLVih9FJxGpx7zO6LqYDQbjiLV1zvvQLGYb9sU,3261
416
- wandelbots_api_client/v2/models/get_all_program_operator_runs200_response.py,sha256=_MywVWEOPsm57nP15oJpmmh67jzR-sxLhljXE9sHgsA,3923
417
- wandelbots_api_client/v2/models/get_all_triggers200_response.py,sha256=m0hWeGfUEudgsv9Tc4nf2OF5_IrsvGhpk1NnOT1VG20,3827
418
- wandelbots_api_client/v2/models/get_mode_response.py,sha256=IZYsh_vq1xmxNKhG-qzr9RSCQ0-zZw_In35MHxnoRig,2765
419
- wandelbots_api_client/v2/models/get_trajectory_response.py,sha256=dWCJegAR6ksks6tDA0us5VbUAcaeLabGOgWSlOvIph4,3487
420
- wandelbots_api_client/v2/models/http_validation_error.py,sha256=OtppI18kAxLybrXnKNdiA-lZnqQ-i7CL7vL_QmTGUyM,3795
421
- wandelbots_api_client/v2/models/http_validation_error2.py,sha256=9mWS2pMeMaiVQu333egVrP8PorS-kdEuBT1XzDQCDrU,3804
422
- wandelbots_api_client/v2/models/image_credentials.py,sha256=06kh8UE465xGMd1xiQVfnACW73mmx1X2kVcc_ow3IAo,2872
423
- wandelbots_api_client/v2/models/inconsitent_trajectory_size.py,sha256=taTKgjxYcOzGsVAi4yBBRw91tKbZFtcJKj6VcE_w2xQ,3360
424
- wandelbots_api_client/v2/models/inconsitent_trajectory_size_inconsistent_trajectory_size.py,sha256=O4PQfto9isu13ZlkE5XBSZOXGIwrKQ39BWmtiKzzSIs,3099
425
- wandelbots_api_client/v2/models/initialize_jogging_request.py,sha256=SeMe0u7mUdLhwC-nptBPGXkSVZ0H6eGClXZTw_n3ESw,4930
426
- wandelbots_api_client/v2/models/initialize_jogging_response.py,sha256=-sQq18HWNokCk5jcm0C2jHseTmp99D3Rbc2BwGVjpbA,3156
427
- wandelbots_api_client/v2/models/initialize_jogging_response_init_response.py,sha256=KIoq0_sbqAv3UHRQeczJtbMYTNKGbsK0Iqq6jsoY_tY,3067
428
- wandelbots_api_client/v2/models/initialize_movement_request.py,sha256=3k3GSF744Xmbx5XC3Ffv2zvHcXiKof1eVStKynipy80,5843
429
- wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py,sha256=-ie_OewHLW8s8HW7w9dYyHIjH_G_TbcK-EisBDfkheY,6245
430
- wandelbots_api_client/v2/models/initialize_movement_response.py,sha256=5tsc0dBZ23NWrqjOew5UVNQQ8u0Mv7g9mXPmT6Bz5LM,3171
431
- wandelbots_api_client/v2/models/initialize_movement_response_init_response.py,sha256=KqiLpXUeREOrImKL3-kohxh2XXDGaTt0g0PvOzYYGz8,3188
432
- wandelbots_api_client/v2/models/integer_value.py,sha256=Ru5tcmMdPr4Xbct6-jXiY_aPPsUXI0jPFdqM8jHf16c,3437
433
- wandelbots_api_client/v2/models/invalid_dof.py,sha256=aQjDblX9lGxy9bJvX_bxiAExavWbmW7D_tXGIgOR6H0,3021
434
- wandelbots_api_client/v2/models/invalid_dof_invalid_dof.py,sha256=_ch3Q5L8oBKgHEymb5i5QeeRlitv9zJMNcI1teGKX08,3040
435
- wandelbots_api_client/v2/models/inverse_kinematics_request.py,sha256=_whGsimrtzoQcEir3kwNgrMlDx332ZdBMn-B7Rw98yE,5879
436
- wandelbots_api_client/v2/models/inverse_kinematics_response.py,sha256=mzOoRwavGsb51CM49WpmurH_RhvYq_GdSq5rYoLSfBk,2746
437
- wandelbots_api_client/v2/models/io_boolean_value.py,sha256=LBULCi4HyqKcp42v_RbbwnkEBmoIb7SLVdMWq694qs8,3330
438
- wandelbots_api_client/v2/models/io_description.py,sha256=nTuBekgEa-urIJFsXGtKK0z-BOC0D2970IqKlLwxnAc,4421
439
- wandelbots_api_client/v2/models/io_description_min.py,sha256=BqNcvJmaOi51pcGKK7Zne1Fz0P1FnVbiWYGO5K0tJrU,7446
440
- wandelbots_api_client/v2/models/io_direction.py,sha256=t0-7Uj6y2YIyvXz1VyfE-eiIhDmhgEld5AFUnogJMIA,843
441
- wandelbots_api_client/v2/models/io_float_value.py,sha256=UFH-xo6Fidk87GIG024wUbsSLjuTV4j11iYbL32HnCY,3386
442
- wandelbots_api_client/v2/models/io_integer_value.py,sha256=Z0O0fvMM4-JAVkB2iF2BfYsoO5Ep6ADXE_nJ-3eKY5M,3635
443
- wandelbots_api_client/v2/models/io_value_type.py,sha256=z3SuQp7kh3VG6t52OW4OI0HI936ot1D3YDs1MdqOlr8,916
444
- wandelbots_api_client/v2/models/jogging_error_response.py,sha256=ap65zQuoMss6ozvzmeBSrAkzx4Kp8OCDX7TBvlV9BFY,3118
445
- wandelbots_api_client/v2/models/jogging_error_response_error.py,sha256=e3iu-SZza0jVmqP4ABQyiivCsQ9BDPr7E5H-cX2-kB0,2765
446
- wandelbots_api_client/v2/models/jogging_paused_collision.py,sha256=R3d0WgNz_Jcc2yJ2wXiByP1t0h80tYj5dt1eTtIUwK4,3218
447
- wandelbots_api_client/v2/models/jogging_paused_collision_paused_near_collision.py,sha256=Ii3jeBgphwawTPKeA898lSbhkenL9EmXozqdnTkauYU,2799
448
- wandelbots_api_client/v2/models/jogging_paused_joint_limit.py,sha256=L817gntkI76w5HyK6Ravzjp63SLwMWzAjZFQ1vyqZgQ,3250
449
- wandelbots_api_client/v2/models/jogging_paused_joint_limit_paused_near_joint_limit.py,sha256=hz3mp-fQhb1JYdtEwp1bzvXi4Voiug93YXt98FtWpz4,2821
450
- wandelbots_api_client/v2/models/jogging_paused_on_io.py,sha256=Hu7fbc5copNCA2LwW5ouwiMUBYyM4nKcaXAdL3yiOsU,2674
451
- wandelbots_api_client/v2/models/jogging_paused_user_request.py,sha256=HQRUGHB-CbAlUBx_1-UKdGTqS5BWuxfpMEeKreBXsD4,2742
452
- wandelbots_api_client/v2/models/jogging_response.py,sha256=D_OzXTOfdh-onPVNjbL9kPSVBGQMlhw1r6yBHRCzsWc,3109
453
- wandelbots_api_client/v2/models/jogging_response_jogging.py,sha256=GwJnIYTosiIVW9hPUdKyxKPIMkJsW_O-VtX-y8noBOw,3574
454
- wandelbots_api_client/v2/models/jogging_running.py,sha256=EyqDnhq-XTEr0esEKC32NpMvsbaSfM1mbEK6QjaE7ow,2642
455
- wandelbots_api_client/v2/models/jogging_state.py,sha256=CIecB1GlmXZRt3017kHLc_6GaM32E1Ap7s1FVMzL2rw,8194
456
- wandelbots_api_client/v2/models/joint_limit_exceeded.py,sha256=uw-GxWPprUXzAfqOOj5nueXtsUUUyiBORC-3kh0Vi5w,3158
457
- wandelbots_api_client/v2/models/joint_trajectory.py,sha256=RHWCZn6obHhj2rWm9qYwRvC4lsIeXFSbqh_sncoFSjE,4586
458
- wandelbots_api_client/v2/models/joint_velocity_request.py,sha256=HfzMTuPBPzIRYQqo-uPfHFBygCMUNC5n6y-P5DXrBBo,3584
459
- wandelbots_api_client/v2/models/joints.py,sha256=lx13kjqq29afwVlGxu7aj81ASMXa3C6RM78XyImCUqw,3076
460
- wandelbots_api_client/v2/models/kuka_controller.py,sha256=MiVTe9rlU2auWGusrSwE_R49ZPo-lAuZaTAf7qbwBdU,3990
461
- wandelbots_api_client/v2/models/kuka_controller_rsi_server.py,sha256=DDn7f3j6muwGTf5U5x260eTielp4cFu-RQu2Vt02Rmg,2842
462
- wandelbots_api_client/v2/models/license.py,sha256=f7Ds6utSh0MVZa6AM5FZfIigpwLB6H6vlMsXSMjWGbs,4667
463
- wandelbots_api_client/v2/models/license_status.py,sha256=R7WR9QXCp8rTXddM9NVKDWdL4EgskSEyZnLuG5FMzwc,2816
464
- wandelbots_api_client/v2/models/license_status_enum.py,sha256=kp0sFzArwC-P9qDRbUzJkz4Zk8Pb8BBQSEwVFyqs1fk,903
465
- wandelbots_api_client/v2/models/limits_override.py,sha256=FM0E77YtLxtn2-v2a6DMsoSQ7g1YFkhnz3swC67QdtA,4383
466
- wandelbots_api_client/v2/models/list_coordinate_systems_response.py,sha256=t4Ck-pizIsE3gWxGh3z92vkYIq7AHhx7vbeKMEvYmw4,3939
467
- wandelbots_api_client/v2/models/list_io_descriptions_response.py,sha256=wXBy-yhn4Dxg3Bo6FeArxqjAkCG_piZJjtjIOB6fJbU,3882
468
- wandelbots_api_client/v2/models/list_io_values_response.py,sha256=cTcBL6t8FRVO3pnH1b2RxmB9CRHbecyr6ptqRAsAs74,3871
469
- wandelbots_api_client/v2/models/list_trajectories_response.py,sha256=IXofDp2k3iiN547n2Xt7mm4-MQU4RYCK3zGBNEShXeM,3031
470
- wandelbots_api_client/v2/models/manufacturer.py,sha256=vktG_-WjWrgUdl4ogc7kd2E6X9_nq_mFUgP6W5XrlxY,868
471
- wandelbots_api_client/v2/models/motion_command.py,sha256=ubGd8WDDK5eIe8reR-QxT834ZT_mHLsgx-vgeJfxiag,4004
472
- wandelbots_api_client/v2/models/motion_command_blending.py,sha256=uG4oGq6fQEJNwKcSrCMBzPiY0ZzK-0H95js9JfdiFCY,6267
473
- wandelbots_api_client/v2/models/motion_command_path.py,sha256=pZDwg6Pcy-Hq2YKiHz9jtD7xXZ2sAQ6XwGC28cJVEc4,8843
474
- wandelbots_api_client/v2/models/motion_group_behavior_getter.py,sha256=ooZS_Bz-iVTd0zYnIZFLVe26hAy_EuOyxeC7VJiXBbk,2746
475
- wandelbots_api_client/v2/models/motion_group_info.py,sha256=sP-jhVH9BETPTG4rJvbyc3gwfzlPPHW25amtn9ztUEM,3099
476
- wandelbots_api_client/v2/models/motion_group_infos.py,sha256=zUAuZhRG1SSV6rbvOdR1Ql24pduqOakNpb1TEj3ZMhc,3820
477
- wandelbots_api_client/v2/models/motion_group_instance.py,sha256=6gIbFkKVfQxDHp8jXbjVC6JRlS4T92ldGga0JT7e3rs,4181
478
- wandelbots_api_client/v2/models/motion_group_joints.py,sha256=Bc4Q-vSwY7QuyDWBbT5lzjfoNHtW1OPMyQUvqTZdQvc,3540
479
- wandelbots_api_client/v2/models/motion_group_state.py,sha256=On22USeex9XqAwG92Rklt2gNcTTur5BRn1ppcd36OrA,8821
480
- wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py,sha256=W186UVQmonIfKvEDUIwuPgB5N8fxJmkqOdTwnyM22Lg,2995
481
- wandelbots_api_client/v2/models/motion_group_state_without_payload.py,sha256=DT8FqEQiVTkL-wB2vIBfY3xUZMsARUWnGiBVkrwatNY,8652
482
- wandelbots_api_client/v2/models/motion_vector.py,sha256=ow9DaGqStZ410VEnzE7FPrMhrsGYhin7S32saQ8Pd7M,3397
483
- wandelbots_api_client/v2/models/movement.py,sha256=YI3Uym8jdv_FegAgFHnDVGnm6UwLSSaVzzlvV32I-78,3075
484
- wandelbots_api_client/v2/models/movement_error.py,sha256=4MXrHKMMg4ch7-xuXAFAI8H7En6FAd-6SLnUwpnnD6M,3132
485
- wandelbots_api_client/v2/models/movement_error_error.py,sha256=xNdE9lVwHPPkBKZHG0066Hf6BamE_qTrY9LX8tQoGAc,2774
486
- wandelbots_api_client/v2/models/movement_movement.py,sha256=6FsFFXOF9P3UvhwBF2IQbPQ30zeeSSWCTSw5T7ixEvY,3479
487
- wandelbots_api_client/v2/models/nan_value.py,sha256=BMeF7xvvZutWXoSx9jlEmBBPDU3rrOCtBOXpEFKsaHY,2979
488
- wandelbots_api_client/v2/models/nan_value_nan_value.py,sha256=D-wx1X2gYDTVe2jeuefKTY75EthP5jqZxLyeIvFJwyY,2869
489
- wandelbots_api_client/v2/models/op_mode.py,sha256=fo65NgCmApzLxhfYwh-yw7T7Rmfe81vNz_VPbBPudTg,2978
490
- wandelbots_api_client/v2/models/opcua_node_value_trigger_config.py,sha256=tkVtjsLl-xshka9MBlXQpnWhhv655yBhCGtI6xi8_U4,3521
491
- wandelbots_api_client/v2/models/opcua_node_value_trigger_config_node_value.py,sha256=dAVn2g4msxvq_hyxODAE_B2ucQNhP9iFDbr0wFEERC4,6256
492
- wandelbots_api_client/v2/models/operating_state.py,sha256=jaMwd5W0Zcr9d2BTm4pXoapxGlnZf8V0FWAlOQpvNUA,810
493
- wandelbots_api_client/v2/models/operation_mode.py,sha256=nkTgg7bKiMljZKQUIXdPOhvkJjPdQe27gRPakzOzuUs,1725
494
- wandelbots_api_client/v2/models/orientation_type.py,sha256=xJK9zzvZ8xeCPVQ3hBhw___Af7MVgDg_Ixhfr3G23AI,3090
495
- wandelbots_api_client/v2/models/path_cartesian_ptp.py,sha256=C2itm4wXAOJ0j32VsWRyDFERLQGc97X5ZE3LfNXyZJE,3727
496
- wandelbots_api_client/v2/models/path_circle.py,sha256=oSLHQs_UscnNrj2hz3lZrYCnE2WS7H_VEzAtmzsyDj4,4079
497
- wandelbots_api_client/v2/models/path_cubic_spline.py,sha256=PYnclKHUl0w7uoHgDTYDEqRmpxAYfm06nDT3Fzyye0c,4447
498
- wandelbots_api_client/v2/models/path_joint_ptp.py,sha256=kJX84PLXaGDNR9LXGeEElgh_fyuiydpETWyt0pqEICU,3263
499
- wandelbots_api_client/v2/models/path_line.py,sha256=badAAZnO94L4WrVWIyScChLVFSC0_xGgTct20SPUbqU,3571
500
- wandelbots_api_client/v2/models/pause_movement_request.py,sha256=aitsFkv602uO270Ci6eLxlyR8zLM_BBJnbkkQv5ezvw,3620
501
- wandelbots_api_client/v2/models/pause_movement_response.py,sha256=MhWAGLOSxm68be3y_V939G-0kXDrGM9dVdevIlaE7Qw,3370
502
- wandelbots_api_client/v2/models/pause_movement_response_pause_response.py,sha256=82EIb9t1TsOmAv0kmJR6qsLxB_FqJRqNqFvD498q6Zk,3077
503
- wandelbots_api_client/v2/models/pause_on_io.py,sha256=gRjLT2-CsYaRiPQDwrN_wMWT6IYqoG_IwqA4zIQIVGs,3376
504
- wandelbots_api_client/v2/models/payload.py,sha256=3UDKJTv9DrnwT9ypU-WXaclCRCZJOoZNLQ4yDryw_cY,3423
505
- wandelbots_api_client/v2/models/plan_trajectory_failed_response.py,sha256=WaFwjfY5hGzyp-5cME4Z2U_XzfhGcWedbI_FBfsYkZk,4011
506
- wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py,sha256=oE6RTMiQyfBwRtFiFpe3qn7W-i_VZNXMB6oJKFj6Cmg,8808
507
- wandelbots_api_client/v2/models/plan_trajectory_request.py,sha256=6imVTWZye5SG59vPGXAFEWG0KLg41hoyw_bezr1W2Z8,4763
508
- wandelbots_api_client/v2/models/plan_trajectory_response.py,sha256=eIwsHXtESCSP2vz5TDhYvuIByuXsAJH8W8eWMe6JllM,3055
509
- wandelbots_api_client/v2/models/plan_trajectory_response_response.py,sha256=0fgmkpTcT82KKyS1ni-MRCpEgW0GYayML5yIWO6Hmks,5765
510
- wandelbots_api_client/v2/models/plane.py,sha256=fw8cNNQiC-UDcXg4V3JkZADGYtN39OV2r5EE43hVVpY,2921
511
- wandelbots_api_client/v2/models/planning_limits.py,sha256=BJYAp9DdbDEB2CL3Vs3DRgAzNEoBMX2hPLURbLoR1jc,7288
512
- wandelbots_api_client/v2/models/planning_limits_limit_range.py,sha256=wCouXcgI_THR7o1IIAT3UKtasVs0KMfeZr_aUVCoV9U,2886
513
- wandelbots_api_client/v2/models/planning_parameters.py,sha256=Fo__NcIT0wnmpsjc2boTG5SsjrruRaH3SPwACJ8Vxd4,10396
514
- wandelbots_api_client/v2/models/playback_speed_request.py,sha256=aHyWWi5Y7TT4SY4PnXpuZwVbuX9w-uOTLkftu6EhDjQ,3959
515
- wandelbots_api_client/v2/models/playback_speed_response.py,sha256=OVmGRGSeh-0wLnFYfWr9yVIbdRjzuKouNC4lCIb6e1Y,3236
516
- wandelbots_api_client/v2/models/playback_speed_response_playback_speed_response.py,sha256=B7bUQ7V9XrwKIglF7wLYOyrL3AnYb3oIbAX4Ym1eaY8,2876
517
- wandelbots_api_client/v2/models/pose.py,sha256=pD8WdRyeh5IsgSqJVn-6jinpklU-_FdNtyY6luQeubI,3401
518
- wandelbots_api_client/v2/models/program_request.py,sha256=6TqC4YFQQNeHvPu38Brc9K5YZeVSs1KsqAlX8TVy8DY,3987
519
- wandelbots_api_client/v2/models/program_run.py,sha256=AMevjSSRT8cW9QfrDIIsPOclKYUQfvQ0z19ZrIyBZag,5448
520
- wandelbots_api_client/v2/models/program_run_object.py,sha256=-Fsv3NGbH4mNQ53zMymiw_JHdFYeS3rdX44En9PPYOk,3712
521
- wandelbots_api_client/v2/models/program_run_reference.py,sha256=bLTM7QOo-FKoM2TppsdBPEBlxtV7KsWN5XDokMHfLrs,2801
522
- wandelbots_api_client/v2/models/program_run_result.py,sha256=iUam-NDuNaZKIu50QHywRv3VXgd3sHnVuLQi5B_Jf1Y,4072
523
- wandelbots_api_client/v2/models/program_run_state.py,sha256=kqrXiOSTmjpTovzeYf1nrVxkYy9Q61OaNynyYt-eNIM,889
524
- wandelbots_api_client/v2/models/rectangle.py,sha256=-nbSPQIZ3NlXoo9kqmRBaPqP6YXYbACiZOVi4GnTjy4,3312
525
- wandelbots_api_client/v2/models/rectangular_capsule.py,sha256=SeQTqCQB9uBrR6ZE3hGXG6o2_sOz-6gd-oUC195bAZI,3832
526
- wandelbots_api_client/v2/models/release_channel.py,sha256=XDxHswFjklcll0t6m-B2x1LCFv6qTrbJPP6TzG2ZTZQ,934
527
- wandelbots_api_client/v2/models/robot_controller.py,sha256=q-KCfahKVZ_pCVjbBnxsCV02VbgM4M99Fv_g3z-afmc,3811
528
- wandelbots_api_client/v2/models/robot_controller_configuration.py,sha256=BOiRzM24yuprFUeUc07M9IV03pIkJpGRNG24AF7nr1w,10382
529
- wandelbots_api_client/v2/models/robot_controller_state.py,sha256=KefkKYjmyHM2x9A4cmDAz1FGpqNWsrRvCOc9IxfnHug,5632
530
- wandelbots_api_client/v2/models/robot_setup.py,sha256=Q2_5X5ultIgjJ_HMg7xBMpG01gE9a1XdF7ez57DMX3E,6410
531
- wandelbots_api_client/v2/models/robot_state.py,sha256=Of54eDqVZhyOsG0i5rniFXMTS9nqVxil-uHNffgXNmM,3071
532
- wandelbots_api_client/v2/models/robot_system_mode.py,sha256=Qeu3z2T4AQoTc3FaMq6Fn84ElWZXw-DlOGgUGZwlcCg,2705
533
- wandelbots_api_client/v2/models/robot_tcp.py,sha256=fdQ05oCJBfbW2EA49MCh_SCUc8wDlHO1bzc9wtC82Xo,3708
534
- wandelbots_api_client/v2/models/robot_tcps.py,sha256=umgMQ3hYtjCAIxkyyyrovqeA7Qscps03_Dm6xswYD9Q,3675
535
- wandelbots_api_client/v2/models/safety_state_type.py,sha256=7skDS0d3n_wdqR85E18KAwTIUVXgVoXHH6BbQLxS7ng,1859
536
- wandelbots_api_client/v2/models/service_group.py,sha256=lWzXxH-k1fbJ6NgFeJqZvLiPehy9la9udQZAbnub6HE,874
537
- wandelbots_api_client/v2/models/service_status.py,sha256=3wa7V3vdQj_mByFdbAwPr7eoswY2Jrr1YkWbZMo14Xs,3187
538
- wandelbots_api_client/v2/models/service_status_phase.py,sha256=mkW5lZCkHjD_Yo1bQsgYU1Jv5Y5N7EmR07USRVm6UZk,1196
539
- wandelbots_api_client/v2/models/service_status_response.py,sha256=svQJiioXN0nph5wQBewrsXOCc5taCfvltf4NmuA3rik,4331
540
- wandelbots_api_client/v2/models/service_status_severity.py,sha256=Tj9WwtQxJd7wtJXgJ9MdJetshH-R2_qLxS1po8r3h6U,839
541
- wandelbots_api_client/v2/models/service_status_status.py,sha256=otcsHq-Eia3rXOlDRJeh2dtUW4pXbzYekXZpGguHF3s,3032
542
- wandelbots_api_client/v2/models/set_io_values_request_inner.py,sha256=vgD9obAew1bv186k06ZA21dN13XIozVy9dozPSizk0E,6192
543
- wandelbots_api_client/v2/models/set_output_values_request_inner.py,sha256=pj0zFFA_oPZZgS_l_zy4OPTetLohh_tR5n4SnvJPe9c,7669
544
- wandelbots_api_client/v2/models/settable_robot_system_mode.py,sha256=SxlU1P6w-3-BqoK3oiBFS1m0lWzRc_n_baDvR-8h1Og,903
545
- wandelbots_api_client/v2/models/single_motion_group_collision_scene.py,sha256=jk8URvz2cktZwC6J2SR4skRTCq3PzO8vbQhwEcxsDUE,5524
546
- wandelbots_api_client/v2/models/singularity_type_enum.py,sha256=YHQJ74ANFI4gb8dMFRhUyz3D3qI4kR3eGgSgSyCxU6s,837
547
- wandelbots_api_client/v2/models/sphere.py,sha256=yg_HsIgb4c6fOhSvQlJgpQnjQCb5VrwlshiD7sfMqhA,3126
548
- wandelbots_api_client/v2/models/standstill.py,sha256=Mz72PSQDzHUyOScI2yaux_dtxGUu0cn_k3gFp9BoWck,3090
549
- wandelbots_api_client/v2/models/standstill_reason.py,sha256=K0hTg2L4AILKDXtnjt8muvVyDm_D1IyHu0i2OWGLImg,992
550
- wandelbots_api_client/v2/models/standstill_standstill.py,sha256=3hHCepNLpdVAFbu1UwGvXvhRM1NjsSPKZKpB1om8BQQ,3377
551
- wandelbots_api_client/v2/models/start_movement_request.py,sha256=QZJyMwTvUWg6aAV7DhKxbCZEANz_uC6xSURjPBM3mrc,6515
552
- wandelbots_api_client/v2/models/start_on_io.py,sha256=oaGHqwz6sBwI5uWJxtRv2cPyN7zDjLF2o47nOTzWEcI,3355
553
- wandelbots_api_client/v2/models/tcp_offset.py,sha256=zmqn6qxu0TDxYlaFLbi-OsyHhBVJXsmuN---Ki2kh-4,3025
554
- wandelbots_api_client/v2/models/tcp_required.py,sha256=UUJ0y4MnOg0w_AGp8QFo7G7nk6iwOiRomxzH5n1OCKw,2928
555
- wandelbots_api_client/v2/models/tcp_velocity_request.py,sha256=gmdHWeiVdFOnSoBmXVx8rIqUuSreBPEnNoH5zjsu0Hk,4381
556
- wandelbots_api_client/v2/models/torque_exceeded.py,sha256=7xqrC5R98rLge8KGZ7w6BixsqPjIgE5LwPOU5X48eTQ,3105
557
- wandelbots_api_client/v2/models/torque_exceeded_torque_exceeded.py,sha256=GlT01Iy7pujg5q203-ucwlG9O7KIPLhcBdmNEemgxj8,3079
558
- wandelbots_api_client/v2/models/trajectory_data.py,sha256=0RdOAleHSriDzX43XZuZtF1BnEXi1yM-rS5sTne5vxQ,3877
559
- wandelbots_api_client/v2/models/trajectory_id.py,sha256=lV_nzHzdF9gmzlmHCJ0wVpW9gCCoCS6ju8YshyG-TOU,3198
560
- wandelbots_api_client/v2/models/trigger_object.py,sha256=sbr3qT80zOcH8MN2kVgUbnUfMrXVw61O2yElwv4j-Ao,4228
561
- wandelbots_api_client/v2/models/trigger_type.py,sha256=sQsLIztPWIDgxlWq8_9gQHMOR9hgbg-tJkF_YNsZtmU,802
562
- wandelbots_api_client/v2/models/unit_type.py,sha256=alCcJSc_8zW_YcC_i_iKDkk1Mn8NJpUKKBLmfz9c3Qo,1088
563
- wandelbots_api_client/v2/models/universalrobots_controller.py,sha256=TicQnrMXu6-Xg51YnaZIynflf8JKx5HXT7WleRTPtAs,3316
564
- wandelbots_api_client/v2/models/update_nova_version_request.py,sha256=r3SD2CdIiD2tBm4kdEwMWbCwSyf17wuzCgWtaoWRxww,2804
565
- wandelbots_api_client/v2/models/update_trigger_request.py,sha256=29CD1uMoUxpFTu3-1db5fNg2w2XMTOToMBjn0XedO_M,3447
566
- wandelbots_api_client/v2/models/validation_error.py,sha256=D_V6MWQhEKdFjCEPz_BxpT3ssEO3VglvG6_xk5jYd2Y,3904
567
- wandelbots_api_client/v2/models/validation_error2.py,sha256=6D0ZJVUz0Kc_FQ1UEaXdJfgDS2q9CYCGuOpEJw52Nro,2783
568
- wandelbots_api_client/v2/models/validation_error_loc_inner.py,sha256=_uaC29GeMYxByZD-b-bj39_xgt18JaQI5z65KK3Pva4,5347
569
- wandelbots_api_client/v2/models/version_number.py,sha256=ik1WkBget8aJWTeyFgdWCv8WHerX-DA7YoutJZslzI8,3995
570
- wandelbots_api_client/v2/models/virtual_controller.py,sha256=3u2r3BhO7OGcI1FslhGlvyperXY9VTwcH0fwk3i4wRw,4322
571
- wandelbots_api_client/v2/models/virtual_controller_types.py,sha256=9r-snmCMPID0F5Mj8OVM_-AqJzhoNMBR5zk9Hqte4iU,5898
572
- wandelbots_api_client/v2/models/virtual_robot_configuration.py,sha256=VXH1GwZWpysReIBDBFr-ObsEBU8WTl_7r6-POl42opE,3040
573
- wandelbots_api_client/v2/models/wait_for_io_event_request.py,sha256=gX7exPvknbkbw77aKCQ7BwjyL1SPV-5jFtLuKGL54Ws,3376
574
- wandelbots_api_client/v2/models/yaskawa_controller.py,sha256=25SUJjdLyy3ZGHsGLhPYQpyGO9Bp2nGT9luk2B7_dA0,3257
575
- wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
576
- wandelbots_api_client/v2/rest.py,sha256=6a7yb-r1BWnJgC8_9PgI_k_RRX29eJQvltiKCUU5XW0,7299
577
- wandelbots_api_client-25.6.0.dev7.dist-info/LICENSE,sha256=PJyUaZgTVC0_nJmhRpcbnOcXvmTqJGE6axeSifngIGY,11344
578
- wandelbots_api_client-25.6.0.dev7.dist-info/METADATA,sha256=tZbPWhyIxq5C9Gw7bDF1q-eytjg_ffQk5Ue4Qnq4gAU,1974
579
- wandelbots_api_client-25.6.0.dev7.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
580
- wandelbots_api_client-25.6.0.dev7.dist-info/RECORD,,