@pushwoosh/rpc-gateway-statistics-api 1.3.782 → 1.3.783
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
|
@@ -14,12 +14,9 @@ export type GetOverviewKPIResponse = {
|
|
|
14
14
|
netReachableGrowthPercent: number;
|
|
15
15
|
/** unique users who opened the application that day */
|
|
16
16
|
dau: number;
|
|
17
|
-
/** users
|
|
17
|
+
/** unique users who opened the application within the rolling 30 days */
|
|
18
18
|
mau30: number;
|
|
19
|
-
/**
|
|
20
|
-
* dau over the untokened monthly count, in percent: both sides of the ratio
|
|
21
|
-
* share one definition, and dau has no token-filtered counterpart
|
|
22
|
-
*/
|
|
19
|
+
/** dau over mau_30, in percent */
|
|
23
20
|
stickinessPercent: number;
|
|
24
21
|
/** users reached by push, email, SMS or WhatsApp in the rolling 30 days */
|
|
25
22
|
unifiedMau30: number;
|
|
@@ -69,7 +66,7 @@ export type GetActiveTrendRequest = {
|
|
|
69
66
|
export type GetActiveTrendResponse_Point = {
|
|
70
67
|
day: Date;
|
|
71
68
|
dau: number;
|
|
72
|
-
/** users
|
|
69
|
+
/** unique users who opened the application within the rolling 30 days */
|
|
73
70
|
mau30: number;
|
|
74
71
|
};
|
|
75
72
|
export type GetActiveTrendResponse = {
|