@pushwoosh/rpc-gateway-journey-data 0.26.421 → 0.26.423
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 +21 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +6 -0
package/data.js
CHANGED
|
@@ -4450,6 +4450,10 @@ export const data = {
|
|
|
4450
4450
|
"successfulSends": {
|
|
4451
4451
|
"type": "number",
|
|
4452
4452
|
"array": true
|
|
4453
|
+
},
|
|
4454
|
+
"totalOpens": {
|
|
4455
|
+
"type": "number",
|
|
4456
|
+
"array": true
|
|
4453
4457
|
}
|
|
4454
4458
|
}
|
|
4455
4459
|
},
|
|
@@ -4475,6 +4479,10 @@ export const data = {
|
|
|
4475
4479
|
"successfulSends": {
|
|
4476
4480
|
"type": "number",
|
|
4477
4481
|
"array": true
|
|
4482
|
+
},
|
|
4483
|
+
"totalOpens": {
|
|
4484
|
+
"type": "number",
|
|
4485
|
+
"array": true
|
|
4478
4486
|
}
|
|
4479
4487
|
}
|
|
4480
4488
|
},
|
|
@@ -4496,6 +4504,10 @@ export const data = {
|
|
|
4496
4504
|
"successfulSends": {
|
|
4497
4505
|
"type": "number",
|
|
4498
4506
|
"array": true
|
|
4507
|
+
},
|
|
4508
|
+
"totalRead": {
|
|
4509
|
+
"type": "number",
|
|
4510
|
+
"array": true
|
|
4499
4511
|
}
|
|
4500
4512
|
}
|
|
4501
4513
|
},
|
|
@@ -4594,6 +4606,9 @@ export const data = {
|
|
|
4594
4606
|
},
|
|
4595
4607
|
"successfulSends": {
|
|
4596
4608
|
"type": "number"
|
|
4609
|
+
},
|
|
4610
|
+
"totalOpened": {
|
|
4611
|
+
"type": "number"
|
|
4597
4612
|
}
|
|
4598
4613
|
}
|
|
4599
4614
|
},
|
|
@@ -4629,6 +4644,9 @@ export const data = {
|
|
|
4629
4644
|
},
|
|
4630
4645
|
"successfulSends": {
|
|
4631
4646
|
"type": "number"
|
|
4647
|
+
},
|
|
4648
|
+
"totalOpened": {
|
|
4649
|
+
"type": "number"
|
|
4632
4650
|
}
|
|
4633
4651
|
}
|
|
4634
4652
|
},
|
|
@@ -4652,6 +4670,9 @@ export const data = {
|
|
|
4652
4670
|
},
|
|
4653
4671
|
"successfulSends": {
|
|
4654
4672
|
"type": "number"
|
|
4673
|
+
},
|
|
4674
|
+
"totalRead": {
|
|
4675
|
+
"type": "number"
|
|
4655
4676
|
}
|
|
4656
4677
|
}
|
|
4657
4678
|
},
|
package/package.json
CHANGED
|
@@ -1622,6 +1622,7 @@ export type GetJourneyMetricsResponse_PushMetrics = {
|
|
|
1622
1622
|
opens: number[];
|
|
1623
1623
|
deliveryIssues: number[];
|
|
1624
1624
|
successfulSends: number[];
|
|
1625
|
+
totalOpens: number[];
|
|
1625
1626
|
};
|
|
1626
1627
|
export type GetJourneyMetricsResponse_EmailMetrics = {
|
|
1627
1628
|
sends: number[];
|
|
@@ -1629,12 +1630,14 @@ export type GetJourneyMetricsResponse_EmailMetrics = {
|
|
|
1629
1630
|
deliveryIssues: number[];
|
|
1630
1631
|
clicks: number[];
|
|
1631
1632
|
successfulSends: number[];
|
|
1633
|
+
totalOpens: number[];
|
|
1632
1634
|
};
|
|
1633
1635
|
export type GetJourneyMetricsResponse_WhatsAppMetrics = {
|
|
1634
1636
|
sends: number[];
|
|
1635
1637
|
read: number[];
|
|
1636
1638
|
deliveryIssues: number[];
|
|
1637
1639
|
successfulSends: number[];
|
|
1640
|
+
totalRead: number[];
|
|
1638
1641
|
};
|
|
1639
1642
|
export type GetJourneyMetricsResponse_SMSMetrics = {
|
|
1640
1643
|
sends: number[];
|
|
@@ -1666,6 +1669,7 @@ export type GetJourneyMetricsResponse_PushTotals = {
|
|
|
1666
1669
|
opened: number;
|
|
1667
1670
|
deliveryIssues: number;
|
|
1668
1671
|
successfulSends: number;
|
|
1672
|
+
totalOpened: number;
|
|
1669
1673
|
};
|
|
1670
1674
|
export type GetJourneyMetricsResponse_EmailTotals = {
|
|
1671
1675
|
sent: number;
|
|
@@ -1678,6 +1682,7 @@ export type GetJourneyMetricsResponse_EmailTotals = {
|
|
|
1678
1682
|
clicks: number;
|
|
1679
1683
|
unsubscribes: number;
|
|
1680
1684
|
successfulSends: number;
|
|
1685
|
+
totalOpened: number;
|
|
1681
1686
|
};
|
|
1682
1687
|
export type GetJourneyMetricsResponse_WhatsAppTotals = {
|
|
1683
1688
|
sent: number;
|
|
@@ -1686,6 +1691,7 @@ export type GetJourneyMetricsResponse_WhatsAppTotals = {
|
|
|
1686
1691
|
errors: number;
|
|
1687
1692
|
deliveries: number;
|
|
1688
1693
|
successfulSends: number;
|
|
1694
|
+
totalRead: number;
|
|
1689
1695
|
};
|
|
1690
1696
|
export type GetJourneyMetricsResponse_SMSTotals = {
|
|
1691
1697
|
sent: number;
|