Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7d7391e4044252f4abcf55b17634a65de744f4ee
9d3681cb82a03aad057f361102d3a7e0ae638462
6 changes: 3 additions & 3 deletions dapr/ext/workflow/_durabletask/internal/attestation_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import warnings


GRPC_GENERATED_VERSION = '1.76.0'
GRPC_GENERATED_VERSION = '1.81.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import warnings


GRPC_GENERATED_VERSION = '1.76.0'
GRPC_GENERATED_VERSION = '1.81.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import warnings


GRPC_GENERATED_VERSION = '1.76.0'
GRPC_GENERATED_VERSION = '1.81.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 3 additions & 13 deletions dapr/ext/workflow/_durabletask/internal/orchestration_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import builtins as _builtins
import sys
import typing as _typing

if sys.version_info >= (3, 11):
from typing import TypeAlias as _TypeAlias, Never as _Never
if sys.version_info >= (3, 10):
from typing import TypeAlias as _TypeAlias
else:
from typing_extensions import TypeAlias as _TypeAlias, Never as _Never
from typing_extensions import TypeAlias as _TypeAlias

if sys.version_info >= (3, 13):
from warnings import deprecated as _deprecated
Expand Down Expand Up @@ -191,7 +191,6 @@ class WorkflowInstance(_message.Message):
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["executionId", b"executionId", "instanceId", b"instanceId"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
def WhichOneof(self, oneof_group: _Never) -> None: ...

Global___WorkflowInstance: _TypeAlias = WorkflowInstance # noqa: Y015

Expand Down Expand Up @@ -224,7 +223,6 @@ class TaskFailureDetails(_message.Message):
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["errorMessage", b"errorMessage", "errorType", b"errorType", "innerFailure", b"innerFailure", "isNonRetriable", b"isNonRetriable", "stackTrace", b"stackTrace"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
def WhichOneof(self, oneof_group: _Never) -> None: ...

Global___TaskFailureDetails: _TypeAlias = TaskFailureDetails # noqa: Y015

Expand Down Expand Up @@ -291,11 +289,8 @@ class RerunParentInstanceInfo(_message.Message):
*,
instanceID: _builtins.str = ...,
) -> None: ...
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["instanceID", b"instanceID"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
def WhichOneof(self, oneof_group: _Never) -> None: ...

Global___RerunParentInstanceInfo: _TypeAlias = RerunParentInstanceInfo # noqa: Y015

Expand Down Expand Up @@ -326,7 +321,6 @@ class TraceContext(_message.Message):
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["spanID", b"spanID", "traceParent", b"traceParent", "traceState", b"traceState"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
def WhichOneof(self, oneof_group: _Never) -> None: ...

Global___TraceContext: _TypeAlias = TraceContext # noqa: Y015

Expand All @@ -348,11 +342,8 @@ class WorkflowState(_message.Message):
key: _builtins.str = ...,
value: _builtins.str = ...,
) -> None: ...
_HasFieldArgType: _TypeAlias = _Never # noqa: Y015
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["key", b"key", "value", b"value"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
def WhichOneof(self, oneof_group: _Never) -> None: ...

INSTANCEID_FIELD_NUMBER: _builtins.int
NAME_FIELD_NUMBER: _builtins.int
Expand Down Expand Up @@ -419,6 +410,5 @@ class WorkflowState(_message.Message):
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
_ClearFieldArgType: _TypeAlias = _typing.Literal["completedTimestamp", b"completedTimestamp", "createdTimestamp", b"createdTimestamp", "customStatus", b"customStatus", "executionId", b"executionId", "failureDetails", b"failureDetails", "input", b"input", "instanceId", b"instanceId", "lastUpdatedTimestamp", b"lastUpdatedTimestamp", "name", b"name", "output", b"output", "parentInstanceId", b"parentInstanceId", "scheduledStartTimestamp", b"scheduledStartTimestamp", "tags", b"tags", "version", b"version", "workflowStatus", b"workflowStatus"] # noqa: Y015
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
def WhichOneof(self, oneof_group: _Never) -> None: ...

Global___WorkflowState: _TypeAlias = WorkflowState # noqa: Y015
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import warnings


GRPC_GENERATED_VERSION = '1.76.0'
GRPC_GENERATED_VERSION = '1.81.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import warnings


GRPC_GENERATED_VERSION = '1.76.0'
GRPC_GENERATED_VERSION = '1.81.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading