apps-sdk 1.1.18 → 1.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apps-sdk",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "description": "Apps SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types/index.d.ts CHANGED
@@ -183,7 +183,7 @@ declare module 'apps-sdk' {
183
183
  export class MixPanel {
184
184
  initialize(token?: string, trackAutomaticEvents?: boolean, useNative?: boolean, devMode?: boolean): Promise<void>;
185
185
  getDistinctID(): Promise<string>;
186
- trackEvent(event: string, properties?: object): Promise<void>;
186
+ trackEvent(event: string, properties?: object, forceSend?: boolean): Promise<void>;
187
187
  trackEventIfExist(eventKeyword: string, eventData?: object): Promise<void>;
188
188
  isMixpanelInitialized(): boolean;
189
189
  superProperties(properties: object): Promise<void>;