@ua/react-native-airship 23.2.0 → 23.3.0
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.
|
@@ -39,7 +39,7 @@ public class AirshipReactNative: NSObject {
|
|
|
39
39
|
AirshipProxy.shared
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
public static let version: String = "23.
|
|
42
|
+
public static let version: String = "23.3.0"
|
|
43
43
|
|
|
44
44
|
private let eventNotifier = EventNotifier()
|
|
45
45
|
|
|
@@ -598,10 +598,10 @@ public extension AirshipReactNative {
|
|
|
598
598
|
}
|
|
599
599
|
|
|
600
600
|
@objc
|
|
601
|
-
func preferenceCenterGetConfig(preferenceCenterId: String) async throws ->
|
|
601
|
+
func preferenceCenterGetConfig(preferenceCenterId: String) async throws -> AnyHashable? {
|
|
602
602
|
return try await AirshipProxy.shared.preferenceCenter.getPreferenceCenterConfig(
|
|
603
603
|
preferenceCenterID: preferenceCenterId
|
|
604
|
-
)
|
|
604
|
+
).unWrap()
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
@objc
|
package/package.json
CHANGED