@pushwoosh/rpc-gateway-journey-data 0.26.444 → 0.26.446

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
@@ -3715,10 +3715,22 @@ export const data = {
3715
3715
  },
3716
3716
  "dynamicEntry": {
3717
3717
  "type": "boolean"
3718
+ },
3719
+ "entryMode": {
3720
+ "type": "pushwoosh.cj.journey.EntryMode"
3718
3721
  }
3719
3722
  },
3720
3723
  "oneofs": {}
3721
3724
  },
3725
+ "pushwoosh.cj.journey.EntryMode": {
3726
+ "type": "E",
3727
+ "values": [
3728
+ "ENTRY_MODE_UNKNOWN",
3729
+ "ENTRY_MODE_EXISTING_ONLY",
3730
+ "ENTRY_MODE_EXISTING_AND_NEW",
3731
+ "ENTRY_MODE_NEW_ONLY"
3732
+ ]
3733
+ },
3722
3734
  "pushwoosh.cj.journey.SegmentRepeat": {
3723
3735
  "type": "I",
3724
3736
  "fields": {
@@ -6139,6 +6151,21 @@ export const data = {
6139
6151
  }
6140
6152
  }
6141
6153
  },
6154
+ "pushwoosh.objects.filters.v1.LogicExpression.Field.HighSpeed": {
6155
+ "type": "I",
6156
+ "fields": {
6157
+ "operator": {
6158
+ "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Operator"
6159
+ },
6160
+ "value": {
6161
+ "type": "boolean"
6162
+ },
6163
+ "values": {
6164
+ "type": "boolean",
6165
+ "array": true
6166
+ }
6167
+ }
6168
+ },
6142
6169
  "pushwoosh.objects.filters.v1.LogicExpression.Field": {
6143
6170
  "type": "I",
6144
6171
  "fields": {
@@ -6198,6 +6225,9 @@ export const data = {
6198
6225
  },
6199
6226
  "CondDeviceLoadPolicy": {
6200
6227
  "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.DeviceLoadPolicy"
6228
+ },
6229
+ "CondHighSpeed": {
6230
+ "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.HighSpeed"
6201
6231
  }
6202
6232
  },
6203
6233
  "oneofs": {
@@ -6221,7 +6251,8 @@ export const data = {
6221
6251
  "CondFiltrationID",
6222
6252
  "CondUpdated",
6223
6253
  "CondDescription",
6224
- "CondDeviceLoadPolicy"
6254
+ "CondDeviceLoadPolicy",
6255
+ "CondHighSpeed"
6225
6256
  ]
6226
6257
  }
6227
6258
  }
@@ -6497,6 +6528,12 @@ export const data = {
6497
6528
  "response": "{}",
6498
6529
  "method": "patch",
6499
6530
  "path": "/v1/objects/filters/ID/{ID}/update/DeviceLoadPolicy"
6531
+ },
6532
+ "UpdateHighSpeed": {
6533
+ "request": "pushwoosh.objects.filters.v1.UpdateHighSpeedRequest",
6534
+ "response": "{}",
6535
+ "method": "patch",
6536
+ "path": "/v1/objects/filters/ID/{ID}/update/HighSpeed"
6500
6537
  }
6501
6538
  }
6502
6539
  },
@@ -6556,6 +6593,9 @@ export const data = {
6556
6593
  },
6557
6594
  "DeviceLoadPolicy": {
6558
6595
  "type": "string"
6596
+ },
6597
+ "HighSpeed": {
6598
+ "type": "boolean"
6559
6599
  }
6560
6600
  }
6561
6601
  },
@@ -6900,6 +6940,17 @@ export const data = {
6900
6940
  }
6901
6941
  }
6902
6942
  },
