From ec3c0b9ca52ed34619578208f2e9b9311241e032 Mon Sep 17 00:00:00 2001 From: Tabing010102 Date: Mon, 20 Nov 2023 09:46:14 +0800 Subject: [PATCH] fix(gebura): add sentinel generated id to ReportAppPackages --- proto/librarian/sephirah/v1/gebura.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/proto/librarian/sephirah/v1/gebura.proto b/proto/librarian/sephirah/v1/gebura.proto index 7e0f8e43..b7df2bc8 100644 --- a/proto/librarian/sephirah/v1/gebura.proto +++ b/proto/librarian/sephirah/v1/gebura.proto @@ -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 {}