@pushwoosh/rpc-gateway-statistics-api 1.3.823 → 1.3.824

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,12 @@ export const data = {
2298
2298
  },
2299
2299
  "messages": {
2300
2300
  "type": "number"
2301
+ },
2302
+ "pushTaps": {
2303
+ "type": "number"
2304
+ },
2305
+ "totalPushTaps": {
2306
+ "type": "number"
2301
2307
  }
2302
2308
  }
2303
2309
  },
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.824",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -965,6 +965,13 @@ export type AdCampaignStatisticsItem = {
965
965
  totalClicks: number;
966
966
  /** sends the creative was attached to */
967
967
  messages: number;
968
+ /**
969
+ * A push has no link click of its own: what a recipient does with it is a tap,
970
+ * counted apart from the banner clicks of a letter.
971
+ */
972
+ pushTaps: number;
973
+ /** every tap on it */
974
+ totalPushTaps: number;
968
975
  };
969
976
  export type GetAdCampaignStatisticsResponse = {
970
977
  items: AdCampaignStatisticsItem[];