feat: Enhance message notifications with history and actions (#4133)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-01-04 15:46:07 -06:00 committed by GitHub
parent 43aca3c558
commit 49f6ffe6e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 496 additions and 43 deletions

View file

@ -31,7 +31,7 @@ interface MeshServiceNotifications {
fun updateServiceStateNotification(summaryString: String?, telemetry: TelemetryProtos.Telemetry?): Notification
fun updateMessageNotification(
suspend fun updateMessageNotification(
contactKey: String,
name: String,
message: String,
@ -39,7 +39,15 @@ interface MeshServiceNotifications {
channelName: String?,
)
fun updateWaypointNotification(contactKey: String, name: String, message: String, waypointId: Int)
suspend fun updateWaypointNotification(contactKey: String, name: String, message: String, waypointId: Int)
suspend fun updateReactionNotification(
contactKey: String,
name: String,
emoji: String,
isBroadcast: Boolean,
channelName: String?,
)
fun showAlertNotification(contactKey: String, name: String, alert: String)