apps-sdk 1.1.42 → 1.1.43
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/index.js +2 -2
- package/package.json +1 -1
- package/types/index.d.ts +3 -3
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {NotificationsPush, Networking, Storage, Session, Utils, PayWallLogic, Rating, AdJust, TrackingTransparency, Voice, MixPanel, Adapty,
|
|
1
|
+
import {NotificationsPush, Networking, Storage, Session, Utils, PayWallLogic, Rating, AdJust, TrackingTransparency, Voice, MixPanel, Adapty, HomeActions} from "./src/libraries";
|
|
2
2
|
import PayWall from "./src/components/PayWall";
|
|
3
3
|
|
|
4
4
|
class AppsSDK {
|
|
@@ -60,5 +60,5 @@ export default {
|
|
|
60
60
|
voice: Voice,
|
|
61
61
|
adapty: Adapty,
|
|
62
62
|
homeActions: HomeActions,
|
|
63
|
-
facebook: Facebook,
|
|
63
|
+
// facebook: Facebook,
|
|
64
64
|
}
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -238,7 +238,7 @@ declare module 'apps-sdk' {
|
|
|
238
238
|
itemCallback(itemCallbackFunction: any): Promise<void>;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
-
export class Facebook {
|
|
241
|
+
// export class Facebook {
|
|
242
242
|
// initialize(appId?: string, clientToken?: string, debugMode?: boolean, devMode?: boolean): Promise<void>;
|
|
243
243
|
// trackEvent(eventName: string, properties?: object): Promise<void>;
|
|
244
244
|
// trackEventIfExist(eventKeyword: string, eventData?: object): Promise<void>;
|
|
@@ -246,7 +246,7 @@ declare module 'apps-sdk' {
|
|
|
246
246
|
// trackPushNotificationOpen(payload?: object): Promise<void>;
|
|
247
247
|
// isFacebookInitialized(): boolean;
|
|
248
248
|
// getApplicationId(): string | null;
|
|
249
|
-
}
|
|
249
|
+
// }
|
|
250
250
|
|
|
251
251
|
export class AppsSDK {
|
|
252
252
|
initializePushNotifications(): Promise<string>;
|
|
@@ -269,7 +269,7 @@ declare module 'apps-sdk' {
|
|
|
269
269
|
voice : Voice;
|
|
270
270
|
adapty : Adapty;
|
|
271
271
|
homeActions : HomeActions;
|
|
272
|
-
facebook : Facebook;
|
|
272
|
+
// facebook : Facebook;
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
const Core: AppsSDK;
|