@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
package/package.json
CHANGED
|
@@ -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
|
-
/**
|
|
78
|
+
/** has a push device but no token at all */
|
|
77
79
|
neverOptedIn: number;
|
|
78
80
|
neverOptedInPercent: number;
|
|
79
81
|
};
|