mobiqo-react-native 0.0.6 → 0.0.7
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/README.md +1 -0
- package/dist/MobiqoEvent.d.ts +2 -0
- package/dist/MobiqoEvent.js +2 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -127,6 +127,7 @@ enum MobiqoEvent {
|
|
|
127
127
|
PAYWALL_DISMISS = 'paywall_dismiss',
|
|
128
128
|
PURCHASE_ATTEMPT = 'purchase_attempt',
|
|
129
129
|
PURCHASE_SUCCESS = 'purchase_success',
|
|
130
|
+
PURCHASE_FAILED = 'purchase_failed',
|
|
130
131
|
FORM_SUBMIT = 'form_submit',
|
|
131
132
|
NAVIGATION = 'navigation',
|
|
132
133
|
ERROR = 'error',
|
package/dist/MobiqoEvent.d.ts
CHANGED
|
@@ -28,6 +28,8 @@ export declare enum MobiqoEvent {
|
|
|
28
28
|
PURCHASE_ATTEMPT = "purchase_attempt",
|
|
29
29
|
/** In-app purchase completed successfully (if not using RevenueCat webhook) */
|
|
30
30
|
PURCHASE_SUCCESS = "purchase_success",
|
|
31
|
+
/** User fails to purchase */
|
|
32
|
+
PURCHASE_FAILED = "purchase_failed",
|
|
31
33
|
/** Form or input field submitted */
|
|
32
34
|
FORM_SUBMIT = "form_submit",
|
|
33
35
|
/** User navigates to another screen/section */
|
package/dist/MobiqoEvent.js
CHANGED
|
@@ -32,6 +32,8 @@ var MobiqoEvent;
|
|
|
32
32
|
MobiqoEvent["PURCHASE_ATTEMPT"] = "purchase_attempt";
|
|
33
33
|
/** In-app purchase completed successfully (if not using RevenueCat webhook) */
|
|
34
34
|
MobiqoEvent["PURCHASE_SUCCESS"] = "purchase_success";
|
|
35
|
+
/** User fails to purchase */
|
|
36
|
+
MobiqoEvent["PURCHASE_FAILED"] = "purchase_failed";
|
|
35
37
|
/** Form or input field submitted */
|
|
36
38
|
MobiqoEvent["FORM_SUBMIT"] = "form_submit";
|
|
37
39
|
/** User navigates to another screen/section */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mobiqo-react-native",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Mobiqo SDK for Capacitor apps - Mobile analytics and user tracking",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/
|
|
34
|
+
"url": "https://github.com/MobiqoAnalytics/mobiqo-capacitor.git"
|
|
35
35
|
},
|
|
36
|
-
"homepage": "https://github.com/
|
|
36
|
+
"homepage": "https://github.com/MobiqoAnalytics/mobiqo-capacitor#readme",
|
|
37
37
|
"bugs": {
|
|
38
|
-
"url": "https://github.com/
|
|
38
|
+
"url": "https://github.com/MobiqoAnalytics/mobiqo-capacitor/issues"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=14.0.0"
|