@pushwoosh/rpc-gateway-statistics-api 1.3.801 → 1.3.802

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
@@ -260,6 +260,12 @@ export const data = {
260
260
  "response": "pushwoosh.statistics.statistics.v1.GetUsersPAEStatisticsCPResponse",
261
261
  "method": "post",
262
262
  "path": "/api/v2/statistics/audience/getUsersPAEStatistics"
263
+ },
264
+ "GetEmailLinkStatistics": {
265
+ "request": "pushwoosh.statistics.statistics.v1.GetEmailLinkStatisticsRequest",
266
+ "response": "pushwoosh.statistics.statistics.v1.GetEmailLinkStatisticsResponse",
267
+ "method": "post",
268
+ "path": "/api/v2/statistics/emails/linksInteractions"
263
269
  }
264
270
  }
265
271
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.801",
3
+ "version": "1.3.802",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -31,6 +31,7 @@ export type StatisticsService_GetActiveUsersTotalStatisticsCP = RpcMethod<GetAct
31
31
  export type StatisticsService_GetMessagesFunnelStatisticsCP = RpcMethod<GetMessagesFunnelStatisticsCPRequest, GetMessagesFunnelStatisticsCPResponse>;
32
32
  export type StatisticsService_GetFrequencyCappingTotalStatisticsCP = RpcMethod<GetFrequencyCappingTotalStatisticsCPRequest, GetFrequencyCappingTotalStatisticsCPResponse>;
33
33
  export type StatisticsService_GetUsersPAEStatisticsCP = RpcMethod<GetUsersPAEStatisticsCPRequest, GetUsersPAEStatisticsCPResponse>;
34
+ export type StatisticsService_GetEmailLinkStatistics = RpcMethod<GetEmailLinkStatisticsRequest, GetEmailLinkStatisticsResponse>;
34
35
  /** StatisticsService provides statistics operations for messages, campaigns, and applications */
35
36
  export interface StatisticsService {
36
37
  /** TODO: delete? */
@@ -91,6 +92,8 @@ export interface StatisticsService {
91
92
  GetFrequencyCappingTotalStatisticsCP: StatisticsService_GetFrequencyCappingTotalStatisticsCP;
92
93
  /** GetUsersPAEStatisticsCP returns Push Active Enabled (PAE) user statistics */
93
94
  GetUsersPAEStatisticsCP: StatisticsService_GetUsersPAEStatisticsCP;
95
+ /** GetEmailLinkStatistics returns email link click statistics with optional full link details */
96
+ GetEmailLinkStatistics: StatisticsService_GetEmailLinkStatistics;
94
97
  }
95
98
  /** StatisticsByApplicationIDRequest represents a request for application statistics */
96
99
  export type StatisticsByApplicationIDRequest = {