@pushwoosh/rpc-gateway-journey-data 0.26.339 → 0.26.341

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
@@ -2842,6 +2842,15 @@ export const data = {
2842
2842
  }
2843
2843
  }
2844
2844
  },
2845
+ "pushwoosh.cj.journey.BooleanSplitterEventConditions": {
2846
+ "type": "I",
2847
+ "fields": {
2848
+ "conditions": {
2849
+ "type": "pushwoosh.cj.journey.BooleanSplitterEventCondition",
2850
+ "array": true
2851
+ }
2852
+ }
2853
+ },
2845
2854
  "pushwoosh.cj.journey.BooleanSplitterEventInfo": {
2846
2855
  "type": "I",
2847
2856
  "fields": {
@@ -2849,10 +2858,11 @@ export const data = {
2849
2858
  "type": "string"
2850
2859
  },
2851
2860
  "eventConditions": {
2852
- "type": "pushwoosh.cj.journey.BooleanSplitterEventCondition",
2853
- "array": true
2861
+ "type": "pushwoosh.cj.journey.BooleanSplitterEventConditions",
2862
+ "optional": true
2854
2863
  }
2855
- }
2864
+ },
2865
+ "oneofs": {}
2856
2866
  },
2857
2867
  "pushwoosh.cj.journey.PointParamsBooleanSplitter.LoadPolicy": {
2858
2868
  "type": "E",
@@ -4104,6 +4114,10 @@ export const data = {
4104
4114
  "deliveryIssues": {
4105
4115
  "type": "number",
4106
4116
  "array": true
4117
+ },
4118
+ "successfulSends": {
4119
+ "type": "number",
4120
+ "array": true
4107
4121
  }
4108
4122
  }
4109
4123
  },
@@ -4125,6 +4139,10 @@ export const data = {
4125
4139
  "clicks": {
4126
4140
  "type": "number",
4127
4141
  "array": true
4142
+ },
4143
+ "successfulSends": {
4144
+ "type": "number",
4145
+ "array": true
4128
4146
  }
4129
4147
  }
4130
4148
  },
@@ -4142,6 +4160,10 @@ export const data = {
4142
4160
  "deliveryIssues": {
4143
4161
  "type": "number",
4144
4162
  "array": true
4163
+ },
4164
+ "successfulSends": {
4165
+ "type": "number",
4166
+ "array": true
4145
4167
  }
4146
4168
  }
4147
4169
  },
@@ -4159,6 +4181,10 @@ export const data = {
4159
4181
  "deliveryIssues": {
4160
4182
  "type": "number",
4161
4183
  "array": true
4184
+ },
4185
+ "successfulSends": {
4186
+ "type": "number",
4187
+ "array": true
4162
4188
  }
4163
4189
  }
4164
4190
  },
@@ -4172,6 +4198,10 @@ export const data = {
4172
4198
  "deliveryIssues": {
4173
4199
  "type": "number",
4174
4200
  "array": true
4201
+ },
4202
+ "successfulSends": {
4203
+ "type": "number",
4204
+ "array": true
4175
4205
  }
4176
4206
  }
4177
4207
  },
@@ -4229,6 +4259,9 @@ export const data = {
4229
4259
  },
4230
4260
  "deliveryIssues": {
4231
4261
  "type": "number"
4262
+ },
4263
+ "successfulSends": {
4264
+ "type": "number"
4232
4265
  }
4233
4266
  }
4234
4267
  },
@@ -4261,6 +4294,9 @@ export const data = {
4261
4294
  },
4262
4295
  "unsubscribes": {
4263
4296
  "type": "number"
4297
+ },
4298
+ "successfulSends": {
4299
+ "type": "number"
4264
4300
  }
4265
4301
  }
4266
4302
  },
@@ -4281,6 +4317,9 @@ export const data = {
4281
4317
  },
4282
4318
  "deliveries": {
4283
4319
  "type": "number"
4320
+ },
4321
+ "successfulSends": {
4322
+ "type": "number"
4284
4323
  }
4285
4324
  }
4286
4325
  },
@@ -4298,6 +4337,9 @@ export const data = {
4298
4337
  },
4299
4338
  "errors": {
4300
4339
  "type": "number"
4340
+ },
4341
+ "successfulSends": {
4342
+ "type": "number"
4301
4343
  }
4302
4344
  }
4303
4345
  },
@@ -4312,6 +4354,9 @@ export const data = {
4312
4354
  },
