Skip to content

Commit

Permalink
buf linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ohEmily committed Oct 28, 2024
1 parent 7b36adb commit 0df1100
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions proto/viam/app/v1/app.proto
Original file line number Diff line number Diff line change
Expand Up @@ -734,12 +734,18 @@ message Fragment {

message FragmentHistoryEntry {
// replacing this with a new name, fragment_id
string fragment = 1 [(tagger.v1.tags) = "bson:\"fragment\" json:\"fragment\"", deprecated = true];
string fragment = 1 [
(tagger.v1.tags) = "bson:\"fragment\" json:\"fragment\"",
deprecated = true
];
google.protobuf.Timestamp edited_on = 2 [(tagger.v1.tags) = "bson:\"edited_on\" json:\"edited_on\""];
// replacing this with fragmentContents, as we don't want FragmentHistoryEvents to contain fragment metadata
Fragment old = 3 [(tagger.v1.tags) = "bson:\"old\" json:\"old\"", deprecated = true];
// replacing this with fragment_contents, as we don't want FragmentHistoryEvents to contain fragment metadata
Fragment old = 3 [
(tagger.v1.tags) = "bson:\"old\" json:\"old\"",
deprecated = true
];
AuthenticatorInfo edited_by = 4 [(tagger.v1.tags) = "bson:\"edited_by\" json:\"edited_by\""];
google.protobuf.Struct fragmentContents = 5 [(tagger.v1.tags) = "bson:\"fragmentContents\" json:\"fragmentContents\""];
google.protobuf.Struct fragment_contents = 5 [(tagger.v1.tags) = "bson:\"fragment_contents\" json:\"fragment_contents\""];
string fragment_id = 6 [(tagger.v1.tags) = "bson:\"fragment_id\" json:\"fragment_id\""];
}

Expand Down

0 comments on commit 0df1100

Please sign in to comment.