@pushwoosh/rpc-gateway-statistics-api 1.3.791 → 1.3.792

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
@@ -3579,6 +3579,9 @@ export const data = {
3579
3579
  "totalUsers": {
3580
3580
  "type": "number"
3581
3581
  },
3582
+ "usersWithPushDevice": {
3583
+ "type": "number"
3584
+ },
3582
3585
  "subscribers": {
3583
3586
  "type": "number"
3584
3587
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.791",
3
+ "version": "1.3.792",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -58,6 +58,8 @@ export type GetAudienceFunnelResponse = {
58
58
  day: Date;
59
59
  /** all users of the application */
60
60
  totalUsers: number;
61
+ /** users with at least one push device, with or without a token */
62
+ usersWithPushDevice: number;
61
63
  /** users with at least one push device holding a valid token */
62
64
  subscribers: number;
63
65
  /** users with push permission and a valid token */
@@ -73,7 +75,7 @@ export type GetAudienceFunnelResponse = {
73
75
  /** token present, system permission revoked */
74
76
  permissionOff: number;
75
77
  permissionOffPercent: number;
76
- /** no push token at all, including the email and sms only audience */
78
+ /** has a push device but no token at all */
77
79
  neverOptedIn: number;
78
80
  neverOptedInPercent: number;
79
81
  };