@pushwoosh/rpc-gateway-statistics-api 1.3.824 → 1.3.825
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
package/package.json
CHANGED
|
@@ -952,18 +952,20 @@ export type GetAdCampaignStatisticsRequest = {
|
|
|
952
952
|
/**
|
|
953
953
|
* One row per creative of the campaign. Opens are opens of the letters that
|
|
954
954
|
* carried it: the creative is chosen once per send, so the send is the unit.
|
|
955
|
+
* Every counter here belongs to ONE channel: a campaign sold in letters and in
|
|
956
|
+
* pushes at once would otherwise report an open rate over two different things.
|
|
955
957
|
*/
|
|
956
958
|
export type AdCampaignStatisticsItem = {
|
|
957
959
|
creativeId: number;
|
|
958
960
|
/** letters of those sends */
|
|
959
961
|
sends: number;
|
|
960
|
-
/** unique devices that opened
|
|
962
|
+
/** unique devices that opened a letter */
|
|
961
963
|
opens: number;
|
|
962
964
|
/** unique devices that clicked the banner */
|
|
963
965
|
clicks: number;
|
|
964
966
|
/** every click on the banner */
|
|
965
967
|
totalClicks: number;
|
|
966
|
-
/** sends the creative was attached to */
|
|
968
|
+
/** sends the creative was attached to, both channels */
|
|
967
969
|
messages: number;
|
|
968
970
|
/**
|
|
969
971
|
* A push has no link click of its own: what a recipient does with it is a tap,
|
|
@@ -972,6 +974,8 @@ export type AdCampaignStatisticsItem = {
|
|
|
972
974
|
pushTaps: number;
|
|
973
975
|
/** every tap on it */
|
|
974
976
|
totalPushTaps: number;
|
|
977
|
+
/** pushes of those sends */
|
|
978
|
+
pushSends: number;
|
|
975
979
|
};
|
|
976
980
|
export type GetAdCampaignStatisticsResponse = {
|
|
977
981
|
items: AdCampaignStatisticsItem[];
|