Update mixpanel

Added events: getSuperProperties, registerSuperPropertiesOnce, unregisterSuperProperty
This commit is contained in:
Miguel 2018-01-15 15:48:08 +01:00 committed by GitHub
parent 9ebd92ecb9
commit 4fc97037ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,13 @@ export class Mixpanel extends IonicNativePlugin {
@Cordova()
init(token: string): Promise<any> { return; }
/**
*
* @returns {Promise<any>}
*/
@Cordova()
getSuperProperties(): Promise<any> { return; }
/**
*
* @param superProperties {any}
@ -80,6 +87,22 @@ export class Mixpanel extends IonicNativePlugin {
@Cordova()
registerSuperProperties(superProperties: any): Promise<any> { return; }
/**
*
* @param superProperties {any}
* @returns {Promise<any>}
*/
@Cordova()
registerSuperPropertiesOnce(superProperties: any): Promise<any> { return; }
/**
*
* @param superPropertyName {string}
* @returns {Promise<any>}
*/
@Cordova()
unregisterSuperProperty(superPropertyName: string): Promise<any> { return; }
/**
*
* @returns {Promise<any>}