react-native-radar 4.32.0 → 4.33.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.
Files changed (31) hide show
  1. package/android/src/newarch/java/com/radar/RadarModule.kt +2 -2
  2. package/android/src/oldarch/java/com/radar/RadarModule.java +2 -2
  3. package/dist/version.d.ts +1 -1
  4. package/dist/version.js +1 -1
  5. package/ios/RNRadar.mm +2 -2
  6. package/ios/RadarSDK.xcframework/Info.plist +5 -5
  7. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/Radar.h +34 -1
  8. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarInitializeOptions.h +5 -0
  9. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSDKFraudProtocol.h +2 -0
  10. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSdkConfiguration.h +2 -0
  11. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarVerifiedDelegate.h +16 -0
  12. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Info.plist +0 -0
  13. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.abi.json +121 -76
  14. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/RadarSDK +0 -0
  15. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/Radar.h +34 -1
  16. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarInitializeOptions.h +5 -0
  17. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSDKFraudProtocol.h +2 -0
  18. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSdkConfiguration.h +2 -0
  19. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarVerifiedDelegate.h +16 -0
  20. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Info.plist +0 -0
  21. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +121 -76
  22. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +121 -76
  23. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/RadarSDK +0 -0
  24. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/_CodeSignature/CodeDirectory +0 -0
  25. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/_CodeSignature/CodeResources +19 -19
  26. package/ios/RadarSDKMotion.xcframework/ios-arm64/RadarSDKMotion.framework/Info.plist +0 -0
  27. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/Info.plist +0 -0
  28. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/_CodeSignature/CodeDirectory +0 -0
  29. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/_CodeSignature/CodeResources +1 -1
  30. package/package.json +1 -1
  31. package/src/version.ts +1 -1
