@pushwoosh/rpc-v2-http-api-data 0.1.627 → 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 +4 -0
- package/messages.d.ts +1 -0
- package/package.json +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
|
}
|
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 = {
|