windmill-api 1.542.3__tar.gz → 1.603.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (8860) hide show
  1. windmill_api-1.603.0/PKG-INFO +134 -0
  2. windmill_api-1.603.0/pyproject.toml +40 -0
  3. windmill_api-1.603.0/windmill_api/api/agent_workers/get_min_version.py +120 -0
  4. windmill_api-1.603.0/windmill_api/api/app/get_public_secret_of_latest_version_of_app.py +101 -0
  5. windmill_api-1.603.0/windmill_api/api/concurrency_groups/list_extended_jobs.py +656 -0
  6. windmill_api-1.603.0/windmill_api/api/config/list_autoscaling_events.py +192 -0
  7. windmill_api-1.603.0/windmill_api/api/documentation/query_documentation.py +155 -0
  8. windmill_api-1.603.0/windmill_api/api/email_trigger/set_email_trigger_mode.py +113 -0
  9. windmill_api-1.603.0/windmill_api/api/flow/get_flow_version.py +166 -0
  10. windmill_api-1.603.0/windmill_api/api/flow/list_flows.py +327 -0
  11. windmill_api-1.603.0/windmill_api/api/flow/update_flow_history.py +113 -0
  12. windmill_api-1.603.0/windmill_api/api/flow_conversation/delete_flow_conversation.py +101 -0
  13. windmill_api-1.603.0/windmill_api/api/flow_conversation/list_conversation_messages.py +221 -0
  14. windmill_api-1.603.0/windmill_api/api/flow_conversation/list_flow_conversations.py +207 -0
  15. windmill_api-1.603.0/windmill_api/api/folder/get_folder_permission_history.py +206 -0
  16. windmill_api-1.603.0/windmill_api/api/gcp_trigger/set_gcp_trigger_mode.py +113 -0
  17. windmill_api-1.603.0/windmill_api/api/git_sync/get_global_connected_repositories.py +162 -0
  18. windmill_api-1.603.0/windmill_api/api/group/get_group_permission_history.py +206 -0
  19. windmill_api-1.603.0/windmill_api/api/helpers/check_s3_folder_exists.py +172 -0
  20. windmill_api-1.603.0/windmill_api/api/helpers/git_repo_viewer_file_upload.py +262 -0
  21. windmill_api-1.603.0/windmill_api/api/helpers/list_git_repo_files.py +221 -0
  22. windmill_api-1.603.0/windmill_api/api/helpers/load_git_repo_file_metadata.py +187 -0
  23. windmill_api-1.603.0/windmill_api/api/helpers/load_git_repo_file_preview.py +277 -0
  24. windmill_api-1.603.0/windmill_api/api/http_trigger/set_http_trigger_mode.py +113 -0
  25. windmill_api-1.603.0/windmill_api/api/job/cancel_selection.py +183 -0
  26. windmill_api-1.603.0/windmill_api/api/job/delete_jobs.py +104 -0
  27. windmill_api-1.603.0/windmill_api/api/job/export_completed_jobs.py +192 -0
  28. windmill_api-1.603.0/windmill_api/api/job/export_queued_jobs.py +192 -0
  29. windmill_api-1.603.0/windmill_api/api/job/get_completed_job_timing.py +166 -0
  30. windmill_api-1.603.0/windmill_api/api/job/get_started_at_by_ids.py +175 -0
  31. windmill_api-1.603.0/windmill_api/api/job/import_completed_jobs.py +109 -0
  32. windmill_api-1.603.0/windmill_api/api/job/import_queued_jobs.py +109 -0
  33. windmill_api-1.603.0/windmill_api/api/job/list_filtered_jobs_uuids.py +650 -0
  34. windmill_api-1.603.0/windmill_api/api/job/list_jobs.py +703 -0
  35. windmill_api-1.603.0/windmill_api/api/job/list_queue.py +555 -0
  36. windmill_api-1.603.0/windmill_api/api/job/restart_flow_at_step.py +185 -0
  37. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_path.py +171 -0
  38. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_path_get.py +169 -0
  39. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_version.py +171 -0
  40. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_version_get.py +169 -0
  41. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_hash.py +189 -0
  42. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_hash_get.py +187 -0
  43. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_path.py +189 -0
  44. windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_path_get.py +187 -0
  45. windmill_api-1.603.0/windmill_api/api/job/run_dynamic_select.py +105 -0
  46. windmill_api-1.603.0/windmill_api/api/job/run_flow_by_path.py +203 -0
  47. windmill_api-1.603.0/windmill_api/api/job/run_flow_by_version.py +203 -0
  48. windmill_api-1.603.0/windmill_api/api/job/run_flow_preview.py +145 -0
  49. windmill_api-1.603.0/windmill_api/api/job/run_flow_preview_and_wait_result.py +120 -0
  50. windmill_api-1.603.0/windmill_api/api/job/run_script_preview_inline.py +107 -0
  51. windmill_api-1.603.0/windmill_api/api/job/run_wait_result_flow_by_path.py +164 -0
  52. windmill_api-1.603.0/windmill_api/api/job/run_wait_result_flow_by_version.py +166 -0
  53. windmill_api-1.603.0/windmill_api/api/job/run_wait_result_flow_by_version_get.py +162 -0
  54. windmill_api-1.603.0/windmill_api/api/job/run_wait_result_script_by_path.py +182 -0
  55. windmill_api-1.603.0/windmill_api/api/job/run_wait_result_script_by_path_get.py +180 -0
  56. windmill_api-1.603.0/windmill_api/api/kafka_trigger/set_kafka_trigger_mode.py +113 -0
  57. windmill_api-1.603.0/windmill_api/api/mqtt_trigger/set_mqtt_trigger_mode.py +113 -0
  58. windmill_api-1.603.0/windmill_api/api/nats_trigger/set_nats_trigger_mode.py +113 -0
  59. windmill_api-1.603.0/windmill_api/api/oidc/get_oidc_token.py +115 -0
  60. windmill_api-1.603.0/windmill_api/api/postgres_trigger/set_postgres_trigger_mode.py +113 -0
  61. windmill_api-1.603.0/windmill_api/api/resource/get_git_commit_hash.py +186 -0
  62. windmill_api-1.603.0/windmill_api/api/resource/get_mcp_tools.py +171 -0
  63. windmill_api-1.603.0/windmill_api/api/script/list_scripts.py +432 -0
  64. windmill_api-1.603.0/windmill_api/api/script/pick_hub_script_by_path.py +152 -0
  65. windmill_api-1.603.0/windmill_api/api/setting/list_custom_instance_dbs.py +126 -0
  66. windmill_api-1.603.0/windmill_api/api/setting/refresh_custom_instance_user_pwd.py +126 -0
  67. windmill_api-1.603.0/windmill_api/api/setting/setup_custom_instance_db.py +170 -0
  68. windmill_api-1.603.0/windmill_api/api/sqs_trigger/set_sqs_trigger_mode.py +113 -0
  69. windmill_api-1.603.0/windmill_api/api/trigger/cancel_suspended_trigger_jobs.py +197 -0
  70. windmill_api-1.603.0/windmill_api/api/trigger/resume_suspended_trigger_jobs.py +197 -0
  71. windmill_api-1.603.0/windmill_api/api/user/convert_user_to_group.py +101 -0
  72. windmill_api-1.603.0/windmill_api/api/user/is_smtp_configured.py +120 -0
  73. windmill_api-1.603.0/windmill_api/api/user/request_password_reset.py +158 -0
  74. windmill_api-1.603.0/windmill_api/api/user/reset_password.py +158 -0
  75. windmill_api-1.603.0/windmill_api/api/user/submit_onboarding_data.py +149 -0
  76. windmill_api-1.603.0/windmill_api/api/websocket_trigger/__init__.py +0 -0
  77. windmill_api-1.603.0/windmill_api/api/websocket_trigger/set_websocket_trigger_mode.py +113 -0
  78. windmill_api-1.603.0/windmill_api/api/worker/__init__.py +0 -0
  79. windmill_api-1.603.0/windmill_api/api/workspace/__init__.py +0 -0
  80. windmill_api-1.603.0/windmill_api/api/workspace/compare_workspaces.py +178 -0
  81. windmill_api-1.603.0/windmill_api/api/workspace/create_workspace_fork.py +105 -0
  82. windmill_api-1.603.0/windmill_api/api/workspace/create_workspace_fork_git_branch.py +165 -0
  83. windmill_api-1.603.0/windmill_api/api/workspace/delete_workspace.py +107 -0
  84. windmill_api-1.603.0/windmill_api/api/workspace/delete_workspace_slack_oauth_config.py +93 -0
  85. windmill_api-1.603.0/windmill_api/api/workspace/edit_data_table_config.py +107 -0
  86. windmill_api-1.603.0/windmill_api/api/workspace/get_dependency_map.py +157 -0
  87. windmill_api-1.603.0/windmill_api/api/workspace/get_dependents.py +171 -0
  88. windmill_api-1.603.0/windmill_api/api/workspace/get_dependents_amounts.py +174 -0
  89. windmill_api-1.603.0/windmill_api/api/workspace/get_workspace_as_super_admin.py +152 -0
  90. windmill_api-1.603.0/windmill_api/api/workspace/get_workspace_slack_oauth_config.py +152 -0
  91. windmill_api-1.603.0/windmill_api/api/workspace/list_available_teams_channels.py +172 -0
  92. windmill_api-1.603.0/windmill_api/api/workspace/list_available_teams_ids.py +187 -0
  93. windmill_api-1.603.0/windmill_api/api/workspace/list_data_table_schemas.py +157 -0
  94. windmill_api-1.603.0/windmill_api/api/workspace/list_data_tables.py +147 -0
  95. windmill_api-1.603.0/windmill_api/api/workspace/rebuild_dependency_map.py +93 -0
  96. windmill_api-1.603.0/windmill_api/api/workspace/reset_diff_tally.py +107 -0
  97. windmill_api-1.603.0/windmill_api/api/workspace/set_workspace_slack_oauth_config.py +105 -0
  98. windmill_api-1.603.0/windmill_api/api/workspace_dependencies/__init__.py +0 -0
  99. windmill_api-1.603.0/windmill_api/api/workspace_dependencies/archive_workspace_dependencies.py +118 -0
  100. windmill_api-1.603.0/windmill_api/api/workspace_dependencies/create_workspace_dependencies.py +105 -0
  101. windmill_api-1.603.0/windmill_api/api/workspace_dependencies/delete_workspace_dependencies.py +118 -0
  102. windmill_api-1.603.0/windmill_api/api/workspace_dependencies/get_latest_workspace_dependencies.py +187 -0
  103. windmill_api-1.603.0/windmill_api/api/workspace_dependencies/list_workspace_dependencies.py +157 -0
  104. windmill_api-1.603.0/windmill_api/models/agent_tool.py +124 -0
  105. windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_0.py +61 -0
  106. windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_0_tool_type.py +8 -0
  107. windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_1.py +91 -0
  108. windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_1_tool_type.py +8 -0
  109. windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_2.py +61 -0
  110. windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_2_tool_type.py +8 -0
  111. windmill_api-1.603.0/windmill_api/models/ai_agent.py +106 -0
  112. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms.py +596 -0
  113. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_0.py +74 -0
  114. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_0_type.py +8 -0
  115. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_1.py +72 -0
  116. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_1_type.py +8 -0
  117. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_0.py +72 -0
  118. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_0_type.py +8 -0
  119. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_1.py +70 -0
  120. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_1_type.py +8 -0
  121. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_0.py +72 -0
  122. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_0_type.py +8 -0
  123. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_1.py +70 -0
  124. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_1_type.py +8 -0
  125. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_0.py +72 -0
  126. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_0_type.py +8 -0
  127. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_1.py +70 -0
  128. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_1_type.py +8 -0
  129. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_0.py +72 -0
  130. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_0_type.py +8 -0
  131. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_1.py +70 -0
  132. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_1_type.py +8 -0
  133. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_0.py +72 -0
  134. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_0_type.py +8 -0
  135. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_1.py +70 -0
  136. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_1_type.py +8 -0
  137. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_0.py +72 -0
  138. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_0_type.py +8 -0
  139. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_1.py +70 -0
  140. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_1_type.py +8 -0
  141. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_0.py +72 -0
  142. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_0_type.py +8 -0
  143. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_1.py +70 -0
  144. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_1_type.py +8 -0
  145. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_0.py +72 -0
  146. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_0_type.py +8 -0
  147. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_1.py +70 -0
  148. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_1_type.py +8 -0
  149. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_0.py +72 -0
  150. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_0_type.py +8 -0
  151. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_1.py +70 -0
  152. windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_1_type.py +8 -0
  153. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item.py +126 -0
  154. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_0.py +61 -0
  155. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_0_tool_type.py +8 -0
  156. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_1.py +91 -0
  157. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_1_tool_type.py +8 -0
  158. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_2.py +61 -0
  159. windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_2_tool_type.py +8 -0
  160. windmill_api-1.603.0/windmill_api/models/ai_config.py +143 -0
  161. windmill_api-1.603.0/windmill_api/models/ai_config_code_completion_model_provider.py +18 -0
  162. windmill_api-1.603.0/windmill_api/models/ai_config_default_model_provider.py +18 -0
  163. windmill_api-1.603.0/windmill_api/models/ai_config_max_tokens_per_model.py +44 -0
  164. windmill_api-1.603.0/windmill_api/models/ai_provider.py +18 -0
  165. windmill_api-1.603.0/windmill_api/models/ai_provider_model_provider.py +18 -0
  166. windmill_api-1.603.0/windmill_api/models/archive_script_by_hash_response_200.py +415 -0
  167. windmill_api-1.603.0/windmill_api/models/archive_workspace_dependencies_language.py +29 -0
  168. windmill_api-1.603.0/windmill_api/models/asset_kind.py +11 -0
  169. windmill_api-1.603.0/windmill_api/models/audit_log.py +140 -0
  170. windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_0.py +80 -0
  171. windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_1.py +78 -0
  172. windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_0.py +80 -0
  173. windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_1.py +78 -0
  174. windmill_api-1.603.0/windmill_api/models/branch_all.py +96 -0
  175. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item.py +92 -0
  176. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item.py +378 -0
  177. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_mock.py +67 -0
  178. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry.py +123 -0
  179. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry_constant.py +67 -0
  180. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry_exponential.py +83 -0
  181. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry_retry_if.py +59 -0
  182. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_skip_if.py +59 -0
  183. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_0.py +74 -0
  184. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_1.py +72 -0
  185. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
  186. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_stop_after_if.py +78 -0
  187. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend.py +210 -0
  188. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form.py +76 -0
  189. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
  190. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_0.py +74 -0
  191. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_1.py +72 -0
  192. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_0.py +74 -0
  193. windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_1.py +72 -0
  194. windmill_api-1.603.0/windmill_api/models/branch_one.py +105 -0
  195. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item.py +92 -0
  196. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item.py +378 -0
  197. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_mock.py +67 -0
  198. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry.py +123 -0
  199. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry_constant.py +67 -0
  200. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry_exponential.py +83 -0
  201. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry_retry_if.py +59 -0
  202. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_skip_if.py +59 -0
  203. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_0.py +74 -0
  204. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_1.py +72 -0
  205. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
  206. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_stop_after_if.py +78 -0
  207. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend.py +210 -0
  208. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form.py +76 -0
  209. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
  210. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_0.py +74 -0
  211. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_1.py +72 -0
  212. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_0.py +74 -0
  213. windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_1.py +72 -0
  214. windmill_api-1.603.0/windmill_api/models/branch_one_default_item.py +345 -0
  215. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_mock.py +67 -0
  216. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry.py +109 -0
  217. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry_constant.py +67 -0
  218. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry_exponential.py +83 -0
  219. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry_retry_if.py +59 -0
  220. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_skip_if.py +59 -0
  221. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_sleep_type_0.py +72 -0
  222. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_sleep_type_1.py +70 -0
  223. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_stop_after_all_iters_if.py +78 -0
  224. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_stop_after_if.py +78 -0
  225. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend.py +202 -0
  226. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_resume_form.py +74 -0
  227. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_resume_form_schema.py +44 -0
  228. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_0.py +74 -0
  229. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_1.py +72 -0
  230. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_timeout_type_0.py +72 -0
  231. windmill_api-1.603.0/windmill_api/models/branch_one_default_item_timeout_type_1.py +70 -0
  232. windmill_api-1.603.0/windmill_api/models/cancel_suspended_trigger_jobs_json_body.py +61 -0
  233. windmill_api-1.603.0/windmill_api/models/cancel_suspended_trigger_jobs_trigger_kind.py +19 -0
  234. windmill_api-1.603.0/windmill_api/models/check_s3_folder_exists_response_200.py +65 -0
  235. windmill_api-1.603.0/windmill_api/models/compare_summary.py +114 -0
  236. windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200.py +105 -0
  237. windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200_diffs_item.py +103 -0
  238. windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200_diffs_item_kind.py +12 -0
  239. windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200_summary.py +115 -0
  240. windmill_api-1.603.0/windmill_api/models/completed_job.py +415 -0
  241. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module.py +386 -0
  242. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1.py +110 -0
  243. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
  244. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  245. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  246. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  247. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  248. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  249. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_flow_jobs_duration.py +71 -0
  250. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_iterator.py +85 -0
  251. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item.py +373 -0
  252. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
  253. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
  254. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  255. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  256. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  257. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  258. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  259. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_flow_jobs_duration.py +71 -0
  260. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_iterator.py +85 -0
  261. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module.py +389 -0
  262. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +110 -0
  263. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
  264. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  265. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  266. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  267. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  268. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  269. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  270. windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_iterator.py +85 -0
  271. windmill_api-1.603.0/windmill_api/models/completed_job_job_kind.py +25 -0
  272. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow.py +278 -0
  273. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module.py +378 -0
  274. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_mock.py +67 -0
  275. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry.py +123 -0
  276. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry_constant.py +67 -0
  277. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry_exponential.py +83 -0
  278. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry_retry_if.py +59 -0
  279. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_skip_if.py +59 -0
  280. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_0.py +74 -0
  281. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_1.py +72 -0
  282. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  283. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_if.py +78 -0
  284. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend.py +210 -0
  285. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form.py +76 -0
  286. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  287. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
  288. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
  289. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_0.py +74 -0
  290. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_1.py +72 -0
  291. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_flow_env.py +44 -0
  292. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item.py +362 -0
  293. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_mock.py +67 -0
  294. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry.py +117 -0
  295. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry_constant.py +67 -0
  296. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry_exponential.py +83 -0
  297. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry_retry_if.py +59 -0
  298. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_skip_if.py +59 -0
  299. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_0.py +72 -0
  300. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_1.py +70 -0
  301. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  302. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_if.py +78 -0
  303. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend.py +208 -0
  304. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form.py +76 -0
  305. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  306. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  307. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  308. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_0.py +74 -0
  309. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_1.py +72 -0
  310. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item.py +143 -0
  311. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item_position.py +66 -0
  312. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item_size.py +66 -0
  313. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item_type.py +9 -0
  314. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module.py +393 -0
  315. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_mock.py +67 -0
  316. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry.py +123 -0
  317. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_constant.py +67 -0
  318. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  319. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  320. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_skip_if.py +59 -0
  321. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  322. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  323. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  324. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  325. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend.py +214 -0
  326. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  327. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  328. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  329. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  330. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  331. windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  332. windmill_api-1.603.0/windmill_api/models/create_account_json_body.py +109 -0
  333. windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body.py +156 -0
  334. windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_mode.py +10 -0
  335. windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry.py +109 -0
  336. windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry_constant.py +67 -0
  337. windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry_exponential.py +83 -0
  338. windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry_retry_if.py +59 -0
  339. windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body.py +231 -0
  340. windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_mode.py +10 -0
  341. windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry.py +109 -0
  342. windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry_constant.py +67 -0
  343. windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry_exponential.py +83 -0
  344. windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry_retry_if.py +59 -0
  345. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body.py +264 -0
  346. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_mode.py +10 -0
  347. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_request_type.py +10 -0
  348. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry.py +109 -0
  349. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry_constant.py +67 -0
  350. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry_exponential.py +83 -0
  351. windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry_retry_if.py +59 -0
  352. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item.py +272 -0
  353. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_mode.py +10 -0
  354. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_request_type.py +10 -0
  355. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry.py +117 -0
  356. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry_constant.py +67 -0
  357. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry_exponential.py +83 -0
  358. windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry_retry_if.py +59 -0
  359. windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body.py +163 -0
  360. windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_mode.py +10 -0
  361. windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry.py +109 -0
  362. windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry_constant.py +67 -0
  363. windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry_exponential.py +83 -0
  364. windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry_retry_if.py +59 -0
  365. windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body.py +230 -0
  366. windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_mode.py +10 -0
  367. windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry.py +109 -0
  368. windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry_constant.py +67 -0
  369. windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry_exponential.py +83 -0
  370. windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry_retry_if.py +59 -0
  371. windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body.py +177 -0
  372. windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_mode.py +10 -0
  373. windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry.py +109 -0
  374. windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry_constant.py +67 -0
  375. windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry_exponential.py +83 -0
  376. windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry_retry_if.py +59 -0
  377. windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body.py +184 -0
  378. windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_mode.py +10 -0
  379. windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry.py +113 -0
  380. windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry_constant.py +67 -0
  381. windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry_exponential.py +83 -0
  382. windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry_retry_if.py +59 -0
  383. windmill_api-1.603.0/windmill_api/models/create_schedule_json_body.py +308 -0
  384. windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry.py +109 -0
  385. windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry_constant.py +67 -0
  386. windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry_exponential.py +83 -0
  387. windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry_retry_if.py +59 -0
  388. windmill_api-1.603.0/windmill_api/models/create_script_json_body.py +380 -0
  389. windmill_api-1.603.0/windmill_api/models/create_script_json_body_assets_item_kind.py +11 -0
  390. windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body.py +173 -0
  391. windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_mode.py +10 -0
  392. windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry.py +109 -0
  393. windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry_constant.py +67 -0
  394. windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry_exponential.py +83 -0
  395. windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry_retry_if.py +59 -0
  396. windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body.py +280 -0
  397. windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_mode.py +10 -0
  398. windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry.py +117 -0
  399. windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry_constant.py +67 -0
  400. windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry_exponential.py +83 -0
  401. windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry_retry_if.py +59 -0
  402. windmill_api-1.603.0/windmill_api/models/create_workspace_dependencies_json_body.py +92 -0
  403. windmill_api-1.603.0/windmill_api/models/create_workspace_dependencies_json_body_language.py +29 -0
  404. windmill_api-1.603.0/windmill_api/models/create_workspace_fork.py +75 -0
  405. windmill_api-1.603.0/windmill_api/models/create_workspace_fork_git_branch_json_body.py +75 -0
  406. windmill_api-1.603.0/windmill_api/models/create_workspace_fork_json_body.py +75 -0
  407. windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_created_database.py +10 -0
  408. windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_database_credentials.py +10 -0
  409. windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_db_connect.py +10 -0
  410. windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_grant_permissions.py +10 -0
  411. windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_super_admin.py +10 -0
  412. windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_valid_dbname.py +10 -0
  413. windmill_api-1.603.0/windmill_api/models/custom_instance_db_tag.py +9 -0
  414. windmill_api-1.603.0/windmill_api/models/data_table_schema.py +83 -0
  415. windmill_api-1.603.0/windmill_api/models/data_table_schema_schemas.py +62 -0
  416. windmill_api-1.603.0/windmill_api/models/data_table_schema_schemas_additional_property.py +66 -0
  417. windmill_api-1.603.0/windmill_api/models/data_table_schema_schemas_additional_property_additional_property.py +44 -0
  418. windmill_api-1.603.0/windmill_api/models/data_table_settings.py +64 -0
  419. windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables.py +66 -0
  420. windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables_additional_property.py +68 -0
  421. windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables_additional_property_database.py +72 -0
  422. windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables_additional_property_database_resource_type.py +9 -0
  423. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200.py +421 -0
  424. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module.py +411 -0
  425. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +114 -0
  426. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  427. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  428. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  429. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  430. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  431. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  432. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_flow_jobs_duration.py +71 -0
  433. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_iterator.py +85 -0
  434. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item.py +402 -0
  435. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  436. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  437. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  438. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  439. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  440. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  441. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  442. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_flow_jobs_duration.py +71 -0
  443. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_iterator.py +85 -0
  444. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module.py +409 -0
  445. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +119 -0
  446. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  447. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  448. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  449. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  450. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  451. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  452. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  453. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_iterator.py +85 -0
  454. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_job_kind.py +25 -0
  455. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow.py +297 -0
  456. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module.py +417 -0
  457. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_mock.py +67 -0
  458. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry.py +123 -0
  459. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_constant.py +67 -0
  460. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +83 -0
  461. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +59 -0
  462. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_skip_if.py +59 -0
  463. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +74 -0
  464. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +72 -0
  465. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  466. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +78 -0
  467. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend.py +217 -0
  468. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +77 -0
  469. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  470. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  471. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  472. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +74 -0
  473. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +72 -0
  474. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_flow_env.py +44 -0
  475. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item.py +413 -0
  476. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_mock.py +67 -0
  477. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry.py +123 -0
  478. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_constant.py +67 -0
  479. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +83 -0
  480. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +59 -0
  481. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_skip_if.py +59 -0
  482. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +74 -0
  483. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +72 -0
  484. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  485. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +78 -0
  486. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend.py +216 -0
  487. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +77 -0
  488. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  489. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  490. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  491. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +74 -0
  492. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +72 -0
  493. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item.py +154 -0
  494. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item_position.py +66 -0
  495. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item_size.py +66 -0
  496. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item_type.py +9 -0
  497. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module.py +422 -0
  498. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_mock.py +67 -0
  499. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry.py +123 -0
  500. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +67 -0
  501. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  502. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  503. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +59 -0
  504. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  505. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  506. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  507. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  508. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +221 -0
  509. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  510. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  511. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  512. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  513. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  514. windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  515. windmill_api-1.603.0/windmill_api/models/delete_script_by_hash_response_200.py +415 -0
  516. windmill_api-1.603.0/windmill_api/models/delete_workspace_dependencies_language.py +29 -0
  517. windmill_api-1.603.0/windmill_api/models/dependency_dependent.py +82 -0
  518. windmill_api-1.603.0/windmill_api/models/dependency_dependent_importer_kind.py +10 -0
  519. windmill_api-1.603.0/windmill_api/models/dependency_map.py +90 -0
  520. windmill_api-1.603.0/windmill_api/models/dependents_amount.py +65 -0
  521. windmill_api-1.603.0/windmill_api/models/ducklake_settings_ducklakes_additional_property.py +93 -0
  522. windmill_api-1.603.0/windmill_api/models/dynamic_input_data.py +118 -0
  523. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_args.py +44 -0
  524. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_0.py +76 -0
  525. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_0_runnable_kind.py +9 -0
  526. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_0_source.py +8 -0
  527. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_1.py +85 -0
  528. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_1_language.py +29 -0
  529. windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_1_source.py +8 -0
  530. windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body.py +149 -0
  531. windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body_code_completion_model_provider.py +18 -0
  532. windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body_default_model_provider.py +18 -0
  533. windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body_max_tokens_per_model.py +44 -0
  534. windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body.py +64 -0
  535. windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings.py +68 -0
  536. windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables.py +66 -0
  537. windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables_additional_property.py +68 -0
  538. windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables_additional_property_database.py +74 -0
  539. windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables_additional_property_database_resource_type.py +9 -0
  540. windmill_api-1.603.0/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property.py +93 -0
  541. windmill_api-1.603.0/windmill_api/models/edit_email_trigger.py +137 -0
  542. windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry.py +109 -0
  543. windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry_constant.py +67 -0
  544. windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry_exponential.py +83 -0
  545. windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry_retry_if.py +59 -0
  546. windmill_api-1.603.0/windmill_api/models/edit_http_trigger.py +245 -0
  547. windmill_api-1.603.0/windmill_api/models/edit_http_trigger_request_type.py +10 -0
  548. windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry.py +109 -0
  549. windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry_constant.py +67 -0
  550. windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry_exponential.py +83 -0
  551. windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry_retry_if.py +59 -0
  552. windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger.py +143 -0
  553. windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry.py +109 -0
  554. windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry_constant.py +67 -0
  555. windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry_exponential.py +83 -0
  556. windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry_retry_if.py +59 -0
  557. windmill_api-1.603.0/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py +161 -0
  558. windmill_api-1.603.0/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_advanced_permissions_item.py +65 -0
  559. windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger.py +225 -0
  560. windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_mode.py +10 -0
  561. windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry.py +109 -0
  562. windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry_constant.py +67 -0
  563. windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry_exponential.py +83 -0
  564. windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry_retry_if.py +59 -0
  565. windmill_api-1.603.0/windmill_api/models/edit_nats_trigger.py +159 -0
  566. windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry.py +109 -0
  567. windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry_constant.py +67 -0
  568. windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry_exponential.py +83 -0
  569. windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry_retry_if.py +59 -0
  570. windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger.py +178 -0
  571. windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_mode.py +10 -0
  572. windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry.py +109 -0
  573. windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry_constant.py +67 -0
  574. windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry_exponential.py +83 -0
  575. windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry_retry_if.py +59 -0
  576. windmill_api-1.603.0/windmill_api/models/edit_schedule.py +279 -0
  577. windmill_api-1.603.0/windmill_api/models/edit_schedule_retry.py +109 -0
  578. windmill_api-1.603.0/windmill_api/models/edit_schedule_retry_constant.py +67 -0
  579. windmill_api-1.603.0/windmill_api/models/edit_schedule_retry_exponential.py +83 -0
  580. windmill_api-1.603.0/windmill_api/models/edit_schedule_retry_retry_if.py +59 -0
  581. windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger.py +172 -0
  582. windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_mode.py +10 -0
  583. windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry.py +109 -0
  584. windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry_constant.py +67 -0
  585. windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry_exponential.py +83 -0
  586. windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry_retry_if.py +59 -0
  587. windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger.py +245 -0
  588. windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry.py +109 -0
  589. windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry_constant.py +67 -0
  590. windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry_exponential.py +83 -0
  591. windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry_retry_if.py +59 -0
  592. windmill_api-1.603.0/windmill_api/models/email_trigger.py +186 -0
  593. windmill_api-1.603.0/windmill_api/models/email_trigger_mode.py +10 -0
  594. windmill_api-1.603.0/windmill_api/models/email_trigger_retry.py +109 -0
  595. windmill_api-1.603.0/windmill_api/models/email_trigger_retry_constant.py +67 -0
  596. windmill_api-1.603.0/windmill_api/models/email_trigger_retry_exponential.py +83 -0
  597. windmill_api-1.603.0/windmill_api/models/email_trigger_retry_retry_if.py +59 -0
  598. windmill_api-1.603.0/windmill_api/models/execute_component_json_body.py +189 -0
  599. windmill_api-1.603.0/windmill_api/models/execute_component_json_body_run_query_params.py +44 -0
  600. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item.py +513 -0
  601. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_args.py +44 -0
  602. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_flow_status.py +44 -0
  603. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_job_kind.py +25 -0
  604. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_language.py +29 -0
  605. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_raw_flow.py +44 -0
  606. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_result.py +44 -0
  607. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_trigger_kind.py +19 -0
  608. windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_workflow_as_code_status.py +44 -0
  609. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item.py +482 -0
  610. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_args.py +44 -0
  611. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_flow_status.py +44 -0
  612. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_job_kind.py +25 -0
  613. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_language.py +29 -0
  614. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_raw_flow.py +44 -0
  615. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_trigger_kind.py +19 -0
  616. windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_workflow_as_code_status.py +44 -0
  617. windmill_api-1.603.0/windmill_api/models/exportable_completed_job.py +503 -0
  618. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_args.py +44 -0
  619. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_flow_status.py +44 -0
  620. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_job_kind.py +25 -0
  621. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_language.py +29 -0
  622. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_raw_flow.py +44 -0
  623. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_result.py +44 -0
  624. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_trigger_kind.py +19 -0
  625. windmill_api-1.603.0/windmill_api/models/exportable_completed_job_workflow_as_code_status.py +44 -0
  626. windmill_api-1.603.0/windmill_api/models/exportable_queued_job.py +476 -0
  627. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_args.py +44 -0
  628. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_flow_status.py +44 -0
  629. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_job_kind.py +25 -0
  630. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_language.py +29 -0
  631. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_raw_flow.py +44 -0
  632. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_trigger_kind.py +19 -0
  633. windmill_api-1.603.0/windmill_api/models/exportable_queued_job_workflow_as_code_status.py +44 -0
  634. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0.py +435 -0
  635. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module.py +410 -0
  636. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  637. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  638. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  639. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  640. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  641. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  642. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  643. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
  644. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_iterator.py +85 -0
  645. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item.py +399 -0
  646. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  647. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  648. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  649. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  650. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  651. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  652. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  653. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
  654. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_iterator.py +85 -0
  655. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module.py +402 -0
  656. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +116 -0
  657. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  658. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  659. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  660. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  661. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  662. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  663. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  664. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +85 -0
  665. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_job_kind.py +25 -0
  666. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow.py +292 -0
  667. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module.py +413 -0
  668. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_mock.py +67 -0
  669. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry.py +123 -0
  670. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +67 -0
  671. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
  672. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
  673. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_skip_if.py +59 -0
  674. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
  675. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
  676. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  677. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
  678. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend.py +216 -0
  679. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +77 -0
  680. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  681. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  682. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  683. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
  684. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
  685. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_flow_env.py +44 -0
  686. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item.py +411 -0
  687. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_mock.py +67 -0
  688. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry.py +123 -0
  689. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +67 -0
  690. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
  691. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
  692. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_skip_if.py +59 -0
  693. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
  694. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
  695. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  696. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
  697. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend.py +216 -0
  698. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +77 -0
  699. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  700. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  701. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  702. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
  703. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
  704. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item.py +154 -0
  705. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item_position.py +66 -0
  706. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item_size.py +66 -0
  707. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item_type.py +9 -0
  708. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module.py +417 -0
  709. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +67 -0
  710. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +123 -0
  711. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
  712. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  713. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  714. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
  715. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  716. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  717. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  718. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  719. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +217 -0
  720. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  721. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  722. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  723. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  724. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  725. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  726. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1.py +435 -0
  727. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module.py +410 -0
  728. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  729. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  730. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  731. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  732. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  733. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  734. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  735. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
  736. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_iterator.py +85 -0
  737. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item.py +399 -0
  738. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  739. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  740. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  741. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  742. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  743. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  744. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  745. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
  746. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_iterator.py +85 -0
  747. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module.py +402 -0
  748. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +116 -0
  749. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  750. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  751. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  752. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  753. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  754. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  755. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  756. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +85 -0
  757. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_job_kind.py +25 -0
  758. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow.py +292 -0
  759. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module.py +413 -0
  760. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_mock.py +67 -0
  761. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry.py +123 -0
  762. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +67 -0
  763. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
  764. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
  765. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_skip_if.py +59 -0
  766. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
  767. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
  768. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  769. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
  770. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend.py +216 -0
  771. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +77 -0
  772. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  773. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  774. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  775. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
  776. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
  777. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_flow_env.py +44 -0
  778. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item.py +411 -0
  779. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_mock.py +67 -0
  780. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry.py +123 -0
  781. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +67 -0
  782. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
  783. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
  784. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_skip_if.py +59 -0
  785. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
  786. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
  787. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  788. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
  789. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend.py +216 -0
  790. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +77 -0
  791. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  792. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  793. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  794. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
  795. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
  796. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item.py +154 -0
  797. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item_position.py +66 -0
  798. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item_size.py +66 -0
  799. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item_type.py +9 -0
  800. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module.py +417 -0
  801. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +67 -0
  802. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +123 -0
  803. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
  804. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  805. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  806. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
  807. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  808. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  809. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  810. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  811. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +217 -0
  812. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  813. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  814. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  815. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  816. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  817. windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  818. windmill_api-1.603.0/windmill_api/models/flow_conversation.py +107 -0
  819. windmill_api-1.603.0/windmill_api/models/flow_conversation_message.py +117 -0
  820. windmill_api-1.603.0/windmill_api/models/flow_conversation_message_message_type.py +11 -0
  821. windmill_api-1.603.0/windmill_api/models/flow_module.py +337 -0
  822. windmill_api-1.603.0/windmill_api/models/flow_module_mock.py +67 -0
  823. windmill_api-1.603.0/windmill_api/models/flow_module_retry.py +108 -0
  824. windmill_api-1.603.0/windmill_api/models/flow_module_retry_constant.py +67 -0
  825. windmill_api-1.603.0/windmill_api/models/flow_module_retry_exponential.py +83 -0
  826. windmill_api-1.603.0/windmill_api/models/flow_module_retry_retry_if.py +59 -0
  827. windmill_api-1.603.0/windmill_api/models/flow_module_skip_if.py +59 -0
  828. windmill_api-1.603.0/windmill_api/models/flow_module_sleep_type_0.py +72 -0
  829. windmill_api-1.603.0/windmill_api/models/flow_module_sleep_type_1.py +70 -0
  830. windmill_api-1.603.0/windmill_api/models/flow_module_stop_after_all_iters_if.py +78 -0
  831. windmill_api-1.603.0/windmill_api/models/flow_module_stop_after_if.py +78 -0
  832. windmill_api-1.603.0/windmill_api/models/flow_module_suspend.py +185 -0
  833. windmill_api-1.603.0/windmill_api/models/flow_module_suspend_resume_form.py +72 -0
  834. windmill_api-1.603.0/windmill_api/models/flow_module_suspend_resume_form_schema.py +44 -0
  835. windmill_api-1.603.0/windmill_api/models/flow_module_suspend_user_groups_required_type_0.py +72 -0
  836. windmill_api-1.603.0/windmill_api/models/flow_module_suspend_user_groups_required_type_1.py +70 -0
  837. windmill_api-1.603.0/windmill_api/models/flow_module_timeout_type_0.py +72 -0
  838. windmill_api-1.603.0/windmill_api/models/flow_module_timeout_type_1.py +70 -0
  839. windmill_api-1.603.0/windmill_api/models/flow_module_tool.py +61 -0
  840. windmill_api-1.603.0/windmill_api/models/flow_module_tool_tool_type.py +8 -0
  841. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_assets_item.py +102 -0
  842. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_assets_item_kind.py +11 -0
  843. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_0.py +74 -0
  844. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_1.py +72 -0
  845. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_0.py +74 -0
  846. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_1.py +72 -0
  847. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_0.py +74 -0
  848. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_1.py +72 -0
  849. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_iterator_type_0.py +72 -0
  850. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_iterator_type_1.py +70 -0
  851. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_mock.py +67 -0
  852. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_constant.py +67 -0
  853. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_exponential.py +83 -0
  854. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_retry_if.py +59 -0
  855. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_skip_if.py +59 -0
  856. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_0.py +74 -0
  857. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_1.py +72 -0
  858. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_all_iters_if.py +78 -0
  859. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_if.py +78 -0
  860. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_resume_form_schema.py +44 -0
  861. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_0.py +74 -0
  862. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_1.py +72 -0
  863. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_0.py +74 -0
  864. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_1.py +72 -0
  865. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_0.py +72 -0
  866. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_0_type.py +8 -0
  867. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_1.py +70 -0
  868. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_1_type.py +8 -0
  869. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_mock.py +67 -0
  870. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_constant.py +67 -0
  871. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_exponential.py +83 -0
  872. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_retry_if.py +59 -0
  873. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_skip_if.py +59 -0
  874. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_0.py +74 -0
  875. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_1.py +72 -0
  876. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_all_iters_if.py +78 -0
  877. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_if.py +78 -0
  878. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_resume_form_schema.py +44 -0
  879. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_0.py +74 -0
  880. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_1.py +72 -0
  881. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_0.py +74 -0
  882. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_1.py +72 -0
  883. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_0.py +72 -0
  884. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_0_type.py +8 -0
  885. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_1.py +70 -0
  886. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_1_type.py +8 -0
  887. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_mock.py +67 -0
  888. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_constant.py +67 -0
  889. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_exponential.py +83 -0
  890. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_retry_if.py +59 -0
  891. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_skip_if.py +59 -0
  892. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_0.py +74 -0
  893. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_1.py +72 -0
  894. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
  895. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_if.py +78 -0
  896. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
  897. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_0.py +76 -0
  898. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_1.py +74 -0
  899. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_0.py +74 -0
  900. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_1.py +72 -0
  901. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_mock.py +67 -0
  902. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_retry_constant.py +67 -0
  903. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_retry_exponential.py +83 -0
  904. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_retry_retry_if.py +59 -0
  905. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_skip_if.py +59 -0
  906. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_0.py +74 -0
  907. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_1.py +72 -0
  908. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_all_iters_if.py +78 -0
  909. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_if.py +78 -0
  910. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_resume_form_schema.py +44 -0
  911. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_0.py +74 -0
  912. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_1.py +72 -0
  913. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_0.py +74 -0
  914. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_1.py +72 -0
  915. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_mock.py +67 -0
  916. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_constant.py +67 -0
  917. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_exponential.py +83 -0
  918. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_retry_if.py +59 -0
  919. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_skip_if.py +59 -0
  920. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_0.py +74 -0
  921. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_1.py +72 -0
  922. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
  923. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_if.py +78 -0
  924. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
  925. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_0.py +76 -0
  926. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_1.py +74 -0
  927. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_0.py +74 -0
  928. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_1.py +72 -0
  929. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_7.py +71 -0
  930. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_0.py +74 -0
  931. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_0_type.py +8 -0
  932. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_1.py +72 -0
  933. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_1_type.py +8 -0
  934. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_0.py +74 -0
  935. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_0_type.py +8 -0
  936. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_1.py +72 -0
  937. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_1_type.py +8 -0
  938. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_0.py +74 -0
  939. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_0_type.py +8 -0
  940. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_1.py +72 -0
  941. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_1_type.py +8 -0
  942. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_0.py +74 -0
  943. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_0_type.py +8 -0
  944. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_1.py +72 -0
  945. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_1_type.py +8 -0
  946. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_0.py +74 -0
  947. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_0_type.py +8 -0
  948. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_1.py +72 -0
  949. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_1_type.py +8 -0
  950. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_0.py +74 -0
  951. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_0_type.py +8 -0
  952. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_1.py +72 -0
  953. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_1_type.py +8 -0
  954. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_0.py +74 -0
  955. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_0_type.py +8 -0
  956. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_1.py +72 -0
  957. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_1_type.py +8 -0
  958. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_0.py +74 -0
  959. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_0_type.py +8 -0
  960. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_1.py +72 -0
  961. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_1_type.py +8 -0
  962. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_0.py +74 -0
  963. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_0_type.py +8 -0
  964. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_1.py +72 -0
  965. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_1_type.py +8 -0
  966. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_0.py +74 -0
  967. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_0_type.py +8 -0
  968. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_1.py +72 -0
  969. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_1_type.py +8 -0
  970. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_0.py +63 -0
  971. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_0_tool_type.py +8 -0
  972. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_1.py +93 -0
  973. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_1_tool_type.py +8 -0
  974. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_2.py +63 -0
  975. windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_2_tool_type.py +8 -0
  976. windmill_api-1.603.0/windmill_api/models/flow_note.py +142 -0
  977. windmill_api-1.603.0/windmill_api/models/flow_note_position.py +66 -0
  978. windmill_api-1.603.0/windmill_api/models/flow_note_size.py +66 -0
  979. windmill_api-1.603.0/windmill_api/models/flow_note_type.py +9 -0
  980. windmill_api-1.603.0/windmill_api/models/flow_preview.py +110 -0
  981. windmill_api-1.603.0/windmill_api/models/flow_preview_restarted_from.py +82 -0
  982. windmill_api-1.603.0/windmill_api/models/flow_preview_value.py +278 -0
  983. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module.py +355 -0
  984. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_mock.py +67 -0
  985. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry.py +113 -0
  986. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry_constant.py +67 -0
  987. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry_exponential.py +83 -0
  988. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry_retry_if.py +59 -0
  989. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_skip_if.py +59 -0
  990. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_sleep_type_0.py +72 -0
  991. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_sleep_type_1.py +70 -0
  992. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_stop_after_all_iters_if.py +78 -0
  993. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_stop_after_if.py +78 -0
  994. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend.py +206 -0
  995. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form.py +76 -0
  996. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form_schema.py +44 -0
  997. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  998. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  999. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_timeout_type_0.py +72 -0
  1000. windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_timeout_type_1.py +70 -0
  1001. windmill_api-1.603.0/windmill_api/models/flow_preview_value_flow_env.py +44 -0
  1002. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item.py +351 -0
  1003. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_mock.py +67 -0
  1004. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry.py +111 -0
  1005. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry_constant.py +67 -0
  1006. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry_exponential.py +83 -0
  1007. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry_retry_if.py +59 -0
  1008. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_skip_if.py +59 -0
  1009. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_sleep_type_0.py +72 -0
  1010. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_sleep_type_1.py +70 -0
  1011. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_stop_after_all_iters_if.py +78 -0
  1012. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_stop_after_if.py +78 -0
  1013. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend.py +206 -0
  1014. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form.py +76 -0
  1015. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form_schema.py +44 -0
  1016. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1017. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1018. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_timeout_type_0.py +72 -0
  1019. windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_timeout_type_1.py +70 -0
  1020. windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item.py +143 -0
  1021. windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item_position.py +66 -0
  1022. windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item_size.py +66 -0
  1023. windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item_type.py +9 -0
  1024. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module.py +386 -0
  1025. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_mock.py +67 -0
  1026. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry.py +123 -0
  1027. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry_constant.py +67 -0
  1028. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry_exponential.py +83 -0
  1029. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry_retry_if.py +59 -0
  1030. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_skip_if.py +59 -0
  1031. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_0.py +74 -0
  1032. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_1.py +72 -0
  1033. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1034. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_if.py +78 -0
  1035. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend.py +212 -0
  1036. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form.py +77 -0
  1037. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
  1038. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  1039. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  1040. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_0.py +74 -0
  1041. windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_1.py +72 -0
  1042. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module.py +369 -0
  1043. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1.py +110 -0
  1044. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
  1045. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1046. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  1047. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1048. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  1049. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1050. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_flow_jobs_duration.py +71 -0
  1051. windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_iterator.py +85 -0
  1052. windmill_api-1.603.0/windmill_api/models/flow_status_module.py +338 -0
  1053. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_1.py +108 -0
  1054. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_1_arguments.py +44 -0
  1055. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_1_type.py +8 -0
  1056. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_2.py +60 -0
  1057. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_2_type.py +8 -0
  1058. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_3.py +60 -0
  1059. windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_3_type.py +8 -0
  1060. windmill_api-1.603.0/windmill_api/models/flow_status_module_flow_jobs_duration.py +71 -0
  1061. windmill_api-1.603.0/windmill_api/models/flow_status_module_iterator.py +85 -0
  1062. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item.py +352 -0
  1063. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1.py +110 -0
  1064. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
  1065. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1066. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  1067. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1068. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  1069. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1070. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_flow_jobs_duration.py +71 -0
  1071. windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_iterator.py +85 -0
  1072. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module.py +362 -0
  1073. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1.py +110 -0
  1074. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
  1075. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1076. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  1077. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1078. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  1079. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1080. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  1081. windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_iterator.py +85 -0
  1082. windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_sleep_type_0.py +72 -0
  1083. windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_sleep_type_1.py +70 -0
  1084. windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  1085. windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  1086. windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_timeout_type_0.py +72 -0
  1087. windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_timeout_type_1.py +70 -0
  1088. windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_sleep_type_0.py +72 -0
  1089. windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_sleep_type_1.py +70 -0
  1090. windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1091. windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1092. windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_timeout_type_0.py +72 -0
  1093. windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_timeout_type_1.py +70 -0
  1094. windmill_api-1.603.0/windmill_api/models/flow_value_notes_item_type.py +9 -0
  1095. windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_sleep_type_0.py +72 -0
  1096. windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_sleep_type_1.py +70 -0
  1097. windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  1098. windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  1099. windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_timeout_type_0.py +72 -0
  1100. windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_timeout_type_1.py +70 -0
  1101. windmill_api-1.603.0/windmill_api/models/forloop_flow.py +205 -0
  1102. windmill_api-1.603.0/windmill_api/models/forloop_flow_iterator_type_0.py +72 -0
  1103. windmill_api-1.603.0/windmill_api/models/forloop_flow_iterator_type_1.py +70 -0
  1104. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item.py +347 -0
  1105. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_mock.py +67 -0
  1106. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry.py +109 -0
  1107. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry_constant.py +67 -0
  1108. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry_exponential.py +83 -0
  1109. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry_retry_if.py +59 -0
  1110. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_skip_if.py +59 -0
  1111. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_sleep_type_0.py +72 -0
  1112. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_sleep_type_1.py +70 -0
  1113. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_stop_after_all_iters_if.py +78 -0
  1114. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_stop_after_if.py +78 -0
  1115. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend.py +202 -0
  1116. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_resume_form.py +76 -0
  1117. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_resume_form_schema.py +44 -0
  1118. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1119. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1120. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_timeout_type_0.py +72 -0
  1121. windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_timeout_type_1.py +70 -0
  1122. windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_0.py +72 -0
  1123. windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_0_type.py +8 -0
  1124. windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_1.py +70 -0
  1125. windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_1_type.py +8 -0
  1126. windmill_api-1.603.0/windmill_api/models/gcp_trigger.py +261 -0
  1127. windmill_api-1.603.0/windmill_api/models/gcp_trigger_data.py +230 -0
  1128. windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_mode.py +10 -0
  1129. windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry.py +109 -0
  1130. windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry_constant.py +67 -0
  1131. windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry_exponential.py +83 -0
  1132. windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry_retry_if.py +59 -0
  1133. windmill_api-1.603.0/windmill_api/models/gcp_trigger_mode.py +10 -0
  1134. windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry.py +108 -0
  1135. windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry_constant.py +67 -0
  1136. windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry_exponential.py +83 -0
  1137. windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry_retry_if.py +59 -0
  1138. windmill_api-1.603.0/windmill_api/models/get_audit_log_response_200.py +140 -0
  1139. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200.py +419 -0
  1140. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module.py +410 -0
  1141. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  1142. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  1143. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1144. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  1145. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1146. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  1147. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1148. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_flow_jobs_duration.py +71 -0
  1149. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_iterator.py +85 -0
  1150. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item.py +399 -0
  1151. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  1152. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  1153. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1154. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  1155. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1156. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  1157. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1158. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_flow_jobs_duration.py +71 -0
  1159. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_iterator.py +85 -0
  1160. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module.py +402 -0
  1161. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +116 -0
  1162. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  1163. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1164. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  1165. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1166. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  1167. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1168. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  1169. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_iterator.py +85 -0
  1170. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_job_kind.py +25 -0
  1171. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow.py +292 -0
  1172. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module.py +413 -0
  1173. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_mock.py +67 -0
  1174. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry.py +123 -0
  1175. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_constant.py +67 -0
  1176. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +83 -0
  1177. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +59 -0
  1178. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_skip_if.py +59 -0
  1179. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +74 -0
  1180. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +72 -0
  1181. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  1182. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +78 -0
  1183. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend.py +216 -0
  1184. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +77 -0
  1185. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  1186. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  1187. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  1188. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +74 -0
  1189. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +72 -0
  1190. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_flow_env.py +44 -0
  1191. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item.py +411 -0
  1192. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_mock.py +67 -0
  1193. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry.py +123 -0
  1194. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_constant.py +67 -0
  1195. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +83 -0
  1196. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +59 -0
  1197. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_skip_if.py +59 -0
  1198. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +74 -0
  1199. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +72 -0
  1200. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  1201. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +78 -0
  1202. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend.py +216 -0
  1203. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +77 -0
  1204. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  1205. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  1206. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  1207. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +74 -0
  1208. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +72 -0
  1209. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item.py +154 -0
  1210. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item_position.py +66 -0
  1211. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item_size.py +66 -0
  1212. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item_type.py +9 -0
  1213. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module.py +419 -0
  1214. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_mock.py +67 -0
  1215. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry.py +123 -0
  1216. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +67 -0
  1217. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  1218. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  1219. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +59 -0
  1220. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  1221. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  1222. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1223. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  1224. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +217 -0
  1225. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  1226. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  1227. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  1228. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  1229. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  1230. windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  1231. windmill_api-1.603.0/windmill_api/models/get_completed_job_timing_response_200.py +87 -0
  1232. windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200.py +149 -0
  1233. windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200_code_completion_model_provider.py +18 -0
  1234. windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200_default_model_provider.py +18 -0
  1235. windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200_max_tokens_per_model.py +44 -0
  1236. windmill_api-1.603.0/windmill_api/models/get_dependency_map_response_200_item.py +90 -0
  1237. windmill_api-1.603.0/windmill_api/models/get_dependents_amounts_response_200_item.py +65 -0
  1238. windmill_api-1.603.0/windmill_api/models/get_dependents_response_200_item.py +82 -0
  1239. windmill_api-1.603.0/windmill_api/models/get_dependents_response_200_item_importer_kind.py +10 -0
  1240. windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200.py +189 -0
  1241. windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_mode.py +10 -0
  1242. windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry.py +109 -0
  1243. windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry_constant.py +67 -0
  1244. windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry_exponential.py +83 -0
  1245. windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry_retry_if.py +59 -0
  1246. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200.py +240 -0
  1247. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_schema.py +47 -0
  1248. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value.py +284 -0
  1249. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module.py +411 -0
  1250. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_mock.py +67 -0
  1251. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry.py +123 -0
  1252. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_constant.py +67 -0
  1253. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_exponential.py +83 -0
  1254. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_retry_if.py +59 -0
  1255. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_skip_if.py +59 -0
  1256. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_0.py +74 -0
  1257. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_1.py +72 -0
  1258. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_all_iters_if.py +78 -0
  1259. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_if.py +78 -0
  1260. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend.py +216 -0
  1261. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form.py +77 -0
  1262. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form_schema.py +44 -0
  1263. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  1264. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  1265. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_0.py +74 -0
  1266. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_1.py +72 -0
  1267. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_flow_env.py +44 -0
  1268. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item.py +411 -0
  1269. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_mock.py +67 -0
  1270. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry.py +123 -0
  1271. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_constant.py +67 -0
  1272. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_exponential.py +83 -0
  1273. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_retry_if.py +59 -0
  1274. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_skip_if.py +59 -0
  1275. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_0.py +74 -0
  1276. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_1.py +72 -0
  1277. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_all_iters_if.py +78 -0
  1278. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_if.py +78 -0
  1279. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend.py +216 -0
  1280. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form.py +77 -0
  1281. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form_schema.py +44 -0
  1282. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1283. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1284. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_0.py +74 -0
  1285. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_1.py +72 -0
  1286. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item.py +149 -0
  1287. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item_position.py +66 -0
  1288. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item_size.py +66 -0
  1289. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item_type.py +9 -0
  1290. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module.py +413 -0
  1291. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_mock.py +67 -0
  1292. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry.py +123 -0
  1293. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_constant.py +67 -0
  1294. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_exponential.py +83 -0
  1295. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_retry_if.py +59 -0
  1296. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_skip_if.py +59 -0
  1297. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_0.py +74 -0
  1298. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_1.py +72 -0
  1299. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1300. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_if.py +78 -0
  1301. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend.py +216 -0
  1302. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form.py +77 -0
  1303. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
  1304. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  1305. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  1306. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_0.py +74 -0
  1307. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_1.py +72 -0
  1308. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py +252 -0
  1309. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_schema.py +47 -0
  1310. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value.py +302 -0
  1311. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module.py +428 -0
  1312. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_mock.py +67 -0
  1313. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry.py +125 -0
  1314. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_constant.py +67 -0
  1315. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_exponential.py +83 -0
  1316. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_retry_if.py +59 -0
  1317. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_skip_if.py +59 -0
  1318. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_0.py +74 -0
  1319. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_1.py +72 -0
  1320. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_all_iters_if.py +80 -0
  1321. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_if.py +78 -0
  1322. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend.py +219 -0
  1323. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form.py +79 -0
  1324. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form_schema.py +46 -0
  1325. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_0.py +76 -0
  1326. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_1.py +74 -0
  1327. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_0.py +74 -0
  1328. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_1.py +72 -0
  1329. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_flow_env.py +44 -0
  1330. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item.py +422 -0
  1331. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_mock.py +67 -0
  1332. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry.py +123 -0
  1333. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_constant.py +67 -0
  1334. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_exponential.py +83 -0
  1335. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_retry_if.py +59 -0
  1336. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_skip_if.py +59 -0
  1337. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_0.py +74 -0
  1338. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_1.py +72 -0
  1339. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_all_iters_if.py +80 -0
  1340. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_if.py +78 -0
  1341. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend.py +221 -0
  1342. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form.py +77 -0
  1343. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form_schema.py +46 -0
  1344. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_0.py +76 -0
  1345. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1.py +74 -0
  1346. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_0.py +74 -0
  1347. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_1.py +72 -0
  1348. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item.py +155 -0
  1349. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item_position.py +66 -0
  1350. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item_size.py +66 -0
  1351. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item_type.py +9 -0
  1352. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module.py +430 -0
  1353. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_mock.py +67 -0
  1354. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry.py +125 -0
  1355. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_constant.py +69 -0
  1356. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_exponential.py +85 -0
  1357. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_retry_if.py +61 -0
  1358. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_skip_if.py +59 -0
  1359. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_0.py +74 -0
  1360. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_1.py +72 -0
  1361. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_all_iters_if.py +80 -0
  1362. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_if.py +78 -0
  1363. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend.py +217 -0
  1364. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form.py +81 -0
  1365. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form_schema.py +46 -0
  1366. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0.py +82 -0
  1367. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1.py +80 -0
  1368. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_0.py +76 -0
  1369. windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_1.py +74 -0
  1370. windmill_api-1.603.0/windmill_api/models/get_flow_deployment_status_response_200.py +66 -0
  1371. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200.py +240 -0
  1372. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_schema.py +47 -0
  1373. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value.py +284 -0
  1374. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module.py +411 -0
  1375. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_mock.py +67 -0
  1376. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry.py +123 -0
  1377. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_constant.py +67 -0
  1378. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_exponential.py +83 -0
  1379. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_retry_if.py +59 -0
  1380. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_skip_if.py +59 -0
  1381. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_0.py +74 -0
  1382. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_1.py +72 -0
  1383. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_all_iters_if.py +78 -0
  1384. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_if.py +78 -0
  1385. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend.py +216 -0
  1386. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form.py +77 -0
  1387. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form_schema.py +44 -0
  1388. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  1389. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  1390. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_0.py +74 -0
  1391. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_1.py +72 -0
  1392. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_flow_env.py +44 -0
  1393. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item.py +411 -0
  1394. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_mock.py +67 -0
  1395. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry.py +123 -0
  1396. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_constant.py +67 -0
  1397. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_exponential.py +83 -0
  1398. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_retry_if.py +59 -0
  1399. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_skip_if.py +59 -0
  1400. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_0.py +74 -0
  1401. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_1.py +72 -0
  1402. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_all_iters_if.py +78 -0
  1403. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_if.py +78 -0
  1404. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend.py +216 -0
  1405. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form.py +77 -0
  1406. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form_schema.py +44 -0
  1407. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1408. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1409. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_0.py +74 -0
  1410. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_1.py +72 -0
  1411. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item.py +150 -0
  1412. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item_position.py +66 -0
  1413. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item_size.py +66 -0
  1414. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item_type.py +9 -0
  1415. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module.py +413 -0
  1416. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_mock.py +67 -0
  1417. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry.py +123 -0
  1418. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_constant.py +67 -0
  1419. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_exponential.py +83 -0
  1420. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_retry_if.py +59 -0
  1421. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_skip_if.py +59 -0
  1422. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_0.py +74 -0
  1423. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_1.py +72 -0
  1424. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1425. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_if.py +78 -0
  1426. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend.py +216 -0
  1427. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form.py +77 -0
  1428. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
  1429. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  1430. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  1431. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_0.py +74 -0
  1432. windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_1.py +72 -0
  1433. windmill_api-1.603.0/windmill_api/models/get_folder_permission_history_response_200_item.py +100 -0
  1434. windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200.py +262 -0
  1435. windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_mode.py +10 -0
  1436. windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry.py +109 -0
  1437. windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry_constant.py +67 -0
  1438. windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry_exponential.py +83 -0
  1439. windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry_retry_if.py +59 -0
  1440. windmill_api-1.603.0/windmill_api/models/get_git_commit_hash_response_200.py +58 -0
  1441. windmill_api-1.603.0/windmill_api/models/get_global_connected_repositories_response_200_item.py +126 -0
  1442. windmill_api-1.603.0/windmill_api/models/get_group_permission_history_response_200_item.py +100 -0
  1443. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200.py +278 -0
  1444. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_mode.py +10 -0
  1445. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_request_type.py +10 -0
  1446. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry.py +109 -0
  1447. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry_constant.py +67 -0
  1448. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry_exponential.py +83 -0
  1449. windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry_retry_if.py +59 -0
  1450. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200.py +72 -0
  1451. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow.py +103 -0
  1452. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_schema.py +47 -0
  1453. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value.py +296 -0
  1454. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module.py +413 -0
  1455. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_mock.py +67 -0
  1456. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry.py +123 -0
  1457. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_constant.py +67 -0
  1458. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_exponential.py +83 -0
  1459. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_retry_if.py +59 -0
  1460. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_skip_if.py +59 -0
  1461. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_0.py +74 -0
  1462. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_1.py +72 -0
  1463. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_all_iters_if.py +78 -0
  1464. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_if.py +78 -0
  1465. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend.py +216 -0
  1466. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form.py +77 -0
  1467. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form_schema.py +44 -0
  1468. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_0.py +76 -0
  1469. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_1.py +74 -0
  1470. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_0.py +74 -0
  1471. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_1.py +72 -0
  1472. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_flow_env.py +44 -0
  1473. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item.py +413 -0
  1474. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_mock.py +67 -0
  1475. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry.py +123 -0
  1476. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_constant.py +67 -0
  1477. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_exponential.py +83 -0
  1478. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_retry_if.py +59 -0
  1479. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_skip_if.py +59 -0
  1480. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_0.py +74 -0
  1481. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_1.py +72 -0
  1482. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_all_iters_if.py +78 -0
  1483. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_if.py +78 -0
  1484. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend.py +216 -0
  1485. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form.py +77 -0
  1486. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form_schema.py +44 -0
  1487. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_0.py +76 -0
  1488. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1.py +74 -0
  1489. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_0.py +74 -0
  1490. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_1.py +72 -0
  1491. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item.py +154 -0
  1492. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item_position.py +66 -0
  1493. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item_size.py +66 -0
  1494. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item_type.py +9 -0
  1495. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module.py +419 -0
  1496. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_mock.py +67 -0
  1497. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry.py +123 -0
  1498. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_constant.py +67 -0
  1499. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_exponential.py +83 -0
  1500. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_retry_if.py +59 -0
  1501. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_skip_if.py +59 -0
  1502. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_0.py +74 -0
  1503. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_1.py +72 -0
  1504. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1505. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_if.py +78 -0
  1506. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend.py +219 -0
  1507. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form.py +77 -0
  1508. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form_schema.py +46 -0
  1509. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  1510. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  1511. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_0.py +74 -0
  1512. windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_1.py +72 -0
  1513. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0.py +433 -0
  1514. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module.py +408 -0
  1515. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  1516. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  1517. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1518. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  1519. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1520. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  1521. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1522. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
  1523. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_iterator.py +85 -0
  1524. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item.py +399 -0
  1525. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
  1526. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  1527. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1528. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  1529. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1530. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  1531. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1532. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
  1533. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_iterator.py +85 -0
  1534. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module.py +402 -0
  1535. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +112 -0
  1536. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  1537. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1538. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  1539. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1540. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  1541. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1542. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  1543. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_iterator.py +85 -0
  1544. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_job_kind.py +25 -0
  1545. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow.py +284 -0
  1546. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module.py +411 -0
  1547. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_mock.py +67 -0
  1548. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry.py +123 -0
  1549. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_constant.py +67 -0
  1550. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
  1551. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
  1552. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_skip_if.py +59 -0
  1553. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
  1554. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
  1555. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  1556. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
  1557. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend.py +216 -0
  1558. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form.py +77 -0
  1559. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  1560. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  1561. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  1562. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
  1563. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
  1564. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_flow_env.py +44 -0
  1565. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item.py +411 -0
  1566. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_mock.py +67 -0
  1567. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry.py +123 -0
  1568. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_constant.py +67 -0
  1569. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
  1570. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
  1571. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_skip_if.py +59 -0
  1572. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
  1573. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
  1574. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  1575. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
  1576. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend.py +216 -0
  1577. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form.py +77 -0
  1578. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  1579. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1580. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1581. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
  1582. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
  1583. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item.py +149 -0
  1584. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item_position.py +66 -0
  1585. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item_size.py +66 -0
  1586. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item_type.py +9 -0
  1587. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module.py +413 -0
  1588. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_mock.py +67 -0
  1589. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry.py +123 -0
  1590. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
  1591. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  1592. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  1593. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
  1594. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  1595. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  1596. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1597. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  1598. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend.py +216 -0
  1599. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  1600. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  1601. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  1602. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  1603. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  1604. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  1605. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1.py +433 -0
  1606. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module.py +408 -0
  1607. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  1608. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  1609. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1610. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  1611. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1612. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  1613. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1614. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
  1615. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_iterator.py +85 -0
  1616. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item.py +399 -0
  1617. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
  1618. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  1619. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1620. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  1621. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1622. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  1623. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1624. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
  1625. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_iterator.py +85 -0
  1626. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module.py +402 -0
  1627. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +112 -0
  1628. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  1629. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1630. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  1631. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1632. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  1633. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1634. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  1635. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_iterator.py +85 -0
  1636. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_job_kind.py +25 -0
  1637. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow.py +284 -0
  1638. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module.py +411 -0
  1639. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_mock.py +67 -0
  1640. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry.py +123 -0
  1641. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_constant.py +67 -0
  1642. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
  1643. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
  1644. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_skip_if.py +59 -0
  1645. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
  1646. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
  1647. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  1648. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
  1649. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend.py +216 -0
  1650. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form.py +77 -0
  1651. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  1652. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  1653. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  1654. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
  1655. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
  1656. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_flow_env.py +44 -0
  1657. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item.py +411 -0
  1658. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_mock.py +67 -0
  1659. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry.py +123 -0
  1660. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_constant.py +67 -0
  1661. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
  1662. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
  1663. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_skip_if.py +59 -0
  1664. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
  1665. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
  1666. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  1667. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
  1668. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend.py +216 -0
  1669. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form.py +77 -0
  1670. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  1671. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  1672. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  1673. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
  1674. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
  1675. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item.py +149 -0
  1676. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item_position.py +66 -0
  1677. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item_size.py +66 -0
  1678. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item_type.py +9 -0
  1679. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module.py +413 -0
  1680. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_mock.py +67 -0
  1681. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry.py +123 -0
  1682. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
  1683. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  1684. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  1685. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
  1686. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  1687. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  1688. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  1689. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  1690. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend.py +216 -0
  1691. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  1692. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  1693. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  1694. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  1695. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  1696. windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  1697. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module.py +408 -0
  1698. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  1699. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  1700. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1701. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  1702. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1703. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  1704. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1705. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_flow_jobs_duration.py +71 -0
  1706. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_iterator.py +85 -0
  1707. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item.py +399 -0
  1708. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  1709. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  1710. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1711. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  1712. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1713. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  1714. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1715. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_flow_jobs_duration.py +71 -0
  1716. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_iterator.py +85 -0
  1717. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module.py +402 -0
  1718. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +114 -0
  1719. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  1720. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1721. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  1722. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1723. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  1724. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1725. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  1726. windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_iterator.py +85 -0
  1727. windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200.py +228 -0
  1728. windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_mode.py +10 -0
  1729. windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry.py +109 -0
  1730. windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry_constant.py +67 -0
  1731. windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry_exponential.py +83 -0
  1732. windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry_retry_if.py +59 -0
  1733. windmill_api-1.603.0/windmill_api/models/get_large_file_storage_config_response_200.py +152 -0
  1734. windmill_api-1.603.0/windmill_api/models/get_large_file_storage_config_response_200_advanced_permissions_item.py +65 -0
  1735. windmill_api-1.603.0/windmill_api/models/get_latest_workspace_dependencies_language.py +29 -0
  1736. windmill_api-1.603.0/windmill_api/models/get_latest_workspace_dependencies_response_200.py +118 -0
  1737. windmill_api-1.603.0/windmill_api/models/get_latest_workspace_dependencies_response_200_language.py +29 -0
  1738. windmill_api-1.603.0/windmill_api/models/get_mcp_tools_response_200_item.py +82 -0
  1739. windmill_api-1.603.0/windmill_api/models/get_mcp_tools_response_200_item_parameters.py +44 -0
  1740. windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200.py +295 -0
  1741. windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_mode.py +10 -0
  1742. windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry.py +109 -0
  1743. windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry_constant.py +67 -0
  1744. windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry_exponential.py +83 -0
  1745. windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry_retry_if.py +59 -0
  1746. windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200.py +242 -0
  1747. windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_mode.py +10 -0
  1748. windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry.py +109 -0
  1749. windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry_constant.py +67 -0
  1750. windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry_exponential.py +83 -0
  1751. windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry_retry_if.py +59 -0
  1752. windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200.py +229 -0
  1753. windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_mode.py +10 -0
  1754. windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry.py +113 -0
  1755. windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry_constant.py +67 -0
  1756. windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry_exponential.py +83 -0
  1757. windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry_retry_if.py +59 -0
  1758. windmill_api-1.603.0/windmill_api/models/get_runnable_response_200.py +96 -0
  1759. windmill_api-1.603.0/windmill_api/models/get_schedule_response_200.py +355 -0
  1760. windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry.py +109 -0
  1761. windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry_constant.py +67 -0
  1762. windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry_exponential.py +83 -0
  1763. windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry_retry_if.py +59 -0
  1764. windmill_api-1.603.0/windmill_api/models/get_script_by_hash_response_200.py +415 -0
  1765. windmill_api-1.603.0/windmill_api/models/get_script_by_path_response_200.py +415 -0
  1766. windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200.py +409 -0
  1767. windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_kind.py +11 -0
  1768. windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200_draft.py +390 -0
  1769. windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_kind.py +11 -0
  1770. windmill_api-1.603.0/windmill_api/models/get_script_deployment_status_response_200.py +74 -0
  1771. windmill_api-1.603.0/windmill_api/models/get_settings_response_200.py +433 -0
  1772. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config.py +155 -0
  1773. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config_code_completion_model_provider.py +18 -0
  1774. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config_default_model_provider.py +18 -0
  1775. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config_max_tokens_per_model.py +44 -0
  1776. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable.py +64 -0
  1777. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables.py +66 -0
  1778. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables_additional_property.py +68 -0
  1779. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables_additional_property_database.py +74 -0
  1780. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables_additional_property_database_resource_type.py +9 -0
  1781. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property.py +93 -0
  1782. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_large_file_storage.py +152 -0
  1783. windmill_api-1.603.0/windmill_api/models/get_settings_response_200_large_file_storage_advanced_permissions_item.py +65 -0
  1784. windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200.py +238 -0
  1785. windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_mode.py +10 -0
  1786. windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry.py +109 -0
  1787. windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry_constant.py +67 -0
  1788. windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry_exponential.py +83 -0
  1789. windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry_retry_if.py +59 -0
  1790. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +451 -0
  1791. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module.py +427 -0
  1792. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
  1793. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
  1794. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1795. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  1796. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1797. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  1798. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1799. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_flow_jobs_duration.py +73 -0
  1800. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_iterator.py +85 -0
  1801. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item.py +409 -0
  1802. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
  1803. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +50 -0
  1804. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1805. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
  1806. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1807. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
  1808. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1809. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_flow_jobs_duration.py +73 -0
  1810. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_iterator.py +85 -0
  1811. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module.py +423 -0
  1812. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +121 -0
  1813. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
  1814. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1815. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +66 -0
  1816. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1817. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +66 -0
  1818. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1819. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
  1820. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_iterator.py +87 -0
  1821. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_job_kind.py +25 -0
  1822. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow.py +302 -0
  1823. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module.py +428 -0
  1824. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_mock.py +67 -0
  1825. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry.py +125 -0
  1826. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_constant.py +67 -0
  1827. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_exponential.py +85 -0
  1828. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
  1829. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_skip_if.py +59 -0
  1830. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
  1831. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
  1832. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
  1833. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
  1834. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend.py +219 -0
  1835. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form.py +81 -0
  1836. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
  1837. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
  1838. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
  1839. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
  1840. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
  1841. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_flow_env.py +44 -0
  1842. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item.py +428 -0
  1843. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_mock.py +67 -0
  1844. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry.py +125 -0
  1845. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_constant.py +67 -0
  1846. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
  1847. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
  1848. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_skip_if.py +59 -0
  1849. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
  1850. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
  1851. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
  1852. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
  1853. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend.py +219 -0
  1854. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form.py +79 -0
  1855. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
  1856. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  1857. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  1858. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
  1859. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
  1860. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item.py +155 -0
  1861. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item_position.py +66 -0
  1862. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item_size.py +66 -0
  1863. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item_type.py +9 -0
  1864. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module.py +432 -0
  1865. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_mock.py +67 -0
  1866. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry.py +125 -0
  1867. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_constant.py +69 -0
  1868. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_exponential.py +85 -0
  1869. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
  1870. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
  1871. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
  1872. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
  1873. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  1874. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_if.py +80 -0
  1875. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend.py +219 -0
  1876. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
  1877. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  1878. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
  1879. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
  1880. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
  1881. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
  1882. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py +451 -0
  1883. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module.py +427 -0
  1884. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
  1885. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
  1886. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  1887. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  1888. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  1889. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  1890. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  1891. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_flow_jobs_duration.py +73 -0
  1892. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_iterator.py +85 -0
  1893. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item.py +409 -0
  1894. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
  1895. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +50 -0
  1896. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  1897. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
  1898. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  1899. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
  1900. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  1901. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_flow_jobs_duration.py +73 -0
  1902. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_iterator.py +85 -0
  1903. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module.py +423 -0
  1904. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +121 -0
  1905. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
  1906. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  1907. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +66 -0
  1908. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  1909. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +66 -0
  1910. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  1911. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
  1912. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_iterator.py +87 -0
  1913. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_job_kind.py +25 -0
  1914. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow.py +302 -0
  1915. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module.py +428 -0
  1916. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_mock.py +67 -0
  1917. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry.py +125 -0
  1918. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_constant.py +67 -0
  1919. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_exponential.py +85 -0
  1920. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
  1921. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_skip_if.py +59 -0
  1922. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
  1923. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
  1924. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
  1925. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
  1926. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend.py +219 -0
  1927. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form.py +81 -0
  1928. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
  1929. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
  1930. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
  1931. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
  1932. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
  1933. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_flow_env.py +44 -0
  1934. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item.py +428 -0
  1935. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_mock.py +67 -0
  1936. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry.py +125 -0
  1937. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_constant.py +67 -0
  1938. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
  1939. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
  1940. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_skip_if.py +59 -0
  1941. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
  1942. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
  1943. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
  1944. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
  1945. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend.py +219 -0
  1946. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form.py +79 -0
  1947. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
  1948. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  1949. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  1950. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
  1951. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
  1952. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item.py +155 -0
  1953. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item_position.py +66 -0
  1954. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item_size.py +66 -0
  1955. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item_type.py +9 -0
  1956. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module.py +432 -0
  1957. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_mock.py +67 -0
  1958. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry.py +125 -0
  1959. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_constant.py +69 -0
  1960. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_exponential.py +85 -0
  1961. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
  1962. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
  1963. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
  1964. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
  1965. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  1966. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_if.py +80 -0
  1967. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend.py +219 -0
  1968. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
  1969. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  1970. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
  1971. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
  1972. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
  1973. windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
  1974. windmill_api-1.603.0/windmill_api/models/get_tutorial_progress_response_200.py +66 -0
  1975. windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200.py +345 -0
  1976. windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_mode.py +10 -0
  1977. windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry.py +117 -0
  1978. windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry_constant.py +67 -0
  1979. windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry_exponential.py +83 -0
  1980. windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry_retry_if.py +59 -0
  1981. windmill_api-1.603.0/windmill_api/models/get_workspace_as_super_admin_response_200.py +98 -0
  1982. windmill_api-1.603.0/windmill_api/models/get_workspace_slack_oauth_config_response_200.py +66 -0
  1983. windmill_api-1.603.0/windmill_api/models/git_repo_viewer_file_upload_response_200.py +58 -0
  1984. windmill_api-1.603.0/windmill_api/models/github_installations_item.py +120 -0
  1985. windmill_api-1.603.0/windmill_api/models/global_user_info.py +130 -0
  1986. windmill_api-1.603.0/windmill_api/models/global_whoami_response_200.py +130 -0
  1987. windmill_api-1.603.0/windmill_api/models/http_request_type.py +10 -0
  1988. windmill_api-1.603.0/windmill_api/models/http_trigger.py +275 -0
  1989. windmill_api-1.603.0/windmill_api/models/http_trigger_mode.py +10 -0
  1990. windmill_api-1.603.0/windmill_api/models/http_trigger_request_type.py +10 -0
  1991. windmill_api-1.603.0/windmill_api/models/http_trigger_retry.py +109 -0
  1992. windmill_api-1.603.0/windmill_api/models/http_trigger_retry_constant.py +67 -0
  1993. windmill_api-1.603.0/windmill_api/models/http_trigger_retry_exponential.py +83 -0
  1994. windmill_api-1.603.0/windmill_api/models/http_trigger_retry_retry_if.py +59 -0
  1995. windmill_api-1.603.0/windmill_api/models/identity.py +71 -0
  1996. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item.py +509 -0
  1997. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_args.py +44 -0
  1998. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_flow_status.py +44 -0
  1999. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_job_kind.py +25 -0
  2000. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_language.py +29 -0
  2001. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_raw_flow.py +44 -0
  2002. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_result.py +44 -0
  2003. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_trigger_kind.py +19 -0
  2004. windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_workflow_as_code_status.py +44 -0
  2005. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item.py +482 -0
  2006. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_args.py +44 -0
  2007. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_flow_status.py +44 -0
  2008. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_job_kind.py +25 -0
  2009. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_language.py +29 -0
  2010. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_raw_flow.py +44 -0
  2011. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_trigger_kind.py +19 -0
  2012. windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_workflow_as_code_status.py +44 -0
  2013. windmill_api-1.603.0/windmill_api/models/input_transform_type_0.py +72 -0
  2014. windmill_api-1.603.0/windmill_api/models/input_transform_type_1.py +70 -0
  2015. windmill_api-1.603.0/windmill_api/models/javascript_transform.py +70 -0
  2016. windmill_api-1.603.0/windmill_api/models/job_trigger_kind.py +19 -0
  2017. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
  2018. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2019. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  2020. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2021. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  2022. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2023. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
  2024. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_iterator.py +85 -0
  2025. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
  2026. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2027. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  2028. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2029. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  2030. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2031. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
  2032. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_iterator.py +85 -0
  2033. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
  2034. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2035. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  2036. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2037. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  2038. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2039. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  2040. windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_iterator.py +85 -0
  2041. windmill_api-1.603.0/windmill_api/models/job_type_0_job_kind.py +25 -0
  2042. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_mock.py +67 -0
  2043. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_retry_constant.py +67 -0
  2044. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
  2045. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
  2046. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_skip_if.py +59 -0
  2047. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_0.py +72 -0
  2048. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_1.py +70 -0
  2049. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  2050. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
  2051. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  2052. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
  2053. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
  2054. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_0.py +72 -0
  2055. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_1.py +70 -0
  2056. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_flow_env.py +44 -0
  2057. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_mock.py +67 -0
  2058. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_retry_constant.py +67 -0
  2059. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
  2060. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
  2061. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_skip_if.py +59 -0
  2062. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_0.py +72 -0
  2063. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_1.py +70 -0
  2064. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  2065. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
  2066. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  2067. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  2068. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  2069. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_0.py +72 -0
  2070. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_1.py +70 -0
  2071. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_notes_item_position.py +66 -0
  2072. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_notes_item_size.py +66 -0
  2073. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_notes_item_type.py +9 -0
  2074. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_mock.py +67 -0
  2075. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
  2076. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  2077. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  2078. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
  2079. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  2080. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  2081. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  2082. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  2083. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  2084. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  2085. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  2086. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  2087. windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  2088. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
  2089. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2090. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  2091. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2092. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  2093. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2094. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
  2095. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_iterator.py +85 -0
  2096. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
  2097. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2098. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  2099. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2100. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  2101. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2102. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
  2103. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_iterator.py +85 -0
  2104. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
  2105. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2106. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  2107. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2108. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  2109. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2110. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  2111. windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_iterator.py +85 -0
  2112. windmill_api-1.603.0/windmill_api/models/job_type_1_job_kind.py +25 -0
  2113. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_mock.py +67 -0
  2114. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_retry_constant.py +67 -0
  2115. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
  2116. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
  2117. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_skip_if.py +59 -0
  2118. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_0.py +72 -0
  2119. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_1.py +70 -0
  2120. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  2121. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
  2122. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  2123. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
  2124. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
  2125. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_0.py +72 -0
  2126. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_1.py +70 -0
  2127. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_flow_env.py +44 -0
  2128. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_mock.py +67 -0
  2129. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_retry_constant.py +67 -0
  2130. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
  2131. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
  2132. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_skip_if.py +59 -0
  2133. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_0.py +72 -0
  2134. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_1.py +70 -0
  2135. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  2136. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
  2137. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  2138. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  2139. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  2140. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_0.py +72 -0
  2141. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_1.py +70 -0
  2142. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_notes_item_position.py +66 -0
  2143. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_notes_item_size.py +66 -0
  2144. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_notes_item_type.py +9 -0
  2145. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_mock.py +67 -0
  2146. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
  2147. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  2148. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  2149. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
  2150. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  2151. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  2152. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  2153. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  2154. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  2155. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  2156. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  2157. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  2158. windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  2159. windmill_api-1.603.0/windmill_api/models/kafka_trigger.py +225 -0
  2160. windmill_api-1.603.0/windmill_api/models/kafka_trigger_mode.py +10 -0
  2161. windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry.py +109 -0
  2162. windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry_constant.py +67 -0
  2163. windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry_exponential.py +83 -0
  2164. windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry_retry_if.py +59 -0
  2165. windmill_api-1.603.0/windmill_api/models/large_file_storage.py +144 -0
  2166. windmill_api-1.603.0/windmill_api/models/large_file_storage_advanced_permissions_item.py +65 -0
  2167. windmill_api-1.603.0/windmill_api/models/list_assets_by_usage_response_200_item_item_kind.py +11 -0
  2168. windmill_api-1.603.0/windmill_api/models/list_assets_response_200_item_kind.py +11 -0
  2169. windmill_api-1.603.0/windmill_api/models/list_audit_logs_response_200_item.py +140 -0
  2170. windmill_api-1.603.0/windmill_api/models/list_available_teams_channels_response_200.py +88 -0
  2171. windmill_api-1.603.0/windmill_api/models/list_available_teams_channels_response_200_channels_item.py +66 -0
  2172. windmill_api-1.603.0/windmill_api/models/list_available_teams_ids_response_200.py +100 -0
  2173. windmill_api-1.603.0/windmill_api/models/list_available_teams_ids_response_200_teams_item.py +66 -0
  2174. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item.py +423 -0
  2175. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module.py +416 -0
  2176. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +116 -0
  2177. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  2178. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2179. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  2180. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2181. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  2182. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2183. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_flow_jobs_duration.py +71 -0
  2184. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_iterator.py +85 -0
  2185. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item.py +402 -0
  2186. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +116 -0
  2187. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  2188. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2189. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
  2190. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2191. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
  2192. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2193. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_flow_jobs_duration.py +71 -0
  2194. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_iterator.py +85 -0
  2195. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module.py +415 -0
  2196. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +121 -0
  2197. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +48 -0
  2198. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2199. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  2200. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2201. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  2202. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2203. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
  2204. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_iterator.py +85 -0
  2205. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_job_kind.py +25 -0
  2206. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow.py +302 -0
  2207. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module.py +419 -0
  2208. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_mock.py +67 -0
  2209. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry.py +123 -0
  2210. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_constant.py +67 -0
  2211. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_exponential.py +83 -0
  2212. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_retry_if.py +59 -0
  2213. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_skip_if.py +59 -0
  2214. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_0.py +74 -0
  2215. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_1.py +72 -0
  2216. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  2217. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_if.py +78 -0
  2218. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend.py +219 -0
  2219. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form.py +77 -0
  2220. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
  2221. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  2222. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  2223. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_0.py +74 -0
  2224. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_1.py +72 -0
  2225. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_flow_env.py +44 -0
  2226. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item.py +417 -0
  2227. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_mock.py +67 -0
  2228. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry.py +123 -0
  2229. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_constant.py +67 -0
  2230. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_exponential.py +83 -0
  2231. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_retry_if.py +59 -0
  2232. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_skip_if.py +59 -0
  2233. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_0.py +74 -0
  2234. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_1.py +72 -0
  2235. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  2236. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_if.py +78 -0
  2237. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend.py +217 -0
  2238. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form.py +77 -0
  2239. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  2240. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  2241. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  2242. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_0.py +74 -0
  2243. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_1.py +72 -0
  2244. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item.py +154 -0
  2245. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item_position.py +66 -0
  2246. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item_size.py +66 -0
  2247. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item_type.py +9 -0
  2248. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module.py +428 -0
  2249. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_mock.py +67 -0
  2250. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry.py +125 -0
  2251. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_constant.py +67 -0
  2252. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  2253. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  2254. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_skip_if.py +59 -0
  2255. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  2256. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  2257. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  2258. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  2259. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend.py +219 -0
  2260. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  2261. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  2262. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
  2263. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
  2264. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  2265. windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  2266. windmill_api-1.603.0/windmill_api/models/list_conversation_messages_response_200_item.py +119 -0
  2267. windmill_api-1.603.0/windmill_api/models/list_conversation_messages_response_200_item_message_type.py +11 -0
  2268. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200.py +66 -0
  2269. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property.py +104 -0
  2270. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs.py +169 -0
  2271. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_created_database.py +10 -0
  2272. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_database_credentials.py +10 -0
  2273. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_db_connect.py +10 -0
  2274. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_grant_permissions.py +10 -0
  2275. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_super_admin.py +10 -0
  2276. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_valid_dbname.py +10 -0
  2277. windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_tag.py +9 -0
  2278. windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item.py +85 -0
  2279. windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item_schemas.py +66 -0
  2280. windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item_schemas_additional_property.py +72 -0
  2281. windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item_schemas_additional_property_additional_property.py +46 -0
  2282. windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item.py +193 -0
  2283. windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_mode.py +10 -0
  2284. windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry.py +123 -0
  2285. windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry_constant.py +67 -0
  2286. windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry_exponential.py +83 -0
  2287. windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry_retry_if.py +59 -0
  2288. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +453 -0
  2289. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module.py +431 -0
  2290. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
  2291. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
  2292. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2293. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  2294. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2295. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  2296. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2297. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_flow_jobs_duration.py +73 -0
  2298. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_iterator.py +85 -0
  2299. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item.py +418 -0
  2300. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
  2301. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +48 -0
  2302. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2303. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
  2304. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2305. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
  2306. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2307. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_flow_jobs_duration.py +73 -0
  2308. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_iterator.py +85 -0
  2309. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module.py +425 -0
  2310. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +125 -0
  2311. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
  2312. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2313. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +70 -0
  2314. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2315. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +70 -0
  2316. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2317. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
  2318. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +87 -0
  2319. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_job_kind.py +25 -0
  2320. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow.py +302 -0
  2321. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module.py +428 -0
  2322. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_mock.py +67 -0
  2323. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry.py +125 -0
  2324. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +69 -0
  2325. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +85 -0
  2326. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +61 -0
  2327. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_skip_if.py +59 -0
  2328. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
  2329. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
  2330. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
  2331. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
  2332. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend.py +217 -0
  2333. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +81 -0
  2334. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
  2335. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
  2336. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
  2337. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +76 -0
  2338. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +74 -0
  2339. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_flow_env.py +44 -0
  2340. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item.py +428 -0
  2341. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_mock.py +67 -0
  2342. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry.py +125 -0
  2343. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +67 -0
  2344. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +85 -0
  2345. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
  2346. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_skip_if.py +59 -0
  2347. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
  2348. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
  2349. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
  2350. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
  2351. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend.py +219 -0
  2352. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +81 -0
  2353. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
  2354. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +82 -0
  2355. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +80 -0
  2356. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
  2357. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
  2358. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item.py +155 -0
  2359. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item_position.py +66 -0
  2360. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item_size.py +66 -0
  2361. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item_type.py +9 -0
  2362. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module.py +436 -0
  2363. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +67 -0
  2364. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +131 -0
  2365. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +69 -0
  2366. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +85 -0
  2367. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
  2368. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
  2369. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
  2370. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
  2371. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  2372. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +80 -0
  2373. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +220 -0
  2374. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
  2375. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  2376. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +80 -0
  2377. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +78 -0
  2378. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
  2379. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
  2380. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py +453 -0
  2381. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module.py +431 -0
  2382. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
  2383. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
  2384. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2385. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  2386. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2387. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  2388. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2389. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_flow_jobs_duration.py +73 -0
  2390. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_iterator.py +85 -0
  2391. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item.py +418 -0
  2392. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
  2393. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +48 -0
  2394. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2395. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
  2396. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2397. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
  2398. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2399. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_flow_jobs_duration.py +73 -0
  2400. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_iterator.py +85 -0
  2401. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module.py +425 -0
  2402. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +125 -0
  2403. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
  2404. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2405. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +70 -0
  2406. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2407. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +70 -0
  2408. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2409. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
  2410. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +87 -0
  2411. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_job_kind.py +25 -0
  2412. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow.py +302 -0
  2413. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module.py +428 -0
  2414. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_mock.py +67 -0
  2415. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry.py +125 -0
  2416. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +69 -0
  2417. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +85 -0
  2418. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +61 -0
  2419. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_skip_if.py +59 -0
  2420. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
  2421. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
  2422. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
  2423. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
  2424. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend.py +217 -0
  2425. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +81 -0
  2426. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
  2427. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
  2428. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
  2429. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +76 -0
  2430. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +74 -0
  2431. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_flow_env.py +44 -0
  2432. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item.py +428 -0
  2433. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_mock.py +67 -0
  2434. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry.py +125 -0
  2435. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +67 -0
  2436. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +85 -0
  2437. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
  2438. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_skip_if.py +59 -0
  2439. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
  2440. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
  2441. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
  2442. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
  2443. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend.py +219 -0
  2444. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +81 -0
  2445. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
  2446. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +82 -0
  2447. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +80 -0
  2448. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
  2449. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
  2450. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item.py +155 -0
  2451. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item_position.py +66 -0
  2452. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item_size.py +66 -0
  2453. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item_type.py +9 -0
  2454. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module.py +436 -0
  2455. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +67 -0
  2456. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +131 -0
  2457. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +69 -0
  2458. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +85 -0
  2459. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
  2460. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
  2461. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
  2462. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
  2463. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  2464. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +80 -0
  2465. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +220 -0
  2466. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
  2467. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  2468. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +80 -0
  2469. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +78 -0
  2470. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
  2471. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
  2472. windmill_api-1.603.0/windmill_api/models/list_extended_jobs_trigger_kind.py +19 -0
  2473. windmill_api-1.603.0/windmill_api/models/list_flow_conversations_response_200_item.py +107 -0
  2474. windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item.py +272 -0
  2475. windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_mode.py +10 -0
  2476. windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry.py +117 -0
  2477. windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry_constant.py +67 -0
  2478. windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry_exponential.py +83 -0
  2479. windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry_retry_if.py +59 -0
  2480. windmill_api-1.603.0/windmill_api/models/list_git_repo_files_response_200.py +98 -0
  2481. windmill_api-1.603.0/windmill_api/models/list_git_repo_files_response_200_windmill_large_files_item.py +58 -0
  2482. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item.py +286 -0
  2483. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_mode.py +10 -0
  2484. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_request_type.py +10 -0
  2485. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry.py +120 -0
  2486. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry_constant.py +67 -0
  2487. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry_exponential.py +83 -0
  2488. windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry_retry_if.py +59 -0
  2489. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0.py +437 -0
  2490. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module.py +411 -0
  2491. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +114 -0
  2492. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  2493. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2494. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  2495. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2496. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  2497. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2498. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
  2499. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_iterator.py +85 -0
  2500. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item.py +401 -0
  2501. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  2502. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  2503. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2504. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  2505. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2506. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  2507. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2508. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
  2509. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_iterator.py +85 -0
  2510. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module.py +407 -0
  2511. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +119 -0
  2512. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  2513. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2514. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  2515. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2516. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  2517. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2518. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  2519. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_iterator.py +85 -0
  2520. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_job_kind.py +25 -0
  2521. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow.py +297 -0
  2522. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module.py +413 -0
  2523. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_mock.py +67 -0
  2524. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry.py +123 -0
  2525. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_constant.py +67 -0
  2526. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
  2527. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
  2528. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_skip_if.py +59 -0
  2529. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
  2530. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
  2531. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  2532. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
  2533. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend.py +216 -0
  2534. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form.py +77 -0
  2535. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  2536. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  2537. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  2538. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
  2539. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
  2540. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_flow_env.py +44 -0
  2541. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item.py +413 -0
  2542. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_mock.py +67 -0
  2543. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry.py +123 -0
  2544. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_constant.py +67 -0
  2545. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
  2546. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
  2547. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_skip_if.py +59 -0
  2548. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
  2549. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
  2550. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  2551. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
  2552. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend.py +216 -0
  2553. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form.py +77 -0
  2554. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  2555. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  2556. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  2557. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
  2558. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
  2559. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item.py +154 -0
  2560. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item_position.py +66 -0
  2561. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item_size.py +66 -0
  2562. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item_type.py +9 -0
  2563. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module.py +422 -0
  2564. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_mock.py +67 -0
  2565. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry.py +123 -0
  2566. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
  2567. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  2568. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  2569. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
  2570. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  2571. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  2572. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  2573. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  2574. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend.py +219 -0
  2575. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  2576. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  2577. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  2578. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  2579. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  2580. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  2581. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1.py +437 -0
  2582. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module.py +411 -0
  2583. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +114 -0
  2584. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  2585. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2586. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
  2587. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2588. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
  2589. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2590. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
  2591. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_iterator.py +85 -0
  2592. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item.py +401 -0
  2593. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  2594. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  2595. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2596. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  2597. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2598. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  2599. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2600. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
  2601. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_iterator.py +85 -0
  2602. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module.py +407 -0
  2603. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +119 -0
  2604. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  2605. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2606. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
  2607. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2608. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
  2609. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2610. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  2611. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_iterator.py +85 -0
  2612. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_job_kind.py +25 -0
  2613. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow.py +297 -0
  2614. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module.py +413 -0
  2615. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_mock.py +67 -0
  2616. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry.py +123 -0
  2617. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_constant.py +67 -0
  2618. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
  2619. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
  2620. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_skip_if.py +59 -0
  2621. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
  2622. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
  2623. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  2624. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
  2625. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend.py +216 -0
  2626. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form.py +77 -0
  2627. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  2628. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  2629. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  2630. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
  2631. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
  2632. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_flow_env.py +44 -0
  2633. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item.py +413 -0
  2634. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_mock.py +67 -0
  2635. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry.py +123 -0
  2636. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_constant.py +67 -0
  2637. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
  2638. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
  2639. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_skip_if.py +59 -0
  2640. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
  2641. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
  2642. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  2643. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
  2644. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend.py +216 -0
  2645. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form.py +77 -0
  2646. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  2647. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
  2648. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
  2649. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
  2650. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
  2651. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item.py +154 -0
  2652. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item_position.py +66 -0
  2653. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item_size.py +66 -0
  2654. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item_type.py +9 -0
  2655. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module.py +422 -0
  2656. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_mock.py +67 -0
  2657. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry.py +123 -0
  2658. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
  2659. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  2660. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  2661. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
  2662. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  2663. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  2664. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
  2665. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  2666. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend.py +219 -0
  2667. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  2668. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
  2669. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  2670. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  2671. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  2672. windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  2673. windmill_api-1.603.0/windmill_api/models/list_jobs_trigger_kind.py +19 -0
  2674. windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item.py +232 -0
  2675. windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_mode.py +10 -0
  2676. windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry.py +123 -0
  2677. windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry_constant.py +67 -0
  2678. windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry_exponential.py +83 -0
  2679. windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry_retry_if.py +59 -0
  2680. windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item.py +301 -0
  2681. windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_mode.py +10 -0
  2682. windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry.py +120 -0
  2683. windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry_constant.py +67 -0
  2684. windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry_exponential.py +83 -0
  2685. windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry_retry_if.py +59 -0
  2686. windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item.py +246 -0
  2687. windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_mode.py +10 -0
  2688. windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry.py +120 -0
  2689. windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry_constant.py +67 -0
  2690. windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry_exponential.py +83 -0
  2691. windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry_retry_if.py +59 -0
  2692. windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item.py +233 -0
  2693. windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_mode.py +10 -0
  2694. windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry.py +123 -0
  2695. windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry_constant.py +67 -0
  2696. windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry_exponential.py +83 -0
  2697. windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry_retry_if.py +59 -0
  2698. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item.py +419 -0
  2699. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module.py +408 -0
  2700. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
  2701. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
  2702. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  2703. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  2704. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  2705. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  2706. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  2707. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_flow_jobs_duration.py +71 -0
  2708. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_iterator.py +85 -0
  2709. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item.py +399 -0
  2710. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
  2711. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
  2712. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  2713. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  2714. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  2715. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  2716. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  2717. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_flow_jobs_duration.py +71 -0
  2718. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_iterator.py +85 -0
  2719. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module.py +402 -0
  2720. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +114 -0
  2721. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
  2722. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  2723. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  2724. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  2725. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  2726. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  2727. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  2728. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_iterator.py +85 -0
  2729. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_job_kind.py +25 -0
  2730. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow.py +288 -0
  2731. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module.py +411 -0
  2732. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_mock.py +67 -0
  2733. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry.py +123 -0
  2734. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_constant.py +67 -0
  2735. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_exponential.py +83 -0
  2736. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_retry_if.py +59 -0
  2737. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_skip_if.py +59 -0
  2738. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_0.py +74 -0
  2739. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_1.py +72 -0
  2740. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  2741. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_if.py +78 -0
  2742. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend.py +216 -0
  2743. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form.py +77 -0
  2744. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  2745. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
  2746. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
  2747. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_0.py +74 -0
  2748. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_1.py +72 -0
  2749. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_flow_env.py +44 -0
  2750. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item.py +411 -0
  2751. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_mock.py +67 -0
  2752. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry.py +123 -0
  2753. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_constant.py +67 -0
  2754. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_exponential.py +83 -0
  2755. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_retry_if.py +59 -0
  2756. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_skip_if.py +59 -0
  2757. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_0.py +74 -0
  2758. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_1.py +72 -0
  2759. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  2760. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_if.py +78 -0
  2761. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend.py +216 -0
  2762. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form.py +77 -0
  2763. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  2764. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  2765. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  2766. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_0.py +74 -0
  2767. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_1.py +72 -0
  2768. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item.py +152 -0
  2769. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item_position.py +66 -0
  2770. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item_size.py +66 -0
  2771. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item_type.py +9 -0
  2772. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module.py +417 -0
  2773. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_mock.py +67 -0
  2774. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry.py +123 -0
  2775. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_constant.py +67 -0
  2776. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  2777. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  2778. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_skip_if.py +59 -0
  2779. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  2780. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  2781. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  2782. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  2783. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend.py +217 -0
  2784. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  2785. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  2786. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  2787. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  2788. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  2789. windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  2790. windmill_api-1.603.0/windmill_api/models/list_queue_trigger_kind.py +19 -0
  2791. windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item.py +367 -0
  2792. windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry.py +111 -0
  2793. windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry_constant.py +67 -0
  2794. windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry_exponential.py +83 -0
  2795. windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry_retry_if.py +59 -0
  2796. windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item.py +403 -0
  2797. windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry.py +123 -0
  2798. windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_constant.py +67 -0
  2799. windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_exponential.py +83 -0
  2800. windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_retry_if.py +59 -0
  2801. windmill_api-1.603.0/windmill_api/models/list_scripts_response_200_item.py +415 -0
  2802. windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item.py +244 -0
  2803. windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_mode.py +10 -0
  2804. windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry.py +117 -0
  2805. windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry_constant.py +67 -0
  2806. windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry_exponential.py +83 -0
  2807. windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry_retry_if.py +59 -0
  2808. windmill_api-1.603.0/windmill_api/models/list_user_workspaces_response_200_workspaces_item.py +134 -0
  2809. windmill_api-1.603.0/windmill_api/models/list_users_as_super_admin_response_200_item.py +132 -0
  2810. windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item.py +356 -0
  2811. windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_mode.py +10 -0
  2812. windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry.py +123 -0
  2813. windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry_constant.py +67 -0
  2814. windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry_exponential.py +83 -0
  2815. windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry_retry_if.py +59 -0
  2816. windmill_api-1.603.0/windmill_api/models/list_workers_response_200_item.py +212 -0
  2817. windmill_api-1.603.0/windmill_api/models/list_workspace_dependencies_response_200_item.py +118 -0
  2818. windmill_api-1.603.0/windmill_api/models/list_workspace_dependencies_response_200_item_language.py +29 -0
  2819. windmill_api-1.603.0/windmill_api/models/load_git_repo_file_metadata_response_200.py +108 -0
  2820. windmill_api-1.603.0/windmill_api/models/load_git_repo_file_preview_response_200.py +78 -0
  2821. windmill_api-1.603.0/windmill_api/models/load_git_repo_file_preview_response_200_content_type.py +11 -0
  2822. windmill_api-1.603.0/windmill_api/models/logged_wizard_status.py +10 -0
  2823. windmill_api-1.603.0/windmill_api/models/mcp_tool_value.py +91 -0
  2824. windmill_api-1.603.0/windmill_api/models/mcp_tool_value_tool_type.py +8 -0
  2825. windmill_api-1.603.0/windmill_api/models/mqtt_trigger.py +290 -0
  2826. windmill_api-1.603.0/windmill_api/models/mqtt_trigger_mode.py +10 -0
  2827. windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry.py +109 -0
  2828. windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry_constant.py +67 -0
  2829. windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry_exponential.py +83 -0
  2830. windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry_retry_if.py +59 -0
  2831. windmill_api-1.603.0/windmill_api/models/nats_trigger.py +241 -0
  2832. windmill_api-1.603.0/windmill_api/models/nats_trigger_mode.py +10 -0
  2833. windmill_api-1.603.0/windmill_api/models/nats_trigger_retry.py +109 -0
  2834. windmill_api-1.603.0/windmill_api/models/nats_trigger_retry_constant.py +67 -0
  2835. windmill_api-1.603.0/windmill_api/models/nats_trigger_retry_exponential.py +83 -0
  2836. windmill_api-1.603.0/windmill_api/models/nats_trigger_retry_retry_if.py +59 -0
  2837. windmill_api-1.603.0/windmill_api/models/new_email_trigger.py +153 -0
  2838. windmill_api-1.603.0/windmill_api/models/new_email_trigger_mode.py +10 -0
  2839. windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry.py +109 -0
  2840. windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry_constant.py +67 -0
  2841. windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry_exponential.py +83 -0
  2842. windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry_retry_if.py +59 -0
  2843. windmill_api-1.603.0/windmill_api/models/new_http_trigger.py +261 -0
  2844. windmill_api-1.603.0/windmill_api/models/new_http_trigger_mode.py +10 -0
  2845. windmill_api-1.603.0/windmill_api/models/new_http_trigger_request_type.py +10 -0
  2846. windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry.py +109 -0
  2847. windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry_constant.py +67 -0
  2848. windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry_exponential.py +83 -0
  2849. windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry_retry_if.py +59 -0
  2850. windmill_api-1.603.0/windmill_api/models/new_kafka_trigger.py +160 -0
  2851. windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_mode.py +10 -0
  2852. windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry.py +109 -0
  2853. windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry_constant.py +67 -0
  2854. windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry_exponential.py +83 -0
  2855. windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry_retry_if.py +59 -0
  2856. windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger.py +225 -0
  2857. windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_mode.py +10 -0
  2858. windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry.py +109 -0
  2859. windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry_constant.py +67 -0
  2860. windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry_exponential.py +83 -0
  2861. windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry_retry_if.py +59 -0
  2862. windmill_api-1.603.0/windmill_api/models/new_nats_trigger.py +176 -0
  2863. windmill_api-1.603.0/windmill_api/models/new_nats_trigger_mode.py +10 -0
  2864. windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry.py +109 -0
  2865. windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry_constant.py +67 -0
  2866. windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry_exponential.py +83 -0
  2867. windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry_retry_if.py +59 -0
  2868. windmill_api-1.603.0/windmill_api/models/new_postgres_trigger.py +180 -0
  2869. windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_mode.py +10 -0
  2870. windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry.py +109 -0
  2871. windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry_constant.py +67 -0
  2872. windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry_exponential.py +83 -0
  2873. windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry_retry_if.py +59 -0
  2874. windmill_api-1.603.0/windmill_api/models/new_schedule.py +306 -0
  2875. windmill_api-1.603.0/windmill_api/models/new_schedule_retry.py +109 -0
  2876. windmill_api-1.603.0/windmill_api/models/new_schedule_retry_constant.py +67 -0
  2877. windmill_api-1.603.0/windmill_api/models/new_schedule_retry_exponential.py +83 -0
  2878. windmill_api-1.603.0/windmill_api/models/new_schedule_retry_retry_if.py +59 -0
  2879. windmill_api-1.603.0/windmill_api/models/new_script.py +380 -0
  2880. windmill_api-1.603.0/windmill_api/models/new_script_assets_item_kind.py +11 -0
  2881. windmill_api-1.603.0/windmill_api/models/new_script_with_draft.py +405 -0
  2882. windmill_api-1.603.0/windmill_api/models/new_script_with_draft_assets_item_kind.py +11 -0
  2883. windmill_api-1.603.0/windmill_api/models/new_script_with_draft_draft.py +380 -0
  2884. windmill_api-1.603.0/windmill_api/models/new_script_with_draft_draft_assets_item_kind.py +11 -0
  2885. windmill_api-1.603.0/windmill_api/models/new_sqs_trigger.py +172 -0
  2886. windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_mode.py +10 -0
  2887. windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry.py +109 -0
  2888. windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry_constant.py +67 -0
  2889. windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry_exponential.py +83 -0
  2890. windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry_retry_if.py +59 -0
  2891. windmill_api-1.603.0/windmill_api/models/new_websocket_trigger.py +257 -0
  2892. windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_mode.py +10 -0
  2893. windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry.py +109 -0
  2894. windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry_constant.py +67 -0
  2895. windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry_exponential.py +83 -0
  2896. windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry_retry_if.py +59 -0
  2897. windmill_api-1.603.0/windmill_api/models/new_workspace_dependencies.py +92 -0
  2898. windmill_api-1.603.0/windmill_api/models/new_workspace_dependencies_language.py +29 -0
  2899. windmill_api-1.603.0/windmill_api/models/open_flow.py +102 -0
  2900. windmill_api-1.603.0/windmill_api/models/open_flow_schema.py +47 -0
  2901. windmill_api-1.603.0/windmill_api/models/open_flow_value.py +278 -0
  2902. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module.py +351 -0
  2903. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_mock.py +67 -0
  2904. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry.py +109 -0
  2905. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry_constant.py +67 -0
  2906. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry_exponential.py +83 -0
  2907. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry_retry_if.py +59 -0
  2908. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_skip_if.py +59 -0
  2909. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_sleep_type_0.py +72 -0
  2910. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_sleep_type_1.py +70 -0
  2911. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_stop_after_all_iters_if.py +78 -0
  2912. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_stop_after_if.py +78 -0
  2913. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend.py +204 -0
  2914. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_resume_form.py +76 -0
  2915. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_resume_form_schema.py +44 -0
  2916. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  2917. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  2918. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_timeout_type_0.py +72 -0
  2919. windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_timeout_type_1.py +70 -0
  2920. windmill_api-1.603.0/windmill_api/models/open_flow_value_flow_env.py +44 -0
  2921. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item.py +351 -0
  2922. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_mock.py +67 -0
  2923. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry.py +109 -0
  2924. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry_constant.py +67 -0
  2925. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry_exponential.py +83 -0
  2926. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry_retry_if.py +59 -0
  2927. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_skip_if.py +59 -0
  2928. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_sleep_type_0.py +72 -0
  2929. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_sleep_type_1.py +70 -0
  2930. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_stop_after_all_iters_if.py +78 -0
  2931. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_stop_after_if.py +78 -0
  2932. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend.py +202 -0
  2933. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_resume_form.py +76 -0
  2934. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_resume_form_schema.py +44 -0
  2935. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  2936. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  2937. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_timeout_type_0.py +72 -0
  2938. windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_timeout_type_1.py +70 -0
  2939. windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item.py +143 -0
  2940. windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item_position.py +66 -0
  2941. windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item_size.py +66 -0
  2942. windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item_type.py +9 -0
  2943. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module.py +366 -0
  2944. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_mock.py +67 -0
  2945. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry.py +118 -0
  2946. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry_constant.py +67 -0
  2947. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry_exponential.py +83 -0
  2948. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry_retry_if.py +59 -0
  2949. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_skip_if.py +59 -0
  2950. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_0.py +72 -0
  2951. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_1.py +70 -0
  2952. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  2953. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_stop_after_if.py +78 -0
  2954. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend.py +208 -0
  2955. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form.py +76 -0
  2956. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
  2957. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  2958. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  2959. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_0.py +74 -0
  2960. windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_1.py +72 -0
  2961. windmill_api-1.603.0/windmill_api/models/open_flow_w_path.py +165 -0
  2962. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_schema.py +47 -0
  2963. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value.py +278 -0
  2964. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module.py +376 -0
  2965. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_mock.py +67 -0
  2966. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry.py +122 -0
  2967. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry_constant.py +67 -0
  2968. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry_exponential.py +83 -0
  2969. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry_retry_if.py +59 -0
  2970. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_skip_if.py +59 -0
  2971. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_0.py +74 -0
  2972. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_1.py +72 -0
  2973. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_all_iters_if.py +78 -0
  2974. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_if.py +78 -0
  2975. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend.py +208 -0
  2976. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form.py +76 -0
  2977. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form_schema.py +44 -0
  2978. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  2979. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  2980. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_0.py +74 -0
  2981. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_1.py +72 -0
  2982. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_flow_env.py +44 -0
  2983. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item.py +361 -0
  2984. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_mock.py +67 -0
  2985. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry.py +117 -0
  2986. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry_constant.py +67 -0
  2987. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry_exponential.py +83 -0
  2988. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry_retry_if.py +59 -0
  2989. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_skip_if.py +59 -0
  2990. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_0.py +72 -0
  2991. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_1.py +70 -0
  2992. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_all_iters_if.py +78 -0
  2993. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_if.py +78 -0
  2994. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend.py +206 -0
  2995. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form.py +76 -0
  2996. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form_schema.py +44 -0
  2997. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  2998. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  2999. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_0.py +74 -0
  3000. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_1.py +72 -0
  3001. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item.py +143 -0
  3002. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item_position.py +66 -0
  3003. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item_size.py +66 -0
  3004. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item_type.py +9 -0
  3005. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module.py +393 -0
  3006. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_mock.py +67 -0
  3007. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry.py +123 -0
  3008. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_constant.py +67 -0
  3009. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_exponential.py +83 -0
  3010. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_retry_if.py +59 -0
  3011. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_skip_if.py +59 -0
  3012. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_0.py +74 -0
  3013. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_1.py +72 -0
  3014. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  3015. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_if.py +78 -0
  3016. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend.py +214 -0
  3017. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form.py +77 -0
  3018. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
  3019. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  3020. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  3021. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_0.py +74 -0
  3022. windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_1.py +72 -0
  3023. windmill_api-1.603.0/windmill_api/models/password_reset_response.py +58 -0
  3024. windmill_api-1.603.0/windmill_api/models/path_flow.py +83 -0
  3025. windmill_api-1.603.0/windmill_api/models/path_flow_input_transforms.py +109 -0
  3026. windmill_api-1.603.0/windmill_api/models/path_flow_input_transforms_additional_property_type_0.py +74 -0
  3027. windmill_api-1.603.0/windmill_api/models/path_flow_input_transforms_additional_property_type_1.py +72 -0
  3028. windmill_api-1.603.0/windmill_api/models/path_script.py +110 -0
  3029. windmill_api-1.603.0/windmill_api/models/path_script_input_transforms.py +107 -0
  3030. windmill_api-1.603.0/windmill_api/models/path_script_input_transforms_additional_property_type_0.py +74 -0
  3031. windmill_api-1.603.0/windmill_api/models/path_script_input_transforms_additional_property_type_1.py +72 -0
  3032. windmill_api-1.603.0/windmill_api/models/pick_hub_script_by_path_response_200.py +58 -0
  3033. windmill_api-1.603.0/windmill_api/models/postgres_trigger.py +224 -0
  3034. windmill_api-1.603.0/windmill_api/models/postgres_trigger_mode.py +10 -0
  3035. windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry.py +109 -0
  3036. windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry_constant.py +67 -0
  3037. windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry_exponential.py +83 -0
  3038. windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry_retry_if.py +59 -0
  3039. windmill_api-1.603.0/windmill_api/models/preview_inline.py +81 -0
  3040. windmill_api-1.603.0/windmill_api/models/preview_inline_args.py +44 -0
  3041. windmill_api-1.603.0/windmill_api/models/preview_inline_language.py +29 -0
  3042. windmill_api-1.603.0/windmill_api/models/query_documentation_json_body.py +58 -0
  3043. windmill_api-1.603.0/windmill_api/models/query_documentation_response_200.py +44 -0
  3044. windmill_api-1.603.0/windmill_api/models/queued_job.py +415 -0
  3045. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module.py +382 -0
  3046. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1.py +110 -0
  3047. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
  3048. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
  3049. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
  3050. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
  3051. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
  3052. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
  3053. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_flow_jobs_duration.py +71 -0
  3054. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_iterator.py +85 -0
  3055. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item.py +368 -0
  3056. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
  3057. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
  3058. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
  3059. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
  3060. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
  3061. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
  3062. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
  3063. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_flow_jobs_duration.py +71 -0
  3064. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_iterator.py +85 -0
  3065. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module.py +387 -0
  3066. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +110 -0
  3067. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
  3068. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
  3069. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
  3070. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
  3071. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
  3072. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
  3073. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
  3074. windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_iterator.py +85 -0
  3075. windmill_api-1.603.0/windmill_api/models/queued_job_job_kind.py +25 -0
  3076. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow.py +278 -0
  3077. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module.py +355 -0
  3078. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_mock.py +67 -0
  3079. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry.py +115 -0
  3080. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry_constant.py +67 -0
  3081. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry_exponential.py +83 -0
  3082. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry_retry_if.py +59 -0
  3083. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_skip_if.py +59 -0
  3084. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_0.py +72 -0
  3085. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_1.py +70 -0
  3086. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
  3087. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_if.py +78 -0
  3088. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend.py +206 -0
  3089. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form.py +76 -0
  3090. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
  3091. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
  3092. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
  3093. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_0.py +74 -0
  3094. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_1.py +72 -0
  3095. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_flow_env.py +44 -0
  3096. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item.py +351 -0
  3097. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_mock.py +67 -0
  3098. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry.py +111 -0
  3099. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry_constant.py +67 -0
  3100. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry_exponential.py +83 -0
  3101. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry_retry_if.py +59 -0
  3102. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_skip_if.py +59 -0
  3103. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_0.py +72 -0
  3104. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_1.py +70 -0
  3105. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
  3106. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_if.py +78 -0
  3107. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend.py +206 -0
  3108. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form.py +76 -0
  3109. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
  3110. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  3111. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  3112. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_0.py +72 -0
  3113. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_1.py +70 -0
  3114. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item.py +143 -0
  3115. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item_position.py +66 -0
  3116. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item_size.py +66 -0
  3117. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item_type.py +9 -0
  3118. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module.py +386 -0
  3119. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_mock.py +67 -0
  3120. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry.py +123 -0
  3121. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_constant.py +67 -0
  3122. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_exponential.py +83 -0
  3123. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
  3124. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_skip_if.py +59 -0
  3125. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
  3126. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
  3127. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
  3128. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_if.py +78 -0
  3129. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend.py +212 -0
  3130. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
  3131. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
  3132. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
  3133. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
  3134. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
  3135. windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
  3136. windmill_api-1.603.0/windmill_api/models/raw_script.py +173 -0
  3137. windmill_api-1.603.0/windmill_api/models/raw_script_assets_item.py +102 -0
  3138. windmill_api-1.603.0/windmill_api/models/raw_script_assets_item_kind.py +11 -0
  3139. windmill_api-1.603.0/windmill_api/models/raw_script_input_transforms.py +106 -0
  3140. windmill_api-1.603.0/windmill_api/models/raw_script_input_transforms_additional_property_type_0.py +74 -0
  3141. windmill_api-1.603.0/windmill_api/models/raw_script_input_transforms_additional_property_type_1.py +72 -0
  3142. windmill_api-1.603.0/windmill_api/models/refresh_custom_instance_user_pwd_response_200.py +44 -0
  3143. windmill_api-1.603.0/windmill_api/models/request_password_reset_json_body.py +58 -0
  3144. windmill_api-1.603.0/windmill_api/models/request_password_reset_response_200.py +58 -0
  3145. windmill_api-1.603.0/windmill_api/models/reset_password_json_body.py +65 -0
  3146. windmill_api-1.603.0/windmill_api/models/reset_password_response_200.py +58 -0
  3147. windmill_api-1.603.0/windmill_api/models/restart_flow_at_step_json_body.py +78 -0
  3148. windmill_api-1.603.0/windmill_api/models/restarted_from.py +82 -0
  3149. windmill_api-1.603.0/windmill_api/models/resume_suspended_trigger_jobs_json_body.py +61 -0
  3150. windmill_api-1.603.0/windmill_api/models/resume_suspended_trigger_jobs_trigger_kind.py +19 -0
  3151. windmill_api-1.603.0/windmill_api/models/retry.py +108 -0
  3152. windmill_api-1.603.0/windmill_api/models/retry_constant.py +67 -0
  3153. windmill_api-1.603.0/windmill_api/models/retry_exponential.py +83 -0
  3154. windmill_api-1.603.0/windmill_api/models/retry_if.py +59 -0
  3155. windmill_api-1.603.0/windmill_api/models/retry_retry_if.py +59 -0
  3156. windmill_api-1.603.0/windmill_api/models/run_and_stream_flow_by_path_json_body.py +44 -0
  3157. windmill_api-1.603.0/windmill_api/models/run_and_stream_flow_by_version_json_body.py +44 -0
  3158. windmill_api-1.603.0/windmill_api/models/run_and_stream_script_by_hash_json_body.py +44 -0
  3159. windmill_api-1.603.0/windmill_api/models/run_and_stream_script_by_path_json_body.py +44 -0
  3160. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body.py +118 -0
  3161. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_args.py +44 -0
  3162. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_0.py +80 -0
  3163. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_0_runnable_kind.py +9 -0
  3164. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_0_source.py +8 -0
  3165. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_1.py +89 -0
  3166. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_1_language.py +29 -0
  3167. windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_1_source.py +8 -0
  3168. windmill_api-1.603.0/windmill_api/models/run_flow_by_version_json_body.py +44 -0
  3169. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body.py +115 -0
  3170. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_restarted_from.py +82 -0
  3171. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value.py +302 -0
  3172. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module.py +422 -0
  3173. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_mock.py +67 -0
  3174. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry.py +123 -0
  3175. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_constant.py +67 -0
  3176. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_exponential.py +83 -0
  3177. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_retry_if.py +59 -0
  3178. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_skip_if.py +59 -0
  3179. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_0.py +74 -0
  3180. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_1.py +72 -0
  3181. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_all_iters_if.py +80 -0
  3182. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_if.py +78 -0
  3183. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend.py +219 -0
  3184. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form.py +77 -0
  3185. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form_schema.py +46 -0
  3186. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_0.py +76 -0
  3187. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_1.py +74 -0
  3188. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_0.py +74 -0
  3189. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_1.py +72 -0
  3190. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_flow_env.py +44 -0
  3191. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item.py +419 -0
  3192. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_mock.py +67 -0
  3193. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry.py +123 -0
  3194. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_constant.py +67 -0
  3195. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_exponential.py +83 -0
  3196. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_retry_if.py +59 -0
  3197. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_skip_if.py +59 -0
  3198. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_0.py +74 -0
  3199. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_1.py +72 -0
  3200. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_all_iters_if.py +78 -0
  3201. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_if.py +78 -0
  3202. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend.py +217 -0
  3203. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form.py +77 -0
  3204. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form_schema.py +46 -0
  3205. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_0.py +76 -0
  3206. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_1.py +74 -0
  3207. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_0.py +74 -0
  3208. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_1.py +72 -0
  3209. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item.py +154 -0
  3210. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item_position.py +66 -0
  3211. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item_size.py +66 -0
  3212. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item_type.py +9 -0
  3213. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module.py +428 -0
  3214. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_mock.py +67 -0
  3215. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry.py +125 -0
  3216. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_constant.py +67 -0
  3217. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_exponential.py +83 -0
  3218. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_retry_if.py +59 -0
  3219. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_skip_if.py +59 -0
  3220. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_0.py +74 -0
  3221. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_1.py +72 -0
  3222. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_all_iters_if.py +80 -0
  3223. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_if.py +78 -0
  3224. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend.py +219 -0
  3225. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form.py +81 -0
  3226. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form_schema.py +46 -0
  3227. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
  3228. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
  3229. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_0.py +74 -0
  3230. windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_1.py +72 -0
  3231. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body.py +111 -0
  3232. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_restarted_from.py +82 -0
  3233. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value.py +282 -0
  3234. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module.py +411 -0
  3235. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_mock.py +67 -0
  3236. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry.py +123 -0
  3237. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_constant.py +67 -0
  3238. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_exponential.py +83 -0
  3239. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_retry_if.py +59 -0
  3240. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_skip_if.py +59 -0
  3241. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_0.py +74 -0
  3242. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_1.py +72 -0
  3243. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_all_iters_if.py +78 -0
  3244. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_if.py +78 -0
  3245. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend.py +216 -0
  3246. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form.py +77 -0
  3247. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form_schema.py +44 -0
  3248. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
  3249. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
  3250. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_0.py +74 -0
  3251. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_1.py +72 -0
  3252. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_flow_env.py +44 -0
  3253. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item.py +405 -0
  3254. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_mock.py +67 -0
  3255. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry.py +123 -0
  3256. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_constant.py +67 -0
  3257. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_exponential.py +83 -0
  3258. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_retry_if.py +59 -0
  3259. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_skip_if.py +59 -0
  3260. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_0.py +74 -0
  3261. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_1.py +72 -0
  3262. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_all_iters_if.py +78 -0
  3263. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_if.py +78 -0
  3264. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend.py +216 -0
  3265. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form.py +77 -0
  3266. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form_schema.py +44 -0
  3267. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
  3268. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
  3269. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_0.py +74 -0
  3270. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_1.py +72 -0
  3271. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item.py +147 -0
  3272. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item_position.py +66 -0
  3273. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item_size.py +66 -0
  3274. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item_type.py +9 -0
  3275. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module.py +413 -0
  3276. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_mock.py +67 -0
  3277. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry.py +123 -0
  3278. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_constant.py +67 -0
  3279. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_exponential.py +83 -0
  3280. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_retry_if.py +59 -0
  3281. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_skip_if.py +59 -0
  3282. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_0.py +74 -0
  3283. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_1.py +72 -0
  3284. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
  3285. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_if.py +78 -0
  3286. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend.py +216 -0
  3287. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form.py +77 -0
  3288. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
  3289. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
  3290. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
  3291. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_0.py +74 -0
  3292. windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_1.py +72 -0
  3293. windmill_api-1.603.0/windmill_api/models/run_script_preview_inline_json_body.py +81 -0
  3294. windmill_api-1.603.0/windmill_api/models/run_script_preview_inline_json_body_args.py +44 -0
  3295. windmill_api-1.603.0/windmill_api/models/run_script_preview_inline_json_body_language.py +29 -0
  3296. windmill_api-1.603.0/windmill_api/models/run_wait_result_flow_by_version_json_body.py +44 -0
  3297. windmill_api-1.603.0/windmill_api/models/s3_permission_rule.py +65 -0
  3298. windmill_api-1.603.0/windmill_api/models/schedule.py +352 -0
  3299. windmill_api-1.603.0/windmill_api/models/schedule_retry.py +108 -0
  3300. windmill_api-1.603.0/windmill_api/models/schedule_retry_constant.py +67 -0
  3301. windmill_api-1.603.0/windmill_api/models/schedule_retry_exponential.py +83 -0
  3302. windmill_api-1.603.0/windmill_api/models/schedule_retry_retry_if.py +59 -0
  3303. windmill_api-1.603.0/windmill_api/models/schedule_w_jobs.py +376 -0
  3304. windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry.py +109 -0
  3305. windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry_constant.py +67 -0
  3306. windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry_exponential.py +83 -0
  3307. windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry_retry_if.py +59 -0
  3308. windmill_api-1.603.0/windmill_api/models/script.py +415 -0
  3309. windmill_api-1.603.0/windmill_api/models/set_email_trigger_mode_json_body.py +60 -0
  3310. windmill_api-1.603.0/windmill_api/models/set_email_trigger_mode_json_body_mode.py +10 -0
  3311. windmill_api-1.603.0/windmill_api/models/set_gcp_trigger_mode_json_body.py +60 -0
  3312. windmill_api-1.603.0/windmill_api/models/set_gcp_trigger_mode_json_body_mode.py +10 -0
  3313. windmill_api-1.603.0/windmill_api/models/set_http_trigger_mode_json_body.py +60 -0
  3314. windmill_api-1.603.0/windmill_api/models/set_http_trigger_mode_json_body_mode.py +10 -0
  3315. windmill_api-1.603.0/windmill_api/models/set_kafka_trigger_mode_json_body.py +60 -0
  3316. windmill_api-1.603.0/windmill_api/models/set_kafka_trigger_mode_json_body_mode.py +10 -0
  3317. windmill_api-1.603.0/windmill_api/models/set_mqtt_trigger_mode_json_body.py +60 -0
  3318. windmill_api-1.603.0/windmill_api/models/set_mqtt_trigger_mode_json_body_mode.py +10 -0
  3319. windmill_api-1.603.0/windmill_api/models/set_nats_trigger_mode_json_body.py +60 -0
  3320. windmill_api-1.603.0/windmill_api/models/set_nats_trigger_mode_json_body_mode.py +10 -0
  3321. windmill_api-1.603.0/windmill_api/models/set_postgres_trigger_mode_json_body.py +60 -0
  3322. windmill_api-1.603.0/windmill_api/models/set_postgres_trigger_mode_json_body_mode.py +10 -0
  3323. windmill_api-1.603.0/windmill_api/models/set_sqs_trigger_mode_json_body.py +60 -0
  3324. windmill_api-1.603.0/windmill_api/models/set_sqs_trigger_mode_json_body_mode.py +10 -0
  3325. windmill_api-1.603.0/windmill_api/models/set_websocket_trigger_mode_json_body.py +60 -0
  3326. windmill_api-1.603.0/windmill_api/models/set_websocket_trigger_mode_json_body_mode.py +10 -0
  3327. windmill_api-1.603.0/windmill_api/models/set_workspace_slack_oauth_config_json_body.py +65 -0
  3328. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_json_body.py +66 -0
  3329. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_json_body_tag.py +9 -0
  3330. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200.py +98 -0
  3331. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs.py +161 -0
  3332. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_created_database.py +10 -0
  3333. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_database_credentials.py +10 -0
  3334. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_db_connect.py +10 -0
  3335. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_grant_permissions.py +10 -0
  3336. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_super_admin.py +10 -0
  3337. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_valid_dbname.py +10 -0
  3338. windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_tag.py +9 -0
  3339. windmill_api-1.603.0/windmill_api/models/sqs_trigger.py +237 -0
  3340. windmill_api-1.603.0/windmill_api/models/sqs_trigger_mode.py +10 -0
  3341. windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry.py +108 -0
  3342. windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry_constant.py +67 -0
  3343. windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry_exponential.py +83 -0
  3344. windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry_retry_if.py +59 -0
  3345. windmill_api-1.603.0/windmill_api/models/static_transform.py +72 -0
  3346. windmill_api-1.603.0/windmill_api/models/stop_after_if.py +78 -0
  3347. windmill_api-1.603.0/windmill_api/models/submit_onboarding_data_json_body.py +66 -0
  3348. windmill_api-1.603.0/windmill_api/models/tool_value_type_0.py +61 -0
  3349. windmill_api-1.603.0/windmill_api/models/tool_value_type_0_tool_type.py +8 -0
  3350. windmill_api-1.603.0/windmill_api/models/tool_value_type_1.py +91 -0
  3351. windmill_api-1.603.0/windmill_api/models/tool_value_type_1_tool_type.py +8 -0
  3352. windmill_api-1.603.0/windmill_api/models/tool_value_type_2.py +61 -0
  3353. windmill_api-1.603.0/windmill_api/models/tool_value_type_2_tool_type.py +8 -0
  3354. windmill_api-1.603.0/windmill_api/models/trigger_extra_property.py +126 -0
  3355. windmill_api-1.603.0/windmill_api/models/trigger_extra_property_mode.py +10 -0
  3356. windmill_api-1.603.0/windmill_api/models/trigger_mode.py +10 -0
  3357. windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body.py +140 -0
  3358. windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry.py +109 -0
  3359. windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry_constant.py +67 -0
  3360. windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry_exponential.py +83 -0
  3361. windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry_retry_if.py +59 -0
  3362. windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body.py +231 -0
  3363. windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_mode.py +10 -0
  3364. windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry.py +109 -0
  3365. windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry_constant.py +67 -0
  3366. windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry_exponential.py +83 -0
  3367. windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry_retry_if.py +59 -0
  3368. windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body.py +248 -0
  3369. windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_request_type.py +10 -0
  3370. windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry.py +109 -0
  3371. windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry_constant.py +67 -0
  3372. windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry_exponential.py +83 -0
  3373. windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry_retry_if.py +59 -0
  3374. windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body.py +146 -0
  3375. windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry.py +109 -0
  3376. windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry_constant.py +67 -0
  3377. windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry_exponential.py +83 -0
  3378. windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry_retry_if.py +59 -0
  3379. windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body.py +230 -0
  3380. windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_mode.py +10 -0
  3381. windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry.py +109 -0
  3382. windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry_constant.py +67 -0
  3383. windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry_exponential.py +83 -0
  3384. windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry_retry_if.py +59 -0
  3385. windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body.py +160 -0
  3386. windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry.py +109 -0
  3387. windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry_constant.py +67 -0
  3388. windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry_exponential.py +83 -0
  3389. windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry_retry_if.py +59 -0
  3390. windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body.py +182 -0
  3391. windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_mode.py +10 -0
  3392. windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry.py +113 -0
  3393. windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry_constant.py +67 -0
  3394. windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry_exponential.py +83 -0
  3395. windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry_retry_if.py +59 -0
  3396. windmill_api-1.603.0/windmill_api/models/update_schedule_json_body.py +279 -0
  3397. windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry.py +109 -0
  3398. windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry_constant.py +67 -0
  3399. windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry_exponential.py +83 -0
  3400. windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry_retry_if.py +59 -0
  3401. windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body.py +173 -0
  3402. windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_mode.py +10 -0
  3403. windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry.py +109 -0
  3404. windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry_constant.py +67 -0
  3405. windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry_exponential.py +83 -0
  3406. windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry_retry_if.py +59 -0
  3407. windmill_api-1.603.0/windmill_api/models/update_tutorial_progress_json_body.py +66 -0
  3408. windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body.py +263 -0
  3409. windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry.py +117 -0
  3410. windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry_constant.py +67 -0
  3411. windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry_exponential.py +83 -0
  3412. windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry_retry_if.py +59 -0
  3413. windmill_api-1.603.0/windmill_api/models/user_workspace_list_workspaces_item.py +132 -0
  3414. windmill_api-1.603.0/windmill_api/models/websearch_tool_value.py +61 -0
  3415. windmill_api-1.603.0/windmill_api/models/websearch_tool_value_tool_type.py +8 -0
  3416. windmill_api-1.603.0/windmill_api/models/websocket_trigger.py +314 -0
  3417. windmill_api-1.603.0/windmill_api/models/websocket_trigger_mode.py +10 -0
  3418. windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry.py +109 -0
  3419. windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry_constant.py +67 -0
  3420. windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry_exponential.py +83 -0
  3421. windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry_retry_if.py +59 -0
  3422. windmill_api-1.603.0/windmill_api/models/whileloop_flow.py +169 -0
  3423. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item.py +349 -0
  3424. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_mock.py +67 -0
  3425. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry.py +109 -0
  3426. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry_constant.py +67 -0
  3427. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry_exponential.py +83 -0
  3428. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry_retry_if.py +59 -0
  3429. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_skip_if.py +59 -0
  3430. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_sleep_type_0.py +72 -0
  3431. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_sleep_type_1.py +70 -0
  3432. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_stop_after_all_iters_if.py +78 -0
  3433. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_stop_after_if.py +78 -0
  3434. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend.py +202 -0
  3435. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form.py +76 -0
  3436. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form_schema.py +44 -0
  3437. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
  3438. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
  3439. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_timeout_type_0.py +72 -0
  3440. windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_timeout_type_1.py +70 -0
  3441. windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_0.py +72 -0
  3442. windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_0_type.py +8 -0
  3443. windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_1.py +70 -0
  3444. windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_1_type.py +8 -0
  3445. windmill_api-1.603.0/windmill_api/models/worker_ping.py +212 -0
  3446. windmill_api-1.603.0/windmill_api/models/workspace_comparison.py +105 -0
  3447. windmill_api-1.603.0/windmill_api/models/workspace_comparison_diffs_item.py +103 -0
  3448. windmill_api-1.603.0/windmill_api/models/workspace_comparison_diffs_item_kind.py +12 -0
  3449. windmill_api-1.603.0/windmill_api/models/workspace_comparison_summary.py +115 -0
  3450. windmill_api-1.603.0/windmill_api/models/workspace_dependencies.py +116 -0
  3451. windmill_api-1.603.0/windmill_api/models/workspace_dependencies_language.py +29 -0
  3452. windmill_api-1.603.0/windmill_api/models/workspace_item_diff.py +103 -0
  3453. windmill_api-1.603.0/windmill_api/models/workspace_item_diff_kind.py +12 -0
  3454. windmill_api-1.542.3/PKG-INFO +0 -134
  3455. windmill_api-1.542.3/pyproject.toml +0 -40
  3456. windmill_api-1.542.3/windmill_api/api/concurrency_groups/list_extended_jobs.py +0 -615
  3457. windmill_api-1.542.3/windmill_api/api/config/list_autoscaling_events.py +0 -157
  3458. windmill_api-1.542.3/windmill_api/api/flow/get_flow_version.py +0 -180
  3459. windmill_api-1.542.3/windmill_api/api/flow/list_flows.py +0 -312
  3460. windmill_api-1.542.3/windmill_api/api/flow/update_flow_history.py +0 -121
  3461. windmill_api-1.542.3/windmill_api/api/gcp_trigger/set_gcp_trigger_enabled.py +0 -113
  3462. windmill_api-1.542.3/windmill_api/api/git_sync/get_global_connected_repositories.py +0 -131
  3463. windmill_api-1.542.3/windmill_api/api/job/cancel_selection.py +0 -164
  3464. windmill_api-1.542.3/windmill_api/api/job/list_filtered_jobs_uuids.py +0 -633
  3465. windmill_api-1.542.3/windmill_api/api/job/list_jobs.py +0 -677
  3466. windmill_api-1.542.3/windmill_api/api/job/list_queue.py +0 -516
  3467. windmill_api-1.542.3/windmill_api/api/job/openai_sync_flow_by_path.py +0 -146
  3468. windmill_api-1.542.3/windmill_api/api/job/openai_sync_script_by_path.py +0 -155
  3469. windmill_api-1.542.3/windmill_api/api/job/restart_flow_at_step.py +0 -201
  3470. windmill_api-1.542.3/windmill_api/api/job/run_flow_by_path.py +0 -194
  3471. windmill_api-1.542.3/windmill_api/api/job/run_flow_preview.py +0 -136
  3472. windmill_api-1.542.3/windmill_api/api/job/run_flow_preview_and_wait_result.py +0 -107
  3473. windmill_api-1.542.3/windmill_api/api/job/run_wait_result_flow_by_path.py +0 -146
  3474. windmill_api-1.542.3/windmill_api/api/job/run_wait_result_script_by_path.py +0 -173
  3475. windmill_api-1.542.3/windmill_api/api/job/run_wait_result_script_by_path_get.py +0 -171
  3476. windmill_api-1.542.3/windmill_api/api/kafka_trigger/set_kafka_trigger_enabled.py +0 -113
  3477. windmill_api-1.542.3/windmill_api/api/mqtt_trigger/set_mqtt_trigger_enabled.py +0 -113
  3478. windmill_api-1.542.3/windmill_api/api/nats_trigger/set_nats_trigger_enabled.py +0 -113
  3479. windmill_api-1.542.3/windmill_api/api/oidc/get_oidc_token.py +0 -101
  3480. windmill_api-1.542.3/windmill_api/api/postgres_trigger/set_postgres_trigger_enabled.py +0 -113
  3481. windmill_api-1.542.3/windmill_api/api/script/list_scripts.py +0 -417
  3482. windmill_api-1.542.3/windmill_api/api/setting/create_ducklake_database.py +0 -95
  3483. windmill_api-1.542.3/windmill_api/api/setting/databases_exist.py +0 -149
  3484. windmill_api-1.542.3/windmill_api/api/sqs_trigger/set_sqs_trigger_enabled.py +0 -113
  3485. windmill_api-1.542.3/windmill_api/api/teams/sync_teams.py +0 -131
  3486. windmill_api-1.542.3/windmill_api/api/websocket_trigger/set_websocket_trigger_enabled.py +0 -113
  3487. windmill_api-1.542.3/windmill_api/api/workspace/create_workspace_fork.py +0 -96
  3488. windmill_api-1.542.3/windmill_api/api/workspace/delete_workspace.py +0 -93
  3489. windmill_api-1.542.3/windmill_api/api/workspace/list_available_teams_channels.py +0 -157
  3490. windmill_api-1.542.3/windmill_api/api/workspace/list_available_teams_ids.py +0 -157
  3491. windmill_api-1.542.3/windmill_api/models/ai_agent.py +0 -103
  3492. windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms.py +0 -104
  3493. windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_0.py +0 -69
  3494. windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_0_type.py +0 -8
  3495. windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_1.py +0 -69
  3496. windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_1_type.py +0 -8
  3497. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item.py +0 -327
  3498. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_mock.py +0 -66
  3499. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry.py +0 -107
  3500. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry_constant.py +0 -66
  3501. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry_exponential.py +0 -82
  3502. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry_retry_if.py +0 -58
  3503. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_skip_if.py +0 -58
  3504. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_0.py +0 -67
  3505. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_0_type.py +0 -8
  3506. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_1.py +0 -67
  3507. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_1_type.py +0 -8
  3508. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_stop_after_all_iters_if.py +0 -76
  3509. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_stop_after_if.py +0 -76
  3510. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend.py +0 -195
  3511. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_resume_form.py +0 -71
  3512. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_resume_form_schema.py +0 -44
  3513. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_0.py +0 -69
  3514. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_0_type.py +0 -8
  3515. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_1.py +0 -69
  3516. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_1_type.py +0 -8
  3517. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_0.py +0 -67
  3518. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_0_type.py +0 -8
  3519. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_1.py +0 -67
  3520. windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_1_type.py +0 -8
  3521. windmill_api-1.542.3/windmill_api/models/ai_config.py +0 -125
  3522. windmill_api-1.542.3/windmill_api/models/ai_config_code_completion_model_provider.py +0 -17
  3523. windmill_api-1.542.3/windmill_api/models/ai_config_default_model_provider.py +0 -17
  3524. windmill_api-1.542.3/windmill_api/models/ai_provider.py +0 -17
  3525. windmill_api-1.542.3/windmill_api/models/ai_provider_model_provider.py +0 -17
  3526. windmill_api-1.542.3/windmill_api/models/archive_script_by_hash_response_200.py +0 -372
  3527. windmill_api-1.542.3/windmill_api/models/asset_kind.py +0 -10
  3528. windmill_api-1.542.3/windmill_api/models/audit_log.py +0 -133
  3529. windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_0.py +0 -75
  3530. windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_1.py +0 -75
  3531. windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_0.py +0 -75
  3532. windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_1.py +0 -75
  3533. windmill_api-1.542.3/windmill_api/models/branch_all.py +0 -93
  3534. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item.py +0 -92
  3535. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item.py +0 -361
  3536. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_mock.py +0 -66
  3537. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry.py +0 -119
  3538. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry_constant.py +0 -66
  3539. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry_exponential.py +0 -82
  3540. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry_retry_if.py +0 -58
  3541. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_skip_if.py +0 -58
  3542. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_0.py +0 -69
  3543. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_1.py +0 -69
  3544. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
  3545. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_stop_after_if.py +0 -76
  3546. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend.py +0 -207
  3547. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form.py +0 -75
  3548. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
  3549. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -69
  3550. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -69
  3551. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_0.py +0 -69
  3552. windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_1.py +0 -69
  3553. windmill_api-1.542.3/windmill_api/models/branch_one.py +0 -102
  3554. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item.py +0 -91
  3555. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item.py +0 -361
  3556. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_mock.py +0 -66
  3557. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry.py +0 -119
  3558. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry_constant.py +0 -66
  3559. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry_exponential.py +0 -82
  3560. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry_retry_if.py +0 -58
  3561. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_skip_if.py +0 -58
  3562. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_0.py +0 -69
  3563. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_1.py +0 -69
  3564. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
  3565. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_stop_after_if.py +0 -76
  3566. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend.py +0 -207
  3567. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form.py +0 -75
  3568. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
  3569. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -69
  3570. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -69
  3571. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_0.py +0 -69
  3572. windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_1.py +0 -69
  3573. windmill_api-1.542.3/windmill_api/models/branch_one_default_item.py +0 -329
  3574. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_mock.py +0 -66
  3575. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry.py +0 -107
  3576. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry_constant.py +0 -66
  3577. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry_exponential.py +0 -82
  3578. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry_retry_if.py +0 -58
  3579. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_skip_if.py +0 -58
  3580. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_sleep_type_0.py +0 -67
  3581. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_sleep_type_1.py +0 -67
  3582. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_stop_after_all_iters_if.py +0 -76
  3583. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_stop_after_if.py +0 -76
  3584. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend.py +0 -199
  3585. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_resume_form.py +0 -73
  3586. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_resume_form_schema.py +0 -44
  3587. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_0.py +0 -69
  3588. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_1.py +0 -69
  3589. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_timeout_type_0.py +0 -67
  3590. windmill_api-1.542.3/windmill_api/models/branch_one_default_item_timeout_type_1.py +0 -67
  3591. windmill_api-1.542.3/windmill_api/models/completed_job.py +0 -398
  3592. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module.py +0 -318
  3593. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  3594. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  3595. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module_iterator.py +0 -77
  3596. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item.py +0 -305
  3597. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  3598. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  3599. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item_iterator.py +0 -77
  3600. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module.py +0 -317
  3601. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  3602. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  3603. windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module_iterator.py +0 -77
  3604. windmill_api-1.542.3/windmill_api/models/completed_job_job_kind.py +0 -22
  3605. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow.py +0 -176
  3606. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module.py +0 -361
  3607. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_mock.py +0 -66
  3608. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry.py +0 -119
  3609. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry_constant.py +0 -66
  3610. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry_exponential.py +0 -82
  3611. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry_retry_if.py +0 -58
  3612. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_skip_if.py +0 -58
  3613. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_0.py +0 -69
  3614. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_1.py +0 -69
  3615. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  3616. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_if.py +0 -76
  3617. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend.py +0 -207
  3618. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form.py +0 -75
  3619. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  3620. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
  3621. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
  3622. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_0.py +0 -69
  3623. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_1.py +0 -69
  3624. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item.py +0 -344
  3625. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_mock.py +0 -66
  3626. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry.py +0 -115
  3627. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry_constant.py +0 -66
  3628. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry_exponential.py +0 -82
  3629. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry_retry_if.py +0 -58
  3630. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_skip_if.py +0 -58
  3631. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_0.py +0 -67
  3632. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_1.py +0 -67
  3633. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  3634. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_if.py +0 -76
  3635. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend.py +0 -205
  3636. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form.py +0 -75
  3637. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  3638. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  3639. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  3640. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_0.py +0 -69
  3641. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_1.py +0 -69
  3642. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module.py +0 -375
  3643. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_mock.py +0 -66
  3644. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry.py +0 -119
  3645. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_constant.py +0 -66
  3646. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  3647. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  3648. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_skip_if.py +0 -58
  3649. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  3650. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  3651. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  3652. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  3653. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend.py +0 -211
  3654. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  3655. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  3656. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  3657. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  3658. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  3659. windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  3660. windmill_api-1.542.3/windmill_api/models/create_account_json_body.py +0 -109
  3661. windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body.py +0 -139
  3662. windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry.py +0 -107
  3663. windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry_constant.py +0 -66
  3664. windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry_exponential.py +0 -82
  3665. windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry_retry_if.py +0 -58
  3666. windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body.py +0 -213
  3667. windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry.py +0 -107
  3668. windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry_constant.py +0 -66
  3669. windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry_exponential.py +0 -82
  3670. windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry_retry_if.py +0 -58
  3671. windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body.py +0 -229
  3672. windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry.py +0 -107
  3673. windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry_constant.py +0 -66
  3674. windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry_exponential.py +0 -82
  3675. windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry_retry_if.py +0 -58
  3676. windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item.py +0 -237
  3677. windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry.py +0 -115
  3678. windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry_constant.py +0 -66
  3679. windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry_exponential.py +0 -82
  3680. windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry_retry_if.py +0 -58
  3681. windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body.py +0 -154
  3682. windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry.py +0 -107
  3683. windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry_constant.py +0 -66
  3684. windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry_exponential.py +0 -82
  3685. windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry_retry_if.py +0 -58
  3686. windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body.py +0 -221
  3687. windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry.py +0 -107
  3688. windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry_constant.py +0 -66
  3689. windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry_exponential.py +0 -82
  3690. windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry_retry_if.py +0 -58
  3691. windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body.py +0 -168
  3692. windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry.py +0 -107
  3693. windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry_constant.py +0 -66
  3694. windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry_exponential.py +0 -82
  3695. windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry_retry_if.py +0 -58
  3696. windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body.py +0 -174
  3697. windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry.py +0 -111
  3698. windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry_constant.py +0 -66
  3699. windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry_exponential.py +0 -82
  3700. windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry_retry_if.py +0 -58
  3701. windmill_api-1.542.3/windmill_api/models/create_schedule_json_body.py +0 -299
  3702. windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry.py +0 -108
  3703. windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry_constant.py +0 -66
  3704. windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry_exponential.py +0 -82
  3705. windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry_retry_if.py +0 -58
  3706. windmill_api-1.542.3/windmill_api/models/create_script_json_body.py +0 -329
  3707. windmill_api-1.542.3/windmill_api/models/create_script_json_body_assets_item_kind.py +0 -10
  3708. windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body.py +0 -164
  3709. windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry.py +0 -107
  3710. windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry_constant.py +0 -66
  3711. windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry_exponential.py +0 -82
  3712. windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry_retry_if.py +0 -58
  3713. windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body.py +0 -264
  3714. windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry.py +0 -115
  3715. windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry_constant.py +0 -66
  3716. windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry_exponential.py +0 -82
  3717. windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry_retry_if.py +0 -58
  3718. windmill_api-1.542.3/windmill_api/models/create_workspace_fork.py +0 -90
  3719. windmill_api-1.542.3/windmill_api/models/create_workspace_fork_json_body.py +0 -90
  3720. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200.py +0 -404
  3721. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module.py +0 -333
  3722. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  3723. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  3724. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_iterator.py +0 -77
  3725. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item.py +0 -324
  3726. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  3727. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  3728. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_iterator.py +0 -77
  3729. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module.py +0 -327
  3730. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  3731. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  3732. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_iterator.py +0 -77
  3733. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_job_kind.py +0 -22
  3734. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow.py +0 -188
  3735. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module.py +0 -399
  3736. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_mock.py +0 -66
  3737. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry.py +0 -119
  3738. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_constant.py +0 -66
  3739. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +0 -82
  3740. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +0 -58
  3741. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_skip_if.py +0 -58
  3742. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +0 -69
  3743. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +0 -69
  3744. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  3745. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +0 -76
  3746. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend.py +0 -213
  3747. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +0 -75
  3748. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  3749. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  3750. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  3751. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +0 -69
  3752. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +0 -69
  3753. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item.py +0 -395
  3754. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_mock.py +0 -66
  3755. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry.py +0 -119
  3756. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_constant.py +0 -66
  3757. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +0 -82
  3758. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +0 -58
  3759. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_skip_if.py +0 -58
  3760. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +0 -69
  3761. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +0 -69
  3762. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  3763. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +0 -76
  3764. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend.py +0 -213
  3765. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +0 -75
  3766. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  3767. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  3768. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  3769. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +0 -69
  3770. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +0 -69
  3771. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module.py +0 -404
  3772. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_mock.py +0 -66
  3773. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry.py +0 -119
  3774. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +0 -66
  3775. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  3776. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  3777. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +0 -58
  3778. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  3779. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  3780. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  3781. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  3782. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +0 -217
  3783. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  3784. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  3785. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  3786. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  3787. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  3788. windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  3789. windmill_api-1.542.3/windmill_api/models/delete_script_by_hash_response_200.py +0 -372
  3790. windmill_api-1.542.3/windmill_api/models/ducklake_settings_ducklakes_additional_property.py +0 -82
  3791. windmill_api-1.542.3/windmill_api/models/edit_copilot_config_json_body.py +0 -129
  3792. windmill_api-1.542.3/windmill_api/models/edit_copilot_config_json_body_code_completion_model_provider.py +0 -17
  3793. windmill_api-1.542.3/windmill_api/models/edit_copilot_config_json_body_default_model_provider.py +0 -17
  3794. windmill_api-1.542.3/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property.py +0 -82
  3795. windmill_api-1.542.3/windmill_api/models/edit_email_trigger.py +0 -137
  3796. windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry.py +0 -107
  3797. windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry_constant.py +0 -66
  3798. windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry_exponential.py +0 -82
  3799. windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry_retry_if.py +0 -58
  3800. windmill_api-1.542.3/windmill_api/models/edit_http_trigger.py +0 -227
  3801. windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry.py +0 -107
  3802. windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry_constant.py +0 -66
  3803. windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry_exponential.py +0 -82
  3804. windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry_retry_if.py +0 -58
  3805. windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger.py +0 -143
  3806. windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry.py +0 -107
  3807. windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry_constant.py +0 -66
  3808. windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry_exponential.py +0 -82
  3809. windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry_retry_if.py +0 -58
  3810. windmill_api-1.542.3/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py +0 -128
  3811. windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger.py +0 -215
  3812. windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry.py +0 -107
  3813. windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry_constant.py +0 -66
  3814. windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry_exponential.py +0 -82
  3815. windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry_retry_if.py +0 -58
  3816. windmill_api-1.542.3/windmill_api/models/edit_nats_trigger.py +0 -159
  3817. windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry.py +0 -107
  3818. windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry_constant.py +0 -66
  3819. windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry_exponential.py +0 -82
  3820. windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry_retry_if.py +0 -58
  3821. windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger.py +0 -168
  3822. windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry.py +0 -107
  3823. windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry_constant.py +0 -66
  3824. windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry_exponential.py +0 -82
  3825. windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry_retry_if.py +0 -58
  3826. windmill_api-1.542.3/windmill_api/models/edit_schedule.py +0 -270
  3827. windmill_api-1.542.3/windmill_api/models/edit_schedule_retry.py +0 -108
  3828. windmill_api-1.542.3/windmill_api/models/edit_schedule_retry_constant.py +0 -66
  3829. windmill_api-1.542.3/windmill_api/models/edit_schedule_retry_exponential.py +0 -82
  3830. windmill_api-1.542.3/windmill_api/models/edit_schedule_retry_retry_if.py +0 -58
  3831. windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger.py +0 -162
  3832. windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry.py +0 -107
  3833. windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry_constant.py +0 -66
  3834. windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry_exponential.py +0 -82
  3835. windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry_retry_if.py +0 -58
  3836. windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger.py +0 -238
  3837. windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry.py +0 -107
  3838. windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry_constant.py +0 -66
  3839. windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry_exponential.py +0 -82
  3840. windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry_retry_if.py +0 -58
  3841. windmill_api-1.542.3/windmill_api/models/email_trigger.py +0 -177
  3842. windmill_api-1.542.3/windmill_api/models/email_trigger_retry.py +0 -107
  3843. windmill_api-1.542.3/windmill_api/models/email_trigger_retry_constant.py +0 -66
  3844. windmill_api-1.542.3/windmill_api/models/email_trigger_retry_exponential.py +0 -82
  3845. windmill_api-1.542.3/windmill_api/models/email_trigger_retry_retry_if.py +0 -58
  3846. windmill_api-1.542.3/windmill_api/models/execute_component_json_body.py +0 -171
  3847. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0.py +0 -418
  3848. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module.py +0 -332
  3849. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  3850. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  3851. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_iterator.py +0 -77
  3852. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item.py +0 -321
  3853. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  3854. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  3855. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_iterator.py +0 -77
  3856. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module.py +0 -324
  3857. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  3858. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  3859. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +0 -77
  3860. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_job_kind.py +0 -22
  3861. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow.py +0 -188
  3862. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module.py +0 -395
  3863. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_mock.py +0 -66
  3864. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry.py +0 -119
  3865. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +0 -66
  3866. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
  3867. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
  3868. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_skip_if.py +0 -58
  3869. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
  3870. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
  3871. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  3872. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
  3873. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend.py +0 -213
  3874. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -75
  3875. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  3876. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  3877. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  3878. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
  3879. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
  3880. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item.py +0 -393
  3881. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_mock.py +0 -66
  3882. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry.py +0 -119
  3883. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +0 -66
  3884. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
  3885. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
  3886. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_skip_if.py +0 -58
  3887. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
  3888. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
  3889. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  3890. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
  3891. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend.py +0 -213
  3892. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -75
  3893. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  3894. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  3895. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  3896. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
  3897. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
  3898. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module.py +0 -399
  3899. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +0 -66
  3900. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +0 -119
  3901. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
  3902. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  3903. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  3904. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
  3905. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  3906. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  3907. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  3908. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  3909. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +0 -213
  3910. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  3911. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  3912. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  3913. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  3914. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  3915. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  3916. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1.py +0 -434
  3917. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module.py +0 -332
  3918. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  3919. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  3920. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_iterator.py +0 -77
  3921. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item.py +0 -321
  3922. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  3923. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  3924. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_iterator.py +0 -77
  3925. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module.py +0 -324
  3926. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  3927. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  3928. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +0 -77
  3929. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_job_kind.py +0 -22
  3930. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow.py +0 -188
  3931. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module.py +0 -395
  3932. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_mock.py +0 -66
  3933. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry.py +0 -119
  3934. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +0 -66
  3935. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
  3936. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
  3937. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_skip_if.py +0 -58
  3938. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
  3939. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
  3940. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  3941. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
  3942. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend.py +0 -213
  3943. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -75
  3944. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  3945. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  3946. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  3947. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
  3948. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
  3949. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item.py +0 -393
  3950. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_mock.py +0 -66
  3951. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry.py +0 -119
  3952. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +0 -66
  3953. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
  3954. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
  3955. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_skip_if.py +0 -58
  3956. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
  3957. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
  3958. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  3959. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
  3960. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend.py +0 -213
  3961. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -75
  3962. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  3963. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  3964. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  3965. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
  3966. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
  3967. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module.py +0 -399
  3968. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +0 -66
  3969. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +0 -119
  3970. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
  3971. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  3972. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  3973. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
  3974. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  3975. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  3976. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  3977. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  3978. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +0 -213
  3979. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  3980. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  3981. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  3982. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  3983. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  3984. windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  3985. windmill_api-1.542.3/windmill_api/models/flow_module.py +0 -325
  3986. windmill_api-1.542.3/windmill_api/models/flow_module_mock.py +0 -66
  3987. windmill_api-1.542.3/windmill_api/models/flow_module_retry.py +0 -107
  3988. windmill_api-1.542.3/windmill_api/models/flow_module_retry_constant.py +0 -66
  3989. windmill_api-1.542.3/windmill_api/models/flow_module_retry_exponential.py +0 -82
  3990. windmill_api-1.542.3/windmill_api/models/flow_module_retry_retry_if.py +0 -58
  3991. windmill_api-1.542.3/windmill_api/models/flow_module_skip_if.py +0 -58
  3992. windmill_api-1.542.3/windmill_api/models/flow_module_sleep_type_0.py +0 -67
  3993. windmill_api-1.542.3/windmill_api/models/flow_module_sleep_type_1.py +0 -67
  3994. windmill_api-1.542.3/windmill_api/models/flow_module_stop_after_all_iters_if.py +0 -76
  3995. windmill_api-1.542.3/windmill_api/models/flow_module_stop_after_if.py +0 -76
  3996. windmill_api-1.542.3/windmill_api/models/flow_module_suspend.py +0 -183
  3997. windmill_api-1.542.3/windmill_api/models/flow_module_suspend_resume_form.py +0 -71
  3998. windmill_api-1.542.3/windmill_api/models/flow_module_suspend_resume_form_schema.py +0 -44
  3999. windmill_api-1.542.3/windmill_api/models/flow_module_suspend_user_groups_required_type_0.py +0 -67
  4000. windmill_api-1.542.3/windmill_api/models/flow_module_suspend_user_groups_required_type_1.py +0 -67
  4001. windmill_api-1.542.3/windmill_api/models/flow_module_timeout_type_0.py +0 -67
  4002. windmill_api-1.542.3/windmill_api/models/flow_module_timeout_type_1.py +0 -67
  4003. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_assets_item.py +0 -102
  4004. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_assets_item_kind.py +0 -10
  4005. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_0.py +0 -69
  4006. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_1.py +0 -69
  4007. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_0.py +0 -69
  4008. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_1.py +0 -69
  4009. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_0.py +0 -69
  4010. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_1.py +0 -69
  4011. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_iterator_type_0.py +0 -67
  4012. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_iterator_type_1.py +0 -67
  4013. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_mock.py +0 -66
  4014. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_constant.py +0 -66
  4015. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_exponential.py +0 -82
  4016. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_retry_if.py +0 -58
  4017. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_skip_if.py +0 -58
  4018. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_0.py +0 -69
  4019. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_1.py +0 -69
  4020. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_all_iters_if.py +0 -76
  4021. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_if.py +0 -76
  4022. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_resume_form_schema.py +0 -44
  4023. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4024. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4025. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_0.py +0 -69
  4026. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_1.py +0 -69
  4027. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_mock.py +0 -66
  4028. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_constant.py +0 -66
  4029. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_exponential.py +0 -82
  4030. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_retry_if.py +0 -58
  4031. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_skip_if.py +0 -58
  4032. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_0.py +0 -69
  4033. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_1.py +0 -69
  4034. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_all_iters_if.py +0 -76
  4035. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_if.py +0 -76
  4036. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_resume_form_schema.py +0 -44
  4037. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4038. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4039. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_0.py +0 -69
  4040. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_1.py +0 -69
  4041. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_mock.py +0 -66
  4042. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_constant.py +0 -66
  4043. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_exponential.py +0 -82
  4044. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_retry_if.py +0 -58
  4045. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_skip_if.py +0 -58
  4046. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_0.py +0 -69
  4047. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_1.py +0 -69
  4048. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
  4049. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_if.py +0 -76
  4050. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
  4051. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4052. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4053. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_0.py +0 -69
  4054. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_1.py +0 -69
  4055. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_mock.py +0 -66
  4056. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_retry_constant.py +0 -66
  4057. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_retry_exponential.py +0 -82
  4058. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_retry_retry_if.py +0 -58
  4059. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_skip_if.py +0 -58
  4060. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_0.py +0 -69
  4061. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_1.py +0 -69
  4062. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_all_iters_if.py +0 -76
  4063. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_if.py +0 -76
  4064. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_resume_form_schema.py +0 -44
  4065. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_0.py +0 -69
  4066. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_1.py +0 -69
  4067. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_0.py +0 -69
  4068. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_1.py +0 -69
  4069. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_mock.py +0 -66
  4070. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_constant.py +0 -66
  4071. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_exponential.py +0 -82
  4072. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_retry_if.py +0 -58
  4073. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_skip_if.py +0 -58
  4074. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_0.py +0 -69
  4075. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_1.py +0 -69
  4076. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
  4077. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_if.py +0 -76
  4078. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
  4079. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4080. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4081. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_0.py +0 -69
  4082. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_1.py +0 -69
  4083. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_7.py +0 -70
  4084. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_0.py +0 -69
  4085. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_0_type.py +0 -8
  4086. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_1.py +0 -69
  4087. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_1_type.py +0 -8
  4088. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_mock.py +0 -66
  4089. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_retry_constant.py +0 -66
  4090. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_retry_exponential.py +0 -82
  4091. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_retry_retry_if.py +0 -58
  4092. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_skip_if.py +0 -58
  4093. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_0.py +0 -69
  4094. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_0_type.py +0 -8
  4095. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_1.py +0 -69
  4096. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_1_type.py +0 -8
  4097. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_stop_after_all_iters_if.py +0 -76
  4098. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_stop_after_if.py +0 -76
  4099. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_resume_form_schema.py +0 -44
  4100. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_0.py +0 -69
  4101. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_0_type.py +0 -8
  4102. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_1.py +0 -69
  4103. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_1_type.py +0 -8
  4104. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_0.py +0 -69
  4105. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_0_type.py +0 -8
  4106. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_1.py +0 -69
  4107. windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_1_type.py +0 -8
  4108. windmill_api-1.542.3/windmill_api/models/flow_preview.py +0 -110
  4109. windmill_api-1.542.3/windmill_api/models/flow_preview_restarted_from.py +0 -74
  4110. windmill_api-1.542.3/windmill_api/models/flow_preview_value.py +0 -176
  4111. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module.py +0 -338
  4112. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_mock.py +0 -66
  4113. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry.py +0 -111
  4114. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry_constant.py +0 -66
  4115. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry_exponential.py +0 -82
  4116. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry_retry_if.py +0 -58
  4117. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_skip_if.py +0 -58
  4118. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_sleep_type_0.py +0 -67
  4119. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_sleep_type_1.py +0 -67
  4120. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_stop_after_all_iters_if.py +0 -76
  4121. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_stop_after_if.py +0 -76
  4122. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend.py +0 -203
  4123. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form.py +0 -75
  4124. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form_schema.py +0 -44
  4125. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  4126. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  4127. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_timeout_type_0.py +0 -67
  4128. windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_timeout_type_1.py +0 -67
  4129. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item.py +0 -333
  4130. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_mock.py +0 -66
  4131. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry.py +0 -109
  4132. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry_constant.py +0 -66
  4133. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry_exponential.py +0 -82
  4134. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry_retry_if.py +0 -58
  4135. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_skip_if.py +0 -58
  4136. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_sleep_type_0.py +0 -67
  4137. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_sleep_type_1.py +0 -67
  4138. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_stop_after_all_iters_if.py +0 -76
  4139. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_stop_after_if.py +0 -76
  4140. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend.py +0 -203
  4141. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form.py +0 -75
  4142. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form_schema.py +0 -44
  4143. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4144. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4145. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_timeout_type_0.py +0 -67
  4146. windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_timeout_type_1.py +0 -67
  4147. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module.py +0 -369
  4148. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_mock.py +0 -66
  4149. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry.py +0 -119
  4150. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry_constant.py +0 -66
  4151. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry_exponential.py +0 -82
  4152. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry_retry_if.py +0 -58
  4153. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_skip_if.py +0 -58
  4154. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_0.py +0 -69
  4155. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_1.py +0 -69
  4156. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4157. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_if.py +0 -76
  4158. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend.py +0 -209
  4159. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form.py +0 -75
  4160. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4161. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  4162. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  4163. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_0.py +0 -69
  4164. windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_1.py +0 -69
  4165. windmill_api-1.542.3/windmill_api/models/flow_status_failure_module.py +0 -298
  4166. windmill_api-1.542.3/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4167. windmill_api-1.542.3/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4168. windmill_api-1.542.3/windmill_api/models/flow_status_failure_module_iterator.py +0 -77
  4169. windmill_api-1.542.3/windmill_api/models/flow_status_module.py +0 -278
  4170. windmill_api-1.542.3/windmill_api/models/flow_status_module_agent_actions_item_type_1.py +0 -60
  4171. windmill_api-1.542.3/windmill_api/models/flow_status_module_agent_actions_item_type_1_type.py +0 -8
  4172. windmill_api-1.542.3/windmill_api/models/flow_status_module_iterator.py +0 -77
  4173. windmill_api-1.542.3/windmill_api/models/flow_status_modules_item.py +0 -284
  4174. windmill_api-1.542.3/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4175. windmill_api-1.542.3/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4176. windmill_api-1.542.3/windmill_api/models/flow_status_modules_item_iterator.py +0 -77
  4177. windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module.py +0 -295
  4178. windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  4179. windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4180. windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module_iterator.py +0 -77
  4181. windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_sleep_type_0.py +0 -67
  4182. windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_sleep_type_1.py +0 -67
  4183. windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  4184. windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  4185. windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_timeout_type_0.py +0 -67
  4186. windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_timeout_type_1.py +0 -67
  4187. windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_sleep_type_0.py +0 -67
  4188. windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_sleep_type_1.py +0 -67
  4189. windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4190. windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4191. windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_timeout_type_0.py +0 -67
  4192. windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_timeout_type_1.py +0 -67
  4193. windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_sleep_type_0.py +0 -67
  4194. windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_sleep_type_1.py +0 -67
  4195. windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  4196. windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  4197. windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_timeout_type_0.py +0 -67
  4198. windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_timeout_type_1.py +0 -67
  4199. windmill_api-1.542.3/windmill_api/models/forloop_flow.py +0 -143
  4200. windmill_api-1.542.3/windmill_api/models/forloop_flow_iterator_type_0.py +0 -67
  4201. windmill_api-1.542.3/windmill_api/models/forloop_flow_iterator_type_1.py +0 -67
  4202. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item.py +0 -329
  4203. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_mock.py +0 -66
  4204. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry.py +0 -107
  4205. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry_constant.py +0 -66
  4206. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry_exponential.py +0 -82
  4207. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry_retry_if.py +0 -58
  4208. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_skip_if.py +0 -58
  4209. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_sleep_type_0.py +0 -67
  4210. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_sleep_type_1.py +0 -67
  4211. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_stop_after_all_iters_if.py +0 -76
  4212. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_stop_after_if.py +0 -76
  4213. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend.py +0 -199
  4214. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_resume_form.py +0 -75
  4215. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_resume_form_schema.py +0 -44
  4216. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4217. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4218. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_timeout_type_0.py +0 -67
  4219. windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_timeout_type_1.py +0 -67
  4220. windmill_api-1.542.3/windmill_api/models/gcp_trigger.py +0 -259
  4221. windmill_api-1.542.3/windmill_api/models/gcp_trigger_data.py +0 -212
  4222. windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry.py +0 -107
  4223. windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry_constant.py +0 -66
  4224. windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry_exponential.py +0 -82
  4225. windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry_retry_if.py +0 -58
  4226. windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry.py +0 -107
  4227. windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry_constant.py +0 -66
  4228. windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry_exponential.py +0 -82
  4229. windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry_retry_if.py +0 -58
  4230. windmill_api-1.542.3/windmill_api/models/get_audit_log_response_200.py +0 -133
  4231. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200.py +0 -402
  4232. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module.py +0 -332
  4233. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4234. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4235. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_iterator.py +0 -77
  4236. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item.py +0 -321
  4237. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4238. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4239. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_iterator.py +0 -77
  4240. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module.py +0 -324
  4241. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  4242. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4243. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_iterator.py +0 -77
  4244. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_job_kind.py +0 -22
  4245. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow.py +0 -188
  4246. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module.py +0 -395
  4247. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_mock.py +0 -66
  4248. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry.py +0 -119
  4249. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_constant.py +0 -66
  4250. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +0 -82
  4251. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +0 -58
  4252. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_skip_if.py +0 -58
  4253. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +0 -69
  4254. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +0 -69
  4255. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  4256. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +0 -76
  4257. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend.py +0 -213
  4258. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +0 -75
  4259. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  4260. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  4261. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  4262. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +0 -69
  4263. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +0 -69
  4264. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item.py +0 -393
  4265. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_mock.py +0 -66
  4266. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry.py +0 -119
  4267. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_constant.py +0 -66
  4268. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +0 -82
  4269. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +0 -58
  4270. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_skip_if.py +0 -58
  4271. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +0 -69
  4272. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +0 -69
  4273. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  4274. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +0 -76
  4275. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend.py +0 -213
  4276. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +0 -75
  4277. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  4278. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4279. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4280. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +0 -69
  4281. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +0 -69
  4282. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module.py +0 -401
  4283. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_mock.py +0 -66
  4284. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry.py +0 -119
  4285. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +0 -66
  4286. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  4287. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  4288. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +0 -58
  4289. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  4290. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  4291. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4292. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  4293. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +0 -213
  4294. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  4295. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4296. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  4297. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  4298. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  4299. windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  4300. windmill_api-1.542.3/windmill_api/models/get_copilot_info_response_200.py +0 -129
  4301. windmill_api-1.542.3/windmill_api/models/get_copilot_info_response_200_code_completion_model_provider.py +0 -17
  4302. windmill_api-1.542.3/windmill_api/models/get_copilot_info_response_200_default_model_provider.py +0 -17
  4303. windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200.py +0 -180
  4304. windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry.py +0 -107
  4305. windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry_constant.py +0 -66
  4306. windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry_exponential.py +0 -82
  4307. windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry_retry_if.py +0 -58
  4308. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200.py +0 -229
  4309. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_schema.py +0 -44
  4310. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value.py +0 -182
  4311. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module.py +0 -393
  4312. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_mock.py +0 -66
  4313. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry.py +0 -119
  4314. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_constant.py +0 -66
  4315. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_exponential.py +0 -82
  4316. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_retry_if.py +0 -58
  4317. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_skip_if.py +0 -58
  4318. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_0.py +0 -69
  4319. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_1.py +0 -69
  4320. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_all_iters_if.py +0 -76
  4321. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_if.py +0 -76
  4322. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend.py +0 -213
  4323. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form.py +0 -75
  4324. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form_schema.py +0 -44
  4325. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  4326. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  4327. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_0.py +0 -69
  4328. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_1.py +0 -69
  4329. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item.py +0 -393
  4330. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_mock.py +0 -66
  4331. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry.py +0 -119
  4332. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_constant.py +0 -66
  4333. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_exponential.py +0 -82
  4334. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_retry_if.py +0 -58
  4335. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_skip_if.py +0 -58
  4336. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_0.py +0 -69
  4337. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_1.py +0 -69
  4338. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_all_iters_if.py +0 -76
  4339. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_if.py +0 -76
  4340. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend.py +0 -213
  4341. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form.py +0 -75
  4342. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form_schema.py +0 -44
  4343. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4344. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4345. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_0.py +0 -69
  4346. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_1.py +0 -69
  4347. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module.py +0 -395
  4348. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_mock.py +0 -66
  4349. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry.py +0 -119
  4350. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_constant.py +0 -66
  4351. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_exponential.py +0 -82
  4352. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_retry_if.py +0 -58
  4353. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_skip_if.py +0 -58
  4354. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_0.py +0 -69
  4355. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_1.py +0 -69
  4356. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4357. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_if.py +0 -76
  4358. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend.py +0 -213
  4359. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form.py +0 -75
  4360. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4361. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  4362. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  4363. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_0.py +0 -69
  4364. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_1.py +0 -69
  4365. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py +0 -241
  4366. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_schema.py +0 -44
  4367. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value.py +0 -190
  4368. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module.py +0 -410
  4369. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_mock.py +0 -66
  4370. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry.py +0 -121
  4371. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_constant.py +0 -66
  4372. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_exponential.py +0 -82
  4373. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_retry_if.py +0 -58
  4374. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_skip_if.py +0 -58
  4375. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_0.py +0 -69
  4376. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_1.py +0 -69
  4377. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_all_iters_if.py +0 -78
  4378. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_if.py +0 -76
  4379. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend.py +0 -215
  4380. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form.py +0 -77
  4381. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form_schema.py +0 -46
  4382. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_0.py +0 -71
  4383. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_1.py +0 -71
  4384. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_0.py +0 -69
  4385. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_1.py +0 -69
  4386. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item.py +0 -404
  4387. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_mock.py +0 -66
  4388. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry.py +0 -119
  4389. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_constant.py +0 -66
  4390. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_exponential.py +0 -82
  4391. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_retry_if.py +0 -58
  4392. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_skip_if.py +0 -58
  4393. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_0.py +0 -69
  4394. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_1.py +0 -69
  4395. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_all_iters_if.py +0 -78
  4396. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_if.py +0 -76
  4397. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend.py +0 -217
  4398. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form.py +0 -75
  4399. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form_schema.py +0 -46
  4400. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4401. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4402. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_0.py +0 -69
  4403. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_1.py +0 -69
  4404. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module.py +0 -412
  4405. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_mock.py +0 -66
  4406. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry.py +0 -121
  4407. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_constant.py +0 -68
  4408. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_exponential.py +0 -84
  4409. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_retry_if.py +0 -60
  4410. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_skip_if.py +0 -58
  4411. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_0.py +0 -69
  4412. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_1.py +0 -69
  4413. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_all_iters_if.py +0 -78
  4414. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_if.py +0 -76
  4415. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend.py +0 -213
  4416. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form.py +0 -79
  4417. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form_schema.py +0 -46
  4418. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -77
  4419. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -77
  4420. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_0.py +0 -71
  4421. windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_1.py +0 -71
  4422. windmill_api-1.542.3/windmill_api/models/get_flow_deployment_status_response_200.py +0 -58
  4423. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200.py +0 -229
  4424. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_schema.py +0 -44
  4425. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value.py +0 -182
  4426. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module.py +0 -393
  4427. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_mock.py +0 -66
  4428. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry.py +0 -119
  4429. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_constant.py +0 -66
  4430. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_exponential.py +0 -82
  4431. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_retry_if.py +0 -58
  4432. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_skip_if.py +0 -58
  4433. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_0.py +0 -69
  4434. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_1.py +0 -69
  4435. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_all_iters_if.py +0 -76
  4436. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_if.py +0 -76
  4437. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend.py +0 -213
  4438. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form.py +0 -75
  4439. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form_schema.py +0 -44
  4440. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  4441. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  4442. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_0.py +0 -69
  4443. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_1.py +0 -69
  4444. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item.py +0 -393
  4445. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_mock.py +0 -66
  4446. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry.py +0 -119
  4447. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_constant.py +0 -66
  4448. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_exponential.py +0 -82
  4449. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_retry_if.py +0 -58
  4450. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_skip_if.py +0 -58
  4451. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_0.py +0 -69
  4452. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_1.py +0 -69
  4453. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_all_iters_if.py +0 -76
  4454. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_if.py +0 -76
  4455. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend.py +0 -213
  4456. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form.py +0 -75
  4457. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form_schema.py +0 -44
  4458. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4459. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4460. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_0.py +0 -69
  4461. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_1.py +0 -69
  4462. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module.py +0 -395
  4463. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_mock.py +0 -66
  4464. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry.py +0 -119
  4465. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_constant.py +0 -66
  4466. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_exponential.py +0 -82
  4467. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_retry_if.py +0 -58
  4468. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_skip_if.py +0 -58
  4469. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_0.py +0 -69
  4470. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_1.py +0 -69
  4471. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4472. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_if.py +0 -76
  4473. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend.py +0 -213
  4474. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form.py +0 -75
  4475. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4476. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  4477. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  4478. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_0.py +0 -69
  4479. windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_1.py +0 -69
  4480. windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200.py +0 -260
  4481. windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry.py +0 -107
  4482. windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry_constant.py +0 -66
  4483. windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry_exponential.py +0 -82
  4484. windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry_retry_if.py +0 -58
  4485. windmill_api-1.542.3/windmill_api/models/get_global_connected_repositories_response_200_item.py +0 -104
  4486. windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200.py +0 -267
  4487. windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry.py +0 -107
  4488. windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry_constant.py +0 -66
  4489. windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry_exponential.py +0 -82
  4490. windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry_retry_if.py +0 -58
  4491. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200.py +0 -71
  4492. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow.py +0 -99
  4493. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_schema.py +0 -44
  4494. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value.py +0 -188
  4495. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module.py +0 -395
  4496. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_mock.py +0 -66
  4497. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry.py +0 -119
  4498. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_constant.py +0 -66
  4499. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_exponential.py +0 -82
  4500. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_retry_if.py +0 -58
  4501. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_skip_if.py +0 -58
  4502. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_0.py +0 -69
  4503. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_1.py +0 -69
  4504. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_all_iters_if.py +0 -76
  4505. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_if.py +0 -76
  4506. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend.py +0 -213
  4507. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form.py +0 -75
  4508. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form_schema.py +0 -44
  4509. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_0.py +0 -71
  4510. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_1.py +0 -71
  4511. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_0.py +0 -69
  4512. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_1.py +0 -69
  4513. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item.py +0 -395
  4514. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_mock.py +0 -66
  4515. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry.py +0 -119
  4516. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_constant.py +0 -66
  4517. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_exponential.py +0 -82
  4518. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_retry_if.py +0 -58
  4519. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_skip_if.py +0 -58
  4520. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_0.py +0 -69
  4521. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_1.py +0 -69
  4522. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_all_iters_if.py +0 -76
  4523. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_if.py +0 -76
  4524. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend.py +0 -213
  4525. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form.py +0 -75
  4526. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form_schema.py +0 -44
  4527. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4528. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4529. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_0.py +0 -69
  4530. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_1.py +0 -69
  4531. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module.py +0 -401
  4532. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_mock.py +0 -66
  4533. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry.py +0 -119
  4534. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_constant.py +0 -66
  4535. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_exponential.py +0 -82
  4536. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_retry_if.py +0 -58
  4537. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_skip_if.py +0 -58
  4538. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_0.py +0 -69
  4539. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_1.py +0 -69
  4540. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4541. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_if.py +0 -76
  4542. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend.py +0 -215
  4543. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form.py +0 -75
  4544. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form_schema.py +0 -46
  4545. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  4546. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  4547. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_0.py +0 -69
  4548. windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_1.py +0 -69
  4549. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0.py +0 -416
  4550. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module.py +0 -330
  4551. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4552. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4553. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_iterator.py +0 -77
  4554. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item.py +0 -321
  4555. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4556. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4557. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_iterator.py +0 -77
  4558. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module.py +0 -324
  4559. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  4560. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4561. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_iterator.py +0 -77
  4562. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_job_kind.py +0 -22
  4563. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow.py +0 -182
  4564. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module.py +0 -393
  4565. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_mock.py +0 -66
  4566. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry.py +0 -119
  4567. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_constant.py +0 -66
  4568. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
  4569. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
  4570. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_skip_if.py +0 -58
  4571. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
  4572. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
  4573. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  4574. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
  4575. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend.py +0 -213
  4576. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -75
  4577. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  4578. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  4579. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  4580. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
  4581. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
  4582. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item.py +0 -393
  4583. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_mock.py +0 -66
  4584. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry.py +0 -119
  4585. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_constant.py +0 -66
  4586. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
  4587. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
  4588. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_skip_if.py +0 -58
  4589. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
  4590. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
  4591. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  4592. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
  4593. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend.py +0 -213
  4594. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -75
  4595. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  4596. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4597. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4598. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
  4599. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
  4600. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module.py +0 -395
  4601. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_mock.py +0 -66
  4602. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry.py +0 -119
  4603. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
  4604. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  4605. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  4606. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
  4607. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  4608. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  4609. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4610. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  4611. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend.py +0 -213
  4612. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  4613. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4614. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  4615. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  4616. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  4617. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  4618. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1.py +0 -432
  4619. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module.py +0 -330
  4620. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4621. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4622. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_iterator.py +0 -77
  4623. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item.py +0 -321
  4624. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4625. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4626. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_iterator.py +0 -77
  4627. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module.py +0 -324
  4628. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  4629. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4630. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_iterator.py +0 -77
  4631. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_job_kind.py +0 -22
  4632. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow.py +0 -182
  4633. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module.py +0 -393
  4634. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_mock.py +0 -66
  4635. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry.py +0 -119
  4636. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_constant.py +0 -66
  4637. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
  4638. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
  4639. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_skip_if.py +0 -58
  4640. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
  4641. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
  4642. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  4643. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
  4644. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend.py +0 -213
  4645. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -75
  4646. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  4647. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  4648. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  4649. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
  4650. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
  4651. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item.py +0 -393
  4652. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_mock.py +0 -66
  4653. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry.py +0 -119
  4654. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_constant.py +0 -66
  4655. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
  4656. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
  4657. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_skip_if.py +0 -58
  4658. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
  4659. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
  4660. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  4661. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
  4662. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend.py +0 -213
  4663. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -75
  4664. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  4665. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4666. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4667. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
  4668. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
  4669. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module.py +0 -395
  4670. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_mock.py +0 -66
  4671. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry.py +0 -119
  4672. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
  4673. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  4674. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  4675. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
  4676. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  4677. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  4678. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4679. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  4680. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend.py +0 -213
  4681. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  4682. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4683. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  4684. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  4685. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  4686. windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  4687. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module.py +0 -330
  4688. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4689. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4690. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_iterator.py +0 -77
  4691. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item.py +0 -321
  4692. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4693. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4694. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_iterator.py +0 -77
  4695. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module.py +0 -324
  4696. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  4697. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4698. windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_iterator.py +0 -77
  4699. windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200.py +0 -226
  4700. windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry.py +0 -107
  4701. windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry_constant.py +0 -66
  4702. windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry_exponential.py +0 -82
  4703. windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry_retry_if.py +0 -58
  4704. windmill_api-1.542.3/windmill_api/models/get_large_file_storage_config_response_200.py +0 -124
  4705. windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200.py +0 -293
  4706. windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry.py +0 -107
  4707. windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry_constant.py +0 -66
  4708. windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry_exponential.py +0 -82
  4709. windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry_retry_if.py +0 -58
  4710. windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200.py +0 -240
  4711. windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry.py +0 -107
  4712. windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry_constant.py +0 -66
  4713. windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry_exponential.py +0 -82
  4714. windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry_retry_if.py +0 -58
  4715. windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200.py +0 -227
  4716. windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry.py +0 -111
  4717. windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry_constant.py +0 -66
  4718. windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry_exponential.py +0 -82
  4719. windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry_retry_if.py +0 -58
  4720. windmill_api-1.542.3/windmill_api/models/get_runnable_response_200.py +0 -103
  4721. windmill_api-1.542.3/windmill_api/models/get_schedule_response_200.py +0 -346
  4722. windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry.py +0 -107
  4723. windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry_constant.py +0 -66
  4724. windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry_exponential.py +0 -82
  4725. windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry_retry_if.py +0 -58
  4726. windmill_api-1.542.3/windmill_api/models/get_script_by_hash_response_200.py +0 -372
  4727. windmill_api-1.542.3/windmill_api/models/get_script_by_path_response_200.py +0 -372
  4728. windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200.py +0 -358
  4729. windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_kind.py +0 -10
  4730. windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200_draft.py +0 -339
  4731. windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_kind.py +0 -10
  4732. windmill_api-1.542.3/windmill_api/models/get_script_deployment_status_response_200.py +0 -66
  4733. windmill_api-1.542.3/windmill_api/models/get_settings_response_200.py +0 -391
  4734. windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ai_config.py +0 -133
  4735. windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ai_config_code_completion_model_provider.py +0 -17
  4736. windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ai_config_default_model_provider.py +0 -17
  4737. windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property.py +0 -82
  4738. windmill_api-1.542.3/windmill_api/models/get_settings_response_200_large_file_storage.py +0 -124
  4739. windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200.py +0 -236
  4740. windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry.py +0 -107
  4741. windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry_constant.py +0 -66
  4742. windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry_exponential.py +0 -82
  4743. windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry_retry_if.py +0 -58
  4744. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +0 -434
  4745. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module.py +0 -338
  4746. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  4747. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4748. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_iterator.py +0 -77
  4749. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item.py +0 -327
  4750. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
  4751. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4752. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_iterator.py +0 -77
  4753. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module.py +0 -336
  4754. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -66
  4755. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4756. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_iterator.py +0 -79
  4757. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_job_kind.py +0 -22
  4758. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow.py +0 -190
  4759. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module.py +0 -410
  4760. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_mock.py +0 -66
  4761. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry.py +0 -121
  4762. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_constant.py +0 -66
  4763. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_exponential.py +0 -84
  4764. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
  4765. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_skip_if.py +0 -58
  4766. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
  4767. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
  4768. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
  4769. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
  4770. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend.py +0 -215
  4771. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -79
  4772. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
  4773. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
  4774. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
  4775. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
  4776. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
  4777. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item.py +0 -410
  4778. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_mock.py +0 -66
  4779. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry.py +0 -121
  4780. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_constant.py +0 -66
  4781. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
  4782. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
  4783. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_skip_if.py +0 -58
  4784. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
  4785. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
  4786. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
  4787. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
  4788. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend.py +0 -215
  4789. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -77
  4790. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
  4791. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4792. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4793. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
  4794. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
  4795. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module.py +0 -414
  4796. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_mock.py +0 -66
  4797. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry.py +0 -121
  4798. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -68
  4799. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -84
  4800. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
  4801. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
  4802. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
  4803. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
  4804. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  4805. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -78
  4806. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend.py +0 -215
  4807. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
  4808. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  4809. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
  4810. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
  4811. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
  4812. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
  4813. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py +0 -450
  4814. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module.py +0 -338
  4815. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  4816. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4817. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_iterator.py +0 -77
  4818. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item.py +0 -327
  4819. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
  4820. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4821. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_iterator.py +0 -77
  4822. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module.py +0 -336
  4823. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -66
  4824. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4825. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_iterator.py +0 -79
  4826. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_job_kind.py +0 -22
  4827. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow.py +0 -190
  4828. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module.py +0 -410
  4829. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_mock.py +0 -66
  4830. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry.py +0 -121
  4831. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_constant.py +0 -66
  4832. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_exponential.py +0 -84
  4833. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
  4834. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_skip_if.py +0 -58
  4835. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
  4836. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
  4837. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
  4838. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
  4839. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend.py +0 -215
  4840. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -79
  4841. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
  4842. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
  4843. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
  4844. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
  4845. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
  4846. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item.py +0 -410
  4847. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_mock.py +0 -66
  4848. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry.py +0 -121
  4849. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_constant.py +0 -66
  4850. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
  4851. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
  4852. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_skip_if.py +0 -58
  4853. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
  4854. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
  4855. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
  4856. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
  4857. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend.py +0 -215
  4858. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -77
  4859. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
  4860. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  4861. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  4862. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
  4863. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
  4864. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module.py +0 -414
  4865. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_mock.py +0 -66
  4866. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry.py +0 -121
  4867. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -68
  4868. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -84
  4869. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
  4870. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
  4871. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
  4872. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
  4873. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  4874. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -78
  4875. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend.py +0 -215
  4876. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
  4877. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  4878. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
  4879. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
  4880. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
  4881. windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
  4882. windmill_api-1.542.3/windmill_api/models/get_tutorial_progress_response_200.py +0 -58
  4883. windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200.py +0 -336
  4884. windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry.py +0 -115
  4885. windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry_constant.py +0 -66
  4886. windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry_exponential.py +0 -82
  4887. windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry_retry_if.py +0 -58
  4888. windmill_api-1.542.3/windmill_api/models/github_installations_item.py +0 -98
  4889. windmill_api-1.542.3/windmill_api/models/global_user_info.py +0 -123
  4890. windmill_api-1.542.3/windmill_api/models/global_whoami_response_200.py +0 -123
  4891. windmill_api-1.542.3/windmill_api/models/http_trigger.py +0 -264
  4892. windmill_api-1.542.3/windmill_api/models/http_trigger_retry.py +0 -107
  4893. windmill_api-1.542.3/windmill_api/models/http_trigger_retry_constant.py +0 -66
  4894. windmill_api-1.542.3/windmill_api/models/http_trigger_retry_exponential.py +0 -82
  4895. windmill_api-1.542.3/windmill_api/models/http_trigger_retry_retry_if.py +0 -58
  4896. windmill_api-1.542.3/windmill_api/models/identity.py +0 -70
  4897. windmill_api-1.542.3/windmill_api/models/input_transform_type_0.py +0 -67
  4898. windmill_api-1.542.3/windmill_api/models/input_transform_type_1.py +0 -67
  4899. windmill_api-1.542.3/windmill_api/models/javascript_transform.py +0 -67
  4900. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4901. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4902. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_failure_module_iterator.py +0 -77
  4903. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4904. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4905. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_modules_item_iterator.py +0 -77
  4906. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  4907. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4908. windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_preprocessor_module_iterator.py +0 -77
  4909. windmill_api-1.542.3/windmill_api/models/job_type_0_job_kind.py +0 -22
  4910. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_mock.py +0 -66
  4911. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_retry_constant.py +0 -66
  4912. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
  4913. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
  4914. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_skip_if.py +0 -58
  4915. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_0.py +0 -67
  4916. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_1.py +0 -67
  4917. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  4918. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
  4919. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  4920. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
  4921. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
  4922. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_0.py +0 -67
  4923. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_1.py +0 -67
  4924. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_mock.py +0 -66
  4925. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_retry_constant.py +0 -66
  4926. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
  4927. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
  4928. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_skip_if.py +0 -58
  4929. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_0.py +0 -67
  4930. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_1.py +0 -67
  4931. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  4932. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
  4933. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  4934. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4935. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4936. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_0.py +0 -67
  4937. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_1.py +0 -67
  4938. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_mock.py +0 -66
  4939. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
  4940. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  4941. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  4942. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
  4943. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  4944. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  4945. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4946. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  4947. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  4948. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  4949. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  4950. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  4951. windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  4952. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  4953. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  4954. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_failure_module_iterator.py +0 -77
  4955. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  4956. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  4957. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_modules_item_iterator.py +0 -77
  4958. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  4959. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  4960. windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_preprocessor_module_iterator.py +0 -77
  4961. windmill_api-1.542.3/windmill_api/models/job_type_1_job_kind.py +0 -22
  4962. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_mock.py +0 -66
  4963. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_retry_constant.py +0 -66
  4964. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
  4965. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
  4966. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_skip_if.py +0 -58
  4967. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_0.py +0 -67
  4968. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_1.py +0 -67
  4969. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  4970. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
  4971. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  4972. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
  4973. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
  4974. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_0.py +0 -67
  4975. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_1.py +0 -67
  4976. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_mock.py +0 -66
  4977. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_retry_constant.py +0 -66
  4978. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
  4979. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
  4980. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_skip_if.py +0 -58
  4981. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_0.py +0 -67
  4982. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_1.py +0 -67
  4983. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  4984. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
  4985. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  4986. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  4987. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  4988. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_0.py +0 -67
  4989. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_1.py +0 -67
  4990. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_mock.py +0 -66
  4991. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
  4992. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  4993. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  4994. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
  4995. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  4996. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  4997. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  4998. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  4999. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  5000. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  5001. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  5002. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  5003. windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  5004. windmill_api-1.542.3/windmill_api/models/kafka_trigger.py +0 -223
  5005. windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry.py +0 -107
  5006. windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry_constant.py +0 -66
  5007. windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry_exponential.py +0 -82
  5008. windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry_retry_if.py +0 -58
  5009. windmill_api-1.542.3/windmill_api/models/large_file_storage.py +0 -120
  5010. windmill_api-1.542.3/windmill_api/models/list_assets_by_usage_response_200_item_item_kind.py +0 -10
  5011. windmill_api-1.542.3/windmill_api/models/list_assets_response_200_item_kind.py +0 -10
  5012. windmill_api-1.542.3/windmill_api/models/list_audit_logs_response_200_item.py +0 -133
  5013. windmill_api-1.542.3/windmill_api/models/list_available_teams_channels_response_200_item.py +0 -82
  5014. windmill_api-1.542.3/windmill_api/models/list_available_teams_ids_response_200_item.py +0 -66
  5015. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item.py +0 -406
  5016. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module.py +0 -336
  5017. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  5018. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5019. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_iterator.py +0 -77
  5020. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item.py +0 -324
  5021. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
  5022. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5023. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_iterator.py +0 -77
  5024. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module.py +0 -329
  5025. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  5026. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5027. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_iterator.py +0 -77
  5028. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_job_kind.py +0 -22
  5029. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow.py +0 -190
  5030. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module.py +0 -401
  5031. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_mock.py +0 -66
  5032. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry.py +0 -119
  5033. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_constant.py +0 -66
  5034. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_exponential.py +0 -82
  5035. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_retry_if.py +0 -58
  5036. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_skip_if.py +0 -58
  5037. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_0.py +0 -69
  5038. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_1.py +0 -69
  5039. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  5040. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_if.py +0 -76
  5041. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend.py +0 -215
  5042. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form.py +0 -75
  5043. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
  5044. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  5045. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  5046. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_0.py +0 -69
  5047. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_1.py +0 -69
  5048. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item.py +0 -399
  5049. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_mock.py +0 -66
  5050. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry.py +0 -119
  5051. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_constant.py +0 -66
  5052. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_exponential.py +0 -82
  5053. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_retry_if.py +0 -58
  5054. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_skip_if.py +0 -58
  5055. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_0.py +0 -69
  5056. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_1.py +0 -69
  5057. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  5058. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_if.py +0 -76
  5059. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend.py +0 -213
  5060. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form.py +0 -75
  5061. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  5062. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  5063. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  5064. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_0.py +0 -69
  5065. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_1.py +0 -69
  5066. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module.py +0 -410
  5067. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_mock.py +0 -66
  5068. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry.py +0 -121
  5069. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_constant.py +0 -66
  5070. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  5071. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  5072. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_skip_if.py +0 -58
  5073. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  5074. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  5075. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  5076. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  5077. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend.py +0 -215
  5078. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  5079. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  5080. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
  5081. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
  5082. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  5083. windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  5084. windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item.py +0 -184
  5085. windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry.py +0 -119
  5086. windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry_constant.py +0 -66
  5087. windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry_exponential.py +0 -82
  5088. windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry_retry_if.py +0 -58
  5089. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +0 -436
  5090. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module.py +0 -340
  5091. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  5092. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5093. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_iterator.py +0 -77
  5094. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item.py +0 -329
  5095. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
  5096. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5097. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_iterator.py +0 -77
  5098. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module.py +0 -338
  5099. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -70
  5100. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5101. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +0 -79
  5102. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_job_kind.py +0 -22
  5103. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow.py +0 -190
  5104. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module.py +0 -410
  5105. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_mock.py +0 -66
  5106. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry.py +0 -121
  5107. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +0 -68
  5108. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +0 -84
  5109. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +0 -60
  5110. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_skip_if.py +0 -58
  5111. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
  5112. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
  5113. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
  5114. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
  5115. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend.py +0 -213
  5116. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -79
  5117. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
  5118. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
  5119. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
  5120. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +0 -71
  5121. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +0 -71
  5122. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item.py +0 -410
  5123. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_mock.py +0 -66
  5124. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry.py +0 -121
  5125. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +0 -66
  5126. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +0 -84
  5127. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
  5128. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_skip_if.py +0 -58
  5129. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
  5130. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
  5131. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
  5132. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
  5133. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend.py +0 -215
  5134. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -79
  5135. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
  5136. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -77
  5137. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -77
  5138. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
  5139. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
  5140. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module.py +0 -418
  5141. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +0 -66
  5142. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +0 -127
  5143. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -68
  5144. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -84
  5145. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
  5146. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
  5147. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
  5148. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
  5149. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  5150. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -78
  5151. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +0 -216
  5152. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
  5153. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  5154. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -75
  5155. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -75
  5156. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
  5157. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
  5158. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py +0 -452
  5159. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module.py +0 -340
  5160. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  5161. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5162. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_iterator.py +0 -77
  5163. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item.py +0 -329
  5164. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
  5165. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5166. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_iterator.py +0 -77
  5167. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module.py +0 -338
  5168. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -70
  5169. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5170. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +0 -79
  5171. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_job_kind.py +0 -22
  5172. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow.py +0 -190
  5173. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module.py +0 -410
  5174. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_mock.py +0 -66
  5175. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry.py +0 -121
  5176. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +0 -68
  5177. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +0 -84
  5178. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +0 -60
  5179. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_skip_if.py +0 -58
  5180. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
  5181. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
  5182. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
  5183. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
  5184. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend.py +0 -213
  5185. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -79
  5186. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
  5187. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
  5188. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
  5189. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +0 -71
  5190. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +0 -71
  5191. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item.py +0 -410
  5192. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_mock.py +0 -66
  5193. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry.py +0 -121
  5194. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +0 -66
  5195. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +0 -84
  5196. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
  5197. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_skip_if.py +0 -58
  5198. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
  5199. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
  5200. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
  5201. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
  5202. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend.py +0 -215
  5203. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -79
  5204. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
  5205. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -77
  5206. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -77
  5207. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
  5208. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
  5209. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module.py +0 -418
  5210. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +0 -66
  5211. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +0 -127
  5212. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -68
  5213. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -84
  5214. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
  5215. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
  5216. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
  5217. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
  5218. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  5219. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -78
  5220. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +0 -216
  5221. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
  5222. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  5223. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -75
  5224. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -75
  5225. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
  5226. windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
  5227. windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item.py +0 -270
  5228. windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry.py +0 -115
  5229. windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry_constant.py +0 -66
  5230. windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry_exponential.py +0 -82
  5231. windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry_retry_if.py +0 -58
  5232. windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item.py +0 -275
  5233. windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry.py +0 -117
  5234. windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry_constant.py +0 -66
  5235. windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry_exponential.py +0 -82
  5236. windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry_retry_if.py +0 -58
  5237. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0.py +0 -420
  5238. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module.py +0 -333
  5239. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  5240. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5241. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_iterator.py +0 -77
  5242. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item.py +0 -323
  5243. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  5244. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5245. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_iterator.py +0 -77
  5246. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module.py +0 -327
  5247. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  5248. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5249. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_iterator.py +0 -77
  5250. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_job_kind.py +0 -22
  5251. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow.py +0 -188
  5252. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module.py +0 -395
  5253. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_mock.py +0 -66
  5254. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry.py +0 -119
  5255. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_constant.py +0 -66
  5256. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
  5257. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
  5258. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_skip_if.py +0 -58
  5259. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
  5260. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
  5261. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  5262. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
  5263. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend.py +0 -213
  5264. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -75
  5265. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  5266. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  5267. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  5268. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
  5269. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
  5270. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item.py +0 -395
  5271. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_mock.py +0 -66
  5272. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry.py +0 -119
  5273. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_constant.py +0 -66
  5274. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
  5275. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
  5276. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_skip_if.py +0 -58
  5277. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
  5278. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
  5279. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  5280. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
  5281. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend.py +0 -213
  5282. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -75
  5283. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  5284. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  5285. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  5286. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
  5287. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
  5288. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module.py +0 -404
  5289. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_mock.py +0 -66
  5290. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry.py +0 -119
  5291. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
  5292. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  5293. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  5294. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
  5295. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  5296. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  5297. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  5298. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  5299. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend.py +0 -215
  5300. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  5301. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  5302. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  5303. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  5304. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  5305. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  5306. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1.py +0 -436
  5307. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module.py +0 -333
  5308. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
  5309. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5310. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_iterator.py +0 -77
  5311. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item.py +0 -323
  5312. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  5313. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5314. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_iterator.py +0 -77
  5315. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module.py +0 -327
  5316. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
  5317. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5318. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_iterator.py +0 -77
  5319. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_job_kind.py +0 -22
  5320. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow.py +0 -188
  5321. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module.py +0 -395
  5322. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_mock.py +0 -66
  5323. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry.py +0 -119
  5324. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_constant.py +0 -66
  5325. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
  5326. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
  5327. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_skip_if.py +0 -58
  5328. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
  5329. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
  5330. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  5331. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
  5332. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend.py +0 -213
  5333. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -75
  5334. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  5335. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  5336. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  5337. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
  5338. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
  5339. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item.py +0 -395
  5340. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_mock.py +0 -66
  5341. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry.py +0 -119
  5342. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_constant.py +0 -66
  5343. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
  5344. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
  5345. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_skip_if.py +0 -58
  5346. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
  5347. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
  5348. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  5349. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
  5350. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend.py +0 -213
  5351. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -75
  5352. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  5353. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
  5354. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
  5355. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
  5356. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
  5357. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module.py +0 -404
  5358. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_mock.py +0 -66
  5359. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry.py +0 -119
  5360. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
  5361. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  5362. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  5363. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
  5364. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  5365. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  5366. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
  5367. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  5368. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend.py +0 -215
  5369. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  5370. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
  5371. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  5372. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  5373. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  5374. windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  5375. windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item.py +0 -230
  5376. windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry.py +0 -119
  5377. windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry_constant.py +0 -66
  5378. windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry_exponential.py +0 -82
  5379. windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry_retry_if.py +0 -58
  5380. windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item.py +0 -299
  5381. windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry.py +0 -117
  5382. windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry_constant.py +0 -66
  5383. windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry_exponential.py +0 -82
  5384. windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry_retry_if.py +0 -58
  5385. windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item.py +0 -244
  5386. windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry.py +0 -117
  5387. windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry_constant.py +0 -66
  5388. windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry_exponential.py +0 -82
  5389. windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry_retry_if.py +0 -58
  5390. windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item.py +0 -231
  5391. windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry.py +0 -119
  5392. windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry_constant.py +0 -66
  5393. windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry_exponential.py +0 -82
  5394. windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry_retry_if.py +0 -58
  5395. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item.py +0 -418
  5396. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module.py +0 -330
  5397. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  5398. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5399. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_iterator.py +0 -77
  5400. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item.py +0 -321
  5401. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  5402. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5403. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_iterator.py +0 -77
  5404. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module.py +0 -324
  5405. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  5406. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5407. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_iterator.py +0 -77
  5408. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_job_kind.py +0 -22
  5409. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow.py +0 -186
  5410. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module.py +0 -393
  5411. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_mock.py +0 -66
  5412. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry.py +0 -119
  5413. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_constant.py +0 -66
  5414. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_exponential.py +0 -82
  5415. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_retry_if.py +0 -58
  5416. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_skip_if.py +0 -58
  5417. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_0.py +0 -69
  5418. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_1.py +0 -69
  5419. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  5420. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_if.py +0 -76
  5421. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend.py +0 -213
  5422. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form.py +0 -75
  5423. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  5424. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
  5425. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
  5426. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_0.py +0 -69
  5427. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_1.py +0 -69
  5428. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item.py +0 -393
  5429. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_mock.py +0 -66
  5430. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry.py +0 -119
  5431. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_constant.py +0 -66
  5432. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_exponential.py +0 -82
  5433. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_retry_if.py +0 -58
  5434. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_skip_if.py +0 -58
  5435. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_0.py +0 -69
  5436. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_1.py +0 -69
  5437. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  5438. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_if.py +0 -76
  5439. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend.py +0 -213
  5440. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form.py +0 -75
  5441. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  5442. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  5443. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  5444. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_0.py +0 -69
  5445. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_1.py +0 -69
  5446. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module.py +0 -399
  5447. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_mock.py +0 -66
  5448. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry.py +0 -119
  5449. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_constant.py +0 -66
  5450. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  5451. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  5452. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_skip_if.py +0 -58
  5453. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  5454. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  5455. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  5456. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  5457. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend.py +0 -213
  5458. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  5459. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  5460. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  5461. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  5462. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  5463. windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  5464. windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item.py +0 -358
  5465. windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry.py +0 -109
  5466. windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry_constant.py +0 -66
  5467. windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry_exponential.py +0 -82
  5468. windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry_retry_if.py +0 -58
  5469. windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item.py +0 -393
  5470. windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry.py +0 -119
  5471. windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_constant.py +0 -66
  5472. windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_exponential.py +0 -82
  5473. windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_retry_if.py +0 -58
  5474. windmill_api-1.542.3/windmill_api/models/list_scripts_response_200_item.py +0 -372
  5475. windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item.py +0 -242
  5476. windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry.py +0 -115
  5477. windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry_constant.py +0 -66
  5478. windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry_exponential.py +0 -82
  5479. windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry_retry_if.py +0 -58
  5480. windmill_api-1.542.3/windmill_api/models/list_user_workspaces_response_200_workspaces_item.py +0 -127
  5481. windmill_api-1.542.3/windmill_api/models/list_users_as_super_admin_response_200_item.py +0 -125
  5482. windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item.py +0 -346
  5483. windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry.py +0 -119
  5484. windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry_constant.py +0 -66
  5485. windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry_exponential.py +0 -82
  5486. windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry_retry_if.py +0 -58
  5487. windmill_api-1.542.3/windmill_api/models/list_workers_response_200_item.py +0 -204
  5488. windmill_api-1.542.3/windmill_api/models/mqtt_trigger.py +0 -288
  5489. windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry.py +0 -107
  5490. windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry_constant.py +0 -66
  5491. windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry_exponential.py +0 -82
  5492. windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry_retry_if.py +0 -58
  5493. windmill_api-1.542.3/windmill_api/models/nats_trigger.py +0 -239
  5494. windmill_api-1.542.3/windmill_api/models/nats_trigger_retry.py +0 -107
  5495. windmill_api-1.542.3/windmill_api/models/nats_trigger_retry_constant.py +0 -66
  5496. windmill_api-1.542.3/windmill_api/models/nats_trigger_retry_exponential.py +0 -82
  5497. windmill_api-1.542.3/windmill_api/models/nats_trigger_retry_retry_if.py +0 -58
  5498. windmill_api-1.542.3/windmill_api/models/new_email_trigger.py +0 -136
  5499. windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry.py +0 -107
  5500. windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry_constant.py +0 -66
  5501. windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry_exponential.py +0 -82
  5502. windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry_retry_if.py +0 -58
  5503. windmill_api-1.542.3/windmill_api/models/new_http_trigger.py +0 -226
  5504. windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry.py +0 -107
  5505. windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry_constant.py +0 -66
  5506. windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry_exponential.py +0 -82
  5507. windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry_retry_if.py +0 -58
  5508. windmill_api-1.542.3/windmill_api/models/new_kafka_trigger.py +0 -151
  5509. windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry.py +0 -107
  5510. windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry_constant.py +0 -66
  5511. windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry_exponential.py +0 -82
  5512. windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry_retry_if.py +0 -58
  5513. windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger.py +0 -216
  5514. windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry.py +0 -107
  5515. windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry_constant.py +0 -66
  5516. windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry_exponential.py +0 -82
  5517. windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry_retry_if.py +0 -58
  5518. windmill_api-1.542.3/windmill_api/models/new_nats_trigger.py +0 -167
  5519. windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry.py +0 -107
  5520. windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry_constant.py +0 -66
  5521. windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry_exponential.py +0 -82
  5522. windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry_retry_if.py +0 -58
  5523. windmill_api-1.542.3/windmill_api/models/new_postgres_trigger.py +0 -170
  5524. windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry.py +0 -107
  5525. windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry_constant.py +0 -66
  5526. windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry_exponential.py +0 -82
  5527. windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry_retry_if.py +0 -58
  5528. windmill_api-1.542.3/windmill_api/models/new_schedule.py +0 -297
  5529. windmill_api-1.542.3/windmill_api/models/new_schedule_retry.py +0 -108
  5530. windmill_api-1.542.3/windmill_api/models/new_schedule_retry_constant.py +0 -66
  5531. windmill_api-1.542.3/windmill_api/models/new_schedule_retry_exponential.py +0 -82
  5532. windmill_api-1.542.3/windmill_api/models/new_schedule_retry_retry_if.py +0 -58
  5533. windmill_api-1.542.3/windmill_api/models/new_script.py +0 -329
  5534. windmill_api-1.542.3/windmill_api/models/new_script_assets_item_kind.py +0 -10
  5535. windmill_api-1.542.3/windmill_api/models/new_script_with_draft.py +0 -354
  5536. windmill_api-1.542.3/windmill_api/models/new_script_with_draft_assets_item_kind.py +0 -10
  5537. windmill_api-1.542.3/windmill_api/models/new_script_with_draft_draft.py +0 -329
  5538. windmill_api-1.542.3/windmill_api/models/new_script_with_draft_draft_assets_item_kind.py +0 -10
  5539. windmill_api-1.542.3/windmill_api/models/new_sqs_trigger.py +0 -163
  5540. windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry.py +0 -107
  5541. windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry_constant.py +0 -66
  5542. windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry_exponential.py +0 -82
  5543. windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry_retry_if.py +0 -58
  5544. windmill_api-1.542.3/windmill_api/models/new_websocket_trigger.py +0 -241
  5545. windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry.py +0 -107
  5546. windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry_constant.py +0 -66
  5547. windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry_exponential.py +0 -82
  5548. windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry_retry_if.py +0 -58
  5549. windmill_api-1.542.3/windmill_api/models/open_flow.py +0 -99
  5550. windmill_api-1.542.3/windmill_api/models/open_flow_schema.py +0 -44
  5551. windmill_api-1.542.3/windmill_api/models/open_flow_value.py +0 -176
  5552. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module.py +0 -333
  5553. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_mock.py +0 -66
  5554. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry.py +0 -107
  5555. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry_constant.py +0 -66
  5556. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry_exponential.py +0 -82
  5557. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry_retry_if.py +0 -58
  5558. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_skip_if.py +0 -58
  5559. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_sleep_type_0.py +0 -67
  5560. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_sleep_type_1.py +0 -67
  5561. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_stop_after_all_iters_if.py +0 -76
  5562. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_stop_after_if.py +0 -76
  5563. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend.py +0 -201
  5564. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_resume_form.py +0 -75
  5565. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_resume_form_schema.py +0 -44
  5566. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  5567. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  5568. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_timeout_type_0.py +0 -67
  5569. windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_timeout_type_1.py +0 -67
  5570. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item.py +0 -333
  5571. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_mock.py +0 -66
  5572. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry.py +0 -107
  5573. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry_constant.py +0 -66
  5574. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry_exponential.py +0 -82
  5575. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry_retry_if.py +0 -58
  5576. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_skip_if.py +0 -58
  5577. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_sleep_type_0.py +0 -67
  5578. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_sleep_type_1.py +0 -67
  5579. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_stop_after_all_iters_if.py +0 -76
  5580. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_stop_after_if.py +0 -76
  5581. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend.py +0 -199
  5582. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_resume_form.py +0 -75
  5583. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_resume_form_schema.py +0 -44
  5584. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  5585. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  5586. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_timeout_type_0.py +0 -67
  5587. windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_timeout_type_1.py +0 -67
  5588. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module.py +0 -348
  5589. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_mock.py +0 -66
  5590. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry.py +0 -115
  5591. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry_constant.py +0 -66
  5592. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry_exponential.py +0 -82
  5593. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry_retry_if.py +0 -58
  5594. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_skip_if.py +0 -58
  5595. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_0.py +0 -67
  5596. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_1.py +0 -67
  5597. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  5598. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_stop_after_if.py +0 -76
  5599. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend.py +0 -205
  5600. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form.py +0 -75
  5601. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
  5602. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  5603. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  5604. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_0.py +0 -69
  5605. windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_1.py +0 -69
  5606. windmill_api-1.542.3/windmill_api/models/open_flow_w_path.py +0 -163
  5607. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_schema.py +0 -44
  5608. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value.py +0 -176
  5609. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module.py +0 -358
  5610. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_mock.py +0 -66
  5611. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry.py +0 -119
  5612. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry_constant.py +0 -66
  5613. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry_exponential.py +0 -82
  5614. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry_retry_if.py +0 -58
  5615. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_skip_if.py +0 -58
  5616. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_0.py +0 -69
  5617. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_1.py +0 -69
  5618. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_all_iters_if.py +0 -76
  5619. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_if.py +0 -76
  5620. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend.py +0 -205
  5621. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form.py +0 -75
  5622. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form_schema.py +0 -44
  5623. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  5624. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  5625. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_0.py +0 -69
  5626. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_1.py +0 -69
  5627. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item.py +0 -344
  5628. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_mock.py +0 -66
  5629. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry.py +0 -115
  5630. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry_constant.py +0 -66
  5631. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry_exponential.py +0 -82
  5632. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry_retry_if.py +0 -58
  5633. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_skip_if.py +0 -58
  5634. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_0.py +0 -67
  5635. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_1.py +0 -67
  5636. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_all_iters_if.py +0 -76
  5637. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_if.py +0 -76
  5638. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend.py +0 -203
  5639. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form.py +0 -75
  5640. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form_schema.py +0 -44
  5641. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  5642. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  5643. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_0.py +0 -69
  5644. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_1.py +0 -69
  5645. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module.py +0 -375
  5646. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_mock.py +0 -66
  5647. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry.py +0 -119
  5648. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_constant.py +0 -66
  5649. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_exponential.py +0 -82
  5650. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_retry_if.py +0 -58
  5651. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_skip_if.py +0 -58
  5652. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_0.py +0 -69
  5653. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_1.py +0 -69
  5654. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  5655. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_if.py +0 -76
  5656. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend.py +0 -211
  5657. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form.py +0 -75
  5658. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
  5659. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  5660. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  5661. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_0.py +0 -69
  5662. windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_1.py +0 -69
  5663. windmill_api-1.542.3/windmill_api/models/openai_sync_flow_by_path_json_body.py +0 -44
  5664. windmill_api-1.542.3/windmill_api/models/openai_sync_script_by_path_json_body.py +0 -44
  5665. windmill_api-1.542.3/windmill_api/models/path_flow.py +0 -81
  5666. windmill_api-1.542.3/windmill_api/models/path_flow_input_transforms.py +0 -106
  5667. windmill_api-1.542.3/windmill_api/models/path_flow_input_transforms_additional_property_type_0.py +0 -69
  5668. windmill_api-1.542.3/windmill_api/models/path_flow_input_transforms_additional_property_type_1.py +0 -69
  5669. windmill_api-1.542.3/windmill_api/models/path_script.py +0 -107
  5670. windmill_api-1.542.3/windmill_api/models/path_script_input_transforms.py +0 -107
  5671. windmill_api-1.542.3/windmill_api/models/path_script_input_transforms_additional_property_type_0.py +0 -69
  5672. windmill_api-1.542.3/windmill_api/models/path_script_input_transforms_additional_property_type_1.py +0 -69
  5673. windmill_api-1.542.3/windmill_api/models/postgres_trigger.py +0 -222
  5674. windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry.py +0 -107
  5675. windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry_constant.py +0 -66
  5676. windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry_exponential.py +0 -82
  5677. windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry_retry_if.py +0 -58
  5678. windmill_api-1.542.3/windmill_api/models/queued_job.py +0 -414
  5679. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module.py +0 -314
  5680. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
  5681. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
  5682. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module_iterator.py +0 -77
  5683. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item.py +0 -301
  5684. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
  5685. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
  5686. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item_iterator.py +0 -77
  5687. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module.py +0 -315
  5688. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
  5689. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
  5690. windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module_iterator.py +0 -77
  5691. windmill_api-1.542.3/windmill_api/models/queued_job_job_kind.py +0 -22
  5692. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow.py +0 -176
  5693. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module.py +0 -338
  5694. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_mock.py +0 -66
  5695. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry.py +0 -113
  5696. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry_constant.py +0 -66
  5697. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry_exponential.py +0 -82
  5698. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry_retry_if.py +0 -58
  5699. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_skip_if.py +0 -58
  5700. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_0.py +0 -67
  5701. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_1.py +0 -67
  5702. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
  5703. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_if.py +0 -76
  5704. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend.py +0 -203
  5705. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form.py +0 -75
  5706. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
  5707. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
  5708. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
  5709. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_0.py +0 -69
  5710. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_1.py +0 -69
  5711. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item.py +0 -333
  5712. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_mock.py +0 -66
  5713. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry.py +0 -109
  5714. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry_constant.py +0 -66
  5715. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry_exponential.py +0 -82
  5716. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry_retry_if.py +0 -58
  5717. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_skip_if.py +0 -58
  5718. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_0.py +0 -67
  5719. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_1.py +0 -67
  5720. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
  5721. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_if.py +0 -76
  5722. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend.py +0 -203
  5723. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form.py +0 -75
  5724. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
  5725. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  5726. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  5727. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_0.py +0 -67
  5728. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_1.py +0 -67
  5729. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module.py +0 -369
  5730. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_mock.py +0 -66
  5731. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry.py +0 -119
  5732. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_constant.py +0 -66
  5733. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_exponential.py +0 -82
  5734. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
  5735. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_skip_if.py +0 -58
  5736. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
  5737. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
  5738. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
  5739. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_if.py +0 -76
  5740. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend.py +0 -209
  5741. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
  5742. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
  5743. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
  5744. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
  5745. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
  5746. windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
  5747. windmill_api-1.542.3/windmill_api/models/raw_script.py +0 -169
  5748. windmill_api-1.542.3/windmill_api/models/raw_script_assets_item.py +0 -102
  5749. windmill_api-1.542.3/windmill_api/models/raw_script_assets_item_kind.py +0 -10
  5750. windmill_api-1.542.3/windmill_api/models/raw_script_input_transforms.py +0 -106
  5751. windmill_api-1.542.3/windmill_api/models/raw_script_input_transforms_additional_property_type_0.py +0 -69
  5752. windmill_api-1.542.3/windmill_api/models/raw_script_input_transforms_additional_property_type_1.py +0 -69
  5753. windmill_api-1.542.3/windmill_api/models/restart_flow_at_step_json_body.py +0 -44
  5754. windmill_api-1.542.3/windmill_api/models/restarted_from.py +0 -74
  5755. windmill_api-1.542.3/windmill_api/models/retry.py +0 -107
  5756. windmill_api-1.542.3/windmill_api/models/retry_constant.py +0 -66
  5757. windmill_api-1.542.3/windmill_api/models/retry_exponential.py +0 -82
  5758. windmill_api-1.542.3/windmill_api/models/retry_if.py +0 -58
  5759. windmill_api-1.542.3/windmill_api/models/retry_retry_if.py +0 -58
  5760. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body.py +0 -114
  5761. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_restarted_from.py +0 -74
  5762. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value.py +0 -190
  5763. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module.py +0 -404
  5764. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_mock.py +0 -66
  5765. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry.py +0 -119
  5766. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_constant.py +0 -66
  5767. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_exponential.py +0 -82
  5768. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_retry_if.py +0 -58
  5769. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_skip_if.py +0 -58
  5770. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_0.py +0 -69
  5771. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_1.py +0 -69
  5772. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_all_iters_if.py +0 -78
  5773. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_if.py +0 -76
  5774. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend.py +0 -215
  5775. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form.py +0 -75
  5776. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form_schema.py +0 -46
  5777. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_0.py +0 -71
  5778. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_1.py +0 -71
  5779. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_0.py +0 -69
  5780. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_1.py +0 -69
  5781. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item.py +0 -401
  5782. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_mock.py +0 -66
  5783. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry.py +0 -119
  5784. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_constant.py +0 -66
  5785. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_exponential.py +0 -82
  5786. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_retry_if.py +0 -58
  5787. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_skip_if.py +0 -58
  5788. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_0.py +0 -69
  5789. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_1.py +0 -69
  5790. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_all_iters_if.py +0 -76
  5791. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_if.py +0 -76
  5792. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend.py +0 -213
  5793. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form.py +0 -75
  5794. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form_schema.py +0 -46
  5795. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_0.py +0 -71
  5796. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_1.py +0 -71
  5797. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_0.py +0 -69
  5798. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_1.py +0 -69
  5799. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module.py +0 -410
  5800. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_mock.py +0 -66
  5801. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry.py +0 -121
  5802. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_constant.py +0 -66
  5803. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_exponential.py +0 -82
  5804. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_retry_if.py +0 -58
  5805. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_skip_if.py +0 -58
  5806. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_0.py +0 -69
  5807. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_1.py +0 -69
  5808. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_all_iters_if.py +0 -78
  5809. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_if.py +0 -76
  5810. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend.py +0 -215
  5811. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form.py +0 -79
  5812. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form_schema.py +0 -46
  5813. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
  5814. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
  5815. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_0.py +0 -69
  5816. windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_1.py +0 -69
  5817. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body.py +0 -110
  5818. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_restarted_from.py +0 -74
  5819. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value.py +0 -180
  5820. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module.py +0 -393
  5821. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_mock.py +0 -66
  5822. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry.py +0 -119
  5823. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_constant.py +0 -66
  5824. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_exponential.py +0 -82
  5825. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_retry_if.py +0 -58
  5826. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_skip_if.py +0 -58
  5827. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_0.py +0 -69
  5828. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_1.py +0 -69
  5829. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_all_iters_if.py +0 -76
  5830. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_if.py +0 -76
  5831. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend.py +0 -213
  5832. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form.py +0 -75
  5833. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form_schema.py +0 -44
  5834. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
  5835. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
  5836. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_0.py +0 -69
  5837. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_1.py +0 -69
  5838. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item.py +0 -387
  5839. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_mock.py +0 -66
  5840. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry.py +0 -119
  5841. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_constant.py +0 -66
  5842. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_exponential.py +0 -82
  5843. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_retry_if.py +0 -58
  5844. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_skip_if.py +0 -58
  5845. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_0.py +0 -69
  5846. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_1.py +0 -69
  5847. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_all_iters_if.py +0 -76
  5848. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_if.py +0 -76
  5849. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend.py +0 -213
  5850. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form.py +0 -75
  5851. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form_schema.py +0 -44
  5852. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
  5853. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
  5854. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_0.py +0 -69
  5855. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_1.py +0 -69
  5856. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module.py +0 -395
  5857. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_mock.py +0 -66
  5858. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry.py +0 -119
  5859. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_constant.py +0 -66
  5860. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_exponential.py +0 -82
  5861. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_retry_if.py +0 -58
  5862. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_skip_if.py +0 -58
  5863. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_0.py +0 -69
  5864. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_1.py +0 -69
  5865. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
  5866. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_if.py +0 -76
  5867. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend.py +0 -213
  5868. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form.py +0 -75
  5869. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
  5870. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
  5871. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
  5872. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_0.py +0 -69
  5873. windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_1.py +0 -69
  5874. windmill_api-1.542.3/windmill_api/models/schedule.py +0 -343
  5875. windmill_api-1.542.3/windmill_api/models/schedule_retry.py +0 -107
  5876. windmill_api-1.542.3/windmill_api/models/schedule_retry_constant.py +0 -66
  5877. windmill_api-1.542.3/windmill_api/models/schedule_retry_exponential.py +0 -82
  5878. windmill_api-1.542.3/windmill_api/models/schedule_retry_retry_if.py +0 -58
  5879. windmill_api-1.542.3/windmill_api/models/schedule_w_jobs.py +0 -367
  5880. windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry.py +0 -107
  5881. windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry_constant.py +0 -66
  5882. windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry_exponential.py +0 -82
  5883. windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry_retry_if.py +0 -58
  5884. windmill_api-1.542.3/windmill_api/models/script.py +0 -372
  5885. windmill_api-1.542.3/windmill_api/models/set_gcp_trigger_enabled_json_body.py +0 -58
  5886. windmill_api-1.542.3/windmill_api/models/set_kafka_trigger_enabled_json_body.py +0 -58
  5887. windmill_api-1.542.3/windmill_api/models/set_mqtt_trigger_enabled_json_body.py +0 -58
  5888. windmill_api-1.542.3/windmill_api/models/set_nats_trigger_enabled_json_body.py +0 -58
  5889. windmill_api-1.542.3/windmill_api/models/set_postgres_trigger_enabled_json_body.py +0 -58
  5890. windmill_api-1.542.3/windmill_api/models/set_sqs_trigger_enabled_json_body.py +0 -58
  5891. windmill_api-1.542.3/windmill_api/models/set_websocket_trigger_enabled_json_body.py +0 -58
  5892. windmill_api-1.542.3/windmill_api/models/sqs_trigger.py +0 -235
  5893. windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry.py +0 -107
  5894. windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry_constant.py +0 -66
  5895. windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry_exponential.py +0 -82
  5896. windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry_retry_if.py +0 -58
  5897. windmill_api-1.542.3/windmill_api/models/static_transform.py +0 -67
  5898. windmill_api-1.542.3/windmill_api/models/stop_after_if.py +0 -76
  5899. windmill_api-1.542.3/windmill_api/models/sync_teams_response_200_item.py +0 -87
  5900. windmill_api-1.542.3/windmill_api/models/sync_teams_response_200_item_channels_item.py +0 -80
  5901. windmill_api-1.542.3/windmill_api/models/trigger_extra_property.py +0 -117
  5902. windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body.py +0 -140
  5903. windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry.py +0 -107
  5904. windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry_constant.py +0 -66
  5905. windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry_exponential.py +0 -82
  5906. windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry_retry_if.py +0 -58
  5907. windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body.py +0 -213
  5908. windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry.py +0 -107
  5909. windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry_constant.py +0 -66
  5910. windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry_exponential.py +0 -82
  5911. windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry_retry_if.py +0 -58
  5912. windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body.py +0 -230
  5913. windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry.py +0 -107
  5914. windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry_constant.py +0 -66
  5915. windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry_exponential.py +0 -82
  5916. windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry_retry_if.py +0 -58
  5917. windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body.py +0 -146
  5918. windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry.py +0 -107
  5919. windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry_constant.py +0 -66
  5920. windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry_exponential.py +0 -82
  5921. windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry_retry_if.py +0 -58
  5922. windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body.py +0 -220
  5923. windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry.py +0 -107
  5924. windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry_constant.py +0 -66
  5925. windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry_exponential.py +0 -82
  5926. windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry_retry_if.py +0 -58
  5927. windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body.py +0 -160
  5928. windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry.py +0 -107
  5929. windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry_constant.py +0 -66
  5930. windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry_exponential.py +0 -82
  5931. windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry_retry_if.py +0 -58
  5932. windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body.py +0 -172
  5933. windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry.py +0 -111
  5934. windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry_constant.py +0 -66
  5935. windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry_exponential.py +0 -82
  5936. windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry_retry_if.py +0 -58
  5937. windmill_api-1.542.3/windmill_api/models/update_schedule_json_body.py +0 -270
  5938. windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry.py +0 -108
  5939. windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry_constant.py +0 -66
  5940. windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry_exponential.py +0 -82
  5941. windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry_retry_if.py +0 -58
  5942. windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body.py +0 -163
  5943. windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry.py +0 -107
  5944. windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry_constant.py +0 -66
  5945. windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry_exponential.py +0 -82
  5946. windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry_retry_if.py +0 -58
  5947. windmill_api-1.542.3/windmill_api/models/update_tutorial_progress_json_body.py +0 -58
  5948. windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body.py +0 -256
  5949. windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry.py +0 -115
  5950. windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry_constant.py +0 -66
  5951. windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry_exponential.py +0 -82
  5952. windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry_retry_if.py +0 -58
  5953. windmill_api-1.542.3/windmill_api/models/upload_file_part.py +0 -65
  5954. windmill_api-1.542.3/windmill_api/models/user_workspace_list_workspaces_item.py +0 -125
  5955. windmill_api-1.542.3/windmill_api/models/websocket_trigger.py +0 -305
  5956. windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry.py +0 -107
  5957. windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry_constant.py +0 -66
  5958. windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry_exponential.py +0 -82
  5959. windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry_retry_if.py +0 -58
  5960. windmill_api-1.542.3/windmill_api/models/whileloop_flow.py +0 -108
  5961. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item.py +0 -331
  5962. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_mock.py +0 -66
  5963. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry.py +0 -107
  5964. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry_constant.py +0 -66
  5965. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry_exponential.py +0 -82
  5966. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry_retry_if.py +0 -58
  5967. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_skip_if.py +0 -58
  5968. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_sleep_type_0.py +0 -67
  5969. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_sleep_type_1.py +0 -67
  5970. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_stop_after_all_iters_if.py +0 -76
  5971. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_stop_after_if.py +0 -76
  5972. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend.py +0 -199
  5973. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form.py +0 -75
  5974. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form_schema.py +0 -44
  5975. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
  5976. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
  5977. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_timeout_type_0.py +0 -67
  5978. windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_timeout_type_1.py +0 -67
  5979. windmill_api-1.542.3/windmill_api/models/worker_ping.py +0 -204
  5980. {windmill_api-1.542.3 → windmill_api-1.603.0}/LICENSE +0 -0
  5981. {windmill_api-1.542.3 → windmill_api-1.603.0}/README.md +0 -0
  5982. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/__init__.py +0 -0
  5983. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/__init__.py +0 -0
  5984. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/__init__.py +0 -0
  5985. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/blacklist_agent_token.py +0 -0
  5986. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/create_agent_token.py +0 -0
  5987. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/list_blacklisted_agent_tokens.py +0 -0
  5988. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/remove_blacklist_agent_token.py +0 -0
  5989. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/__init__.py +0 -0
  5990. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/create_app.py +0 -0
  5991. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/create_app_raw.py +0 -0
  5992. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/custom_path_exists.py +0 -0
  5993. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/delete_app.py +0 -0
  5994. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/delete_s3_file_from_app.py +0 -0
  5995. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/execute_component.py +0 -0
  5996. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/exists_app.py +0 -0
  5997. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_by_path.py +0 -0
  5998. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_by_path_with_draft.py +0 -0
  5999. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_by_version.py +0 -0
  6000. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_history_by_path.py +0 -0
  6001. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_latest_version.py +0 -0
  6002. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_lite_by_path.py +0 -0
  6003. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_hub_app_by_id.py +0 -0
  6004. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_app_by_custom_path.py +0 -0
  6005. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_app_by_secret.py +0 -0
  6006. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_resource.py +0 -0
  6007. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_secret_of_app.py +0 -0
  6008. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_app_paths_from_workspace_runnable.py +0 -0
  6009. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_apps.py +0 -0
  6010. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_hub_apps.py +0 -0
  6011. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_search_app.py +0 -0
  6012. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/sign_s3_objects.py +0 -0
  6013. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/update_app.py +0 -0
  6014. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/update_app_history.py +0 -0
  6015. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/update_app_raw.py +0 -0
  6016. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/upload_s3_file_from_app.py +0 -0
  6017. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/asset/__init__.py +0 -0
  6018. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/asset/list_assets.py +0 -0
  6019. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/asset/list_assets_by_usage.py +0 -0
  6020. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/audit/__init__.py +0 -0
  6021. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/audit/get_audit_log.py +0 -0
  6022. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/audit/list_audit_logs.py +0 -0
  6023. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/__init__.py +0 -0
  6024. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/delete_capture.py +0 -0
  6025. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/get_capture.py +0 -0
  6026. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/get_capture_configs.py +0 -0
  6027. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/list_captures.py +0 -0
  6028. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/move_captures_and_configs.py +0 -0
  6029. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/ping_capture_config.py +0 -0
  6030. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/set_capture_config.py +0 -0
  6031. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/__init__.py +0 -0
  6032. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/delete_concurrency_group.py +0 -0
  6033. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/get_concurrency_key.py +0 -0
  6034. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/list_concurrency_groups.py +0 -0
  6035. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/__init__.py +0 -0
  6036. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/delete_config.py +0 -0
  6037. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/get_config.py +0 -0
  6038. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/list_available_python_versions.py +0 -0
  6039. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/list_configs.py +0 -0
  6040. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/list_worker_groups.py +0 -0
  6041. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/native_kubernetes_autoscaling_healthcheck.py +0 -0
  6042. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/update_config.py +0 -0
  6043. {windmill_api-1.542.3/windmill_api/api/draft → windmill_api-1.603.0/windmill_api/api/documentation}/__init__.py +0 -0
  6044. {windmill_api-1.542.3/windmill_api/api/email_trigger → windmill_api-1.603.0/windmill_api/api/draft}/__init__.py +0 -0
  6045. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/draft/create_draft.py +0 -0
  6046. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/draft/delete_draft.py +0 -0
  6047. {windmill_api-1.542.3/windmill_api/api/favorite → windmill_api-1.603.0/windmill_api/api/email_trigger}/__init__.py +0 -0
  6048. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/create_email_trigger.py +0 -0
  6049. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/delete_email_trigger.py +0 -0
  6050. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/exists_email_local_part.py +0 -0
  6051. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/exists_email_trigger.py +0 -0
  6052. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/get_email_trigger.py +0 -0
  6053. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/list_email_triggers.py +0 -0
  6054. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/update_email_trigger.py +0 -0
  6055. {windmill_api-1.542.3/windmill_api/api/flow → windmill_api-1.603.0/windmill_api/api/favorite}/__init__.py +0 -0
  6056. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/favorite/star.py +0 -0
  6057. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/favorite/unstar.py +0 -0
  6058. {windmill_api-1.542.3/windmill_api/api/folder → windmill_api-1.603.0/windmill_api/api/flow}/__init__.py +0 -0
  6059. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/archive_flow_by_path.py +0 -0
  6060. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/create_flow.py +0 -0
  6061. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/delete_flow_by_path.py +0 -0
  6062. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/exists_flow_by_path.py +0 -0
  6063. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_by_path.py +0 -0
  6064. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_by_path_with_draft.py +0 -0
  6065. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_deployment_status.py +0 -0
  6066. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_history.py +0 -0
  6067. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_latest_version.py +0 -0
  6068. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_hub_flow_by_id.py +0 -0
  6069. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_triggers_count_of_flow.py +0 -0
  6070. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_flow_paths.py +0 -0
  6071. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_flow_paths_from_workspace_runnable.py +0 -0
  6072. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_hub_flows.py +0 -0
  6073. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_search_flow.py +0 -0
  6074. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_tokens_of_flow.py +0 -0
  6075. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/toggle_workspace_error_handler_for_flow.py +0 -0
  6076. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/update_flow.py +0 -0
  6077. {windmill_api-1.542.3/windmill_api/api/gcp_trigger → windmill_api-1.603.0/windmill_api/api/flow_conversation}/__init__.py +0 -0
  6078. {windmill_api-1.542.3/windmill_api/api/git_sync → windmill_api-1.603.0/windmill_api/api/folder}/__init__.py +0 -0
  6079. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/add_owner_to_folder.py +0 -0
  6080. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/create_folder.py +0 -0
  6081. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/delete_folder.py +0 -0
  6082. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/exists_folder.py +0 -0
  6083. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/get_folder.py +0 -0
  6084. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/get_folder_usage.py +0 -0
  6085. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/list_folder_names.py +0 -0
  6086. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/list_folders.py +0 -0
  6087. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/remove_owner_to_folder.py +0 -0
  6088. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/update_folder.py +0 -0
  6089. {windmill_api-1.542.3/windmill_api/api/granular_acl → windmill_api-1.603.0/windmill_api/api/gcp_trigger}/__init__.py +0 -0
  6090. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/create_gcp_trigger.py +0 -0
  6091. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/delete_gcp_subscription.py +0 -0
  6092. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/delete_gcp_trigger.py +0 -0
  6093. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/exists_gcp_trigger.py +0 -0
  6094. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/get_gcp_trigger.py +0 -0
  6095. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/list_all_t_google_topic_subscriptions.py +0 -0
  6096. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/list_gcp_triggers.py +0 -0
  6097. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/list_google_topics.py +0 -0
  6098. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/test_gcp_connection.py +0 -0
  6099. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/update_gcp_trigger.py +0 -0
  6100. {windmill_api-1.542.3/windmill_api/api/group → windmill_api-1.603.0/windmill_api/api/git_sync}/__init__.py +0 -0
  6101. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/delete_from_workspace.py +0 -0
  6102. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/export_installation.py +0 -0
  6103. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/import_installation.py +0 -0
  6104. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/install_from_workspace.py +0 -0
  6105. {windmill_api-1.542.3/windmill_api/api/helpers → windmill_api-1.603.0/windmill_api/api/granular_acl}/__init__.py +0 -0
  6106. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/granular_acl/add_granular_acls.py +0 -0
  6107. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/granular_acl/get_granular_acls.py +0 -0
  6108. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/granular_acl/remove_granular_acls.py +0 -0
  6109. {windmill_api-1.542.3/windmill_api/api/http_trigger → windmill_api-1.603.0/windmill_api/api/group}/__init__.py +0 -0
  6110. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/add_user_to_group.py +0 -0
  6111. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/add_user_to_instance_group.py +0 -0
  6112. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/create_group.py +0 -0
  6113. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/create_instance_group.py +0 -0
  6114. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/delete_group.py +0 -0
  6115. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/delete_instance_group.py +0 -0
  6116. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/export_instance_groups.py +0 -0
  6117. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/get_group.py +0 -0
  6118. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/get_instance_group.py +0 -0
  6119. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_group_names.py +0 -0
  6120. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_groups.py +0 -0
  6121. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_instance_groups.py +0 -0
  6122. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_instance_groups_with_workspaces.py +0 -0
  6123. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/overwrite_instance_groups.py +0 -0
  6124. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/remove_user_from_instance_group.py +0 -0
  6125. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/remove_user_to_group.py +0 -0
  6126. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/update_group.py +0 -0
  6127. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/update_instance_group.py +0 -0
  6128. {windmill_api-1.542.3/windmill_api/api/index_search → windmill_api-1.603.0/windmill_api/api/helpers}/__init__.py +0 -0
  6129. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/dataset_storage_test_connection.py +0 -0
  6130. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/delete_s3_file.py +0 -0
  6131. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/duckdb_connection_settings.py +0 -0
  6132. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/duckdb_connection_settings_v2.py +0 -0
  6133. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/file_download.py +0 -0
  6134. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/file_download_parquet_as_csv.py +0 -0
  6135. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/file_upload.py +0 -0
  6136. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/list_stored_files.py +0 -0
  6137. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_csv_preview.py +0 -0
  6138. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_file_metadata.py +0 -0
  6139. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_file_preview.py +0 -0
  6140. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_parquet_preview.py +0 -0
  6141. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_table_row_count.py +0 -0
  6142. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/move_s3_file.py +0 -0
  6143. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/polars_connection_settings.py +0 -0
  6144. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/polars_connection_settings_v2.py +0 -0
  6145. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/s_3_resource_info.py +0 -0
  6146. {windmill_api-1.542.3/windmill_api/api/input_ → windmill_api-1.603.0/windmill_api/api/http_trigger}/__init__.py +0 -0
  6147. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/create_http_trigger.py +0 -0
  6148. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/create_http_triggers.py +0 -0
  6149. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/delete_http_trigger.py +0 -0
  6150. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/exists_http_trigger.py +0 -0
  6151. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/exists_route.py +0 -0
  6152. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/get_http_trigger.py +0 -0
  6153. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/list_http_triggers.py +0 -0
  6154. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/update_http_trigger.py +0 -0
  6155. {windmill_api-1.542.3/windmill_api/api/integration → windmill_api-1.603.0/windmill_api/api/index_search}/__init__.py +0 -0
  6156. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/clear_index.py +0 -0
  6157. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/count_search_logs_index.py +0 -0
  6158. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/search_jobs_index.py +0 -0
  6159. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/search_logs_index.py +0 -0
  6160. {windmill_api-1.542.3/windmill_api/api/job → windmill_api-1.603.0/windmill_api/api/input_}/__init__.py +0 -0
  6161. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/create_input.py +0 -0
  6162. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/delete_input.py +0 -0
  6163. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/get_args_from_history_or_saved_input.py +0 -0
  6164. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/get_input_history.py +0 -0
  6165. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/list_inputs.py +0 -0
  6166. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/update_input.py +0 -0
  6167. {windmill_api-1.542.3/windmill_api/api/kafka_trigger → windmill_api-1.603.0/windmill_api/api/integration}/__init__.py +0 -0
  6168. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/integration/list_hub_integrations.py +0 -0
  6169. {windmill_api-1.542.3/windmill_api/api/mcp → windmill_api-1.603.0/windmill_api/api/job}/__init__.py +0 -0
  6170. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/batch_re_run_jobs.py +0 -0
  6171. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_persistent_queued_jobs.py +0 -0
  6172. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_queued_job.py +0 -0
  6173. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_suspended_job_get.py +0 -0
  6174. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_suspended_job_post.py +0 -0
  6175. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/count_completed_jobs.py +0 -0
  6176. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/count_jobs_by_tag.py +0 -0
  6177. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/create_job_signature.py +0 -0
  6178. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/delete_completed_job.py +0 -0
  6179. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/force_cancel_queued_job.py +0 -0
  6180. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_count.py +0 -0
  6181. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job.py +0 -0
  6182. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job_logs_tail.py +0 -0
  6183. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job_result.py +0 -0
  6184. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job_result_maybe.py +0 -0
  6185. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_db_clock.py +0 -0
  6186. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_flow_debug_info.py +0 -0
  6187. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_flow_user_state.py +0 -0
  6188. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job.py +0 -0
  6189. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_args.py +0 -0
  6190. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_logs.py +0 -0
  6191. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_updates.py +0 -0
  6192. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_updates_sse.py +0 -0
  6193. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_log_file_from_store.py +0 -0
  6194. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_queue_count.py +0 -0
  6195. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_queue_position.py +0 -0
  6196. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_resume_urls.py +0 -0
  6197. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_root_job_id.py +0 -0
  6198. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_scheduled_for.py +0 -0
  6199. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_slack_approval_payload.py +0 -0
  6200. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_suspended_job_flow.py +0 -0
  6201. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_teams_approval_payload.py +0 -0
  6202. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/list_completed_jobs.py +0 -0
  6203. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/list_filtered_queue_uuids.py +0 -0
  6204. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/list_selected_job_groups.py +0 -0
  6205. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/result_by_id.py +0 -0
  6206. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/resume_suspended_flow_as_owner.py +0 -0
  6207. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/resume_suspended_job_get.py +0 -0
  6208. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/resume_suspended_job_post.py +0 -0
  6209. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_code_workflow_task.py +0 -0
  6210. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_raw_script_dependencies.py +0 -0
  6211. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_by_hash.py +0 -0
  6212. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_by_path.py +0 -0
  6213. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_preview.py +0 -0
  6214. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_preview_and_wait_result.py +0 -0
  6215. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/set_flow_user_state.py +0 -0
  6216. {windmill_api-1.542.3/windmill_api/api/metrics → windmill_api-1.603.0/windmill_api/api/kafka_trigger}/__init__.py +0 -0
  6217. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/create_kafka_trigger.py +0 -0
  6218. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/delete_kafka_trigger.py +0 -0
  6219. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/exists_kafka_trigger.py +0 -0
  6220. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/get_kafka_trigger.py +0 -0
  6221. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/list_kafka_triggers.py +0 -0
  6222. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/test_kafka_connection.py +0 -0
  6223. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/update_kafka_trigger.py +0 -0
  6224. {windmill_api-1.542.3/windmill_api/api/mqtt_trigger → windmill_api-1.603.0/windmill_api/api/mcp}/__init__.py +0 -0
  6225. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mcp/list_mcp_tools.py +0 -0
  6226. {windmill_api-1.542.3/windmill_api/api/nats_trigger → windmill_api-1.603.0/windmill_api/api/metrics}/__init__.py +0 -0
  6227. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/metrics/get_job_metrics.py +0 -0
  6228. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/metrics/get_job_progress.py +0 -0
  6229. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/metrics/set_job_progress.py +0 -0
  6230. {windmill_api-1.542.3/windmill_api/api/oauth → windmill_api-1.603.0/windmill_api/api/mqtt_trigger}/__init__.py +0 -0
  6231. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/create_mqtt_trigger.py +0 -0
  6232. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/delete_mqtt_trigger.py +0 -0
  6233. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/exists_mqtt_trigger.py +0 -0
  6234. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/get_mqtt_trigger.py +0 -0
  6235. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/list_mqtt_triggers.py +0 -0
  6236. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/test_mqtt_connection.py +0 -0
  6237. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/update_mqtt_trigger.py +0 -0
  6238. {windmill_api-1.542.3/windmill_api/api/oidc → windmill_api-1.603.0/windmill_api/api/nats_trigger}/__init__.py +0 -0
  6239. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/create_nats_trigger.py +0 -0
  6240. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/delete_nats_trigger.py +0 -0
  6241. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/exists_nats_trigger.py +0 -0
  6242. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/get_nats_trigger.py +0 -0
  6243. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/list_nats_triggers.py +0 -0
  6244. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/test_nats_connection.py +0 -0
  6245. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/update_nats_trigger.py +0 -0
  6246. {windmill_api-1.542.3/windmill_api/api/openapi → windmill_api-1.603.0/windmill_api/api/oauth}/__init__.py +0 -0
  6247. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_callback.py +0 -0
  6248. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_client_credentials.py +0 -0
  6249. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_slack_callback.py +0 -0
  6250. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_slack_callback_instance.py +0 -0
  6251. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/create_account.py +0 -0
  6252. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/disconnect_account.py +0 -0
  6253. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/disconnect_slack.py +0 -0
  6254. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/disconnect_teams.py +0 -0
  6255. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/get_o_auth_connect.py +0 -0
  6256. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/list_o_auth_connects.py +0 -0
  6257. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/list_o_auth_logins.py +0 -0
  6258. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/refresh_token.py +0 -0
  6259. {windmill_api-1.542.3/windmill_api/api/postgres_trigger → windmill_api-1.603.0/windmill_api/api/oidc}/__init__.py +0 -0
  6260. {windmill_api-1.542.3/windmill_api/api/raw_app → windmill_api-1.603.0/windmill_api/api/openapi}/__init__.py +0 -0
  6261. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/openapi/download_openapi_spec.py +0 -0
  6262. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/openapi/generate_openapi_spec.py +0 -0
  6263. {windmill_api-1.542.3/windmill_api/api/resource → windmill_api-1.603.0/windmill_api/api/postgres_trigger}/__init__.py +0 -0
  6264. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_postgres_publication.py +0 -0
  6265. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_postgres_replication_slot.py +0 -0
  6266. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_postgres_trigger.py +0 -0
  6267. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_template_script.py +0 -0
  6268. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/delete_postgres_publication.py +0 -0
  6269. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/delete_postgres_replication_slot.py +0 -0
  6270. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/delete_postgres_trigger.py +0 -0
  6271. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/exists_postgres_trigger.py +0 -0
  6272. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_postgres_publication.py +0 -0
  6273. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_postgres_trigger.py +0 -0
  6274. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_postgres_version.py +0 -0
  6275. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_template_script.py +0 -0
  6276. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/is_valid_postgres_configuration.py +0 -0
  6277. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/list_postgres_publication.py +0 -0
  6278. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/list_postgres_replication_slot.py +0 -0
  6279. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/list_postgres_triggers.py +0 -0
  6280. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/test_postgres_connection.py +0 -0
  6281. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/update_postgres_publication.py +0 -0
  6282. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/update_postgres_trigger.py +0 -0
  6283. {windmill_api-1.542.3/windmill_api/api/schedule → windmill_api-1.603.0/windmill_api/api/raw_app}/__init__.py +0 -0
  6284. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/create_raw_app.py +0 -0
  6285. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/delete_raw_app.py +0 -0
  6286. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/exists_raw_app.py +0 -0
  6287. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/get_raw_app_data.py +0 -0
  6288. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/list_raw_apps.py +0 -0
  6289. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/update_raw_app.py +0 -0
  6290. {windmill_api-1.542.3/windmill_api/api/script → windmill_api-1.603.0/windmill_api/api/resource}/__init__.py +0 -0
  6291. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/create_resource.py +0 -0
  6292. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/create_resource_type.py +0 -0
  6293. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/delete_resource.py +0 -0
  6294. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/delete_resource_type.py +0 -0
  6295. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/delete_resources_bulk.py +0 -0
  6296. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/exists_resource.py +0 -0
  6297. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/exists_resource_type.py +0 -0
  6298. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/file_resource_type_to_file_ext_map.py +0 -0
  6299. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource.py +0 -0
  6300. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource_type.py +0 -0
  6301. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource_value.py +0 -0
  6302. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource_value_interpolated.py +0 -0
  6303. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource.py +0 -0
  6304. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource_names.py +0 -0
  6305. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource_type.py +0 -0
  6306. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource_type_names.py +0 -0
  6307. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_search_resource.py +0 -0
  6308. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/query_resource_types.py +0 -0
  6309. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/update_resource.py +0 -0
  6310. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/update_resource_type.py +0 -0
  6311. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/update_resource_value.py +0 -0
  6312. {windmill_api-1.542.3/windmill_api/api/service_logs → windmill_api-1.603.0/windmill_api/api/schedule}/__init__.py +0 -0
  6313. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/create_schedule.py +0 -0
  6314. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/delete_schedule.py +0 -0
  6315. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/exists_schedule.py +0 -0
  6316. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/get_schedule.py +0 -0
  6317. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/list_schedules.py +0 -0
  6318. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/list_schedules_with_jobs.py +0 -0
  6319. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/preview_schedule.py +0 -0
  6320. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/set_default_error_or_recovery_handler.py +0 -0
  6321. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/set_schedule_enabled.py +0 -0
  6322. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/update_schedule.py +0 -0
  6323. {windmill_api-1.542.3/windmill_api/api/setting → windmill_api-1.603.0/windmill_api/api/script}/__init__.py +0 -0
  6324. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/archive_script_by_hash.py +0 -0
  6325. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/archive_script_by_path.py +0 -0
  6326. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/create_script.py +0 -0
  6327. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/delete_script_by_hash.py +0 -0
  6328. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/delete_script_by_path.py +0 -0
  6329. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/delete_scripts_bulk.py +0 -0
  6330. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/exists_script_by_path.py +0 -0
  6331. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_hub_script_by_path.py +0 -0
  6332. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_hub_script_content_by_path.py +0 -0
  6333. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_by_hash.py +0 -0
  6334. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_by_path.py +0 -0
  6335. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_by_path_with_draft.py +0 -0
  6336. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_deployment_status.py +0 -0
  6337. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_history_by_path.py +0 -0
  6338. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_latest_version.py +0 -0
  6339. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_top_hub_scripts.py +0 -0
  6340. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_triggers_count_of_script.py +0 -0
  6341. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_script_paths.py +0 -0
  6342. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_script_paths_from_workspace_runnable.py +0 -0
  6343. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_search_script.py +0 -0
  6344. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_tokens_of_script.py +0 -0
  6345. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/query_hub_scripts.py +0 -0
  6346. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/raw_script_by_hash.py +0 -0
  6347. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/raw_script_by_path.py +0 -0
  6348. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/raw_script_by_path_tokened.py +0 -0
  6349. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/toggle_workspace_error_handler_for_script.py +0 -0
  6350. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/update_script_history.py +0 -0
  6351. {windmill_api-1.542.3/windmill_api/api/settings → windmill_api-1.603.0/windmill_api/api/service_logs}/__init__.py +0 -0
  6352. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/service_logs/get_log_file.py +0 -0
  6353. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/service_logs/list_log_files.py +0 -0
  6354. {windmill_api-1.542.3/windmill_api/api/sqs_trigger → windmill_api-1.603.0/windmill_api/api/setting}/__init__.py +0 -0
  6355. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/acknowledge_all_critical_alerts.py +0 -0
  6356. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/acknowledge_critical_alert.py +0 -0
  6357. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/create_customer_portal_session.py +0 -0
  6358. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_critical_alerts.py +0 -0
  6359. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_global.py +0 -0
  6360. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_latest_key_renewal_attempt.py +0 -0
  6361. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_local.py +0 -0
  6362. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_secondary_storage_names.py +0 -0
  6363. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/list_global_settings.py +0 -0
  6364. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/renew_license_key.py +0 -0
  6365. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/send_stats.py +0 -0
  6366. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/set_global.py +0 -0
  6367. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_critical_channels.py +0 -0
  6368. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_license_key.py +0 -0
  6369. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_metadata.py +0 -0
  6370. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_object_storage_config.py +0 -0
  6371. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_smtp.py +0 -0
  6372. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_acknowledge_all_critical_alerts.py +0 -0
  6373. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_acknowledge_critical_alert.py +0 -0
  6374. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_get_critical_alerts.py +0 -0
  6375. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_mute_critical_alerts_ui.py +0 -0
  6376. {windmill_api-1.542.3/windmill_api/api/teams → windmill_api-1.603.0/windmill_api/api/settings}/__init__.py +0 -0
  6377. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/backend_uptodate.py +0 -0
  6378. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/backend_version.py +0 -0
  6379. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/get_license_id.py +0 -0
  6380. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/get_open_api_yaml.py +0 -0
  6381. {windmill_api-1.542.3/windmill_api/api/token → windmill_api-1.603.0/windmill_api/api/sqs_trigger}/__init__.py +0 -0
  6382. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/create_sqs_trigger.py +0 -0
  6383. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/delete_sqs_trigger.py +0 -0
  6384. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/exists_sqs_trigger.py +0 -0
  6385. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/get_sqs_trigger.py +0 -0
  6386. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/list_sqs_triggers.py +0 -0
  6387. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/test_sqs_connection.py +0 -0
  6388. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/update_sqs_trigger.py +0 -0
  6389. {windmill_api-1.542.3/windmill_api/api/user → windmill_api-1.603.0/windmill_api/api/teams}/__init__.py +0 -0
  6390. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/teams/send_message_to_conversation.py +0 -0
  6391. {windmill_api-1.542.3/windmill_api/api/variable → windmill_api-1.603.0/windmill_api/api/token}/__init__.py +0 -0
  6392. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/token/list_available_scopes.py +0 -0
  6393. {windmill_api-1.542.3/windmill_api/api/websocket_trigger → windmill_api-1.603.0/windmill_api/api/trigger}/__init__.py +0 -0
  6394. {windmill_api-1.542.3/windmill_api/api/worker → windmill_api-1.603.0/windmill_api/api/user}/__init__.py +0 -0
  6395. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/accept_invite.py +0 -0
  6396. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/create_token.py +0 -0
  6397. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/create_token_impersonate.py +0 -0
  6398. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/create_user_globally.py +0 -0
  6399. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/decline_invite.py +0 -0
  6400. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/delete_token.py +0 -0
  6401. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/delete_user.py +0 -0
  6402. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/exists_email.py +0 -0
  6403. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_current_email.py +0 -0
  6404. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_runnable.py +0 -0
  6405. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_tutorial_progress.py +0 -0
  6406. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_usage.py +0 -0
  6407. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_user.py +0 -0
  6408. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_user_delete.py +0 -0
  6409. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_user_rename.py +0 -0
  6410. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_user_update.py +0 -0
  6411. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_username_info.py +0 -0
  6412. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_users_export.py +0 -0
  6413. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_users_overwrite.py +0 -0
  6414. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_whoami.py +0 -0
  6415. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/is_owner_of_path.py +0 -0
  6416. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/leave_instance.py +0 -0
  6417. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_tokens.py +0 -0
  6418. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_usernames.py +0 -0
  6419. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_users.py +0 -0
  6420. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_users_as_super_admin.py +0 -0
  6421. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_users_usage.py +0 -0
  6422. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_workspace_invites.py +0 -0
  6423. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/login.py +0 -0
  6424. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/login_with_oauth.py +0 -0
  6425. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/logout.py +0 -0
  6426. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/refresh_user_token.py +0 -0
  6427. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/set_login_type_for_user.py +0 -0
  6428. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/set_password.py +0 -0
  6429. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/set_password_for_user.py +0 -0
  6430. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/update_tutorial_progress.py +0 -0
  6431. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/update_user.py +0 -0
  6432. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/username_to_email.py +0 -0
  6433. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/whoami.py +0 -0
  6434. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/whois.py +0 -0
  6435. {windmill_api-1.542.3/windmill_api/api/workspace → windmill_api-1.603.0/windmill_api/api/variable}/__init__.py +0 -0
  6436. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/create_variable.py +0 -0
  6437. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/delete_variable.py +0 -0
  6438. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/delete_variables_bulk.py +0 -0
  6439. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/encrypt_value.py +0 -0
  6440. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/exists_variable.py +0 -0
  6441. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/get_variable.py +0 -0
  6442. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/get_variable_value.py +0 -0
  6443. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/list_contextual_variables.py +0 -0
  6444. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/list_variable.py +0 -0
  6445. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/update_variable.py +0 -0
  6446. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/create_websocket_trigger.py +0 -0
  6447. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/delete_websocket_trigger.py +0 -0
  6448. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/exists_websocket_trigger.py +0 -0
  6449. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/get_websocket_trigger.py +0 -0
  6450. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/list_websocket_triggers.py +0 -0
  6451. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/test_websocket_connection.py +0 -0
  6452. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/update_websocket_trigger.py +0 -0
  6453. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/exists_workers_with_tags.py +0 -0
  6454. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/ge_default_tags.py +0 -0
  6455. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_counts_of_jobs_waiting_per_tag.py +0 -0
  6456. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_counts_of_running_jobs_per_tag.py +0 -0
  6457. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_custom_tags.py +0 -0
  6458. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_queue_metrics.py +0 -0
  6459. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/is_default_tags_per_workspace.py +0 -0
  6460. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/list_workers.py +0 -0
  6461. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/add_user.py +0 -0
  6462. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/archive_workspace.py +0 -0
  6463. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/change_workspace_color.py +0 -0
  6464. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/change_workspace_id.py +0 -0
  6465. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/change_workspace_name.py +0 -0
  6466. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/connect_teams.py +0 -0
  6467. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/create_workspace.py +0 -0
  6468. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/delete_git_sync_repository.py +0 -0
  6469. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/delete_invite.py +0 -0
  6470. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_auto_invite.py +0 -0
  6471. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_copilot_config.py +0 -0
  6472. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_default_scripts.py +0 -0
  6473. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_deploy_to.py +0 -0
  6474. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_ducklake_config.py +0 -0
  6475. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_error_handler.py +0 -0
  6476. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_git_sync_repository.py +0 -0
  6477. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_instance_groups.py +0 -0
  6478. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_large_file_storage_config.py +0 -0
  6479. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_slack_command.py +0 -0
  6480. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_teams_command.py +0 -0
  6481. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_webhook.py +0 -0
  6482. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_workspace_default_app.py +0 -0
  6483. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_workspace_deploy_ui_settings.py +0 -0
  6484. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_workspace_git_sync_config.py +0 -0
  6485. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/exists_username.py +0 -0
  6486. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/exists_workspace.py +0 -0
  6487. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_copilot_info.py +0 -0
  6488. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_default_scripts.py +0 -0
  6489. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_deploy_to.py +0 -0
  6490. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_github_app_token.py +0 -0
  6491. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_is_premium.py +0 -0
  6492. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_large_file_storage_config.py +0 -0
  6493. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_premium_info.py +0 -0
  6494. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_settings.py +0 -0
  6495. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_threshold_alert.py +0 -0
  6496. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_used_triggers.py +0 -0
  6497. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_default_app.py +0 -0
  6498. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_encryption_key.py +0 -0
  6499. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_name.py +0 -0
  6500. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_usage.py +0 -0
  6501. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/invite_user.py +0 -0
  6502. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/is_domain_allowed.py +0 -0
  6503. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/leave_workspace.py +0 -0
  6504. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_ducklakes.py +0 -0
  6505. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_pending_invites.py +0 -0
  6506. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_user_workspaces.py +0 -0
  6507. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_workspaces.py +0 -0
  6508. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_workspaces_as_super_admin.py +0 -0
  6509. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/run_slack_message_test_job.py +0 -0
  6510. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/run_teams_message_test_job.py +0 -0
  6511. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/set_environment_variable.py +0 -0
  6512. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/set_threshold_alert.py +0 -0
  6513. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/set_workspace_encryption_key.py +0 -0
  6514. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/unarchive_workspace.py +0 -0
  6515. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/update_operator_settings.py +0 -0
  6516. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/client.py +0 -0
  6517. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/errors.py +0 -0
  6518. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/__init__.py +0 -0
  6519. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/accept_invite_json_body.py +0 -0
  6520. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_granular_acls_json_body.py +0 -0
  6521. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_granular_acls_kind.py +0 -0
  6522. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_owner_to_folder_json_body.py +0 -0
  6523. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_user_json_body.py +0 -0
  6524. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_user_to_group_json_body.py +0 -0
  6525. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_user_to_instance_group_json_body.py +0 -0
  6526. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_agent_type.py +0 -0
  6527. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_code_completion_model.py +0 -0
  6528. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_custom_prompts.py +0 -0
  6529. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_default_model.py +0 -0
  6530. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_providers.py +0 -0
  6531. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_providers_additional_property.py +0 -0
  6532. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_provider_config.py +0 -0
  6533. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_provider_model.py +0 -0
  6534. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/alert.py +0 -0
  6535. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_history.py +0 -0
  6536. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version.py +0 -0
  6537. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_execution_mode.py +0 -0
  6538. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_extra_perms.py +0 -0
  6539. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy.py +0 -0
  6540. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_allowed_s3_keys_item.py +0 -0
  6541. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_execution_mode.py +0 -0
  6542. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_s3_inputs_item.py +0 -0
  6543. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables.py +0 -0
  6544. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables_additional_property.py +0 -0
  6545. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables_v2.py +0 -0
  6546. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables_v2_additional_property.py +0 -0
  6547. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_value.py +0 -0
  6548. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft.py +0 -0
  6549. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_execution_mode.py +0 -0
  6550. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_extra_perms.py +0 -0
  6551. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy.py +0 -0
  6552. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_allowed_s3_keys_item.py +0 -0
  6553. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_execution_mode.py +0 -0
  6554. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_s3_inputs_item.py +0 -0
  6555. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables.py +0 -0
  6556. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables_additional_property.py +0 -0
  6557. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2.py +0 -0
  6558. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2_additional_property.py +0 -0
  6559. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_value.py +0 -0
  6560. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_flow_by_path_json_body.py +0 -0
  6561. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_extra_perms.py +0 -0
  6562. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_kind.py +0 -0
  6563. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_language.py +0 -0
  6564. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_schema.py +0 -0
  6565. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/asset.py +0 -0
  6566. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/asset_usage_access_type.py +0 -0
  6567. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/asset_usage_kind.py +0 -0
  6568. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/audit_log_action_kind.py +0 -0
  6569. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/audit_log_operation.py +0 -0
  6570. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/audit_log_parameters.py +0 -0
  6571. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/authentication_method.py +0 -0
  6572. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/autoscaling_event.py +0 -0
  6573. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/aws_auth_resource_type.py +0 -0
  6574. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body.py +0 -0
  6575. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path.py +0 -0
  6576. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property.py +0 -0
  6577. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms.py +0 -0
  6578. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_0_type.py +0 -0
  6579. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_1_type.py +0 -0
  6580. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path.py +0 -0
  6581. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property.py +0 -0
  6582. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms.py +0 -0
  6583. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_0_type.py +0 -0
  6584. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_1_type.py +0 -0
  6585. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/blacklist_agent_token_json_body.py +0 -0
  6586. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_0_type.py +0 -0
  6587. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_1_type.py +0 -0
  6588. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  6589. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  6590. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_0_type.py +0 -0
  6591. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_1_type.py +0 -0
  6592. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_type.py +0 -0
  6593. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_0_type.py +0 -0
  6594. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_1_type.py +0 -0
  6595. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  6596. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  6597. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_0_type.py +0 -0
  6598. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_1_type.py +0 -0
  6599. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_sleep_type_0_type.py +0 -0
  6600. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_sleep_type_1_type.py +0 -0
  6601. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_0_type.py +0 -0
  6602. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_1_type.py +0 -0
  6603. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_timeout_type_0_type.py +0 -0
  6604. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_timeout_type_1_type.py +0 -0
  6605. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_type.py +0 -0
  6606. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/cancel_persistent_queued_jobs_json_body.py +0 -0
  6607. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/cancel_queued_job_json_body.py +0 -0
  6608. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/cancel_suspended_job_post_json_body.py +0 -0
  6609. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture.py +0 -0
  6610. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture_config.py +0 -0
  6611. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture_config_trigger_kind.py +0 -0
  6612. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture_trigger_kind.py +0 -0
  6613. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/change_workspace_color_json_body.py +0 -0
  6614. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/change_workspace_id_json_body.py +0 -0
  6615. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/change_workspace_name_json_body.py +0 -0
  6616. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/channel_info.py +0 -0
  6617. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/clear_index_idx_name.py +0 -0
  6618. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_args.py +0 -0
  6619. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status.py +0 -0
  6620. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  6621. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  6622. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_approvers_item.py +0 -0
  6623. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_branch_chosen.py +0 -0
  6624. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_branch_chosen_type.py +0 -0
  6625. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_branchall.py +0 -0
  6626. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_type.py +0 -0
  6627. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  6628. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  6629. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_approvers_item.py +0 -0
  6630. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_branch_chosen.py +0 -0
  6631. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_branch_chosen_type.py +0 -0
  6632. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_branchall.py +0 -0
  6633. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_type.py +0 -0
  6634. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  6635. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  6636. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_approvers_item.py +0 -0
  6637. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_branch_chosen.py +0 -0
  6638. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  6639. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_branchall.py +0 -0
  6640. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_type.py +0 -0
  6641. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_retry.py +0 -0
  6642. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_language.py +0 -0
  6643. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  6644. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  6645. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  6646. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  6647. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  6648. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  6649. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  6650. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  6651. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  6652. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  6653. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  6654. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  6655. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  6656. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  6657. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  6658. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  6659. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  6660. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  6661. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_workflow_as_code_status.py +0 -0
  6662. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/concurrency_group.py +0 -0
  6663. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/config.py +0 -0
  6664. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/config_config.py +0 -0
  6665. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/configs.py +0 -0
  6666. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/configs_alerts_item.py +0 -0
  6667. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_callback_json_body.py +0 -0
  6668. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_callback_response_200.py +0 -0
  6669. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_client_credentials_json_body.py +0 -0
  6670. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_client_credentials_response_200.py +0 -0
  6671. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_slack_callback_instance_json_body.py +0 -0
  6672. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_slack_callback_json_body.py +0 -0
  6673. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_teams_json_body.py +0 -0
  6674. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/contextual_variable.py +0 -0
  6675. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/count_jobs_by_tag_response_200_item.py +0 -0
  6676. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/count_search_logs_index_response_200.py +0 -0
  6677. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/count_search_logs_index_response_200_count_per_host.py +0 -0
  6678. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_agent_token_json_body.py +0 -0
  6679. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body.py +0 -0
  6680. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy.py +0 -0
  6681. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_allowed_s3_keys_item.py +0 -0
  6682. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_execution_mode.py +0 -0
  6683. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_s3_inputs_item.py +0 -0
  6684. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables.py +0 -0
  6685. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables_additional_property.py +0 -0
  6686. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables_v2.py +0 -0
  6687. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables_v2_additional_property.py +0 -0
  6688. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data.py +0 -0
  6689. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app.py +0 -0
  6690. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy.py +0 -0
  6691. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_allowed_s3_keys_item.py +0 -0
  6692. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_execution_mode.py +0 -0
  6693. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_s3_inputs_item.py +0 -0
  6694. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables.py +0 -0
  6695. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables_additional_property.py +0 -0
  6696. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables_v2.py +0 -0
  6697. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables_v2_additional_property.py +0 -0
  6698. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_draft_json_body.py +0 -0
  6699. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_draft_json_body_typ.py +0 -0
  6700. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_email_trigger_json_body_error_handler_args.py +0 -0
  6701. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_flow_json_body.py +0 -0
  6702. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_folder_json_body.py +0 -0
  6703. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_delivery_config.py +0 -0
  6704. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_delivery_type.py +0 -0
  6705. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_error_handler_args.py +0 -0
  6706. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_subscription_mode.py +0 -0
  6707. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_group_json_body.py +0 -0
  6708. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_authentication_method.py +0 -0
  6709. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_error_handler_args.py +0 -0
  6710. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_http_method.py +0 -0
  6711. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_static_asset_config.py +0 -0
  6712. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_authentication_method.py +0 -0
  6713. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_error_handler_args.py +0 -0
  6714. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_http_method.py +0 -0
  6715. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_static_asset_config.py +0 -0
  6716. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input.py +0 -0
  6717. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_args.py +0 -0
  6718. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_json_body.py +0 -0
  6719. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_json_body_args.py +0 -0
  6720. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_runnable_type.py +0 -0
  6721. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_instance_group_json_body.py +0 -0
  6722. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_kafka_trigger_json_body_error_handler_args.py +0 -0
  6723. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_client_version.py +0 -0
  6724. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_error_handler_args.py +0 -0
  6725. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_subscribe_topics_item.py +0 -0
  6726. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_subscribe_topics_item_qos.py +0 -0
  6727. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_v3_config.py +0 -0
  6728. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_v5_config.py +0 -0
  6729. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_nats_trigger_json_body_error_handler_args.py +0 -0
  6730. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_publication_json_body.py +0 -0
  6731. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_publication_json_body_table_to_track_item.py +0 -0
  6732. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_publication_json_body_table_to_track_item_table_to_track_item.py +0 -0
  6733. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_replication_slot_json_body.py +0 -0
  6734. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_error_handler_args.py +0 -0
  6735. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_publication.py +0 -0
  6736. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_publication_table_to_track_item.py +0 -0
  6737. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_publication_table_to_track_item_table_to_track_item.py +0 -0
  6738. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_raw_app_json_body.py +0 -0
  6739. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_resource.py +0 -0
  6740. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_resource_json_body.py +0 -0
  6741. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_resource_type_json_body.py +0 -0
  6742. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_args.py +0 -0
  6743. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_on_failure_extra_args.py +0 -0
  6744. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_on_recovery_extra_args.py +0 -0
  6745. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_on_success_extra_args.py +0 -0
  6746. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_assets_item.py +0 -0
  6747. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_assets_item_access_type.py +0 -0
  6748. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_assets_item_alt_access_type.py +0 -0
  6749. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_kind.py +0 -0
  6750. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_language.py +0 -0
  6751. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_schema.py +0 -0
  6752. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_sqs_trigger_json_body_aws_auth_resource_type.py +0 -0
  6753. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_sqs_trigger_json_body_error_handler_args.py +0 -0
  6754. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body.py +0 -0
  6755. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body_language.py +0 -0
  6756. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body_relations_item.py +0 -0
  6757. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body_relations_item_table_to_track_item.py +0 -0
  6758. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_token_impersonate_json_body.py +0 -0
  6759. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_token_json_body.py +0 -0
  6760. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_user_globally_json_body.py +0 -0
  6761. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_variable.py +0 -0
  6762. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_variable_json_body.py +0 -0
  6763. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_error_handler_args.py +0 -0
  6764. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_filters_item.py +0 -0
  6765. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_0.py +0 -0
  6766. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1.py +0 -0
  6767. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result.py +0 -0
  6768. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py +0 -0
  6769. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_url_runnable_args.py +0 -0
  6770. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_workspace.py +0 -0
  6771. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_workspace_json_body.py +0 -0
  6772. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/critical_alert.py +0 -0
  6773. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/decline_invite_json_body.py +0 -0
  6774. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_args.py +0 -0
  6775. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status.py +0 -0
  6776. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  6777. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  6778. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_approvers_item.py +0 -0
  6779. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_branch_chosen.py +0 -0
  6780. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_branch_chosen_type.py +0 -0
  6781. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_branchall.py +0 -0
  6782. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_type.py +0 -0
  6783. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  6784. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  6785. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_approvers_item.py +0 -0
  6786. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_branch_chosen.py +0 -0
  6787. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_branch_chosen_type.py +0 -0
  6788. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_branchall.py +0 -0
  6789. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_type.py +0 -0
  6790. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  6791. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  6792. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_approvers_item.py +0 -0
  6793. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_branch_chosen.py +0 -0
  6794. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  6795. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_branchall.py +0 -0
  6796. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_type.py +0 -0
  6797. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_retry.py +0 -0
  6798. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_language.py +0 -0
  6799. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  6800. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  6801. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  6802. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  6803. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  6804. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  6805. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  6806. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  6807. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  6808. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  6809. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  6810. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  6811. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  6812. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  6813. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  6814. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  6815. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  6816. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  6817. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_workflow_as_code_status.py +0 -0
  6818. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_concurrency_group_response_200.py +0 -0
  6819. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_draft_kind.py +0 -0
  6820. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_gcp_subscription.py +0 -0
  6821. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_gcp_subscription_json_body.py +0 -0
  6822. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_git_sync_repository_json_body.py +0 -0
  6823. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_invite_json_body.py +0 -0
  6824. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_postgres_replication_slot_json_body.py +0 -0
  6825. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_resources_bulk_json_body.py +0 -0
  6826. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_extra_perms.py +0 -0
  6827. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_kind.py +0 -0
  6828. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_language.py +0 -0
  6829. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_schema.py +0 -0
  6830. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_scripts_bulk_json_body.py +0 -0
  6831. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_variables_bulk_json_body.py +0 -0
  6832. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delivery_type.py +0 -0
  6833. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body.py +0 -0
  6834. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_http_route_filters_item.py +0 -0
  6835. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_info.py +0 -0
  6836. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_info_contact.py +0 -0
  6837. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_info_license.py +0 -0
  6838. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_openapi_spec_format.py +0 -0
  6839. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_webhook_filters_item.py +0 -0
  6840. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_runnable_kind.py +0 -0
  6841. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py +0 -0
  6842. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_json_body.py +0 -0
  6843. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_json_body_s3_resource.py +0 -0
  6844. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_response_200.py +0 -0
  6845. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_v2_json_body.py +0 -0
  6846. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_v2_response_200.py +0 -0
  6847. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings.py +0 -0
  6848. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes.py +0 -0
  6849. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes_additional_property_catalog.py +0 -0
  6850. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes_additional_property_catalog_resource_type.py +0 -0
  6851. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes_additional_property_storage.py +0 -0
  6852. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_auto_invite_json_body.py +0 -0
  6853. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_code_completion_model.py +0 -0
  6854. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_custom_prompts.py +0 -0
  6855. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_default_model.py +0 -0
  6856. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_providers.py +0 -0
  6857. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_providers_additional_property.py +0 -0
  6858. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_default_scripts_json_body.py +0 -0
  6859. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_deploy_to_json_body.py +0 -0
  6860. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body.py +0 -0
  6861. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings.py +0 -0
  6862. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes.py +0 -0
  6863. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property_catalog.py +0 -0
  6864. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property_catalog_resource_type.py +0 -0
  6865. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property_storage.py +0 -0
  6866. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_email_trigger_error_handler_args.py +0 -0
  6867. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_error_handler_json_body.py +0 -0
  6868. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_error_handler_json_body_error_handler_extra_args.py +0 -0
  6869. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body.py +0 -0
  6870. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository.py +0 -0
  6871. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository_exclude_types_override_item.py +0 -0
  6872. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository_settings.py +0 -0
  6873. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository_settings_include_type_item.py +0 -0
  6874. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_authentication_method.py +0 -0
  6875. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_error_handler_args.py +0 -0
  6876. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_http_method.py +0 -0
  6877. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_static_asset_config.py +0 -0
  6878. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_instance_groups_json_body.py +0 -0
  6879. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_instance_groups_json_body_roles.py +0 -0
  6880. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_kafka_trigger_error_handler_args.py +0 -0
  6881. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body.py +0 -0
  6882. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage.py +0 -0
  6883. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property.py +0 -0
  6884. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property_type.py +0 -0
  6885. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_type.py +0 -0
  6886. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_client_version.py +0 -0
  6887. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_error_handler_args.py +0 -0
  6888. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_subscribe_topics_item.py +0 -0
  6889. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_subscribe_topics_item_qos.py +0 -0
  6890. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_v3_config.py +0 -0
  6891. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_v5_config.py +0 -0
  6892. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_nats_trigger_error_handler_args.py +0 -0
  6893. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_error_handler_args.py +0 -0
  6894. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_publication.py +0 -0
  6895. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_publication_table_to_track_item.py +0 -0
  6896. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_publication_table_to_track_item_table_to_track_item.py +0 -0
  6897. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_resource.py +0 -0
  6898. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_resource_type.py +0 -0
  6899. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_args.py +0 -0
  6900. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_on_failure_extra_args.py +0 -0
  6901. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_on_recovery_extra_args.py +0 -0
  6902. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_on_success_extra_args.py +0 -0
  6903. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_slack_command_json_body.py +0 -0
  6904. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_sqs_trigger_aws_auth_resource_type.py +0 -0
  6905. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_sqs_trigger_error_handler_args.py +0 -0
  6906. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_teams_command_json_body.py +0 -0
  6907. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_variable.py +0 -0
  6908. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_webhook_json_body.py +0 -0
  6909. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_error_handler_args.py +0 -0
  6910. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_filters_item.py +0 -0
  6911. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_0.py +0 -0
  6912. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1.py +0 -0
  6913. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1_runnable_result.py +0 -0
  6914. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +0 -0
  6915. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_url_runnable_args.py +0 -0
  6916. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_default_app_json_body.py +0 -0
  6917. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_deploy_ui_settings_json_body.py +0 -0
  6918. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings.py +0 -0
  6919. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings_include_type_item.py +0 -0
  6920. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body.py +0 -0
  6921. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings.py +0 -0
  6922. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item.py +0 -0
  6923. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_exclude_types_override_item.py +0 -0
  6924. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings.py +0 -0
  6925. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings_include_type_item.py +0 -0
  6926. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_user.py +0 -0
  6927. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/email_trigger_error_handler_args.py +0 -0
  6928. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/email_trigger_extra_perms.py +0 -0
  6929. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool.py +0 -0
  6930. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool_body_schema.py +0 -0
  6931. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool_path_params_schema.py +0 -0
  6932. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool_query_params_schema.py +0 -0
  6933. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/error_handler.py +0 -0
  6934. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/execute_component_json_body_force_viewer_one_of_fields.py +0 -0
  6935. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/execute_component_json_body_force_viewer_static_fields.py +0 -0
  6936. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/execute_component_json_body_raw_code.py +0 -0
  6937. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_email_local_part_json_body.py +0 -0
  6938. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_route_json_body.py +0 -0
  6939. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_route_json_body_http_method.py +0 -0
  6940. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_username_json_body.py +0 -0
  6941. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_workers_with_tags_response_200.py +0 -0
  6942. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_workspace_json_body.py +0 -0
  6943. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/export_installation_response_200.py +0 -0
  6944. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/export_instance_groups_response_200_item.py +0 -0
  6945. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exported_instance_group.py +0 -0
  6946. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exported_user.py +0 -0
  6947. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs.py +0 -0
  6948. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_args.py +0 -0
  6949. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status.py +0 -0
  6950. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  6951. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  6952. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_approvers_item.py +0 -0
  6953. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_branch_chosen.py +0 -0
  6954. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
  6955. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_branchall.py +0 -0
  6956. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_type.py +0 -0
  6957. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  6958. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  6959. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_approvers_item.py +0 -0
  6960. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_branch_chosen.py +0 -0
  6961. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
  6962. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_branchall.py +0 -0
  6963. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_type.py +0 -0
  6964. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  6965. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  6966. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
  6967. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
  6968. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  6969. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_branchall.py +0 -0
  6970. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_type.py +0 -0
  6971. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_retry.py +0 -0
  6972. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_language.py +0 -0
  6973. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  6974. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  6975. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  6976. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  6977. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  6978. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  6979. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  6980. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  6981. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  6982. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  6983. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  6984. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  6985. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  6986. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  6987. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  6988. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  6989. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  6990. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  6991. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_type.py +0 -0
  6992. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_workflow_as_code_status.py +0 -0
  6993. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_args.py +0 -0
  6994. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status.py +0 -0
  6995. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  6996. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  6997. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_approvers_item.py +0 -0
  6998. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_branch_chosen.py +0 -0
  6999. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
  7000. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_branchall.py +0 -0
  7001. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_type.py +0 -0
  7002. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7003. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7004. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_approvers_item.py +0 -0
  7005. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_branch_chosen.py +0 -0
  7006. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
  7007. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_branchall.py +0 -0
  7008. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_type.py +0 -0
  7009. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7010. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7011. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
  7012. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7013. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7014. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_branchall.py +0 -0
  7015. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_type.py +0 -0
  7016. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_retry.py +0 -0
  7017. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_language.py +0 -0
  7018. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7019. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7020. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7021. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7022. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7023. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7024. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7025. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7026. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7027. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7028. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7029. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7030. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7031. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7032. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7033. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7034. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7035. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7036. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_type.py +0 -0
  7037. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_workflow_as_code_status.py +0 -0
  7038. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_obscured_jobs_item.py +0 -0
  7039. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extra_perms.py +0 -0
  7040. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/file_upload_response_200.py +0 -0
  7041. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_metadata.py +0 -0
  7042. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_metadata_extra_perms.py +0 -0
  7043. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_sleep_type_0_type.py +0 -0
  7044. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_sleep_type_1_type.py +0 -0
  7045. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_suspend_user_groups_required_type_0_type.py +0 -0
  7046. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_suspend_user_groups_required_type_1_type.py +0 -0
  7047. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_timeout_type_0_type.py +0 -0
  7048. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_timeout_type_1_type.py +0 -0
  7049. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_assets_item_access_type.py +0 -0
  7050. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_assets_item_alt_access_type.py +0 -0
  7051. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_0_type.py +0 -0
  7052. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_1_type.py +0 -0
  7053. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_language.py +0 -0
  7054. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_type.py +0 -0
  7055. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_0_type.py +0 -0
  7056. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_1_type.py +0 -0
  7057. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_1_type.py +0 -0
  7058. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_0_type.py +0 -0
  7059. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_1_type.py +0 -0
  7060. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_2_type.py +0 -0
  7061. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_iterator_type_0_type.py +0 -0
  7062. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_iterator_type_1_type.py +0 -0
  7063. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_0_type.py +0 -0
  7064. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_1_type.py +0 -0
  7065. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7066. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7067. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_0_type.py +0 -0
  7068. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_1_type.py +0 -0
  7069. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_type.py +0 -0
  7070. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_0_type.py +0 -0
  7071. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_1_type.py +0 -0
  7072. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7073. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7074. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_0_type.py +0 -0
  7075. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_1_type.py +0 -0
  7076. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_type.py +0 -0
  7077. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_0_type.py +0 -0
  7078. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_1_type.py +0 -0
  7079. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7080. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7081. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_0_type.py +0 -0
  7082. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_1_type.py +0 -0
  7083. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_0_type.py +0 -0
  7084. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_1_type.py +0 -0
  7085. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_0_type.py +0 -0
  7086. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_1_type.py +0 -0
  7087. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_0_type.py +0 -0
  7088. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_1_type.py +0 -0
  7089. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_type.py +0 -0
  7090. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_0_type.py +0 -0
  7091. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_1_type.py +0 -0
  7092. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7093. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7094. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_0_type.py +0 -0
  7095. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_1_type.py +0 -0
  7096. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_type.py +0 -0
  7097. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_7_type.py +0 -0
  7098. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_8_type.py +0 -0
  7099. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_args.py +0 -0
  7100. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_sleep_type_0_type.py +0 -0
  7101. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_sleep_type_1_type.py +0 -0
  7102. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7103. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7104. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_timeout_type_0_type.py +0 -0
  7105. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_timeout_type_1_type.py +0 -0
  7106. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_sleep_type_0_type.py +0 -0
  7107. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_sleep_type_1_type.py +0 -0
  7108. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7109. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7110. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_timeout_type_0_type.py +0 -0
  7111. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_timeout_type_1_type.py +0 -0
  7112. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_0_type.py +0 -0
  7113. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_1_type.py +0 -0
  7114. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7115. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7116. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_0_type.py +0 -0
  7117. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_1_type.py +0 -0
  7118. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status.py +0 -0
  7119. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7120. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7121. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_approvers_item.py +0 -0
  7122. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_branch_chosen.py +0 -0
  7123. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_branch_chosen_type.py +0 -0
  7124. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_branchall.py +0 -0
  7125. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_type.py +0 -0
  7126. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_agent_actions_item_type_0.py +0 -0
  7127. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_agent_actions_item_type_0_type.py +0 -0
  7128. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_approvers_item.py +0 -0
  7129. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_branch_chosen.py +0 -0
  7130. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_branch_chosen_type.py +0 -0
  7131. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_branchall.py +0 -0
  7132. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_type.py +0 -0
  7133. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7134. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7135. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_approvers_item.py +0 -0
  7136. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_branch_chosen.py +0 -0
  7137. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_branch_chosen_type.py +0 -0
  7138. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_branchall.py +0 -0
  7139. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_type.py +0 -0
  7140. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7141. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7142. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_approvers_item.py +0 -0
  7143. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_branch_chosen.py +0 -0
  7144. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7145. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_branchall.py +0 -0
  7146. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_type.py +0 -0
  7147. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_retry.py +0 -0
  7148. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_sleep_type_0_type.py +0 -0
  7149. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_sleep_type_1_type.py +0 -0
  7150. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7151. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7152. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_timeout_type_0_type.py +0 -0
  7153. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_timeout_type_1_type.py +0 -0
  7154. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_sleep_type_0_type.py +0 -0
  7155. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_sleep_type_1_type.py +0 -0
  7156. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7157. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7158. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_timeout_type_0_type.py +0 -0
  7159. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_timeout_type_1_type.py +0 -0
  7160. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_sleep_type_0_type.py +0 -0
  7161. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_sleep_type_1_type.py +0 -0
  7162. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7163. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7164. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_timeout_type_0_type.py +0 -0
  7165. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_timeout_type_1_type.py +0 -0
  7166. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_version.py +0 -0
  7167. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/folder.py +0 -0
  7168. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/folder_extra_perms.py +0 -0
  7169. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/force_cancel_queued_job_json_body.py +0 -0
  7170. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_iterator_type_0_type.py +0 -0
  7171. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_iterator_type_1_type.py +0 -0
  7172. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_sleep_type_0_type.py +0 -0
  7173. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_sleep_type_1_type.py +0 -0
  7174. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7175. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7176. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_timeout_type_0_type.py +0 -0
  7177. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_timeout_type_1_type.py +0 -0
  7178. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_type.py +0 -0
  7179. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_delivery_config.py +0 -0
  7180. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_delivery_type.py +0 -0
  7181. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_error_handler_args.py +0 -0
  7182. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_subscription_mode.py +0 -0
  7183. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_delivery_config.py +0 -0
  7184. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_delivery_type.py +0 -0
  7185. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_error_handler_args.py +0 -0
  7186. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_extra_perms.py +0 -0
  7187. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_subscription_mode.py +0 -0
  7188. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec.py +0 -0
  7189. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_http_route_filters_item.py +0 -0
  7190. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_info.py +0 -0
  7191. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_info_contact.py +0 -0
  7192. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_info_license.py +0 -0
  7193. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body.py +0 -0
  7194. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_http_route_filters_item.py +0 -0
  7195. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_info.py +0 -0
  7196. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_info_contact.py +0 -0
  7197. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_info_license.py +0 -0
  7198. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_openapi_spec_format.py +0 -0
  7199. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item.py +0 -0
  7200. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_runnable_kind.py +0 -0
  7201. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py +0 -0
  7202. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_openapi_spec_format.py +0 -0
  7203. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_webhook_filters_item.py +0 -0
  7204. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_webhook_filters_item_runnable_kind.py +0 -0
  7205. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_webhook_filters_item_user_or_folder_regex.py +0 -0
  7206. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_all_topic_subscription.py +0 -0
  7207. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200.py +0 -0
  7208. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_execution_mode.py +0 -0
  7209. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_extra_perms.py +0 -0
  7210. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy.py +0 -0
  7211. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_allowed_s3_keys_item.py +0 -0
  7212. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_execution_mode.py +0 -0
  7213. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_s3_inputs_item.py +0 -0
  7214. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables.py +0 -0
  7215. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables_additional_property.py +0 -0
  7216. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2.py +0 -0
  7217. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2_additional_property.py +0 -0
  7218. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_value.py +0 -0
  7219. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200.py +0 -0
  7220. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_execution_mode.py +0 -0
  7221. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_extra_perms.py +0 -0
  7222. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy.py +0 -0
  7223. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_allowed_s3_keys_item.py +0 -0
  7224. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_execution_mode.py +0 -0
  7225. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_s3_inputs_item.py +0 -0
  7226. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables.py +0 -0
  7227. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_additional_property.py +0 -0
  7228. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_v2.py +0 -0
  7229. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_v2_additional_property.py +0 -0
  7230. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_value.py +0 -0
  7231. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200.py +0 -0
  7232. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_execution_mode.py +0 -0
  7233. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_extra_perms.py +0 -0
  7234. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy.py +0 -0
  7235. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_allowed_s3_keys_item.py +0 -0
  7236. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_execution_mode.py +0 -0
  7237. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_s3_inputs_item.py +0 -0
  7238. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables.py +0 -0
  7239. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables_additional_property.py +0 -0
  7240. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables_v2.py +0 -0
  7241. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables_v2_additional_property.py +0 -0
  7242. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_value.py +0 -0
  7243. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_history_by_path_response_200_item.py +0 -0
  7244. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_latest_version_response_200.py +0 -0
  7245. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200.py +0 -0
  7246. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_execution_mode.py +0 -0
  7247. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_extra_perms.py +0 -0
  7248. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy.py +0 -0
  7249. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_allowed_s3_keys_item.py +0 -0
  7250. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_execution_mode.py +0 -0
  7251. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_s3_inputs_item.py +0 -0
  7252. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables.py +0 -0
  7253. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_additional_property.py +0 -0
  7254. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2.py +0 -0
  7255. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2_additional_property.py +0 -0
  7256. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_value.py +0 -0
  7257. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_audit_log_response_200_action_kind.py +0 -0
  7258. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_audit_log_response_200_operation.py +0 -0
  7259. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_audit_log_response_200_parameters.py +0 -0
  7260. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_configs_response_200_item.py +0 -0
  7261. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_configs_response_200_item_trigger_kind.py +0 -0
  7262. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_configs_runnable_kind.py +0 -0
  7263. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_response_200.py +0 -0
  7264. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_response_200_trigger_kind.py +0 -0
  7265. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_count_response_200.py +0 -0
  7266. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_args.py +0 -0
  7267. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status.py +0 -0
  7268. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7269. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7270. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_approvers_item.py +0 -0
  7271. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_branch_chosen.py +0 -0
  7272. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_branch_chosen_type.py +0 -0
  7273. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_branchall.py +0 -0
  7274. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_type.py +0 -0
  7275. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7276. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7277. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_approvers_item.py +0 -0
  7278. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_branch_chosen.py +0 -0
  7279. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_branch_chosen_type.py +0 -0
  7280. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_branchall.py +0 -0
  7281. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_type.py +0 -0
  7282. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7283. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7284. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_approvers_item.py +0 -0
  7285. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7286. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7287. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_branchall.py +0 -0
  7288. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_type.py +0 -0
  7289. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_retry.py +0 -0
  7290. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_language.py +0 -0
  7291. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7292. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7293. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7294. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7295. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7296. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7297. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7298. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7299. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7300. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7301. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7302. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7303. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7304. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7305. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7306. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7307. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7308. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7309. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_workflow_as_code_status.py +0 -0
  7310. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_result_maybe_response_200.py +0 -0
  7311. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_config_response_200.py +0 -0
  7312. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_config_response_200_alerts_item.py +0 -0
  7313. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_code_completion_model.py +0 -0
  7314. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_custom_prompts.py +0 -0
  7315. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_default_model.py +0 -0
  7316. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_providers.py +0 -0
  7317. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_providers_additional_property.py +0 -0
  7318. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_counts_of_jobs_waiting_per_tag_response_200.py +0 -0
  7319. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_counts_of_running_jobs_per_tag_response_200.py +0 -0
  7320. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_critical_alerts_response_200.py +0 -0
  7321. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_critical_alerts_response_200_alerts_item.py +0 -0
  7322. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_default_scripts_response_200.py +0 -0
  7323. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_deploy_to_response_200.py +0 -0
  7324. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_email_trigger_response_200_error_handler_args.py +0 -0
  7325. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_email_trigger_response_200_extra_perms.py +0 -0
  7326. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_extra_perms.py +0 -0
  7327. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_0_type.py +0 -0
  7328. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_1_type.py +0 -0
  7329. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7330. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7331. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_0_type.py +0 -0
  7332. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_1_type.py +0 -0
  7333. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_0_type.py +0 -0
  7334. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_1_type.py +0 -0
  7335. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7336. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7337. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_0_type.py +0 -0
  7338. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_1_type.py +0 -0
  7339. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_0_type.py +0 -0
  7340. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_1_type.py +0 -0
  7341. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7342. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7343. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_0_type.py +0 -0
  7344. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_1_type.py +0 -0
  7345. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200.py +0 -0
  7346. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_extra_perms.py +0 -0
  7347. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_0_type.py +0 -0
  7348. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_1_type.py +0 -0
  7349. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7350. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7351. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_0_type.py +0 -0
  7352. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_1_type.py +0 -0
  7353. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_0_type.py +0 -0
  7354. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_1_type.py +0 -0
  7355. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7356. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7357. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_0_type.py +0 -0
  7358. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_1_type.py +0 -0
  7359. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_0_type.py +0 -0
  7360. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_1_type.py +0 -0
  7361. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7362. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7363. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_0_type.py +0 -0
  7364. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_1_type.py +0 -0
  7365. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_history_response_200_item.py +0 -0
  7366. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_latest_version_response_200.py +0 -0
  7367. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_extra_perms.py +0 -0
  7368. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_0_type.py +0 -0
  7369. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_1_type.py +0 -0
  7370. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7371. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7372. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_0_type.py +0 -0
  7373. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_1_type.py +0 -0
  7374. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_0_type.py +0 -0
  7375. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_1_type.py +0 -0
  7376. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7377. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7378. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_0_type.py +0 -0
  7379. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_1_type.py +0 -0
  7380. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_0_type.py +0 -0
  7381. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_1_type.py +0 -0
  7382. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7383. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7384. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_0_type.py +0 -0
  7385. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_1_type.py +0 -0
  7386. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_folder_response_200.py +0 -0
  7387. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_folder_response_200_extra_perms.py +0 -0
  7388. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_folder_usage_response_200.py +0 -0
  7389. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_delivery_config.py +0 -0
  7390. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_delivery_type.py +0 -0
  7391. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_error_handler_args.py +0 -0
  7392. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_extra_perms.py +0 -0
  7393. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_subscription_mode.py +0 -0
  7394. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_github_app_token_json_body.py +0 -0
  7395. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_github_app_token_response_200.py +0 -0
  7396. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_global_connected_repositories_response_200_item_repositories_item.py +0 -0
  7397. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_granular_acls_kind.py +0 -0
  7398. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_granular_acls_response_200.py +0 -0
  7399. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_group_response_200.py +0 -0
  7400. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_group_response_200_extra_perms.py +0 -0
  7401. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_authentication_method.py +0 -0
  7402. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_error_handler_args.py +0 -0
  7403. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_extra_perms.py +0 -0
  7404. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_http_method.py +0 -0
  7405. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_static_asset_config.py +0 -0
  7406. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_app_by_id_response_200.py +0 -0
  7407. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_app_by_id_response_200_app.py +0 -0
  7408. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_0_type.py +0 -0
  7409. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_1_type.py +0 -0
  7410. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7411. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7412. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_0_type.py +0 -0
  7413. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_1_type.py +0 -0
  7414. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_0_type.py +0 -0
  7415. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_1_type.py +0 -0
  7416. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7417. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7418. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_0_type.py +0 -0
  7419. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_1_type.py +0 -0
  7420. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_0_type.py +0 -0
  7421. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_1_type.py +0 -0
  7422. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7423. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7424. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_0_type.py +0 -0
  7425. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_1_type.py +0 -0
  7426. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_script_by_path_response_200.py +0 -0
  7427. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_input_history_response_200_item.py +0 -0
  7428. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_input_history_runnable_type.py +0 -0
  7429. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_instance_group_response_200.py +0 -0
  7430. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_json_body.py +0 -0
  7431. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200.py +0 -0
  7432. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_metrics_metadata_item.py +0 -0
  7433. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_scalar_metrics_item.py +0 -0
  7434. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_timeseries_metrics_item.py +0 -0
  7435. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_timeseries_metrics_item_values_item.py +0 -0
  7436. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_args.py +0 -0
  7437. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status.py +0 -0
  7438. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7439. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7440. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_approvers_item.py +0 -0
  7441. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_branch_chosen.py +0 -0
  7442. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
  7443. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_branchall.py +0 -0
  7444. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_type.py +0 -0
  7445. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7446. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7447. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_approvers_item.py +0 -0
  7448. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_branch_chosen.py +0 -0
  7449. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
  7450. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_branchall.py +0 -0
  7451. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_type.py +0 -0
  7452. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7453. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7454. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
  7455. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7456. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7457. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_branchall.py +0 -0
  7458. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_type.py +0 -0
  7459. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_retry.py +0 -0
  7460. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_language.py +0 -0
  7461. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7462. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7463. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7464. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7465. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7466. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7467. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7468. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7469. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7470. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7471. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7472. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7473. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7474. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7475. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7476. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7477. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7478. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7479. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_type.py +0 -0
  7480. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_workflow_as_code_status.py +0 -0
  7481. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_args.py +0 -0
  7482. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status.py +0 -0
  7483. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7484. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7485. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_approvers_item.py +0 -0
  7486. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_branch_chosen.py +0 -0
  7487. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
  7488. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_branchall.py +0 -0
  7489. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_type.py +0 -0
  7490. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7491. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7492. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_approvers_item.py +0 -0
  7493. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_branch_chosen.py +0 -0
  7494. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
  7495. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_branchall.py +0 -0
  7496. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_type.py +0 -0
  7497. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7498. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7499. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
  7500. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7501. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7502. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_branchall.py +0 -0
  7503. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_type.py +0 -0
  7504. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_retry.py +0 -0
  7505. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_language.py +0 -0
  7506. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7507. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7508. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7509. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7510. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7511. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7512. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7513. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7514. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7515. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7516. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7517. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7518. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7519. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7520. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7521. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7522. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7523. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7524. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_type.py +0 -0
  7525. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_workflow_as_code_status.py +0 -0
  7526. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200.py +0 -0
  7527. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status.py +0 -0
  7528. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7529. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7530. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_approvers_item.py +0 -0
  7531. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_branch_chosen.py +0 -0
  7532. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_branch_chosen_type.py +0 -0
  7533. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_branchall.py +0 -0
  7534. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_type.py +0 -0
  7535. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7536. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7537. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_approvers_item.py +0 -0
  7538. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_branch_chosen.py +0 -0
  7539. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_branch_chosen_type.py +0 -0
  7540. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_branchall.py +0 -0
  7541. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_type.py +0 -0
  7542. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7543. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7544. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_approvers_item.py +0 -0
  7545. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7546. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7547. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_branchall.py +0 -0
  7548. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_type.py +0 -0
  7549. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_retry.py +0 -0
  7550. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_workflow_as_code_status.py +0 -0
  7551. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_kafka_trigger_response_200_error_handler_args.py +0 -0
  7552. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_kafka_trigger_response_200_extra_perms.py +0 -0
  7553. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_secondary_storage.py +0 -0
  7554. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property.py +0 -0
  7555. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property_type.py +0 -0
  7556. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_type.py +0 -0
  7557. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_latest_key_renewal_attempt_response_200.py +0 -0
  7558. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_client_version.py +0 -0
  7559. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_error_handler_args.py +0 -0
  7560. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_extra_perms.py +0 -0
  7561. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_subscribe_topics_item.py +0 -0
  7562. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_subscribe_topics_item_qos.py +0 -0
  7563. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200v3_config.py +0 -0
  7564. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200v5_config.py +0 -0
  7565. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_nats_trigger_response_200_error_handler_args.py +0 -0
  7566. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_nats_trigger_response_200_extra_perms.py +0 -0
  7567. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_o_auth_connect_response_200.py +0 -0
  7568. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_o_auth_connect_response_200_extra_params.py +0 -0
  7569. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_publication_response_200.py +0 -0
  7570. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_publication_response_200_table_to_track_item.py +0 -0
  7571. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_publication_response_200_table_to_track_item_table_to_track_item.py +0 -0
  7572. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_trigger_response_200_error_handler_args.py +0 -0
  7573. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_trigger_response_200_extra_perms.py +0 -0
  7574. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_premium_info_response_200.py +0 -0
  7575. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200.py +0 -0
  7576. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_execution_mode.py +0 -0
  7577. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_extra_perms.py +0 -0
  7578. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy.py +0 -0
  7579. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_allowed_s3_keys_item.py +0 -0
  7580. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_execution_mode.py +0 -0
  7581. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_s3_inputs_item.py +0 -0
  7582. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables.py +0 -0
  7583. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_additional_property.py +0 -0
  7584. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2.py +0 -0
  7585. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property.py +0 -0
  7586. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_value.py +0 -0
  7587. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200.py +0 -0
  7588. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_execution_mode.py +0 -0
  7589. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_extra_perms.py +0 -0
  7590. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy.py +0 -0
  7591. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_allowed_s3_keys_item.py +0 -0
  7592. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_execution_mode.py +0 -0
  7593. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_s3_inputs_item.py +0 -0
  7594. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables.py +0 -0
  7595. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_additional_property.py +0 -0
  7596. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_v2.py +0 -0
  7597. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_v2_additional_property.py +0 -0
  7598. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_value.py +0 -0
  7599. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_count_response_200.py +0 -0
  7600. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_metrics_response_200_item.py +0 -0
  7601. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_metrics_response_200_item_values_item.py +0 -0
  7602. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_position_response_200.py +0 -0
  7603. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resource_response_200.py +0 -0
  7604. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resource_response_200_extra_perms.py +0 -0
  7605. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resource_type_response_200.py +0 -0
  7606. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resume_urls_response_200.py +0 -0
  7607. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_args.py +0 -0
  7608. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_extra_perms.py +0 -0
  7609. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_on_failure_extra_args.py +0 -0
  7610. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_on_recovery_extra_args.py +0 -0
  7611. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_on_success_extra_args.py +0 -0
  7612. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_extra_perms.py +0 -0
  7613. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_kind.py +0 -0
  7614. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_language.py +0 -0
  7615. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_schema.py +0 -0
  7616. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_extra_perms.py +0 -0
  7617. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_kind.py +0 -0
  7618. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_language.py +0 -0
  7619. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_schema.py +0 -0
  7620. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item.py +0 -0
  7621. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_access_type.py +0 -0
  7622. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_alt_access_type.py +0 -0
  7623. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item.py +0 -0
  7624. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_access_type.py +0 -0
  7625. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_alt_access_type.py +0 -0
  7626. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_kind.py +0 -0
  7627. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_language.py +0 -0
  7628. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_schema.py +0 -0
  7629. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_kind.py +0 -0
  7630. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_language.py +0 -0
  7631. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_schema.py +0 -0
  7632. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_history_by_path_response_200_item.py +0 -0
  7633. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_latest_version_response_200.py +0 -0
  7634. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_code_completion_model.py +0 -0
  7635. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_custom_prompts.py +0 -0
  7636. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_default_model.py +0 -0
  7637. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_providers.py +0 -0
  7638. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_providers_additional_property.py +0 -0
  7639. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_auto_add_instance_groups_roles.py +0 -0
  7640. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_default_scripts.py +0 -0
  7641. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_deploy_ui.py +0 -0
  7642. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py +0 -0
  7643. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake.py +0 -0
  7644. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes.py +0 -0
  7645. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property_catalog.py +0 -0
  7646. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property_catalog_resource_type.py +0 -0
  7647. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property_storage.py +0 -0
  7648. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_error_handler_extra_args.py +0 -0
  7649. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync.py +0 -0
  7650. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item.py +0 -0
  7651. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item_exclude_types_override_item.py +0 -0
  7652. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings.py +0 -0
  7653. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings_include_type_item.py +0 -0
  7654. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage.py +0 -0
  7655. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property.py +0 -0
  7656. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property_type.py +0 -0
  7657. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_type.py +0 -0
  7658. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_operator_settings.py +0 -0
  7659. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_sqs_trigger_response_200_aws_auth_resource_type.py +0 -0
  7660. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_sqs_trigger_response_200_error_handler_args.py +0 -0
  7661. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_sqs_trigger_response_200_extra_perms.py +0 -0
  7662. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200.py +0 -0
  7663. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_approvers_item.py +0 -0
  7664. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_args.py +0 -0
  7665. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status.py +0 -0
  7666. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7667. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7668. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_approvers_item.py +0 -0
  7669. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_branch_chosen.py +0 -0
  7670. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
  7671. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_branchall.py +0 -0
  7672. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_type.py +0 -0
  7673. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7674. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7675. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_approvers_item.py +0 -0
  7676. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_branch_chosen.py +0 -0
  7677. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
  7678. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_branchall.py +0 -0
  7679. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_type.py +0 -0
  7680. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7681. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7682. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
  7683. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7684. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7685. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_branchall.py +0 -0
  7686. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_type.py +0 -0
  7687. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_retry.py +0 -0
  7688. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_language.py +0 -0
  7689. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7690. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7691. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7692. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7693. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7694. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7695. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7696. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7697. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7698. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7699. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7700. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7701. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7702. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7703. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7704. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7705. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7706. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7707. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_type.py +0 -0
  7708. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_workflow_as_code_status.py +0 -0
  7709. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_args.py +0 -0
  7710. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status.py +0 -0
  7711. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7712. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7713. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_approvers_item.py +0 -0
  7714. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_branch_chosen.py +0 -0
  7715. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
  7716. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_branchall.py +0 -0
  7717. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_type.py +0 -0
  7718. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7719. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7720. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_approvers_item.py +0 -0
  7721. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_branch_chosen.py +0 -0
  7722. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
  7723. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_branchall.py +0 -0
  7724. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_type.py +0 -0
  7725. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7726. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7727. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
  7728. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7729. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7730. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_branchall.py +0 -0
  7731. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_type.py +0 -0
  7732. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_retry.py +0 -0
  7733. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_language.py +0 -0
  7734. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7735. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7736. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7737. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7738. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7739. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7740. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7741. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7742. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7743. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7744. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7745. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7746. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7747. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7748. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7749. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7750. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7751. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7752. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_type.py +0 -0
  7753. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_workflow_as_code_status.py +0 -0
  7754. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_threshold_alert_response_200.py +0 -0
  7755. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_top_hub_scripts_response_200.py +0 -0
  7756. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_top_hub_scripts_response_200_asks_item.py +0 -0
  7757. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_top_hub_scripts_response_200_asks_item_kind.py +0 -0
  7758. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_flow_response_200.py +0 -0
  7759. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_flow_response_200_primary_schedule.py +0 -0
  7760. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_script_response_200.py +0 -0
  7761. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_script_response_200_primary_schedule.py +0 -0
  7762. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_used_triggers_response_200.py +0 -0
  7763. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_user_response_200.py +0 -0
  7764. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_user_response_200_added_via.py +0 -0
  7765. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_user_response_200_added_via_source.py +0 -0
  7766. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_variable_response_200.py +0 -0
  7767. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_variable_response_200_extra_perms.py +0 -0
  7768. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_error_handler_args.py +0 -0
  7769. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_extra_perms.py +0 -0
  7770. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_filters_item.py +0 -0
  7771. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_0.py +0 -0
  7772. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1.py +0 -0
  7773. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1_runnable_result.py +0 -0
  7774. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1_runnable_result_args.py +0 -0
  7775. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_url_runnable_args.py +0 -0
  7776. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_workspace_default_app_response_200.py +0 -0
  7777. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_workspace_encryption_key_response_200.py +0 -0
  7778. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings.py +0 -0
  7779. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings_exclude_types_override_item.py +0 -0
  7780. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings_settings.py +0 -0
  7781. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings_settings_include_type_item.py +0 -0
  7782. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_sync_object_type.py +0 -0
  7783. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/github_installations_item_repositories_item.py +0 -0
  7784. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_setting.py +0 -0
  7785. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_setting_value.py +0 -0
  7786. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_user_info_login_type.py +0 -0
  7787. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_user_rename_json_body.py +0 -0
  7788. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_user_update_json_body.py +0 -0
  7789. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_username_info_response_200.py +0 -0
  7790. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_username_info_response_200_workspace_usernames_item.py +0 -0
  7791. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_users_export_response_200_item.py +0 -0
  7792. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_users_overwrite_json_body_item.py +0 -0
  7793. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_whoami_response_200_login_type.py +0 -0
  7794. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/group.py +0 -0
  7795. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/group_extra_perms.py +0 -0
  7796. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_method.py +0 -0
  7797. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_authentication_method.py +0 -0
  7798. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_error_handler_args.py +0 -0
  7799. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_extra_perms.py +0 -0
  7800. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_http_method.py +0 -0
  7801. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_static_asset_config.py +0 -0
  7802. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/hub_script_kind.py +0 -0
  7803. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/identity_type.py +0 -0
  7804. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/import_installation_json_body.py +0 -0
  7805. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/input_.py +0 -0
  7806. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/input_transform_type_0_type.py +0 -0
  7807. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/input_transform_type_1_type.py +0 -0
  7808. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/install_from_workspace_json_body.py +0 -0
  7809. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/instance_group.py +0 -0
  7810. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/instance_group_with_workspaces.py +0 -0
  7811. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/instance_group_with_workspaces_workspaces_item.py +0 -0
  7812. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/invite_user_json_body.py +0 -0
  7813. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/javascript_transform_type.py +0 -0
  7814. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_search_hit.py +0 -0
  7815. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_args.py +0 -0
  7816. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7817. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7818. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_approvers_item.py +0 -0
  7819. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_branch_chosen.py +0 -0
  7820. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
  7821. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_branchall.py +0 -0
  7822. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_type.py +0 -0
  7823. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7824. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7825. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_approvers_item.py +0 -0
  7826. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_branch_chosen.py +0 -0
  7827. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
  7828. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_branchall.py +0 -0
  7829. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_type.py +0 -0
  7830. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7831. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7832. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
  7833. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7834. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7835. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_branchall.py +0 -0
  7836. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_type.py +0 -0
  7837. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_retry.py +0 -0
  7838. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_language.py +0 -0
  7839. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7840. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7841. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7842. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7843. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7844. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7845. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7846. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7847. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7848. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7849. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7850. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7851. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7852. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7853. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7854. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7855. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7856. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7857. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_type.py +0 -0
  7858. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_workflow_as_code_status.py +0 -0
  7859. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_args.py +0 -0
  7860. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7861. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7862. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_approvers_item.py +0 -0
  7863. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_branch_chosen.py +0 -0
  7864. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
  7865. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_branchall.py +0 -0
  7866. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_type.py +0 -0
  7867. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7868. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7869. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_approvers_item.py +0 -0
  7870. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_branch_chosen.py +0 -0
  7871. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
  7872. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_branchall.py +0 -0
  7873. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_type.py +0 -0
  7874. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7875. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7876. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
  7877. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7878. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7879. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_branchall.py +0 -0
  7880. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_type.py +0 -0
  7881. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_retry.py +0 -0
  7882. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_language.py +0 -0
  7883. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7884. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7885. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7886. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7887. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7888. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7889. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7890. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7891. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7892. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7893. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7894. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7895. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7896. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7897. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7898. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7899. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7900. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7901. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_type.py +0 -0
  7902. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_workflow_as_code_status.py +0 -0
  7903. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/kafka_trigger_error_handler_args.py +0 -0
  7904. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/kafka_trigger_extra_perms.py +0 -0
  7905. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/language.py +0 -0
  7906. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_secondary_storage.py +0 -0
  7907. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_secondary_storage_additional_property.py +0 -0
  7908. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_secondary_storage_additional_property_type.py +0 -0
  7909. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_type.py +0 -0
  7910. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_all_t_google_topic_subscriptions_json_body.py +0 -0
  7911. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_app_paths_from_workspace_runnable_runnable_kind.py +0 -0
  7912. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_apps_response_200_item.py +0 -0
  7913. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_apps_response_200_item_execution_mode.py +0 -0
  7914. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_apps_response_200_item_extra_perms.py +0 -0
  7915. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_json_body.py +0 -0
  7916. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_json_body_usages_item.py +0 -0
  7917. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_json_body_usages_item_kind.py +0 -0
  7918. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_response_200_item_item.py +0 -0
  7919. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_response_200_item_item_access_type.py +0 -0
  7920. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item.py +0 -0
  7921. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_metadata.py +0 -0
  7922. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_usages_item.py +0 -0
  7923. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_usages_item_access_type.py +0 -0
  7924. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_usages_item_kind.py +0 -0
  7925. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_action_kind.py +0 -0
  7926. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_response_200_item_action_kind.py +0 -0
  7927. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_response_200_item_operation.py +0 -0
  7928. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_response_200_item_parameters.py +0 -0
  7929. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_autoscaling_events_response_200_item.py +0 -0
  7930. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_available_scopes_response_200_item.py +0 -0
  7931. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_available_scopes_response_200_item_scopes_item.py +0 -0
  7932. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_blacklisted_agent_tokens_response_200_item.py +0 -0
  7933. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_response_200_item.py +0 -0
  7934. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_response_200_item_trigger_kind.py +0 -0
  7935. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_runnable_kind.py +0 -0
  7936. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_trigger_kind.py +0 -0
  7937. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_args.py +0 -0
  7938. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status.py +0 -0
  7939. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7940. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7941. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_approvers_item.py +0 -0
  7942. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_branch_chosen.py +0 -0
  7943. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_branch_chosen_type.py +0 -0
  7944. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_branchall.py +0 -0
  7945. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_type.py +0 -0
  7946. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7947. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7948. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_approvers_item.py +0 -0
  7949. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_branch_chosen.py +0 -0
  7950. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_branch_chosen_type.py +0 -0
  7951. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_branchall.py +0 -0
  7952. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_type.py +0 -0
  7953. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  7954. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  7955. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_approvers_item.py +0 -0
  7956. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_branch_chosen.py +0 -0
  7957. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  7958. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_branchall.py +0 -0
  7959. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_type.py +0 -0
  7960. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_retry.py +0 -0
  7961. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_language.py +0 -0
  7962. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  7963. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  7964. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  7965. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  7966. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  7967. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  7968. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  7969. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  7970. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  7971. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  7972. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  7973. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  7974. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  7975. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  7976. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  7977. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  7978. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  7979. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  7980. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_workflow_as_code_status.py +0 -0
  7981. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_concurrency_groups_response_200_item.py +0 -0
  7982. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_configs_response_200_item.py +0 -0
  7983. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_configs_response_200_item_config.py +0 -0
  7984. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_contextual_variables_response_200_item.py +0 -0
  7985. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_email_triggers_response_200_item_error_handler_args.py +0 -0
  7986. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_email_triggers_response_200_item_extra_perms.py +0 -0
  7987. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200.py +0 -0
  7988. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_args.py +0 -0
  7989. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status.py +0 -0
  7990. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  7991. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  7992. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_approvers_item.py +0 -0
  7993. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_branch_chosen.py +0 -0
  7994. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
  7995. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_branchall.py +0 -0
  7996. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_type.py +0 -0
  7997. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  7998. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  7999. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_approvers_item.py +0 -0
  8000. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_branch_chosen.py +0 -0
  8001. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
  8002. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_branchall.py +0 -0
  8003. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_type.py +0 -0
  8004. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  8005. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  8006. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
  8007. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
  8008. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  8009. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_branchall.py +0 -0
  8010. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_type.py +0 -0
  8011. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_retry.py +0 -0
  8012. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_language.py +0 -0
  8013. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  8014. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  8015. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8016. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8017. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  8018. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  8019. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  8020. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  8021. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8022. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8023. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  8024. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  8025. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  8026. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  8027. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8028. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8029. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  8030. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  8031. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_type.py +0 -0
  8032. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_workflow_as_code_status.py +0 -0
  8033. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_args.py +0 -0
  8034. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status.py +0 -0
  8035. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  8036. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  8037. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_approvers_item.py +0 -0
  8038. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_branch_chosen.py +0 -0
  8039. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
  8040. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_branchall.py +0 -0
  8041. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_type.py +0 -0
  8042. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  8043. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  8044. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_approvers_item.py +0 -0
  8045. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_branch_chosen.py +0 -0
  8046. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
  8047. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_branchall.py +0 -0
  8048. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_type.py +0 -0
  8049. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  8050. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  8051. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
  8052. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
  8053. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  8054. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_branchall.py +0 -0
  8055. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_type.py +0 -0
  8056. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_retry.py +0 -0
  8057. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_language.py +0 -0
  8058. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  8059. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  8060. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8061. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8062. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  8063. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  8064. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  8065. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  8066. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8067. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8068. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  8069. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  8070. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  8071. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  8072. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8073. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8074. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  8075. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  8076. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_type.py +0 -0
  8077. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_workflow_as_code_status.py +0 -0
  8078. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_obscured_jobs_item.py +0 -0
  8079. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_flow_paths_from_workspace_runnable_runnable_kind.py +0 -0
  8080. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_flows_response_200_item.py +0 -0
  8081. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_folders_response_200_item.py +0 -0
  8082. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_folders_response_200_item_extra_perms.py +0 -0
  8083. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_delivery_config.py +0 -0
  8084. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_delivery_type.py +0 -0
  8085. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_error_handler_args.py +0 -0
  8086. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_extra_perms.py +0 -0
  8087. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_subscription_mode.py +0 -0
  8088. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_global_settings_response_200_item.py +0 -0
  8089. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_global_settings_response_200_item_value.py +0 -0
  8090. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_groups_response_200_item.py +0 -0
  8091. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_groups_response_200_item_extra_perms.py +0 -0
  8092. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_authentication_method.py +0 -0
  8093. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_error_handler_args.py +0 -0
  8094. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_extra_perms.py +0 -0
  8095. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_http_method.py +0 -0
  8096. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_static_asset_config.py +0 -0
  8097. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_apps_response_200.py +0 -0
  8098. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_apps_response_200_apps_item.py +0 -0
  8099. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_flows_response_200.py +0 -0
  8100. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_flows_response_200_flows_item.py +0 -0
  8101. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_integrations_response_200_item.py +0 -0
  8102. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_inputs_response_200_item.py +0 -0
  8103. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_inputs_runnable_type.py +0 -0
  8104. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_instance_groups_response_200_item.py +0 -0
  8105. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_instance_groups_with_workspaces_response_200_item.py +0 -0
  8106. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_instance_groups_with_workspaces_response_200_item_workspaces_item.py +0 -0
  8107. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_args.py +0 -0
  8108. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status.py +0 -0
  8109. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  8110. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  8111. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_approvers_item.py +0 -0
  8112. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_branch_chosen.py +0 -0
  8113. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
  8114. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_branchall.py +0 -0
  8115. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_type.py +0 -0
  8116. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  8117. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  8118. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_approvers_item.py +0 -0
  8119. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_branch_chosen.py +0 -0
  8120. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
  8121. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_branchall.py +0 -0
  8122. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_type.py +0 -0
  8123. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  8124. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  8125. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
  8126. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
  8127. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  8128. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_branchall.py +0 -0
  8129. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_type.py +0 -0
  8130. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_retry.py +0 -0
  8131. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_language.py +0 -0
  8132. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  8133. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  8134. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8135. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8136. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  8137. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  8138. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  8139. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  8140. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8141. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8142. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  8143. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  8144. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  8145. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  8146. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8147. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8148. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  8149. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  8150. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_type.py +0 -0
  8151. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_workflow_as_code_status.py +0 -0
  8152. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_args.py +0 -0
  8153. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status.py +0 -0
  8154. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  8155. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  8156. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_approvers_item.py +0 -0
  8157. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_branch_chosen.py +0 -0
  8158. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
  8159. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_branchall.py +0 -0
  8160. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_type.py +0 -0
  8161. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  8162. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  8163. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_approvers_item.py +0 -0
  8164. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_branch_chosen.py +0 -0
  8165. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
  8166. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_branchall.py +0 -0
  8167. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_type.py +0 -0
  8168. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  8169. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  8170. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
  8171. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
  8172. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  8173. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_branchall.py +0 -0
  8174. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_type.py +0 -0
  8175. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_retry.py +0 -0
  8176. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_language.py +0 -0
  8177. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  8178. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  8179. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8180. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8181. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  8182. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  8183. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  8184. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  8185. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8186. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8187. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  8188. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  8189. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  8190. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  8191. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8192. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8193. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  8194. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  8195. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_type.py +0 -0
  8196. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_workflow_as_code_status.py +0 -0
  8197. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_kafka_triggers_response_200_item_error_handler_args.py +0 -0
  8198. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_kafka_triggers_response_200_item_extra_perms.py +0 -0
  8199. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_log_files_response_200_item.py +0 -0
  8200. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item.py +0 -0
  8201. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item_body_schema.py +0 -0
  8202. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item_path_params_schema.py +0 -0
  8203. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item_query_params_schema.py +0 -0
  8204. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_client_version.py +0 -0
  8205. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_error_handler_args.py +0 -0
  8206. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_extra_perms.py +0 -0
  8207. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_subscribe_topics_item.py +0 -0
  8208. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_subscribe_topics_item_qos.py +0 -0
  8209. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_v3_config.py +0 -0
  8210. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_v5_config.py +0 -0
  8211. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_nats_triggers_response_200_item_error_handler_args.py +0 -0
  8212. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_nats_triggers_response_200_item_extra_perms.py +0 -0
  8213. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_o_auth_logins_response_200.py +0 -0
  8214. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_o_auth_logins_response_200_oauth_item.py +0 -0
  8215. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_pending_invites_response_200_item.py +0 -0
  8216. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_postgres_replication_slot_response_200_item.py +0 -0
  8217. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_postgres_triggers_response_200_item_error_handler_args.py +0 -0
  8218. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_postgres_triggers_response_200_item_extra_perms.py +0 -0
  8219. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_args.py +0 -0
  8220. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status.py +0 -0
  8221. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  8222. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  8223. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_approvers_item.py +0 -0
  8224. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_branch_chosen.py +0 -0
  8225. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_branch_chosen_type.py +0 -0
  8226. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_branchall.py +0 -0
  8227. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_type.py +0 -0
  8228. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  8229. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  8230. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_approvers_item.py +0 -0
  8231. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_branch_chosen.py +0 -0
  8232. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_branch_chosen_type.py +0 -0
  8233. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_branchall.py +0 -0
  8234. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_type.py +0 -0
  8235. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  8236. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  8237. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_approvers_item.py +0 -0
  8238. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_branch_chosen.py +0 -0
  8239. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  8240. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_branchall.py +0 -0
  8241. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_type.py +0 -0
  8242. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_retry.py +0 -0
  8243. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_language.py +0 -0
  8244. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  8245. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  8246. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8247. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8248. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  8249. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  8250. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  8251. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  8252. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8253. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8254. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  8255. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  8256. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  8257. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  8258. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8259. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8260. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  8261. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  8262. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_workflow_as_code_status.py +0 -0
  8263. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_raw_apps_response_200_item.py +0 -0
  8264. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_raw_apps_response_200_item_extra_perms.py +0 -0
  8265. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_names_response_200_item.py +0 -0
  8266. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_response_200_item.py +0 -0
  8267. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_response_200_item_extra_perms.py +0 -0
  8268. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_type_response_200_item.py +0 -0
  8269. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_args.py +0 -0
  8270. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_extra_perms.py +0 -0
  8271. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_on_failure_extra_args.py +0 -0
  8272. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_on_recovery_extra_args.py +0 -0
  8273. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_on_success_extra_args.py +0 -0
  8274. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_args.py +0 -0
  8275. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_extra_perms.py +0 -0
  8276. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_jobs_item.py +0 -0
  8277. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_on_failure_extra_args.py +0 -0
  8278. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_on_recovery_extra_args.py +0 -0
  8279. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_on_success_extra_args.py +0 -0
  8280. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_extra_perms.py +0 -0
  8281. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_kind.py +0 -0
  8282. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_language.py +0 -0
  8283. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_schema.py +0 -0
  8284. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_app_response_200_item.py +0 -0
  8285. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_flow_response_200_item.py +0 -0
  8286. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_resource_response_200_item.py +0 -0
  8287. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_script_response_200_item.py +0 -0
  8288. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_sqs_triggers_response_200_item_aws_auth_resource_type.py +0 -0
  8289. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_sqs_triggers_response_200_item_error_handler_args.py +0 -0
  8290. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_sqs_triggers_response_200_item_extra_perms.py +0 -0
  8291. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_stored_files_response_200.py +0 -0
  8292. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_stored_files_response_200_windmill_large_files_item.py +0 -0
  8293. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_tokens_of_flow_response_200_item.py +0 -0
  8294. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_tokens_of_script_response_200_item.py +0 -0
  8295. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_tokens_response_200_item.py +0 -0
  8296. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_user_workspaces_response_200.py +0 -0
  8297. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_user_workspaces_response_200_workspaces_item_operator_settings.py +0 -0
  8298. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_as_super_admin_response_200_item_login_type.py +0 -0
  8299. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_response_200_item.py +0 -0
  8300. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_response_200_item_added_via.py +0 -0
  8301. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_response_200_item_added_via_source.py +0 -0
  8302. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_usage_response_200_item.py +0 -0
  8303. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_variable_response_200_item.py +0 -0
  8304. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_variable_response_200_item_extra_perms.py +0 -0
  8305. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_error_handler_args.py +0 -0
  8306. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_extra_perms.py +0 -0
  8307. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_filters_item.py +0 -0
  8308. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_0.py +0 -0
  8309. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1.py +0 -0
  8310. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1_runnable_result.py +0 -0
  8311. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1_runnable_result_args.py +0 -0
  8312. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_url_runnable_args.py +0 -0
  8313. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_worker_groups_response_200_item.py +0 -0
  8314. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_workspace_invites_response_200_item.py +0 -0
  8315. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_workspaces_as_super_admin_response_200_item.py +0 -0
  8316. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_workspaces_response_200_item.py +0 -0
  8317. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_app.py +0 -0
  8318. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_app_execution_mode.py +0 -0
  8319. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_app_extra_perms.py +0 -0
  8320. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_raw_app.py +0 -0
  8321. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_raw_app_extra_perms.py +0 -0
  8322. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_resource.py +0 -0
  8323. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_resource_extra_perms.py +0 -0
  8324. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_variable.py +0 -0
  8325. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_variable_extra_perms.py +0 -0
  8326. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_file_metadata_response_200.py +0 -0
  8327. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_file_preview_response_200.py +0 -0
  8328. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_file_preview_response_200_content_type.py +0 -0
  8329. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_table_row_count_response_200.py +0 -0
  8330. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/log_search_hit.py +0 -0
  8331. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/login.py +0 -0
  8332. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/login_json_body.py +0 -0
  8333. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/login_with_oauth_json_body.py +0 -0
  8334. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature.py +0 -0
  8335. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item.py +0 -0
  8336. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_0.py +0 -0
  8337. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_1.py +0 -0
  8338. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_2.py +0 -0
  8339. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3.py +0 -0
  8340. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object.py +0 -0
  8341. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object_props_item.py +0 -0
  8342. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object_props_item_typ_type_0.py +0 -0
  8343. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object_props_item_typ_type_1.py +0 -0
  8344. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_4.py +0 -0
  8345. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_4_list_type_0.py +0 -0
  8346. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_4_list_type_1.py +0 -0
  8347. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_type.py +0 -0
  8348. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/metric_data_point.py +0 -0
  8349. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/metric_metadata.py +0 -0
  8350. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/move_captures_and_configs_json_body.py +0 -0
  8351. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/move_captures_and_configs_runnable_kind.py +0 -0
  8352. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_client_version.py +0 -0
  8353. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_qo_s.py +0 -0
  8354. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_subscribe_topic.py +0 -0
  8355. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_subscribe_topic_qos.py +0 -0
  8356. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_client_version.py +0 -0
  8357. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_error_handler_args.py +0 -0
  8358. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_extra_perms.py +0 -0
  8359. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_subscribe_topics_item.py +0 -0
  8360. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_subscribe_topics_item_qos.py +0 -0
  8361. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_v3_config.py +0 -0
  8362. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_v5_config.py +0 -0
  8363. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_v3_config.py +0 -0
  8364. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_v5_config.py +0 -0
  8365. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/nats_trigger_error_handler_args.py +0 -0
  8366. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/nats_trigger_extra_perms.py +0 -0
  8367. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_email_trigger_error_handler_args.py +0 -0
  8368. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_authentication_method.py +0 -0
  8369. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_error_handler_args.py +0 -0
  8370. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_http_method.py +0 -0
  8371. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_static_asset_config.py +0 -0
  8372. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_kafka_trigger_error_handler_args.py +0 -0
  8373. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_client_version.py +0 -0
  8374. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_error_handler_args.py +0 -0
  8375. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_subscribe_topics_item.py +0 -0
  8376. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_subscribe_topics_item_qos.py +0 -0
  8377. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_v3_config.py +0 -0
  8378. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_v5_config.py +0 -0
  8379. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_nats_trigger_error_handler_args.py +0 -0
  8380. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_error_handler_args.py +0 -0
  8381. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_publication.py +0 -0
  8382. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_publication_table_to_track_item.py +0 -0
  8383. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_publication_table_to_track_item_table_to_track_item.py +0 -0
  8384. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_args.py +0 -0
  8385. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_on_failure_extra_args.py +0 -0
  8386. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_on_recovery_extra_args.py +0 -0
  8387. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_on_success_extra_args.py +0 -0
  8388. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_assets_item.py +0 -0
  8389. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_assets_item_access_type.py +0 -0
  8390. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_assets_item_alt_access_type.py +0 -0
  8391. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_kind.py +0 -0
  8392. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_language.py +0 -0
  8393. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_schema.py +0 -0
  8394. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_assets_item.py +0 -0
  8395. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_assets_item_access_type.py +0 -0
  8396. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_assets_item_alt_access_type.py +0 -0
  8397. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_assets_item.py +0 -0
  8398. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_assets_item_access_type.py +0 -0
  8399. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_assets_item_alt_access_type.py +0 -0
  8400. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_kind.py +0 -0
  8401. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_language.py +0 -0
  8402. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_schema.py +0 -0
  8403. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_kind.py +0 -0
  8404. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_language.py +0 -0
  8405. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_schema.py +0 -0
  8406. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_sqs_trigger_aws_auth_resource_type.py +0 -0
  8407. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_sqs_trigger_error_handler_args.py +0 -0
  8408. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_token.py +0 -0
  8409. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_token_impersonate.py +0 -0
  8410. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_error_handler_args.py +0 -0
  8411. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_filters_item.py +0 -0
  8412. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_0.py +0 -0
  8413. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_1.py +0 -0
  8414. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_1_runnable_result.py +0 -0
  8415. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +0 -0
  8416. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_url_runnable_args.py +0 -0
  8417. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/obscured_job.py +0 -0
  8418. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_sleep_type_0_type.py +0 -0
  8419. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_sleep_type_1_type.py +0 -0
  8420. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8421. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8422. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_timeout_type_0_type.py +0 -0
  8423. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_timeout_type_1_type.py +0 -0
  8424. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_sleep_type_0_type.py +0 -0
  8425. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_sleep_type_1_type.py +0 -0
  8426. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8427. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8428. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_timeout_type_0_type.py +0 -0
  8429. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_timeout_type_1_type.py +0 -0
  8430. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_0_type.py +0 -0
  8431. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_1_type.py +0 -0
  8432. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8433. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8434. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_0_type.py +0 -0
  8435. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_1_type.py +0 -0
  8436. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_0_type.py +0 -0
  8437. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_1_type.py +0 -0
  8438. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8439. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8440. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_0_type.py +0 -0
  8441. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_1_type.py +0 -0
  8442. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_0_type.py +0 -0
  8443. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_1_type.py +0 -0
  8444. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8445. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8446. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_0_type.py +0 -0
  8447. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_1_type.py +0 -0
  8448. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_0_type.py +0 -0
  8449. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_1_type.py +0 -0
  8450. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8451. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8452. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_0_type.py +0 -0
  8453. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_1_type.py +0 -0
  8454. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_http_route_filters.py +0 -0
  8455. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_spec_format.py +0 -0
  8456. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_v3_info.py +0 -0
  8457. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_v3_info_contact.py +0 -0
  8458. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_v3_info_license.py +0 -0
  8459. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/operator_settings.py +0 -0
  8460. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/overwrite_instance_groups_json_body_item.py +0 -0
  8461. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_flow_input_transforms_additional_property_type_0_type.py +0 -0
  8462. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_flow_input_transforms_additional_property_type_1_type.py +0 -0
  8463. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_flow_type.py +0 -0
  8464. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_script_input_transforms_additional_property_type_0_type.py +0 -0
  8465. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_script_input_transforms_additional_property_type_1_type.py +0 -0
  8466. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_script_type.py +0 -0
  8467. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ping_capture_config_runnable_kind.py +0 -0
  8468. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ping_capture_config_trigger_kind.py +0 -0
  8469. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_client_kwargs.py +0 -0
  8470. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_json_body.py +0 -0
  8471. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_json_body_s3_resource.py +0 -0
  8472. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_response_200.py +0 -0
  8473. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_response_200_client_kwargs.py +0 -0
  8474. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_json_body.py +0 -0
  8475. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200.py +0 -0
  8476. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200_storage_options.py +0 -0
  8477. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200s3_fs_args.py +0 -0
  8478. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200s3_fs_args_client_kwargs.py +0 -0
  8479. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy.py +0 -0
  8480. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_allowed_s3_keys_item.py +0 -0
  8481. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_execution_mode.py +0 -0
  8482. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_s3_inputs_item.py +0 -0
  8483. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables.py +0 -0
  8484. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables_additional_property.py +0 -0
  8485. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables_v2.py +0 -0
  8486. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables_v2_additional_property.py +0 -0
  8487. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/postgres_trigger_error_handler_args.py +0 -0
  8488. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/postgres_trigger_extra_perms.py +0 -0
  8489. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview.py +0 -0
  8490. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_args.py +0 -0
  8491. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_kind.py +0 -0
  8492. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_language.py +0 -0
  8493. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_schedule_json_body.py +0 -0
  8494. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/publication_data.py +0 -0
  8495. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/publication_data_table_to_track_item.py +0 -0
  8496. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/publication_data_table_to_track_item_table_to_track_item.py +0 -0
  8497. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/push_config.py +0 -0
  8498. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/query_hub_scripts_response_200_item.py +0 -0
  8499. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/query_hub_scripts_response_200_item_kind.py +0 -0
  8500. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/query_resource_types_response_200_item.py +0 -0
  8501. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_args.py +0 -0
  8502. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status.py +0 -0
  8503. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
  8504. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
  8505. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_approvers_item.py +0 -0
  8506. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_branch_chosen.py +0 -0
  8507. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_branch_chosen_type.py +0 -0
  8508. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_branchall.py +0 -0
  8509. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_type.py +0 -0
  8510. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
  8511. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
  8512. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_approvers_item.py +0 -0
  8513. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_branch_chosen.py +0 -0
  8514. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_branch_chosen_type.py +0 -0
  8515. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_branchall.py +0 -0
  8516. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_type.py +0 -0
  8517. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
  8518. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
  8519. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_approvers_item.py +0 -0
  8520. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_branch_chosen.py +0 -0
  8521. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
  8522. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_branchall.py +0 -0
  8523. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_type.py +0 -0
  8524. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_retry.py +0 -0
  8525. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_language.py +0 -0
  8526. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_0_type.py +0 -0
  8527. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_1_type.py +0 -0
  8528. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8529. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8530. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_0_type.py +0 -0
  8531. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_1_type.py +0 -0
  8532. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_0_type.py +0 -0
  8533. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_1_type.py +0 -0
  8534. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8535. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8536. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_0_type.py +0 -0
  8537. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_1_type.py +0 -0
  8538. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
  8539. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
  8540. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8541. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8542. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
  8543. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
  8544. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_workflow_as_code_status.py +0 -0
  8545. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_assets_item_access_type.py +0 -0
  8546. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_assets_item_alt_access_type.py +0 -0
  8547. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_for_dependencies.py +0 -0
  8548. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_for_dependencies_language.py +0 -0
  8549. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_input_transforms_additional_property_type_0_type.py +0 -0
  8550. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_input_transforms_additional_property_type_1_type.py +0 -0
  8551. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_language.py +0 -0
  8552. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_type.py +0 -0
  8553. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/refresh_token_json_body.py +0 -0
  8554. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/relations.py +0 -0
  8555. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/relations_table_to_track_item.py +0 -0
  8556. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_blacklist_agent_token_json_body.py +0 -0
  8557. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_granular_acls_json_body.py +0 -0
  8558. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_granular_acls_kind.py +0 -0
  8559. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_owner_to_folder_json_body.py +0 -0
  8560. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_user_from_instance_group_json_body.py +0 -0
  8561. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_user_to_group_json_body.py +0 -0
  8562. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resource.py +0 -0
  8563. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resource_extra_perms.py +0 -0
  8564. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resource_type.py +0 -0
  8565. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resume_suspended_flow_as_owner_json_body.py +0 -0
  8566. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resume_suspended_job_post_json_body.py +0 -0
  8567. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_code_workflow_task_json_body.py +0 -0
  8568. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_code_workflow_task_json_body_args.py +0 -0
  8569. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_by_path_json_body.py +0 -0
  8570. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_args.py +0 -0
  8571. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_0_type.py +0 -0
  8572. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_1_type.py +0 -0
  8573. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8574. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8575. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_0_type.py +0 -0
  8576. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_1_type.py +0 -0
  8577. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_0_type.py +0 -0
  8578. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_1_type.py +0 -0
  8579. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8580. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8581. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_0_type.py +0 -0
  8582. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_1_type.py +0 -0
  8583. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_0_type.py +0 -0
  8584. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_1_type.py +0 -0
  8585. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8586. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8587. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_0_type.py +0 -0
  8588. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_1_type.py +0 -0
  8589. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_args.py +0 -0
  8590. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_0_type.py +0 -0
  8591. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_1_type.py +0 -0
  8592. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
  8593. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
  8594. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_0_type.py +0 -0
  8595. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_1_type.py +0 -0
  8596. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_0_type.py +0 -0
  8597. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_1_type.py +0 -0
  8598. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8599. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8600. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_0_type.py +0 -0
  8601. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_1_type.py +0 -0
  8602. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_0_type.py +0 -0
  8603. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_1_type.py +0 -0
  8604. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
  8605. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
  8606. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_0_type.py +0 -0
  8607. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_1_type.py +0 -0
  8608. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_json_body.py +0 -0
  8609. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_json_body_raw_scripts_item.py +0 -0
  8610. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_json_body_raw_scripts_item_language.py +0 -0
  8611. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_response_201.py +0 -0
  8612. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_by_hash_json_body.py +0 -0
  8613. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_by_path_json_body.py +0 -0
  8614. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body.py +0 -0
  8615. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body_args.py +0 -0
  8616. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body_kind.py +0 -0
  8617. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body_language.py +0 -0
  8618. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body.py +0 -0
  8619. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body_args.py +0 -0
  8620. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body_kind.py +0 -0
  8621. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body_language.py +0 -0
  8622. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_slack_message_test_job_json_body.py +0 -0
  8623. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_teams_message_test_job_json_body.py +0 -0
  8624. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_wait_result_flow_by_path_json_body.py +0 -0
  8625. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_wait_result_script_by_path_json_body.py +0 -0
  8626. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/runnable_kind.py +0 -0
  8627. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/runnable_type.py +0 -0
  8628. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_object.py +0 -0
  8629. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_resource.py +0 -0
  8630. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_resource_info_json_body.py +0 -0
  8631. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_resource_info_response_200.py +0 -0
  8632. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scalar_metric.py +0 -0
  8633. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_args.py +0 -0
  8634. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_extra_perms.py +0 -0
  8635. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_on_failure_extra_args.py +0 -0
  8636. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_on_recovery_extra_args.py +0 -0
  8637. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_on_success_extra_args.py +0 -0
  8638. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_args.py +0 -0
  8639. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_extra_perms.py +0 -0
  8640. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_jobs_item.py +0 -0
  8641. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_on_failure_extra_args.py +0 -0
  8642. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_on_recovery_extra_args.py +0 -0
  8643. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_on_success_extra_args.py +0 -0
  8644. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scope_definition.py +0 -0
  8645. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scope_domain.py +0 -0
  8646. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scope_domain_scopes_item.py +0 -0
  8647. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_args.py +0 -0
  8648. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_extra_perms.py +0 -0
  8649. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_history.py +0 -0
  8650. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_kind.py +0 -0
  8651. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_lang.py +0 -0
  8652. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_language.py +0 -0
  8653. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_schema.py +0 -0
  8654. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_jobs_index_response_200.py +0 -0
  8655. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_jobs_index_response_200_hits_item.py +0 -0
  8656. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_jobs_index_response_200_index_metadata.py +0 -0
  8657. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_logs_index_response_200.py +0 -0
  8658. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_logs_index_response_200_hits_item.py +0 -0
  8659. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/send_message_to_conversation_json_body.py +0 -0
  8660. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/send_message_to_conversation_json_body_card_block.py +0 -0
  8661. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_json_body.py +0 -0
  8662. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_json_body_trigger_config.py +0 -0
  8663. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_json_body_trigger_kind.py +0 -0
  8664. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_response_200.py +0 -0
  8665. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_default_error_or_recovery_handler_json_body.py +0 -0
  8666. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_default_error_or_recovery_handler_json_body_extra_args.py +0 -0
  8667. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_default_error_or_recovery_handler_json_body_handler_type.py +0 -0
  8668. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_environment_variable_json_body.py +0 -0
  8669. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_global_json_body.py +0 -0
  8670. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_job_progress_json_body.py +0 -0
  8671. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_login_type_for_user_json_body.py +0 -0
  8672. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_password_for_user_json_body.py +0 -0
  8673. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_password_json_body.py +0 -0
  8674. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_schedule_enabled_json_body.py +0 -0
  8675. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_threshold_alert_json_body.py +0 -0
  8676. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_workspace_encryption_key_json_body.py +0 -0
  8677. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sign_s3_objects_json_body.py +0 -0
  8678. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sign_s3_objects_json_body_s3_objects_item.py +0 -0
  8679. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sign_s3_objects_response_200_item.py +0 -0
  8680. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slack_token.py +0 -0
  8681. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slack_token_bot.py +0 -0
  8682. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slot.py +0 -0
  8683. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slot_list.py +0 -0
  8684. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sqs_trigger_aws_auth_resource_type.py +0 -0
  8685. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sqs_trigger_error_handler_args.py +0 -0
  8686. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sqs_trigger_extra_perms.py +0 -0
  8687. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/star_json_body.py +0 -0
  8688. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/star_json_body_favorite_kind.py +0 -0
  8689. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/static_transform_type.py +0 -0
  8690. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/subscription_mode.py +0 -0
  8691. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/table_to_track_item.py +0 -0
  8692. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/team_info.py +0 -0
  8693. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/team_info_channels_item.py +0 -0
  8694. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/teams_channel.py +0 -0
  8695. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script.py +0 -0
  8696. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script_language.py +0 -0
  8697. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script_relations_item.py +0 -0
  8698. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script_relations_item_table_to_track_item.py +0 -0
  8699. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_critical_channels_json_body_item.py +0 -0
  8700. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_gcp_connection_json_body.py +0 -0
  8701. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_gcp_connection_json_body_connection.py +0 -0
  8702. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_kafka_connection_json_body.py +0 -0
  8703. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_kafka_connection_json_body_connection.py +0 -0
  8704. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_license_key_json_body.py +0 -0
  8705. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_mqtt_connection_json_body.py +0 -0
  8706. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_mqtt_connection_json_body_connection.py +0 -0
  8707. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_nats_connection_json_body.py +0 -0
  8708. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_nats_connection_json_body_connection.py +0 -0
  8709. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_object_storage_config_json_body.py +0 -0
  8710. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_postgres_connection_json_body.py +0 -0
  8711. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_smtp_json_body.py +0 -0
  8712. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_smtp_json_body_smtp.py +0 -0
  8713. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_sqs_connection_json_body.py +0 -0
  8714. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_sqs_connection_json_body_connection.py +0 -0
  8715. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_websocket_connection_json_body.py +0 -0
  8716. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_websocket_connection_json_body_url_runnable_args.py +0 -0
  8717. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/timeseries_metric.py +0 -0
  8718. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/timeseries_metric_values_item.py +0 -0
  8719. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/toggle_workspace_error_handler_for_flow_json_body.py +0 -0
  8720. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/toggle_workspace_error_handler_for_script_json_body.py +0 -0
  8721. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/token_response.py +0 -0
  8722. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/trigger_extra_property_extra_perms.py +0 -0
  8723. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/triggers_count.py +0 -0
  8724. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/triggers_count_primary_schedule.py +0 -0
  8725. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/truncated_token.py +0 -0
  8726. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/unstar_json_body.py +0 -0
  8727. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/unstar_json_body_favorite_kind.py +0 -0
  8728. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_history_json_body.py +0 -0
  8729. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body.py +0 -0
  8730. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy.py +0 -0
  8731. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_allowed_s3_keys_item.py +0 -0
  8732. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_execution_mode.py +0 -0
  8733. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_s3_inputs_item.py +0 -0
  8734. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables.py +0 -0
  8735. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables_additional_property.py +0 -0
  8736. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables_v2.py +0 -0
  8737. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables_v2_additional_property.py +0 -0
  8738. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data.py +0 -0
  8739. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app.py +0 -0
  8740. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy.py +0 -0
  8741. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_allowed_s3_keys_item.py +0 -0
  8742. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_execution_mode.py +0 -0
  8743. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_s3_inputs_item.py +0 -0
  8744. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables.py +0 -0
  8745. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables_additional_property.py +0 -0
  8746. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables_v2.py +0 -0
  8747. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables_v2_additional_property.py +0 -0
  8748. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_email_trigger_json_body_error_handler_args.py +0 -0
  8749. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_flow_history_json_body.py +0 -0
  8750. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_flow_json_body.py +0 -0
  8751. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_folder_json_body.py +0 -0
  8752. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_delivery_config.py +0 -0
  8753. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_delivery_type.py +0 -0
  8754. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_error_handler_args.py +0 -0
  8755. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_subscription_mode.py +0 -0
  8756. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_group_json_body.py +0 -0
  8757. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_authentication_method.py +0 -0
  8758. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_error_handler_args.py +0 -0
  8759. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_http_method.py +0 -0
  8760. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_static_asset_config.py +0 -0
  8761. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_input.py +0 -0
  8762. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_input_json_body.py +0 -0
  8763. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_instance_group_json_body.py +0 -0
  8764. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_kafka_trigger_json_body_error_handler_args.py +0 -0
  8765. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_client_version.py +0 -0
  8766. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_error_handler_args.py +0 -0
  8767. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_subscribe_topics_item.py +0 -0
  8768. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_subscribe_topics_item_qos.py +0 -0
  8769. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_v3_config.py +0 -0
  8770. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_v5_config.py +0 -0
  8771. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_nats_trigger_json_body_error_handler_args.py +0 -0
  8772. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_operator_settings_json_body.py +0 -0
  8773. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_publication_json_body.py +0 -0
  8774. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_publication_json_body_table_to_track_item.py +0 -0
  8775. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_publication_json_body_table_to_track_item_table_to_track_item.py +0 -0
  8776. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_error_handler_args.py +0 -0
  8777. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_publication.py +0 -0
  8778. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_publication_table_to_track_item.py +0 -0
  8779. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_publication_table_to_track_item_table_to_track_item.py +0 -0
  8780. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_raw_app_json_body.py +0 -0
  8781. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_resource_json_body.py +0 -0
  8782. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_resource_type_json_body.py +0 -0
  8783. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_resource_value_json_body.py +0 -0
  8784. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_args.py +0 -0
  8785. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_on_failure_extra_args.py +0 -0
  8786. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_on_recovery_extra_args.py +0 -0
  8787. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_on_success_extra_args.py +0 -0
  8788. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_script_history_json_body.py +0 -0
  8789. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_sqs_trigger_json_body_aws_auth_resource_type.py +0 -0
  8790. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_sqs_trigger_json_body_error_handler_args.py +0 -0
  8791. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_user_json_body.py +0 -0
  8792. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_variable_json_body.py +0 -0
  8793. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_error_handler_args.py +0 -0
  8794. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_filters_item.py +0 -0
  8795. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_0.py +0 -0
  8796. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1.py +0 -0
  8797. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result.py +0 -0
  8798. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py +0 -0
  8799. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_url_runnable_args.py +0 -0
  8800. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/upload_s3_file_from_app_response_200.py +0 -0
  8801. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user.py +0 -0
  8802. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_added_via.py +0 -0
  8803. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_added_via_source.py +0 -0
  8804. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_source.py +0 -0
  8805. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_source_source.py +0 -0
  8806. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_usage.py +0 -0
  8807. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_workspace_list.py +0 -0
  8808. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_workspace_list_workspaces_item_operator_settings.py +0 -0
  8809. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/webhook_filters.py +0 -0
  8810. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/webhook_filters_runnable_kind.py +0 -0
  8811. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/webhook_filters_user_or_folder_regex.py +0 -0
  8812. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_error_handler_args.py +0 -0
  8813. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_extra_perms.py +0 -0
  8814. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_filters_item.py +0 -0
  8815. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_message_type_0.py +0 -0
  8816. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_message_type_1_runnable_result_args.py +0 -0
  8817. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_0.py +0 -0
  8818. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_1.py +0 -0
  8819. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_1_runnable_result.py +0 -0
  8820. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +0 -0
  8821. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_url_runnable_args.py +0 -0
  8822. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_sleep_type_0_type.py +0 -0
  8823. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_sleep_type_1_type.py +0 -0
  8824. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
  8825. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
  8826. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_timeout_type_0_type.py +0 -0
  8827. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_timeout_type_1_type.py +0 -0
  8828. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_type.py +0 -0
  8829. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whoami_response_200.py +0 -0
  8830. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whoami_response_200_added_via.py +0 -0
  8831. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whoami_response_200_added_via_source.py +0 -0
  8832. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whois_response_200.py +0 -0
  8833. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whois_response_200_added_via.py +0 -0
  8834. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whois_response_200_added_via_source.py +0 -0
  8835. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_file_metadata.py +0 -0
  8836. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_file_preview.py +0 -0
  8837. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_file_preview_content_type.py +0 -0
  8838. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_large_file.py +0 -0
  8839. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_status.py +0 -0
  8840. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_status_record.py +0 -0
  8841. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_status_record_additional_property.py +0 -0
  8842. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_task.py +0 -0
  8843. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_task_args.py +0 -0
  8844. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace.py +0 -0
  8845. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_default_scripts.py +0 -0
  8846. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_deploy_ui_settings.py +0 -0
  8847. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_deploy_ui_settings_include_type_item.py +0 -0
  8848. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_get_critical_alerts_response_200.py +0 -0
  8849. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_get_critical_alerts_response_200_alerts_item.py +0 -0
  8850. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings.py +0 -0
  8851. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item.py +0 -0
  8852. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_override_item.py +0 -0
  8853. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item_settings.py +0 -0
  8854. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item_settings_include_type_item.py +0 -0
  8855. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_github_installation.py +0 -0
  8856. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_info.py +0 -0
  8857. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_invite.py +0 -0
  8858. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py +0 -0
  8859. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/py.typed +0 -0
  8860. {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/types.py +0 -0
@@ -0,0 +1,134 @@
1
+ Metadata-Version: 2.1
2
+ Name: windmill-api
3
+ Version: 1.603.0
4
+ Summary: A client library for accessing Windmill API
5
+ License: Apache-2.0
6
+ Author: Ruben Fiszel
7
+ Author-email: ruben@windmill.dev
8
+ Requires-Python: >=3.8,<4.0
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Requires-Dist: attrs (>=21.3.0)
16
+ Requires-Dist: httpx (>=0.20.0,<0.25.0)
17
+ Requires-Dist: python-dateutil (>=2.8.0,<3.0.0)
18
+ Description-Content-Type: text/markdown
19
+
20
+ # Autogenerated Windmill OpenApi Client
21
+ This is the raw autogenerated api client. You are most likely more interested in [wmill](https://pypi.org/project/wmill/) which leverages this client to offer an user friendly experience. We use [this openapi python client generator](https://github.com/openapi-generators/openapi-python-client/)
22
+
23
+ # windmill-api
24
+ A client library for accessing Windmill API
25
+
26
+ ## Usage
27
+ First, create a client:
28
+
29
+ ```python
30
+ from windmill_api import Client
31
+
32
+ client = Client(base_url="https://api.example.com")
33
+ ```
34
+
35
+ If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
36
+
37
+ ```python
38
+ from windmill_api import AuthenticatedClient
39
+
40
+ client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
41
+ ```
42
+
43
+ Now call your endpoint and use your models:
44
+
45
+ ```python
46
+ from windmill_api.models import MyDataModel
47
+ from windmill_api.api.my_tag import get_my_data_model
48
+ from windmill_api.types import Response
49
+
50
+ with client as client:
51
+ my_data: MyDataModel = get_my_data_model.sync(client=client)
52
+ # or if you need more info (e.g. status_code)
53
+ response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
54
+ ```
55
+
56
+ Or do the same thing with an async version:
57
+
58
+ ```python
59
+ from windmill_api.models import MyDataModel
60
+ from windmill_api.api.my_tag import get_my_data_model
61
+ from windmill_api.types import Response
62
+
63
+ async with client as client:
64
+ my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
65
+ response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
66
+ ```
67
+
68
+ By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
69
+
70
+ ```python
71
+ client = AuthenticatedClient(
72
+ base_url="https://internal_api.example.com",
73
+ token="SuperSecretToken",
74
+ verify_ssl="/path/to/certificate_bundle.pem",
75
+ )
76
+ ```
77
+
78
+ You can also disable certificate validation altogether, but beware that **this is a security risk**.
79
+
80
+ ```python
81
+ client = AuthenticatedClient(
82
+ base_url="https://internal_api.example.com",
83
+ token="SuperSecretToken",
84
+ verify_ssl=False
85
+ )
86
+ ```
87
+
88
+ Things to know:
89
+ 1. Every path/method combo becomes a Python module with four functions:
90
+ 1. `sync`: Blocking request that returns parsed data (if successful) or `None`
91
+ 1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
92
+ 1. `asyncio`: Like `sync` but async instead of blocking
93
+ 1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
94
+
95
+ 1. All path/query params, and bodies become method arguments.
96
+ 1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
97
+ 1. Any endpoint which did not have a tag will be in `windmill_api.api.default`
98
+
99
+ ## Advanced customizations
100
+
101
+ There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
102
+
103
+ ```python
104
+ from windmill_api import Client
105
+
106
+ def log_request(request):
107
+ print(f"Request event hook: {request.method} {request.url} - Waiting for response")
108
+
109
+ def log_response(response):
110
+ request = response.request
111
+ print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")
112
+
113
+ client = Client(
114
+ base_url="https://api.example.com",
115
+ httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
116
+ )
117
+
118
+ # Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()
119
+ ```
120
+
121
+ You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):
122
+
123
+ ```python
124
+ import httpx
125
+ from windmill_api import Client
126
+
127
+ client = Client(
128
+ base_url="https://api.example.com",
129
+ )
130
+ # Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
131
+ client.set_httpx_client(httpx.Client(base_url="https://api.example.com", proxies="http://localhost:8030"))
132
+ ```
133
+
134
+
@@ -0,0 +1,40 @@
1
+ [tool.poetry]
2
+ name = "windmill-api"
3
+ version = "1.603.0"
4
+ description = "A client library for accessing Windmill API"
5
+ license = "Apache-2.0"
6
+
7
+ authors = ["Ruben Fiszel <ruben@windmill.dev>"]
8
+
9
+ readme = "README.md"
10
+ packages = [
11
+ {include = "windmill_api"},
12
+ ]
13
+ include = ["CHANGELOG.md", "windmill_api/py.typed"]
14
+
15
+ [tool.poetry.dependencies]
16
+ python = "^3.8"
17
+ httpx = ">=0.20.0,<0.25.0"
18
+ attrs = ">=21.3.0"
19
+ python-dateutil = "^2.8.0"
20
+
21
+ [build-system]
22
+ requires = ["poetry-core>=1.0.0"]
23
+ build-backend = "poetry.core.masonry.api"
24
+
25
+ [tool.black]
26
+ line-length = 120
27
+ target_version = ['py38', 'py39', 'py310', 'py311']
28
+ exclude = '''
29
+ (
30
+ /(
31
+ | \.git
32
+ | \.venv
33
+ | \.mypy_cache
34
+ )/
35
+ )
36
+ '''
37
+
38
+ [tool.isort]
39
+ line_length = 120
40
+ profile = "black"
@@ -0,0 +1,120 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union, cast
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...types import Response
9
+
10
+
11
+ def _get_kwargs() -> Dict[str, Any]:
12
+ pass
13
+
14
+ return {
15
+ "method": "get",
16
+ "url": "/agent_workers/get_min_version",
17
+ }
18
+
19
+
20
+ def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[str]:
21
+ if response.status_code == HTTPStatus.OK:
22
+ response_200 = cast(str, response.json())
23
+ return response_200
24
+ if client.raise_on_unexpected_status:
25
+ raise errors.UnexpectedStatus(response.status_code, response.content)
26
+ else:
27
+ return None
28
+
29
+
30
+ def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[str]:
31
+ return Response(
32
+ status_code=HTTPStatus(response.status_code),
33
+ content=response.content,
34
+ headers=response.headers,
35
+ parsed=_parse_response(client=client, response=response),
36
+ )
37
+
38
+
39
+ def sync_detailed(
40
+ *,
41
+ client: Union[AuthenticatedClient, Client],
42
+ ) -> Response[str]:
43
+ """get minimum worker version across all workers
44
+
45
+ Raises:
46
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
47
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
48
+
49
+ Returns:
50
+ Response[str]
51
+ """
52
+
53
+ kwargs = _get_kwargs()
54
+
55
+ response = client.get_httpx_client().request(
56
+ **kwargs,
57
+ )
58
+
59
+ return _build_response(client=client, response=response)
60
+
61
+
62
+ def sync(
63
+ *,
64
+ client: Union[AuthenticatedClient, Client],
65
+ ) -> Optional[str]:
66
+ """get minimum worker version across all workers
67
+
68
+ Raises:
69
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
70
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
71
+
72
+ Returns:
73
+ str
74
+ """
75
+
76
+ return sync_detailed(
77
+ client=client,
78
+ ).parsed
79
+
80
+
81
+ async def asyncio_detailed(
82
+ *,
83
+ client: Union[AuthenticatedClient, Client],
84
+ ) -> Response[str]:
85
+ """get minimum worker version across all workers
86
+
87
+ Raises:
88
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
89
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
90
+
91
+ Returns:
92
+ Response[str]
93
+ """
94
+
95
+ kwargs = _get_kwargs()
96
+
97
+ response = await client.get_async_httpx_client().request(**kwargs)
98
+
99
+ return _build_response(client=client, response=response)
100
+
101
+
102
+ async def asyncio(
103
+ *,
104
+ client: Union[AuthenticatedClient, Client],
105
+ ) -> Optional[str]:
106
+ """get minimum worker version across all workers
107
+
108
+ Raises:
109
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
110
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
111
+
112
+ Returns:
113
+ str
114
+ """
115
+
116
+ return (
117
+ await asyncio_detailed(
118
+ client=client,
119
+ )
120
+ ).parsed
@@ -0,0 +1,101 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...types import Response
9
+
10
+
11
+ def _get_kwargs(
12
+ workspace: str,
13
+ path: str,
14
+ ) -> Dict[str, Any]:
15
+ pass
16
+
17
+ return {
18
+ "method": "get",
19
+ "url": "/w/{workspace}/apps/secret_of_latest_version/{path}".format(
20
+ workspace=workspace,
21
+ path=path,
22
+ ),
23
+ }
24
+
25
+
26
+ def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
27
+ if client.raise_on_unexpected_status:
28
+ raise errors.UnexpectedStatus(response.status_code, response.content)
29
+ else:
30
+ return None
31
+
32
+
33
+ def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
34
+ return Response(
35
+ status_code=HTTPStatus(response.status_code),
36
+ content=response.content,
37
+ headers=response.headers,
38
+ parsed=_parse_response(client=client, response=response),
39
+ )
40
+
41
+
42
+ def sync_detailed(
43
+ workspace: str,
44
+ path: str,
45
+ *,
46
+ client: Union[AuthenticatedClient, Client],
47
+ ) -> Response[Any]:
48
+ """get public secret of latest version of an app bundle
49
+
50
+ Args:
51
+ workspace (str):
52
+ path (str):
53
+
54
+ Raises:
55
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
56
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
57
+
58
+ Returns:
59
+ Response[Any]
60
+ """
61
+
62
+ kwargs = _get_kwargs(
63
+ workspace=workspace,
64
+ path=path,
65
+ )
66
+
67
+ response = client.get_httpx_client().request(
68
+ **kwargs,
69
+ )
70
+
71
+ return _build_response(client=client, response=response)
72
+
73
+
74
+ async def asyncio_detailed(
75
+ workspace: str,
76
+ path: str,
77
+ *,
78
+ client: Union[AuthenticatedClient, Client],
79
+ ) -> Response[Any]:
80
+ """get public secret of latest version of an app bundle
81
+
82
+ Args:
83
+ workspace (str):
84
+ path (str):
85
+
86
+ Raises:
87
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
88
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
89
+
90
+ Returns:
91
+ Response[Any]
92
+ """
93
+
94
+ kwargs = _get_kwargs(
95
+ workspace=workspace,
96
+ path=path,
97
+ )
98
+
99
+ response = await client.get_async_httpx_client().request(**kwargs)
100
+
101
+ return _build_response(client=client, response=response)