@pushwoosh/rpc-v2-http-api-data 0.2.183 → 0.2.185

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.
Files changed (3) hide show
  1. package/data.js +3 -0
  2. package/events.d.ts +2 -0
  3. package/package.json +1 -1
package/data.js CHANGED
@@ -11704,6 +11704,9 @@ export const data = {
11704
11704
  "metrics": {
11705
11705
  "type": "pushwoosh.rpc_v2.events.GetTotalStatisticsResponse.EventTriggeredCount",
11706
11706
  "array": true
11707
+ },
11708
+ "totalUniqTriggeredCount": {
11709
+ "type": "number"
11707
11710
  }
11708
11711
  }
11709
11712
  },
package/events.d.ts CHANGED
@@ -220,4 +220,6 @@ export type GetTotalStatisticsResponse_EventTriggeredCount = {
220
220
  };
221
221
  export type GetTotalStatisticsResponse = {
222
222
  metrics: GetTotalStatisticsResponse_EventTriggeredCount[];
223
+ /** Distinct users across all events at once; metrics are per event, so summing their uniq counts double-counts. */
224
+ totalUniqTriggeredCount: number;
223
225
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.183",
3
+ "version": "0.2.185",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",