@pushwoosh/rpc-gateway-statistics-api 1.3.803 → 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
@@ -2228,6 +2228,12 @@ export const data = {
2228
2228
  "fullLinks": {
2229
2229
  "type": "pushwoosh.statistics.statistics.v1.FullLinkStatistics",
2230
2230
  "array": true
2231
+ },
2232
+ "linkId": {
2233
+ "type": "string"
2234
+ },
2235
+ "totalClicks": {
2236
+ "type": "number"
2231
2237
  }
2232
2238
  }
2233
2239
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.803",
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",
@@ -926,6 +926,10 @@ export type GetEmailLinkStatisticsResponseItem = {
926
926
  title: string;
927
927
  clicks: number;
928
928
  fullLinks: FullLinkStatistics[];
929
+ /** stable anchor id (data-pw-lid); empty for clicks from unstamped templates */
930
+ linkId: string;
931
+ /** every click, where `clicks` counts unique devices */
932
+ totalClicks: number;
929
933
  };
930
934
  export type GetEmailLinkStatisticsResponse = {
931
935
  items: GetEmailLinkStatisticsResponseItem[];