@pushwoosh/rpc-gateway-statistics-api 1.3.787 → 1.3.789

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
@@ -3646,6 +3646,9 @@ export const data = {
3646
3646
  },
3647
3647
  "mau30": {
3648
3648
  "type": "number"
3649
+ },
3650
+ "reachable": {
3651
+ "type": "number"
3649
3652
  }
3650
3653
  }
3651
3654
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.787",
3
+ "version": "1.3.789",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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;
@@ -90,6 +90,8 @@ export type GetActiveTrendResponse_Point = {
90
90
  dau: number;
91
91
  /** unique users who opened the application within the rolling 30 days */
92
92
  mau30: number;
93
+ /** users with push permission and a valid token on that day, a snapshot */
94
+ reachable: number;
93
95
  };
94
96
  export type GetActiveTrendResponse = {
95
97
  /**
@@ -107,6 +109,7 @@ export type GetRetentionCurveResponse_Point = {
107
109
  dayN: number;
108
110
  cohortSize: number;
109
111
  retained: number;
112
+ /** retained over cohort_size, in percent, rounded to two decimals */
110
113
  retentionPercent: number;
111
114
  };
112
115
  export type GetRetentionCurveResponse = {