hatchet-sdk 1.12.3__tar.gz → 1.14.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of hatchet-sdk might be problematic. Click here for more details.
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/PKG-INFO +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/__init__.py +54 -40
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/admin.py +18 -23
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/dispatcher/action_listener.py +4 -3
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/dispatcher/dispatcher.py +1 -4
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/event_ts.py +2 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/events.py +16 -12
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/durable_event_listener.py +4 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/pooled_listener.py +2 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/run_event_listener.py +7 -8
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/workflow_listener.py +14 -6
- {hatchet_sdk-1.12.3/hatchet_sdk/v0 → hatchet_sdk-1.14.0/hatchet_sdk}/clients/rest/api_response.py +3 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/semaphore_slots.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_summary.py +5 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_workflow_run_details.py +11 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_version.py +5 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/tenacity_utils.py +6 -8
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/config.py +2 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/connection.py +10 -4
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/context/context.py +170 -46
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/context/worker_context.py +4 -7
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/dispatcher_pb2.py +38 -38
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/dispatcher_pb2.pyi +4 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/events_pb2.py +13 -13
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/events_pb2.pyi +4 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/workflows_pb2.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/workflows_pb2.pyi +2 -2
- hatchet_sdk-1.14.0/hatchet_sdk/exceptions.py +104 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/cron.py +2 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/filters.py +12 -21
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/runs.py +4 -4
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/scheduled.py +8 -9
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/hatchet.py +65 -64
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/opentelemetry/instrumentor.py +20 -20
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/runnables/action.py +1 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/runnables/contextvars.py +19 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/runnables/task.py +37 -29
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/runnables/types.py +9 -8
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/runnables/workflow.py +57 -42
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/utils/proto_enums.py +4 -4
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/utils/timedelta_to_expression.py +2 -3
- hatchet_sdk-1.14.0/hatchet_sdk/utils/typing.py +33 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/__init__.py +7 -7
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/admin.py +7 -7
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/dispatcher/action_listener.py +8 -8
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/dispatcher/dispatcher.py +9 -9
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/events.py +3 -3
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/tenacity_utils.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/run_event_listener.py +3 -3
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/workflow_listener.py +5 -5
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/context/context.py +6 -6
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/hatchet.py +4 -4
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/opentelemetry/instrumentor.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/rate_limit.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/v2/callable.py +4 -4
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/v2/concurrency.py +2 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/v2/hatchet.py +3 -3
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/action_listener_process.py +6 -6
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/runner/run_loop_manager.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/runner/runner.py +10 -10
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/runner/utils/capture_logs.py +1 -1
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/worker.py +2 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/workflow.py +3 -3
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/waits.py +6 -5
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/worker/action_listener_process.py +33 -13
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/worker/runner/run_loop_manager.py +15 -11
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/worker/runner/runner.py +142 -80
- hatchet_sdk-1.14.0/hatchet_sdk/worker/runner/utils/capture_logs.py +122 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/worker/worker.py +30 -26
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/workflow_run.py +4 -2
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/pyproject.toml +76 -2
- hatchet_sdk-1.12.3/hatchet_sdk/exceptions.py +0 -2
- hatchet_sdk-1.12.3/hatchet_sdk/utils/typing.py +0 -39
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/dispatcher_pb2.py +0 -102
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/dispatcher_pb2.pyi +0 -387
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/dispatcher_pb2_grpc.py +0 -621
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/events_pb2.py +0 -46
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/events_pb2.pyi +0 -87
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/events_pb2_grpc.py +0 -274
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/workflows_pb2.py +0 -80
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/workflows_pb2.pyi +0 -312
- hatchet_sdk-1.12.3/hatchet_sdk/v0/contracts/workflows_pb2_grpc.py +0 -277
- hatchet_sdk-1.12.3/hatchet_sdk/v0/logger.py +0 -13
- hatchet_sdk-1.12.3/hatchet_sdk/worker/runner/utils/capture_logs.py +0 -81
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/README.md +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/client.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/api_token_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/default_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/event_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/filter_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/github_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/healthcheck_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/log_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/metadata_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/rate_limits_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/slack_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/sns_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/step_run_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/task_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/tenant_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/user_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/worker_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/workflow_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/workflow_run_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api/workflow_runs_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/api_client.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/configuration.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/exceptions.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/accept_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_error.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_errors.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_meta.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_meta_auth.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_meta_integration.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_meta_posthog.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_resource_meta.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/api_token.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/bulk_create_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/bulk_create_event_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/cancel_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/cancel_step_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/concurrency_limit_strategy.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_api_token_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_api_token_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_pull_request_from_step_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_sns_integration_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/create_tenant_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/cron_workflows.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/cron_workflows_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/cron_workflows_method.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/cron_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_data.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_key_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_update_cancel200_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/events.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/get_step_run_diff_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/github_app_installation.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/github_branch.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/github_repo.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/info_get_version200_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/job.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/job_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/job_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/link_github_repository_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/list_api_tokens_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/list_github_app_installations_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/list_pull_requests_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/list_slack_webhooks.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/list_sns_integrations.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/log_line.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/log_line_level.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/log_line_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/log_line_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/log_line_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/pagination_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/pull_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/pull_request_state.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/queue_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/rate_limit.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/rate_limit_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/rate_limit_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/rate_limit_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/recent_step_runs.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/reject_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/replay_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/replay_workflow_runs_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/replay_workflow_runs_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/rerun_step_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/schedule_workflow_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/scheduled_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/scheduled_workflows.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/scheduled_workflows_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/scheduled_workflows_method.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/slack_webhook.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/sns_integration.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_archive.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_archive_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_diff.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_event.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_event_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_event_reason.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_event_severity.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/step_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_alert_email_group.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_alert_email_group_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_alerting_settings.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_invite.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_invite_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_member.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_member_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_member_role.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_queue_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_resource.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_resource_limit.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_resource_policy.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_ui_version.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/tenant_version.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/update_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/update_tenant_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/update_worker_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/user.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/user_change_password_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/user_login_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/user_register_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/user_tenant_memberships_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/user_tenant_public.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_cancel_task_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_create_filter_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_dag_children.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_event.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_event_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_event_triggered_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_filter.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_filter_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_log_line.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_log_line_level.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_log_line_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_replay_task_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_event.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_event_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_event_type.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_filter.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_point_metric.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_point_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_run_metric.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_summary_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_timing.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_timing_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_update_filter_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_workflow_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_workflow_type.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_create_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_create_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_created.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_list_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_request_list_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/webhook_worker_request_method.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/worker.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/worker_label.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/worker_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/worker_runtime_info.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/worker_runtime_sdks.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/worker_type.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_concurrency.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_deployment_config.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_kind.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_cancel200_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_shape.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_shape_item_for_workflow_run_details.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_run_triggered_by.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_runs_cancel_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_runs_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_tag.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_trigger_event_ref.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_triggers.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_update_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_version_concurrency.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_version_definition.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_version_meta.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/workflow_workers_count.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/rest.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/v1/api_client.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/context/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/events_pb2_grpc.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/dispatcher_pb2.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/dispatcher_pb2.pyi +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/shared/condition_pb2.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/shared/condition_pb2.pyi +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/shared/condition_pb2_grpc.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/v1/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/workflows_pb2.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/workflows_pb2.pyi +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/contracts/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/logs.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/rate_limits.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/tenant.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/workers.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/features/workflows.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/labels.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/logger.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/metadata.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/py.typed +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/rate_limit.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/token.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/utils/backoff.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/utils/opentelemetry.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/client.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/event_ts.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/api_token_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/default_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/event_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/github_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/healthcheck_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/log_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/metadata_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/rate_limits_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/slack_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/sns_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/step_run_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/tenant_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/user_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/worker_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/workflow_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/workflow_run_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api/workflow_runs_api.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/api_client.py +0 -0
- {hatchet_sdk-1.12.3/hatchet_sdk → hatchet_sdk-1.14.0/hatchet_sdk/v0}/clients/rest/api_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/configuration.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/exceptions.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/accept_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_error.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_errors.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_meta.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_meta_auth.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_meta_integration.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_meta_posthog.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_resource_meta.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/api_token.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/bulk_create_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/bulk_create_event_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/cancel_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/cancel_step_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/concurrency_limit_strategy.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_api_token_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_api_token_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_pull_request_from_step_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_sns_integration_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/create_tenant_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/cron_workflows.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/cron_workflows_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/cron_workflows_method.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/cron_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_data.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_key_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_update_cancel200_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/events.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/get_step_run_diff_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/github_app_installation.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/github_branch.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/github_repo.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/info_get_version200_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/job.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/job_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/job_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/link_github_repository_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/list_api_tokens_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/list_github_app_installations_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/list_pull_requests_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/list_slack_webhooks.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/list_sns_integrations.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/log_line.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/log_line_level.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/log_line_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/log_line_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/log_line_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/pagination_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/pull_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/pull_request_state.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/queue_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/rate_limit.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/rate_limit_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/rate_limit_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/rate_limit_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/recent_step_runs.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/reject_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/replay_event_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/replay_workflow_runs_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/replay_workflow_runs_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/rerun_step_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/schedule_workflow_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/scheduled_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows_method.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/semaphore_slots.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/slack_webhook.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/sns_integration.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_archive.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_archive_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_diff.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_event.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_event_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_event_reason.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_event_severity.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/step_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_alert_email_group.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_alert_email_group_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_alerting_settings.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_invite.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_invite_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_member.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_member_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_member_role.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_queue_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_resource.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_resource_limit.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_resource_policy.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/update_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/update_tenant_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/update_worker_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/user.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/user_change_password_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/user_login_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/user_register_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/user_tenant_memberships_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/user_tenant_public.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_create_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_create_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_created.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_list_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_request_list_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/webhook_worker_request_method.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/worker.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/worker_label.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/worker_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/worker_runtime_info.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/worker_runtime_sdks.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/worker_type.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_concurrency.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_deployment_config.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_kind.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_cancel200_response.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_list.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_order_by_direction.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_order_by_field.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_shape.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_status.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_run_triggered_by.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_runs_cancel_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_runs_metrics.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_tag.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_trigger_event_ref.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_triggers.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_update_request.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_version.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_version_concurrency.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_version_definition.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_version_meta.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/models/workflow_workers_count.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest/rest.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/clients/rest_client.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/connection.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/context/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/context/worker_context.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/features/cron.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/features/scheduled.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/labels.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/loader.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/metadata.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/semver.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/token.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/utils/aio_utils.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/utils/backoff.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/utils/types.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/utils/typing.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/__init__.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/worker/runner/utils/error_with_traceback.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/v0/workflow_run.py +0 -0
- {hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/worker/__init__.py +0 -0
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from hatchet_sdk.clients.admin import (
|
|
2
|
-
DedupeViolationErr,
|
|
3
2
|
ScheduleTriggerWorkflowOptions,
|
|
4
3
|
TriggerWorkflowOptions,
|
|
5
4
|
)
|
|
@@ -8,6 +7,7 @@ from hatchet_sdk.clients.listeners.durable_event_listener import (
|
|
|
8
7
|
RegisterDurableEventRequest,
|
|
9
8
|
)
|
|
10
9
|
from hatchet_sdk.clients.listeners.run_event_listener import (
|
|
10
|
+
RunEventListener,
|
|
11
11
|
StepRunEventType,
|
|
12
12
|
WorkflowRunEventType,
|
|
13
13
|
)
|
|
@@ -138,6 +138,12 @@ from hatchet_sdk.contracts.workflows_pb2 import (
|
|
|
138
138
|
RateLimitDuration,
|
|
139
139
|
WorkerLabelComparator,
|
|
140
140
|
)
|
|
141
|
+
from hatchet_sdk.exceptions import (
|
|
142
|
+
DedupeViolationError,
|
|
143
|
+
FailedTaskRunExceptionGroup,
|
|
144
|
+
NonRetryableException,
|
|
145
|
+
TaskRunError,
|
|
146
|
+
)
|
|
141
147
|
from hatchet_sdk.features.runs import BulkCancelReplayOpts, RunFilter
|
|
142
148
|
from hatchet_sdk.hatchet import Hatchet
|
|
143
149
|
from hatchet_sdk.runnables.task import Task
|
|
@@ -150,6 +156,7 @@ from hatchet_sdk.runnables.types import (
|
|
|
150
156
|
TaskDefaults,
|
|
151
157
|
WorkflowConfig,
|
|
152
158
|
)
|
|
159
|
+
from hatchet_sdk.runnables.workflow import TaskRunRef
|
|
153
160
|
from hatchet_sdk.utils.opentelemetry import OTelAttribute
|
|
154
161
|
from hatchet_sdk.waits import (
|
|
155
162
|
Condition,
|
|
@@ -160,9 +167,9 @@ from hatchet_sdk.waits import (
|
|
|
160
167
|
or_,
|
|
161
168
|
)
|
|
162
169
|
from hatchet_sdk.worker.worker import Worker, WorkerStartOptions, WorkerStatus
|
|
170
|
+
from hatchet_sdk.workflow_run import WorkflowRunRef
|
|
163
171
|
|
|
164
172
|
__all__ = [
|
|
165
|
-
"AcceptInviteRequest",
|
|
166
173
|
"APIError",
|
|
167
174
|
"APIErrors",
|
|
168
175
|
"APIMeta",
|
|
@@ -170,11 +177,24 @@ __all__ = [
|
|
|
170
177
|
"APIMetaIntegration",
|
|
171
178
|
"APIResourceMeta",
|
|
172
179
|
"APIToken",
|
|
180
|
+
"AcceptInviteRequest",
|
|
181
|
+
"BulkCancelReplayOpts",
|
|
182
|
+
"ClientConfig",
|
|
183
|
+
"ClientTLSConfig",
|
|
184
|
+
"ConcurrencyExpression",
|
|
185
|
+
"ConcurrencyLimitStrategy",
|
|
186
|
+
"Condition",
|
|
187
|
+
"Context",
|
|
173
188
|
"CreateAPITokenRequest",
|
|
174
189
|
"CreateAPITokenResponse",
|
|
175
190
|
"CreatePullRequestFromStepRun",
|
|
176
191
|
"CreateTenantInviteRequest",
|
|
177
192
|
"CreateTenantRequest",
|
|
193
|
+
"CreateWorkflowVersionOpts",
|
|
194
|
+
"DedupeViolationError",
|
|
195
|
+
"DefaultFilter",
|
|
196
|
+
"DurableContext",
|
|
197
|
+
"EmptyModel",
|
|
178
198
|
"Event",
|
|
179
199
|
"EventData",
|
|
180
200
|
"EventKeyList",
|
|
@@ -182,10 +202,12 @@ __all__ = [
|
|
|
182
202
|
"EventOrderByDirection",
|
|
183
203
|
"EventOrderByField",
|
|
184
204
|
"EventWorkflowRunSummary",
|
|
205
|
+
"FailedTaskRunExceptionGroup",
|
|
185
206
|
"GetStepRunDiffResponse",
|
|
186
207
|
"GithubAppInstallation",
|
|
187
208
|
"GithubBranch",
|
|
188
209
|
"GithubRepo",
|
|
210
|
+
"Hatchet",
|
|
189
211
|
"Job",
|
|
190
212
|
"JobRun",
|
|
191
213
|
"JobRunStatus",
|
|
@@ -198,15 +220,33 @@ __all__ = [
|
|
|
198
220
|
"LogLineList",
|
|
199
221
|
"LogLineOrderByDirection",
|
|
200
222
|
"LogLineOrderByField",
|
|
223
|
+
"NonRetryableException",
|
|
224
|
+
"OTelAttribute",
|
|
225
|
+
"OpenTelemetryConfig",
|
|
226
|
+
"OrGroup",
|
|
201
227
|
"PaginationResponse",
|
|
228
|
+
"ParentCondition",
|
|
202
229
|
"PullRequest",
|
|
203
230
|
"PullRequestState",
|
|
231
|
+
"PushEventOptions",
|
|
232
|
+
"RateLimitDuration",
|
|
233
|
+
"RegisterDurableEventRequest",
|
|
204
234
|
"RejectInviteRequest",
|
|
205
235
|
"ReplayEventRequest",
|
|
206
236
|
"RerunStepRunRequest",
|
|
237
|
+
"RunEventListener",
|
|
238
|
+
"RunFilter",
|
|
239
|
+
"ScheduleTriggerWorkflowOptions",
|
|
240
|
+
"SleepCondition",
|
|
207
241
|
"StepRun",
|
|
208
242
|
"StepRunDiff",
|
|
243
|
+
"StepRunEventType",
|
|
209
244
|
"StepRunStatus",
|
|
245
|
+
"StickyStrategy",
|
|
246
|
+
"Task",
|
|
247
|
+
"TaskDefaults",
|
|
248
|
+
"TaskRunError",
|
|
249
|
+
"TaskRunRef",
|
|
210
250
|
"Tenant",
|
|
211
251
|
"TenantInvite",
|
|
212
252
|
"TenantInviteList",
|
|
@@ -214,21 +254,32 @@ __all__ = [
|
|
|
214
254
|
"TenantMember",
|
|
215
255
|
"TenantMemberList",
|
|
216
256
|
"TenantMemberRole",
|
|
257
|
+
"TriggerWorkflowOptions",
|
|
217
258
|
"TriggerWorkflowRunRequest",
|
|
218
259
|
"UpdateTenantInviteRequest",
|
|
219
260
|
"User",
|
|
261
|
+
"UserEventCondition",
|
|
220
262
|
"UserLoginRequest",
|
|
221
263
|
"UserRegisterRequest",
|
|
222
264
|
"UserTenantMembershipsList",
|
|
223
265
|
"UserTenantPublic",
|
|
266
|
+
"V1TaskStatus",
|
|
267
|
+
"Worker",
|
|
224
268
|
"Worker",
|
|
269
|
+
"WorkerContext",
|
|
225
270
|
"WorkerLabelComparator",
|
|
226
271
|
"WorkerList",
|
|
272
|
+
"WorkerStartOptions",
|
|
273
|
+
"WorkerStatus",
|
|
274
|
+
"Workflow",
|
|
227
275
|
"Workflow",
|
|
276
|
+
"WorkflowConfig",
|
|
228
277
|
"WorkflowDeploymentConfig",
|
|
229
278
|
"WorkflowList",
|
|
230
279
|
"WorkflowRun",
|
|
280
|
+
"WorkflowRunEventType",
|
|
231
281
|
"WorkflowRunList",
|
|
282
|
+
"WorkflowRunRef",
|
|
232
283
|
"WorkflowRunStatus",
|
|
233
284
|
"WorkflowRunTriggeredBy",
|
|
234
285
|
"WorkflowTag",
|
|
@@ -238,43 +289,6 @@ __all__ = [
|
|
|
238
289
|
"WorkflowVersion",
|
|
239
290
|
"WorkflowVersionDefinition",
|
|
240
291
|
"WorkflowVersionMeta",
|
|
241
|
-
"ConcurrencyLimitStrategy",
|
|
242
|
-
"CreateWorkflowVersionOpts",
|
|
243
|
-
"RateLimitDuration",
|
|
244
|
-
"StickyStrategy",
|
|
245
|
-
"DedupeViolationErr",
|
|
246
|
-
"ScheduleTriggerWorkflowOptions",
|
|
247
|
-
"TriggerWorkflowOptions",
|
|
248
|
-
"PushEventOptions",
|
|
249
|
-
"StepRunEventType",
|
|
250
|
-
"WorkflowRunEventType",
|
|
251
|
-
"Context",
|
|
252
|
-
"WorkerContext",
|
|
253
|
-
"ClientConfig",
|
|
254
|
-
"Hatchet",
|
|
255
|
-
"workflow",
|
|
256
|
-
"Worker",
|
|
257
|
-
"WorkerStartOptions",
|
|
258
|
-
"WorkerStatus",
|
|
259
|
-
"ConcurrencyExpression",
|
|
260
|
-
"Workflow",
|
|
261
|
-
"WorkflowConfig",
|
|
262
|
-
"Task",
|
|
263
|
-
"EmptyModel",
|
|
264
|
-
"Condition",
|
|
265
|
-
"OrGroup",
|
|
266
292
|
"or_",
|
|
267
|
-
"
|
|
268
|
-
"UserEventCondition",
|
|
269
|
-
"ParentCondition",
|
|
270
|
-
"DurableContext",
|
|
271
|
-
"RegisterDurableEventRequest",
|
|
272
|
-
"TaskDefaults",
|
|
273
|
-
"BulkCancelReplayOpts",
|
|
274
|
-
"RunFilter",
|
|
275
|
-
"V1TaskStatus",
|
|
276
|
-
"OTelAttribute",
|
|
277
|
-
"OpenTelemetryConfig",
|
|
278
|
-
"ClientTLSConfig",
|
|
279
|
-
"DefaultFilter",
|
|
293
|
+
"workflow",
|
|
280
294
|
]
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import asyncio
|
|
2
2
|
import json
|
|
3
|
+
from collections.abc import Generator
|
|
3
4
|
from datetime import datetime
|
|
4
|
-
from typing import
|
|
5
|
+
from typing import TypeVar, cast
|
|
5
6
|
|
|
6
7
|
import grpc
|
|
7
8
|
from google.protobuf import timestamp_pb2
|
|
@@ -16,6 +17,7 @@ from hatchet_sdk.contracts import workflows_pb2 as v0_workflow_protos
|
|
|
16
17
|
from hatchet_sdk.contracts.v1 import workflows_pb2 as workflow_protos
|
|
17
18
|
from hatchet_sdk.contracts.v1.workflows_pb2_grpc import AdminServiceStub
|
|
18
19
|
from hatchet_sdk.contracts.workflows_pb2_grpc import WorkflowServiceStub
|
|
20
|
+
from hatchet_sdk.exceptions import DedupeViolationError
|
|
19
21
|
from hatchet_sdk.features.runs import RunsClient
|
|
20
22
|
from hatchet_sdk.metadata import get_metadata
|
|
21
23
|
from hatchet_sdk.rate_limit import RateLimitDuration
|
|
@@ -59,12 +61,6 @@ class WorkflowRunTriggerConfig(BaseModel):
|
|
|
59
61
|
key: str | None = None
|
|
60
62
|
|
|
61
63
|
|
|
62
|
-
class DedupeViolationErr(Exception):
|
|
63
|
-
"""Raised by the Hatchet library to indicate that a workflow has already been run with this deduplication value."""
|
|
64
|
-
|
|
65
|
-
pass
|
|
66
|
-
|
|
67
|
-
|
|
68
64
|
class AdminClient:
|
|
69
65
|
def __init__(
|
|
70
66
|
self,
|
|
@@ -113,7 +109,7 @@ class AdminClient:
|
|
|
113
109
|
try:
|
|
114
110
|
return json.dumps(v).encode("utf-8")
|
|
115
111
|
except json.JSONDecodeError as e:
|
|
116
|
-
raise ValueError(
|
|
112
|
+
raise ValueError("Error encoding payload") from e
|
|
117
113
|
|
|
118
114
|
def _prepare_workflow_request(
|
|
119
115
|
self,
|
|
@@ -124,7 +120,7 @@ class AdminClient:
|
|
|
124
120
|
try:
|
|
125
121
|
payload_data = json.dumps(input)
|
|
126
122
|
except json.JSONDecodeError as e:
|
|
127
|
-
raise ValueError(
|
|
123
|
+
raise ValueError("Error encoding payload") from e
|
|
128
124
|
|
|
129
125
|
_options = self.TriggerWorkflowRequest.model_validate(options.model_dump())
|
|
130
126
|
|
|
@@ -148,18 +144,17 @@ class AdminClient:
|
|
|
148
144
|
seconds = int(t)
|
|
149
145
|
nanos = int(t % 1 * 1e9)
|
|
150
146
|
return timestamp_pb2.Timestamp(seconds=seconds, nanos=nanos)
|
|
151
|
-
|
|
147
|
+
if isinstance(schedule, timestamp_pb2.Timestamp):
|
|
152
148
|
return schedule
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
)
|
|
149
|
+
raise ValueError(
|
|
150
|
+
"Invalid schedule type. Must be datetime or timestamp_pb2.Timestamp."
|
|
151
|
+
)
|
|
157
152
|
|
|
158
153
|
def _prepare_schedule_workflow_request(
|
|
159
154
|
self,
|
|
160
155
|
name: str,
|
|
161
|
-
schedules: list[
|
|
162
|
-
input: JSONSerializableMapping =
|
|
156
|
+
schedules: list[datetime | timestamp_pb2.Timestamp],
|
|
157
|
+
input: JSONSerializableMapping | None = None,
|
|
163
158
|
options: ScheduleTriggerWorkflowOptions = ScheduleTriggerWorkflowOptions(),
|
|
164
159
|
) -> v0_workflow_protos.ScheduleWorkflowRequest:
|
|
165
160
|
return v0_workflow_protos.ScheduleWorkflowRequest(
|
|
@@ -194,8 +189,8 @@ class AdminClient:
|
|
|
194
189
|
async def aio_schedule_workflow(
|
|
195
190
|
self,
|
|
196
191
|
name: str,
|
|
197
|
-
schedules: list[
|
|
198
|
-
input: JSONSerializableMapping =
|
|
192
|
+
schedules: list[datetime | timestamp_pb2.Timestamp],
|
|
193
|
+
input: JSONSerializableMapping | None = None,
|
|
199
194
|
options: ScheduleTriggerWorkflowOptions = ScheduleTriggerWorkflowOptions(),
|
|
200
195
|
) -> v0_workflow_protos.WorkflowVersion:
|
|
201
196
|
return await asyncio.to_thread(
|
|
@@ -245,8 +240,8 @@ class AdminClient:
|
|
|
245
240
|
def schedule_workflow(
|
|
246
241
|
self,
|
|
247
242
|
name: str,
|
|
248
|
-
schedules: list[
|
|
249
|
-
input: JSONSerializableMapping =
|
|
243
|
+
schedules: list[datetime | timestamp_pb2.Timestamp],
|
|
244
|
+
input: JSONSerializableMapping | None = None,
|
|
250
245
|
options: ScheduleTriggerWorkflowOptions = ScheduleTriggerWorkflowOptions(),
|
|
251
246
|
) -> v0_workflow_protos.WorkflowVersion:
|
|
252
247
|
try:
|
|
@@ -269,7 +264,7 @@ class AdminClient:
|
|
|
269
264
|
)
|
|
270
265
|
except (grpc.RpcError, grpc.aio.AioRpcError) as e:
|
|
271
266
|
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
|
|
272
|
-
raise
|
|
267
|
+
raise DedupeViolationError(e.details()) from e
|
|
273
268
|
|
|
274
269
|
raise e
|
|
275
270
|
|
|
@@ -336,7 +331,7 @@ class AdminClient:
|
|
|
336
331
|
)
|
|
337
332
|
except (grpc.RpcError, grpc.aio.AioRpcError) as e:
|
|
338
333
|
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
|
|
339
|
-
raise
|
|
334
|
+
raise DedupeViolationError(e.details()) from e
|
|
340
335
|
raise e
|
|
341
336
|
|
|
342
337
|
return WorkflowRunRef(
|
|
@@ -369,7 +364,7 @@ class AdminClient:
|
|
|
369
364
|
)
|
|
370
365
|
except (grpc.RpcError, grpc.aio.AioRpcError) as e:
|
|
371
366
|
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
|
|
372
|
-
raise
|
|
367
|
+
raise DedupeViolationError(e.details()) from e
|
|
373
368
|
|
|
374
369
|
raise e
|
|
375
370
|
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import asyncio
|
|
2
2
|
import json
|
|
3
3
|
import time
|
|
4
|
-
from
|
|
4
|
+
from collections.abc import AsyncGenerator
|
|
5
|
+
from typing import TYPE_CHECKING, cast
|
|
5
6
|
|
|
6
7
|
import grpc
|
|
7
8
|
import grpc.aio
|
|
@@ -302,7 +303,7 @@ class ActionListener:
|
|
|
302
303
|
)
|
|
303
304
|
self.run_heartbeat = False
|
|
304
305
|
raise Exception("retry_exhausted")
|
|
305
|
-
|
|
306
|
+
if self.retries >= 1:
|
|
306
307
|
# logger.info
|
|
307
308
|
# if we are retrying, we wait for a bit. this should eventually be replaced with exp backoff + jitter
|
|
308
309
|
await exp_backoff_sleep(
|
|
@@ -369,4 +370,4 @@ class ActionListener:
|
|
|
369
370
|
|
|
370
371
|
return cast(WorkerUnsubscribeRequest, req)
|
|
371
372
|
except grpc.RpcError as e:
|
|
372
|
-
raise Exception(
|
|
373
|
+
raise Exception("Failed to unsubscribe") from e
|
|
@@ -93,10 +93,7 @@ class DispatcherClient:
|
|
|
93
93
|
)
|
|
94
94
|
except Exception as e:
|
|
95
95
|
# for step action events, send a failure event when we cannot send the completed event
|
|
96
|
-
if (
|
|
97
|
-
event_type == STEP_EVENT_TYPE_COMPLETED
|
|
98
|
-
or event_type == STEP_EVENT_TYPE_FAILED
|
|
99
|
-
):
|
|
96
|
+
if event_type in (STEP_EVENT_TYPE_COMPLETED, STEP_EVENT_TYPE_FAILED):
|
|
100
97
|
await self._try_send_step_action_event(
|
|
101
98
|
action,
|
|
102
99
|
STEP_EVENT_TYPE_FAILED,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import asyncio
|
|
2
2
|
import datetime
|
|
3
3
|
import json
|
|
4
|
-
from typing import
|
|
4
|
+
from typing import cast
|
|
5
5
|
|
|
6
6
|
from google.protobuf import timestamp_pb2
|
|
7
7
|
from pydantic import BaseModel, Field
|
|
@@ -88,7 +88,7 @@ class EventClient(BaseRestClient):
|
|
|
88
88
|
self,
|
|
89
89
|
events: list[BulkPushEventWithMetadata],
|
|
90
90
|
options: BulkPushEventOptions = BulkPushEventOptions(),
|
|
91
|
-
) ->
|
|
91
|
+
) -> list[Event]:
|
|
92
92
|
return await asyncio.to_thread(self.bulk_push, events=events, options=options)
|
|
93
93
|
|
|
94
94
|
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
|
|
@@ -105,12 +105,12 @@ class EventClient(BaseRestClient):
|
|
|
105
105
|
try:
|
|
106
106
|
meta_bytes = json.dumps(options.additional_metadata)
|
|
107
107
|
except Exception as e:
|
|
108
|
-
raise ValueError(
|
|
108
|
+
raise ValueError("Error encoding meta") from e
|
|
109
109
|
|
|
110
110
|
try:
|
|
111
111
|
payload_str = json.dumps(payload)
|
|
112
112
|
except (TypeError, ValueError) as e:
|
|
113
|
-
raise ValueError(
|
|
113
|
+
raise ValueError("Error encoding payload") from e
|
|
114
114
|
|
|
115
115
|
request = PushEventRequest(
|
|
116
116
|
key=namespaced_event_key,
|
|
@@ -139,12 +139,12 @@ class EventClient(BaseRestClient):
|
|
|
139
139
|
try:
|
|
140
140
|
meta_str = json.dumps(meta)
|
|
141
141
|
except Exception as e:
|
|
142
|
-
raise ValueError(
|
|
142
|
+
raise ValueError("Error encoding meta") from e
|
|
143
143
|
|
|
144
144
|
try:
|
|
145
145
|
serialized_payload = json.dumps(payload)
|
|
146
146
|
except (TypeError, ValueError) as e:
|
|
147
|
-
raise ValueError(
|
|
147
|
+
raise ValueError("Error serializing payload") from e
|
|
148
148
|
|
|
149
149
|
return PushEventRequest(
|
|
150
150
|
key=event_key,
|
|
@@ -159,9 +159,9 @@ class EventClient(BaseRestClient):
|
|
|
159
159
|
@tenacity_retry
|
|
160
160
|
def bulk_push(
|
|
161
161
|
self,
|
|
162
|
-
events:
|
|
162
|
+
events: list[BulkPushEventWithMetadata],
|
|
163
163
|
options: BulkPushEventOptions = BulkPushEventOptions(),
|
|
164
|
-
) ->
|
|
164
|
+
) -> list[Event]:
|
|
165
165
|
namespace = options.namespace or self.namespace
|
|
166
166
|
|
|
167
167
|
bulk_request = BulkPushEventRequest(
|
|
@@ -190,7 +190,7 @@ class EventClient(BaseRestClient):
|
|
|
190
190
|
self.events_service_client.PutLog(request, metadata=get_metadata(self.token))
|
|
191
191
|
|
|
192
192
|
@tenacity_retry
|
|
193
|
-
def stream(self, data: str | bytes, step_run_id: str) -> None:
|
|
193
|
+
def stream(self, data: str | bytes, step_run_id: str, index: int) -> None:
|
|
194
194
|
if isinstance(data, str):
|
|
195
195
|
data_bytes = data.encode("utf-8")
|
|
196
196
|
elif isinstance(data, bytes):
|
|
@@ -202,11 +202,15 @@ class EventClient(BaseRestClient):
|
|
|
202
202
|
stepRunId=step_run_id,
|
|
203
203
|
createdAt=proto_timestamp_now(),
|
|
204
204
|
message=data_bytes,
|
|
205
|
+
eventIndex=index,
|
|
205
206
|
)
|
|
206
207
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
208
|
+
try:
|
|
209
|
+
self.events_service_client.PutStreamEvent(
|
|
210
|
+
request, metadata=get_metadata(self.token)
|
|
211
|
+
)
|
|
212
|
+
except Exception:
|
|
213
|
+
raise
|
|
210
214
|
|
|
211
215
|
async def aio_list(
|
|
212
216
|
self,
|
{hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/durable_event_listener.py
RENAMED
|
@@ -8,6 +8,7 @@ from pydantic import BaseModel, ConfigDict
|
|
|
8
8
|
|
|
9
9
|
from hatchet_sdk.clients.listeners.pooled_listener import PooledListener
|
|
10
10
|
from hatchet_sdk.clients.rest.tenacity_utils import tenacity_retry
|
|
11
|
+
from hatchet_sdk.config import ClientConfig
|
|
11
12
|
from hatchet_sdk.connection import new_conn
|
|
12
13
|
from hatchet_sdk.contracts.v1.dispatcher_pb2 import (
|
|
13
14
|
DurableEvent,
|
|
@@ -32,6 +33,7 @@ class RegisterDurableEventRequest(BaseModel):
|
|
|
32
33
|
task_id: str
|
|
33
34
|
signal_key: str
|
|
34
35
|
conditions: list[SleepCondition | UserEventCondition]
|
|
36
|
+
config: ClientConfig
|
|
35
37
|
|
|
36
38
|
def to_proto(self) -> RegisterDurableEventRequestProto:
|
|
37
39
|
return RegisterDurableEventRequestProto(
|
|
@@ -39,12 +41,12 @@ class RegisterDurableEventRequest(BaseModel):
|
|
|
39
41
|
signal_key=self.signal_key,
|
|
40
42
|
conditions=DurableEventListenerConditions(
|
|
41
43
|
sleep_conditions=[
|
|
42
|
-
c.to_proto()
|
|
44
|
+
c.to_proto(self.config)
|
|
43
45
|
for c in self.conditions
|
|
44
46
|
if isinstance(c, SleepCondition)
|
|
45
47
|
],
|
|
46
48
|
user_event_conditions=[
|
|
47
|
-
c.to_proto()
|
|
49
|
+
c.to_proto(self.config)
|
|
48
50
|
for c in self.conditions
|
|
49
51
|
if isinstance(c, UserEventCondition)
|
|
50
52
|
],
|
|
@@ -252,10 +252,10 @@ class PooledListener(Generic[R, T, L], ABC):
|
|
|
252
252
|
metadata=get_metadata(self.token),
|
|
253
253
|
)
|
|
254
254
|
|
|
255
|
-
except grpc.RpcError as e:
|
|
255
|
+
except grpc.RpcError as e: # noqa: PERF203
|
|
256
256
|
if e.code() == grpc.StatusCode.UNAVAILABLE:
|
|
257
257
|
retries = retries + 1
|
|
258
258
|
else:
|
|
259
|
-
raise ValueError(
|
|
259
|
+
raise ValueError("gRPC error") from e
|
|
260
260
|
|
|
261
261
|
raise ValueError("Failed to connect to listener")
|
{hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/run_event_listener.py
RENAMED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import asyncio
|
|
2
|
+
from collections.abc import AsyncGenerator, Callable, Generator
|
|
2
3
|
from enum import Enum
|
|
3
4
|
from queue import Empty, Queue
|
|
4
5
|
from threading import Thread
|
|
5
|
-
from typing import Any,
|
|
6
|
+
from typing import Any, Literal, TypeVar, cast
|
|
6
7
|
|
|
7
8
|
import grpc
|
|
8
9
|
from pydantic import BaseModel
|
|
@@ -129,8 +130,7 @@ class RunEventListener:
|
|
|
129
130
|
thread.join()
|
|
130
131
|
|
|
131
132
|
def __iter__(self) -> Generator[StepRunEvent, None, None]:
|
|
132
|
-
|
|
133
|
-
yield item
|
|
133
|
+
yield from self.async_to_sync_thread(self.__aiter__())
|
|
134
134
|
|
|
135
135
|
async def _generator(self) -> AsyncGenerator[StepRunEvent, None]:
|
|
136
136
|
while True:
|
|
@@ -216,7 +216,7 @@ class RunEventListener:
|
|
|
216
216
|
metadata=get_metadata(self.config.token),
|
|
217
217
|
),
|
|
218
218
|
)
|
|
219
|
-
|
|
219
|
+
if self.additional_meta_kv is not None:
|
|
220
220
|
return cast(
|
|
221
221
|
AsyncGenerator[WorkflowEvent, None],
|
|
222
222
|
self.client.SubscribeToWorkflowEvents(
|
|
@@ -227,14 +227,13 @@ class RunEventListener:
|
|
|
227
227
|
metadata=get_metadata(self.config.token),
|
|
228
228
|
),
|
|
229
229
|
)
|
|
230
|
-
|
|
231
|
-
raise Exception("no listener method provided")
|
|
230
|
+
raise Exception("no listener method provided")
|
|
232
231
|
|
|
233
|
-
except grpc.RpcError as e:
|
|
232
|
+
except grpc.RpcError as e: # noqa: PERF203
|
|
234
233
|
if e.code() == grpc.StatusCode.UNAVAILABLE:
|
|
235
234
|
retries = retries + 1
|
|
236
235
|
else:
|
|
237
|
-
raise ValueError(
|
|
236
|
+
raise ValueError("gRPC error") from e
|
|
238
237
|
|
|
239
238
|
raise Exception("Failed to subscribe to workflow events")
|
|
240
239
|
|
{hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/listeners/workflow_listener.py
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import json
|
|
2
|
-
from
|
|
2
|
+
from collections.abc import AsyncIterator
|
|
3
|
+
from typing import Any, cast
|
|
3
4
|
|
|
4
5
|
import grpc
|
|
5
6
|
import grpc.aio
|
|
@@ -11,6 +12,11 @@ from hatchet_sdk.contracts.dispatcher_pb2 import (
|
|
|
11
12
|
WorkflowRunEvent,
|
|
12
13
|
)
|
|
13
14
|
from hatchet_sdk.contracts.dispatcher_pb2_grpc import DispatcherStub
|
|
15
|
+
from hatchet_sdk.exceptions import (
|
|
16
|
+
DedupeViolationError,
|
|
17
|
+
FailedTaskRunExceptionGroup,
|
|
18
|
+
TaskRunError,
|
|
19
|
+
)
|
|
14
20
|
|
|
15
21
|
DEDUPE_MESSAGE = "DUPLICATE_WORKFLOW_RUN"
|
|
16
22
|
|
|
@@ -27,16 +33,18 @@ class PooledWorkflowRunListener(
|
|
|
27
33
|
return response.workflowRunId
|
|
28
34
|
|
|
29
35
|
async def aio_result(self, id: str) -> dict[str, Any]:
|
|
30
|
-
from hatchet_sdk.clients.admin import DedupeViolationErr
|
|
31
|
-
|
|
32
36
|
event = await self.subscribe(id)
|
|
33
37
|
errors = [result.error for result in event.results if result.error]
|
|
38
|
+
workflow_run_id = event.workflowRunId
|
|
34
39
|
|
|
35
40
|
if errors:
|
|
36
41
|
if DEDUPE_MESSAGE in errors[0]:
|
|
37
|
-
raise
|
|
38
|
-
|
|
39
|
-
|
|
42
|
+
raise DedupeViolationError(errors[0])
|
|
43
|
+
|
|
44
|
+
raise FailedTaskRunExceptionGroup(
|
|
45
|
+
f"Workflow run {workflow_run_id} failed.",
|
|
46
|
+
[TaskRunError.deserialize(e) for e in errors],
|
|
47
|
+
)
|
|
40
48
|
|
|
41
49
|
return {
|
|
42
50
|
result.stepReadableId: json.loads(result.output)
|
{hatchet_sdk-1.12.3/hatchet_sdk/v0 → hatchet_sdk-1.14.0/hatchet_sdk}/clients/rest/api_response.py
RENAMED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from
|
|
5
|
+
from collections.abc import Mapping
|
|
6
|
+
from typing import Generic, TypeVar
|
|
6
7
|
|
|
7
8
|
from pydantic import BaseModel, Field, StrictBytes, StrictInt
|
|
8
9
|
|
|
@@ -15,7 +16,7 @@ class ApiResponse(BaseModel, Generic[T]):
|
|
|
15
16
|
"""
|
|
16
17
|
|
|
17
18
|
status_code: StrictInt = Field(description="HTTP status code")
|
|
18
|
-
headers:
|
|
19
|
+
headers: Mapping[str, str] | None = Field(None, description="HTTP headers")
|
|
19
20
|
data: T = Field(description="Deserialized data given the data type")
|
|
20
21
|
raw_data: StrictBytes = Field(description="Raw data (HTTP response body)")
|
|
21
22
|
|
{hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/semaphore_slots.py
RENAMED
|
@@ -42,7 +42,7 @@ class SemaphoreSlots(BaseModel):
|
|
|
42
42
|
workflow_run_id: StrictStr = Field(
|
|
43
43
|
description="The workflow run id.", alias="workflowRunId"
|
|
44
44
|
)
|
|
45
|
-
status: StepRunStatus
|
|
45
|
+
status: Optional[StepRunStatus] = None
|
|
46
46
|
__properties: ClassVar[List[str]] = [
|
|
47
47
|
"stepRunId",
|
|
48
48
|
"actionId",
|
{hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_task_summary.py
RENAMED
|
@@ -111,6 +111,9 @@ class V1TaskSummary(BaseModel):
|
|
|
111
111
|
description="The version ID of the workflow",
|
|
112
112
|
alias="workflowVersionId",
|
|
113
113
|
)
|
|
114
|
+
workflow_config: Optional[Dict[str, Any]] = Field(
|
|
115
|
+
default=None, alias="workflowConfig"
|
|
116
|
+
)
|
|
114
117
|
__properties: ClassVar[List[str]] = [
|
|
115
118
|
"metadata",
|
|
116
119
|
"actionId",
|
|
@@ -138,6 +141,7 @@ class V1TaskSummary(BaseModel):
|
|
|
138
141
|
"workflowName",
|
|
139
142
|
"workflowRunExternalId",
|
|
140
143
|
"workflowVersionId",
|
|
144
|
+
"workflowConfig",
|
|
141
145
|
]
|
|
142
146
|
|
|
143
147
|
model_config = ConfigDict(
|
|
@@ -234,6 +238,7 @@ class V1TaskSummary(BaseModel):
|
|
|
234
238
|
"workflowName": obj.get("workflowName"),
|
|
235
239
|
"workflowRunExternalId": obj.get("workflowRunExternalId"),
|
|
236
240
|
"workflowVersionId": obj.get("workflowVersionId"),
|
|
241
|
+
"workflowConfig": obj.get("workflowConfig"),
|
|
237
242
|
}
|
|
238
243
|
)
|
|
239
244
|
return _obj
|
{hatchet_sdk-1.12.3 → hatchet_sdk-1.14.0}/hatchet_sdk/clients/rest/models/v1_workflow_run_details.py
RENAMED
|
@@ -41,7 +41,16 @@ class V1WorkflowRunDetails(BaseModel):
|
|
|
41
41
|
)
|
|
42
42
|
shape: List[WorkflowRunShapeItemForWorkflowRunDetails]
|
|
43
43
|
tasks: List[V1TaskSummary]
|
|
44
|
-
|
|
44
|
+
workflow_config: Optional[Dict[str, Any]] = Field(
|
|
45
|
+
default=None, alias="workflowConfig"
|
|
46
|
+
)
|
|
47
|
+
__properties: ClassVar[List[str]] = [
|
|
48
|
+
"run",
|
|
49
|
+
"taskEvents",
|
|
50
|
+
"shape",
|
|
51
|
+
"tasks",
|
|
52
|
+
"workflowConfig",
|
|
53
|
+
]
|
|
45
54
|
|
|
46
55
|
model_config = ConfigDict(
|
|
47
56
|
populate_by_name=True,
|
|
@@ -140,6 +149,7 @@ class V1WorkflowRunDetails(BaseModel):
|
|
|
140
149
|
if obj.get("tasks") is not None
|
|
141
150
|
else None
|
|
142
151
|
),
|
|
152
|
+
"workflowConfig": obj.get("workflowConfig"),
|
|
143
153
|
}
|
|
144
154
|
)
|
|
145
155
|
return _obj
|