apps-sdk 1.0.111 → 1.0.112
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/Networking.js +4 -0
- package/types/index.d.ts +2 -0
package/package.json
CHANGED
|
@@ -211,6 +211,10 @@ class Networking {
|
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
+
getPayWallData() {
|
|
215
|
+
return config.PAYWALL_DATA;
|
|
216
|
+
}
|
|
217
|
+
|
|
214
218
|
sendEvent = async (eventType, eventKeyword, eventData={}) => {
|
|
215
219
|
if (config.TRACKING_ACTIVE === false && Platform.OS === 'ios') {
|
|
216
220
|
console.log('Event not sent, tracking is denied (iOS): ', eventType, eventKeyword);
|
package/types/index.d.ts
CHANGED