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

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,9 @@ export const data = {
2228
2228
  "fullLinks": {
2229
2229
  "type": "pushwoosh.statistics.statistics.v1.FullLinkStatistics",
2230
2230
  "array": true
2231
+ },
2232
+ "linkId": {
2233
+ "type": "string"
2231
2234
  }
2232
2235
  }
2233
2236
  },
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.804",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -926,6 +926,8 @@ 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;
929
931
  };
930
932
  export type GetEmailLinkStatisticsResponse = {
931
933
  items: GetEmailLinkStatisticsResponseItem[];