hatchet-sdk 1.19.0__tar.gz → 1.20.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of hatchet-sdk might be problematic. Click here for more details.

Files changed (333) hide show
  1. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/PKG-INFO +1 -1
  2. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/dispatcher/action_listener.py +0 -1
  3. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/dispatcher/dispatcher.py +0 -30
  4. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/__init__.py +11 -3
  5. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/task_api.py +27 -0
  6. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/tenant_api.py +345 -0
  7. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/user_api.py +9 -0
  8. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/webhook_api.py +323 -8
  9. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/workflow_api.py +327 -0
  10. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/workflow_runs_api.py +408 -0
  11. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/configuration.py +8 -0
  12. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/__init__.py +11 -3
  13. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_tenant_request.py +19 -1
  14. hatchet_sdk-1.20.1/hatchet_sdk/clients/rest/models/registered_workflow.py +86 -0
  15. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant.py +6 -0
  16. hatchet_sdk-1.20.1/hatchet_sdk/clients/rest/models/tenant_environment.py +38 -0
  17. hatchet_sdk-1.20.1/hatchet_sdk/clients/rest/models/update_cron_workflow_trigger_request.py +83 -0
  18. hatchet_sdk-1.20.1/hatchet_sdk/clients/rest/models/update_tenant_member_request.py +85 -0
  19. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_filter.py +8 -1
  20. hatchet_sdk-1.20.1/hatchet_sdk/clients/rest/models/v1_update_webhook_request.py +86 -0
  21. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_source_name.py +2 -0
  22. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/worker.py +22 -0
  23. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/runs.py +212 -0
  24. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/hatchet.py +0 -20
  25. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/opentelemetry/instrumentor.py +1 -27
  26. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/runnables/action.py +2 -5
  27. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/runnables/task.py +0 -1
  28. hatchet_sdk-1.20.1/hatchet_sdk/utils/iterables.py +9 -0
  29. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/opentelemetry.py +0 -1
  30. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/worker/action_listener_process.py +0 -29
  31. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/worker/runner/runner.py +1 -105
  32. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/pyproject.toml +1 -1
  33. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/README.md +0 -0
  34. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/__init__.py +0 -0
  35. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/client.py +0 -0
  36. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/admin.py +0 -0
  37. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/event_ts.py +0 -0
  38. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/events.py +0 -0
  39. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/listeners/durable_event_listener.py +0 -0
  40. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/listeners/pooled_listener.py +0 -0
  41. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/listeners/run_event_listener.py +0 -0
  42. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/listeners/workflow_listener.py +0 -0
  43. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/__init__.py +0 -0
  44. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/api_token_api.py +0 -0
  45. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/cel_api.py +0 -0
  46. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/default_api.py +0 -0
  47. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/event_api.py +0 -0
  48. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/filter_api.py +0 -0
  49. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/github_api.py +0 -0
  50. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/healthcheck_api.py +0 -0
  51. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/log_api.py +0 -0
  52. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/metadata_api.py +0 -0
  53. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/rate_limits_api.py +0 -0
  54. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/slack_api.py +0 -0
  55. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/sns_api.py +0 -0
  56. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/step_run_api.py +0 -0
  57. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/worker_api.py +0 -0
  58. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api/workflow_run_api.py +0 -0
  59. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api_client.py +0 -0
  60. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/api_response.py +0 -0
  61. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/exceptions.py +0 -0
  62. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/accept_invite_request.py +0 -0
  63. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_error.py +0 -0
  64. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_errors.py +0 -0
  65. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_meta.py +0 -0
  66. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_meta_auth.py +0 -0
  67. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_meta_integration.py +0 -0
  68. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_meta_posthog.py +0 -0
  69. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_resource_meta.py +0 -0
  70. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/api_token.py +0 -0
  71. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/bulk_create_event_request.py +0 -0
  72. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/bulk_create_event_response.py +0 -0
  73. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/cancel_event_request.py +0 -0
  74. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/cancel_step_run_request.py +0 -0
  75. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/concurrency_limit_strategy.py +0 -0
  76. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_api_token_request.py +0 -0
  77. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_api_token_response.py +0 -0
  78. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
  79. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_event_request.py +0 -0
  80. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_pull_request_from_step_run.py +0 -0
  81. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_sns_integration_request.py +0 -0
  82. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
  83. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/create_tenant_invite_request.py +0 -0
  84. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/cron_workflows.py +0 -0
  85. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/cron_workflows_list.py +0 -0
  86. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/cron_workflows_method.py +0 -0
  87. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/cron_workflows_order_by_field.py +0 -0
  88. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event.py +0 -0
  89. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_data.py +0 -0
  90. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_key_list.py +0 -0
  91. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_list.py +0 -0
  92. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_order_by_direction.py +0 -0
  93. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_order_by_field.py +0 -0
  94. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_update_cancel200_response.py +0 -0
  95. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/event_workflow_run_summary.py +0 -0
  96. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/events.py +0 -0
  97. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/get_step_run_diff_response.py +0 -0
  98. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/github_app_installation.py +0 -0
  99. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/github_branch.py +0 -0
  100. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/github_repo.py +0 -0
  101. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/info_get_version200_response.py +0 -0
  102. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/job.py +0 -0
  103. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/job_run.py +0 -0
  104. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/job_run_status.py +0 -0
  105. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/link_github_repository_request.py +0 -0
  106. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/list_api_tokens_response.py +0 -0
  107. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/list_github_app_installations_response.py +0 -0
  108. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/list_pull_requests_response.py +0 -0
  109. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/list_slack_webhooks.py +0 -0
  110. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/list_sns_integrations.py +0 -0
  111. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/log_line.py +0 -0
  112. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/log_line_level.py +0 -0
  113. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/log_line_list.py +0 -0
  114. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/log_line_order_by_direction.py +0 -0
  115. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/log_line_order_by_field.py +0 -0
  116. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/pagination_response.py +0 -0
  117. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/pull_request.py +0 -0
  118. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/pull_request_state.py +0 -0
  119. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/queue_metrics.py +0 -0
  120. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/rate_limit.py +0 -0
  121. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/rate_limit_list.py +0 -0
  122. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/rate_limit_order_by_direction.py +0 -0
  123. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/rate_limit_order_by_field.py +0 -0
  124. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/recent_step_runs.py +0 -0
  125. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/reject_invite_request.py +0 -0
  126. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/replay_event_request.py +0 -0
  127. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/replay_workflow_runs_request.py +0 -0
  128. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/replay_workflow_runs_response.py +0 -0
  129. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/rerun_step_run_request.py +0 -0
  130. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/schedule_workflow_run_request.py +0 -0
  131. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/scheduled_run_status.py +0 -0
  132. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/scheduled_workflows.py +0 -0
  133. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/scheduled_workflows_list.py +0 -0
  134. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/scheduled_workflows_method.py +0 -0
  135. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
  136. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/semaphore_slots.py +0 -0
  137. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/slack_webhook.py +0 -0
  138. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/sns_integration.py +0 -0
  139. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step.py +0 -0
  140. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run.py +0 -0
  141. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_archive.py +0 -0
  142. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_archive_list.py +0 -0
  143. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_diff.py +0 -0
  144. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_event.py +0 -0
  145. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_event_list.py +0 -0
  146. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_event_reason.py +0 -0
  147. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_event_severity.py +0 -0
  148. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/step_run_status.py +0 -0
  149. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_alert_email_group.py +0 -0
  150. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_alert_email_group_list.py +0 -0
  151. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_alerting_settings.py +0 -0
  152. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_invite.py +0 -0
  153. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_invite_list.py +0 -0
  154. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_list.py +0 -0
  155. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_member.py +0 -0
  156. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_member_list.py +0 -0
  157. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_member_role.py +0 -0
  158. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_queue_metrics.py +0 -0
  159. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_resource.py +0 -0
  160. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_resource_limit.py +0 -0
  161. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_resource_policy.py +0 -0
  162. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
  163. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_ui_version.py +0 -0
  164. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/tenant_version.py +0 -0
  165. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/trigger_workflow_run_request.py +0 -0
  166. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
  167. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/update_tenant_invite_request.py +0 -0
  168. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/update_tenant_request.py +0 -0
  169. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/update_worker_request.py +0 -0
  170. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/user.py +0 -0
  171. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/user_change_password_request.py +0 -0
  172. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/user_login_request.py +0 -0
  173. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/user_register_request.py +0 -0
  174. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/user_tenant_memberships_list.py +0 -0
  175. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/user_tenant_public.py +0 -0
  176. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cancel_task_request.py +0 -0
  177. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cancelled_tasks.py +0 -0
  178. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cel_debug_error_response.py +0 -0
  179. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cel_debug_request.py +0 -0
  180. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cel_debug_response.py +0 -0
  181. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cel_debug_response_status.py +0 -0
  182. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_cel_debug_success_response.py +0 -0
  183. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_filter_request.py +0 -0
  184. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request.py +0 -0
  185. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key.py +0 -0
  186. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key_all_of_auth_type.py +0 -0
  187. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_base.py +0 -0
  188. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth.py +0 -0
  189. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth_all_of_auth_type.py +0 -0
  190. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac.py +0 -0
  191. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac_all_of_auth_type.py +0 -0
  192. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_dag_children.py +0 -0
  193. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_event.py +0 -0
  194. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_event_list.py +0 -0
  195. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_event_triggered_run.py +0 -0
  196. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_event_workflow_run_summary.py +0 -0
  197. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_filter_list.py +0 -0
  198. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_log_line.py +0 -0
  199. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_log_line_level.py +0 -0
  200. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_log_line_list.py +0 -0
  201. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_replay_task_request.py +0 -0
  202. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_replayed_tasks.py +0 -0
  203. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task.py +0 -0
  204. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_event.py +0 -0
  205. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_event_list.py +0 -0
  206. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_event_type.py +0 -0
  207. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_filter.py +0 -0
  208. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_point_metric.py +0 -0
  209. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_point_metrics.py +0 -0
  210. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_run_metric.py +0 -0
  211. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_run_status.py +0 -0
  212. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_status.py +0 -0
  213. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_summary.py +0 -0
  214. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_summary_list.py +0 -0
  215. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_timing.py +0 -0
  216. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_task_timing_list.py +0 -0
  217. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_trigger_workflow_run_request.py +0 -0
  218. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_update_filter_request.py +0 -0
  219. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook.py +0 -0
  220. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_api_key_auth.py +0 -0
  221. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_auth_type.py +0 -0
  222. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_basic_auth.py +0 -0
  223. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_algorithm.py +0 -0
  224. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_auth.py +0 -0
  225. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_encoding.py +0 -0
  226. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_list.py +0 -0
  227. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_webhook_receive200_response.py +0 -0
  228. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_workflow_run.py +0 -0
  229. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_workflow_run_details.py +0 -0
  230. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name.py +0 -0
  231. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name_list.py +0 -0
  232. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/v1_workflow_type.py +0 -0
  233. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker.py +0 -0
  234. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_create_request.py +0 -0
  235. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_create_response.py +0 -0
  236. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_created.py +0 -0
  237. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_list_response.py +0 -0
  238. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_request.py +0 -0
  239. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_request_list_response.py +0 -0
  240. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/webhook_worker_request_method.py +0 -0
  241. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/worker_label.py +0 -0
  242. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/worker_list.py +0 -0
  243. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/worker_runtime_info.py +0 -0
  244. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/worker_runtime_sdks.py +0 -0
  245. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/worker_type.py +0 -0
  246. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow.py +0 -0
  247. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_concurrency.py +0 -0
  248. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_deployment_config.py +0 -0
  249. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_kind.py +0 -0
  250. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_list.py +0 -0
  251. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_metrics.py +0 -0
  252. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run.py +0 -0
  253. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_cancel200_response.py +0 -0
  254. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_list.py +0 -0
  255. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_order_by_direction.py +0 -0
  256. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_order_by_field.py +0 -0
  257. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_shape.py +0 -0
  258. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_shape_item_for_workflow_run_details.py +0 -0
  259. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_status.py +0 -0
  260. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_run_triggered_by.py +0 -0
  261. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_runs_cancel_request.py +0 -0
  262. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_runs_metrics.py +0 -0
  263. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
  264. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_tag.py +0 -0
  265. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
  266. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_trigger_event_ref.py +0 -0
  267. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_triggers.py +0 -0
  268. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_update_request.py +0 -0
  269. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_version.py +0 -0
  270. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_version_concurrency.py +0 -0
  271. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_version_definition.py +0 -0
  272. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_version_meta.py +0 -0
  273. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/models/workflow_workers_count.py +0 -0
  274. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/rest.py +0 -0
  275. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/rest/tenacity_utils.py +0 -0
  276. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/clients/v1/api_client.py +0 -0
  277. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/conditions.py +0 -0
  278. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/config.py +0 -0
  279. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/connection.py +0 -0
  280. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/context/__init__.py +0 -0
  281. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/context/context.py +0 -0
  282. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/context/worker_context.py +0 -0
  283. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/dispatcher_pb2.py +0 -0
  284. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/dispatcher_pb2.pyi +0 -0
  285. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/dispatcher_pb2_grpc.py +0 -0
  286. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/events_pb2.py +0 -0
  287. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/events_pb2.pyi +0 -0
  288. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/events_pb2_grpc.py +0 -0
  289. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/dispatcher_pb2.py +0 -0
  290. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/dispatcher_pb2.pyi +0 -0
  291. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/dispatcher_pb2_grpc.py +0 -0
  292. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/shared/condition_pb2.py +0 -0
  293. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/shared/condition_pb2.pyi +0 -0
  294. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/shared/condition_pb2_grpc.py +0 -0
  295. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/workflows_pb2.py +0 -0
  296. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/workflows_pb2.pyi +0 -0
  297. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/v1/workflows_pb2_grpc.py +0 -0
  298. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/workflows_pb2.py +0 -0
  299. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/workflows_pb2.pyi +0 -0
  300. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/contracts/workflows_pb2_grpc.py +0 -0
  301. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/exceptions.py +0 -0
  302. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/cel.py +0 -0
  303. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/cron.py +0 -0
  304. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/filters.py +0 -0
  305. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/logs.py +0 -0
  306. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/metrics.py +0 -0
  307. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/rate_limits.py +0 -0
  308. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/scheduled.py +0 -0
  309. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/stubs.py +0 -0
  310. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/tenant.py +0 -0
  311. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/workers.py +0 -0
  312. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/features/workflows.py +0 -0
  313. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/labels.py +0 -0
  314. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/logger.py +0 -0
  315. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/metadata.py +0 -0
  316. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/py.typed +0 -0
  317. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/rate_limit.py +0 -0
  318. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/runnables/contextvars.py +0 -0
  319. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/runnables/types.py +0 -0
  320. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/runnables/workflow.py +0 -0
  321. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/token.py +0 -0
  322. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/aio.py +0 -0
  323. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/backoff.py +0 -0
  324. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/datetimes.py +0 -0
  325. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/proto_enums.py +0 -0
  326. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/serde.py +0 -0
  327. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/timedelta_to_expression.py +0 -0
  328. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/utils/typing.py +0 -0
  329. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/worker/__init__.py +0 -0
  330. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/worker/runner/run_loop_manager.py +0 -0
  331. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/worker/runner/utils/capture_logs.py +0 -0
  332. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/worker/worker.py +0 -0
  333. {hatchet_sdk-1.19.0 → hatchet_sdk-1.20.1}/hatchet_sdk/workflow_run.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hatchet-sdk
