Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 4 additions & 23 deletions temporalio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,9 +936,6 @@ async def execute_update_with_start_workflow(
the call will not return successfully until the update has been delivered to a
worker.

.. warning::
This API is experimental

Args:
update: Update function or name on the workflow. arg: Single argument to the
update.
Expand Down Expand Up @@ -5354,11 +5351,7 @@ class StartWorkflowUpdateInput:

@dataclass
class UpdateWithStartUpdateWorkflowInput:
"""Update input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.

.. warning::
This API is experimental
"""
"""Update input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`."""

update_id: Optional[str]
update: str
Expand All @@ -5372,11 +5365,7 @@ class UpdateWithStartUpdateWorkflowInput:

@dataclass
class UpdateWithStartStartWorkflowInput:
"""StartWorkflow input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.

.. warning::
This API is experimental
"""
"""StartWorkflow input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`."""

# Similar to StartWorkflowInput but without e.g. run_id, start_signal,
# start_signal_args, request_eager_start.
Expand Down Expand Up @@ -5412,11 +5401,7 @@ class UpdateWithStartStartWorkflowInput:

@dataclass
class StartWorkflowUpdateWithStartInput:
"""Input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.

.. warning::
This API is experimental
"""
"""Input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`."""

start_workflow_input: UpdateWithStartStartWorkflowInput
update_workflow_input: UpdateWithStartUpdateWorkflowInput
Expand Down Expand Up @@ -5690,11 +5675,7 @@ async def start_workflow_update(
async def start_update_with_start_workflow(
self, input: StartWorkflowUpdateWithStartInput
) -> WorkflowUpdateHandle[Any]:
"""Called for every :py:meth:`Client.start_update_with_start_workflow` and :py:meth:`Client.execute_update_with_start_workflow` call.

.. warning::
This API is experimental
"""
"""Called for every :py:meth:`Client.start_update_with_start_workflow` and :py:meth:`Client.execute_update_with_start_workflow` call."""
return await self.next.start_update_with_start_workflow(input)

### Async activity calls
Expand Down
Loading