import { Injectable } from '@angular/core'; import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; declare var mixpanel: any; /** * @name Mixpanel * @description * Cordova Plugin that wraps Mixpanel SDK for Android and iOS * * @usage * ```typescript * import { Mixpanel } from '@ionic-native/mixpanel'; * * constructor(private mixpanel: Mixpanel, private mixpanelPeople: MixpanelPeople) { } * * ... * * this.mixpanel.init(token) * .then(onSuccess) * .catch(onError); * * ``` * @classes * MixpanelPeople */ @Plugin({ pluginName: 'Mixpanel', plugin: 'cordova-plugin-mixpanel', pluginRef: 'mixpanel', repo: 'https://github.com/samzilverberg/cordova-mixpanel-plugin', platforms: ['Android', 'Browser', 'iOS'] }) @Injectable() export class Mixpanel extends IonicNativePlugin { /** * * @param aliasId {string} * @param originalId {string} * @returns {Promise} */ @Cordova() alias(aliasId: string, originalId: string): Promise { return; } /** * * @returns {Promise} */ @Cordova() distinctId(): Promise { return; } /** * @returns {Promise} */ @Cordova() flush(): Promise { return; } /** * * @param distinctId {string} * @returns {Promise} */ @Cordova() identify(distinctId: string): Promise { return; } /** * * @param token {string} * @returns {Promise} */ @Cordova() init(token: string): Promise { return; } /** * * @returns {Promise} */ @Cordova() getSuperProperties(): Promise { return; } /** * * @param superProperties {any} * @returns {Promise} */ @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} */ @Cordova() reset(): Promise { return; } /** * * @param eventName {string} * @returns {Promise} */ @Cordova() timeEvent(eventName: string): Promise { return; } /** * * @param eventName {string} * @param eventProperties {any} optional * @returns {Promise} */ @Cordova({ successIndex: 2, errorIndex: 3 }) track(eventName: string, eventProperties?: any): Promise { return; } } /** * @hidden */ @Plugin({ plugin: 'cordova-plugin-mixpanel', pluginRef: 'mixpanel.people', pluginName: 'Mixpanel' }) @Injectable() export class MixpanelPeople extends IonicNativePlugin { /** * * @param distinctId {string} * @return {Promise} */ @Cordova() identify(distinctId: string): Promise { return; } /** * * @param peopleProperties {string} * @return {Promise} */ @Cordova() increment(peopleProperties: any): Promise { return; } /** * * @param pushId * @return {Promise} */ @Cordova() setPushId(pushId: string): Promise { return; } /** * * @param peopleProperties * @return {Promise} */ @Cordova() set(peopleProperties: any): Promise { return; } /** * * @param peopleProperties * @return {Promise} */ @Cordova() setOnce(peopleProperties: any): Promise { return; } }