@pushwoosh/rpc-gateway-statistics-api 1.3.781 → 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/data.js CHANGED
@@ -3686,8 +3686,8 @@ export const data = {
3686
3686
  "unifiedMau30": {
3687
3687
  "type": "number"
3688
3688
  },
3689
- "dataAvailable": {
3690
- "type": "boolean"
3689
+ "activeWithToken30": {
3690
+ "type": "number"
3691
3691
  }
3692
3692
  }
3693
3693
  },
@@ -5299,6 +5299,9 @@ export const data = {
5299
5299
  },
5300
5300
  "windowDays": {
5301
5301
  "type": "pushwoosh.statistics.statistics.v2.statistics.GetControlGroupAnalyticsRequest.WindowDays"
5302
+ },
5303
+ "controlGroup": {
5304
+ "type": "string"
5302
5305
  }
5303
5306
  }
5304
5307
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.781",
3
+ "version": "1.3.783",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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 with a valid push token who opened it within the rolling 30 days */
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 with a valid push token who opened it within the rolling 30 days */
69
+ /** unique users who opened the application within the rolling 30 days */
73
70
  mau30: number;
74
71
  };
75
72
  export type GetActiveTrendResponse = {
@@ -103,15 +100,12 @@ export type GetMAUOverviewRequest = {
103
100
  export type GetMAUOverviewResponse = {
104
101
  day: Date;
105
102
  /**
106
- * sum of the per-application counts of users with a valid push token; a user
107
- * active in two applications of the account is counted in each of them
103
+ * sum of the per-application 30-day audience; a user active in two
104
+ * applications of the account is counted in each of them
108
105
  */
109
106
  mau30: number;
110
107
  /** same sum for the unified count: opens plus delivered email, SMS and WhatsApp */
111
108
  unifiedMau30: number;
112
- /**
113
- * false when the day carries no row, or carries activity with an empty token
114
- * column, so that a zero is never read as a measured zero
115
- */
116
- dataAvailable: boolean;
109
+ /** same sum restricted to users holding a valid push token */
110
+ activeWithToken30: number;
117
111
  };
@@ -1081,6 +1081,11 @@ export type GetControlGroupAnalyticsRequest = {
1081
1081
  application: string;
1082
1082
  /** Analytics window preset */
1083
1083
  windowDays: GetControlGroupAnalyticsRequest_WindowDays;
1084
+ /**
1085
+ * Control group code to report on. Empty returns the rows written before
1086
+ * control groups had codes, which is the application's only group.
1087
+ */
1088
+ controlGroup: string;
1084
1089
  };
1085
1090
  /** ControlGroupAnalyticsGroup contains metrics for one side of the experiment (treatment or control) */
1086
1091
  export type ControlGroupAnalyticsGroup = {