@pushwoosh/rpc-gateway-statistics-api 1.3.775 → 1.3.776

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
@@ -631,6 +631,13 @@ export const data = {
631
631
  "applicationIds": {
632
632
  "type": "number",
633
633
  "array": true
634
+ },
635
+ "messagesCodes": {
636
+ "type": "string",
637
+ "array": true
638
+ },
639
+ "timestampFrom": {
640
+ "type": "string"
634
641
  }
635
642
  }
636
643
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.775",
3
+ "version": "1.3.776",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -262,6 +262,10 @@ export type GetMessagesTotalStatisticsRequest = {
262
262
  messagesIds: number[];
263
263
  withUniq: boolean;
264
264
  applicationIds: number[];
265
+ /** transactional messages share message_id 0, so they are addressed by code */
266
+ messagesCodes: string[];
267
+ /** required with messages_codes: the send date the server reads for ids is unavailable for them */
268
+ timestampFrom: string;
265
269
  };
266
270
  export type MessageMetric = {
267
271
  sends: number;