@pushwoosh/rpc-gateway-journey-data 0.27.86 → 0.27.87

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
@@ -4138,6 +4138,14 @@ export const data = {
4138
4138
  }
4139
4139
  }
4140
4140
  },
4141
+ "pushwoosh.cj.journey.PointParamsFilter.LoadPolicy": {
4142
+ "type": "E",
4143
+ "values": [
4144
+ "UNKNOWN",
4145
+ "ALL",
4146
+ "FILTER"
4147
+ ]
4148
+ },
4141
4149
  "pushwoosh.cj.journey.PointParamsFilter": {
4142
4150
  "type": "I",
4143
4151
  "fields": {
@@ -4150,6 +4158,9 @@ export const data = {
4150
4158
  "channels": {
4151
4159
  "type": "pushwoosh.cj.journey.ChannelCheck",
4152
4160
  "array": true
4161
+ },
4162
+ "loadPolicy": {
4163
+ "type": "pushwoosh.cj.journey.PointParamsFilter.LoadPolicy"
4153
4164
  }
4154
4165
  }
4155
4166
  },
@@ -5168,6 +5179,9 @@ export const data = {
5168
5179
  },
5169
5180
  "allowJourneyVersioning": {
5170
5181
  "type": "boolean"
5182
+ },
5183
+ "allowCjSplitterDeviceCheck": {
5184
+ "type": "boolean"
5171
5185
  }
5172
5186
  }
5173
5187
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.86",
3
+ "version": "0.27.87",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1503,10 +1503,12 @@ export type ChannelCheck = {
1503
1503
  channel: ReachabilityChannel;
1504
1504
  platformGroups: PlatformGroup[];
1505
1505
  };
1506
+ export type PointParamsFilter_LoadPolicy = 'UNKNOWN' | 'ALL' | 'FILTER';
1506
1507
  export type PointParamsFilter = {
1507
1508
  filter: Filter;
1508
1509
  filterRaw: string;
1509
1510
  channels: ChannelCheck[];
1511
+ loadPolicy: PointParamsFilter_LoadPolicy;
1510
1512
  };
1511
1513
  export type BehaviorSplitter = {
1512
1514
  enabled: boolean;
@@ -1868,6 +1870,7 @@ export type AccountRestrictionValues = {
1868
1870
  allowCjEmailBcc: boolean;
1869
1871
  allowCjLine: boolean;
1870
1872
  allowJourneyVersioning: boolean;
1873
+ allowCjSplitterDeviceCheck: boolean;
1871
1874
  };
1872
1875
  export type GetJourneyGeneralTimeStatisticsRequest = {
1873
1876
  uuid?: string;