@pushwoosh/rpc-gateway-statistics-api 1.3.786 → 1.3.788
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
CHANGED
|
@@ -32,13 +32,13 @@ export type GetOverviewKPIResponse = {
|
|
|
32
32
|
day: Date;
|
|
33
33
|
/** users with at least one device that has push permission and a valid token */
|
|
34
34
|
reachable: number;
|
|
35
|
-
/** reachable change over growth_period_days, in percent */
|
|
35
|
+
/** reachable change over growth_period_days, in percent, rounded to two decimals */
|
|
36
36
|
netReachableGrowthPercent: number;
|
|
37
37
|
/** unique users who opened the application that day */
|
|
38
38
|
dau: number;
|
|
39
39
|
/** unique users who opened the application within the rolling 30 days */
|
|
40
40
|
mau30: number;
|
|
41
|
-
/** dau over mau_30, in percent */
|
|
41
|
+
/** dau over mau_30, in percent, rounded to two decimals */
|
|
42
42
|
stickinessPercent: number;
|
|
43
43
|
/** users reached by push, email, SMS or WhatsApp in the rolling 30 days */
|
|
44
44
|
unifiedMau30: number;
|
|
@@ -107,6 +107,7 @@ export type GetRetentionCurveResponse_Point = {
|
|
|
107
107
|
dayN: number;
|
|
108
108
|
cohortSize: number;
|
|
109
109
|
retained: number;
|
|
110
|
+
/** retained over cohort_size, in percent, rounded to two decimals */
|
|
110
111
|
retentionPercent: number;
|
|
111
112
|
};
|
|
112
113
|
export type GetRetentionCurveResponse = {
|