6943
+ "pushwoosh.objects.filters.v1.UpdateHighSpeedRequest": {
6944
+ "type": "I",
6945
+ "fields": {
6946
+ "ID": {
6947
+ "type": "number"
6948
+ },
6949
+ "value": {
6950
+ "type": "boolean"
6951
+ }
6952
+ }
6953
+ },
6903
6954
  "pushwoosh.objects.filters.v1.GetRequest": {
6904
6955
  "type": "I",
6905
6956
  "fields": {
@@ -7030,6 +7081,9 @@ export const data = {
7030
7081
  },
7031
7082
  "DeviceLoadPolicy": {
7032
7083
  "type": "string"
7084
+ },
7085
+ "HighSpeed": {
7086
+ "type": "boolean"
7033
7087
  }
7034
7088
  }
7035
7089
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.444",
3
+ "version": "0.26.446",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1370,7 +1370,9 @@ export type PointParamsStartBySegment = {
1370
1370
  applicationTitle: string;
1371
1371
  startAt: Date;
1372
1372
  dynamicEntry: boolean;
1373
+ entryMode: EntryMode;
1373
1374
  };
1375
+ export type EntryMode = 'ENTRY_MODE_UNKNOWN' | 'ENTRY_MODE_EXISTING_ONLY' | 'ENTRY_MODE_EXISTING_AND_NEW' | 'ENTRY_MODE_NEW_ONLY';
1374
1376
  export type SegmentRepeat = {
1375
1377
  enabled: boolean;
1376
1378
  type: string;
@@ -105,6 +105,11 @@ export type LogicExpression_Field_DeviceLoadPolicy = {
105
105
  value: string;
106
106
  values: string[];
107
107
  };
108
+ export type LogicExpression_Field_HighSpeed = {
109
+ operator: LogicExpression_Field_Operator;
110
+ value: boolean;
111
+ values: boolean[];
112
+ };
108
113
  export type LogicExpression_Field_kind_CondID = {
109
114
  type: 'CondID';
110
115
  data: LogicExpression_Field_ID;
@@ -181,7 +186,11 @@ export type LogicExpression_Field_kind_CondDeviceLoadPolicy = {
181
186
  type: 'CondDeviceLoadPolicy';
182
187
  data: LogicExpression_Field_DeviceLoadPolicy;
183
188
  };
184
- export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondCode | LogicExpression_Field_kind_CondAccountID | LogicExpression_Field_kind_CondName | LogicExpression_Field_kind_CondApplicationID | LogicExpression_Field_kind_CondIsFiltrationInProgress | LogicExpression_Field_kind_CondFiltrationStartedAt | LogicExpression_Field_kind_CondFiltrationLastFilteredAt | LogicExpression_Field_kind_CondFiltrationLastCheckedAt | LogicExpression_Field_kind_CondFiltrationScheduledAt | LogicExpression_Field_kind_CondCheckerScheduledAt | LogicExpression_Field_kind_CondIsSystem | LogicExpression_Field_kind_CondExpirationDate | LogicExpression_Field_kind_CondCreated | LogicExpression_Field_kind_CondFilterExpressionRaw | LogicExpression_Field_kind_CondFiltrationID | LogicExpression_Field_kind_CondUpdated | LogicExpression_Field_kind_CondDescription | LogicExpression_Field_kind_CondDeviceLoadPolicy;
189
+ export type LogicExpression_Field_kind_CondHighSpeed = {
190
+ type: 'CondHighSpeed';
191
+ data: LogicExpression_Field_HighSpeed;
192
+ };
193
+ export type LogicExpression_Field_kind = LogicExpression_Field_kind_CondID | LogicExpression_Field_kind_CondCode | LogicExpression_Field_kind_CondAccountID | LogicExpression_Field_kind_CondName | LogicExpression_Field_kind_CondApplicationID | LogicExpression_Field_kind_CondIsFiltrationInProgress | LogicExpression_Field_kind_CondFiltrationStartedAt | LogicExpression_Field_kind_CondFiltrationLastFilteredAt | LogicExpression_Field_kind_CondFiltrationLastCheckedAt | LogicExpression_Field_kind_CondFiltrationScheduledAt | LogicExpression_Field_kind_CondCheckerScheduledAt | LogicExpression_Field_kind_CondIsSystem | LogicExpression_Field_kind_CondExpirationDate | LogicExpression_Field_kind_CondCreated | LogicExpression_Field_kind_CondFilterExpressionRaw | LogicExpression_Field_kind_CondFiltrationID | LogicExpression_Field_kind_CondUpdated | LogicExpression_Field_kind_CondDescription | LogicExpression_Field_kind_CondDeviceLoadPolicy | LogicExpression_Field_kind_CondHighSpeed;
185
194
  export type LogicExpression_Field = {
186
195
  kind: LogicExpression_Field_kind;
187
196
  };
@@ -246,6 +255,7 @@ export interface FiltersCrudService {
246
255
  UpdateUpdated(request: UpdateUpdatedRequest): Promise<{}>;
247
256
  UpdateDescription(request: UpdateDescriptionRequest): Promise<{}>;
248
257
  UpdateDeviceLoadPolicy(request: UpdateDeviceLoadPolicyRequest): Promise<{}>;
258
+ UpdateHighSpeed(request: UpdateHighSpeedRequest): Promise<{}>;
249
259
  }
250
260
  export type CreateRequest = {
251
261
  Code?: string;
@@ -266,6 +276,7 @@ export type CreateRequest = {
266
276
  Updated?: Date;
267
277
  Description?: string;
268
278
  DeviceLoadPolicy?: string;
279
+ HighSpeed?: boolean;
269
280
  };
270
281
  export type CreateResponse = {
271
282
  filter: Filter;
@@ -390,6 +401,10 @@ export type UpdateDeviceLoadPolicyRequest = {
390
401
  ID?: number;
391
402
  value?: string;
392
403
  };
404
+ export type UpdateHighSpeedRequest = {
405
+ ID?: number;
406
+ value?: boolean;
407
+ };
393
408
  export type GetRequest = {
394
409
  ID?: number;
395
410
  };
@@ -434,6 +449,7 @@ export type Filter = {
434
449
  Updated: Date;
435
450
  Description: string;
436
451
  DeviceLoadPolicy: string;
452
+ HighSpeed: boolean;
437
453
  };
438
454
  export type FilterExpression_Operation_Operator = 'OPERATOR_UNSPECIFIED' | 'OPERATOR_INTERSECT' | 'OPERATOR_UNION' | 'OPERATOR_DIFFERENCE';
439
455
  export type FilterExpression_Operation = {