react-native-acoustic-connect-beta 16.0.21 → 16.0.22

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.
@@ -15,7 +15,7 @@
15
15
  "react": "18.2.0",
16
16
  "react-dom": "18.2.0",
17
17
  "react-native": "0.72.10",
18
- "react-native-acoustic-connect-beta": "16.0.21",
18
+ "react-native-acoustic-connect-beta": "16.0.22",
19
19
  "react-native-gesture-handler": "~2.12.0",
20
20
  "react-native-keyboard-aware-scroll-view": "^0.9.5",
21
21
  "react-native-reanimated": "~3.3.0",
@@ -400,18 +400,6 @@ public class RNCxaModule extends ReactContextBaseJavaModule implements Lifecycle
400
400
  }
401
401
  }
402
402
 
403
- /**
404
- * Log ScreenView Page event.
405
- *
406
- * @param logicalPageName Page name or title e.g. "Login View Controller"; Must not be empty.
407
- * @param promise Javascript Promise interface.
408
- */
409
- @ReactMethod
410
- public void logScreenViewPageName(final String logicalPageName, final Promise promise) {
411
- final boolean result = Connect.INSTANCE.logScreenview(Objects.requireNonNull(getCurrentActivity()), logicalPageName, ScreenviewType.LOAD);
412
- updateResult(result, promise);
413
- }
414
-
415
403
  /**
416
404
  * Requests that the framework logs an screen load event.
417
405
  *
package/ios/RNCxa.m CHANGED
@@ -299,17 +299,6 @@ RCT_EXPORT_METHOD(setCurrentScreenName:(NSString*)logicalPageName resolver:(RCTP
299
299
  });
300
300
  }
301
301
 
302
- /*!
303
- @discussion Requests that the framework logs an application context for load.
304
- @param logicalPageName - Page name or title e.g. "Login View Controller"; Must not be empty.
305
- @param referrer - Page name or title that loads logicalPageName. Could be empty.
306
- @return Boolean value will return whether it was able to log the screenview event.
307
- */
308
- RCT_EXPORT_METHOD(logScreenViewPageName:(NSString*)logicalPageName resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) {
309
- id result = [NSNumber numberWithBool:[[ConnectCustomEvent sharedInstance] logScreenViewPageName:logicalPageName]];
310
- [self updateResult:result resolver:resolve rejecter:reject];
311
- }
312
-
313
302
  /*!
314
303
  @discussion Requests that the framework logs an application context for load.
315
304
  @param logicalPageName - Page name or title e.g. "Login View Controller"; Must not be empty.
package/package.json CHANGED
@@ -38,5 +38,5 @@
38
38
  "verifyConnectSetup": "node scripts/verifyConnectSetup.js $INIT_CWD"
39
39
  },
40
40
  "summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
41
- "version": "16.0.21"
41
+ "version": "16.0.22"
42
42
  }