Skip to content

Commit

Permalink
rename version to revision
Browse files Browse the repository at this point in the history
  • Loading branch information
ehhong committed Jan 6, 2025
1 parent 2b3f94e commit 209daf0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proto/viam/app/v1/app.proto
Original file line number Diff line number Diff line change
Expand Up @@ -823,14 +823,14 @@ message FragmentHistoryEntry {
AuthenticatorInfo edited_by = 4 [(tagger.v1.tags) = "bson:\"edited_by\" json:\"edited_by\""];
}

message FragmentVersion {
string version = 1;
message FragmentRevision {
string revision = 1;
google.protobuf.Timestamp created_at = 2;
}

message FragmentTag {
string tag = 1;
string version = 2;
string revision = 2;
google.protobuf.Timestamp created_at = 3;
google.protobuf.Timestamp updated_at = 4;
}
Expand Down Expand Up @@ -894,7 +894,7 @@ message GetFragmentRequest {
message GetFragmentResponse {
Fragment fragment = 1;
FragmentUsage fragment_usage = 2;
repeated FragmentVersion versions = 3;
repeated FragmentRevision revisions = 3;
}

message CreateFragmentRequest {
Expand Down

0 comments on commit 209daf0

Please sign in to comment.