@pushwoosh/rpc-gateway-statistics-api 1.3.789 → 1.3.790

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
@@ -3584,6 +3584,27 @@ export const data = {
3584
3584
  },
3585
3585
  "activeReachableWindowDays": {
3586
3586
  "type": "number"
3587
+ },
3588
+ "reachableActivePercent": {
3589
+ "type": "number"
3590
+ },
3591
+ "reachableDormant": {
3592
+ "type": "number"
3593
+ },
3594
+ "reachableDormantPercent": {
3595
+ "type": "number"
3596
+ },
3597
+ "permissionOff": {
3598
+ "type": "number"
3599
+ },
3600
+ "permissionOffPercent": {
3601
+ "type": "number"
3602
+ },
3603
+ "neverOptedIn": {
3604
+ "type": "number"
3605
+ },
3606
+ "neverOptedInPercent": {
3607
+ "type": "number"
3587
3608
  }
3588
3609
  }
3589
3610
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.789",
3
+ "version": "1.3.790",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -63,6 +63,16 @@ export type GetAudienceFunnelResponse = {
63
63
  activeReachable: number;
64
64
  /** window of the active_reachable step, in days */
65
65
  activeReachableWindowDays: number;
66
+ reachableActivePercent: number;
67
+ /** reachable, but no application open within the active_reachable window */
68
+ reachableDormant: number;
69
+ reachableDormantPercent: number;
70
+ /** token present, system permission revoked */
71
+ permissionOff: number;
72
+ permissionOffPercent: number;
73
+ /** no push token at all, including the email and sms only audience */
74
+ neverOptedIn: number;
75
+ neverOptedInPercent: number;
66
76
  };
67
77
  export type GetReachByPlatformRequest = {
68
78
  applicationCode: string;