3
- Version: 1.19.0
3
+ Version: 1.20.1
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Alexander Belanger
@@ -231,7 +231,6 @@ class ActionListener:
231
231
  tenant_id=assigned_action.tenantId,
232
232
  worker_id=self.worker_id,
233
233
  workflow_run_id=assigned_action.workflowRunId,
234
- get_group_key_run_id=assigned_action.getGroupKeyRunId,
235
234
  job_id=assigned_action.jobId,
236
235
  job_name=assigned_action.jobName,
237
236
  job_run_id=assigned_action.jobRunId,
@@ -18,8 +18,6 @@ from hatchet_sdk.contracts.dispatcher_pb2 import (
18
18
  STEP_EVENT_TYPE_COMPLETED,
19
19
  STEP_EVENT_TYPE_FAILED,
20
20
  ActionEventResponse,
21
- GroupKeyActionEvent,
22
- GroupKeyActionEventType,
23
21
  OverridesData,
24
22
  RefreshTimeoutRequest,
25
23
  ReleaseSlotRequest,
@@ -151,34 +149,6 @@ class DispatcherClient:
151
149
  ),
152
150
  )
153
151
 
154
- async def send_group_key_action_event(
155
- self, action: Action, event_type: GroupKeyActionEventType, payload: str
156
- ) -> grpc.aio.UnaryUnaryCall[GroupKeyActionEvent, ActionEventResponse]:
157
- if not self.aio_client:
158
- aio_conn = new_conn(self.config, True)
159
- self.aio_client = DispatcherStub(aio_conn)
160
-
161
- event_timestamp = Timestamp()
162
- event_timestamp.GetCurrentTime()
163
-
164
- event = GroupKeyActionEvent(
165
- workerId=action.worker_id,
166
- workflowRunId=action.workflow_run_id,
167
- getGroupKeyRunId=action.get_group_key_run_id,
168
- actionId=action.action_id,
169
- eventTimestamp=event_timestamp,
170
- eventType=event_type,
171
- eventPayload=payload,
172
- )
173
-
174
- return cast(
175
- grpc.aio.UnaryUnaryCall[GroupKeyActionEvent, ActionEventResponse],
176
- await self.aio_client.SendGroupKeyActionEvent(
177
- event,
178
- metadata=get_metadata(self.token),
179
- ),
180
- )
181
-
182
152
  def put_overrides_data(self, data: OverridesData) -> ActionEventResponse:
