Skip to content

Commit

Permalink
fix(gebura): add sentinel generated id to ReportAppPackages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabing010102 committed Nov 20, 2023
1 parent 437513a commit ec3c0b9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion proto/librarian/sephirah/v1/gebura.proto
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ message ListAppPackagesResponse {
}

message ReportAppPackagesRequest {
repeated librarian.v1.AppPackageBinary app_package_binaries = 1;
message SentinelAppPackageBinary {
// Sentinel generated id, not InternalId
int64 id = 1;
librarian.v1.AppPackageBinary app_package_binary = 2;
}
repeated SentinelAppPackageBinary sentinel_app_package_binaries = 1;
}

message ReportAppPackagesResponse {}
Expand Down

0 comments on commit ec3c0b9

Please sign in to comment.