@pushwoosh/rpc-gateway-statistics-api 1.3.781 → 1.3.782

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.782",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -103,15 +103,12 @@ export type GetMAUOverviewRequest = {
103
103
  export type GetMAUOverviewResponse = {
104
104
  day: Date;
105
105
  /**
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
106
+ * sum of the per-application 30-day audience; a user active in two
107
+ * applications of the account is counted in each of them
108
108
  */
109
109
  mau30: number;
110
110
  /** same sum for the unified count: opens plus delivered email, SMS and WhatsApp */
111
111
  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;
112
+ /** same sum restricted to users holding a valid push token */
113
+ activeWithToken30: number;
117
114
  };
@@ -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 = {