Skip to content

Commit

Permalink
fix: update proto to include timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Dec 30, 2024
1 parent edc8225 commit a9e6906
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion proto/identity/api/v1/identity.proto
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,19 @@ message GetInboxIdsResponse {
repeated Response responses = 1;
}

// Request to subscribe to association changes, triggered by Identity Updates
message SubscribeAssociationChangesRequest {}

message SubscribeAssociationChangesResponse {
// A change in account_address -> inbox_id association
message AccountAddressAssociation {
string account_address = 1;
string inbox_id = 2;
}

uint64 timestamp_ns = 1;

oneof change {
AccountAddressAssociation account_address_association = 1;
AccountAddressAssociation account_address_association = 2;
}
}

0 comments on commit a9e6906

Please sign in to comment.