@pushwoosh/rpc-gateway-statistics-api 1.3.780 → 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
|
-
"
|
|
3690
|
-
"type": "
|
|
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
|
@@ -103,15 +103,12 @@ export type GetMAUOverviewRequest = {
|
|
|
103
103
|
export type GetMAUOverviewResponse = {
|
|
104
104
|
day: Date;
|
|
105
105
|
/**
|
|
106
|
-
* sum of the per-application
|
|
107
|
-
*
|
|
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
|
-
|
|
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 = {
|