protobuf-platform 1.0.197 → 1.0.198
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.
@@ -15,7 +15,7 @@ service Notification {
|
|
15
15
|
rpc sendNotificationToUsers(SendNotificationRequest) returns (NotificationStatusResponse);
|
16
16
|
rpc getNotificationForParticularUser(PaginationRequest) returns (UserNotificationItemsResponse);
|
17
17
|
rpc getNotificationsCountForUser(NotificationSearchRequest) returns (UserNotificationsCountResponse);
|
18
|
-
rpc markUserNotification(NotificationSearchRequest) returns (
|
18
|
+
rpc markUserNotification(NotificationSearchRequest) returns (UserNotificationsCountResponse);
|
19
19
|
}
|
20
20
|
|
21
21
|
message PingRequest { string ping = 1; }
|
@@ -277,11 +277,11 @@ sendNotificationToUsers: {
|
|
277
277
|
requestStream: false,
|
278
278
|
responseStream: false,
|
279
279
|
requestType: notification_pb.NotificationSearchRequest,
|
280
|
-
responseType: notification_pb.
|
280
|
+
responseType: notification_pb.UserNotificationsCountResponse,
|
281
281
|
requestSerialize: serialize_notification_NotificationSearchRequest,
|
282
282
|
requestDeserialize: deserialize_notification_NotificationSearchRequest,
|
283
|
-
responseSerialize:
|
284
|
-
responseDeserialize:
|
283
|
+
responseSerialize: serialize_notification_UserNotificationsCountResponse,
|
284
|
+
responseDeserialize: deserialize_notification_UserNotificationsCountResponse,
|
285
285
|
},
|
286
286
|
};
|
287
287
|
|