Skip to content

Commit 08f519b

Browse files
authored
Merge pull request #148 from xmtp/nm/frames-improvements
2 parents 5fb756a + cccd639 commit 08f519b

19 files changed

+23
-19
lines changed

go/keystore_api/v1/keystore.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_api/v1/authn.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_api/v1/message_api.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_api/v1/message_api_grpc.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/ciphertext.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/composite.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/contact.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/content.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/conversation_reference.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/invitation.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/message.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/private_key.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/public_key.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/message_contents/signature.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/mls/api/v1/mls.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/mls/api/v1/mls_grpc.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/mls_validation/v1/service.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/mls_validation/v1/service_grpc.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/message_contents/frames.proto

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ message FrameActionBody {
1818
// The 1-indexed button that was clicked
1919
int32 button_index = 2;
2020
// Timestamp of the click in milliseconds since the epoch
21-
uint64 timestamp = 3;
21+
uint64 timestamp = 3 [deprecated = true];
2222
// A unique identifier for the conversation, not tied to anything on the
2323
// network. Will not match the topic or conversation_id
2424
string opaque_conversation_identifier = 4;
25+
// Unix timestamp
26+
uint32 unix_timestamp = 5;
27+
// Input text from a text input field
28+
string input_text = 6;
2529
}
2630

2731
// The outer payload that will be sent as the `messageBytes` in the

0 commit comments

Comments
 (0)