@barumetric/contracts 1.4.15 → 1.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gen/ts/messages.ts +1 -2
- package/package.json +1 -1
- package/proto/messages.proto +2 -3
package/gen/ts/messages.ts
CHANGED
|
@@ -114,8 +114,7 @@ export interface Conversation {
|
|
|
114
114
|
lastMessageAt?: Timestamp | undefined;
|
|
115
115
|
lastMessageId?: string | undefined;
|
|
116
116
|
lastMessagePreview?: string | undefined;
|
|
117
|
-
|
|
118
|
-
unreadForBuyer: number;
|
|
117
|
+
unreadCount: number;
|
|
119
118
|
createdAt: Timestamp | undefined;
|
|
120
119
|
}
|
|
121
120
|
|
package/package.json
CHANGED
package/proto/messages.proto
CHANGED
|
@@ -113,10 +113,9 @@ message Conversation {
|
|
|
113
113
|
optional string last_message_id = 6;
|
|
114
114
|
optional string last_message_preview = 7;
|
|
115
115
|
|
|
116
|
-
int32
|
|
117
|
-
int32 unread_for_buyer = 9;
|
|
116
|
+
int32 unread_count = 8;
|
|
118
117
|
|
|
119
|
-
google.protobuf.Timestamp created_at =
|
|
118
|
+
google.protobuf.Timestamp created_at = 9;
|
|
120
119
|
}
|
|
121
120
|
|
|
122
121
|
message Message {
|