@pushwoosh/rpc-gateway-statistics-api 1.3.807 → 1.3.809

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
@@ -31,7 +31,9 @@ export const data = {
31
31
  "SYSTEM",
32
32
  "TWITTER",
33
33
  "TARGETED",
34
- "LIVE_ACTIVITY_API"
34
+ "LIVE_ACTIVITY_API",
35
+ "WHATSAPP_API",
36
+ "SMS_API"
35
37
  ]
36
38
  },
37
39
  "pushwoosh.statistics.types.MessageType": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.807",
3
+ "version": "1.3.809",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -571,7 +571,8 @@ export type GetEmailProviderStatisticsCPRequest = {
571
571
  };
572
572
  /**
573
573
  * One mailbox provider of the recipients: gmail, outlook, yahoo, apple, yandex, mailru, or
574
- * other for every domain the taxonomy does not name. Counts are events, not unique addresses.
574
+ * other for every domain the taxonomy does not name. Counts are events, except opens, which
575
+ * count each (recipient, message) once so a re-read letter cannot push opens past deliveries.
575
576
  */
576
577
  export type EmailProviderStatistics = {
577
578
  provider: string;
@@ -3,7 +3,7 @@ export type Source = 'SOURCE_UNSPECIFIED'
3
3
  /** deprecated */
4
4
  | 'AB_EXPERIMENT' | 'AB_TEST' | 'API' | 'AUTO_PUSH' | 'CP' | 'CSV' | 'CUSTOMER_JOURNEY' | 'EMAIL_API' | 'EMAIL_CP' | 'GEO_ZONE' | 'PUSH_ON_EVENT' | 'RSS' | 'SYSTEM'
5
5
  /** deprecated */
6
- | 'TWITTER' | 'TARGETED' | 'LIVE_ACTIVITY_API';
6
+ | 'TWITTER' | 'TARGETED' | 'LIVE_ACTIVITY_API' | 'WHATSAPP_API' | 'SMS_API';
7
7
  export type MessageType = 'MESSAGE_TYPE_UNSPECIFIED' | 'TRANSACTIONAL' | 'BROADCAST' | 'ALL';
8
8
  export type Platform = 'PLATFORM_UNSPECIFIED' | 'IOS'
9
9
  /** deprecated */