-
Notifications
You must be signed in to change notification settings - Fork 144
Update SDK core and minor updates #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| syntax = "proto3"; | ||
|
|
||
| package temporal.api.common.v1; | ||
|
|
||
| import "google/protobuf/any.proto"; | ||
|
|
||
| // From https://github.com/grpc/grpc/blob/master/src/proto/grpc/status/status.proto | ||
| // since we don't import grpc but still need the status info | ||
| message GrpcStatus { | ||
| int32 code = 1; | ||
| string message = 2; | ||
| repeated google.protobuf.Any details = 3; | ||
| } |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
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 |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| """ | ||
| @generated by mypy-protobuf. Do not edit manually! | ||
| isort:skip_file | ||
| """ | ||
| import builtins | ||
| import collections.abc | ||
| import google.protobuf.any_pb2 | ||
| import google.protobuf.descriptor | ||
| import google.protobuf.internal.containers | ||
| import google.protobuf.message | ||
| import sys | ||
|
|
||
| if sys.version_info >= (3, 8): | ||
| import typing as typing_extensions | ||
| else: | ||
| import typing_extensions | ||
|
|
||
| DESCRIPTOR: google.protobuf.descriptor.FileDescriptor | ||
|
|
||
| class GrpcStatus(google.protobuf.message.Message): | ||
| """From https://github.com/grpc/grpc/blob/master/src/proto/grpc/status/status.proto | ||
| since we don't import grpc but still need the status info | ||
| """ | ||
|
|
||
| DESCRIPTOR: google.protobuf.descriptor.Descriptor | ||
|
|
||
| CODE_FIELD_NUMBER: builtins.int | ||
| MESSAGE_FIELD_NUMBER: builtins.int | ||
| DETAILS_FIELD_NUMBER: builtins.int | ||
| code: builtins.int | ||
| message: builtins.str | ||
| @property | ||
| def details( | ||
| self, | ||
| ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[ | ||
| google.protobuf.any_pb2.Any | ||
| ]: ... | ||
| def __init__( | ||
| self, | ||
| *, | ||
| code: builtins.int = ..., | ||
| message: builtins.str = ..., | ||
| details: collections.abc.Iterable[google.protobuf.any_pb2.Any] | None = ..., | ||
| ) -> None: ... | ||
| def ClearField( | ||
| self, | ||
| field_name: typing_extensions.Literal[ | ||
| "code", b"code", "details", b"details", "message", b"message" | ||
| ], | ||
| ) -> None: ... | ||
|
|
||
| global___GrpcStatus = GrpcStatus |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.