@pushwoosh/rpc-gateway-statistics-api 1.3.774 → 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
|
@@ -4705,6 +4705,23 @@ export const data = {
|
|
|
4705
4705
|
}
|
|
4706
4706
|
}
|
|
4707
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
|
+
},
|
|
4708
4725
|
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.ErrorRow": {
|
|
4709
4726
|
"type": "I",
|
|
4710
4727
|
"fields": {
|
|
@@ -4717,6 +4734,10 @@ export const data = {
|
|
|
4717
4734
|
"platforms": {
|
|
4718
4735
|
"type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.PlatformCount",
|
|
4719
4736
|
"array": true
|
|
4737
|
+
},
|
|
4738
|
+
"codes": {
|
|
4739
|
+
"type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.ErrorCode",
|
|
4740
|
+
"array": true
|
|
4720
4741
|
}
|
|
4721
4742
|
}
|
|
4722
4743
|
},
|
package/package.json
CHANGED
|
@@ -696,6 +696,17 @@ export type GetDeliveryFunnelResponse_Piece = {
|
|
|
696
696
|
count: number;
|
|
697
697
|
platforms: GetDeliveryFunnelResponse_PlatformCount[];
|
|
698
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
|
+
};
|
|
699
710
|
/**
|
|
700
711
|
* ErrorRow is what STAGE_ERRORS carries instead of pieces: a Piece in all but name,
|
|
701
712
|
* since every row of that stage is a drop-out.
|
|
@@ -705,6 +716,11 @@ export type GetDeliveryFunnelResponse_ErrorRow = {
|
|
|
705
716
|
category: string;
|
|
706
717
|
count: number;
|
|
707
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[];
|
|
708
724
|
};
|
|
709
725
|
/**
|
|
710
726
|
* StageItem is one funnel level with its breakdown. STAGE_DELIVERIES counts accepted
|