@pushwoosh/rpc-v2-http-api-data 0.1.702 → 0.1.703

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
@@ -7389,6 +7389,9 @@ export const data = {
7389
7389
  "statusCode": {
7390
7390
  "type": "number"
7391
7391
  },
7392
+ "processingErrorType": {
7393
+ "type": "number"
7394
+ },
7392
7395
  "application": {
7393
7396
  "type": "string"
7394
7397
  },
@@ -7578,7 +7581,7 @@ export const data = {
7578
7581
  "journey": {
7579
7582
  "type": "string"
7580
7583
  },
7581
- "event": {
7584
+ "goalUuid": {
7582
7585
  "type": "string"
7583
7586
  },
7584
7587
  "dateFrom": {
@@ -10172,6 +10175,14 @@ export const data = {
10172
10175
  }
10173
10176
  }
10174
10177
  },
10178
+ "pushwoosh.rpc_v2.messages.GetDeliveryReportResponse.ProcessingErrorsType": {
10179
+ "type": "E",
10180
+ "values": [
10181
+ "processing_unknown",
10182
+ "send",
10183
+ "publish"
10184
+ ]
10185
+ },
10175
10186
  "pushwoosh.rpc_v2.messages.GetDeliveryReportResponse.MailboxErrorType": {
10176
10187
  "type": "E",
10177
10188
  "values": [
@@ -10198,6 +10209,9 @@ export const data = {
10198
10209
  },
10199
10210
  "mailboxErrorType": {
10200
10211
  "type": "pushwoosh.rpc_v2.messages.GetDeliveryReportResponse.MailboxErrorType"
10212
+ },
10213
+ "processingErrorType": {
10214
+ "type": "pushwoosh.rpc_v2.messages.GetDeliveryReportResponse.ProcessingErrorsType"
10201
10215
  }
10202
10216
  }
10203
10217
  },
package/messages.d.ts CHANGED
@@ -133,6 +133,7 @@ export type GetDeliveryReportRequest = {
133
133
  messageCode?: string;
134
134
  campaign?: string;
135
135
  };
136
+ export type GetDeliveryReportResponse_ProcessingErrorsType = 'processing_unknown' | 'send' | 'publish';
136
137
  export type GetDeliveryReportResponse_MailboxErrorType = 'all' | 'complaints' | 'soft_bounces' | 'hard_bounces';
137
138
  export type GetDeliveryReportResponse_DeliveryReport_ReportError = {
138
139
  error: string;
@@ -140,6 +141,7 @@ export type GetDeliveryReportResponse_DeliveryReport_ReportError = {
140
141
  count: number;
141
142
  statusCode: number;
142
143
  mailboxErrorType: GetDeliveryReportResponse_MailboxErrorType;
144
+ processingErrorType: GetDeliveryReportResponse_ProcessingErrorsType;
143
145
  };
144
146
  export type GetDeliveryReportResponse_DeliveryReport = {
145
147
  platform: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.702",
3
+ "version": "0.1.703",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -589,6 +589,7 @@ export type ExportMessageErrorsDevicesArgs = {
589
589
  messageId: number;
590
590
  campaign: string;
591
591
  statusCode: number;
592
+ processingErrorType: number;
592
593
  application: string;
593
594
  platform: number;
594
595
  dateFrom: Date;
@@ -647,7 +648,7 @@ export type ExportJourneyPointsStatisticsResult = {
647
648
  export type ExportJourneyGoalUsersArgs = {
648
649
  application: string;
649
650
  journey: string;
650
- event: string;
651
+ goalUuid: string;
651
652
  dateFrom: Date;
652
653
  dateTo: Date;
653
654
  };