apps-sdk 1.0.179 → 1.0.181
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/config.js +1 -1
- package/package.json +1 -1
- package/src/libraries/Networking.js +5 -5
- package/types/index.d.ts +1 -1
package/config.js
CHANGED
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@ class Networking {
|
|
|
28
28
|
this.setPayWallData(initData);
|
|
29
29
|
this.checkSubscription();
|
|
30
30
|
this.setForcedUpdate(initData.data);
|
|
31
|
-
this.
|
|
31
|
+
this.setConfigExtra(initData.data.config || {});
|
|
32
32
|
if (initData.data.image) {
|
|
33
33
|
this.setImageCompression(initData.data.image);
|
|
34
34
|
}
|
|
@@ -169,12 +169,12 @@ class Networking {
|
|
|
169
169
|
return updateNeeded;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
|
|
173
|
-
config.
|
|
172
|
+
setConfigExtra = (data) => {
|
|
173
|
+
config.CONFIG_EXTRA = data;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
|
|
177
|
-
return config.
|
|
176
|
+
getConfigExtra = () => {
|
|
177
|
+
return config.CONFIG_EXTRA;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
setEvents(events) {
|