@pushwoosh/rpc-gateway-statistics-api 1.3.777 → 1.3.778

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.777",
3
+ "version": "1.3.778",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -14,9 +14,12 @@ export type GetOverviewKPIResponse = {
14
14
  netReachableGrowthPercent: number;
15
15
  /** unique users who opened the application that day */
16
16
  dau: number;
17
- /** unique users who opened it within the rolling 30 days ending that day */
17
+ /** users with a valid push token who opened it within the rolling 30 days */
18
18
  mau30: number;
19
- /** dau / mau_30, in percent */
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
+ */
20
23
  stickinessPercent: number;
21
24
  /** users reached by push, email, SMS or WhatsApp in the rolling 30 days */
22
25
  unifiedMau30: number;
@@ -99,15 +102,15 @@ export type GetMAUOverviewRequest = {
99
102
  export type GetMAUOverviewResponse = {
100
103
  day: Date;
101
104
  /**
102
- * sum of the per-application rolling-30 counts; a user active in two
103
- * applications of the account is counted in each of them
105
+ * sum of the per-application counts of users with a valid push token; a user
106
+ * active in two applications of the account is counted in each of them
104
107
  */
105
108
  mau30: number;
106
109
  /** same sum for the unified count: opens plus delivered email, SMS and WhatsApp */
107
110
  unifiedMau30: number;
108
111
  /**
109
- * false when the day carries no row for any of the applications, so that a
110
- * zero is never read as a measured zero
112
+ * false when the day carries no row, or carries activity with an empty token
113
+ * column, so that a zero is never read as a measured zero
111
114
  */
112
115
  dataAvailable: boolean;
113
116
  };