From 4fc97037ac89aa97c386d9659c21cd8ad89fbf98 Mon Sep 17 00:00:00 2001 From: Miguel <4057053+migburillo@users.noreply.github.com> Date: Mon, 15 Jan 2018 15:48:08 +0100 Subject: [PATCH] Update mixpanel Added events: getSuperProperties, registerSuperPropertiesOnce, unregisterSuperProperty --- src/@ionic-native/plugins/mixpanel/index.ts | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/@ionic-native/plugins/mixpanel/index.ts b/src/@ionic-native/plugins/mixpanel/index.ts index debf12a63..af5f2432c 100644 --- a/src/@ionic-native/plugins/mixpanel/index.ts +++ b/src/@ionic-native/plugins/mixpanel/index.ts @@ -72,6 +72,13 @@ export class Mixpanel extends IonicNativePlugin { @Cordova() init(token: string): Promise { return; } + /** + * + * @returns {Promise} + */ + @Cordova() + getSuperProperties(): Promise { return; } + /** * * @param superProperties {any} @@ -80,6 +87,22 @@ export class Mixpanel extends IonicNativePlugin { @Cordova() registerSuperProperties(superProperties: any): Promise { return; } + /** + * + * @param superProperties {any} + * @returns {Promise} + */ + @Cordova() + registerSuperPropertiesOnce(superProperties: any): Promise { return; } + + /** + * + * @param superPropertyName {string} + * @returns {Promise} + */ + @Cordova() + unregisterSuperProperty(superPropertyName: string): Promise { return; } + /** * * @returns {Promise}