From 1239e900d4b4a14e7e450c3a8e097c9148c94838 Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Thu, 21 Nov 2024 11:48:38 -0800 Subject: [PATCH 1/2] fix: also add inbox id to frames action (#230) --- proto/message_contents/frames.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/message_contents/frames.proto b/proto/message_contents/frames.proto index 9018f0c..d41cbb6 100644 --- a/proto/message_contents/frames.proto +++ b/proto/message_contents/frames.proto @@ -48,4 +48,6 @@ message FrameAction { bytes installation_signature = 4; // The public installation id used to sign. bytes installation_id = 5; + // The inbox id of the installation used to sign. + bytes inbox_id = 6; } From 3b96eae1af90b0dfc39c33b302b55e3693e663d8 Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Thu, 21 Nov 2024 13:48:25 -0800 Subject: [PATCH 2/2] fix: change it to a string (#231) --- proto/message_contents/frames.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/message_contents/frames.proto b/proto/message_contents/frames.proto index d41cbb6..1f4545c 100644 --- a/proto/message_contents/frames.proto +++ b/proto/message_contents/frames.proto @@ -49,5 +49,5 @@ message FrameAction { // The public installation id used to sign. bytes installation_id = 5; // The inbox id of the installation used to sign. - bytes inbox_id = 6; + string inbox_id = 6; }