conductor-python 1.1.5__tar.gz → 1.1.7__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.
- {conductor_python-1.1.5 → conductor_python-1.1.7}/PKG-INFO +1 -1
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_def.py +15 -1
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/rest.py +2 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/conductor_workflow.py +31 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/join_task.py +4 -1
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/task.py +21 -1
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/PKG-INFO +1 -1
- {conductor_python-1.1.5 → conductor_python-1.1.7}/LICENSE +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/README.md +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/setup.cfg +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/setup.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/ai/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/ai/configuration.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/ai/integrations.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/ai/orchestrator.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/authorization_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/task_handler.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/task_runner.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/utils.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/configuration/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/configuration/configuration.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/configuration/settings/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/configuration/settings/authentication_settings.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/configuration/settings/metrics_settings.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/event_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/queue/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/queue/kafka_queue_configuration.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/queue/queue_configuration.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/queue/queue_worker_configuration.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/exceptions/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/exceptions/api_error.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/exceptions/api_exception_handler.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/helpers/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/helpers/helper.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/application_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/authorization_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/event_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/group_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/integration_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/metadata_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/prompt_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/scheduler_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/secret_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/task_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/token_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/user_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/workflow_bulk_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/workflow_resource_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/action.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/authorization_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/bulk_response.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/conductor_application.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/conductor_user.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/correlation_ids_search_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/create_or_update_application_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/event_handler.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/external_storage_location.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/generate_token_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/group.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/health.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/health_check_status.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/integration.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/integration_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/integration_api_update.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/integration_def.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/integration_update.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/permission.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/poll_data.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/prompt_template.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/prompt_test_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/rate_limit.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/rerun_workflow_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/response.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/role.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/save_schedule_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/scrollable_search_result_workflow_summary.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/search_result_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/search_result_task_summary.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/search_result_workflow.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/search_result_workflow_schedule_execution_model.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/search_result_workflow_summary.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/skip_task_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/start_workflow.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/start_workflow_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/state_change_event.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/sub_workflow_params.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/subject_ref.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/tag_object.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/tag_string.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/target_ref.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_def.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_details.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_exec_log.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_result.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_result_status.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_summary.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/token.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/upsert_group_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/upsert_user_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_run.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_schedule.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_schedule_execution_model.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_state_update.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_status.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_summary.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_tag.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_test_request.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/thread.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/integration_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/metadata_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/api/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/api/tags_api.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/access_key.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/access_key_status.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/access_type.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/created_access_key.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/granted_permission.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/metadata_tag.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/ratelimit_tag.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_authorization_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_base_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_integration_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_metadata_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_prompt_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_scheduler_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_secret_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_task_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_workflow_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes_clients.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/prompt_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/scheduler_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/secret_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/task_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/metrics_collector.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/model/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/model/metric_documentation.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/model/metric_label.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/model/metric_name.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/exception.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/worker.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/worker_interface.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/worker_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/executor/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/executor/workflow_executor.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/do_while_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/dynamic_fork_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/dynamic_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/event_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/fork_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/get_document.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/http_poll_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/http_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/human_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/inline.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/javascript_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/json_jq_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/kafka_publish.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/kafka_publish_input.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_chat_complete.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_generate_embeddings.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_index_documents.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_index_text.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_query_embeddings.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_search_index.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/llm_text_complete.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/utils/__init__.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/utils/embedding_model.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/llm_tasks/utils/prompt.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/set_variable_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/simple_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/start_workflow_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/sub_workflow_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/switch_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/task_type.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/terminate_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/timeout_policy.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/wait_for_webhook_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/wait_task.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow_client.py +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/SOURCES.txt +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/dependency_links.txt +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/requires.txt +0 -0
- {conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/top_level.txt +0 -0
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_def.py
RENAMED
|
@@ -35,6 +35,7 @@ class WorkflowDef(object):
|
|
|
35
35
|
'schema_version': 'int',
|
|
36
36
|
'restartable': 'bool',
|
|
37
37
|
'workflow_status_listener_enabled': 'bool',
|
|
38
|
+
'workflow_status_listener_sink': 'str',
|
|
38
39
|
'owner_email': 'str',
|
|
39
40
|
'timeout_policy': 'str',
|
|
40
41
|
'timeout_seconds': 'int',
|
|
@@ -58,6 +59,7 @@ class WorkflowDef(object):
|
|
|
58
59
|
'schema_version': 'schemaVersion',
|
|
59
60
|
'restartable': 'restartable',
|
|
60
61
|
'workflow_status_listener_enabled': 'workflowStatusListenerEnabled',
|
|
62
|
+
'workflow_status_listener_sink': 'workflowStatusListenerSink',
|
|
61
63
|
'owner_email': 'ownerEmail',
|
|
62
64
|
'timeout_policy': 'timeoutPolicy',
|
|
63
65
|
'timeout_seconds': 'timeoutSeconds',
|
|
@@ -68,6 +70,7 @@ class WorkflowDef(object):
|
|
|
68
70
|
def __init__(self, owner_app=None, create_time=None, update_time=None, created_by=None, updated_by=None, name=None,
|
|
69
71
|
description=None, version=None, tasks=None, input_parameters=None, output_parameters: dict = {},
|
|
70
72
|
failure_workflow=None, schema_version=None, restartable=None, workflow_status_listener_enabled=None,
|
|
73
|
+
workflow_status_listener_sink=None,
|
|
71
74
|
owner_email=None, timeout_policy=None, timeout_seconds=None, variables=None,
|
|
72
75
|
input_template=None): # noqa: E501
|
|
73
76
|
"""WorkflowDef - a model defined in Swagger""" # noqa: E501
|
|
@@ -86,6 +89,7 @@ class WorkflowDef(object):
|
|
|
86
89
|
self._schema_version = None
|
|
87
90
|
self._restartable = None
|
|
88
91
|
self._workflow_status_listener_enabled = None
|
|
92
|
+
self._workflow_status_listener_sink = None
|
|
89
93
|
self._owner_email = None
|
|
90
94
|
self._timeout_policy = None
|
|
91
95
|
self._timeout_seconds = None
|
|
@@ -119,7 +123,9 @@ class WorkflowDef(object):
|
|
|
119
123
|
if restartable is not None:
|
|
120
124
|
self.restartable = restartable
|
|
121
125
|
if workflow_status_listener_enabled is not None:
|
|
122
|
-
self.
|
|
126
|
+
self._workflow_status_listener_enabled = workflow_status_listener_enabled
|
|
127
|
+
if workflow_status_listener_sink is not None:
|
|
128
|
+
self._workflow_status_listener_sink = workflow_status_listener_sink
|
|
123
129
|
if owner_email is not None:
|
|
124
130
|
self.owner_email = owner_email
|
|
125
131
|
if timeout_policy is not None:
|
|
@@ -445,6 +451,14 @@ class WorkflowDef(object):
|
|
|
445
451
|
|
|
446
452
|
self._workflow_status_listener_enabled = workflow_status_listener_enabled
|
|
447
453
|
|
|
454
|
+
@property
|
|
455
|
+
def workflow_status_listener_sink(self):
|
|
456
|
+
return self._workflow_status_listener_sink
|
|
457
|
+
|
|
458
|
+
@workflow_status_listener_sink.setter
|
|
459
|
+
def workflow_status_listener_sink(self, workflow_status_listener_sink):
|
|
460
|
+
self._workflow_status_listener_sink = workflow_status_listener_sink
|
|
461
|
+
|
|
448
462
|
@property
|
|
449
463
|
def owner_email(self):
|
|
450
464
|
"""Gets the owner_email of this WorkflowDef. # noqa: E501
|
|
@@ -36,6 +36,8 @@ class ConductorWorkflow:
|
|
|
36
36
|
self._input_template = {}
|
|
37
37
|
self._variables = {}
|
|
38
38
|
self._restartable = True
|
|
39
|
+
self._workflow_status_listener_enabled = False
|
|
40
|
+
self._workflow_status_listener_sink = None
|
|
39
41
|
|
|
40
42
|
@property
|
|
41
43
|
def name(self) -> str:
|
|
@@ -101,6 +103,14 @@ class ConductorWorkflow:
|
|
|
101
103
|
self._restartable = deepcopy(restartable)
|
|
102
104
|
return self
|
|
103
105
|
|
|
106
|
+
def enable_status_listener(self, sink_name: bool) -> Self:
|
|
107
|
+
self._workflow_status_listener_sink = sink_name
|
|
108
|
+
self._workflow_status_listener_enabled = True
|
|
109
|
+
|
|
110
|
+
def disable_status_listener(self) -> Self:
|
|
111
|
+
self._workflow_status_listener_sink = None
|
|
112
|
+
self._workflow_status_listener_enabled = False
|
|
113
|
+
|
|
104
114
|
# Workflow output follows similar structure as task input
|
|
105
115
|
# See https://conductor.netflix.com/how-tos/Tasks/task-inputs.html for more details
|
|
106
116
|
def output_parameters(self, output_parameters: Dict[str, Any]) -> Self:
|
|
@@ -192,6 +202,25 @@ class ConductorWorkflow:
|
|
|
192
202
|
start_workflow_request.version = self.version
|
|
193
203
|
return self._executor.start_workflow(start_workflow_request)
|
|
194
204
|
|
|
205
|
+
def start_workflow_with_input(self, workflow_input: dict = {}, correlation_id=None, task_to_domain=None,
|
|
206
|
+
priority=None, idempotency_key: str = None, idempotency_strategy: IdempotencyStrategy = IdempotencyStrategy.FAIL) -> str:
|
|
207
|
+
"""
|
|
208
|
+
Starts the workflow with given inputs and parameters and returns the id of the started workflow
|
|
209
|
+
"""
|
|
210
|
+
|
|
211
|
+
start_workflow_request = StartWorkflowRequest()
|
|
212
|
+
start_workflow_request.workflow_def = self.to_workflow_def()
|
|
213
|
+
start_workflow_request.name = self.name
|
|
214
|
+
start_workflow_request.version = self.version
|
|
215
|
+
start_workflow_request.input = workflow_input
|
|
216
|
+
start_workflow_request.correlation_id = correlation_id
|
|
217
|
+
start_workflow_request.idempotency_key = idempotency_key
|
|
218
|
+
start_workflow_request.idempotency_strategy = idempotency_strategy
|
|
219
|
+
start_workflow_request.priority = priority
|
|
220
|
+
start_workflow_request.task_to_domain =task_to_domain
|
|
221
|
+
|
|
222
|
+
return self._executor.start_workflow(start_workflow_request)
|
|
223
|
+
|
|
195
224
|
def execute(self, workflow_input: Any = {}, wait_until_task_ref: str = '', wait_for_seconds: int = 10,
|
|
196
225
|
request_id: str = None,
|
|
197
226
|
idempotency_key: str = None, idempotency_strategy : IdempotencyStrategy = IdempotencyStrategy.FAIL, task_to_domain: dict[str, str] = None) -> WorkflowRun:
|
|
@@ -238,6 +267,8 @@ class ConductorWorkflow:
|
|
|
238
267
|
timeout_seconds=self._timeout_seconds,
|
|
239
268
|
variables=self._variables,
|
|
240
269
|
input_template=self._input_template,
|
|
270
|
+
workflow_status_listener_enabled=self._workflow_status_listener_enabled,
|
|
271
|
+
workflow_status_listener_sink=self._workflow_status_listener_sink
|
|
241
272
|
)
|
|
242
273
|
|
|
243
274
|
def to_workflow_task(self):
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/join_task.py
RENAMED
|
@@ -9,12 +9,15 @@ from conductor.client.workflow.task.task_type import TaskType
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class JoinTask(TaskInterface):
|
|
12
|
-
def __init__(self, task_ref_name: str, join_on: List[str] = None) -> Self:
|
|
12
|
+
def __init__(self, task_ref_name: str, join_on: List[str] = None, join_on_script: str = None) -> Self:
|
|
13
13
|
super().__init__(
|
|
14
14
|
task_reference_name=task_ref_name,
|
|
15
15
|
task_type=TaskType.JOIN
|
|
16
16
|
)
|
|
17
17
|
self._join_on = deepcopy(join_on)
|
|
18
|
+
if join_on_script is not None:
|
|
19
|
+
self.evaluator_type = 'js'
|
|
20
|
+
self.expression = join_on_script
|
|
18
21
|
|
|
19
22
|
def to_workflow_task(self) -> WorkflowTask:
|
|
20
23
|
workflow = super().to_workflow_task()
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/task.py
RENAMED
|
@@ -34,6 +34,8 @@ class TaskInterface(ABC):
|
|
|
34
34
|
self.input_parameters = input_parameters
|
|
35
35
|
self._cache_key = cache_key
|
|
36
36
|
self._cache_ttl_second = cache_ttl_second
|
|
37
|
+
self._expression = None
|
|
38
|
+
self._evaluator_type = None
|
|
37
39
|
|
|
38
40
|
@property
|
|
39
41
|
def task_reference_name(self) -> str:
|
|
@@ -65,6 +67,22 @@ class TaskInterface(ABC):
|
|
|
65
67
|
raise Exception('invalid type')
|
|
66
68
|
self._name = name
|
|
67
69
|
|
|
70
|
+
@property
|
|
71
|
+
def expression(self) -> str:
|
|
72
|
+
return self._expression
|
|
73
|
+
|
|
74
|
+
@expression.setter
|
|
75
|
+
def expression(self, expression: str) -> None:
|
|
76
|
+
self._expression = expression
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
def evaluator_type(self) -> str:
|
|
80
|
+
return self._evaluator_type
|
|
81
|
+
|
|
82
|
+
@evaluator_type.setter
|
|
83
|
+
def evaluator_type(self, evaluator_type: str) -> None:
|
|
84
|
+
self._evaluator_type = evaluator_type
|
|
85
|
+
|
|
68
86
|
def cache(self, cache_key: str, cache_ttl_second: int):
|
|
69
87
|
self._cache_key = cache_key
|
|
70
88
|
self._cache_ttl_second = cache_ttl_second
|
|
@@ -122,7 +140,9 @@ class TaskInterface(ABC):
|
|
|
122
140
|
description=self._description,
|
|
123
141
|
input_parameters=self._input_parameters,
|
|
124
142
|
optional=self._optional,
|
|
125
|
-
cache_config=cache_config
|
|
143
|
+
cache_config=cache_config,
|
|
144
|
+
expression=self._expression,
|
|
145
|
+
evaluator_type=self._evaluator_type
|
|
126
146
|
)
|
|
127
147
|
|
|
128
148
|
def output(self, json_path: str = None) -> str:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/authorization_client.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/task_handler.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/automator/task_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/configuration/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/event_client.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/event/queue/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/exceptions/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/exceptions/api_error.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/task_resource_api.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/api/user_resource_api.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/action.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/bulk_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/conductor_user.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/event_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/health.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/integration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/permission.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/poll_data.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/rate_limit.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/start_workflow.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/subject_ref.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/tag_object.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/tag_string.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/target_ref.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_def.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_details.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_exec_log.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_result.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/task_summary.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_run.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_tag.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/http/models/workflow_task.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/integration_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/api/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/api/tags_api.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/access_key.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/access_type.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/metadata_tag.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/models/ratelimit_tag.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_base_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_prompt_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_secret_client.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/orkes/orkes_task_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/telemetry/model/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/worker_interface.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/worker/worker_task.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/executor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/dynamic_task.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/event_task.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/fork_task.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/get_document.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/http_task.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/human_task.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/inline.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/json_jq_task.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/simple_task.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/switch_task.py
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/task_type.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor/client/workflow/task/wait_task.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/requires.txt
RENAMED
|
File without changes
|
{conductor_python-1.1.5 → conductor_python-1.1.7}/src/conductor_python.egg-info/top_level.txt
RENAMED
|
File without changes
|