@pushwoosh/rpc-gateway-statistics-api 1.3.823 → 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
@@ -2298,6 +2298,15 @@ export const data = {
2298
2298
  },
2299
2299
  "messages": {
2300
2300
  "type": "number"
2301
+ },
2302
+ "pushTaps": {
2303
+ "type": "number"
2304
+ },
2305
+ "totalPushTaps": {
2306
+ "type": "number"
2307
+ },
2308
+ "pushSends": {
2309
+ "type": "number"
2301
2310
  }
2302
2311
  }
2303
2312
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.823",
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,19 +952,30 @@ 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;
970
+ /**
971
+ * A push has no link click of its own: what a recipient does with it is a tap,
972
+ * counted apart from the banner clicks of a letter.
973
+ */
974
+ pushTaps: number;
975
+ /** every tap on it */
976
+ totalPushTaps: number;
977
+ /** pushes of those sends */
978
+ pushSends: number;
968
979
  };
969
980
  export type GetAdCampaignStatisticsResponse = {
970
981
  items: AdCampaignStatisticsItem[];