@pushwoosh/rpc-gateway-statistics-api 1.3.791 → 1.3.793
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
|
@@ -891,6 +891,10 @@ export const data = {
|
|
|
891
891
|
},
|
|
892
892
|
"interval": {
|
|
893
893
|
"type": "pushwoosh.statistics.types.TimeInterval"
|
|
894
|
+
},
|
|
895
|
+
"platformIds": {
|
|
896
|
+
"type": "number",
|
|
897
|
+
"array": true
|
|
894
898
|
}
|
|
895
899
|
}
|
|
896
900
|
},
|
|
@@ -920,6 +924,15 @@ export const data = {
|
|
|
920
924
|
},
|
|
921
925
|
"unsubs": {
|
|
922
926
|
"type": "number"
|
|
927
|
+
},
|
|
928
|
+
"errors": {
|
|
929
|
+
"type": "number"
|
|
930
|
+
},
|
|
931
|
+
"openTotal": {
|
|
932
|
+
"type": "number"
|
|
933
|
+
},
|
|
934
|
+
"deliveredUniq": {
|
|
935
|
+
"type": "number"
|
|
923
936
|
}
|
|
924
937
|
}
|
|
925
938
|
},
|
|
@@ -3579,6 +3592,9 @@ export const data = {
|
|
|
3579
3592
|
"totalUsers": {
|
|
3580
3593
|
"type": "number"
|
|
3581
3594
|
},
|
|
3595
|
+
"usersWithPushDevice": {
|
|
3596
|
+
"type": "number"
|
|
3597
|
+
},
|
|
3582
3598
|
"subscribers": {
|
|
3583
3599
|
"type": "number"
|
|
3584
3600
|
},
|
package/package.json
CHANGED
|
@@ -353,6 +353,8 @@ export type GetMessagesTotalStatisticsCPRequest = {
|
|
|
353
353
|
timestampFrom: string;
|
|
354
354
|
timestampTo: string;
|
|
355
355
|
interval: pushwoosh_statistics_types_TimeInterval;
|
|
356
|
+
/** platforms to count; empty keeps every platform of the application */
|
|
357
|
+
platformIds: number[];
|
|
356
358
|
};
|
|
357
359
|
export type ShortMessageMetric = {
|
|
358
360
|
sent: number;
|
|
@@ -363,6 +365,12 @@ export type ShortMessageMetric = {
|
|
|
363
365
|
softBounces: number;
|
|
364
366
|
complaints: number;
|
|
365
367
|
unsubs: number;
|
|
368
|
+
/** sends that failed on the provider; bounces and complaints are email only */
|
|
369
|
+
errors: number;
|
|
370
|
+
/** every open, while `open` above counts one per user */
|
|
371
|
+
openTotal: number;
|
|
372
|
+
/** users the message reached, while `delivered` above counts every delivery */
|
|
373
|
+
deliveredUniq: number;
|
|
366
374
|
};
|
|
367
375
|
export type ShortMessageMetricWithTimestampPlatformID = {
|
|
368
376
|
timestamp: string;
|
|
@@ -58,6 +58,8 @@ export type GetAudienceFunnelResponse = {
|
|
|
58
58
|
day: Date;
|
|
59
59
|
/** all users of the application */
|
|
60
60
|
totalUsers: number;
|
|
61
|
+
/** users with at least one push device, with or without a token */
|
|
62
|
+
usersWithPushDevice: number;
|
|
61
63
|
/** users with at least one push device holding a valid token */
|
|
62
64
|
subscribers: number;
|
|
63
65
|
/** users with push permission and a valid token */
|
|
@@ -73,7 +75,7 @@ export type GetAudienceFunnelResponse = {
|
|
|
73
75
|
/** token present, system permission revoked */
|
|
74
76
|
permissionOff: number;
|
|
75
77
|
permissionOffPercent: number;
|
|
76
|
-
/**
|
|
78
|
+
/** has a push device but no token at all */
|
|
77
79
|
neverOptedIn: number;
|
|
78
80
|
neverOptedInPercent: number;
|
|
79
81
|
};
|