apps-sdk 1.1.17 → 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.
- package/package.json +1 -1
- package/src/libraries/Adapty.js +2 -1
- package/types/index.d.ts +3 -2
package/package.json
CHANGED
package/src/libraries/Adapty.js
CHANGED
|
@@ -62,9 +62,10 @@ class Adapty {
|
|
|
62
62
|
paywallView.registerEventHandlers({
|
|
63
63
|
onCloseButtonPress: eventHandlers.onCloseButtonPress || (() => { return true; }),
|
|
64
64
|
onAndroidSystemBack: eventHandlers.onAndroidSystemBack || (() => { paywallView.dismiss(); return true; }),
|
|
65
|
-
onPurchaseCompleted: eventHandlers.onPurchaseCompleted || (() => { paywallView.dismiss(); return true; }),
|
|
66
65
|
onPurchaseStarted: eventHandlers.onPurchaseStarted || (() => { }),
|
|
66
|
+
onPurchaseCompleted: eventHandlers.onPurchaseCompleted || (() => { paywallView.dismiss(); return true; }),
|
|
67
67
|
onPurchaseFailed: eventHandlers.onPurchaseFailed || (() => { paywallView.dismiss(); return true; }),
|
|
68
|
+
onRestoreStarted: eventHandlers.onRestoreStarted || (() => { }),
|
|
68
69
|
onRestoreCompleted: eventHandlers.onRestoreCompleted || (() => { paywallView.dismiss(); return true; }),
|
|
69
70
|
onRestoreFailed: eventHandlers.onRestoreFailed || (() => { paywallView.dismiss(); return true; }),
|
|
70
71
|
onProductSelected: eventHandlers.onProductSelected || (() => { }),
|
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>;
|
|
@@ -198,9 +198,10 @@ declare module 'apps-sdk' {
|
|
|
198
198
|
type PaywallEventHandlers = {
|
|
199
199
|
onCloseButtonPress?: () => void;
|
|
200
200
|
onAndroidSystemBack?: () => void;
|
|
201
|
-
onPurchaseCompleted?: (purchaseResult: any, product: any) => void;
|
|
202
201
|
onPurchaseStarted?: (product: any) => void;
|
|
202
|
+
onPurchaseCompleted?: (purchaseResult: any, product: any) => void;
|
|
203
203
|
onPurchaseFailed?: (error: any) => void;
|
|
204
|
+
onRestoreStarted?: () => void;
|
|
204
205
|
onRestoreCompleted?: (profile: any) => void;
|
|
205
206
|
onRestoreFailed?: (error: any, product: any) => void;
|
|
206
207
|
onProductSelected?: (productId: string) => void;
|