@pushwoosh/rpc-v2-http-api-data 0.1.626 → 0.1.628
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 +6 -2
- package/messages.d.ts +1 -0
- package/package.json +1 -1
- package/statistics_dashboards_widgets.d.ts +1 -1
package/data.js
CHANGED
|
@@ -9029,6 +9029,10 @@ export const data = {
|
|
|
9029
9029
|
"opens": {
|
|
9030
9030
|
"type": "pushwoosh.rpc_v2.messages.GetStatisticsResponse.PlatformTimeSeries"
|
|
9031
9031
|
},
|
|
9032
|
+
"recipientsByPlatform": {
|
|
9033
|
+
"type": "number",
|
|
9034
|
+
"mapKeyType": "string"
|
|
9035
|
+
},
|
|
9032
9036
|
"recipients": {
|
|
9033
9037
|
"type": "number"
|
|
9034
9038
|
}
|
|
@@ -19558,8 +19562,8 @@ export const data = {
|
|
|
19558
19562
|
"pushwoosh.rpc_v2.statistics_dashboards_widgets.EventCalcType": {
|
|
19559
19563
|
"type": "E",
|
|
19560
19564
|
"values": [
|
|
19561
|
-
"
|
|
19562
|
-
"
|
|
19565
|
+
"EVENT_CALC_TYPE_ALL",
|
|
19566
|
+
"EVENT_CALC_TYPE_UNIQUE"
|
|
19563
19567
|
]
|
|
19564
19568
|
},
|
|
19565
19569
|
"pushwoosh.rpc_v2.statistics_dashboards_widgets.Metric": {
|
package/messages.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ export type GetStatisticsResponse_Metrics = {
|
|
|
99
99
|
sends: GetStatisticsResponse_PlatformTimeSeries;
|
|
100
100
|
deliveries: GetStatisticsResponse_PlatformTimeSeries;
|
|
101
101
|
opens: GetStatisticsResponse_PlatformTimeSeries;
|
|
102
|
+
recipientsByPlatform: Record<string, number>;
|
|
102
103
|
recipients: number;
|
|
103
104
|
};
|
|
104
105
|
export type GetStatisticsResponse = {
|
package/package.json
CHANGED
|
@@ -91,7 +91,7 @@ export type AttributeCondition = {
|
|
|
91
91
|
operator: MathOperator;
|
|
92
92
|
values: Value[];
|
|
93
93
|
};
|
|
94
|
-
export type EventCalcType = '
|
|
94
|
+
export type EventCalcType = 'EVENT_CALC_TYPE_ALL' | 'EVENT_CALC_TYPE_UNIQUE';
|
|
95
95
|
export type Metric = {
|
|
96
96
|
id: number;
|
|
97
97
|
eventName?: string;
|