@pushwoosh/rpc-gateway-statistics-api 1.3.703 → 1.3.704
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/package.json
CHANGED
|
@@ -466,10 +466,17 @@ export type GetFrequencyCappingTotalStatisticsCPRequest = {
|
|
|
466
466
|
applicationCode: string;
|
|
467
467
|
timestampFrom: string;
|
|
468
468
|
timestampTo: string;
|
|
469
|
+
interval: pushwoosh_statistics_types_TimeInterval;
|
|
470
|
+
};
|
|
471
|
+
export type FrequencyCappingMetricWithTimestamp = {
|
|
472
|
+
timestamp: string;
|
|
473
|
+
frequencyCappingSuppressions: number;
|
|
474
|
+
frequencyCappingUniqueUsers: number;
|
|
469
475
|
};
|
|
470
476
|
export type GetFrequencyCappingTotalStatisticsCPResponse = {
|
|
471
477
|
frequencyCappingSuppressions: number;
|
|
472
478
|
frequencyCappingUniqueUsers: number;
|
|
479
|
+
rows: FrequencyCappingMetricWithTimestamp[];
|
|
473
480
|
};
|
|
474
481
|
export type GetUsersPAEStatisticsCPRequest = {
|
|
475
482
|
applicationCode: string;
|