hatchet-sdk 1.20.0__tar.gz → 1.22.2__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.
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/PKG-INFO +6 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/admin.py +20 -17
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/dispatcher/dispatcher.py +5 -2
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/events.py +36 -12
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/listeners/durable_event_listener.py +5 -3
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/__init__.py +38 -4
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/event_api.py +937 -350
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/healthcheck_api.py +18 -6
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/log_api.py +84 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/task_api.py +27 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/tenant_api.py +612 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/user_api.py +9 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/webhook_api.py +323 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/workflow_api.py +2586 -1311
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/workflow_runs_api.py +408 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/configuration.py +8 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/__init__.py +38 -4
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/concurrency_stat.py +91 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_tenant_request.py +18 -8
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/registered_workflow.py +86 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_delete_filter.py +108 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_delete_request.py +105 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_delete_response.py +109 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_error.py +86 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_update_item.py +87 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_update_request.py +107 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/scheduled_workflows_bulk_update_response.py +109 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/task_stat.py +105 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/task_status_stat.py +107 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant.py +5 -5
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/tenant_environment.py +38 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_resource.py +1 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/update_cron_workflow_trigger_request.py +83 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/update_scheduled_workflow_run_request.py +84 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/update_tenant_member_request.py +85 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/update_tenant_request.py +0 -6
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_filter.py +8 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_event_type.py +1 -0
- hatchet_sdk-1.22.2/hatchet_sdk/clients/rest/models/v1_update_webhook_request.py +86 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_source_name.py +2 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/worker.py +22 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/tenacity_utils.py +11 -2
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/v1/api_client.py +0 -26
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/config.py +11 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/connection.py +1 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/context/context.py +1 -4
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/dispatcher_pb2.py +11 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/dispatcher_pb2.pyi +10 -7
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/dispatcher_pb2_grpc.py +3 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/events_pb2.py +11 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/events_pb2.pyi +8 -5
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/events_pb2_grpc.py +3 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/dispatcher_pb2.py +11 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/dispatcher_pb2.pyi +2 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/dispatcher_pb2_grpc.py +3 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/shared/condition_pb2.py +11 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/shared/condition_pb2.pyi +2 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/shared/condition_pb2_grpc.py +3 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/workflows_pb2.py +11 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/workflows_pb2.pyi +5 -2
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/v1/workflows_pb2_grpc.py +3 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/workflows_pb2.py +11 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/workflows_pb2.pyi +8 -5
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/contracts/workflows_pb2_grpc.py +3 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/exceptions.py +5 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/cel.py +6 -3
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/cron.py +21 -5
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/filters.py +10 -5
- hatchet_sdk-1.22.2/hatchet_sdk/features/logs.py +59 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/metrics.py +31 -10
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/rate_limits.py +4 -3
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/runs.py +252 -14
- hatchet_sdk-1.22.2/hatchet_sdk/features/scheduled.py +444 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/tenant.py +6 -3
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/workers.py +10 -5
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/workflows.py +14 -7
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/hatchet.py +42 -22
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/opentelemetry/instrumentor.py +25 -1
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/rate_limit.py +5 -2
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/runnables/task.py +168 -16
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/runnables/types.py +64 -7
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/runnables/workflow.py +31 -29
- hatchet_sdk-1.22.2/hatchet_sdk/utils/iterables.py +9 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/typing.py +4 -13
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/worker/runner/runner.py +77 -59
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/worker/worker.py +25 -10
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/workflow_run.py +8 -2
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/pyproject.toml +12 -13
- hatchet_sdk-1.20.0/hatchet_sdk/features/logs.py +0 -35
- hatchet_sdk-1.20.0/hatchet_sdk/features/scheduled.py +0 -220
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/README.md +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/client.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/dispatcher/action_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/event_ts.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/listeners/pooled_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/listeners/run_event_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/listeners/workflow_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/api_token_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/cel_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/default_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/filter_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/github_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/metadata_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/rate_limits_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/slack_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/sns_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/step_run_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/worker_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api/workflow_run_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api_client.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/api_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/exceptions.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/accept_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_error.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_errors.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_meta.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_meta_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_meta_integration.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_meta_posthog.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_resource_meta.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/api_token.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/bulk_create_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/bulk_create_event_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/cancel_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/cancel_step_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/concurrency_limit_strategy.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_api_token_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_api_token_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_pull_request_from_step_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_sns_integration_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/create_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/cron_workflows.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/cron_workflows_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/cron_workflows_method.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/cron_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_data.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_key_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_update_cancel200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/events.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/get_step_run_diff_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/github_app_installation.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/github_branch.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/github_repo.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/info_get_version200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/job.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/job_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/job_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/link_github_repository_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/list_api_tokens_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/list_github_app_installations_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/list_pull_requests_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/list_slack_webhooks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/list_sns_integrations.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/log_line.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/log_line_level.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/log_line_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/log_line_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/log_line_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/pagination_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/pull_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/pull_request_state.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/queue_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/rate_limit.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/rate_limit_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/rate_limit_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/rate_limit_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/recent_step_runs.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/reject_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/replay_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/replay_workflow_runs_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/replay_workflow_runs_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/rerun_step_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/schedule_workflow_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/scheduled_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/scheduled_workflows.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/scheduled_workflows_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/scheduled_workflows_method.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/semaphore_slots.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/slack_webhook.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/sns_integration.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_archive.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_archive_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_diff.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_event_reason.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_event_severity.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/step_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_alert_email_group.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_alert_email_group_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_alerting_settings.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_invite.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_invite_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_member.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_member_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_member_role.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_queue_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_resource_limit.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_resource_policy.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_ui_version.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/tenant_version.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/update_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/update_worker_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/user.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/user_change_password_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/user_login_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/user_register_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/user_tenant_memberships_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/user_tenant_public.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cancel_task_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cancelled_tasks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_error_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_response_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_success_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_filter_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key_all_of_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_base.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth_all_of_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac_all_of_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_dag_children.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_event_triggered_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_filter_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_log_line.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_log_line_level.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_log_line_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_replay_task_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_replayed_tasks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_filter.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_point_metric.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_point_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_run_metric.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_summary.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_summary_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_timing.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_task_timing_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_update_filter_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_api_key_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_basic_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_algorithm.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_encoding.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_webhook_receive200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_workflow_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_workflow_run_details.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/v1_workflow_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_create_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_create_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_created.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_list_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_request_list_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/webhook_worker_request_method.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/worker_label.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/worker_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/worker_runtime_info.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/worker_runtime_sdks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/worker_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_concurrency.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_deployment_config.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_kind.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_cancel200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_shape.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_shape_item_for_workflow_run_details.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_run_triggered_by.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_runs_cancel_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_runs_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_tag.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_trigger_event_ref.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_triggers.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_update_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_version.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_version_concurrency.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_version_definition.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_version_meta.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/models/workflow_workers_count.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/rest/rest.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/conditions.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/context/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/context/worker_context.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/features/stubs.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/labels.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/logger.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/metadata.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/py.typed +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/runnables/action.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/runnables/contextvars.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/token.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/aio.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/backoff.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/datetimes.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/opentelemetry.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/proto_enums.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/serde.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/utils/timedelta_to_expression.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/worker/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/worker/action_listener_process.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/worker/runner/run_loop_manager.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/worker/runner/utils/capture_logs.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hatchet-sdk
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.22.2
|
|
4
|
+
Summary: This is the official Python SDK for Hatchet, a distributed, fault-tolerant task queue. The SDK allows you to easily integrate Hatchet's task scheduling and workflow orchestration capabilities into your Python applications.
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Alexander Belanger
|
|
7
7
|
Author-email: alexander@hatchet.run
|
|
@@ -14,10 +14,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
14
14
|
Provides-Extra: otel
|
|
15
15
|
Provides-Extra: v0-sdk
|
|
16
16
|
Requires-Dist: aiohttp (>=3.10.5,<4.0.0)
|
|
17
|
-
Requires-Dist: grpcio (>=1.
|
|
18
|
-
Requires-Dist: grpcio (>=1.
|
|
19
|
-
Requires-Dist: grpcio-tools (>=1.64.1,!=1.68.*) ; python_version < "3.13"
|
|
20
|
-
Requires-Dist: grpcio-tools (>=1.69.0) ; python_version >= "3.13"
|
|
17
|
+
Requires-Dist: grpcio (>=1.76.0,<2.0.0)
|
|
18
|
+
Requires-Dist: grpcio-tools (>=1.76.0,<2.0.0)
|
|
21
19
|
Requires-Dist: opentelemetry-api (>=1.28.0,<2.0.0) ; extra == "otel"
|
|
22
20
|
Requires-Dist: opentelemetry-distro (>=0.49b0) ; extra == "otel"
|
|
23
21
|
Requires-Dist: opentelemetry-exporter-otlp (>=1.28.0,<2.0.0) ; extra == "otel"
|
|
@@ -25,12 +23,12 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.28.0,<2.0.0) ; extra
|
|
|
25
23
|
Requires-Dist: opentelemetry-instrumentation (>=0.49b0) ; extra == "otel"
|
|
26
24
|
Requires-Dist: opentelemetry-sdk (>=1.28.0,<2.0.0) ; extra == "otel"
|
|
27
25
|
Requires-Dist: prometheus-client (>=0.21.1)
|
|
28
|
-
Requires-Dist: protobuf (>=
|
|
26
|
+
Requires-Dist: protobuf (>=6.30.0,<7.0.0)
|
|
29
27
|
Requires-Dist: pydantic (>=2.6.3,<3.0.0)
|
|
30
28
|
Requires-Dist: pydantic-settings (>=2.7.1,<3.0.0)
|
|
31
29
|
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
|
|
32
30
|
Requires-Dist: tenacity (>=8.4.1)
|
|
33
|
-
Requires-Dist: urllib3 (>=2.
|
|
31
|
+
Requires-Dist: urllib3 (>=2.6.0,<3.0.0)
|
|
34
32
|
Description-Content-Type: text/markdown
|
|
35
33
|
|
|
36
34
|
# Hatchet Python SDK
|
|
@@ -170,14 +170,12 @@ class AdminClient:
|
|
|
170
170
|
priority=options.priority,
|
|
171
171
|
)
|
|
172
172
|
|
|
173
|
-
@tenacity_retry
|
|
174
173
|
async def aio_put_workflow(
|
|
175
174
|
self,
|
|
176
175
|
workflow: workflow_protos.CreateWorkflowVersionRequest,
|
|
177
176
|
) -> workflow_protos.CreateWorkflowVersionResponse:
|
|
178
177
|
return await asyncio.to_thread(self.put_workflow, workflow)
|
|
179
178
|
|
|
180
|
-
@tenacity_retry
|
|
181
179
|
async def aio_put_rate_limit(
|
|
182
180
|
self,
|
|
183
181
|
key: str,
|
|
@@ -186,7 +184,6 @@ class AdminClient:
|
|
|
186
184
|
) -> None:
|
|
187
185
|
return await asyncio.to_thread(self.put_rate_limit, key, limit, duration)
|
|
188
186
|
|
|
189
|
-
@tenacity_retry
|
|
190
187
|
async def aio_schedule_workflow(
|
|
191
188
|
self,
|
|
192
189
|
name: str,
|
|
@@ -198,7 +195,6 @@ class AdminClient:
|
|
|
198
195
|
self.schedule_workflow, name, schedules, input, options
|
|
199
196
|
)
|
|
200
197
|
|
|
201
|
-
@tenacity_retry
|
|
202
198
|
def put_workflow(
|
|
203
199
|
self,
|
|
204
200
|
workflow: workflow_protos.CreateWorkflowVersionRequest,
|
|
@@ -207,15 +203,15 @@ class AdminClient:
|
|
|
207
203
|
conn = new_conn(self.config, False)
|
|
208
204
|
self.client = AdminServiceStub(conn)
|
|
209
205
|
|
|
206
|
+
put_workflow = tenacity_retry(self.client.PutWorkflow, self.config.tenacity)
|
|
210
207
|
return cast(
|
|
211
208
|
workflow_protos.CreateWorkflowVersionResponse,
|
|
212
|
-
|
|
209
|
+
put_workflow(
|
|
213
210
|
workflow,
|
|
214
211
|
metadata=get_metadata(self.token),
|
|
215
212
|
),
|
|
216
213
|
)
|
|
217
214
|
|
|
218
|
-
@tenacity_retry
|
|
219
215
|
def put_rate_limit(
|
|
220
216
|
self,
|
|
221
217
|
key: str,
|
|
@@ -227,8 +223,9 @@ class AdminClient:
|
|
|
227
223
|
)
|
|
228
224
|
|
|
229
225
|
client = self._get_or_create_v0_client()
|
|
226
|
+
put_rate_limit = tenacity_retry(client.PutRateLimit, self.config.tenacity)
|
|
230
227
|
|
|
231
|
-
|
|
228
|
+
put_rate_limit(
|
|
232
229
|
v0_workflow_protos.PutRateLimitRequest(
|
|
233
230
|
key=key,
|
|
234
231
|
limit=limit,
|
|
@@ -237,7 +234,6 @@ class AdminClient:
|
|
|
237
234
|
metadata=get_metadata(self.token),
|
|
238
235
|
)
|
|
239
236
|
|
|
240
|
-
@tenacity_retry
|
|
241
237
|
def schedule_workflow(
|
|
242
238
|
self,
|
|
243
239
|
name: str,
|
|
@@ -255,10 +251,13 @@ class AdminClient:
|
|
|
255
251
|
)
|
|
256
252
|
|
|
257
253
|
client = self._get_or_create_v0_client()
|
|
254
|
+
schedule_workflow = tenacity_retry(
|
|
255
|
+
client.ScheduleWorkflow, self.config.tenacity
|
|
256
|
+
)
|
|
258
257
|
|
|
259
258
|
return cast(
|
|
260
259
|
v0_workflow_protos.WorkflowVersion,
|
|
261
|
-
|
|
260
|
+
schedule_workflow(
|
|
262
261
|
request,
|
|
263
262
|
metadata=get_metadata(self.token),
|
|
264
263
|
),
|
|
@@ -313,7 +312,6 @@ class AdminClient:
|
|
|
313
312
|
return self._prepare_workflow_request(workflow_name, input, trigger_options)
|
|
314
313
|
|
|
315
314
|
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
|
|
316
|
-
@tenacity_retry
|
|
317
315
|
def run_workflow(
|
|
318
316
|
self,
|
|
319
317
|
workflow_name: str,
|
|
@@ -322,11 +320,12 @@ class AdminClient:
|
|
|
322
320
|
) -> WorkflowRunRef:
|
|
323
321
|
request = self._create_workflow_run_request(workflow_name, input, options)
|
|
324
322
|
client = self._get_or_create_v0_client()
|
|
323
|
+
trigger_workflow = tenacity_retry(client.TriggerWorkflow, self.config.tenacity)
|
|
325
324
|
|
|
326
325
|
try:
|
|
327
326
|
resp = cast(
|
|
328
327
|
v0_workflow_protos.TriggerWorkflowResponse,
|
|
329
|
-
|
|
328
|
+
trigger_workflow(
|
|
330
329
|
request,
|
|
331
330
|
metadata=get_metadata(self.token),
|
|
332
331
|
),
|
|
@@ -344,7 +343,6 @@ class AdminClient:
|
|
|
344
343
|
)
|
|
345
344
|
|
|
346
345
|
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
|
|
347
|
-
@tenacity_retry
|
|
348
346
|
async def aio_run_workflow(
|
|
349
347
|
self,
|
|
350
348
|
workflow_name: str,
|
|
@@ -352,6 +350,7 @@ class AdminClient:
|
|
|
352
350
|
options: TriggerWorkflowOptions = TriggerWorkflowOptions(),
|
|
353
351
|
) -> WorkflowRunRef:
|
|
354
352
|
client = self._get_or_create_v0_client()
|
|
353
|
+
trigger_workflow = tenacity_retry(client.TriggerWorkflow, self.config.tenacity)
|
|
355
354
|
async with spawn_index_lock:
|
|
356
355
|
request = self._create_workflow_run_request(workflow_name, input, options)
|
|
357
356
|
|
|
@@ -359,7 +358,7 @@ class AdminClient:
|
|
|
359
358
|
resp = cast(
|
|
360
359
|
v0_workflow_protos.TriggerWorkflowResponse,
|
|
361
360
|
await asyncio.to_thread(
|
|
362
|
-
|
|
361
|
+
trigger_workflow,
|
|
363
362
|
request,
|
|
364
363
|
metadata=get_metadata(self.token),
|
|
365
364
|
),
|
|
@@ -382,7 +381,6 @@ class AdminClient:
|
|
|
382
381
|
yield xs[i : i + n]
|
|
383
382
|
|
|
384
383
|
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
|
|
385
|
-
@tenacity_retry
|
|
386
384
|
def run_workflows(
|
|
387
385
|
self,
|
|
388
386
|
workflows: list[WorkflowRunTriggerConfig],
|
|
@@ -394,6 +392,9 @@ class AdminClient:
|
|
|
394
392
|
)
|
|
395
393
|
for workflow in workflows
|
|
396
394
|
]
|
|
395
|
+
bulk_trigger_workflow = tenacity_retry(
|
|
396
|
+
client.BulkTriggerWorkflow, self.config.tenacity
|
|
397
|
+
)
|
|
397
398
|
|
|
398
399
|
refs: list[WorkflowRunRef] = []
|
|
399
400
|
|
|
@@ -404,7 +405,7 @@ class AdminClient:
|
|
|
404
405
|
|
|
405
406
|
resp = cast(
|
|
406
407
|
v0_workflow_protos.BulkTriggerWorkflowResponse,
|
|
407
|
-
|
|
408
|
+
bulk_trigger_workflow(
|
|
408
409
|
bulk_request,
|
|
409
410
|
metadata=get_metadata(self.token),
|
|
410
411
|
),
|
|
@@ -424,7 +425,6 @@ class AdminClient:
|
|
|
424
425
|
|
|
425
426
|
return refs
|
|
426
427
|
|
|
427
|
-
@tenacity_retry
|
|
428
428
|
async def aio_run_workflows(
|
|
429
429
|
self,
|
|
430
430
|
workflows: list[WorkflowRunTriggerConfig],
|
|
@@ -432,6 +432,9 @@ class AdminClient:
|
|
|
432
432
|
client = self._get_or_create_v0_client()
|
|
433
433
|
chunks = self.chunk(workflows, MAX_BULK_WORKFLOW_RUN_BATCH_SIZE)
|
|
434
434
|
refs: list[WorkflowRunRef] = []
|
|
435
|
+
bulk_trigger_workflow = tenacity_retry(
|
|
436
|
+
client.BulkTriggerWorkflow, self.config.tenacity
|
|
437
|
+
)
|
|
435
438
|
|
|
436
439
|
for chunk in chunks:
|
|
437
440
|
async with spawn_index_lock:
|
|
@@ -449,7 +452,7 @@ class AdminClient:
|
|
|
449
452
|
resp = cast(
|
|
450
453
|
v0_workflow_protos.BulkTriggerWorkflowResponse,
|
|
451
454
|
await asyncio.to_thread(
|
|
452
|
-
|
|
455
|
+
bulk_trigger_workflow,
|
|
453
456
|
bulk_request,
|
|
454
457
|
metadata=get_metadata(self.token),
|
|
455
458
|
),
|
|
@@ -112,7 +112,6 @@ class DispatcherClient:
|
|
|
112
112
|
|
|
113
113
|
return None
|
|
114
114
|
|
|
115
|
-
@tenacity_retry
|
|
116
115
|
async def _try_send_step_action_event(
|
|
117
116
|
self,
|
|
118
117
|
action: Action,
|
|
@@ -141,9 +140,13 @@ class DispatcherClient:
|
|
|
141
140
|
shouldNotRetry=should_not_retry,
|
|
142
141
|
)
|
|
143
142
|
|
|
143
|
+
send_step_action_event = tenacity_retry(
|
|
144
|
+
self.aio_client.SendStepActionEvent, self.config.tenacity
|
|
145
|
+
)
|
|
146
|
+
|
|
144
147
|
return cast(
|
|
145
148
|
grpc.aio.UnaryUnaryCall[StepActionEvent, ActionEventResponse],
|
|
146
|
-
await
|
|
149
|
+
await send_step_action_event(
|
|
147
150
|
event,
|
|
148
151
|
metadata=get_metadata(self.token),
|
|
149
152
|
),
|
|
@@ -9,6 +9,7 @@ from pydantic import BaseModel, Field
|
|
|
9
9
|
from hatchet_sdk.clients.rest.api.event_api import EventApi
|
|
10
10
|
from hatchet_sdk.clients.rest.api.workflow_runs_api import WorkflowRunsApi
|
|
11
11
|
from hatchet_sdk.clients.rest.api_client import ApiClient
|
|
12
|
+
from hatchet_sdk.clients.rest.models.v1_event import V1Event
|
|
12
13
|
from hatchet_sdk.clients.rest.models.v1_event_list import V1EventList
|
|
13
14
|
from hatchet_sdk.clients.rest.models.v1_task_status import V1TaskStatus
|
|
14
15
|
from hatchet_sdk.clients.rest.tenacity_utils import tenacity_retry
|
|
@@ -92,7 +93,6 @@ class EventClient(BaseRestClient):
|
|
|
92
93
|
return await asyncio.to_thread(self.bulk_push, events=events, options=options)
|
|
93
94
|
|
|
94
95
|
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
|
|
95
|
-
@tenacity_retry
|
|
96
96
|
def push(
|
|
97
97
|
self,
|
|
98
98
|
event_key: str,
|
|
@@ -101,6 +101,9 @@ class EventClient(BaseRestClient):
|
|
|
101
101
|
) -> Event:
|
|
102
102
|
namespace = options.namespace or self.namespace
|
|
103
103
|
namespaced_event_key = self.client_config.apply_namespace(event_key, namespace)
|
|
104
|
+
push_event = tenacity_retry(
|
|
105
|
+
self.events_service_client.Push, self.client_config.tenacity
|
|
106
|
+
)
|
|
104
107
|
|
|
105
108
|
try:
|
|
106
109
|
meta_bytes = json.dumps(options.additional_metadata)
|
|
@@ -123,7 +126,7 @@ class EventClient(BaseRestClient):
|
|
|
123
126
|
|
|
124
127
|
return cast(
|
|
125
128
|
Event,
|
|
126
|
-
|
|
129
|
+
push_event(request, metadata=get_metadata(self.token)),
|
|
127
130
|
)
|
|
128
131
|
|
|
129
132
|
def _create_push_event_request(
|
|
@@ -156,13 +159,15 @@ class EventClient(BaseRestClient):
|
|
|
156
159
|
)
|
|
157
160
|
|
|
158
161
|
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
|
|
159
|
-
@tenacity_retry
|
|
160
162
|
def bulk_push(
|
|
161
163
|
self,
|
|
162
164
|
events: list[BulkPushEventWithMetadata],
|
|
163
165
|
options: BulkPushEventOptions = BulkPushEventOptions(),
|
|
164
166
|
) -> list[Event]:
|
|
165
167
|
namespace = options.namespace or self.namespace
|
|
168
|
+
bulk_push = tenacity_retry(
|
|
169
|
+
self.events_service_client.BulkPush, self.client_config.tenacity
|
|
170
|
+
)
|
|
166
171
|
|
|
167
172
|
bulk_request = BulkPushEventRequest(
|
|
168
173
|
events=[
|
|
@@ -173,16 +178,16 @@ class EventClient(BaseRestClient):
|
|
|
173
178
|
return list(
|
|
174
179
|
cast(
|
|
175
180
|
Events,
|
|
176
|
-
self.
|
|
177
|
-
bulk_request, metadata=get_metadata(self.token)
|
|
178
|
-
),
|
|
181
|
+
bulk_push(bulk_request, metadata=get_metadata(self.token)),
|
|
179
182
|
).events
|
|
180
183
|
)
|
|
181
184
|
|
|
182
|
-
@tenacity_retry
|
|
183
185
|
def log(
|
|
184
186
|
self, message: str, step_run_id: str, level: LogLevel | None = None
|
|
185
187
|
) -> None:
|
|
188
|
+
put_log = tenacity_retry(
|
|
189
|
+
self.events_service_client.PutLog, self.client_config.tenacity
|
|
190
|
+
)
|
|
186
191
|
request = PutLogRequest(
|
|
187
192
|
stepRunId=step_run_id,
|
|
188
193
|
createdAt=proto_timestamp_now(),
|
|
@@ -190,10 +195,12 @@ class EventClient(BaseRestClient):
|
|
|
190
195
|
level=level.value if level else None,
|
|
191
196
|
)
|
|
192
197
|
|
|
193
|
-
|
|
198
|
+
put_log(request, metadata=get_metadata(self.token))
|
|
194
199
|
|
|
195
|
-
@tenacity_retry
|
|
196
200
|
def stream(self, data: str | bytes, step_run_id: str, index: int) -> None:
|
|
201
|
+
put_stream_event = tenacity_retry(
|
|
202
|
+
self.events_service_client.PutStreamEvent, self.client_config.tenacity
|
|
203
|
+
)
|
|
197
204
|
if isinstance(data, str):
|
|
198
205
|
data_bytes = data.encode("utf-8")
|
|
199
206
|
elif isinstance(data, bytes):
|
|
@@ -209,9 +216,7 @@ class EventClient(BaseRestClient):
|
|
|
209
216
|
)
|
|
210
217
|
|
|
211
218
|
try:
|
|
212
|
-
self.
|
|
213
|
-
request, metadata=get_metadata(self.token)
|
|
214
|
-
)
|
|
219
|
+
put_stream_event(request, metadata=get_metadata(self.token))
|
|
215
220
|
except Exception:
|
|
216
221
|
raise
|
|
217
222
|
|
|
@@ -271,3 +276,22 @@ class EventClient(BaseRestClient):
|
|
|
271
276
|
),
|
|
272
277
|
scopes=scopes,
|
|
273
278
|
)
|
|
279
|
+
|
|
280
|
+
def get(
|
|
281
|
+
self,
|
|
282
|
+
event_id: str,
|
|
283
|
+
) -> V1Event:
|
|
284
|
+
with self.client() as client:
|
|
285
|
+
return self._ea(client).v1_event_get(
|
|
286
|
+
tenant=self.client_config.tenant_id,
|
|
287
|
+
v1_event=event_id,
|
|
288
|
+
)
|
|
289
|
+
|
|
290
|
+
async def aio_get(
|
|
291
|
+
self,
|
|
292
|
+
event_id: str,
|
|
293
|
+
) -> V1Event:
|
|
294
|
+
return await asyncio.to_thread(
|
|
295
|
+
self.get,
|
|
296
|
+
event_id=event_id,
|
|
297
|
+
)
|
{hatchet_sdk-1.20.0 → hatchet_sdk-1.22.2}/hatchet_sdk/clients/listeners/durable_event_listener.py
RENAMED
|
@@ -103,14 +103,17 @@ class DurableEventListener(
|
|
|
103
103
|
signal_key=key.signal_key,
|
|
104
104
|
)
|
|
105
105
|
|
|
106
|
-
@tenacity_retry
|
|
107
106
|
def register_durable_event(
|
|
108
107
|
self, request: RegisterDurableEventRequest
|
|
109
108
|
) -> Literal[True]:
|
|
110
109
|
conn = new_conn(self.config, True)
|
|
111
110
|
client = V1DispatcherStub(conn)
|
|
112
111
|
|
|
113
|
-
|
|
112
|
+
register_durable_event = tenacity_retry(
|
|
113
|
+
client.RegisterDurableEvent, self.config.tenacity
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
register_durable_event(
|
|
114
117
|
request.to_proto(),
|
|
115
118
|
timeout=5,
|
|
116
119
|
metadata=get_metadata(self.token),
|
|
@@ -118,7 +121,6 @@ class DurableEventListener(
|
|
|
118
121
|
|
|
119
122
|
return True
|
|
120
123
|
|
|
121
|
-
@tenacity_retry
|
|
122
124
|
async def result(self, task_id: str, signal_key: str) -> dict[str, Any]:
|
|
123
125
|
key = self._generate_key(task_id, signal_key)
|
|
124
126
|
|
|
@@ -69,6 +69,7 @@ from hatchet_sdk.clients.rest.models.cancel_event_request import CancelEventRequ
|
|
|
69
69
|
from hatchet_sdk.clients.rest.models.concurrency_limit_strategy import (
|
|
70
70
|
ConcurrencyLimitStrategy,
|
|
71
71
|
)
|
|
72
|
+
from hatchet_sdk.clients.rest.models.concurrency_stat import ConcurrencyStat
|
|
72
73
|
from hatchet_sdk.clients.rest.models.create_api_token_request import (
|
|
73
74
|
CreateAPITokenRequest,
|
|
74
75
|
)
|
|
@@ -150,6 +151,7 @@ from hatchet_sdk.clients.rest.models.rate_limit_order_by_field import (
|
|
|
150
151
|
RateLimitOrderByField,
|
|
151
152
|
)
|
|
152
153
|
from hatchet_sdk.clients.rest.models.recent_step_runs import RecentStepRuns
|
|
154
|
+
from hatchet_sdk.clients.rest.models.registered_workflow import RegisteredWorkflow
|
|
153
155
|
from hatchet_sdk.clients.rest.models.reject_invite_request import RejectInviteRequest
|
|
154
156
|
from hatchet_sdk.clients.rest.models.replay_event_request import ReplayEventRequest
|
|
155
157
|
from hatchet_sdk.clients.rest.models.replay_workflow_runs_request import (
|
|
@@ -164,6 +166,27 @@ from hatchet_sdk.clients.rest.models.schedule_workflow_run_request import (
|
|
|
164
166
|
)
|
|
165
167
|
from hatchet_sdk.clients.rest.models.scheduled_run_status import ScheduledRunStatus
|
|
166
168
|
from hatchet_sdk.clients.rest.models.scheduled_workflows import ScheduledWorkflows
|
|
169
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_delete_filter import (
|
|
170
|
+
ScheduledWorkflowsBulkDeleteFilter,
|
|
171
|
+
)
|
|
172
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_delete_request import (
|
|
173
|
+
ScheduledWorkflowsBulkDeleteRequest,
|
|
174
|
+
)
|
|
175
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_delete_response import (
|
|
176
|
+
ScheduledWorkflowsBulkDeleteResponse,
|
|
177
|
+
)
|
|
178
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_error import (
|
|
179
|
+
ScheduledWorkflowsBulkError,
|
|
180
|
+
)
|
|
181
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_update_item import (
|
|
182
|
+
ScheduledWorkflowsBulkUpdateItem,
|
|
183
|
+
)
|
|
184
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_update_request import (
|
|
185
|
+
ScheduledWorkflowsBulkUpdateRequest,
|
|
186
|
+
)
|
|
187
|
+
from hatchet_sdk.clients.rest.models.scheduled_workflows_bulk_update_response import (
|
|
188
|
+
ScheduledWorkflowsBulkUpdateResponse,
|
|
189
|
+
)
|
|
167
190
|
from hatchet_sdk.clients.rest.models.scheduled_workflows_list import (
|
|
168
191
|
ScheduledWorkflowsList,
|
|
169
192
|
)
|
|
@@ -186,6 +209,8 @@ from hatchet_sdk.clients.rest.models.step_run_event_list import StepRunEventList
|
|
|
186
209
|
from hatchet_sdk.clients.rest.models.step_run_event_reason import StepRunEventReason
|
|
187
210
|
from hatchet_sdk.clients.rest.models.step_run_event_severity import StepRunEventSeverity
|
|
188
211
|
from hatchet_sdk.clients.rest.models.step_run_status import StepRunStatus
|
|
212
|
+
from hatchet_sdk.clients.rest.models.task_stat import TaskStat
|
|
213
|
+
from hatchet_sdk.clients.rest.models.task_status_stat import TaskStatusStat
|
|
189
214
|
from hatchet_sdk.clients.rest.models.tenant import Tenant
|
|
190
215
|
from hatchet_sdk.clients.rest.models.tenant_alert_email_group import (
|
|
191
216
|
TenantAlertEmailGroup,
|
|
@@ -196,6 +221,7 @@ from hatchet_sdk.clients.rest.models.tenant_alert_email_group_list import (
|
|
|
196
221
|
from hatchet_sdk.clients.rest.models.tenant_alerting_settings import (
|
|
197
222
|
TenantAlertingSettings,
|
|
198
223
|
)
|
|
224
|
+
from hatchet_sdk.clients.rest.models.tenant_environment import TenantEnvironment
|
|
199
225
|
from hatchet_sdk.clients.rest.models.tenant_invite import TenantInvite
|
|
200
226
|
from hatchet_sdk.clients.rest.models.tenant_invite_list import TenantInviteList
|
|
201
227
|
from hatchet_sdk.clients.rest.models.tenant_list import TenantList
|
|
@@ -209,17 +235,25 @@ from hatchet_sdk.clients.rest.models.tenant_resource_policy import TenantResourc
|
|
|
209
235
|
from hatchet_sdk.clients.rest.models.tenant_step_run_queue_metrics import (
|
|
210
236
|
TenantStepRunQueueMetrics,
|
|
211
237
|
)
|
|
212
|
-
from hatchet_sdk.clients.rest.models.tenant_ui_version import TenantUIVersion
|
|
213
238
|
from hatchet_sdk.clients.rest.models.tenant_version import TenantVersion
|
|
214
239
|
from hatchet_sdk.clients.rest.models.trigger_workflow_run_request import (
|
|
215
240
|
TriggerWorkflowRunRequest,
|
|
216
241
|
)
|
|
242
|
+
from hatchet_sdk.clients.rest.models.update_cron_workflow_trigger_request import (
|
|
243
|
+
UpdateCronWorkflowTriggerRequest,
|
|
244
|
+
)
|
|
245
|
+
from hatchet_sdk.clients.rest.models.update_scheduled_workflow_run_request import (
|
|
246
|
+
UpdateScheduledWorkflowRunRequest,
|
|
247
|
+
)
|
|
217
248
|
from hatchet_sdk.clients.rest.models.update_tenant_alert_email_group_request import (
|
|
218
249
|
UpdateTenantAlertEmailGroupRequest,
|
|
219
250
|
)
|
|
220
251
|
from hatchet_sdk.clients.rest.models.update_tenant_invite_request import (
|
|
221
252
|
UpdateTenantInviteRequest,
|
|
222
253
|
)
|
|
254
|
+
from hatchet_sdk.clients.rest.models.update_tenant_member_request import (
|
|
255
|
+
UpdateTenantMemberRequest,
|
|
256
|
+
)
|
|
223
257
|
from hatchet_sdk.clients.rest.models.update_tenant_request import UpdateTenantRequest
|
|
224
258
|
from hatchet_sdk.clients.rest.models.update_worker_request import UpdateWorkerRequest
|
|
225
259
|
from hatchet_sdk.clients.rest.models.user import User
|
|
@@ -290,6 +324,9 @@ from hatchet_sdk.clients.rest.models.v1_trigger_workflow_run_request import (
|
|
|
290
324
|
from hatchet_sdk.clients.rest.models.v1_update_filter_request import (
|
|
291
325
|
V1UpdateFilterRequest,
|
|
292
326
|
)
|
|
327
|
+
from hatchet_sdk.clients.rest.models.v1_update_webhook_request import (
|
|
328
|
+
V1UpdateWebhookRequest,
|
|
329
|
+
)
|
|
293
330
|
from hatchet_sdk.clients.rest.models.v1_webhook import V1Webhook
|
|
294
331
|
from hatchet_sdk.clients.rest.models.v1_webhook_api_key_auth import V1WebhookAPIKeyAuth
|
|
295
332
|
from hatchet_sdk.clients.rest.models.v1_webhook_auth_type import V1WebhookAuthType
|
|
@@ -302,9 +339,6 @@ from hatchet_sdk.clients.rest.models.v1_webhook_hmac_encoding import (
|
|
|
302
339
|
V1WebhookHMACEncoding,
|
|
303
340
|
)
|
|
304
341
|
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
342
|
from hatchet_sdk.clients.rest.models.v1_webhook_source_name import V1WebhookSourceName
|
|
309
343
|
from hatchet_sdk.clients.rest.models.v1_workflow_run import V1WorkflowRun
|
|
310
344
|
from hatchet_sdk.clients.rest.models.v1_workflow_run_details import V1WorkflowRunDetails
|