Skip to content
Merged
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
2 changes: 2 additions & 0 deletions common/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";

Expand Down
2 changes: 2 additions & 0 deletions common/decision.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";
import "common/common.proto";
Expand Down
2 changes: 2 additions & 0 deletions common/domain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";
import "common/wrappers.proto";
Expand Down
2 changes: 2 additions & 0 deletions common/history.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";
import "common/common.proto";
Expand Down
2 changes: 2 additions & 0 deletions common/replication.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";
import "common/common.proto";
Expand Down
2 changes: 2 additions & 0 deletions common/workflow_execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";
import "common/common.proto";
Expand Down
2 changes: 2 additions & 0 deletions common/wrappers.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package common;

option go_package = "go.temporal.io/temporal-proto/common";
option java_package = "io.temporal";
option java_multiple_files = true;

// YARPC plugin generates wrong code for standard wrappers "google/protobuf/wrappers.proto".
// TODO: remove this file and replace it usage with "google/protobuf/wrappers.proto" after migrate out of YARPC.
Expand Down
2 changes: 2 additions & 0 deletions enums/enums.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package enums;

option go_package = "go.temporal.io/temporal-proto/enums";
option java_package = "io.temporal";
option java_multiple_files = true;

enum WorkflowIdReusePolicy {
// Allow start a workflow execution using the same workflow ID, when workflow not running, and the last execution close state is in
Expand Down
2 changes: 2 additions & 0 deletions errordetails/error_details.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package errordetails;

option go_package = "go.temporal.io/temporal-proto/errordetails";
option java_package = "io.temporal";
option java_multiple_files = true;

// These messages extend https://github.com/googleapis/googleapis/blob/master/google/rpc/error_details.proto

Expand Down
2 changes: 2 additions & 0 deletions workflowservice/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package workflowservice;

option go_package = "go.temporal.io/temporal-proto/workflowservice";
option java_package = "io.temporal";
option java_multiple_files = true;

import "enums/enums.proto";
import "common/common.proto";
Expand Down
2 changes: 2 additions & 0 deletions workflowservice/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
syntax = "proto3";

package workflowservice;

option go_package = "go.temporal.io/temporal-proto/workflowservice";
option java_package = "io.temporal";
option java_multiple_files = true;

import "workflowservice/request_response.proto";

Expand Down