@pushwoosh/rpc-gateway-statistics-api 1.3.773 → 1.3.775
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
|
@@ -4632,8 +4632,7 @@ export const data = {
|
|
|
4632
4632
|
"values": [
|
|
4633
4633
|
"DELIVERIES_FORM_UNSPECIFIED",
|
|
4634
4634
|
"DELIVERIES_FORM_PER_DEVICE",
|
|
4635
|
-
"DELIVERIES_FORM_BASIC"
|
|
4636
|
-
"DELIVERIES_FORM_DISABLED"
|
|
4635
|
+
"DELIVERIES_FORM_BASIC"
|
|
4637
4636
|
]
|
|
4638
4637
|
},
|
|
4639
4638
|
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.BasicFormReason": {
|
|
@@ -4706,6 +4705,23 @@ export const data = {
|
|
|
4706
4705
|
}
|
|
4707
4706
|
}
|
|
4708
4707
|
},
|
|
4708
|
+
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.ErrorCode": {
|
|
4709
|
+
"type": "I",
|
|
4710
|
+
"fields": {
|
|
4711
|
+
"platform": {
|
|
4712
|
+
"type": "number"
|
|
4713
|
+
},
|
|
4714
|
+
"code": {
|
|
4715
|
+
"type": "number"
|
|
4716
|
+
},
|
|
4717
|
+
"name": {
|
|
4718
|
+
"type": "string"
|
|
4719
|
+
},
|
|
4720
|
+
"count": {
|
|
4721
|
+
"type": "number"
|
|
4722
|
+
}
|
|
4723
|
+
}
|
|
4724
|
+
},
|
|
4709
4725
|
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.ErrorRow": {
|
|
4710
4726
|
"type": "I",
|
|
4711
4727
|
"fields": {
|
|
@@ -4718,6 +4734,10 @@ export const data = {
|
|
|
4718
4734
|
"platforms": {
|
|
4719
4735
|
"type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.PlatformCount",
|
|
4720
4736
|
"array": true
|
|
4737
|
+
},
|
|
4738
|
+
"codes": {
|
|
4739
|
+
"type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.ErrorCode",
|
|
4740
|
+
"array": true
|
|
4721
4741
|
}
|
|
4722
4742
|
}
|
|
4723
4743
|
},
|
package/package.json
CHANGED
|
@@ -641,12 +641,7 @@ export type GetDeliveryFunnelResponse_DeliveriesForm = 'DELIVERIES_FORM_UNSPECIF
|
|
|
641
641
|
/** three disjoint rows, alert state known */
|
|
642
642
|
| 'DELIVERIES_FORM_PER_DEVICE'
|
|
643
643
|
/** two rows, alert state unknown */
|
|
644
|
-
| 'DELIVERIES_FORM_BASIC'
|
|
645
|
-
/**
|
|
646
|
-
* DISABLED: no rows, the account may not see push deliveries. The stage still
|
|
647
|
-
* counts accepted sends, so the funnel keeps its shape.
|
|
648
|
-
*/
|
|
649
|
-
| 'DELIVERIES_FORM_DISABLED';
|
|
644
|
+
| 'DELIVERIES_FORM_BASIC';
|
|
650
645
|
/**
|
|
651
646
|
* BasicFormReason explains why the per-device breakdown is missing; set only in the
|
|
652
647
|
* basic form. NO_DELIVERIES is not NO_EVENTS — sends did happen.
|
|
@@ -701,6 +696,17 @@ export type GetDeliveryFunnelResponse_Piece = {
|
|
|
701
696
|
count: number;
|
|
702
697
|
platforms: GetDeliveryFunnelResponse_PlatformCount[];
|
|
703
698
|
};
|
|
699
|
+
/**
|
|
700
|
+
* ErrorCode is one sender status code inside an error row. Platform is part of the row,
|
|
701
|
+
* not a breakdown of it: 1002 is BadDeviceToken on APNS and ParameterErr on Huawei.
|
|
702
|
+
*/
|
|
703
|
+
export type GetDeliveryFunnelResponse_ErrorCode = {
|
|
704
|
+
platform: number;
|
|
705
|
+
code: number;
|
|
706
|
+
/** short human name; our own publish codes read "Processing Error" */
|
|
707
|
+
name: string;
|
|
708
|
+
count: number;
|
|
709
|
+
};
|
|
704
710
|
/**
|
|
705
711
|
* ErrorRow is what STAGE_ERRORS carries instead of pieces: a Piece in all but name,
|
|
706
712
|
* since every row of that stage is a drop-out.
|
|
@@ -710,6 +716,11 @@ export type GetDeliveryFunnelResponse_ErrorRow = {
|
|
|
710
716
|
category: string;
|
|
711
717
|
count: number;
|
|
712
718
|
platforms: GetDeliveryFunnelResponse_PlatformCount[];
|
|
719
|
+
/**
|
|
720
|
+
* codes are the measured rows the category was folded from, so they sum to count --
|
|
721
|
+
* except on UNCLASSIFIED_ERROR, which is a remainder and carries none.
|
|
722
|
+
*/
|
|
723
|
+
codes: GetDeliveryFunnelResponse_ErrorCode[];
|
|
713
724
|
};
|
|
714
725
|
/**
|
|
715
726
|
* StageItem is one funnel level with its breakdown. STAGE_DELIVERIES counts accepted
|
|
@@ -725,8 +736,8 @@ export type GetDeliveryFunnelResponse_StageItem = {
|
|
|
725
736
|
platforms: GetDeliveryFunnelResponse_PlatformCount[];
|
|
726
737
|
};
|
|
727
738
|
/**
|
|
728
|
-
* ConfirmedDeliveries equals the tracking log CSV export: past the accepted set
|
|
729
|
-
* clamped
|
|
739
|
+
* ConfirmedDeliveries equals the tracking log CSV export: past the accepted set and
|
|
740
|
+
* never clamped, so no stage row derives from it.
|
|
730
741
|
*/
|
|
731
742
|
export type GetDeliveryFunnelResponse_ConfirmedDeliveries = {
|
|
732
743
|
count: number;
|