@pushwoosh/rpc-v2-http-api-data 0.1.787 → 0.1.789

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
@@ -7864,6 +7864,9 @@ export const data = {
7864
7864
  "status": {
7865
7865
  "type": "pushwoosh.export_messages.v2.Status"
7866
7866
  },
7867
+ "requestedByUser": {
7868
+ "type": "string"
7869
+ },
7867
7870
  "trackingLogCsv": {
7868
7871
  "type": "pushwoosh.export_messages.v2.TrackingLogCSVArgs"
7869
7872
  },
@@ -8781,7 +8784,8 @@ export const data = {
8781
8784
  "link_clicked_devices",
8782
8785
  "event_triggered_devices",
8783
8786
  "send_with_error_devices",
8784
- "send_with_email_error_devices"
8787
+ "send_with_email_error_devices",
8788
+ "not_opened_devices"
8785
8789
  ]
8786
8790
  },
8787
8791
  "pushwoosh.export_messages.v2.CreateSegmentFromMessageArgs.EmailErrorType": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.787",
3
+ "version": "0.1.789",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -366,6 +366,7 @@ export type TaskInfo = {
366
366
  id: number;
367
367
  timestamp: string;
368
368
  status: Status;
369
+ requestedByUser: string;
369
370
  args: TaskInfo_args;
370
371
  result: TaskInfo_result;
371
372
  };
@@ -602,7 +603,7 @@ export type ExportMessageErrorsDevicesArgs = {
602
603
  export type ExportMessageErrorsDevicesResult = {
603
604
  file: string;
604
605
  };
605
- export type CreateSegmentFromMessageArgs_Type = 'send_devices' | 'delivered_devices' | 'opened_devices' | 'link_clicked_devices' | 'event_triggered_devices' | 'send_with_error_devices' | 'send_with_email_error_devices';
606
+ export type CreateSegmentFromMessageArgs_Type = 'send_devices' | 'delivered_devices' | 'opened_devices' | 'link_clicked_devices' | 'event_triggered_devices' | 'send_with_error_devices' | 'send_with_email_error_devices' | 'not_opened_devices';
606
607
  export type CreateSegmentFromMessageArgs_EmailErrorType = 'complaints' | 'soft_bounces' | 'hard_bounces';
607
608
  export type CreateSegmentFromMessageArgs = {
608
609
  messageId: number;