@pushwoosh/rpc-gateway-statistics-api 1.3.743 → 1.3.745

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
@@ -4149,7 +4149,8 @@ export const data = {
4149
4149
  "values": [
4150
4150
  "KIND_UNSPECIFIED",
4151
4151
  "KIND_PASSED",
4152
- "KIND_REASON"
4152
+ "KIND_REASON",
4153
+ "KIND_SUBSET"
4153
4154
  ]
4154
4155
  },
4155
4156
  "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.FunnelState": {
@@ -4207,9 +4208,6 @@ export const data = {
4207
4208
  },
4208
4209
  "confirmedDeliveries": {
4209
4210
  "type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.ConfirmedDeliveries"
4210
- },
4211
- "emailBounces": {
4212
- "type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.EmailBounces"
4213
4211
  }
4214
4212
  }
4215
4213
  },
@@ -4292,20 +4290,6 @@ export const data = {
4292
4290
  }
4293
4291
  }
4294
4292
  },
4295
- "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse.EmailBounces": {
4296
- "type": "I",
4297
- "fields": {
4298
- "hard": {
4299
- "type": "number"
4300
- },
4301
- "soft": {
4302
- "type": "number"
4303
- },
4304
- "alsoConfirmed": {
4305
- "type": "number"
4306
- }
4307
- }
4308
- },
4309
4293
  "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryFunnelResponse": {
4310
4294
  "type": "I",
4311
4295
  "fields": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.743",
3
+ "version": "1.3.745",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -603,14 +603,19 @@ export type GetDeliveryFunnelResponse_Stage = 'STAGE_UNSPECIFIED'
603
603
  */
604
604
  | 'STAGE_INTERACTIONS';
605
605
  /**
606
- * Kind tells how a piece relates to its stage total. Every piece is a summand: the
607
- * pieces of a stage are disjoint and add up to its count.
606
+ * Kind tells how a piece relates to its stage total. PASSED and REASON pieces are the
607
+ * stage's own distribution: disjoint, and they add up to its count.
608
608
  */
609
609
  export type GetDeliveryFunnelResponse_Kind = 'KIND_UNSPECIFIED'
610
610
  /** moved on to the next stage */
611
611
  | 'KIND_PASSED'
612
612
  /** did not move on, for this reason */
613
- | 'KIND_REASON';
613
+ | 'KIND_REASON'
614
+ /**
615
+ * KIND_SUBSET cuts across the stage instead of dividing it: it overlaps the PASSED
616
+ * and REASON pieces and is never a summand. Sum PASSED and REASON only.
617
+ */
618
+ | 'KIND_SUBSET';
614
619
  /**
615
620
  * FunnelState describes the response before any stage is read: an empty funnel has two
616
621
  * very different meanings and one shape.
@@ -668,8 +673,6 @@ export type GetDeliveryFunnelResponse_ChannelFunnel = {
668
673
  deliveriesForm: GetDeliveryFunnelResponse_DeliveriesForm;
669
674
  basicFormReason: GetDeliveryFunnelResponse_BasicFormReason;
670
675
  confirmedDeliveries: GetDeliveryFunnelResponse_ConfirmedDeliveries;
671
- /** Email only, absent when not measured. Never a stage row — see EmailBounces. */
672
- emailBounces: GetDeliveryFunnelResponse_EmailBounces;
673
676
  };
674
677
  /**
675
678
  * PlatformCount is one platform's share of the number above it; the parent is always
@@ -718,21 +721,6 @@ export type GetDeliveryFunnelResponse_ConfirmedDeliveries = {
718
721
  count: number;
719
722
  platforms: GetDeliveryFunnelResponse_PlatformCount[];
720
723
  };
721
- /**
722
- * EmailBounces is what the mail provider refused, in recipient addresses. It sits beside
723
- * the stages and belongs to none of them, on purpose and never clamped.
724
- */
725
- export type GetDeliveryFunnelResponse_EmailBounces = {
726
- /** at least one permanent refusal */
727
- hard: number;
728
- /** refused, never permanently */
729
- soft: number;
730
- /**
731
- * Of hard+soft, how many also confirmed delivery, in any order, and so are counted
732
- * inside CONFIRMED_BY_DEVICE too: the rest, hard + soft - also_confirmed, is not.
733
- */
734
- alsoConfirmed: number;
735
- };
736
724
  /**
737
725
  * GetDeliveryFunnelResponse is the shared answer of both funnel methods: a campaign's
738
726
  * funnel is the sum of its messages' funnels, so the shape has to be the same one.