@pushwoosh/rpc-gateway-statistics-api 1.3.818 → 1.3.819

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
@@ -281,6 +281,12 @@ export const data = {
281
281
  "response": "pushwoosh.statistics.statistics.v1.GetEmailLinkStatisticsResponse",
282
282
  "method": "post",
283
283
  "path": "/api/v2/statistics/emails/linksInteractions"
284
+ },
285
+ "GetAdCampaignStatistics": {
286
+ "request": "pushwoosh.statistics.statistics.v1.GetAdCampaignStatisticsRequest",
287
+ "response": "pushwoosh.statistics.statistics.v1.GetAdCampaignStatisticsResponse",
288
+ "method": "post",
289
+ "path": "/api/v2/statistics/emails/adCampaign"
284
290
  }
285
291
  }
286
292
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.818",
3
+ "version": "1.3.819",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -33,6 +33,7 @@ export type StatisticsService_GetMessagesFunnelStatisticsCP = RpcMethod<GetMessa
33
33
  export type StatisticsService_GetFrequencyCappingTotalStatisticsCP = RpcMethod<GetFrequencyCappingTotalStatisticsCPRequest, GetFrequencyCappingTotalStatisticsCPResponse>;
34
34
  export type StatisticsService_GetUsersPAEStatisticsCP = RpcMethod<GetUsersPAEStatisticsCPRequest, GetUsersPAEStatisticsCPResponse>;
35
35
  export type StatisticsService_GetEmailLinkStatistics = RpcMethod<GetEmailLinkStatisticsRequest, GetEmailLinkStatisticsResponse>;
36
+ export type StatisticsService_GetAdCampaignStatistics = RpcMethod<GetAdCampaignStatisticsRequest, GetAdCampaignStatisticsResponse>;
36
37
  /** StatisticsService provides statistics operations for messages, campaigns, and applications */
37
38
  export interface StatisticsService {
38
39
  /** TODO: delete? */
@@ -97,6 +98,8 @@ export interface StatisticsService {
97
98
  GetUsersPAEStatisticsCP: StatisticsService_GetUsersPAEStatisticsCP;
98
99
  /** GetEmailLinkStatistics returns email link click statistics with optional full link details */
99
100
  GetEmailLinkStatistics: StatisticsService_GetEmailLinkStatistics;
101
+ /** GetAdCampaignStatistics returns per-creative results of an ad campaign sold in emails */
102
+ GetAdCampaignStatistics: StatisticsService_GetAdCampaignStatistics;
100
103
  }
101
104
  /** StatisticsByApplicationIDRequest represents a request for application statistics */
102
105
  export type StatisticsByApplicationIDRequest = {