@@ -143,7 +143,7 @@ class RadarModule(reactContext: ReactApplicationContext) :
143
143
  override fun initialize(publishableKey: String, fraud: Boolean, options: ReadableMap?): Unit {
144
144
  val editor = reactApplicationContext.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit()
145
145
  editor.putString("x_platform_sdk_type", "ReactNative")
146
- editor.putString("x_platform_sdk_version", "4.32.0")
146
+ editor.putString("x_platform_sdk_version", "4.33.0")
147
147
  editor.apply()
148
148
 
149
149
  Radar.initialize(reactApplicationContext, publishableKey, radarReceiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, radarInAppMessageReceiver, currentActivity)
@@ -155,7 +155,7 @@ class RadarModule(reactContext: ReactApplicationContext) :
155
155
  override fun initializeWithAuthToken(authToken: String, fraud: Boolean, options: ReadableMap?): Unit {
156
156
  val editor = reactApplicationContext.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit()
157
157
  editor.putString("x_platform_sdk_type", "ReactNative")
158
- editor.putString("x_platform_sdk_version", "4.32.0")
158
+ editor.putString("x_platform_sdk_version", "4.33.0")
159
159
  editor.apply()
160
160
 
161
161
  val initOptions = io.radar.sdk.RadarInitializeOptions.builder()
@@ -102,7 +102,7 @@ public class RadarModule extends ReactContextBaseJavaModule implements Permissio
102
102
  this.fraud = fraud;
103
103
  SharedPreferences.Editor editor = getReactApplicationContext().getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
104
104
  editor.putString("x_platform_sdk_type", "ReactNative");
105
- editor.putString("x_platform_sdk_version", "4.32.0");
105
+ editor.putString("x_platform_sdk_version", "4.33.0");
106
106
  editor.apply();
107
107
  Radar.initialize(getReactApplicationContext(), publishableKey, receiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, inAppMessageReceiver, getCurrentActivity());
108
108
  if (fraud) {
@@ -115,7 +115,7 @@ public class RadarModule extends ReactContextBaseJavaModule implements Permissio
115
115
  this.fraud = fraud;
116
116
  SharedPreferences.Editor editor = getReactApplicationContext().getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
117
117
  editor.putString("x_platform_sdk_type", "ReactNative");
118
- editor.putString("x_platform_sdk_version", "4.32.0");
118
+ editor.putString("x_platform_sdk_version", "4.33.0");
119
119
  editor.apply();
120
120
 
121
121
  io.radar.sdk.RadarInitializeOptions.Builder builder = io.radar.sdk.RadarInitializeOptions.builder()
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "4.32.0";
1
+ export declare const VERSION = "4.33.0";
package/dist/version.js CHANGED
@@ -3,4 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // This file contains the version of the react-native-radar package
5
5
  // It should be updated to match the version in package.json
6
- exports.VERSION = '4.32.0';
6
+ exports.VERSION = '4.33.0';
package/ios/RNRadar.mm CHANGED
@@ -217,7 +217,7 @@ RCT_EXPORT_MODULE()
217
217
  RCT_EXPORT_METHOD(initialize:(NSString *)publishableKey fraud:(BOOL)fraud options:(NSDictionary *)options) {
218
218
  _publishableKey = publishableKey;
219
219
  [[NSUserDefaults standardUserDefaults] setObject:@"ReactNative" forKey:@"radar-xPlatformSDKType"];
220
- [[NSUserDefaults standardUserDefaults] setObject:@"4.32.0" forKey:@"radar-xPlatformSDKVersion"];
220
+ [[NSUserDefaults standardUserDefaults] setObject:@"4.33.0" forKey:@"radar-xPlatformSDKVersion"];
221
221
 
222
222
  RadarInitializeOptions *radarOptions = [[RadarInitializeOptions alloc] init];
223
223
  if (options != nil) {
@@ -240,7 +240,7 @@ RCT_EXPORT_METHOD(initialize:(NSString *)publishableKey fraud:(BOOL)fraud option
240
240
  RCT_EXPORT_METHOD(initializeWithAuthToken:(NSString *)authToken fraud:(BOOL)fraud options:(NSDictionary *)options) {
241
241
  _publishableKey = nil;
242
242
  [[NSUserDefaults standardUserDefaults] setObject:@"ReactNative" forKey:@"radar-xPlatformSDKType"];
243
- [[NSUserDefaults standardUserDefaults] setObject:@"4.32.0" forKey:@"radar-xPlatformSDKVersion"];
243
+ [[NSUserDefaults standardUserDefaults] setObject:@"4.33.0" forKey:@"radar-xPlatformSDKVersion"];
244
244
  RadarInitializeOptions *radarOptions = [[RadarInitializeOptions alloc] init];
245
245
  if (options != nil) {
246
246
  id silentPushValue = options[@"silentPush"];
@@ -8,32 +8,32 @@
8
8
  <key>BinaryPath</key>
9
9
  <string>RadarSDK.framework/RadarSDK</string>
10
10
  <key>LibraryIdentifier</key>
11
- <string>ios-arm64</string>
11
+ <string>ios-arm64_x86_64-simulator</string>
12
12
  <key>LibraryPath</key>
13
13
  <string>RadarSDK.framework</string>
14
14
  <key>SupportedArchitectures</key>
15
15
  <array>
16
16
  <string>arm64</string>
17
+ <string>x86_64</string>
17
18
  </array>
18
19
  <key>SupportedPlatform</key>
19
20
  <string>ios</string>
21
+ <key>SupportedPlatformVariant</key>
22
+ <string>simulator</string>
20
23
  </dict>
21
24
  <dict>
22
25
  <key>BinaryPath</key>
23
26
  <string>RadarSDK.framework/RadarSDK</string>
24
27
  <key>LibraryIdentifier</key>
25
- <string>ios-arm64_x86_64-simulator</string>
28
+ <string>ios-arm64</string>
26
29
  <key>LibraryPath</key>
27
30
  <string>RadarSDK.framework</string>
28
31
  <key>SupportedArchitectures</key>
29
32
  <array>
30
33
  <string>arm64</string>
31
- <string>x86_64</string>
32
34
  </array>
33
35
  <key>SupportedPlatform</key>
34
36
  <string>ios</string>
35
- <key>SupportedPlatformVariant</key>
36
- <string>simulator</string>
37
37
  </dict>
38
38
  </array>
39
39
  <key>CFBundlePackageType</key>
@@ -284,6 +284,15 @@ typedef void (^_Nonnull RadarGeocodeCompletionHandler)(RadarStatus status, NSArr
284
284
  */
285
285
  typedef void (^_Nonnull RadarIPGeocodeCompletionHandler)(RadarStatus status, RadarAddress *_Nullable address, BOOL proxy);
286
286
 
287
+ /**
288
+ Called when an IP geocoding request succeeds, fails, or times out.
289
+
290
+ Receives the request status and, if successful, the geocoding result (a partial address) and a boolean indicating whether the IP address is a known proxy. Also receives the underlying NSError when the failure originated from a caught network, parse, or exception error — forward it to an error collector (Sentry, Crashlytics, etc.) to capture diagnostics.
291
+
292
+ @see https://radar.com/documentation/api#ip-geocode
293
+ */
294
+ typedef void (^_Nonnull RadarIPGeocodeWithErrorCompletionHandler)(RadarStatus status, RadarAddress *_Nullable address, BOOL proxy, NSError *_Nullable error);
295
+
287
296
  /**
288
297
  Called when an address validation request succeeds, fails, or times out.
289
298
 
@@ -408,6 +417,20 @@ typedef void (^_Nonnull RadarIndoorsScanCompletionHandler)(NSString *_Nullable r
408
417
  */
409
418
  + (NSString *_Nullable)getUserId;
410
419
 
420
+ /**
421
+ Sets the user's preferred language. Pass a BCP-47 language tag like `"en"` or `"es-PR"`.
422
+
423
+ @param userLanguage The user's preferred language. If `nil`, the previous `userLanguage` will be cleared.
424
+ */
425
+ + (void)setUserLanguage:(NSString *_Nullable)userLanguage;
426
+
427
+ /**
428
+ Returns the current `userLanguage`.
429
+
430
+ @return The current `userLanguage`.
431
+ */
432
+ + (NSString *_Nullable)getUserLanguage;
433
+
411
434
  /**
412
435
  Sets an optional description for the user, displayed in the dashboard.
413
436
 
@@ -1300,7 +1323,17 @@ typedef void (^_Nonnull RadarIndoorsScanCompletionHandler)(NSString *_Nullable r
1300
1323
 
1301
1324
  @see https://radar.com/documentation/api#ip-geocode
1302
1325
  */
1303
- + (void)ipGeocodeWithCompletionHandler:(RadarIPGeocodeCompletionHandler)completionHandler NS_SWIFT_NAME(ipGeocode(completionHandler:));
1326
+ + (void)ipGeocodeWithCompletionHandler:(RadarIPGeocodeCompletionHandler)completionHandler
1327
+ __attribute__((deprecated("Use ipGeocodeWithErrorCompletionHandler: to also receive the underlying NSError on network/parse errors.")));
1328
+
1329
+ /**
1330
+ Geocodes the device's current IP address, converting IP address to partial address. The completion handler also receives the underlying NSError when the failure originated from a caught network, parse, or exception error — forward it to an error collector (Sentry, Crashlytics, etc.) to capture diagnostics.
1331
+
1332
+ @param completionHandler A completion handler.
1333
+
1334
+ @see https://radar.com/documentation/api#ip-geocode
1335
+ */
1336
+ + (void)ipGeocodeWithErrorCompletionHandler:(RadarIPGeocodeWithErrorCompletionHandler)completionHandler NS_SWIFT_NAME(ipGeocode(completionHandler:));
1304
1337
 
1305
1338
 
1306
1339
  /**
@@ -21,6 +21,11 @@
21
21
  /// clamped to the range 1…300.
22
22
  @property (assign, nonatomic) NSTimeInterval networkTimeoutInterval;
23
23
 
24
+ /// Minimum interval in seconds between deliveries of `RadarVerifiedDelegate.didChangeIP()`.
25
+ /// Default 10 seconds. Set to 0 to disable throttling (deliver every detected change).
26
+ /// Negative or non-finite values fall back to the default.
27
+ @property (assign, nonatomic) NSTimeInterval ipChangeDebounceInterval;
28
+
24
29
  - (NSDictionary *_Nonnull)dictionaryValue;
25
30
  - (instancetype _Nonnull)initWithDict:(NSDictionary *_Nullable)dict;
26
31
 
@@ -21,6 +21,8 @@ typedef void (^RadarFraudPayloadCallback)(NSDictionary<NSString *, id> *_Nullabl
21
21
 
22
22
  - (void)getFraudPayloadWithOptions:(NSDictionary<NSString *, id> *)options completionHandler:(RadarFraudPayloadCallback)completionHandler;
23
23
 
24
+ - (void)setSharingDidChangeHandler:(nullable void (^)(BOOL sharing))handler;
25
+
24
26
  @end
25
27
 
26
28
  NS_ASSUME_NONNULL_END
@@ -37,6 +37,8 @@ NS_ASSUME_NONNULL_BEGIN
37
37
  - (BOOL)skipForegroundCheck;
38
38
  - (BOOL)useOfflineRTOUpdates;
39
39
  - (BOOL)offlineEventGenerationEnabled;
40
+ - (BOOL)useSwiftLocationManager;
41
+ - (BOOL)startUpdatesWhileInUse;
40
42
  - (NSArray<RadarRemoteTrackingOptions *> *_Nullable)remoteTrackingOptions;
41
43
  - (instancetype)initWithDict:(NSDictionary *_Nullable)dict;
42
44
  - (NSDictionary *)dictionaryValue;
@@ -26,6 +26,22 @@ NS_ASSUME_NONNULL_BEGIN
26
26
  */
27
27
  - (void)didUpdateToken:(RadarVerifiedLocationToken *_Nonnull)token NS_SWIFT_NAME(didUpdateToken(_:));
28
28
 
29
+ /**
30
+ Tells the delegate that the device's IP address changed while IP change monitoring is active.
31
+
32
+ @see https://radar.com/documentation/fraud
33
+ */
34
+ - (void)didChangeIP NS_SWIFT_NAME(didChangeIP());
35
+
36
+ /**
37
+ Tells the delegate that the device's screen sharing state changed.
38
+
39
+ @param sharing The current screen sharing state.
40
+
41
+ @see https://radar.com/documentation/fraud
42
+ */
43
+ - (void)didChangeSharing:(BOOL)sharing NS_SWIFT_NAME(didChangeSharing(_:));
44
+
29
45
  @end
30
46
 
31
47
  NS_ASSUME_NONNULL_END