Skip to content

Commit

Permalink
Merge pull request #106 from overmindtech/split-diffs
Browse files Browse the repository at this point in the history
Split expected and unexpected
  • Loading branch information
dylanratcliffe authored Jul 27, 2023
2 parents c5879a6 + 65ca814 commit 8f63af1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion changes.proto
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,14 @@ message GetDiffRequest {
}

message GetDiffResponse {
repeated ItemDiff items = 1;
// Changes to items that were used to calculate the blast radius, i.e. items
// we expected to change
repeated ItemDiff expectedItems = 1;

// Items that changed within the blast radius, but that weren't used to
// calculate it i.e. unexpected changes
repeated ItemDiff unexpectedItems = 3;

repeated Edge edges = 2;
}

Expand Down

0 comments on commit 8f63af1

Please sign in to comment.