From 4e933e8e932c8db403b00d6b63713b63aa758071 Mon Sep 17 00:00:00 2001 From: Maxim Belov Date: Thu, 11 Jul 2024 09:00:55 +0300 Subject: [PATCH] feat(airship): add isForeground to push received events (#4763) * add onBackgroundPushReceived * add isForeground to PushReceivedEvent --- src/@awesome-cordova-plugins/plugins/airship/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/@awesome-cordova-plugins/plugins/airship/index.ts b/src/@awesome-cordova-plugins/plugins/airship/index.ts index 84d1933fe..c4019d3fd 100644 --- a/src/@awesome-cordova-plugins/plugins/airship/index.ts +++ b/src/@awesome-cordova-plugins/plugins/airship/index.ts @@ -116,6 +116,7 @@ export interface PushTokenReceivedEvent { */ export interface PushReceivedEvent { pushPayload: PushPayload; + isForeground: boolean; } /**