@pushwoosh/rpc-gateway-statistics-api 1.3.693 → 1.3.694
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
|
@@ -219,6 +219,12 @@ export const data = {
|
|
|
219
219
|
"method": "post",
|
|
220
220
|
"path": "/api/v2/statistics/messages/getMessagesFunnelStatistics"
|
|
221
221
|
},
|
|
222
|
+
"GetFrequencyCappingTotalStatisticsCP": {
|
|
223
|
+
"request": "pushwoosh.statistics.statistics.v1.GetFrequencyCappingTotalStatisticsCPRequest",
|
|
224
|
+
"response": "pushwoosh.statistics.statistics.v1.GetFrequencyCappingTotalStatisticsCPResponse",
|
|
225
|
+
"method": "post",
|
|
226
|
+
"path": "/api/v2/statistics/frequencyCapping/getTotalStatistics"
|
|
227
|
+
},
|
|
222
228
|
"GetUsersPAEStatisticsCP": {
|
|
223
229
|
"request": "pushwoosh.statistics.statistics.v1.GetUsersPAEStatisticsCPRequest",
|
|
224
230
|
"response": "pushwoosh.statistics.statistics.v1.GetUsersPAEStatisticsCPResponse",
|
package/package.json
CHANGED
|
@@ -24,6 +24,7 @@ export type StatisticsService_GetRetentionTotalStatisticsCP = RpcMethod<GetReten
|
|
|
24
24
|
export type StatisticsService_GetEngagementTotalStatisticsCP = RpcMethod<GetEngagementTotalStatisticsCPRequest, GetEngagementTotalStatisticsCPResponse>;
|
|
25
25
|
export type StatisticsService_GetActiveUsersTotalStatisticsCP = RpcMethod<GetActiveUsersTotalStatisticsCPRequest, GetActiveUsersTotalStatisticsCPResponse>;
|
|
26
26
|
export type StatisticsService_GetMessagesFunnelStatisticsCP = RpcMethod<GetMessagesFunnelStatisticsCPRequest, GetMessagesFunnelStatisticsCPResponse>;
|
|
27
|
+
export type StatisticsService_GetFrequencyCappingTotalStatisticsCP = RpcMethod<GetFrequencyCappingTotalStatisticsCPRequest, GetFrequencyCappingTotalStatisticsCPResponse>;
|
|
27
28
|
export type StatisticsService_GetUsersPAEStatisticsCP = RpcMethod<GetUsersPAEStatisticsCPRequest, GetUsersPAEStatisticsCPResponse>;
|
|
28
29
|
/** StatisticsService provides statistics operations for messages, campaigns, and applications */
|
|
29
30
|
export interface StatisticsService {
|
|
@@ -71,6 +72,8 @@ export interface StatisticsService {
|
|
|
71
72
|
GetActiveUsersTotalStatisticsCP: StatisticsService_GetActiveUsersTotalStatisticsCP;
|
|
72
73
|
/** GetMessagesFunnelStatisticsCP returns message funnel conversion statistics */
|
|
73
74
|
GetMessagesFunnelStatisticsCP: StatisticsService_GetMessagesFunnelStatisticsCP;
|
|
75
|
+
/** GetFrequencyCappingTotalStatisticsCP returns frequency capping totals for the application across all channels for the period */
|
|
76
|
+
GetFrequencyCappingTotalStatisticsCP: StatisticsService_GetFrequencyCappingTotalStatisticsCP;
|
|
74
77
|
/** GetUsersPAEStatisticsCP returns Push Active Enabled (PAE) user statistics */
|
|
75
78
|
GetUsersPAEStatisticsCP: StatisticsService_GetUsersPAEStatisticsCP;
|
|
76
79
|
}
|