@pushwoosh/rpc-gateway-statistics-api 1.3.744 → 1.3.746
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
|
@@ -4167,7 +4167,8 @@ export const data = {
|
|
|
4167
4167
|
"values": [
|
|
4168
4168
|
"DELIVERIES_FORM_UNSPECIFIED",
|
|
4169
4169
|
"DELIVERIES_FORM_PER_DEVICE",
|
|
4170
|
-
"DELIVERIES_FORM_BASIC"
|
|
4170
|
+
"DELIVERIES_FORM_BASIC",
|
|
4171
|
+
"DELIVERIES_FORM_DISABLED"
|
|
4171
4172
|
]
|
|
4172
4173
|
},
|
|
4173
4174
|
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.BasicFormReason": {
|
package/package.json
CHANGED
|
@@ -629,13 +629,18 @@ export type GetDeliveryFunnelResponse_FunnelState = 'FUNNEL_STATE_UNSPECIFIED'
|
|
|
629
629
|
| 'FUNNEL_STATE_EXPIRED';
|
|
630
630
|
/**
|
|
631
631
|
* DeliveriesForm tells which breakdown STAGE_DELIVERIES carries. The forms count
|
|
632
|
-
* different sets, so their rows are not continuous.
|
|
632
|
+
* different sets, so their rows are not continuous.
|
|
633
633
|
*/
|
|
634
634
|
export type GetDeliveryFunnelResponse_DeliveriesForm = 'DELIVERIES_FORM_UNSPECIFIED'
|
|
635
635
|
/** three disjoint rows, alert state known */
|
|
636
636
|
| 'DELIVERIES_FORM_PER_DEVICE'
|
|
637
637
|
/** two rows, alert state unknown */
|
|
638
|
-
| 'DELIVERIES_FORM_BASIC'
|
|
638
|
+
| 'DELIVERIES_FORM_BASIC'
|
|
639
|
+
/**
|
|
640
|
+
* DISABLED: no rows, the account may not see push deliveries. The stage still
|
|
641
|
+
* counts accepted sends, so the funnel keeps its shape.
|
|
642
|
+
*/
|
|
643
|
+
| 'DELIVERIES_FORM_DISABLED';
|
|
639
644
|
/**
|
|
640
645
|
* BasicFormReason explains why the per-device breakdown is missing; set only in the
|
|
641
646
|
* basic form. NO_DELIVERIES is not NO_EVENTS — sends did happen.
|