hatchet-sdk 1.6.1__tar.gz → 1.6.3__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.6.1 → hatchet_sdk-1.6.3}/PKG-INFO +1 -1
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/dispatcher/action_listener.py +9 -3
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/event_ts.py +18 -7
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/listeners/pooled_listener.py +9 -5
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/cron.py +58 -55
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/logs.py +16 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/metrics.py +48 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/rate_limits.py +24 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/runs.py +143 -5
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/scheduled.py +51 -51
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/workers.py +40 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/features/workflows.py +50 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/hatchet.py +81 -108
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/opentelemetry/instrumentor.py +15 -17
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/runnables/standalone.py +111 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/runnables/workflow.py +197 -76
- hatchet_sdk-1.6.3/hatchet_sdk/utils/timedelta_to_expression.py +24 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/features/cron.py +3 -3
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/features/scheduled.py +1 -1
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/hatchet.py +3 -3
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/opentelemetry/instrumentor.py +3 -6
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/worker/worker.py +3 -3
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/pyproject.toml +24 -2
- hatchet_sdk-1.6.1/hatchet_sdk/utils/timedelta_to_expression.py +0 -23
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/README.md +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/client.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/admin.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/dispatcher/dispatcher.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/events.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/listeners/durable_event_listener.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/listeners/run_event_listener.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/listeners/workflow_listener.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/api_token_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/default_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/event_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/github_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/healthcheck_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/log_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/metadata_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/rate_limits_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/slack_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/sns_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/step_run_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/task_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/tenant_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/user_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/worker_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/workflow_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/workflow_run_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api/workflow_runs_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api_client.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/api_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/configuration.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/exceptions.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/accept_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_error.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_errors.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_meta.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_meta_auth.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_meta_integration.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_meta_posthog.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_resource_meta.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/api_token.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/bulk_create_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/bulk_create_event_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/cancel_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/cancel_step_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/concurrency_limit_strategy.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_api_token_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_api_token_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_pull_request_from_step_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_sns_integration_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/create_tenant_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/cron_workflows.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/cron_workflows_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/cron_workflows_method.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/cron_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_data.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_key_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_update_cancel200_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/events.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/get_step_run_diff_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/github_app_installation.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/github_branch.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/github_repo.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/info_get_version200_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/job.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/job_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/job_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/link_github_repository_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/list_api_tokens_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/list_github_app_installations_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/list_pull_requests_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/list_slack_webhooks.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/list_sns_integrations.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/log_line.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/log_line_level.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/log_line_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/log_line_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/log_line_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/pagination_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/pull_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/pull_request_state.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/queue_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/rate_limit.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/rate_limit_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/rate_limit_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/rate_limit_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/recent_step_runs.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/reject_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/replay_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/replay_workflow_runs_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/replay_workflow_runs_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/rerun_step_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/schedule_workflow_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/scheduled_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/scheduled_workflows.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/scheduled_workflows_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/scheduled_workflows_method.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/semaphore_slots.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/slack_webhook.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/sns_integration.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_archive.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_archive_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_diff.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_event.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_event_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_event_reason.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_event_severity.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/step_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_alert_email_group.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_alert_email_group_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_alerting_settings.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_invite.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_invite_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_member.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_member_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_member_role.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_queue_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_resource.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_resource_limit.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_resource_policy.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/tenant_version.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/update_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/update_tenant_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/update_worker_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/user.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/user_change_password_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/user_login_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/user_register_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/user_tenant_memberships_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/user_tenant_public.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_cancel_task_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_dag_children.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_log_line.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_log_line_level.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_log_line_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_replay_task_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_event.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_event_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_event_type.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_filter.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_point_metric.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_point_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_run_metric.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_summary.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_task_summary_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_workflow_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_workflow_run_details.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/v1_workflow_type.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_create_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_create_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_created.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_list_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_request_list_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/webhook_worker_request_method.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/worker.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/worker_label.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/worker_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/worker_runtime_info.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/worker_runtime_sdks.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/worker_type.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_concurrency.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_deployment_config.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_kind.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_cancel200_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_shape.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_shape_item_for_workflow_run_details.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_run_triggered_by.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_runs_cancel_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_runs_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_tag.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_trigger_event_ref.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_triggers.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_update_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_version.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_version_concurrency.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_version_definition.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_version_meta.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/models/workflow_workers_count.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/rest.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/rest/tenacity_utils.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/clients/v1/api_client.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/config.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/connection.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/context/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/context/context.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/context/worker_context.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/dispatcher_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/dispatcher_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/events_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/events_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/events_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/dispatcher_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/dispatcher_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/shared/condition_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/shared/condition_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/shared/condition_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/workflows_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/workflows_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/v1/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/workflows_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/workflows_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/contracts/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/exceptions.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/labels.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/logger.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/metadata.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/py.typed +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/rate_limit.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/runnables/contextvars.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/runnables/task.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/runnables/types.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/token.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/utils/backoff.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/utils/proto_enums.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/utils/typing.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/client.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/admin.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/dispatcher/action_listener.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/dispatcher/dispatcher.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/event_ts.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/events.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/api_token_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/default_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/event_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/github_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/healthcheck_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/log_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/metadata_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/rate_limits_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/slack_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/sns_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/step_run_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/tenant_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/user_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/worker_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/workflow_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/workflow_run_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api/workflow_runs_api.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api_client.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/api_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/configuration.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/exceptions.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/accept_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_error.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_errors.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_meta.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_meta_auth.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_meta_integration.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_meta_posthog.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_resource_meta.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/api_token.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/bulk_create_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/bulk_create_event_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/cancel_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/cancel_step_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/concurrency_limit_strategy.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_api_token_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_api_token_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_pull_request_from_step_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_sns_integration_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/create_tenant_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/cron_workflows.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/cron_workflows_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/cron_workflows_method.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/cron_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_data.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_key_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_update_cancel200_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/events.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/get_step_run_diff_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/github_app_installation.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/github_branch.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/github_repo.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/info_get_version200_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/job.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/job_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/job_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/link_github_repository_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/list_api_tokens_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/list_github_app_installations_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/list_pull_requests_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/list_slack_webhooks.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/list_sns_integrations.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/log_line.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/log_line_level.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/log_line_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/log_line_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/log_line_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/pagination_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/pull_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/pull_request_state.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/queue_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/rate_limit.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/rate_limit_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/rate_limit_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/rate_limit_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/recent_step_runs.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/reject_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/replay_event_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/replay_workflow_runs_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/replay_workflow_runs_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/rerun_step_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/schedule_workflow_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/scheduled_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows_method.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/semaphore_slots.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/slack_webhook.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/sns_integration.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_archive.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_archive_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_diff.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_event.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_event_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_event_reason.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_event_severity.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/step_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_alert_email_group.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_alert_email_group_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_alerting_settings.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_invite.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_invite_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_member.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_member_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_member_role.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_queue_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_resource.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_resource_limit.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_resource_policy.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/update_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/update_tenant_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/update_worker_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/user.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/user_change_password_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/user_login_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/user_register_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/user_tenant_memberships_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/user_tenant_public.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_create_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_create_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_created.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_list_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_request_list_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/webhook_worker_request_method.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/worker.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/worker_label.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/worker_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/worker_runtime_info.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/worker_runtime_sdks.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/worker_type.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_concurrency.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_deployment_config.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_kind.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_cancel200_response.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_list.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_order_by_direction.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_order_by_field.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_shape.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_status.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_run_triggered_by.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_runs_cancel_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_runs_metrics.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_tag.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_trigger_event_ref.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_triggers.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_update_request.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_version.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_version_concurrency.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_version_definition.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_version_meta.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/models/workflow_workers_count.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/rest.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest/tenacity_utils.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/rest_client.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/run_event_listener.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/clients/workflow_listener.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/connection.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/context/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/context/context.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/context/worker_context.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/dispatcher_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/dispatcher_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/events_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/events_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/events_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/workflows_pb2.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/workflows_pb2.pyi +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/contracts/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/labels.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/loader.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/logger.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/metadata.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/rate_limit.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/semver.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/token.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/utils/aio_utils.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/utils/backoff.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/utils/types.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/utils/typing.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/v2/callable.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/v2/concurrency.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/v2/hatchet.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/action_listener_process.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/runner/run_loop_manager.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/runner/runner.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/runner/utils/capture_logs.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/runner/utils/error_with_traceback.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/worker/worker.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/workflow.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/v0/workflow_run.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/waits.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/worker/__init__.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/worker/action_listener_process.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/worker/runner/run_loop_manager.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/worker/runner/runner.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/worker/runner/utils/capture_logs.py +0 -0
- {hatchet_sdk-1.6.1 → hatchet_sdk-1.6.3}/hatchet_sdk/workflow_run.py +0 -0
|
@@ -9,7 +9,11 @@ import grpc
|
|
|
9
9
|
import grpc.aio
|
|
10
10
|
from pydantic import BaseModel, ConfigDict, Field, field_validator, model_validator
|
|
11
11
|
|
|
12
|
-
from hatchet_sdk.clients.event_ts import
|
|
12
|
+
from hatchet_sdk.clients.event_ts import (
|
|
13
|
+
ThreadSafeEvent,
|
|
14
|
+
UnexpectedEOF,
|
|
15
|
+
read_with_interrupt,
|
|
16
|
+
)
|
|
13
17
|
from hatchet_sdk.clients.events import proto_timestamp_now
|
|
14
18
|
from hatchet_sdk.clients.listeners.run_event_listener import (
|
|
15
19
|
DEFAULT_ACTION_LISTENER_RETRY_INTERVAL,
|
|
@@ -275,15 +279,17 @@ class ActionListener:
|
|
|
275
279
|
|
|
276
280
|
break
|
|
277
281
|
|
|
278
|
-
|
|
282
|
+
result = t.result()
|
|
279
283
|
|
|
280
|
-
if
|
|
284
|
+
if isinstance(result, UnexpectedEOF):
|
|
281
285
|
logger.debug("Handling EOF in Action Listener")
|
|
282
286
|
self.retries = self.retries + 1
|
|
283
287
|
break
|
|
284
288
|
|
|
285
289
|
self.retries = 0
|
|
286
290
|
|
|
291
|
+
assigned_action = result.data
|
|
292
|
+
|
|
287
293
|
try:
|
|
288
294
|
action_payload = (
|
|
289
295
|
ActionPayload()
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import asyncio
|
|
2
|
-
from typing import Callable, TypeVar, cast, overload
|
|
2
|
+
from typing import Callable, Generic, TypeVar, cast, overload
|
|
3
3
|
|
|
4
4
|
import grpc.aio
|
|
5
5
|
from grpc._cython import cygrpc # type: ignore[attr-defined]
|
|
@@ -29,12 +29,23 @@ TRequest = TypeVar("TRequest")
|
|
|
29
29
|
TResponse = TypeVar("TResponse")
|
|
30
30
|
|
|
31
31
|
|
|
32
|
+
class ReadWithInterruptResult(Generic[TResponse]):
|
|
33
|
+
def __init__(self, data: TResponse, key: str):
|
|
34
|
+
self.data = data
|
|
35
|
+
self.key = key
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class UnexpectedEOF:
|
|
39
|
+
def __init__(self) -> None:
|
|
40
|
+
pass
|
|
41
|
+
|
|
42
|
+
|
|
32
43
|
@overload
|
|
33
44
|
async def read_with_interrupt(
|
|
34
45
|
listener: grpc.aio.UnaryStreamCall[TRequest, TResponse],
|
|
35
46
|
interrupt: ThreadSafeEvent,
|
|
36
47
|
key_generator: Callable[[TResponse], str],
|
|
37
|
-
) ->
|
|
48
|
+
) -> ReadWithInterruptResult[TResponse] | UnexpectedEOF: ...
|
|
38
49
|
|
|
39
50
|
|
|
40
51
|
@overload
|
|
@@ -42,23 +53,23 @@ async def read_with_interrupt(
|
|
|
42
53
|
listener: grpc.aio.UnaryStreamCall[TRequest, TResponse],
|
|
43
54
|
interrupt: ThreadSafeEvent,
|
|
44
55
|
key_generator: None = None,
|
|
45
|
-
) ->
|
|
56
|
+
) -> ReadWithInterruptResult[TResponse] | UnexpectedEOF: ...
|
|
46
57
|
|
|
47
58
|
|
|
48
59
|
async def read_with_interrupt(
|
|
49
60
|
listener: grpc.aio.UnaryStreamCall[TRequest, TResponse],
|
|
50
61
|
interrupt: ThreadSafeEvent,
|
|
51
62
|
key_generator: Callable[[TResponse], str] | None = None,
|
|
52
|
-
) ->
|
|
63
|
+
) -> ReadWithInterruptResult[TResponse] | UnexpectedEOF:
|
|
53
64
|
try:
|
|
54
65
|
result = cast(TResponse, await listener.read())
|
|
55
66
|
|
|
56
67
|
if result is cygrpc.EOF:
|
|
57
68
|
logger.warning("Received EOF from engine")
|
|
58
|
-
return
|
|
69
|
+
return UnexpectedEOF()
|
|
59
70
|
|
|
60
|
-
key = key_generator(result) if key_generator else
|
|
71
|
+
key = key_generator(result) if key_generator else ""
|
|
61
72
|
|
|
62
|
-
return result, key
|
|
73
|
+
return ReadWithInterruptResult(data=result, key=key)
|
|
63
74
|
finally:
|
|
64
75
|
interrupt.set()
|
|
@@ -6,7 +6,11 @@ from typing import Generic, Literal, TypeVar
|
|
|
6
6
|
import grpc
|
|
7
7
|
import grpc.aio
|
|
8
8
|
|
|
9
|
-
from hatchet_sdk.clients.event_ts import
|
|
9
|
+
from hatchet_sdk.clients.event_ts import (
|
|
10
|
+
ThreadSafeEvent,
|
|
11
|
+
UnexpectedEOF,
|
|
12
|
+
read_with_interrupt,
|
|
13
|
+
)
|
|
10
14
|
from hatchet_sdk.config import ClientConfig
|
|
11
15
|
from hatchet_sdk.logger import logger
|
|
12
16
|
from hatchet_sdk.metadata import get_metadata
|
|
@@ -130,18 +134,18 @@ class PooledListener(Generic[R, T, L], ABC):
|
|
|
130
134
|
await asyncio.sleep(DEFAULT_LISTENER_RETRY_INTERVAL)
|
|
131
135
|
break
|
|
132
136
|
|
|
133
|
-
event
|
|
137
|
+
event = t.result()
|
|
134
138
|
|
|
135
|
-
if
|
|
139
|
+
if isinstance(event, UnexpectedEOF):
|
|
136
140
|
logger.debug(
|
|
137
141
|
f"Handling EOF in Pooled Listener {self.__class__.__name__}"
|
|
138
142
|
)
|
|
139
143
|
break
|
|
140
144
|
|
|
141
|
-
subscriptions = self.to_subscriptions.get(key, [])
|
|
145
|
+
subscriptions = self.to_subscriptions.get(event.key, [])
|
|
142
146
|
|
|
143
147
|
for subscription_id in subscriptions:
|
|
144
|
-
await self.events[subscription_id].put(event)
|
|
148
|
+
await self.events[subscription_id].put(event.data)
|
|
145
149
|
|
|
146
150
|
except grpc.RpcError as e:
|
|
147
151
|
logger.debug(f"grpc error in listener: {e}")
|
|
@@ -26,11 +26,6 @@ from hatchet_sdk.utils.typing import JSONSerializableMapping
|
|
|
26
26
|
class CreateCronTriggerConfig(BaseModel):
|
|
27
27
|
"""
|
|
28
28
|
Schema for creating a workflow run triggered by a cron.
|
|
29
|
-
|
|
30
|
-
Attributes:
|
|
31
|
-
expression (str): The cron expression defining the schedule.
|
|
32
|
-
input (dict): The input data for the cron workflow.
|
|
33
|
-
additional_metadata (dict[str, str]): Additional metadata associated with the cron trigger (e.g. {"key1": "value1", "key2": "value2"}).
|
|
34
29
|
"""
|
|
35
30
|
|
|
36
31
|
expression: str
|
|
@@ -43,14 +38,11 @@ class CreateCronTriggerConfig(BaseModel):
|
|
|
43
38
|
"""
|
|
44
39
|
Validates the cron expression to ensure it adheres to the expected format.
|
|
45
40
|
|
|
46
|
-
|
|
47
|
-
v (str): The cron expression to validate.
|
|
41
|
+
:param v: The cron expression to validate.
|
|
48
42
|
|
|
49
|
-
|
|
50
|
-
ValueError: If the expression is invalid.
|
|
43
|
+
:raises ValueError: If the expression is invalid
|
|
51
44
|
|
|
52
|
-
|
|
53
|
-
str: The validated cron expression.
|
|
45
|
+
:return: The validated cron expression.
|
|
54
46
|
"""
|
|
55
47
|
if not v:
|
|
56
48
|
raise ValueError("Cron expression is required")
|
|
@@ -72,6 +64,10 @@ class CreateCronTriggerConfig(BaseModel):
|
|
|
72
64
|
|
|
73
65
|
|
|
74
66
|
class CronClient(BaseRestClient):
|
|
67
|
+
"""
|
|
68
|
+
The cron client is a client for managing cron workflows within Hatchet.
|
|
69
|
+
"""
|
|
70
|
+
|
|
75
71
|
def _wra(self, client: ApiClient) -> WorkflowRunApi:
|
|
76
72
|
return WorkflowRunApi(client)
|
|
77
73
|
|
|
@@ -88,17 +84,16 @@ class CronClient(BaseRestClient):
|
|
|
88
84
|
priority: int | None = None,
|
|
89
85
|
) -> CronWorkflows:
|
|
90
86
|
"""
|
|
91
|
-
|
|
87
|
+
Create a new workflow cron trigger.
|
|
92
88
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
89
|
+
:param workflow_name: The name of the workflow to trigger.
|
|
90
|
+
:param cron_name: The name of the cron trigger.
|
|
91
|
+
:param expression: The cron expression defining the schedule.
|
|
92
|
+
:param input: The input data for the cron workflow.
|
|
93
|
+
:param additional_metadata: Additional metadata associated with the cron trigger.
|
|
94
|
+
:param priority: The priority of the cron workflow trigger.
|
|
99
95
|
|
|
100
|
-
|
|
101
|
-
CronWorkflows: The created cron workflow instance.
|
|
96
|
+
:return: The created cron workflow instance.
|
|
102
97
|
"""
|
|
103
98
|
validated_input = CreateCronTriggerConfig(
|
|
104
99
|
expression=expression, input=input, additional_metadata=additional_metadata
|
|
@@ -126,6 +121,18 @@ class CronClient(BaseRestClient):
|
|
|
126
121
|
additional_metadata: JSONSerializableMapping,
|
|
127
122
|
priority: int | None = None,
|
|
128
123
|
) -> CronWorkflows:
|
|
124
|
+
"""
|
|
125
|
+
Create a new workflow cron trigger.
|
|
126
|
+
|
|
127
|
+
:param workflow_name: The name of the workflow to trigger.
|
|
128
|
+
:param cron_name: The name of the cron trigger.
|
|
129
|
+
:param expression: The cron expression defining the schedule.
|
|
130
|
+
:param input: The input data for the cron workflow.
|
|
131
|
+
:param additional_metadata: Additional metadata associated with the cron trigger.
|
|
132
|
+
:param priority: The priority of the cron workflow trigger.
|
|
133
|
+
|
|
134
|
+
:return: The created cron workflow instance.
|
|
135
|
+
"""
|
|
129
136
|
return await asyncio.to_thread(
|
|
130
137
|
self.create,
|
|
131
138
|
workflow_name,
|
|
@@ -138,10 +145,10 @@ class CronClient(BaseRestClient):
|
|
|
138
145
|
|
|
139
146
|
def delete(self, cron_id: str) -> None:
|
|
140
147
|
"""
|
|
141
|
-
|
|
148
|
+
Delete a workflow cron trigger.
|
|
142
149
|
|
|
143
|
-
|
|
144
|
-
|
|
150
|
+
:param cron_id: The ID of the cron trigger to delete.
|
|
151
|
+
:return: None
|
|
145
152
|
"""
|
|
146
153
|
with self.client() as client:
|
|
147
154
|
self._wa(client).workflow_cron_delete(
|
|
@@ -149,6 +156,12 @@ class CronClient(BaseRestClient):
|
|
|
149
156
|
)
|
|
150
157
|
|
|
151
158
|
async def aio_delete(self, cron_id: str) -> None:
|
|
159
|
+
"""
|
|
160
|
+
Delete a workflow cron trigger.
|
|
161
|
+
|
|
162
|
+
:param cron_id: The ID of the cron trigger to delete.
|
|
163
|
+
:return: None
|
|
164
|
+
"""
|
|
152
165
|
return await asyncio.to_thread(self.delete, cron_id)
|
|
153
166
|
|
|
154
167
|
async def aio_list(
|
|
@@ -161,18 +174,16 @@ class CronClient(BaseRestClient):
|
|
|
161
174
|
order_by_direction: WorkflowRunOrderByDirection | None = None,
|
|
162
175
|
) -> CronWorkflowsList:
|
|
163
176
|
"""
|
|
164
|
-
|
|
177
|
+
Retrieve a list of all workflow cron triggers matching the criteria.
|
|
165
178
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
order_by_direction (WorkflowRunOrderByDirection | None): The direction to order the list by.
|
|
179
|
+
:param offset: The offset to start the list from.
|
|
180
|
+
:param limit: The maximum number of items to return.
|
|
181
|
+
:param workflow_id: The ID of the workflow to filter by.
|
|
182
|
+
:param additional_metadata: Filter by additional metadata keys.
|
|
183
|
+
:param order_by_field: The field to order the list by.
|
|
184
|
+
:param order_by_direction: The direction to order the list by.
|
|
173
185
|
|
|
174
|
-
|
|
175
|
-
CronWorkflowsList: A list of cron workflows.
|
|
186
|
+
:return: A list of cron workflows.
|
|
176
187
|
"""
|
|
177
188
|
return await asyncio.to_thread(
|
|
178
189
|
self.list,
|
|
@@ -194,18 +205,16 @@ class CronClient(BaseRestClient):
|
|
|
194
205
|
order_by_direction: WorkflowRunOrderByDirection | None = None,
|
|
195
206
|
) -> CronWorkflowsList:
|
|
196
207
|
"""
|
|
197
|
-
|
|
208
|
+
Retrieve a list of all workflow cron triggers matching the criteria.
|
|
198
209
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
order_by_direction (WorkflowRunOrderByDirection | None): The direction to order the list by.
|
|
210
|
+
:param offset: The offset to start the list from.
|
|
211
|
+
:param limit: The maximum number of items to return.
|
|
212
|
+
:param workflow_id: The ID of the workflow to filter by.
|
|
213
|
+
:param additional_metadata: Filter by additional metadata keys.
|
|
214
|
+
:param order_by_field: The field to order the list by.
|
|
215
|
+
:param order_by_direction: The direction to order the list by.
|
|
206
216
|
|
|
207
|
-
|
|
208
|
-
CronWorkflowsList: A list of cron workflows.
|
|
217
|
+
:return: A list of cron workflows.
|
|
209
218
|
"""
|
|
210
219
|
with self.client() as client:
|
|
211
220
|
return self._wa(client).cron_workflow_list(
|
|
@@ -222,13 +231,10 @@ class CronClient(BaseRestClient):
|
|
|
222
231
|
|
|
223
232
|
def get(self, cron_id: str) -> CronWorkflows:
|
|
224
233
|
"""
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
Args:
|
|
228
|
-
cron_id (str): The cron trigger ID or CronWorkflows instance to retrieve.
|
|
234
|
+
Retrieve a specific workflow cron trigger by ID.
|
|
229
235
|
|
|
230
|
-
|
|
231
|
-
|
|
236
|
+
:param cron_id: The cron trigger ID or CronWorkflows instance to retrieve.
|
|
237
|
+
:return: The requested cron workflow instance.
|
|
232
238
|
"""
|
|
233
239
|
with self.client() as client:
|
|
234
240
|
return self._wa(client).workflow_cron_get(
|
|
@@ -237,12 +243,9 @@ class CronClient(BaseRestClient):
|
|
|
237
243
|
|
|
238
244
|
async def aio_get(self, cron_id: str) -> CronWorkflows:
|
|
239
245
|
"""
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
Args:
|
|
243
|
-
cron_id (str): The cron trigger ID or CronWorkflows instance to retrieve.
|
|
246
|
+
Retrieve a specific workflow cron trigger by ID.
|
|
244
247
|
|
|
245
|
-
|
|
246
|
-
|
|
248
|
+
:param cron_id: The cron trigger ID or CronWorkflows instance to retrieve.
|
|
249
|
+
:return: The requested cron workflow instance.
|
|
247
250
|
"""
|
|
248
251
|
return await asyncio.to_thread(self.get, cron_id)
|
|
@@ -7,12 +7,28 @@ from hatchet_sdk.clients.v1.api_client import BaseRestClient
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class LogsClient(BaseRestClient):
|
|
10
|
+
"""
|
|
11
|
+
The logs client is a client for interacting with Hatchet's logs API.
|
|
12
|
+
"""
|
|
13
|
+
|
|
10
14
|
def _la(self, client: ApiClient) -> LogApi:
|
|
11
15
|
return LogApi(client)
|
|
12
16
|
|
|
13
17
|
def list(self, task_run_id: str) -> V1LogLineList:
|
|
18
|
+
"""
|
|
19
|
+
List log lines for a given task run.
|
|
20
|
+
|
|
21
|
+
:param task_run_id: The ID of the task run to list logs for.
|
|
22
|
+
:return: A list of log lines for the specified task run.
|
|
23
|
+
"""
|
|
14
24
|
with self.client() as client:
|
|
15
25
|
return self._la(client).v1_log_line_list(task=task_run_id)
|
|
16
26
|
|
|
17
27
|
async def aio_list(self, task_run_id: str) -> V1LogLineList:
|
|
28
|
+
"""
|
|
29
|
+
List log lines for a given task run.
|
|
30
|
+
|
|
31
|
+
:param task_run_id: The ID of the task run to list logs for.
|
|
32
|
+
:return: A list of log lines for the specified task run.
|
|
33
|
+
"""
|
|
18
34
|
return await asyncio.to_thread(self.list, task_run_id)
|
|
@@ -17,6 +17,10 @@ from hatchet_sdk.utils.typing import JSONSerializableMapping
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class MetricsClient(BaseRestClient):
|
|
20
|
+
"""
|
|
21
|
+
The metrics client is a client for reading metrics out of Hatchet's metrics API.
|
|
22
|
+
"""
|
|
23
|
+
|
|
20
24
|
def _wa(self, client: ApiClient) -> WorkflowApi:
|
|
21
25
|
return WorkflowApi(client)
|
|
22
26
|
|
|
@@ -29,6 +33,15 @@ class MetricsClient(BaseRestClient):
|
|
|
29
33
|
status: WorkflowRunStatus | None = None,
|
|
30
34
|
group_key: str | None = None,
|
|
31
35
|
) -> WorkflowMetrics:
|
|
36
|
+
"""
|
|
37
|
+
Retrieve workflow metrics for a given workflow ID.
|
|
38
|
+
|
|
39
|
+
:param workflow_id: The ID of the workflow to retrieve metrics for.
|
|
40
|
+
:param status: The status of the workflow run to filter by.
|
|
41
|
+
:param group_key: The key to group the metrics by.
|
|
42
|
+
|
|
43
|
+
:return: Workflow metrics for the specified workflow ID.
|
|
44
|
+
"""
|
|
32
45
|
with self.client() as client:
|
|
33
46
|
return self._wa(client).workflow_get_metrics(
|
|
34
47
|
workflow=workflow_id, status=status, group_key=group_key
|
|
@@ -40,6 +53,15 @@ class MetricsClient(BaseRestClient):
|
|
|
40
53
|
status: WorkflowRunStatus | None = None,
|
|
41
54
|
group_key: str | None = None,
|
|
42
55
|
) -> WorkflowMetrics:
|
|
56
|
+
"""
|
|
57
|
+
Retrieve workflow metrics for a given workflow ID.
|
|
58
|
+
|
|
59
|
+
:param workflow_id: The ID of the workflow to retrieve metrics for.
|
|
60
|
+
:param status: The status of the workflow run to filter by.
|
|
61
|
+
:param group_key: The key to group the metrics by.
|
|
62
|
+
|
|
63
|
+
:return: Workflow metrics for the specified workflow ID.
|
|
64
|
+
"""
|
|
43
65
|
return await asyncio.to_thread(
|
|
44
66
|
self.get_workflow_metrics, workflow_id, status, group_key
|
|
45
67
|
)
|
|
@@ -49,6 +71,14 @@ class MetricsClient(BaseRestClient):
|
|
|
49
71
|
workflow_ids: list[str] | None = None,
|
|
50
72
|
additional_metadata: JSONSerializableMapping | None = None,
|
|
51
73
|
) -> TenantQueueMetrics:
|
|
74
|
+
"""
|
|
75
|
+
Retrieve queue metrics for a set of workflow ids and additional metadata.
|
|
76
|
+
|
|
77
|
+
:param workflow_ids: A list of workflow IDs to retrieve metrics for.
|
|
78
|
+
:param additional_metadata: Additional metadata to filter the metrics by.
|
|
79
|
+
|
|
80
|
+
:return: Workflow metrics for the specified workflow IDs.
|
|
81
|
+
"""
|
|
52
82
|
with self.client() as client:
|
|
53
83
|
return self._wa(client).tenant_get_queue_metrics(
|
|
54
84
|
tenant=self.client_config.tenant_id,
|
|
@@ -63,15 +93,33 @@ class MetricsClient(BaseRestClient):
|
|
|
63
93
|
workflow_ids: list[str] | None = None,
|
|
64
94
|
additional_metadata: JSONSerializableMapping | None = None,
|
|
65
95
|
) -> TenantQueueMetrics:
|
|
96
|
+
"""
|
|
97
|
+
Retrieve queue metrics for a set of workflow ids and additional metadata.
|
|
98
|
+
|
|
99
|
+
:param workflow_ids: A list of workflow IDs to retrieve metrics for.
|
|
100
|
+
:param additional_metadata: Additional metadata to filter the metrics by.
|
|
101
|
+
|
|
102
|
+
:return: Workflow metrics for the specified workflow IDs.
|
|
103
|
+
"""
|
|
66
104
|
return await asyncio.to_thread(
|
|
67
105
|
self.get_queue_metrics, workflow_ids, additional_metadata
|
|
68
106
|
)
|
|
69
107
|
|
|
70
108
|
def get_task_metrics(self) -> TenantStepRunQueueMetrics:
|
|
109
|
+
"""
|
|
110
|
+
Retrieve queue metrics
|
|
111
|
+
|
|
112
|
+
:return: Step run queue metrics for the tenant
|
|
113
|
+
"""
|
|
71
114
|
with self.client() as client:
|
|
72
115
|
return self._ta(client).tenant_get_step_run_queue_metrics(
|
|
73
116
|
tenant=self.client_config.tenant_id
|
|
74
117
|
)
|
|
75
118
|
|
|
76
119
|
async def aio_get_task_metrics(self) -> TenantStepRunQueueMetrics:
|
|
120
|
+
"""
|
|
121
|
+
Retrieve queue metrics
|
|
122
|
+
|
|
123
|
+
:return: Step run queue metrics for the tenant
|
|
124
|
+
"""
|
|
77
125
|
return await asyncio.to_thread(self.get_task_metrics)
|
|
@@ -12,6 +12,10 @@ from hatchet_sdk.utils.proto_enums import convert_python_enum_to_proto
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class RateLimitsClient(BaseRestClient):
|
|
15
|
+
"""
|
|
16
|
+
The rate limits client is a wrapper for Hatchet's gRPC API that makes it easier to work with rate limits in Hatchet.
|
|
17
|
+
"""
|
|
18
|
+
|
|
15
19
|
@tenacity_retry
|
|
16
20
|
def put(
|
|
17
21
|
self,
|
|
@@ -19,6 +23,16 @@ class RateLimitsClient(BaseRestClient):
|
|
|
19
23
|
limit: int,
|
|
20
24
|
duration: RateLimitDuration = RateLimitDuration.SECOND,
|
|
21
25
|
) -> None:
|
|
26
|
+
"""
|
|
27
|
+
Put a rate limit for a given key.
|
|
28
|
+
|
|
29
|
+
:param key: The key to set the rate limit for.
|
|
30
|
+
:param limit: The rate limit to set.
|
|
31
|
+
:param duration: The duration of the rate limit.
|
|
32
|
+
|
|
33
|
+
:return: None
|
|
34
|
+
"""
|
|
35
|
+
|
|
22
36
|
duration_proto = convert_python_enum_to_proto(
|
|
23
37
|
duration, workflow_protos.RateLimitDuration
|
|
24
38
|
)
|
|
@@ -42,4 +56,14 @@ class RateLimitsClient(BaseRestClient):
|
|
|
42
56
|
limit: int,
|
|
43
57
|
duration: RateLimitDuration = RateLimitDuration.SECOND,
|
|
44
58
|
) -> None:
|
|
59
|
+
"""
|
|
60
|
+
Put a rate limit for a given key.
|
|
61
|
+
|
|
62
|
+
:param key: The key to set the rate limit for.
|
|
63
|
+
:param limit: The rate limit to set.
|
|
64
|
+
:param duration: The duration of the rate limit.
|
|
65
|
+
|
|
66
|
+
:return: None
|
|
67
|
+
"""
|
|
68
|
+
|
|
45
69
|
await asyncio.to_thread(self.put, key, limit, duration)
|