4313
4355
  "errors": {
4314
4356
  "type": "number"
4357
+ },
4358
+ "successfulSends": {
4359
+ "type": "number"
4315
4360
  }
4316
4361
  }
4317
4362
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.339",
3
+ "version": "0.26.341",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1081,9 +1081,12 @@ export type BooleanSplitterEventCondition = {
1081
1081
  dateFilterMode: DateFilterMode;
1082
1082
  value: BooleanSplitterEventCondition_value;
1083
1083
  };
1084
+ export type BooleanSplitterEventConditions = {
1085
+ conditions: BooleanSplitterEventCondition[];
1086
+ };
1084
1087
  export type BooleanSplitterEventInfo = {
1085
1088
  eventName: string;
1086
- eventConditions: BooleanSplitterEventCondition[];
1089
+ eventConditions?: BooleanSplitterEventConditions;
1087
1090
  };
1088
1091
  export type PointParamsBooleanSplitter_LoadPolicy = 'UNKNOWN' | 'ALL' | 'FILTER';
1089
1092
  export type PointParamsBooleanSplitter_SplitStrategy = 'SPLIT_FILTER' | 'SPLIT_TAGS' | 'SPLIT_EVENTS';
@@ -1515,26 +1518,31 @@ export type GetJourneyMetricsResponse_PushMetrics = {
1515
1518
  sends: number[];
1516
1519
  opens: number[];
1517
1520
  deliveryIssues: number[];
1521
+ successfulSends: number[];
1518
1522
  };
1519
1523
  export type GetJourneyMetricsResponse_EmailMetrics = {
1520
1524
  sends: number[];
1521
1525
  opens: number[];
1522
1526
  deliveryIssues: number[];
1523
1527
  clicks: number[];
1528
+ successfulSends: number[];
1524
1529
  };
1525
1530
  export type GetJourneyMetricsResponse_WhatsAppMetrics = {
1526
1531
  sends: number[];
1527
1532
  read: number[];
1528
1533
  deliveryIssues: number[];
1534
+ successfulSends: number[];
1529
1535
  };
1530
1536
  export type GetJourneyMetricsResponse_SMSMetrics = {
1531
1537
  sends: number[];
1532
1538
  deliveries: number[];
1533
1539
  deliveryIssues: number[];
1540
+ successfulSends: number[];
1534
1541
  };
1535
1542
  export type GetJourneyMetricsResponse_LineMetrics = {
1536
1543
  sends: number[];
1537
1544
  deliveryIssues: number[];
1545
+ successfulSends: number[];
1538
1546
  };
1539
1547
  export type GetJourneyMetricsResponse_InAppMetrics = {
1540
1548
  impressions: number[];
@@ -1554,6 +1562,7 @@ export type GetJourneyMetricsResponse_PushTotals = {
1554
1562
  recipients: number;
1555
1563
  opened: number;
1556
1564
  deliveryIssues: number;
1565
+ successfulSends: number;
1557
1566
  };
1558
1567
  export type GetJourneyMetricsResponse_EmailTotals = {
1559
1568
  sent: number;
@@ -1565,6 +1574,7 @@ export type GetJourneyMetricsResponse_EmailTotals = {
1565
1574
  complaints: number;
1566
1575
  clicks: number;
1567
1576
  unsubscribes: number;
1577
+ successfulSends: number;
1568
1578
  };
1569
1579
  export type GetJourneyMetricsResponse_WhatsAppTotals = {
1570
1580
  sent: number;
@@ -1572,17 +1582,20 @@ export type GetJourneyMetricsResponse_WhatsAppTotals = {
1572
1582
  read: number;
1573
1583
  errors: number;
1574
1584
  deliveries: number;
1585
+ successfulSends: number;
1575
1586
  };
1576
1587
  export type GetJourneyMetricsResponse_SMSTotals = {
1577
1588
  sent: number;
1578
1589
  recipients: number;
1579
1590
  deliveries: number;
1580
1591
  errors: number;
1592
+ successfulSends: number;
1581
1593
  };
1582
1594
  export type GetJourneyMetricsResponse_LineTotals = {
1583
1595
  sent: number;
1584
1596
  recipients: number;
1585
1597
  errors: number;
1598
+ successfulSends: number;
1586
1599
  };
1587
1600
  export type GetJourneyMetricsResponse_InAppTotals = {
1588
1601
  impressions: number;