@pushwoosh/rpc-gateway-statistics-api 1.3.800 → 1.3.801
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
|
@@ -5023,6 +5023,14 @@ export const data = {
|
|
|
5023
5023
|
"METRIC_OPENED"
|
|
5024
5024
|
]
|
|
5025
5025
|
},
|
|
5026
|
+
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryTimelineResponse.ReadSource": {
|
|
5027
|
+
"type": "E",
|
|
5028
|
+
"values": [
|
|
5029
|
+
"READ_SOURCE_UNSPECIFIED",
|
|
5030
|
+
"READ_SOURCE_ROW_LEVEL_LOG",
|
|
5031
|
+
"READ_SOURCE_PRE_AGGREGATE"
|
|
5032
|
+
]
|
|
5033
|
+
},
|
|
5026
5034
|
"pushwoosh.statistics.statistics.v2.statistics.GetDeliveryTimelineResponse.Point": {
|
|
5027
5035
|
"type": "I",
|
|
5028
5036
|
"fields": {
|
|
@@ -5086,6 +5094,9 @@ export const data = {
|
|
|
5086
5094
|
"eventAxisMetrics": {
|
|
5087
5095
|
"type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryTimelineResponse.Metric",
|
|
5088
5096
|
"array": true
|
|
5097
|
+
},
|
|
5098
|
+
"readSource": {
|
|
5099
|
+
"type": "pushwoosh.statistics.statistics.v2.statistics.GetDeliveryTimelineResponse.ReadSource"
|
|
5089
5100
|
}
|
|
5090
5101
|
}
|
|
5091
5102
|
},
|
package/package.json
CHANGED
|
@@ -828,6 +828,11 @@ export type GetDeliveryTimelineResponse_Metric = 'METRIC_UNSPECIFIED'
|
|
|
828
828
|
| 'METRIC_CONFIRMED_DELIVERIES'
|
|
829
829
|
/** unique devices that opened */
|
|
830
830
|
| 'METRIC_OPENED';
|
|
831
|
+
/**
|
|
832
|
+
* ReadSource is which store answered. It decides the unit of METRIC_SENT — subscribers from
|
|
833
|
+
* the log, send events from the pre-aggregate — and whether per-device detail exists.
|
|
834
|
+
*/
|
|
835
|
+
export type GetDeliveryTimelineResponse_ReadSource = 'READ_SOURCE_UNSPECIFIED' | 'READ_SOURCE_ROW_LEVEL_LOG' | 'READ_SOURCE_PRE_AGGREGATE';
|
|
831
836
|
/**
|
|
832
837
|
* Point is one bucket of a series, always UTC. Empty buckets are not emitted: the
|
|
833
838
|
* client draws the axis from the window and the interval.
|
|
@@ -878,6 +883,11 @@ export type GetDeliveryTimelineResponse = {
|
|
|
878
883
|
* metrics of one bucket are therefore not a funnel: they reconcile over the window.
|
|
879
884
|
*/
|
|
880
885
|
eventAxisMetrics: GetDeliveryTimelineResponse_Metric[];
|
|
886
|
+
/**
|
|
887
|
+
* Which store answered, so a client can name the unit and explain a missing per-device
|
|
888
|
+
* series. Unset on an empty or expired answer: nothing was read.
|
|
889
|
+
*/
|
|
890
|
+
readSource: GetDeliveryTimelineResponse_ReadSource;
|
|
881
891
|
};
|
|
882
892
|
/** ActiveAudienceType specifies the type of active users calculation */
|
|
883
893
|
export type ActiveAudienceType =
|