├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── check-sdk-compat.yml │ ├── ci.yml │ ├── create-release.yml │ ├── delete-release.yml │ ├── publish-release.yml │ └── update-proto.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── activity └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── batch └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── cmd ├── README.md ├── encode-openapi-spec │ └── main.go ├── mockgen-fix │ └── main.go ├── protoc-gen-go-helpers │ └── main.go ├── protogen │ ├── const_rewriter.go │ ├── const_rewriter_test.go │ ├── main.go │ ├── string_rewriter.go │ ├── string_rewriter_test.go │ ├── version.go │ └── version_test.go └── proxygenerator │ ├── go.mod │ ├── go.sum │ ├── interceptor.go │ ├── main.go │ └── service.go ├── command └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── common └── v1 │ ├── message.go-helpers.pb.go │ ├── message.pb.go │ └── payload_json.go ├── deployment └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── enums └── v1 │ ├── batch_operation.go-helpers.pb.go │ ├── batch_operation.pb.go │ ├── command_type.go-helpers.pb.go │ ├── command_type.pb.go │ ├── common.go-helpers.pb.go │ ├── common.pb.go │ ├── deployment.go-helpers.pb.go │ ├── deployment.pb.go │ ├── event_type.go-helpers.pb.go │ ├── event_type.pb.go │ ├── failed_cause.go-helpers.pb.go │ ├── failed_cause.pb.go │ ├── namespace.go-helpers.pb.go │ ├── namespace.pb.go │ ├── nexus.go-helpers.pb.go │ ├── nexus.pb.go │ ├── query.go-helpers.pb.go │ ├── query.pb.go │ ├── reset.go-helpers.pb.go │ ├── reset.pb.go │ ├── schedule.go-helpers.pb.go │ ├── schedule.pb.go │ ├── task_queue.go-helpers.pb.go │ ├── task_queue.pb.go │ ├── update.go-helpers.pb.go │ ├── update.pb.go │ ├── workflow.go-helpers.pb.go │ └── workflow.pb.go ├── errordetails └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── export └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── failure └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── filter └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── go.mod ├── go.sum ├── history └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── internal ├── protojson │ ├── LICENSE │ ├── README.md │ ├── errors │ │ └── errors.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── json │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_number.go │ │ ├── decode_string.go │ │ ├── decode_test.go │ │ ├── decode_token.go │ │ ├── encode.go │ │ └── encode_test.go │ ├── json_marshal.go │ ├── json_marshal_test.go │ ├── json_unmarshal.go │ ├── json_unmarshal_test.go │ ├── maybe_marshal.go │ ├── order │ │ ├── order.go │ │ ├── order_test.go │ │ └── range.go │ ├── set │ │ ├── ints.go │ │ └── ints_test.go │ ├── strs │ │ ├── strings.go │ │ ├── strings_pure.go │ │ ├── strings_test.go │ │ └── strings_unsafe.go │ ├── testprotos │ │ ├── enums │ │ │ ├── enums.pb.go │ │ │ └── enums.proto │ │ ├── required │ │ │ └── required.proto │ │ ├── test │ │ │ ├── test.pb.go │ │ │ ├── test.proto │ │ │ ├── test_import.pb.go │ │ │ ├── test_import.proto │ │ │ ├── test_public.pb.go │ │ │ ├── test_public.proto │ │ │ ├── weak1 │ │ │ │ ├── test_weak.pb.go │ │ │ │ └── test_weak.proto │ │ │ └── weak2 │ │ │ │ ├── test_weak.pb.go │ │ │ │ └── test_weak.proto │ │ ├── textpb2 │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ └── textpb3 │ │ │ ├── test.pb.go │ │ │ └── test.proto │ └── well_known_types.go ├── strcase │ └── strcase.go └── temporalcommonv1 │ ├── README.md │ ├── message.go │ ├── payload_json.go │ └── payload_json_test.go ├── namespace └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── nexus └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── operatorservice └── v1 │ ├── request_response.go-helpers.pb.go │ ├── request_response.pb.go │ ├── service.pb.go │ ├── service.pb.gw.go │ └── service_grpc.pb.go ├── operatorservicemock └── v1 │ └── service_grpc.pb.mock.go ├── protocol └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── proxy ├── interceptor.go ├── interceptor_test.go ├── service.go ├── service_util.go └── service_util_test.go ├── query └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── replication └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── rules └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── schedule └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── sdk └── v1 │ ├── enhanced_stack_trace.go-helpers.pb.go │ ├── enhanced_stack_trace.pb.go │ ├── task_complete_metadata.go-helpers.pb.go │ ├── task_complete_metadata.pb.go │ ├── user_metadata.go-helpers.pb.go │ ├── user_metadata.pb.go │ ├── worker_config.go-helpers.pb.go │ ├── worker_config.pb.go │ ├── workflow_metadata.go-helpers.pb.go │ └── workflow_metadata.pb.go ├── serviceerror ├── aborted.go ├── already_exists.go ├── canceled.go ├── cancellation_already_requested.go ├── client_version_not_supported.go ├── convert.go ├── convert_test.go ├── data_loss.go ├── deadline_exceeded.go ├── failed_precondition.go ├── internal.go ├── invalid_argument.go ├── multi_op.go ├── multi_op_aborted.go ├── namespace_already_exists.go ├── namespace_invalid_state.go ├── namespace_not_active.go ├── namespace_not_found.go ├── namespace_unavailable.go ├── newer_build_exists.go ├── not_found.go ├── permission_denied.go ├── query_failed.go ├── resource_exhausted.go ├── server_version_not_supported.go ├── serviceerror.go ├── system_workflow.go ├── unavailable.go ├── unimplemented.go ├── workflow_execution_already_started.go └── workflow_not_ready.go ├── taskqueue └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── temporalproto ├── deep_equal.go ├── deep_equal_test.go ├── json_compatibility_test.go ├── json_marshal.go ├── json_unmarshal.go └── openapi │ ├── openapiv2.go │ ├── openapiv3.go │ └── payload_description.txt ├── update └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── version └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── worker └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── workflow └── v1 │ ├── message.go-helpers.pb.go │ └── message.pb.go ├── workflowservice └── v1 │ ├── request_response.go-helpers.pb.go │ ├── request_response.pb.go │ ├── service.pb.go │ ├── service.pb.gw.go │ └── service_grpc.pb.go └── workflowservicemock └── v1 └── service_grpc.pb.mock.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/check-sdk-compat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/workflows/check-sdk-compat.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/delete-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/workflows/delete-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/update-proto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.github/workflows/update-proto.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/README.md -------------------------------------------------------------------------------- /activity/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/activity/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /activity/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/activity/v1/message.pb.go -------------------------------------------------------------------------------- /batch/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/batch/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /batch/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/batch/v1/message.pb.go -------------------------------------------------------------------------------- /cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/README.md -------------------------------------------------------------------------------- /cmd/encode-openapi-spec/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/encode-openapi-spec/main.go -------------------------------------------------------------------------------- /cmd/mockgen-fix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/mockgen-fix/main.go -------------------------------------------------------------------------------- /cmd/protoc-gen-go-helpers/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protoc-gen-go-helpers/main.go -------------------------------------------------------------------------------- /cmd/protogen/const_rewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/const_rewriter.go -------------------------------------------------------------------------------- /cmd/protogen/const_rewriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/const_rewriter_test.go -------------------------------------------------------------------------------- /cmd/protogen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/main.go -------------------------------------------------------------------------------- /cmd/protogen/string_rewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/string_rewriter.go -------------------------------------------------------------------------------- /cmd/protogen/string_rewriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/string_rewriter_test.go -------------------------------------------------------------------------------- /cmd/protogen/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/version.go -------------------------------------------------------------------------------- /cmd/protogen/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/protogen/version_test.go -------------------------------------------------------------------------------- /cmd/proxygenerator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/proxygenerator/go.mod -------------------------------------------------------------------------------- /cmd/proxygenerator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/proxygenerator/go.sum -------------------------------------------------------------------------------- /cmd/proxygenerator/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/proxygenerator/interceptor.go -------------------------------------------------------------------------------- /cmd/proxygenerator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/proxygenerator/main.go -------------------------------------------------------------------------------- /cmd/proxygenerator/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/cmd/proxygenerator/service.go -------------------------------------------------------------------------------- /command/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/command/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /command/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/command/v1/message.pb.go -------------------------------------------------------------------------------- /common/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/common/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /common/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/common/v1/message.pb.go -------------------------------------------------------------------------------- /common/v1/payload_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/common/v1/payload_json.go -------------------------------------------------------------------------------- /deployment/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/deployment/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /deployment/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/deployment/v1/message.pb.go -------------------------------------------------------------------------------- /enums/v1/batch_operation.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/batch_operation.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/batch_operation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/batch_operation.pb.go -------------------------------------------------------------------------------- /enums/v1/command_type.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/command_type.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/command_type.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/command_type.pb.go -------------------------------------------------------------------------------- /enums/v1/common.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/common.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/common.pb.go -------------------------------------------------------------------------------- /enums/v1/deployment.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/deployment.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/deployment.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/deployment.pb.go -------------------------------------------------------------------------------- /enums/v1/event_type.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/event_type.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/event_type.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/event_type.pb.go -------------------------------------------------------------------------------- /enums/v1/failed_cause.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/failed_cause.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/failed_cause.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/failed_cause.pb.go -------------------------------------------------------------------------------- /enums/v1/namespace.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/namespace.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/namespace.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/namespace.pb.go -------------------------------------------------------------------------------- /enums/v1/nexus.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/nexus.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/nexus.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/nexus.pb.go -------------------------------------------------------------------------------- /enums/v1/query.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/query.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/query.pb.go -------------------------------------------------------------------------------- /enums/v1/reset.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/reset.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/reset.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/reset.pb.go -------------------------------------------------------------------------------- /enums/v1/schedule.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/schedule.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/schedule.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/schedule.pb.go -------------------------------------------------------------------------------- /enums/v1/task_queue.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/task_queue.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/task_queue.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/task_queue.pb.go -------------------------------------------------------------------------------- /enums/v1/update.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/update.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/update.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/update.pb.go -------------------------------------------------------------------------------- /enums/v1/workflow.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/workflow.go-helpers.pb.go -------------------------------------------------------------------------------- /enums/v1/workflow.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/enums/v1/workflow.pb.go -------------------------------------------------------------------------------- /errordetails/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/errordetails/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /errordetails/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/errordetails/v1/message.pb.go -------------------------------------------------------------------------------- /export/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/export/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /export/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/export/v1/message.pb.go -------------------------------------------------------------------------------- /failure/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/failure/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /failure/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/failure/v1/message.pb.go -------------------------------------------------------------------------------- /filter/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/filter/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /filter/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/filter/v1/message.pb.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/go.sum -------------------------------------------------------------------------------- /history/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/history/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /history/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/history/v1/message.pb.go -------------------------------------------------------------------------------- /internal/protojson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/LICENSE -------------------------------------------------------------------------------- /internal/protojson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/README.md -------------------------------------------------------------------------------- /internal/protojson/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/errors/errors.go -------------------------------------------------------------------------------- /internal/protojson/genid/any_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/any_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/api_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/api_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/descriptor_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/descriptor_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/doc.go -------------------------------------------------------------------------------- /internal/protojson/genid/duration_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/duration_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/empty_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/empty_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/field_mask_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/field_mask_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/goname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/goname.go -------------------------------------------------------------------------------- /internal/protojson/genid/map_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/map_entry.go -------------------------------------------------------------------------------- /internal/protojson/genid/source_context_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/source_context_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/struct_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/struct_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/timestamp_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/timestamp_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/type_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/type_gen.go -------------------------------------------------------------------------------- /internal/protojson/genid/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/wrappers.go -------------------------------------------------------------------------------- /internal/protojson/genid/wrappers_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/genid/wrappers_gen.go -------------------------------------------------------------------------------- /internal/protojson/json/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/bench_test.go -------------------------------------------------------------------------------- /internal/protojson/json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/decode.go -------------------------------------------------------------------------------- /internal/protojson/json/decode_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/decode_number.go -------------------------------------------------------------------------------- /internal/protojson/json/decode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/decode_string.go -------------------------------------------------------------------------------- /internal/protojson/json/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/decode_test.go -------------------------------------------------------------------------------- /internal/protojson/json/decode_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/decode_token.go -------------------------------------------------------------------------------- /internal/protojson/json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/encode.go -------------------------------------------------------------------------------- /internal/protojson/json/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json/encode_test.go -------------------------------------------------------------------------------- /internal/protojson/json_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json_marshal.go -------------------------------------------------------------------------------- /internal/protojson/json_marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json_marshal_test.go -------------------------------------------------------------------------------- /internal/protojson/json_unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json_unmarshal.go -------------------------------------------------------------------------------- /internal/protojson/json_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/json_unmarshal_test.go -------------------------------------------------------------------------------- /internal/protojson/maybe_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/maybe_marshal.go -------------------------------------------------------------------------------- /internal/protojson/order/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/order/order.go -------------------------------------------------------------------------------- /internal/protojson/order/order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/order/order_test.go -------------------------------------------------------------------------------- /internal/protojson/order/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/order/range.go -------------------------------------------------------------------------------- /internal/protojson/set/ints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/set/ints.go -------------------------------------------------------------------------------- /internal/protojson/set/ints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/set/ints_test.go -------------------------------------------------------------------------------- /internal/protojson/strs/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/strs/strings.go -------------------------------------------------------------------------------- /internal/protojson/strs/strings_pure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/strs/strings_pure.go -------------------------------------------------------------------------------- /internal/protojson/strs/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/strs/strings_test.go -------------------------------------------------------------------------------- /internal/protojson/strs/strings_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/strs/strings_unsafe.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/enums/enums.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/enums/enums.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/enums/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/enums/enums.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/required/required.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/required/required.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/test.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/test.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/test_import.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/test_import.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/test_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/test_import.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/test_public.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/test_public.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/test_public.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/test_public.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/weak1/test_weak.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/weak1/test_weak.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/weak1/test_weak.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/weak1/test_weak.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/weak2/test_weak.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/weak2/test_weak.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/test/weak2/test_weak.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/test/weak2/test_weak.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/textpb2/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/textpb2/test.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/textpb2/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/textpb2/test.proto -------------------------------------------------------------------------------- /internal/protojson/testprotos/textpb3/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/textpb3/test.pb.go -------------------------------------------------------------------------------- /internal/protojson/testprotos/textpb3/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/testprotos/textpb3/test.proto -------------------------------------------------------------------------------- /internal/protojson/well_known_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/protojson/well_known_types.go -------------------------------------------------------------------------------- /internal/strcase/strcase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/strcase/strcase.go -------------------------------------------------------------------------------- /internal/temporalcommonv1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/temporalcommonv1/README.md -------------------------------------------------------------------------------- /internal/temporalcommonv1/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/temporalcommonv1/message.go -------------------------------------------------------------------------------- /internal/temporalcommonv1/payload_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/temporalcommonv1/payload_json.go -------------------------------------------------------------------------------- /internal/temporalcommonv1/payload_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/internal/temporalcommonv1/payload_json_test.go -------------------------------------------------------------------------------- /namespace/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/namespace/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /namespace/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/namespace/v1/message.pb.go -------------------------------------------------------------------------------- /nexus/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/nexus/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /nexus/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/nexus/v1/message.pb.go -------------------------------------------------------------------------------- /operatorservice/v1/request_response.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/operatorservice/v1/request_response.go-helpers.pb.go -------------------------------------------------------------------------------- /operatorservice/v1/request_response.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/operatorservice/v1/request_response.pb.go -------------------------------------------------------------------------------- /operatorservice/v1/service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/operatorservice/v1/service.pb.go -------------------------------------------------------------------------------- /operatorservice/v1/service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/operatorservice/v1/service.pb.gw.go -------------------------------------------------------------------------------- /operatorservice/v1/service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/operatorservice/v1/service_grpc.pb.go -------------------------------------------------------------------------------- /operatorservicemock/v1/service_grpc.pb.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/operatorservicemock/v1/service_grpc.pb.mock.go -------------------------------------------------------------------------------- /protocol/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/protocol/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /protocol/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/protocol/v1/message.pb.go -------------------------------------------------------------------------------- /proxy/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/proxy/interceptor.go -------------------------------------------------------------------------------- /proxy/interceptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/proxy/interceptor_test.go -------------------------------------------------------------------------------- /proxy/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/proxy/service.go -------------------------------------------------------------------------------- /proxy/service_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/proxy/service_util.go -------------------------------------------------------------------------------- /proxy/service_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/proxy/service_util_test.go -------------------------------------------------------------------------------- /query/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/query/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /query/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/query/v1/message.pb.go -------------------------------------------------------------------------------- /replication/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/replication/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /replication/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/replication/v1/message.pb.go -------------------------------------------------------------------------------- /rules/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/rules/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /rules/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/rules/v1/message.pb.go -------------------------------------------------------------------------------- /schedule/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/schedule/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /schedule/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/schedule/v1/message.pb.go -------------------------------------------------------------------------------- /sdk/v1/enhanced_stack_trace.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/enhanced_stack_trace.go-helpers.pb.go -------------------------------------------------------------------------------- /sdk/v1/enhanced_stack_trace.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/enhanced_stack_trace.pb.go -------------------------------------------------------------------------------- /sdk/v1/task_complete_metadata.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/task_complete_metadata.go-helpers.pb.go -------------------------------------------------------------------------------- /sdk/v1/task_complete_metadata.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/task_complete_metadata.pb.go -------------------------------------------------------------------------------- /sdk/v1/user_metadata.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/user_metadata.go-helpers.pb.go -------------------------------------------------------------------------------- /sdk/v1/user_metadata.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/user_metadata.pb.go -------------------------------------------------------------------------------- /sdk/v1/worker_config.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/worker_config.go-helpers.pb.go -------------------------------------------------------------------------------- /sdk/v1/worker_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/worker_config.pb.go -------------------------------------------------------------------------------- /sdk/v1/workflow_metadata.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/workflow_metadata.go-helpers.pb.go -------------------------------------------------------------------------------- /sdk/v1/workflow_metadata.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/sdk/v1/workflow_metadata.pb.go -------------------------------------------------------------------------------- /serviceerror/aborted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/aborted.go -------------------------------------------------------------------------------- /serviceerror/already_exists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/already_exists.go -------------------------------------------------------------------------------- /serviceerror/canceled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/canceled.go -------------------------------------------------------------------------------- /serviceerror/cancellation_already_requested.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/cancellation_already_requested.go -------------------------------------------------------------------------------- /serviceerror/client_version_not_supported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/client_version_not_supported.go -------------------------------------------------------------------------------- /serviceerror/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/convert.go -------------------------------------------------------------------------------- /serviceerror/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/convert_test.go -------------------------------------------------------------------------------- /serviceerror/data_loss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/data_loss.go -------------------------------------------------------------------------------- /serviceerror/deadline_exceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/deadline_exceeded.go -------------------------------------------------------------------------------- /serviceerror/failed_precondition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/failed_precondition.go -------------------------------------------------------------------------------- /serviceerror/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/internal.go -------------------------------------------------------------------------------- /serviceerror/invalid_argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/invalid_argument.go -------------------------------------------------------------------------------- /serviceerror/multi_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/multi_op.go -------------------------------------------------------------------------------- /serviceerror/multi_op_aborted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/multi_op_aborted.go -------------------------------------------------------------------------------- /serviceerror/namespace_already_exists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/namespace_already_exists.go -------------------------------------------------------------------------------- /serviceerror/namespace_invalid_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/namespace_invalid_state.go -------------------------------------------------------------------------------- /serviceerror/namespace_not_active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/namespace_not_active.go -------------------------------------------------------------------------------- /serviceerror/namespace_not_found.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/namespace_not_found.go -------------------------------------------------------------------------------- /serviceerror/namespace_unavailable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/namespace_unavailable.go -------------------------------------------------------------------------------- /serviceerror/newer_build_exists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/newer_build_exists.go -------------------------------------------------------------------------------- /serviceerror/not_found.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/not_found.go -------------------------------------------------------------------------------- /serviceerror/permission_denied.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/permission_denied.go -------------------------------------------------------------------------------- /serviceerror/query_failed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/query_failed.go -------------------------------------------------------------------------------- /serviceerror/resource_exhausted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/resource_exhausted.go -------------------------------------------------------------------------------- /serviceerror/server_version_not_supported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/server_version_not_supported.go -------------------------------------------------------------------------------- /serviceerror/serviceerror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/serviceerror.go -------------------------------------------------------------------------------- /serviceerror/system_workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/system_workflow.go -------------------------------------------------------------------------------- /serviceerror/unavailable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/unavailable.go -------------------------------------------------------------------------------- /serviceerror/unimplemented.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/unimplemented.go -------------------------------------------------------------------------------- /serviceerror/workflow_execution_already_started.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/workflow_execution_already_started.go -------------------------------------------------------------------------------- /serviceerror/workflow_not_ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/serviceerror/workflow_not_ready.go -------------------------------------------------------------------------------- /taskqueue/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/taskqueue/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /taskqueue/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/taskqueue/v1/message.pb.go -------------------------------------------------------------------------------- /temporalproto/deep_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/deep_equal.go -------------------------------------------------------------------------------- /temporalproto/deep_equal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/deep_equal_test.go -------------------------------------------------------------------------------- /temporalproto/json_compatibility_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/json_compatibility_test.go -------------------------------------------------------------------------------- /temporalproto/json_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/json_marshal.go -------------------------------------------------------------------------------- /temporalproto/json_unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/json_unmarshal.go -------------------------------------------------------------------------------- /temporalproto/openapi/openapiv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/openapi/openapiv2.go -------------------------------------------------------------------------------- /temporalproto/openapi/openapiv3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/openapi/openapiv3.go -------------------------------------------------------------------------------- /temporalproto/openapi/payload_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/temporalproto/openapi/payload_description.txt -------------------------------------------------------------------------------- /update/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/update/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /update/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/update/v1/message.pb.go -------------------------------------------------------------------------------- /version/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/version/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /version/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/version/v1/message.pb.go -------------------------------------------------------------------------------- /worker/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/worker/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /worker/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/worker/v1/message.pb.go -------------------------------------------------------------------------------- /workflow/v1/message.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflow/v1/message.go-helpers.pb.go -------------------------------------------------------------------------------- /workflow/v1/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflow/v1/message.pb.go -------------------------------------------------------------------------------- /workflowservice/v1/request_response.go-helpers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflowservice/v1/request_response.go-helpers.pb.go -------------------------------------------------------------------------------- /workflowservice/v1/request_response.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflowservice/v1/request_response.pb.go -------------------------------------------------------------------------------- /workflowservice/v1/service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflowservice/v1/service.pb.go -------------------------------------------------------------------------------- /workflowservice/v1/service.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflowservice/v1/service.pb.gw.go -------------------------------------------------------------------------------- /workflowservice/v1/service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflowservice/v1/service_grpc.pb.go -------------------------------------------------------------------------------- /workflowservicemock/v1/service_grpc.pb.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/api-go/HEAD/workflowservicemock/v1/service_grpc.pb.mock.go --------------------------------------------------------------------------------