From c464f3b22a9bdc826bab38fd4179eac29d6fdd66 Mon Sep 17 00:00:00 2001 From: Ingrid Wang Date: Tue, 20 Feb 2024 13:00:43 -0800 Subject: [PATCH] Remove deprecated alertAction and repeatInterval properties (#43116) Summary: Changelog: [iOS][Breaking] Deleting deprecated alertAction and repeatInterval in PushNotificationIOS Reviewed By: philIip Differential Revision: D53734569 --- .../private/specs/modules/NativePushNotificationManagerIOS.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/react-native/src/private/specs/modules/NativePushNotificationManagerIOS.js b/packages/react-native/src/private/specs/modules/NativePushNotificationManagerIOS.js index 01eeeaf35cd4..52e5fc8f17f3 100644 --- a/packages/react-native/src/private/specs/modules/NativePushNotificationManagerIOS.js +++ b/packages/react-native/src/private/specs/modules/NativePushNotificationManagerIOS.js @@ -55,10 +55,6 @@ type Notification = {| * getScheduledLocalNotifications or getDeliveredNotifications. */ +soundName?: ?string, - /** DEPRECATED. This was used for iOS's legacy UILocalNotification. */ - +alertAction?: ?string, - /** DEPRECATED. Use `fireDate` or `fireIntervalSeconds` instead. */ - +repeatInterval?: ?string, |}; export interface Spec extends TurboModule {