183
153
  client = self._get_or_create_client()
184
154
 
@@ -150,6 +150,7 @@ from hatchet_sdk.clients.rest.models.rate_limit_order_by_field import (
150
150
  RateLimitOrderByField,
151
151
  )
152
152
  from hatchet_sdk.clients.rest.models.recent_step_runs import RecentStepRuns
153
+ from hatchet_sdk.clients.rest.models.registered_workflow import RegisteredWorkflow
153
154
  from hatchet_sdk.clients.rest.models.reject_invite_request import RejectInviteRequest
154
155
  from hatchet_sdk.clients.rest.models.replay_event_request import ReplayEventRequest
155
156
  from hatchet_sdk.clients.rest.models.replay_workflow_runs_request import (
@@ -196,6 +197,7 @@ from hatchet_sdk.clients.rest.models.tenant_alert_email_group_list import (
196
197
  from hatchet_sdk.clients.rest.models.tenant_alerting_settings import (
197
198
  TenantAlertingSettings,
198
199
  )
200
+ from hatchet_sdk.clients.rest.models.tenant_environment import TenantEnvironment
199
201
  from hatchet_sdk.clients.rest.models.tenant_invite import TenantInvite
200
202
  from hatchet_sdk.clients.rest.models.tenant_invite_list import TenantInviteList
201
203
  from hatchet_sdk.clients.rest.models.tenant_list import TenantList
@@ -214,12 +216,18 @@ from hatchet_sdk.clients.rest.models.tenant_version import TenantVersion
214
216
  from hatchet_sdk.clients.rest.models.trigger_workflow_run_request import (
215
217
  TriggerWorkflowRunRequest,
216
218
  )
219
+ from hatchet_sdk.clients.rest.models.update_cron_workflow_trigger_request import (
220
+ UpdateCronWorkflowTriggerRequest,
221
+ )
217
222
  from hatchet_sdk.clients.rest.models.update_tenant_alert_email_group_request import (
218
223
  UpdateTenantAlertEmailGroupRequest,
219
224
  )
220
225
  from hatchet_sdk.clients.rest.models.update_tenant_invite_request import (
221
226
  UpdateTenantInviteRequest,
222
227
  )
228
+ from hatchet_sdk.clients.rest.models.update_tenant_member_request import (
229
+ UpdateTenantMemberRequest,
230
+ )
223
231
  from hatchet_sdk.clients.rest.models.update_tenant_request import UpdateTenantRequest
224
232
  from hatchet_sdk.clients.rest.models.update_worker_request import UpdateWorkerRequest
225
233
  from hatchet_sdk.clients.rest.models.user import User
@@ -290,6 +298,9 @@ from hatchet_sdk.clients.rest.models.v1_trigger_workflow_run_request import (
290
298
  from hatchet_sdk.clients.rest.models.v1_update_filter_request import (
291
299
  V1UpdateFilterRequest,
292
300
  )
301
+ from hatchet_sdk.clients.rest.models.v1_update_webhook_request import (
302
+ V1UpdateWebhookRequest,
303
+ )
293
304
  from hatchet_sdk.clients.rest.models.v1_webhook import V1Webhook
294
305
  from hatchet_sdk.clients.rest.models.v1_webhook_api_key_auth import V1WebhookAPIKeyAuth
295
306
  from hatchet_sdk.clients.rest.models.v1_webhook_auth_type import V1WebhookAuthType
@@ -302,9 +313,6 @@ from hatchet_sdk.clients.rest.models.v1_webhook_hmac_encoding import (
302
313
  V1WebhookHMACEncoding,
303
314
  )
304
315
  from hatchet_sdk.clients.rest.models.v1_webhook_list import V1WebhookList
305
- from hatchet_sdk.clients.rest.models.v1_webhook_receive200_response import (
306
- V1WebhookReceive200Response,
307
- )
308
316
  from hatchet_sdk.clients.rest.models.v1_webhook_source_name import V1WebhookSourceName
309
317
  from hatchet_sdk.clients.rest.models.v1_workflow_run import V1WorkflowRun
310
318
  from hatchet_sdk.clients.rest.models.v1_workflow_run_details import V1WorkflowRunDetails
@@ -1597,6 +1597,10 @@ class TaskApi:
1597
1597
  Optional[Annotated[str, Field(min_length=36, strict=True, max_length=36)]],
1598
1598
  Field(description="The id of the event that triggered the task"),
1599
1599
  ] = None,
1600
+ additional_metadata: Annotated[
1601
+ Optional[List[StrictStr]],
1602
+ Field(description="Additional metadata k-v pairs to filter by"),
1603
+ ] = None,
1600
1604
  _request_timeout: Union[
1601
1605
  None,
1602
1606
  Annotated[StrictFloat, Field(gt=0)],
@@ -1625,6 +1629,8 @@ class TaskApi:
1625
1629
  :type parent_task_external_id: str
1626
1630
  :param triggering_event_external_id: The id of the event that triggered the task
1627
1631
  :type triggering_event_external_id: str
1632
+ :param additional_metadata: Additional metadata k-v pairs to filter by
1633
+ :type additional_metadata: List[str]
1628
1634
  :param _request_timeout: timeout setting for this request. If one
1629
1635
  number provided, it will be total request
1630
1636
  timeout. It can also be a pair (tuple) of
@@ -1654,6 +1660,7 @@ class TaskApi:
1654
1660
  workflow_ids=workflow_ids,
1655
1661
  parent_task_external_id=parent_task_external_id,
1656
1662
  triggering_event_external_id=triggering_event_external_id,
1663
+ additional_metadata=additional_metadata,
1657
1664
  _request_auth=_request_auth,
1658
1665
  _content_type=_content_type,
1659
1666
  _headers=_headers,
@@ -1704,6 +1711,10 @@ class TaskApi:
1704
1711
  Optional[Annotated[str, Field(min_length=36, strict=True, max_length=36)]],
1705
1712
  Field(description="The id of the event that triggered the task"),
1706
1713
  ] = None,
1714
+ additional_metadata: Annotated[
1715
+ Optional[List[StrictStr]],
1716
+ Field(description="Additional metadata k-v pairs to filter by"),
1717
+ ] = None,
1707
1718
  _request_timeout: Union[
1708
1719
  None,
1709
1720
  Annotated[StrictFloat, Field(gt=0)],
@@ -1732,6 +1743,8 @@ class TaskApi:
1732
1743
  :type parent_task_external_id: str
1733
1744
  :param triggering_event_external_id: The id of the event that triggered the task
1734
1745
  :type triggering_event_external_id: str
1746
+ :param additional_metadata: Additional metadata k-v pairs to filter by
1747
+ :type additional_metadata: List[str]
1735
1748
  :param _request_timeout: timeout setting for this request. If one
1736
1749
  number provided, it will be total request
1737
1750
  timeout. It can also be a pair (tuple) of
@@ -1761,6 +1774,7 @@ class TaskApi:
1761
1774
  workflow_ids=workflow_ids,
1762
1775
  parent_task_external_id=parent_task_external_id,
1763
1776
  triggering_event_external_id=triggering_event_external_id,
1777
+ additional_metadata=additional_metadata,
1764
1778
  _request_auth=_request_auth,
1765
1779
  _content_type=_content_type,
1766
1780
  _headers=_headers,
@@ -1811,6 +1825,10 @@ class TaskApi:
1811
1825
  Optional[Annotated[str, Field(min_length=36, strict=True, max_length=36)]],
1812
1826
  Field(description="The id of the event that triggered the task"),
1813
1827
  ] = None,
1828
+ additional_metadata: Annotated[
1829
+ Optional[List[StrictStr]],
1830
+ Field(description="Additional metadata k-v pairs to filter by"),
1831
+ ] = None,
1814
1832
  _request_timeout: Union[
1815
1833
  None,
1816
1834
  Annotated[StrictFloat, Field(gt=0)],
@@ -1839,6 +1857,8 @@ class TaskApi:
1839
1857
  :type parent_task_external_id: str
1840
1858
  :param triggering_event_external_id: The id of the event that triggered the task
1841
1859
  :type triggering_event_external_id: str
1860
+ :param additional_metadata: Additional metadata k-v pairs to filter by
1861
+ :type additional_metadata: List[str]
1842
1862
  :param _request_timeout: timeout setting for this request. If one
1843
1863
  number provided, it will be total request
1844
1864
  timeout. It can also be a pair (tuple) of
@@ -1868,6 +1888,7 @@ class TaskApi:
1868
1888
  workflow_ids=workflow_ids,
1869
1889
  parent_task_external_id=parent_task_external_id,
1870
1890
  triggering_event_external_id=triggering_event_external_id,
1891
+ additional_metadata=additional_metadata,
1871
1892
  _request_auth=_request_auth,
1872
1893
  _content_type=_content_type,
1873
1894
  _headers=_headers,
@@ -1893,6 +1914,7 @@ class TaskApi:
1893
1914
  workflow_ids,
1894
1915
  parent_task_external_id,
1895
1916
  triggering_event_external_id,
1917
+ additional_metadata,
1896
1918
  _request_auth,
1897
1919
  _content_type,
1898
1920
  _headers,
@@ -1903,6 +1925,7 @@ class TaskApi:
1903
1925
 
1904
1926
  _collection_formats: Dict[str, str] = {
1905
1927
  "workflow_ids": "multi",
1928
+ "additional_metadata": "multi",
1906
1929
  }
1907
1930
 
1908
1931
  _path_params: Dict[str, str] = {}
@@ -1954,6 +1977,10 @@ class TaskApi:
1954
1977
  ("triggering_event_external_id", triggering_event_external_id)
1955
1978
  )
1956
1979
 
1980
+ if additional_metadata is not None:
1981
+
1982
+ _query_params.append(("additional_metadata", additional_metadata))
1983
+
1957
1984
  # process the header parameters
1958
1985
  # process the form parameters
1959
1986
  # process the body parameter
@@ -49,6 +49,9 @@ from hatchet_sdk.clients.rest.models.tenant_step_run_queue_metrics import (
49
49
  from hatchet_sdk.clients.rest.models.update_tenant_alert_email_group_request import (
50
50
  UpdateTenantAlertEmailGroupRequest,
51
51
  )
52
+ from hatchet_sdk.clients.rest.models.update_tenant_member_request import (
53
+ UpdateTenantMemberRequest,
54
+ )
52
55
  from hatchet_sdk.clients.rest.models.update_tenant_request import UpdateTenantRequest
53
56
  from hatchet_sdk.clients.rest.rest import RESTResponseType
54
57
 
@@ -2862,6 +2865,7 @@ class TenantApi:
2862
2865
  "201": "TenantInvite",
2863
2866
  "400": "APIErrors",
2864
2867
  "403": "APIError",
2868
+ "422": "APIErrors",
2865
2869
  }
2866
2870
  response_data = self.api_client.call_api(
2867
2871
  *_param, _request_timeout=_request_timeout
@@ -2939,6 +2943,7 @@ class TenantApi:
2939
2943
  "201": "TenantInvite",
2940
2944
  "400": "APIErrors",
2941
2945
  "403": "APIError",
2946
+ "422": "APIErrors",
2942
2947
  }
2943
2948
  response_data = self.api_client.call_api(
2944
2949
  *_param, _request_timeout=_request_timeout
@@ -3016,6 +3021,7 @@ class TenantApi:
3016
3021
  "201": "TenantInvite",
3017
3022
  "400": "APIErrors",
3018
3023
  "403": "APIError",
3024
+ "422": "APIErrors",
3019
3025
  }
3020
3026
  response_data = self.api_client.call_api(
3021
3027
  *_param, _request_timeout=_request_timeout
@@ -4178,6 +4184,345 @@ class TenantApi:
4178
4184
  _request_auth=_request_auth,
4179
4185
  )
4180
4186
 
4187
+ @validate_call
4188
+ def tenant_member_update(
4189
+ self,
4190
+ tenant: Annotated[
4191
+ str,
4192
+ Field(
4193
+ min_length=36, strict=True, max_length=36, description="The tenant id"
4194
+ ),
4195
+ ],
4196
+ member: Annotated[
4197
+ str,
4198
+ Field(
4199
+ min_length=36,
4200
+ strict=True,
4201
+ max_length=36,
4202
+ description="The tenant member id",
4203
+ ),
4204
+ ],
4205
+ update_tenant_member_request: Annotated[
4206
+ UpdateTenantMemberRequest,
4207
+ Field(description="The tenant member properties to update"),
4208
+ ],
4209
+ _request_timeout: Union[
4210
+ None,
4211
+ Annotated[StrictFloat, Field(gt=0)],
4212
+ Tuple[
4213
+ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
4214
+ ],
4215
+ ] = None,
4216
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
4217
+ _content_type: Optional[StrictStr] = None,
4218
+ _headers: Optional[Dict[StrictStr, Any]] = None,
4219
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4220
+ ) -> TenantMember:
4221
+ """Update a tenant member
4222
+
4223
+ Update a tenant member
4224
+
4225
+ :param tenant: The tenant id (required)
4226
+ :type tenant: str
4227
+ :param member: The tenant member id (required)
4228
+ :type member: str
4229
+ :param update_tenant_member_request: The tenant member properties to update (required)
4230
+ :type update_tenant_member_request: UpdateTenantMemberRequest
4231
+ :param _request_timeout: timeout setting for this request. If one
4232
+ number provided, it will be total request
4233
+ timeout. It can also be a pair (tuple) of
4234
+ (connection, read) timeouts.
4235
+ :type _request_timeout: int, tuple(int, int), optional
4236
+ :param _request_auth: set to override the auth_settings for an a single
4237
+ request; this effectively ignores the
4238
+ authentication in the spec for a single request.
4239
+ :type _request_auth: dict, optional
4240
+ :param _content_type: force content-type for the request.
4241
+ :type _content_type: str, Optional
4242
+ :param _headers: set to override the headers for a single
4243
+ request; this effectively ignores the headers
4244
+ in the spec for a single request.
4245
+ :type _headers: dict, optional
4246
+ :param _host_index: set to override the host_index for a single
4247
+ request; this effectively ignores the host_index
4248
+ in the spec for a single request.
4249
+ :type _host_index: int, optional
4250
+ :return: Returns the result object.
4251
+ """ # noqa: E501
4252
+
4253
+ _param = self._tenant_member_update_serialize(
4254
+ tenant=tenant,
4255
+ member=member,
4256
+ update_tenant_member_request=update_tenant_member_request,
4257
+ _request_auth=_request_auth,
4258
+ _content_type=_content_type,
4259
+ _headers=_headers,
4260
+ _host_index=_host_index,
4261
+ )
4262
+
4263
+ _response_types_map: Dict[str, Optional[str]] = {
4264
+ "200": "TenantMember",
4265
+ "400": "APIErrors",
4266
+ "403": "APIErrors",
4267
+ "404": "APIErrors",
4268
+ }
4269
+ response_data = self.api_client.call_api(
4270
+ *_param, _request_timeout=_request_timeout
4271
+ )
4272
+ response_data.read()
4273
+ return self.api_client.response_deserialize(
4274
+ response_data=response_data,
4275
+ response_types_map=_response_types_map,
4276
+ ).data
4277
+
4278
+ @validate_call
4279
+ def tenant_member_update_with_http_info(
4280
+ self,
4281
+ tenant: Annotated[
4282
+ str,
4283
+ Field(
4284
+ min_length=36, strict=True, max_length=36, description="The tenant id"
4285
+ ),
4286
+ ],
4287
+ member: Annotated[
4288
+ str,
4289
+ Field(
4290
+ min_length=36,
4291
+ strict=True,
4292
+ max_length=36,
4293
+ description="The tenant member id",
4294
+ ),
4295
+ ],
4296
+ update_tenant_member_request: Annotated[
4297
+ UpdateTenantMemberRequest,
4298
+ Field(description="The tenant member properties to update"),
4299
+ ],
4300
+ _request_timeout: Union[
4301
+ None,
4302
+ Annotated[StrictFloat, Field(gt=0)],
4303
+ Tuple[
4304
+ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
4305
+ ],
4306
+ ] = None,
4307
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
4308
+ _content_type: Optional[StrictStr] = None,
4309
+ _headers: Optional[Dict[StrictStr, Any]] = None,
4310
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4311
+ ) -> ApiResponse[TenantMember]:
4312
+ """Update a tenant member
4313
+
4314
+ Update a tenant member
4315
+
4316
+ :param tenant: The tenant id (required)
4317
+ :type tenant: str
4318
+ :param member: The tenant member id (required)
4319
+ :type member: str
4320
+ :param update_tenant_member_request: The tenant member properties to update (required)
4321
+ :type update_tenant_member_request: UpdateTenantMemberRequest
4322
+ :param _request_timeout: timeout setting for this request. If one
4323
+ number provided, it will be total request
4324
+ timeout. It can also be a pair (tuple) of
4325
+ (connection, read) timeouts.
4326
+ :type _request_timeout: int, tuple(int, int), optional
4327
+ :param _request_auth: set to override the auth_settings for an a single
4328
+ request; this effectively ignores the
4329
+ authentication in the spec for a single request.
4330
+ :type _request_auth: dict, optional
4331
+ :param _content_type: force content-type for the request.
4332
+ :type _content_type: str, Optional
4333
+ :param _headers: set to override the headers for a single
4334
+ request; this effectively ignores the headers
4335
+ in the spec for a single request.
4336
+ :type _headers: dict, optional
4337
+ :param _host_index: set to override the host_index for a single
4338
+ request; this effectively ignores the host_index
4339
+ in the spec for a single request.
4340
+ :type _host_index: int, optional
4341
+ :return: Returns the result object.
4342
+ """ # noqa: E501
4343
+
4344
+ _param = self._tenant_member_update_serialize(
4345
+ tenant=tenant,
4346
+ member=member,
4347
+ update_tenant_member_request=update_tenant_member_request,
4348
+ _request_auth=_request_auth,
4349
+ _content_type=_content_type,
4350
+ _headers=_headers,
4351
+ _host_index=_host_index,
4352
+ )
4353
+
4354
+ _response_types_map: Dict[str, Optional[str]] = {
4355
+ "200": "TenantMember",
4356
+ "400": "APIErrors",
4357
+ "403": "APIErrors",
4358
+ "404": "APIErrors",
4359
+ }
4360
+ response_data = self.api_client.call_api(
4361
+ *_param, _request_timeout=_request_timeout
4362
+ )
4363
+ response_data.read()
4364
+ return self.api_client.response_deserialize(
4365
+ response_data=response_data,
4366
+ response_types_map=_response_types_map,
4367
+ )
4368
+
4369
+ @validate_call
4370
+ def tenant_member_update_without_preload_content(
4371
+ self,
4372
+ tenant: Annotated[
4373
+ str,
4374
+ Field(
4375
+ min_length=36, strict=True, max_length=36, description="The tenant id"
4376
+ ),
4377
+ ],
4378
+ member: Annotated[
4379
+ str,
4380
+ Field(
4381
+ min_length=36,
4382
+ strict=True,
4383
+ max_length=36,
4384
+ description="The tenant member id",
4385
+ ),
4386
+ ],
4387
+ update_tenant_member_request: Annotated[
4388
+ UpdateTenantMemberRequest,
4389
+ Field(description="The tenant member properties to update"),
4390
+ ],
4391
+ _request_timeout: Union[
4392
+ None,
4393
+ Annotated[StrictFloat, Field(gt=0)],
4394
+ Tuple[
4395
+ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
4396
+ ],
4397
+ ] = None,
4398
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
4399
+ _content_type: Optional[StrictStr] = None,
4400
+ _headers: Optional[Dict[StrictStr, Any]] = None,
4401
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4402
+ ) -> RESTResponseType:
4403
+ """Update a tenant member
4404
+
4405
+ Update a tenant member
4406
+
4407
+ :param tenant: The tenant id (required)
4408
+ :type tenant: str
4409
+ :param member: The tenant member id (required)
4410
+ :type member: str
4411
+ :param update_tenant_member_request: The tenant member properties to update (required)
4412
+ :type update_tenant_member_request: UpdateTenantMemberRequest
4413
+ :param _request_timeout: timeout setting for this request. If one
4414
+ number provided, it will be total request
4415
+ timeout. It can also be a pair (tuple) of
4416
+ (connection, read) timeouts.
4417
+ :type _request_timeout: int, tuple(int, int), optional
4418
+ :param _request_auth: set to override the auth_settings for an a single
4419
+ request; this effectively ignores the
4420
+ authentication in the spec for a single request.
4421
+ :type _request_auth: dict, optional
4422
+ :param _content_type: force content-type for the request.
4423
+ :type _content_type: str, Optional
4424
+ :param _headers: set to override the headers for a single
4425
+ request; this effectively ignores the headers
4426
+ in the spec for a single request.
4427
+ :type _headers: dict, optional
4428
+ :param _host_index: set to override the host_index for a single
4429
+ request; this effectively ignores the host_index
4430
+ in the spec for a single request.
4431
+ :type _host_index: int, optional
4432
+ :return: Returns the result object.
4433
+ """ # noqa: E501
4434
+
4435
+ _param = self._tenant_member_update_serialize(
4436
+ tenant=tenant,
4437
+ member=member,
4438
+ update_tenant_member_request=update_tenant_member_request,
4439
+ _request_auth=_request_auth,
4440
+ _content_type=_content_type,
4441
+ _headers=_headers,
4442
+ _host_index=_host_index,
4443
+ )
4444
+
4445
+ _response_types_map: Dict[str, Optional[str]] = {
4446
+ "200": "TenantMember",
4447
+ "400": "APIErrors",
4448
+ "403": "APIErrors",
4449
+ "404": "APIErrors",
4450
+ }
4451
+ response_data = self.api_client.call_api(
4452
+ *_param, _request_timeout=_request_timeout
4453
+ )
4454
+ return response_data.response
4455
+
4456
+ def _tenant_member_update_serialize(
4457
+ self,
4458
+ tenant,
4459
+ member,
4460
+ update_tenant_member_request,
4461
+ _request_auth,
4462
+ _content_type,
4463
+ _headers,
4464
+ _host_index,
4465
+ ) -> RequestSerialized:
4466
+
4467
+ _host = None
4468
+
4469
+ _collection_formats: Dict[str, str] = {}
4470
+
4471
+ _path_params: Dict[str, str] = {}
4472
+ _query_params: List[Tuple[str, str]] = []
4473
+ _header_params: Dict[str, Optional[str]] = _headers or {}
4474
+ _form_params: List[Tuple[str, str]] = []
4475
+ _files: Dict[
4476
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
4477
+ ] = {}
4478
+ _body_params: Optional[bytes] = None
4479
+
4480
+ # process the path parameters
4481
+ if tenant is not None:
4482
+ _path_params["tenant"] = tenant
4483
+ if member is not None:
4484
+ _path_params["member"] = member
4485
+ # process the query parameters
4486
+ # process the header parameters
4487
+ # process the form parameters
4488
+ # process the body parameter
4489
+ if update_tenant_member_request is not None:
4490
+ _body_params = update_tenant_member_request
4491
+
4492
+ # set the HTTP header `Accept`
4493
+ if "Accept" not in _header_params:
4494
+ _header_params["Accept"] = self.api_client.select_header_accept(
4495
+ ["application/json"]
4496
+ )
4497
+
4498
+ # set the HTTP header `Content-Type`
4499
+ if _content_type:
4500
+ _header_params["Content-Type"] = _content_type
4501
+ else:
4502
+ _default_content_type = self.api_client.select_header_content_type(
4503
+ ["application/json"]
4504
+ )
4505
+ if _default_content_type is not None:
4506
+ _header_params["Content-Type"] = _default_content_type
4507
+
4508
+ # authentication setting
4509
+ _auth_settings: List[str] = ["cookieAuth", "bearerAuth"]
4510
+
4511
+ return self.api_client.param_serialize(
4512
+ method="PATCH",
4513
+ resource_path="/api/v1/tenants/{tenant}/members/{member}",
4514
+ path_params=_path_params,
4515
+ query_params=_query_params,
4516
+ header_params=_header_params,
4517
+ body=_body_params,
4518
+ post_params=_form_params,
4519
+ files=_files,
4520
+ auth_settings=_auth_settings,
4521
+ collection_formats=_collection_formats,
4522
+ _host=_host,
4523
+ _request_auth=_request_auth,
4524
+ )
4525
+
4181
4526
  @validate_call
4182
4527
  def tenant_resource_policy_get(
4183
4528
  self,
@@ -333,6 +333,7 @@ class UserApi:
333
333
  "400": "APIErrors",
334
334
  "401": "APIErrors",
335
335
  "405": "APIErrors",
336
+ "422": "APIErrors",
336
337
  }
337
338
  response_data = self.api_client.call_api(
338
339
  *_param, _request_timeout=_request_timeout
@@ -400,6 +401,7 @@ class UserApi:
400
401
  "400": "APIErrors",
401
402
  "401": "APIErrors",
402
403
  "405": "APIErrors",
404
+ "422": "APIErrors",
403
405
  }
404
406
  response_data = self.api_client.call_api(
405
407
  *_param, _request_timeout=_request_timeout
@@ -467,6 +469,7 @@ class UserApi:
467
469
  "400": "APIErrors",
468
470
  "401": "APIErrors",
469
471
  "405": "APIErrors",
472
+ "422": "APIErrors",
470
473
  }
471
474
  response_data = self.api_client.call_api(
472
475
  *_param, _request_timeout=_request_timeout
@@ -1714,6 +1717,7 @@ class UserApi:
1714
1717
  "400": "APIErrors",
1715
1718
  "401": "APIErrors",
1716
1719
  "405": "APIErrors",
1720
+ "422": "APIErrors",
1717
1721
  }
1718
1722
  response_data = self.api_client.call_api(
1719
1723
  *_param, _request_timeout=_request_timeout
@@ -1781,6 +1785,7 @@ class UserApi:
1781
1785
  "400": "APIErrors",
1782
1786
  "401": "APIErrors",
1783
1787
  "405": "APIErrors",
1788
+ "422": "APIErrors",
1784
1789
  }
1785
1790
  response_data = self.api_client.call_api(
1786
1791
  *_param, _request_timeout=_request_timeout
@@ -1848,6 +1853,7 @@ class UserApi:
1848
1853
  "400": "APIErrors",
1849
1854
  "401": "APIErrors",
1850
1855
  "405": "APIErrors",
1856
+ "422": "APIErrors",
1851
1857
  }
1852
1858
  response_data = self.api_client.call_api(
1853
1859
  *_param, _request_timeout=_request_timeout
@@ -2211,6 +2217,7 @@ class UserApi:
2211
2217
  "400": "APIErrors",
2212
2218
  "401": "APIErrors",
2213
2219
  "405": "APIErrors",
2220
+ "422": "APIErrors",
2214
2221
  }
2215
2222
  response_data = self.api_client.call_api(
2216
2223
  *_param, _request_timeout=_request_timeout
@@ -2278,6 +2285,7 @@ class UserApi:
2278
2285
  "400": "APIErrors",
2279
2286
  "401": "APIErrors",
2280
2287
  "405": "APIErrors",
2288
+ "422": "APIErrors",
2281
2289
  }
2282
2290
  response_data = self.api_client.call_api(
2283
2291
  *_param, _request_timeout=_request_timeout
@@ -2345,6 +2353,7 @@ class UserApi:
2345
2353
  "400": "APIErrors",
2346
2354
  "401": "APIErrors",
2347
2355
  "405": "APIErrors",
2356
+ "422": "APIErrors",
2348
2357
  }
2349
2358
  response_data = self.api_client.call_api(
2350
2359
  *_param, _request_timeout=_request_timeout