@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
@@ -2304,6 +2304,9 @@ export const data = {
2304
2304
  },
2305
2305
  "totalPushTaps": {
2306
2306
  "type": "number"
2307
+ },
2308
+ "pushSends": {
2309
+ "type": "number"
2307
2310
  }
2308
2311
  }
2309
2312
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.824",
3
+ "version": "1.3.825",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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 them */
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[];