Skip to content
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

Add support workflow export protos #12

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
9 changes: 7 additions & 2 deletions buf.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@ deps:
- remote: buf.build
owner: googleapis
repository: googleapis
commit: 711e289f6a384c4caeebaff7c6931ade
digest: shake256:e08fb55dad7469f69df00304eed31427d2d1576e9aab31e6bf86642688e04caaf0372f15fe6974cf79432779a635b3ea401ca69c943976dc42749524e4c25d94
commit: 28151c0d0a1641bf938a7672c500e01d
digest: shake256:49215edf8ef57f7863004539deff8834cfb2195113f0b890dd1f67815d9353e28e668019165b9d872395871eeafcbab3ccfdb2b5f11734d3cca95be9e8d139de
- remote: buf.build
owner: temporal
repository: frontend-api
commit: 51b578d926d9457cbb44c4d3967b9096
digest: shake256:5c68026e330326ec8a6dcda312612640aee95c68db6d7b87d4298547fe7601a10fed85d8972c518d8fbae04b335d456b3b189be47a9a89be4d0deb5cfbb2756a
1 change: 1 addition & 0 deletions buf.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: v1
deps:
- buf.build/googleapis/googleapis
- buf.build/temporal/frontend-api
breaking:
use:
- FILE
Expand Down
15 changes: 15 additions & 0 deletions temporal/api/cloud/export/v1/message.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
syntax = "proto3";

package temporal.api.cloud.export.v1;

option go_package = "go.temporal.io/api/cloud/export/v1;export";

import "temporal/api/history/v1/message.proto";

message ExportedWorkflows {
repeated Workflow workflows = 1;
}

message Workflow{
anekkanti marked this conversation as resolved.
Show resolved Hide resolved
anekkanti marked this conversation as resolved.
Show resolved Hide resolved
temporal.api.history.v1.History history = 1;
}
Loading