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}