hatchet-sdk 1.20.0__tar.gz → 1.20.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of hatchet-sdk might be problematic. Click here for more details.
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/PKG-INFO +4 -6
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/__init__.py +11 -3
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/task_api.py +27 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/tenant_api.py +345 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/user_api.py +9 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/webhook_api.py +323 -8
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/workflow_api.py +327 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/workflow_runs_api.py +408 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/configuration.py +8 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/__init__.py +11 -3
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_tenant_request.py +19 -1
- hatchet_sdk-1.20.2/hatchet_sdk/clients/rest/models/registered_workflow.py +86 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant.py +6 -0
- hatchet_sdk-1.20.2/hatchet_sdk/clients/rest/models/tenant_environment.py +38 -0
- hatchet_sdk-1.20.2/hatchet_sdk/clients/rest/models/update_cron_workflow_trigger_request.py +83 -0
- hatchet_sdk-1.20.2/hatchet_sdk/clients/rest/models/update_tenant_member_request.py +85 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_filter.py +8 -1
- hatchet_sdk-1.20.2/hatchet_sdk/clients/rest/models/v1_update_webhook_request.py +86 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_source_name.py +2 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/worker.py +22 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/runs.py +224 -0
- hatchet_sdk-1.20.2/hatchet_sdk/utils/iterables.py +9 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/pyproject.toml +4 -10
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/README.md +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/client.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/admin.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/dispatcher/action_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/dispatcher/dispatcher.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/event_ts.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/events.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/listeners/durable_event_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/listeners/pooled_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/listeners/run_event_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/listeners/workflow_listener.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/api_token_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/cel_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/default_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/event_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/filter_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/github_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/healthcheck_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/log_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/metadata_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/rate_limits_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/slack_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/sns_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/step_run_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/worker_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api/workflow_run_api.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api_client.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/api_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/exceptions.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/accept_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_error.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_errors.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_meta.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_meta_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_meta_integration.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_meta_posthog.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_resource_meta.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/api_token.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/bulk_create_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/bulk_create_event_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/cancel_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/cancel_step_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/concurrency_limit_strategy.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_api_token_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_api_token_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_cron_workflow_trigger_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_pull_request_from_step_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_sns_integration_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/create_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/cron_workflows.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/cron_workflows_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/cron_workflows_method.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/cron_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_data.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_key_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_update_cancel200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/events.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/get_step_run_diff_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/github_app_installation.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/github_branch.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/github_repo.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/info_get_version200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/job.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/job_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/job_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/link_github_repository_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/list_api_tokens_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/list_github_app_installations_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/list_pull_requests_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/list_slack_webhooks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/list_sns_integrations.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/log_line.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/log_line_level.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/log_line_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/log_line_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/log_line_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/pagination_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/pull_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/pull_request_state.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/queue_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/rate_limit.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/rate_limit_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/rate_limit_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/rate_limit_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/recent_step_runs.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/reject_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/replay_event_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/replay_workflow_runs_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/replay_workflow_runs_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/rerun_step_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/schedule_workflow_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/scheduled_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/scheduled_workflows.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/scheduled_workflows_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/scheduled_workflows_method.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/scheduled_workflows_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/semaphore_slots.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/slack_webhook.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/sns_integration.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_archive.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_archive_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_diff.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_event_reason.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_event_severity.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/step_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_alert_email_group.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_alert_email_group_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_alerting_settings.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_invite.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_invite_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_member.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_member_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_member_role.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_queue_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_resource.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_resource_limit.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_resource_policy.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_step_run_queue_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_ui_version.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/tenant_version.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/update_tenant_alert_email_group_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/update_tenant_invite_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/update_tenant_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/update_worker_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/user.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/user_change_password_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/user_login_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/user_register_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/user_tenant_memberships_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/user_tenant_public.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cancel_task_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cancelled_tasks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_error_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_response_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_cel_debug_success_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_filter_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key_all_of_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_base.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth_all_of_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac_all_of_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_dag_children.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_event_triggered_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_event_workflow_run_summary.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_filter_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_log_line.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_log_line_level.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_log_line_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_replay_task_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_replayed_tasks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_event.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_event_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_event_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_filter.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_point_metric.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_point_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_run_metric.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_summary.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_summary_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_timing.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_task_timing_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_trigger_workflow_run_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_update_filter_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_api_key_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_auth_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_basic_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_algorithm.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_auth.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_hmac_encoding.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_webhook_receive200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_workflow_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_workflow_run_details.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_workflow_run_display_name_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/v1_workflow_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_create_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_create_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_created.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_list_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_request_list_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/webhook_worker_request_method.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/worker_label.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/worker_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/worker_runtime_info.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/worker_runtime_sdks.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/worker_type.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_concurrency.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_deployment_config.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_kind.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_cancel200_response.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_list.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_order_by_direction.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_order_by_field.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_shape.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_shape_item_for_workflow_run_details.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_status.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_run_triggered_by.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_runs_cancel_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_runs_metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_runs_metrics_counts.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_tag.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_trigger_cron_ref.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_trigger_event_ref.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_triggers.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_update_request.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_version.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_version_concurrency.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_version_definition.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_version_meta.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/models/workflow_workers_count.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/rest.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/rest/tenacity_utils.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/clients/v1/api_client.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/conditions.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/config.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/connection.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/context/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/context/context.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/context/worker_context.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/dispatcher_pb2.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/dispatcher_pb2.pyi +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/events_pb2.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/events_pb2.pyi +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/events_pb2_grpc.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/dispatcher_pb2.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/dispatcher_pb2.pyi +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/dispatcher_pb2_grpc.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/shared/condition_pb2.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/shared/condition_pb2.pyi +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/shared/condition_pb2_grpc.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/workflows_pb2.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/workflows_pb2.pyi +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/v1/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/workflows_pb2.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/workflows_pb2.pyi +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/contracts/workflows_pb2_grpc.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/exceptions.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/cel.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/cron.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/filters.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/logs.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/metrics.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/rate_limits.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/scheduled.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/stubs.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/tenant.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/workers.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/features/workflows.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/hatchet.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/labels.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/logger.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/metadata.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/opentelemetry/instrumentor.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/py.typed +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/rate_limit.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/runnables/action.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/runnables/contextvars.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/runnables/task.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/runnables/types.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/runnables/workflow.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/token.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/aio.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/backoff.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/datetimes.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/opentelemetry.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/proto_enums.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/serde.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/timedelta_to_expression.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/utils/typing.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/worker/__init__.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/worker/action_listener_process.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/worker/runner/run_loop_manager.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/worker/runner/runner.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/worker/runner/utils/capture_logs.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/worker/worker.py +0 -0
- {hatchet_sdk-1.20.0 → hatchet_sdk-1.20.2}/hatchet_sdk/workflow_run.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hatchet-sdk
|
|
3
|
-
Version: 1.20.
|
|
3
|
+
Version: 1.20.2
|
|
4
4
|
Summary:
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Alexander Belanger
|
|
@@ -14,10 +14,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
14
14
|
Provides-Extra: otel
|
|
15
15
|
Provides-Extra: v0-sdk
|
|
16
16
|
Requires-Dist: aiohttp (>=3.10.5,<4.0.0)
|
|
17
|
-
Requires-Dist: grpcio (>=1.
|
|
18
|
-
Requires-Dist: grpcio (>=1.
|
|
19
|
-
Requires-Dist: grpcio-tools (>=1.64.1,!=1.68.*) ; python_version < "3.13"
|
|
20
|
-
Requires-Dist: grpcio-tools (>=1.69.0) ; python_version >= "3.13"
|
|
17
|
+
Requires-Dist: grpcio (>=1.76.0,<2.0.0)
|
|
18
|
+
Requires-Dist: grpcio-tools (>=1.76.0,<2.0.0)
|
|
21
19
|
Requires-Dist: opentelemetry-api (>=1.28.0,<2.0.0) ; extra == "otel"
|
|
22
20
|
Requires-Dist: opentelemetry-distro (>=0.49b0) ; extra == "otel"
|
|
23
21
|
Requires-Dist: opentelemetry-exporter-otlp (>=1.28.0,<2.0.0) ; extra == "otel"
|
|
@@ -25,7 +23,7 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.28.0,<2.0.0) ; extra
|
|
|
25
23
|
Requires-Dist: opentelemetry-instrumentation (>=0.49b0) ; extra == "otel"
|
|
26
24
|
Requires-Dist: opentelemetry-sdk (>=1.28.0,<2.0.0) ; extra == "otel"
|
|
27
25
|
Requires-Dist: prometheus-client (>=0.21.1)
|
|
28
|
-
Requires-Dist: protobuf (>=
|
|
26
|
+
Requires-Dist: protobuf (>=6.30.0,<7.0.0)
|
|
29
27
|
Requires-Dist: pydantic (>=2.6.3,<3.0.0)
|
|
30
28
|
Requires-Dist: pydantic-settings (>=2.7.1,<3.0.0)
|
|
31
29
|
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
|
|
@@ -150,6 +150,7 @@ from hatchet_sdk.clients.rest.models.rate_limit_order_by_field import (
|
|
|
150
150
|
RateLimitOrderByField,
|
|
151
151
|
)
|
|
152
152
|
from hatchet_sdk.clients.rest.models.recent_step_runs import RecentStepRuns
|
|
153
|
+
from hatchet_sdk.clients.rest.models.registered_workflow import RegisteredWorkflow
|
|
153
154
|
from hatchet_sdk.clients.rest.models.reject_invite_request import RejectInviteRequest
|
|
154
155
|
from hatchet_sdk.clients.rest.models.replay_event_request import ReplayEventRequest
|
|
155
156
|
from hatchet_sdk.clients.rest.models.replay_workflow_runs_request import (
|
|
@@ -196,6 +197,7 @@ from hatchet_sdk.clients.rest.models.tenant_alert_email_group_list import (
|
|
|
196
197
|
from hatchet_sdk.clients.rest.models.tenant_alerting_settings import (
|
|
197
198
|
TenantAlertingSettings,
|
|
198
199
|
)
|
|
200
|
+
from hatchet_sdk.clients.rest.models.tenant_environment import TenantEnvironment
|
|
199
201
|
from hatchet_sdk.clients.rest.models.tenant_invite import TenantInvite
|
|
200
202
|
from hatchet_sdk.clients.rest.models.tenant_invite_list import TenantInviteList
|
|
201
203
|
from hatchet_sdk.clients.rest.models.tenant_list import TenantList
|
|
@@ -214,12 +216,18 @@ from hatchet_sdk.clients.rest.models.tenant_version import TenantVersion
|
|
|
214
216
|
from hatchet_sdk.clients.rest.models.trigger_workflow_run_request import (
|
|
215
217
|
TriggerWorkflowRunRequest,
|
|
216
218
|
)
|
|
219
|
+
from hatchet_sdk.clients.rest.models.update_cron_workflow_trigger_request import (
|
|
220
|
+
UpdateCronWorkflowTriggerRequest,
|
|
221
|
+
)
|
|
217
222
|
from hatchet_sdk.clients.rest.models.update_tenant_alert_email_group_request import (
|
|
218
223
|
UpdateTenantAlertEmailGroupRequest,
|
|
219
224
|
)
|
|
220
225
|
from hatchet_sdk.clients.rest.models.update_tenant_invite_request import (
|
|
221
226
|
UpdateTenantInviteRequest,
|
|
222
227
|
)
|
|
228
|
+
from hatchet_sdk.clients.rest.models.update_tenant_member_request import (
|
|
229
|
+
UpdateTenantMemberRequest,
|
|
230
|
+
)
|
|
223
231
|
from hatchet_sdk.clients.rest.models.update_tenant_request import UpdateTenantRequest
|
|
224
232
|
from hatchet_sdk.clients.rest.models.update_worker_request import UpdateWorkerRequest
|
|
225
233
|
from hatchet_sdk.clients.rest.models.user import User
|
|
@@ -290,6 +298,9 @@ from hatchet_sdk.clients.rest.models.v1_trigger_workflow_run_request import (
|
|
|
290
298
|
from hatchet_sdk.clients.rest.models.v1_update_filter_request import (
|
|
291
299
|
V1UpdateFilterRequest,
|
|
292
300
|
)
|
|
301
|
+
from hatchet_sdk.clients.rest.models.v1_update_webhook_request import (
|
|
302
|
+
V1UpdateWebhookRequest,
|
|
303
|
+
)
|
|
293
304
|
from hatchet_sdk.clients.rest.models.v1_webhook import V1Webhook
|
|
294
305
|
from hatchet_sdk.clients.rest.models.v1_webhook_api_key_auth import V1WebhookAPIKeyAuth
|
|
295
306
|
from hatchet_sdk.clients.rest.models.v1_webhook_auth_type import V1WebhookAuthType
|
|
@@ -302,9 +313,6 @@ from hatchet_sdk.clients.rest.models.v1_webhook_hmac_encoding import (
|
|
|
302
313
|
V1WebhookHMACEncoding,
|
|
303
314
|
)
|
|
304
315
|
from hatchet_sdk.clients.rest.models.v1_webhook_list import V1WebhookList
|
|
305
|
-
from hatchet_sdk.clients.rest.models.v1_webhook_receive200_response import (
|
|
306
|
-
V1WebhookReceive200Response,
|
|
307
|
-
)
|
|
308
316
|
from hatchet_sdk.clients.rest.models.v1_webhook_source_name import V1WebhookSourceName
|
|
309
317
|
from hatchet_sdk.clients.rest.models.v1_workflow_run import V1WorkflowRun
|
|
310
318
|
from hatchet_sdk.clients.rest.models.v1_workflow_run_details import V1WorkflowRunDetails
|
|
@@ -1597,6 +1597,10 @@ class TaskApi:
|
|
|
1597
1597
|
Optional[Annotated[str, Field(min_length=36, strict=True, max_length=36)]],
|
|
1598
1598
|
Field(description="The id of the event that triggered the task"),
|
|
1599
1599
|
] = None,
|
|
1600
|
+
additional_metadata: Annotated[
|
|
1601
|
+
Optional[List[StrictStr]],
|
|
1602
|
+
Field(description="Additional metadata k-v pairs to filter by"),
|
|
1603
|
+
] = None,
|
|
1600
1604
|
_request_timeout: Union[
|
|
1601
1605
|
None,
|
|
1602
1606
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1625,6 +1629,8 @@ class TaskApi:
|
|
|
1625
1629
|
:type parent_task_external_id: str
|
|
1626
1630
|
:param triggering_event_external_id: The id of the event that triggered the task
|
|
1627
1631
|
:type triggering_event_external_id: str
|
|
1632
|
+
:param additional_metadata: Additional metadata k-v pairs to filter by
|
|
1633
|
+
:type additional_metadata: List[str]
|
|
1628
1634
|
:param _request_timeout: timeout setting for this request. If one
|
|
1629
1635
|
number provided, it will be total request
|
|
1630
1636
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1654,6 +1660,7 @@ class TaskApi:
|
|
|
1654
1660
|
workflow_ids=workflow_ids,
|
|
1655
1661
|
parent_task_external_id=parent_task_external_id,
|
|
1656
1662
|
triggering_event_external_id=triggering_event_external_id,
|
|
1663
|
+
additional_metadata=additional_metadata,
|
|
1657
1664
|
_request_auth=_request_auth,
|
|
1658
1665
|
_content_type=_content_type,
|
|
1659
1666
|
_headers=_headers,
|
|
@@ -1704,6 +1711,10 @@ class TaskApi:
|
|
|
1704
1711
|
Optional[Annotated[str, Field(min_length=36, strict=True, max_length=36)]],
|
|
1705
1712
|
Field(description="The id of the event that triggered the task"),
|
|
1706
1713
|
] = None,
|
|
1714
|
+
additional_metadata: Annotated[
|
|
1715
|
+
Optional[List[StrictStr]],
|
|
1716
|
+
Field(description="Additional metadata k-v pairs to filter by"),
|
|
1717
|
+
] = None,
|
|
1707
1718
|
_request_timeout: Union[
|
|
1708
1719
|
None,
|
|
1709
1720
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1732,6 +1743,8 @@ class TaskApi:
|
|
|
1732
1743
|
:type parent_task_external_id: str
|
|
1733
1744
|
:param triggering_event_external_id: The id of the event that triggered the task
|
|
1734
1745
|
:type triggering_event_external_id: str
|
|
1746
|
+
:param additional_metadata: Additional metadata k-v pairs to filter by
|
|
1747
|
+
:type additional_metadata: List[str]
|
|
1735
1748
|
:param _request_timeout: timeout setting for this request. If one
|
|
1736
1749
|
number provided, it will be total request
|
|
1737
1750
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1761,6 +1774,7 @@ class TaskApi:
|
|
|
1761
1774
|
workflow_ids=workflow_ids,
|
|
1762
1775
|
parent_task_external_id=parent_task_external_id,
|
|
1763
1776
|
triggering_event_external_id=triggering_event_external_id,
|
|
1777
|
+
additional_metadata=additional_metadata,
|
|
1764
1778
|
_request_auth=_request_auth,
|
|
1765
1779
|
_content_type=_content_type,
|
|
1766
1780
|
_headers=_headers,
|
|
@@ -1811,6 +1825,10 @@ class TaskApi:
|
|
|
1811
1825
|
Optional[Annotated[str, Field(min_length=36, strict=True, max_length=36)]],
|
|
1812
1826
|
Field(description="The id of the event that triggered the task"),
|
|
1813
1827
|
] = None,
|
|
1828
|
+
additional_metadata: Annotated[
|
|
1829
|
+
Optional[List[StrictStr]],
|
|
1830
|
+
Field(description="Additional metadata k-v pairs to filter by"),
|
|
1831
|
+
] = None,
|
|
1814
1832
|
_request_timeout: Union[
|
|
1815
1833
|
None,
|
|
1816
1834
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1839,6 +1857,8 @@ class TaskApi:
|
|
|
1839
1857
|
:type parent_task_external_id: str
|
|
1840
1858
|
:param triggering_event_external_id: The id of the event that triggered the task
|
|
1841
1859
|
:type triggering_event_external_id: str
|
|
1860
|
+
:param additional_metadata: Additional metadata k-v pairs to filter by
|
|
1861
|
+
:type additional_metadata: List[str]
|
|
1842
1862
|
:param _request_timeout: timeout setting for this request. If one
|
|
1843
1863
|
number provided, it will be total request
|
|
1844
1864
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1868,6 +1888,7 @@ class TaskApi:
|
|
|
1868
1888
|
workflow_ids=workflow_ids,
|
|
1869
1889
|
parent_task_external_id=parent_task_external_id,
|
|
1870
1890
|
triggering_event_external_id=triggering_event_external_id,
|
|
1891
|
+
additional_metadata=additional_metadata,
|
|
1871
1892
|
_request_auth=_request_auth,
|
|
1872
1893
|
_content_type=_content_type,
|
|
1873
1894
|
_headers=_headers,
|
|
@@ -1893,6 +1914,7 @@ class TaskApi:
|
|
|
1893
1914
|
workflow_ids,
|
|
1894
1915
|
parent_task_external_id,
|
|
1895
1916
|
triggering_event_external_id,
|
|
1917
|
+
additional_metadata,
|
|
1896
1918
|
_request_auth,
|
|
1897
1919
|
_content_type,
|
|
1898
1920
|
_headers,
|
|
@@ -1903,6 +1925,7 @@ class TaskApi:
|
|
|
1903
1925
|
|
|
1904
1926
|
_collection_formats: Dict[str, str] = {
|
|
1905
1927
|
"workflow_ids": "multi",
|
|
1928
|
+
"additional_metadata": "multi",
|
|
1906
1929
|
}
|
|
1907
1930
|
|
|
1908
1931
|
_path_params: Dict[str, str] = {}
|
|
@@ -1954,6 +1977,10 @@ class TaskApi:
|
|
|
1954
1977
|
("triggering_event_external_id", triggering_event_external_id)
|
|
1955
1978
|
)
|
|
1956
1979
|
|
|
1980
|
+
if additional_metadata is not None:
|
|
1981
|
+
|
|
1982
|
+
_query_params.append(("additional_metadata", additional_metadata))
|
|
1983
|
+
|
|
1957
1984
|
# process the header parameters
|
|
1958
1985
|
# process the form parameters
|
|
1959
1986
|
# process the body parameter
|
|
@@ -49,6 +49,9 @@ from hatchet_sdk.clients.rest.models.tenant_step_run_queue_metrics import (
|
|
|
49
49
|
from hatchet_sdk.clients.rest.models.update_tenant_alert_email_group_request import (
|
|
50
50
|
UpdateTenantAlertEmailGroupRequest,
|
|
51
51
|
)
|
|
52
|
+
from hatchet_sdk.clients.rest.models.update_tenant_member_request import (
|
|
53
|
+
UpdateTenantMemberRequest,
|
|
54
|
+
)
|
|
52
55
|
from hatchet_sdk.clients.rest.models.update_tenant_request import UpdateTenantRequest
|
|
53
56
|
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
|
54
57
|
|
|
@@ -2862,6 +2865,7 @@ class TenantApi:
|
|
|
2862
2865
|
"201": "TenantInvite",
|
|
2863
2866
|
"400": "APIErrors",
|
|
2864
2867
|
"403": "APIError",
|
|
2868
|
+
"422": "APIErrors",
|
|
2865
2869
|
}
|
|
2866
2870
|
response_data = self.api_client.call_api(
|
|
2867
2871
|
*_param, _request_timeout=_request_timeout
|
|
@@ -2939,6 +2943,7 @@ class TenantApi:
|
|
|
2939
2943
|
"201": "TenantInvite",
|
|
2940
2944
|
"400": "APIErrors",
|
|
2941
2945
|
"403": "APIError",
|
|
2946
|
+
"422": "APIErrors",
|
|
2942
2947
|
}
|
|
2943
2948
|
response_data = self.api_client.call_api(
|
|
2944
2949
|
*_param, _request_timeout=_request_timeout
|
|
@@ -3016,6 +3021,7 @@ class TenantApi:
|
|
|
3016
3021
|
"201": "TenantInvite",
|
|
3017
3022
|
"400": "APIErrors",
|
|
3018
3023
|
"403": "APIError",
|
|
3024
|
+
"422": "APIErrors",
|
|
3019
3025
|
}
|
|
3020
3026
|
response_data = self.api_client.call_api(
|
|
3021
3027
|
*_param, _request_timeout=_request_timeout
|
|
@@ -4178,6 +4184,345 @@ class TenantApi:
|
|
|
4178
4184
|
_request_auth=_request_auth,
|
|
4179
4185
|
)
|
|
4180
4186
|
|
|
4187
|
+
@validate_call
|
|
4188
|
+
def tenant_member_update(
|
|
4189
|
+
self,
|
|
4190
|
+
tenant: Annotated[
|
|
4191
|
+
str,
|
|
4192
|
+
Field(
|
|
4193
|
+
min_length=36, strict=True, max_length=36, description="The tenant id"
|
|
4194
|
+
),
|
|
4195
|
+
],
|
|
4196
|
+
member: Annotated[
|
|
4197
|
+
str,
|
|
4198
|
+
Field(
|
|
4199
|
+
min_length=36,
|
|
4200
|
+
strict=True,
|
|
4201
|
+
max_length=36,
|
|
4202
|
+
description="The tenant member id",
|
|
4203
|
+
),
|
|
4204
|
+
],
|
|
4205
|
+
update_tenant_member_request: Annotated[
|
|
4206
|
+
UpdateTenantMemberRequest,
|
|
4207
|
+
Field(description="The tenant member properties to update"),
|
|
4208
|
+
],
|
|
4209
|
+
_request_timeout: Union[
|
|
4210
|
+
None,
|
|
4211
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4212
|
+
Tuple[
|
|
4213
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
4214
|
+
],
|
|
4215
|
+
] = None,
|
|
4216
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
4217
|
+
_content_type: Optional[StrictStr] = None,
|
|
4218
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4219
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4220
|
+
) -> TenantMember:
|
|
4221
|
+
"""Update a tenant member
|
|
4222
|
+
|
|
4223
|
+
Update a tenant member
|
|
4224
|
+
|
|
4225
|
+
:param tenant: The tenant id (required)
|
|
4226
|
+
:type tenant: str
|
|
4227
|
+
:param member: The tenant member id (required)
|
|
4228
|
+
:type member: str
|
|
4229
|
+
:param update_tenant_member_request: The tenant member properties to update (required)
|
|
4230
|
+
:type update_tenant_member_request: UpdateTenantMemberRequest
|
|
4231
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4232
|
+
number provided, it will be total request
|
|
4233
|
+
timeout. It can also be a pair (tuple) of
|
|
4234
|
+
(connection, read) timeouts.
|
|
4235
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
4236
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
4237
|
+
request; this effectively ignores the
|
|
4238
|
+
authentication in the spec for a single request.
|
|
4239
|
+
:type _request_auth: dict, optional
|
|
4240
|
+
:param _content_type: force content-type for the request.
|
|
4241
|
+
:type _content_type: str, Optional
|
|
4242
|
+
:param _headers: set to override the headers for a single
|
|
4243
|
+
request; this effectively ignores the headers
|
|
4244
|
+
in the spec for a single request.
|
|
4245
|
+
:type _headers: dict, optional
|
|
4246
|
+
:param _host_index: set to override the host_index for a single
|
|
4247
|
+
request; this effectively ignores the host_index
|
|
4248
|
+
in the spec for a single request.
|
|
4249
|
+
:type _host_index: int, optional
|
|
4250
|
+
:return: Returns the result object.
|
|
4251
|
+
""" # noqa: E501
|
|
4252
|
+
|
|
4253
|
+
_param = self._tenant_member_update_serialize(
|
|
4254
|
+
tenant=tenant,
|
|
4255
|
+
member=member,
|
|
4256
|
+
update_tenant_member_request=update_tenant_member_request,
|
|
4257
|
+
_request_auth=_request_auth,
|
|
4258
|
+
_content_type=_content_type,
|
|
4259
|
+
_headers=_headers,
|
|
4260
|
+
_host_index=_host_index,
|
|
4261
|
+
)
|
|
4262
|
+
|
|
4263
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
4264
|
+
"200": "TenantMember",
|
|
4265
|
+
"400": "APIErrors",
|
|
4266
|
+
"403": "APIErrors",
|
|
4267
|
+
"404": "APIErrors",
|
|
4268
|
+
}
|
|
4269
|
+
response_data = self.api_client.call_api(
|
|
4270
|
+
*_param, _request_timeout=_request_timeout
|
|
4271
|
+
)
|
|
4272
|
+
response_data.read()
|
|
4273
|
+
return self.api_client.response_deserialize(
|
|
4274
|
+
response_data=response_data,
|
|
4275
|
+
response_types_map=_response_types_map,
|
|
4276
|
+
).data
|
|
4277
|
+
|
|
4278
|
+
@validate_call
|
|
4279
|
+
def tenant_member_update_with_http_info(
|
|
4280
|
+
self,
|
|
4281
|
+
tenant: Annotated[
|
|
4282
|
+
str,
|
|
4283
|
+
Field(
|
|
4284
|
+
min_length=36, strict=True, max_length=36, description="The tenant id"
|
|
4285
|
+
),
|
|
4286
|
+
],
|
|
4287
|
+
member: Annotated[
|
|
4288
|
+
str,
|
|
4289
|
+
Field(
|
|
4290
|
+
min_length=36,
|
|
4291
|
+
strict=True,
|
|
4292
|
+
max_length=36,
|
|
4293
|
+
description="The tenant member id",
|
|
4294
|
+
),
|
|
4295
|
+
],
|
|
4296
|
+
update_tenant_member_request: Annotated[
|
|
4297
|
+
UpdateTenantMemberRequest,
|
|
4298
|
+
Field(description="The tenant member properties to update"),
|
|
4299
|
+
],
|
|
4300
|
+
_request_timeout: Union[
|
|
4301
|
+
None,
|
|
4302
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4303
|
+
Tuple[
|
|
4304
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
4305
|
+
],
|
|
4306
|
+
] = None,
|
|
4307
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
4308
|
+
_content_type: Optional[StrictStr] = None,
|
|
4309
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4310
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4311
|
+
) -> ApiResponse[TenantMember]:
|
|
4312
|
+
"""Update a tenant member
|
|
4313
|
+
|
|
4314
|
+
Update a tenant member
|
|
4315
|
+
|
|
4316
|
+
:param tenant: The tenant id (required)
|
|
4317
|
+
:type tenant: str
|
|
4318
|
+
:param member: The tenant member id (required)
|
|
4319
|
+
:type member: str
|
|
4320
|
+
:param update_tenant_member_request: The tenant member properties to update (required)
|
|
4321
|
+
:type update_tenant_member_request: UpdateTenantMemberRequest
|
|
4322
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4323
|
+
number provided, it will be total request
|
|
4324
|
+
timeout. It can also be a pair (tuple) of
|
|
4325
|
+
(connection, read) timeouts.
|
|
4326
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
4327
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
4328
|
+
request; this effectively ignores the
|
|
4329
|
+
authentication in the spec for a single request.
|
|
4330
|
+
:type _request_auth: dict, optional
|
|
4331
|
+
:param _content_type: force content-type for the request.
|
|
4332
|
+
:type _content_type: str, Optional
|
|
4333
|
+
:param _headers: set to override the headers for a single
|
|
4334
|
+
request; this effectively ignores the headers
|
|
4335
|
+
in the spec for a single request.
|
|
4336
|
+
:type _headers: dict, optional
|
|
4337
|
+
:param _host_index: set to override the host_index for a single
|
|
4338
|
+
request; this effectively ignores the host_index
|
|
4339
|
+
in the spec for a single request.
|
|
4340
|
+
:type _host_index: int, optional
|
|
4341
|
+
:return: Returns the result object.
|
|
4342
|
+
""" # noqa: E501
|
|
4343
|
+
|
|
4344
|
+
_param = self._tenant_member_update_serialize(
|
|
4345
|
+
tenant=tenant,
|
|
4346
|
+
member=member,
|
|
4347
|
+
update_tenant_member_request=update_tenant_member_request,
|
|
4348
|
+
_request_auth=_request_auth,
|
|
4349
|
+
_content_type=_content_type,
|
|
4350
|
+
_headers=_headers,
|
|
4351
|
+
_host_index=_host_index,
|
|
4352
|
+
)
|
|
4353
|
+
|
|
4354
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
4355
|
+
"200": "TenantMember",
|
|
4356
|
+
"400": "APIErrors",
|
|
4357
|
+
"403": "APIErrors",
|
|
4358
|
+
"404": "APIErrors",
|
|
4359
|
+
}
|
|
4360
|
+
response_data = self.api_client.call_api(
|
|
4361
|
+
*_param, _request_timeout=_request_timeout
|
|
4362
|
+
)
|
|
4363
|
+
response_data.read()
|
|
4364
|
+
return self.api_client.response_deserialize(
|
|
4365
|
+
response_data=response_data,
|
|
4366
|
+
response_types_map=_response_types_map,
|
|
4367
|
+
)
|
|
4368
|
+
|
|
4369
|
+
@validate_call
|
|
4370
|
+
def tenant_member_update_without_preload_content(
|
|
4371
|
+
self,
|
|
4372
|
+
tenant: Annotated[
|
|
4373
|
+
str,
|
|
4374
|
+
Field(
|
|
4375
|
+
min_length=36, strict=True, max_length=36, description="The tenant id"
|
|
4376
|
+
),
|
|
4377
|
+
],
|
|
4378
|
+
member: Annotated[
|
|
4379
|
+
str,
|
|
4380
|
+
Field(
|
|
4381
|
+
min_length=36,
|
|
4382
|
+
strict=True,
|
|
4383
|
+
max_length=36,
|
|
4384
|
+
description="The tenant member id",
|
|
4385
|
+
),
|
|
4386
|
+
],
|
|
4387
|
+
update_tenant_member_request: Annotated[
|
|
4388
|
+
UpdateTenantMemberRequest,
|
|
4389
|
+
Field(description="The tenant member properties to update"),
|
|
4390
|
+
],
|
|
4391
|
+
_request_timeout: Union[
|
|
4392
|
+
None,
|
|
4393
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
4394
|
+
Tuple[
|
|
4395
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
4396
|
+
],
|
|
4397
|
+
] = None,
|
|
4398
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
4399
|
+
_content_type: Optional[StrictStr] = None,
|
|
4400
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
4401
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
4402
|
+
) -> RESTResponseType:
|
|
4403
|
+
"""Update a tenant member
|
|
4404
|
+
|
|
4405
|
+
Update a tenant member
|
|
4406
|
+
|
|
4407
|
+
:param tenant: The tenant id (required)
|
|
4408
|
+
:type tenant: str
|
|
4409
|
+
:param member: The tenant member id (required)
|
|
4410
|
+
:type member: str
|
|
4411
|
+
:param update_tenant_member_request: The tenant member properties to update (required)
|
|
4412
|
+
:type update_tenant_member_request: UpdateTenantMemberRequest
|
|
4413
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
4414
|
+
number provided, it will be total request
|
|
4415
|
+
timeout. It can also be a pair (tuple) of
|
|
4416
|
+
(connection, read) timeouts.
|
|
4417
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
4418
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
4419
|
+
request; this effectively ignores the
|
|
4420
|
+
authentication in the spec for a single request.
|
|
4421
|
+
:type _request_auth: dict, optional
|
|
4422
|
+
:param _content_type: force content-type for the request.
|
|
4423
|
+
:type _content_type: str, Optional
|
|
4424
|
+
:param _headers: set to override the headers for a single
|
|
4425
|
+
request; this effectively ignores the headers
|
|
4426
|
+
in the spec for a single request.
|
|
4427
|
+
:type _headers: dict, optional
|
|
4428
|
+
:param _host_index: set to override the host_index for a single
|
|
4429
|
+
request; this effectively ignores the host_index
|
|
4430
|
+
in the spec for a single request.
|
|
4431
|
+
:type _host_index: int, optional
|
|
4432
|
+
:return: Returns the result object.
|
|
4433
|
+
""" # noqa: E501
|
|
4434
|
+
|
|
4435
|
+
_param = self._tenant_member_update_serialize(
|
|
4436
|
+
tenant=tenant,
|
|
4437
|
+
member=member,
|
|
4438
|
+
update_tenant_member_request=update_tenant_member_request,
|
|
4439
|
+
_request_auth=_request_auth,
|
|
4440
|
+
_content_type=_content_type,
|
|
4441
|
+
_headers=_headers,
|
|
4442
|
+
_host_index=_host_index,
|
|
4443
|
+
)
|
|
4444
|
+
|
|
4445
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
4446
|
+
"200": "TenantMember",
|
|
4447
|
+
"400": "APIErrors",
|
|
4448
|
+
"403": "APIErrors",
|
|
4449
|
+
"404": "APIErrors",
|
|
4450
|
+
}
|
|
4451
|
+
response_data = self.api_client.call_api(
|
|
4452
|
+
*_param, _request_timeout=_request_timeout
|
|
4453
|
+
)
|
|
4454
|
+
return response_data.response
|
|
4455
|
+
|
|
4456
|
+
def _tenant_member_update_serialize(
|
|
4457
|
+
self,
|
|
4458
|
+
tenant,
|
|
4459
|
+
member,
|
|
4460
|
+
update_tenant_member_request,
|
|
4461
|
+
_request_auth,
|
|
4462
|
+
_content_type,
|
|
4463
|
+
_headers,
|
|
4464
|
+
_host_index,
|
|
4465
|
+
) -> RequestSerialized:
|
|
4466
|
+
|
|
4467
|
+
_host = None
|
|
4468
|
+
|
|
4469
|
+
_collection_formats: Dict[str, str] = {}
|
|
4470
|
+
|
|
4471
|
+
_path_params: Dict[str, str] = {}
|
|
4472
|
+
_query_params: List[Tuple[str, str]] = []
|
|
4473
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
4474
|
+
_form_params: List[Tuple[str, str]] = []
|
|
4475
|
+
_files: Dict[
|
|
4476
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
4477
|
+
] = {}
|
|
4478
|
+
_body_params: Optional[bytes] = None
|
|
4479
|
+
|
|
4480
|
+
# process the path parameters
|
|
4481
|
+
if tenant is not None:
|
|
4482
|
+
_path_params["tenant"] = tenant
|
|
4483
|
+
if member is not None:
|
|
4484
|
+
_path_params["member"] = member
|
|
4485
|
+
# process the query parameters
|
|
4486
|
+
# process the header parameters
|
|
4487
|
+
# process the form parameters
|
|
4488
|
+
# process the body parameter
|
|
4489
|
+
if update_tenant_member_request is not None:
|
|
4490
|
+
_body_params = update_tenant_member_request
|
|
4491
|
+
|
|
4492
|
+
# set the HTTP header `Accept`
|
|
4493
|
+
if "Accept" not in _header_params:
|
|
4494
|
+
_header_params["Accept"] = self.api_client.select_header_accept(
|
|
4495
|
+
["application/json"]
|
|
4496
|
+
)
|
|
4497
|
+
|
|
4498
|
+
# set the HTTP header `Content-Type`
|
|
4499
|
+
if _content_type:
|
|
4500
|
+
_header_params["Content-Type"] = _content_type
|
|
4501
|
+
else:
|
|
4502
|
+
_default_content_type = self.api_client.select_header_content_type(
|
|
4503
|
+
["application/json"]
|
|
4504
|
+
)
|
|
4505
|
+
if _default_content_type is not None:
|
|
4506
|
+
_header_params["Content-Type"] = _default_content_type
|
|
4507
|
+
|
|
4508
|
+
# authentication setting
|
|
4509
|
+
_auth_settings: List[str] = ["cookieAuth", "bearerAuth"]
|
|
4510
|
+
|
|
4511
|
+
return self.api_client.param_serialize(
|
|
4512
|
+
method="PATCH",
|
|
4513
|
+
resource_path="/api/v1/tenants/{tenant}/members/{member}",
|
|
4514
|
+
path_params=_path_params,
|
|
4515
|
+
query_params=_query_params,
|
|
4516
|
+
header_params=_header_params,
|
|
4517
|
+
body=_body_params,
|
|
4518
|
+
post_params=_form_params,
|
|
4519
|
+
files=_files,
|
|
4520
|
+
auth_settings=_auth_settings,
|
|
4521
|
+
collection_formats=_collection_formats,
|
|
4522
|
+
_host=_host,
|
|
4523
|
+
_request_auth=_request_auth,
|
|
4524
|
+
)
|
|
4525
|
+
|
|
4181
4526
|
@validate_call
|
|
4182
4527
|
def tenant_resource_policy_get(
|
|
4183
4528
|
self,
|
|
@@ -333,6 +333,7 @@ class UserApi:
|
|
|
333
333
|
"400": "APIErrors",
|
|
334
334
|
"401": "APIErrors",
|
|
335
335
|
"405": "APIErrors",
|
|
336
|
+
"422": "APIErrors",
|
|
336
337
|
}
|
|
337
338
|
response_data = self.api_client.call_api(
|
|
338
339
|
*_param, _request_timeout=_request_timeout
|
|
@@ -400,6 +401,7 @@ class UserApi:
|
|
|
400
401
|
"400": "APIErrors",
|
|
401
402
|
"401": "APIErrors",
|
|
402
403
|
"405": "APIErrors",
|
|
404
|
+
"422": "APIErrors",
|
|
403
405
|
}
|
|
404
406
|
response_data = self.api_client.call_api(
|
|
405
407
|
*_param, _request_timeout=_request_timeout
|
|
@@ -467,6 +469,7 @@ class UserApi:
|
|
|
467
469
|
"400": "APIErrors",
|
|
468
470
|
"401": "APIErrors",
|
|
469
471
|
"405": "APIErrors",
|
|
472
|
+
"422": "APIErrors",
|
|
470
473
|
}
|
|
471
474
|
response_data = self.api_client.call_api(
|
|
472
475
|
*_param, _request_timeout=_request_timeout
|
|
@@ -1714,6 +1717,7 @@ class UserApi:
|
|
|
1714
1717
|
"400": "APIErrors",
|
|
1715
1718
|
"401": "APIErrors",
|
|
1716
1719
|
"405": "APIErrors",
|
|
1720
|
+
"422": "APIErrors",
|
|
1717
1721
|
}
|
|
1718
1722
|
response_data = self.api_client.call_api(
|
|
1719
1723
|
*_param, _request_timeout=_request_timeout
|
|
@@ -1781,6 +1785,7 @@ class UserApi:
|
|
|
1781
1785
|
"400": "APIErrors",
|
|
1782
1786
|
"401": "APIErrors",
|
|
1783
1787
|
"405": "APIErrors",
|
|
1788
|
+
"422": "APIErrors",
|
|
1784
1789
|
}
|
|
1785
1790
|
response_data = self.api_client.call_api(
|
|
1786
1791
|
*_param, _request_timeout=_request_timeout
|
|
@@ -1848,6 +1853,7 @@ class UserApi:
|
|
|
1848
1853
|
"400": "APIErrors",
|
|
1849
1854
|
"401": "APIErrors",
|
|
1850
1855
|
"405": "APIErrors",
|
|
1856
|
+
"422": "APIErrors",
|
|
1851
1857
|
}
|
|
1852
1858
|
response_data = self.api_client.call_api(
|
|
1853
1859
|
*_param, _request_timeout=_request_timeout
|
|
@@ -2211,6 +2217,7 @@ class UserApi:
|
|
|
2211
2217
|
"400": "APIErrors",
|
|
2212
2218
|
"401": "APIErrors",
|
|
2213
2219
|
"405": "APIErrors",
|
|
2220
|
+
"422": "APIErrors",
|
|
2214
2221
|
}
|
|
2215
2222
|
response_data = self.api_client.call_api(
|
|
2216
2223
|
*_param, _request_timeout=_request_timeout
|
|
@@ -2278,6 +2285,7 @@ class UserApi:
|
|
|
2278
2285
|
"400": "APIErrors",
|
|
2279
2286
|
"401": "APIErrors",
|
|
2280
2287
|
"405": "APIErrors",
|
|
2288
|
+
"422": "APIErrors",
|
|
2281
2289
|
}
|
|
2282
2290
|
response_data = self.api_client.call_api(
|
|
2283
2291
|
*_param, _request_timeout=_request_timeout
|
|
@@ -2345,6 +2353,7 @@ class UserApi:
|
|
|
2345
2353
|
"400": "APIErrors",
|
|
2346
2354
|
"401": "APIErrors",
|
|
2347
2355
|
"405": "APIErrors",
|
|
2356
|
+
"422": "APIErrors",
|
|
2348
2357
|
}
|
|
2349
2358
|
response_data = self.api_client.call_api(
|
|
2350
2359
|
*_param, _request_timeout=_request_timeout
|