@pushwoosh/rpc-gateway-statistics-api 1.3.739 → 1.3.740
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
|
@@ -4195,6 +4195,9 @@ export const data = {
|
|
|
4195
4195
|
},
|
|
4196
4196
|
"confirmedDeliveries": {
|
|
4197
4197
|
"type": "pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryFunnelResponse.ConfirmedDeliveries"
|
|
4198
|
+
},
|
|
4199
|
+
"emailBounces": {
|
|
4200
|
+
"type": "pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryFunnelResponse.EmailBounces"
|
|
4198
4201
|
}
|
|
4199
4202
|
}
|
|
4200
4203
|
},
|
|
@@ -4277,6 +4280,20 @@ export const data = {
|
|
|
4277
4280
|
}
|
|
4278
4281
|
}
|
|
4279
4282
|
},
|
|
4283
|
+
"pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryFunnelResponse.EmailBounces": {
|
|
4284
|
+
"type": "I",
|
|
4285
|
+
"fields": {
|
|
4286
|
+
"hard": {
|
|
4287
|
+
"type": "number"
|
|
4288
|
+
},
|
|
4289
|
+
"soft": {
|
|
4290
|
+
"type": "number"
|
|
4291
|
+
},
|
|
4292
|
+
"alsoConfirmed": {
|
|
4293
|
+
"type": "number"
|
|
4294
|
+
}
|
|
4295
|
+
}
|
|
4296
|
+
},
|
|
4280
4297
|
"pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryFunnelResponse": {
|
|
4281
4298
|
"type": "I",
|
|
4282
4299
|
"fields": {
|
package/package.json
CHANGED
|
@@ -656,6 +656,8 @@ export type GetMessageDeliveryFunnelResponse_ChannelFunnel = {
|
|
|
656
656
|
deliveriesForm: GetMessageDeliveryFunnelResponse_DeliveriesForm;
|
|
657
657
|
basicFormReason: GetMessageDeliveryFunnelResponse_BasicFormReason;
|
|
658
658
|
confirmedDeliveries: GetMessageDeliveryFunnelResponse_ConfirmedDeliveries;
|
|
659
|
+
/** Email only, absent when not measured. Never a stage row — see EmailBounces. */
|
|
660
|
+
emailBounces: GetMessageDeliveryFunnelResponse_EmailBounces;
|
|
659
661
|
};
|
|
660
662
|
/**
|
|
661
663
|
* PlatformCount is one platform's share of the number above it; the parent is always
|
|
@@ -704,6 +706,21 @@ export type GetMessageDeliveryFunnelResponse_ConfirmedDeliveries = {
|
|
|
704
706
|
count: number;
|
|
705
707
|
platforms: GetMessageDeliveryFunnelResponse_PlatformCount[];
|
|
706
708
|
};
|
|
709
|
+
/**
|
|
710
|
+
* EmailBounces is what the mail provider refused, in recipient addresses. It sits beside
|
|
711
|
+
* the stages and belongs to none of them, on purpose and never clamped.
|
|
712
|
+
*/
|
|
713
|
+
export type GetMessageDeliveryFunnelResponse_EmailBounces = {
|
|
714
|
+
/** at least one permanent refusal */
|
|
715
|
+
hard: number;
|
|
716
|
+
/** refused, never permanently */
|
|
717
|
+
soft: number;
|
|
718
|
+
/**
|
|
719
|
+
* Of hard+soft, how many also confirmed delivery, in any order, and so are counted
|
|
720
|
+
* inside CONFIRMED_BY_DEVICE too: the rest, hard + soft - also_confirmed, is not.
|
|
721
|
+
*/
|
|
722
|
+
alsoConfirmed: number;
|
|
723
|
+
};
|
|
707
724
|
export type GetMessageDeliveryFunnelResponse = {
|
|
708
725
|
/**
|
|
709
726
|
* Channels are not ordered; a client looks one up by its channel field, not by
|