@pushwoosh/rpc-gateway-statistics-api 1.3.703 → 1.3.705

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.703",
3
+ "version": "1.3.705",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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;