apps-sdk 1.1.41 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- import {NotificationsPush, Networking, Storage, Session, Utils, PayWallLogic, Rating, AdJust, TrackingTransparency, Voice, MixPanel, Adapty, Facebook, HomeActions} from "./src/libraries";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apps-sdk",
3
- "version": "1.1.41",
3
+ "version": "1.1.43",
4
4
  "description": "Apps SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -13,7 +13,6 @@
13
13
  "@react-native-async-storage/async-storage": "1.23.1",
14
14
  "@react-native-community/netinfo": "11.4.1",
15
15
  "@react-native-voice/voice": "^3.2.4",
16
- "apps-sdk": "^1.0.120",
17
16
  "expo": "~52.0.38",
18
17
  "expo-constants": "~17.0.5",
19
18
  "expo-device": "~7.0.2",
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;