@pushwoosh/rpc-gateway-statistics-api 1.3.708 → 1.3.709

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
@@ -938,6 +938,14 @@ export const data = {
938
938
  },
939
939
  "interval": {
940
940
  "type": "pushwoosh.statistics.types.TimeInterval"
941
+ },
942
+ "inappCodes": {
943
+ "type": "string",
944
+ "array": true
945
+ },
946
+ "richMediaCodes": {
947
+ "type": "string",
948
+ "array": true
941
949
  }
942
950
  }
943
951
  },
@@ -990,6 +998,12 @@ export const data = {
990
998
  "totals": {
991
999
  "type": "pushwoosh.statistics.statistics.v1.PlatformMetricCount",
992
1000
  "array": true
1001
+ },
1002
+ "frequencyCappingSuppressions": {
1003
+ "type": "number"
1004
+ },
1005
+ "frequencyCappingUniqueUsers": {
1006
+ "type": "number"
993
1007
  }
994
1008
  }
995
1009
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.708",
3
+ "version": "1.3.709",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -363,6 +363,8 @@ export type GetInappTotalStatisticsCPRequest = {
363
363
  timestampFrom: string;
364
364
  timestampTo: string;
365
365
  interval: pushwoosh_statistics_types_TimeInterval;
366
+ inappCodes: string[];
367
+ richMediaCodes: string[];
366
368
  };
367
369
  export type CountPercent = {
368
370
  count: number;
@@ -381,6 +383,8 @@ export type PlatformMetricCount = {
381
383
  export type GetInappTotalStatisticsCPResponse = {
382
384
  rows: MetricCountPercentWithTimestampPlatformID[];
383
385
  totals: PlatformMetricCount[];
386
+ frequencyCappingSuppressions: number;
387
+ frequencyCappingUniqueUsers: number;
384
388
  };
385
389
  export type GetEmailClicksTotalStatisticsCPRequest = {
386
390
  applicationCode: string;