@pushwoosh/rpc-gateway-statistics-api 1.3.731 → 1.3.733
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": {
|
|
@@ -4544,6 +4544,18 @@ export const data = {
|
|
|
4544
4544
|
},
|
|
4545
4545
|
"rawRequest": {
|
|
4546
4546
|
"type": "string"
|
|
4547
|
+
},
|
|
4548
|
+
"statusIdentity": {
|
|
4549
|
+
"type": "string"
|
|
4550
|
+
},
|
|
4551
|
+
"statusEvent": {
|
|
4552
|
+
"type": "string"
|
|
4553
|
+
},
|
|
4554
|
+
"statusTags": {
|
|
4555
|
+
"type": "string"
|
|
4556
|
+
},
|
|
4557
|
+
"userCreated": {
|
|
4558
|
+
"type": "boolean"
|
|
4547
4559
|
}
|
|
4548
4560
|
}
|
|
4549
4561
|
},
|
package/package.json
CHANGED
|
@@ -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
|
-
*
|
|
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
|
-
/**
|
|
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.
|
|
@@ -879,12 +885,16 @@ export type InboundWebhookLogItem = {
|
|
|
879
885
|
webhookUuid: string;
|
|
880
886
|
/** Request identifier */
|
|
881
887
|
identifier: string;
|
|
882
|
-
/**
|
|
888
|
+
/** Overall processing status */
|
|
883
889
|
status: WebhookLogStatus;
|
|
884
890
|
/** Status message or error description */
|
|
885
891
|
message: string;
|
|
886
892
|
/** Raw request data */
|
|
887
893
|
rawRequest: string;
|
|
894
|
+
statusIdentity: string;
|
|
895
|
+
statusEvent: string;
|
|
896
|
+
statusTags: string;
|
|
897
|
+
userCreated: boolean;
|
|
888
898
|
};
|
|
889
899
|
/** GetInboundWebhookActivityLogResponse contains the list of webhook log entries and totals */
|
|
890
900
|
export type GetInboundWebhookActivityLogResponse = {
|