We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b1719 commit b4f0f07Copy full SHA for b4f0f07
src/@ionic-native/plugins/facebook/index.ts
@@ -287,6 +287,19 @@ export class Facebook extends IonicNativePlugin {
287
return;
288
}
289
290
+ /**
291
+ * Enable or disable the auto log app event feature - https://developers.facebook.com/docs/app-events/gdpr-compliance/
292
+ *
293
+ * @param {boolean} enabled value to be set
294
+ */
295
+ @Cordova({
296
+ successIndex: 1,
297
+ errorIndex: 2,
298
+ })
299
+ setAutoLogAppEventsEnabled(enabled: boolean): Promise<void> {
300
+ return;
301
+ }
302
+
303
/**
304
* Log a purchase. For more information see the Events section above.
305
*
0 commit comments