@pushwoosh/rpc-gateway-journey-data 0.26.338 → 0.26.340

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",
@@ -4278,6 +4288,9 @@ export const data = {
4278
4288
  },
4279
4289
  "errors": {
4280
4290
  "type": "number"
4291
+ },
4292
+ "deliveries": {
4293
+ "type": "number"
4281
4294
  }
4282
4295
  }
4283
4296
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.338",
3
+ "version": "0.26.340",
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';
@@ -1571,6 +1574,7 @@ export type GetJourneyMetricsResponse_WhatsAppTotals = {
1571
1574
  recipients: number;
1572
1575
  read: number;
1573
1576
  errors: number;
1577
+ deliveries: number;
1574
1578
  };
1575
1579
  export type GetJourneyMetricsResponse_SMSTotals = {
1576
1580
  sent: number;