@pushwoosh/rpc-gateway-statistics-api 1.3.730 → 1.3.732

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
@@ -4070,7 +4070,8 @@ export const data = {
4070
4070
  "STAGE_SENT",
4071
4071
  "STAGE_ERRORS",
4072
4072
  "STAGE_DELIVERIES",
4073
- "STAGE_OPENED"
4073
+ "STAGE_OPENED",
4074
+ "STAGE_INTERACTIONS"
4074
4075
  ]
4075
4076
  },
4076
4077
  "pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryFunnelResponse.Kind": {
@@ -4078,8 +4079,7 @@ export const data = {
4078
4079
  "values": [
4079
4080
  "KIND_UNSPECIFIED",
4080
4081
  "KIND_PASSED",
4081
- "KIND_REASON",
4082
- "KIND_SUBSET"
4082
+ "KIND_REASON"
4083
4083
  ]
4084
4084
  },
4085
4085
  "pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryFunnelResponse.FunnelState": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.730",
3
+ "version": "1.3.732",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -39,8 +39,8 @@ export interface StatisticsService {
39
39
  /** GetEmailApplicationStatistics returns email statistics (total devices, sends, open rate) with time series data */
40
40
  GetEmailApplicationStatistics: StatisticsService_GetEmailApplicationStatistics;
41
41
  /**
42
- * GetMessageDeliveryFunnel returns one message's funnel: audience -> sent ->
43
- * deliveries -> opened. A stage equals its PASSED and REASON pieces; SUBSET is not one.
42
+ * GetMessageDeliveryFunnel returns one message's funnel: audience -> sent -> deliveries
43
+ * -> opened -> interactions. A stage equals the sum of its pieces, all of them.
44
44
  */
45
45
  GetMessageDeliveryFunnel: StatisticsService_GetMessageDeliveryFunnel;
46
46
  /**
@@ -543,15 +543,21 @@ export type GetMessageDeliveryFunnelResponse_Stage = 'STAGE_UNSPECIFIED'
543
543
  /** accepted, split by confirmation */
544
544
  | 'STAGE_DELIVERIES'
545
545
  /** unique devices that opened */
546
- | 'STAGE_OPENED';
547
- /** Kind tells how a piece relates to its stage total. */
546
+ | 'STAGE_OPENED'
547
+ /**
548
+ * STAGE_INTERACTIONS: what the recipient did with the letter — clicked, unsubscribed,
549
+ * complained. Email broadcasts only, see the funnel formulas doc for why.
550
+ */
551
+ | 'STAGE_INTERACTIONS';
552
+ /**
553
+ * Kind tells how a piece relates to its stage total. Every piece is a summand: the
554
+ * pieces of a stage are disjoint and add up to its count.
555
+ */
548
556
  export type GetMessageDeliveryFunnelResponse_Kind = 'KIND_UNSPECIFIED'
549
557
  /** moved on to the next stage */
550
558
  | 'KIND_PASSED'
551
559
  /** did not move on, for this reason */
552
- | 'KIND_REASON'
553
- /** part of the stage, NOT a summand */
554
- | 'KIND_SUBSET';
560
+ | 'KIND_REASON';
555
561
  /**
556
562
  * FunnelState describes the response before any stage is read: an empty funnel has two
557
563
  * very different meanings and one shape.