@pushwoosh/rpc-gateway-statistics-api 1.3.788 → 1.3.790
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/data.js
CHANGED
|
@@ -3584,6 +3584,27 @@ export const data = {
|
|
|
3584
3584
|
},
|
|
3585
3585
|
"activeReachableWindowDays": {
|
|
3586
3586
|
"type": "number"
|
|
3587
|
+
},
|
|
3588
|
+
"reachableActivePercent": {
|
|
3589
|
+
"type": "number"
|
|
3590
|
+
},
|
|
3591
|
+
"reachableDormant": {
|
|
3592
|
+
"type": "number"
|
|
3593
|
+
},
|
|
3594
|
+
"reachableDormantPercent": {
|
|
3595
|
+
"type": "number"
|
|
3596
|
+
},
|
|
3597
|
+
"permissionOff": {
|
|
3598
|
+
"type": "number"
|
|
3599
|
+
},
|
|
3600
|
+
"permissionOffPercent": {
|
|
3601
|
+
"type": "number"
|
|
3602
|
+
},
|
|
3603
|
+
"neverOptedIn": {
|
|
3604
|
+
"type": "number"
|
|
3605
|
+
},
|
|
3606
|
+
"neverOptedInPercent": {
|
|
3607
|
+
"type": "number"
|
|
3587
3608
|
}
|
|
3588
3609
|
}
|
|
3589
3610
|
},
|
|
@@ -3646,6 +3667,9 @@ export const data = {
|
|
|
3646
3667
|
},
|
|
3647
3668
|
"mau30": {
|
|
3648
3669
|
"type": "number"
|
|
3670
|
+
},
|
|
3671
|
+
"reachable": {
|
|
3672
|
+
"type": "number"
|
|
3649
3673
|
}
|
|
3650
3674
|
}
|
|
3651
3675
|
},
|
package/package.json
CHANGED
|
@@ -63,6 +63,16 @@ export type GetAudienceFunnelResponse = {
|
|
|
63
63
|
activeReachable: number;
|
|
64
64
|
/** window of the active_reachable step, in days */
|
|
65
65
|
activeReachableWindowDays: number;
|
|
66
|
+
reachableActivePercent: number;
|
|
67
|
+
/** reachable, but no application open within the active_reachable window */
|
|
68
|
+
reachableDormant: number;
|
|
69
|
+
reachableDormantPercent: number;
|
|
70
|
+
/** token present, system permission revoked */
|
|
71
|
+
permissionOff: number;
|
|
72
|
+
permissionOffPercent: number;
|
|
73
|
+
/** no push token at all, including the email and sms only audience */
|
|
74
|
+
neverOptedIn: number;
|
|
75
|
+
neverOptedInPercent: number;
|
|
66
76
|
};
|
|
67
77
|
export type GetReachByPlatformRequest = {
|
|
68
78
|
applicationCode: string;
|
|
@@ -90,6 +100,8 @@ export type GetActiveTrendResponse_Point = {
|
|
|
90
100
|
dau: number;
|
|
91
101
|
/** unique users who opened the application within the rolling 30 days */
|
|
92
102
|
mau30: number;
|
|
103
|
+
/** users with push permission and a valid token on that day, a snapshot */
|
|
104
|
+
reachable: number;
|
|
93
105
|
};
|
|
94
106
|
export type GetActiveTrendResponse = {
|
|
95
107
|
/**
|