appsflyer-capacitor-plugin 6.4.4 → 6.8.0-rc1

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "appsflyer-capacitor-plugin",
3
- "version": "6.4.4",
4
- "iosSdkVersion": "6.4.4",
3
+ "version": "6.8.0-rc1",
4
+ "iosSdkVersion": "6.8.0",
5
5
  "description": "AppsFlyer SDK plugin for Capacitor",
6
6
  "main": "dist/plugin.cjs.js",
7
7
  "module": "dist/esm/index.js",
@@ -239,5 +239,12 @@ export interface AppsFlyerPlugin {
239
239
  *
240
240
  */
241
241
  logInvite(data : AFLogInvite): Promise<AFRes>;
242
+
243
+ /**
244
+ * Use to opt-out of collecting the network operator name (carrier) and sim operator name from the device.
245
+ *
246
+ * @param disable Defaults to false
247
+ */
248
+ setDisableNetworkData(disable : AFDisable): Promise<void>;
242
249
  }
243
250