@pushwoosh/rpc-gateway-statistics-api 1.3.804 → 1.3.805

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
@@ -2231,6 +2231,9 @@ export const data = {
2231
2231
  },
2232
2232
  "linkId": {
2233
2233
  "type": "string"
2234
+ },
2235
+ "totalClicks": {
2236
+ "type": "number"
2234
2237
  }
2235
2238
  }
2236
2239
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.804",
3
+ "version": "1.3.805",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -928,6 +928,8 @@ export type GetEmailLinkStatisticsResponseItem = {
928
928
  fullLinks: FullLinkStatistics[];
929
929
  /** stable anchor id (data-pw-lid); empty for clicks from unstamped templates */
930
930
  linkId: string;
931
+ /** every click, where `clicks` counts unique devices */
932
+ totalClicks: number;
931
933
  };
932
934
  export type GetEmailLinkStatisticsResponse = {
933
935
  items: GetEmailLinkStatisticsResponseItem[];