@pushwoosh/rpc-gateway-journey-data 0.26.332 → 0.26.333

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
@@ -3931,7 +3931,8 @@ export const data = {
3931
3931
  "EMAIL",
3932
3932
  "WHATSAPP",
3933
3933
  "SMS",
3934
- "IN_APP"
3934
+ "IN_APP",
3935
+ "LINE"
3935
3936
  ]
3936
3937
  },
3937
3938
  "pushwoosh.cj.journey.GetJourneyMetricsRequest": {
@@ -4016,11 +4017,20 @@ export const data = {
4016
4017
  "type": "number",
4017
4018
  "array": true
4018
4019
  },
4019
- "opens": {
4020
+ "deliveries": {
4020
4021
  "type": "number",
4021
4022
  "array": true
4022
4023
  },
4023
- "deliveries": {
4024
+ "deliveryIssues": {
4025
+ "type": "number",
4026
+ "array": true
4027
+ }
4028
+ }
4029
+ },
4030
+ "pushwoosh.cj.journey.GetJourneyMetricsResponse.LineMetrics": {
4031
+ "type": "I",
4032
+ "fields": {
4033
+ "sends": {
4024
4034
  "type": "number",
4025
4035
  "array": true
4026
4036
  },
@@ -4142,7 +4152,21 @@ export const data = {
4142
4152
  "recipients": {
4143
4153
  "type": "number"
4144
4154
  },
4145
- "opened": {
4155
+ "deliveries": {
4156
+ "type": "number"
4157
+ },
4158
+ "errors": {
4159
+ "type": "number"
4160
+ }
4161
+ }
4162
+ },
4163
+ "pushwoosh.cj.journey.GetJourneyMetricsResponse.LineTotals": {
4164
+ "type": "I",
4165
+ "fields": {
4166
+ "sent": {
4167
+ "type": "number"
4168
+ },
4169
+ "recipients": {
4146
4170
  "type": "number"
4147
4171
  },
4148
4172
  "errors": {
@@ -4181,6 +4205,9 @@ export const data = {
4181
4205
  },
4182
4206
  "inApp": {
4183
4207
  "type": "pushwoosh.cj.journey.GetJourneyMetricsResponse.InAppTotals"
4208
+ },
4209
+ "line": {
4210
+ "type": "pushwoosh.cj.journey.GetJourneyMetricsResponse.LineTotals"
4184
4211
  }
4185
4212
  }
4186
4213
  },
@@ -5971,6 +5998,17 @@ export const data = {
5971
5998
  }
5972
5999
  }
5973
6000
  },
6001
+ "pushwoosh.objects.filters.v1.FilterExpression.Segment": {
6002
+ "type": "I",
6003
+ "fields": {
6004
+ "application": {
6005
+ "type": "string"
6006
+ },
6007
+ "segment": {
6008
+ "type": "string"
6009
+ }
6010
+ }
6011
+ },
5974
6012
  "pushwoosh.objects.filters.v1.FilterExpression.Static": {
5975
6013
  "type": "I",
5976
6014
  "fields": {
@@ -6822,6 +6860,10 @@ export const data = {
6822
6860
  "platforms": {
6823
6861
  "type": "string",
6824
6862
  "array": true
6863
+ },
6864
+ "hwids": {
6865
+ "type": "string",
6866
+ "array": true
6825
6867
  }
6826
6868
  }
6827
6869
  },
@@ -7811,6 +7853,9 @@ export const data = {
7811
7853
  },
7812
7854
  "tagDateMatch": {
7813
7855
  "type": "pushwoosh.objects.filters.v1.FilterExpression.TagDateMatch"
7856
+ },
7857
+ "segment": {
7858
+ "type": "pushwoosh.objects.filters.v1.FilterExpression.Segment"
7814
7859
  }
7815
7860
  },
7816
7861
  "oneofs": {
@@ -7824,7 +7869,8 @@ export const data = {
7824
7869
  "event",
7825
7870
  "updated",
7826
7871
  "bestTimeToSend",
7827
- "tagDateMatch"
7872
+ "tagDateMatch",
7873
+ "segment"
7828
7874
  ]
7829
7875
  }
7830
7876
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.332",
3
+ "version": "0.26.333",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1440,7 +1440,7 @@ export type GetJourneyUsersResponse = {
1440
1440
  users: GetJourneyUsersResponse_UserPoint[];
1441
1441
  totals: number;
1442
1442
  };
1443
- export type Channel = 'CHANNEL_UNSPECIFIED' | 'PUSH' | 'EMAIL' | 'WHATSAPP' | 'SMS' | 'IN_APP';
1443
+ export type Channel = 'CHANNEL_UNSPECIFIED' | 'PUSH' | 'EMAIL' | 'WHATSAPP' | 'SMS' | 'IN_APP' | 'LINE';
1444
1444
  export type GetJourneyMetricsRequest = {
1445
1445
  uuid?: string;
1446
1446
  application?: string;
@@ -1466,10 +1466,13 @@ export type GetJourneyMetricsResponse_WhatsAppMetrics = {
1466
1466
  };
1467
1467
  export type GetJourneyMetricsResponse_SMSMetrics = {
1468
1468
  sends: number[];
1469
- opens: number[];
1470
1469
  deliveries: number[];
1471
1470
  deliveryIssues: number[];
1472
1471
  };
1472
+ export type GetJourneyMetricsResponse_LineMetrics = {
1473
+ sends: number[];
1474
+ deliveryIssues: number[];
1475
+ };
1473
1476
  export type GetJourneyMetricsResponse_InAppMetrics = {
1474
1477
  impressions: number[];
1475
1478
  interactions: number[];
@@ -1508,7 +1511,12 @@ export type GetJourneyMetricsResponse_WhatsAppTotals = {
1508
1511
  export type GetJourneyMetricsResponse_SMSTotals = {
1509
1512
  sent: number;
1510
1513
  recipients: number;
1511
- opened: number;
1514
+ deliveries: number;
1515
+ errors: number;
1516
+ };
1517
+ export type GetJourneyMetricsResponse_LineTotals = {
1518
+ sent: number;
1519
+ recipients: number;
1512
1520
  errors: number;
1513
1521
  };
1514
1522
  export type GetJourneyMetricsResponse_InAppTotals = {
@@ -1522,6 +1530,7 @@ export type GetJourneyMetricsResponse_ChannelTotals = {
1522
1530
  whatsapp: GetJourneyMetricsResponse_WhatsAppTotals;
1523
1531
  sms: GetJourneyMetricsResponse_SMSTotals;
1524
1532
  inApp: GetJourneyMetricsResponse_InAppTotals;
1533
+ line: GetJourneyMetricsResponse_LineTotals;
1525
1534
  };
1526
1535
  export type GetJourneyMetricsResponse = {
1527
1536
  timestamps: Date[];
@@ -495,6 +495,10 @@ export type FilterExpression_BestTimeToSend = {
495
495
  applications: string[];
496
496
  value: FilterExpression_BestTimeToSend_Value;
497
497
  };
498
+ export type FilterExpression_Segment = {
499
+ application: string;
500
+ segment: string;
501
+ };
498
502
  export type FilterExpression_Static = {
499
503
  application: string;
500
504
  segment: string;
@@ -932,6 +936,7 @@ export type FilterExpression_Event = {
932
936
  date: FilterExpression_Event_Date;
933
937
  attributes: FilterExpression_Event_Attribute[];
934
938
  platforms: string[];
939
+ hwids: string[];
935
940
  };
936
941
  export type FilterExpression_Updated_Condition_Lte = {
937
942
  value: Date;
@@ -1479,7 +1484,11 @@ export type FilterExpression_kind_tagDateMatch = {
1479
1484
  type: 'tagDateMatch';
1480
1485
  data: FilterExpression_TagDateMatch;
1481
1486
  };
1482
- export type FilterExpression_kind = FilterExpression_kind_operation | FilterExpression_kind_application | FilterExpression_kind_tag | FilterExpression_kind_geo | FilterExpression_kind_static | FilterExpression_kind_event | FilterExpression_kind_updated | FilterExpression_kind_bestTimeToSend | FilterExpression_kind_tagDateMatch;
1487
+ export type FilterExpression_kind_segment = {
1488
+ type: 'segment';
1489
+ data: FilterExpression_Segment;
1490
+ };
1491
+ export type FilterExpression_kind = FilterExpression_kind_operation | FilterExpression_kind_application | FilterExpression_kind_tag | FilterExpression_kind_geo | FilterExpression_kind_static | FilterExpression_kind_event | FilterExpression_kind_updated | FilterExpression_kind_bestTimeToSend | FilterExpression_kind_tagDateMatch | FilterExpression_kind_segment;
1483
1492
  export type FilterExpression = {
1484
1493
  kind: FilterExpression_kind;
1485
1494
  };