Skip to content

Commit f76531b

Browse files
committed
fix: 🐛 post payload base
1 parent 96351f6 commit f76531b

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

proto/wechaty/puppet/post.proto

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,23 @@ message PostPayloadServer {
6969
string id = 1;
7070
repeated string sayable_list = 2;
7171

72-
string contact_id = 3;
73-
int32 timestamp = 4;
72+
optional string parentId = 3;
73+
optional string root_id = 4;
74+
optional PostType type = 5;
7475

75-
Counter counter = 5;
76+
string contact_id = 6;
77+
int32 timestamp = 7;
78+
79+
Counter counter = 8;
7680
}
7781

7882
message PostPayloadClient {
7983
string id = 1;
8084
repeated string sayable_list = 2;
85+
86+
optional string parentId = 3;
87+
optional string root_id = 4;
88+
optional PostType type = 5;
8189
}
8290

8391
message PostQueryFilter {

0 commit comments

Comments
 (0)