Skip to content

Commit 2daeda8

Browse files
committed
Bump protos
1 parent 7712bb8 commit 2daeda8

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

src/dispatch/sdk/v1/call_pb2.py

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/dispatch/sdk/v1/call_pb2.pyi

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,19 @@ class Call(_message.Message):
3535
) -> None: ...
3636

3737
class CallResult(_message.Message):
38-
__slots__ = ("correlation_id", "output", "error")
38+
__slots__ = ("correlation_id", "output", "error", "dispatch_id")
3939
CORRELATION_ID_FIELD_NUMBER: _ClassVar[int]
4040
OUTPUT_FIELD_NUMBER: _ClassVar[int]
4141
ERROR_FIELD_NUMBER: _ClassVar[int]
42+
DISPATCH_ID_FIELD_NUMBER: _ClassVar[int]
4243
correlation_id: int
4344
output: _any_pb2.Any
4445
error: _error_pb2.Error
46+
dispatch_id: str
4547
def __init__(
4648
self,
4749
correlation_id: _Optional[int] = ...,
4850
output: _Optional[_Union[_any_pb2.Any, _Mapping]] = ...,
4951
error: _Optional[_Union[_error_pb2.Error, _Mapping]] = ...,
52+
dispatch_id: _Optional[str] = ...,
5053
) -> None: ...

src/dispatch/sdk/v1/function_pb2.py

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/dispatch/sdk/v1/function_pb2.pyi

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,34 @@ from dispatch.sdk.v1 import status_pb2 as _status_pb2
1414
DESCRIPTOR: _descriptor.FileDescriptor
1515

1616
class RunRequest(_message.Message):
17-
__slots__ = ("function", "input", "poll_result", "dispatch_id")
17+
__slots__ = (
18+
"function",
19+
"input",
20+
"poll_result",
21+
"dispatch_id",
22+
"parent_dispatch_id",
23+
"root_dispatch_id",
24+
)
1825
FUNCTION_FIELD_NUMBER: _ClassVar[int]
1926
INPUT_FIELD_NUMBER: _ClassVar[int]
2027
POLL_RESULT_FIELD_NUMBER: _ClassVar[int]
2128
DISPATCH_ID_FIELD_NUMBER: _ClassVar[int]
29+
PARENT_DISPATCH_ID_FIELD_NUMBER: _ClassVar[int]
30+
ROOT_DISPATCH_ID_FIELD_NUMBER: _ClassVar[int]
2231
function: str
2332
input: _any_pb2.Any
2433
poll_result: _poll_pb2.PollResult
2534
dispatch_id: str
35+
parent_dispatch_id: str
36+
root_dispatch_id: str
2637
def __init__(
2738
self,
2839
function: _Optional[str] = ...,
2940
input: _Optional[_Union[_any_pb2.Any, _Mapping]] = ...,
3041
poll_result: _Optional[_Union[_poll_pb2.PollResult, _Mapping]] = ...,
3142
dispatch_id: _Optional[str] = ...,
43+
parent_dispatch_id: _Optional[str] = ...,
44+
root_dispatch_id: _Optional[str] = ...,
3245
) -> None: ...
3346

3447
class RunResponse(_message.Message):

0 commit comments

Comments
 (0)