@pushwoosh/rpc-gateway-statistics-api 1.3.814 → 1.3.816
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
|
@@ -68,7 +68,14 @@ export const data = {
|
|
|
68
68
|
"HUAWEI_ANDROID",
|
|
69
69
|
"SMS",
|
|
70
70
|
"XIAOMI",
|
|
71
|
-
"WEB"
|
|
71
|
+
"WEB",
|
|
72
|
+
"WHATS_APP",
|
|
73
|
+
"LINE",
|
|
74
|
+
"KAKAO",
|
|
75
|
+
"TELEGRAM",
|
|
76
|
+
"APPLE_WALLET",
|
|
77
|
+
"GOOGLE_WALLET",
|
|
78
|
+
"VIBER"
|
|
72
79
|
]
|
|
73
80
|
},
|
|
74
81
|
"pushwoosh.statistics.types.DateRange": {
|
|
@@ -3917,6 +3924,26 @@ export const data = {
|
|
|
3917
3924
|
}
|
|
3918
3925
|
}
|
|
3919
3926
|
},
|
|
3927
|
+
"pushwoosh.statistics.statistics.v2.overviewkpi.GetUserMessageMetricsResponse.Unique": {
|
|
3928
|
+
"type": "I",
|
|
3929
|
+
"fields": {
|
|
3930
|
+
"sends": {
|
|
3931
|
+
"type": "number"
|
|
3932
|
+
},
|
|
3933
|
+
"deliveries": {
|
|
3934
|
+
"type": "number"
|
|
3935
|
+
},
|
|
3936
|
+
"errors": {
|
|
3937
|
+
"type": "number"
|
|
3938
|
+
},
|
|
3939
|
+
"opens": {
|
|
3940
|
+
"type": "number"
|
|
3941
|
+
},
|
|
3942
|
+
"deliveryRatePercent": {
|
|
3943
|
+
"type": "number"
|
|
3944
|
+
}
|
|
3945
|
+
}
|
|
3946
|
+
},
|
|
3920
3947
|
"pushwoosh.statistics.statistics.v2.overviewkpi.GetUserMessageMetricsResponse.Platform": {
|
|
3921
3948
|
"type": "I",
|
|
3922
3949
|
"fields": {
|
|
@@ -3934,6 +3961,12 @@ export const data = {
|
|
|
3934
3961
|
},
|
|
3935
3962
|
"deliveryRatePercent": {
|
|
3936
3963
|
"type": "number"
|
|
3964
|
+
},
|
|
3965
|
+
"opens": {
|
|
3966
|
+
"type": "number"
|
|
3967
|
+
},
|
|
3968
|
+
"unique": {
|
|
3969
|
+
"type": "pushwoosh.statistics.statistics.v2.overviewkpi.GetUserMessageMetricsResponse.Unique"
|
|
3937
3970
|
}
|
|
3938
3971
|
}
|
|
3939
3972
|
},
|
|
@@ -3961,6 +3994,12 @@ export const data = {
|
|
|
3961
3994
|
},
|
|
3962
3995
|
"dataAvailable": {
|
|
3963
3996
|
"type": "boolean"
|
|
3997
|
+
},
|
|
3998
|
+
"opens": {
|
|
3999
|
+
"type": "number"
|
|
4000
|
+
},
|
|
4001
|
+
"unique": {
|
|
4002
|
+
"type": "pushwoosh.statistics.statistics.v2.overviewkpi.GetUserMessageMetricsResponse.Unique"
|
|
3964
4003
|
}
|
|
3965
4004
|
}
|
|
3966
4005
|
},
|
package/package.json
CHANGED
|
@@ -185,12 +185,25 @@ export type GetUserMessageMetricsRequest = {
|
|
|
185
185
|
dayFrom: Date;
|
|
186
186
|
dayTo: Date;
|
|
187
187
|
};
|
|
188
|
+
/**
|
|
189
|
+
* the same tiles with every user counted once over the whole period instead
|
|
190
|
+
* of once a day; a sum of daily counts is not a headcount
|
|
191
|
+
*/
|
|
192
|
+
export type GetUserMessageMetricsResponse_Unique = {
|
|
193
|
+
sends: number;
|
|
194
|
+
deliveries: number;
|
|
195
|
+
errors: number;
|
|
196
|
+
opens: number;
|
|
197
|
+
deliveryRatePercent: number;
|
|
198
|
+
};
|
|
188
199
|
export type GetUserMessageMetricsResponse_Platform = {
|
|
189
200
|
platformId: number;
|
|
190
201
|
sends: number;
|
|
191
202
|
deliveries: number;
|
|
192
203
|
errors: number;
|
|
193
204
|
deliveryRatePercent: number;
|
|
205
|
+
opens: number;
|
|
206
|
+
unique: GetUserMessageMetricsResponse_Unique;
|
|
194
207
|
};
|
|
195
208
|
export type GetUserMessageMetricsResponse = {
|
|
196
209
|
/** users the gateway was asked for: the ones it took plus the ones it refused */
|
|
@@ -213,4 +226,10 @@ export type GetUserMessageMetricsResponse = {
|
|
|
213
226
|
firstWrittenDay: Date;
|
|
214
227
|
/** false when the mart has nothing for this application at all */
|
|
215
228
|
dataAvailable: boolean;
|
|
229
|
+
/**
|
|
230
|
+
* opens of the period, counted on the day of the open rather than of the
|
|
231
|
+
* send, so opens and sends of one period do not reconcile
|
|
232
|
+
*/
|
|
233
|
+
opens: number;
|
|
234
|
+
unique: GetUserMessageMetricsResponse_Unique;
|
|
216
235
|
};
|
|
@@ -13,9 +13,7 @@ export type Platform = 'PLATFORM_UNSPECIFIED' | 'IOS'
|
|
|
13
13
|
/** deprecated */
|
|
14
14
|
| 'WINDOWS_PHONE'
|
|
15
15
|
/** deprecated */
|
|
16
|
-
| 'BADA' | 'OSX' | 'WINDOWS' | 'AMAZON' | 'SAFARI' | 'CHROME' | 'FIREFOX' | 'IE' | 'EMAIL'
|
|
17
|
-
/** deprecated */
|
|
18
|
-
| 'FB_MESSENGER' | 'BAIDU_ANDROID' | 'HUAWEI_ANDROID' | 'SMS' | 'XIAOMI' | 'WEB';
|
|
16
|
+
| 'BADA' | 'OSX' | 'WINDOWS' | 'AMAZON' | 'SAFARI' | 'CHROME' | 'FIREFOX' | 'IE' | 'EMAIL' | 'FB_MESSENGER' | 'BAIDU_ANDROID' | 'HUAWEI_ANDROID' | 'SMS' | 'XIAOMI' | 'WEB' | 'WHATS_APP' | 'LINE' | 'KAKAO' | 'TELEGRAM' | 'APPLE_WALLET' | 'GOOGLE_WALLET' | 'VIBER';
|
|
19
17
|
export type DateRange = {
|
|
20
18
|
dateFrom: string;
|
|
21
19
|
dateTo: string;
|