@pushwoosh/rpc-v2-http-api-data 0.1.953 → 0.1.955
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 +3 -0
- package/messages.d.ts +1 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -13831,6 +13831,9 @@ export const data = {
|
|
|
13831
13831
|
},
|
|
13832
13832
|
"totalOpens": {
|
|
13833
13833
|
"type": "pushwoosh.rpc_v2.messages.GetStatisticsResponse.PlatformTimeSeries"
|
|
13834
|
+
},
|
|
13835
|
+
"totalDeliveries": {
|
|
13836
|
+
"type": "number"
|
|
13834
13837
|
}
|
|
13835
13838
|
}
|
|
13836
13839
|
},
|
package/messages.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export type GetStatisticsResponse_Metrics = {
|
|
|
115
115
|
recipientsByPlatform: Record<string, number>;
|
|
116
116
|
recipients: number;
|
|
117
117
|
totalOpens: GetStatisticsResponse_PlatformTimeSeries;
|
|
118
|
+
totalDeliveries: number;
|
|
118
119
|
};
|
|
119
120
|
export type GetStatisticsResponse = {
|
|
120
121
|
metrics: GetStatisticsResponse_Metrics;
|