@pushwoosh/rpc-v2-http-api-data 0.2.153 → 0.2.154

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.
@@ -31,7 +31,7 @@ export interface ApplicationsControlGroupService {
31
31
  Disable: ApplicationsControlGroupService_Disable;
32
32
  /** Redraws the control group of an application: every user is assigned again, so the hold-out is a fresh sample of the same size. Use when the same users have been excluded from messaging for too long, and note that it restarts the measurement period. */
33
33
  Reshuffle: ApplicationsControlGroupService_Reshuffle;
34
- /** Kicks off a fresh recalculation of the application's user count, leaving the previously cached number in place until it finishes. Use to refresh a stale size on demand. */
34
+ /** Kicks off a fresh count of the application's users and of how many of them are held out, leaving the previously cached numbers in place until it finishes. Use to refresh stale sizes on demand. */
35
35
  ForceUpdateCalculation: ApplicationsControlGroupService_ForceUpdateCalculation;
36
36
  /** Returns just the counts and calculation status that change while a background size calc runs. Poll this on a timer instead of re-fetching get_control_group_settings. */
37
37
  GetCalculationStatus: ApplicationsControlGroupService_GetCalculationStatus;
@@ -48,7 +48,7 @@ export type GetSettingsResponse = {
48
48
  enabled: boolean;
49
49
  /** All users in the application */
50
50
  totalUsers: number;
51
- /** Users held out, derived from percentage and total_users */
51
+ /** Users held out, counted over the application */
52
52
  controlGroupUsers: number;
53
53
  calculationStatus: TaskStatus;
54
54
  /** Last time control group settings were modified */
@@ -97,7 +97,7 @@ export type GetCalculationStatusRequest = {
97
97
  export type GetCalculationStatusResponse = {
98
98
  /** All users in the application */
99
99
  totalUsers: number;
100
- /** Users held out, derived from percentage and total_users */
100
+ /** Users held out, counted over the application */
101
101
  controlGroupUsers: number;
102
102
  calculationStatus: TaskStatus;
103
103
  /** Whether cached size numbers are available */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.153",
3
+ "version": "0.2.154",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",