Skip to content

Commit f4f6483

Browse files
committed
Update core again
1 parent 5651483 commit f4f6483

File tree

6 files changed

+122
-67
lines changed

6 files changed

+122
-67
lines changed

Diff for: temporalio/bridge/proto/common/__init__.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
from .common_pb2 import NamespacedWorkflowExecution, VersioningIntent
1+
from .common_pb2 import (
2+
NamespacedWorkflowExecution,
3+
VersioningIntent,
4+
WorkerDeploymentVersion,
5+
)
26

37
__all__ = [
48
"NamespacedWorkflowExecution",
59
"VersioningIntent",
10+
"WorkerDeploymentVersion",
611
]

Diff for: temporalio/bridge/proto/common/common_pb2.py

+17-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: temporalio/bridge/proto/common/common_pb2.pyi

+22
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,25 @@ class NamespacedWorkflowExecution(google.protobuf.message.Message):
9999
) -> None: ...
100100

101101
global___NamespacedWorkflowExecution = NamespacedWorkflowExecution
102+
103+
class WorkerDeploymentVersion(google.protobuf.message.Message):
104+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
105+
106+
DEPLOYMENT_NAME_FIELD_NUMBER: builtins.int
107+
BUILD_ID_FIELD_NUMBER: builtins.int
108+
deployment_name: builtins.str
109+
build_id: builtins.str
110+
def __init__(
111+
self,
112+
*,
113+
deployment_name: builtins.str = ...,
114+
build_id: builtins.str = ...,
115+
) -> None: ...
116+
def ClearField(
117+
self,
118+
field_name: typing_extensions.Literal[
119+
"build_id", b"build_id", "deployment_name", b"deployment_name"
120+
],
121+
) -> None: ...
122+
123+
global___WorkerDeploymentVersion = WorkerDeploymentVersion

0 commit comments

Comments
 (0)