@pushwoosh/rpc-gateway-statistics-api 1.3.797 → 1.3.799

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
@@ -3781,6 +3781,12 @@ export const data = {
3781
3781
  },
3782
3782
  "baseAvailable": {
3783
3783
  "type": "boolean"
3784
+ },
3785
+ "autoCleanup": {
3786
+ "type": "number"
3787
+ },
3788
+ "flowsFromDay": {
3789
+ "type": "Date"
3784
3790
  }
3785
3791
  }
3786
3792
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.797",
3
+ "version": "1.3.799",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -151,6 +151,13 @@ export type GetBaseChangeResponse = {
151
151
  expiredTokens: number;
152
152
  /** false when no snapshot exists for either end of the period */
153
153
  baseAvailable: boolean;
154
+ /** devices the nightly inactivity cleanup took the push token off */
155
+ autoCleanup: number;
156
+ /**
157
+ * day the flows are counted from: the backup trail keeps 60 days, so an older
158
+ * day_from is clamped and the three flows describe this shorter window
159
+ */
160
+ flowsFromDay: Date;
154
161
  };
155
162
  export type GetMAUOverviewRequest = {
156
163
  /** applications to sum over; ids of other accounts are ignored */