@pushwoosh/rpc-gateway-statistics-api 1.3.812 → 1.3.814

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
@@ -3601,6 +3601,12 @@ export const data = {
3601
3601
  "response": "pushwoosh.statistics.statistics.v2.overviewkpi.GetBaseChangeResponse",
3602
3602
  "method": "post",
3603
3603
  "path": "/api/v2/statistics/overview/getBaseChange"
3604
+ },
3605
+ "GetUserMessageMetrics": {
3606
+ "request": "pushwoosh.statistics.statistics.v2.overviewkpi.GetUserMessageMetricsRequest",
3607
+ "response": "pushwoosh.statistics.statistics.v2.overviewkpi.GetUserMessageMetricsResponse",
3608
+ "method": "post",
3609
+ "path": "/api/v2/statistics/overview/getUserMessageMetrics"
3604
3610
  }
3605
3611
  }
3606
3612
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.812",
3
+ "version": "1.3.814",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -5,6 +5,7 @@ export type OverviewKPIService_GetReachByPlatform = RpcMethod<GetReachByPlatform
5
5
  export type OverviewKPIService_GetActiveTrend = RpcMethod<GetActiveTrendRequest, GetActiveTrendResponse>;
6
6
  export type OverviewKPIService_GetRetentionCurve = RpcMethod<GetRetentionCurveRequest, GetRetentionCurveResponse>;
7
7
  export type OverviewKPIService_GetBaseChange = RpcMethod<GetBaseChangeRequest, GetBaseChangeResponse>;
8
+ export type OverviewKPIService_GetUserMessageMetrics = RpcMethod<GetUserMessageMetricsRequest, GetUserMessageMetricsResponse>;
8
9
  /**
9
10
  * OverviewKPIService serves the user-level Overview tab. Every method reads the
10
11
  * pre-aggregated daily tables only, never the raw actions log.
@@ -22,6 +23,8 @@ export interface OverviewKPIService {
22
23
  GetRetentionCurve: OverviewKPIService_GetRetentionCurve;
23
24
  /** GetBaseChange returns how the push device base moved over a period. */
24
25
  GetBaseChange: OverviewKPIService_GetBaseChange;
26
+ /** GetUserMessageMetrics returns the Performance numbers counted in users. */
27
+ GetUserMessageMetrics: OverviewKPIService_GetUserMessageMetrics;
25
28
  }
26
29
  export type GetOverviewKPIRequest = {
27
30
  applicationCode: string;