Skip to content

Commit

Permalink
fix: 🐛 post payload base
Browse files Browse the repository at this point in the history
  • Loading branch information
hcfw007 committed May 27, 2022
1 parent 96351f6 commit f76531b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions proto/wechaty/puppet/post.proto
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,23 @@ message PostPayloadServer {
string id = 1;
repeated string sayable_list = 2;

string contact_id = 3;
int32 timestamp = 4;
optional string parentId = 3;
optional string root_id = 4;
optional PostType type = 5;

Counter counter = 5;
string contact_id = 6;
int32 timestamp = 7;

Counter counter = 8;
}

message PostPayloadClient {
string id = 1;
repeated string sayable_list = 2;

optional string parentId = 3;
optional string root_id = 4;
optional PostType type = 5;
}

message PostQueryFilter {
Expand Down

0 comments on commit f76531b

Please sign in to comment.