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

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
@@ -2860,10 +2860,24 @@ export const data = {
2860
2860
  },
2861
2861
  "emailCategory": {
2862
2862
  "type": "string"
2863
+ },
2864
+ "subjectSource": {
2865
+ "type": "pushwoosh.cj.journey.ValueSource"
2866
+ },
2867
+ "senderInfoSource": {
2868
+ "type": "pushwoosh.cj.journey.ValueSource"
2863
2869
  }
2864
2870
  },
2865
2871
  "oneofs": {}
2866
2872
  },
2873
+ "pushwoosh.cj.journey.ValueSource": {
2874
+ "type": "E",
2875
+ "values": [
2876
+ "VALUE_SOURCE_DEFAULT",
2877
+ "VALUE_SOURCE_FROM_POINT",
2878
+ "VALUE_SOURCE_FROM_PRESET"
2879
+ ]
2880
+ },
2867
2881
  "pushwoosh.cj.journey.From": {
2868
2882
  "type": "I",
2869
2883
  "fields": {
@@ -6125,21 +6139,6 @@ export const data = {
6125
6139
  }
6126
6140
  }
6127
6141
  },
6128
- "pushwoosh.objects.filters.v1.LogicExpression.Field.HighSpeed": {
6129
- "type": "I",
6130
- "fields": {
6131
- "operator": {
6132
- "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.Operator"
6133
- },
6134
- "value": {
6135
- "type": "boolean"
6136
- },
6137
- "values": {
6138
- "type": "boolean",
6139
- "array": true
6140
- }
6141
- }
6142
- },
6143
6142
  "pushwoosh.objects.filters.v1.LogicExpression.Field": {
6144
6143
  "type": "I",
6145
6144
  "fields": {
@@ -6199,9 +6198,6 @@ export const data = {
6199
6198
  },
6200
6199
  "CondDeviceLoadPolicy": {
6201
6200
  "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.DeviceLoadPolicy"
6202
- },
6203
- "CondHighSpeed": {
6204
- "type": "pushwoosh.objects.filters.v1.LogicExpression.Field.HighSpeed"
6205
6201
  }
6206
6202
  },
6207
6203
  "oneofs": {
@@ -6225,8 +6221,7 @@ export const data = {
6225
6221
  "CondFiltrationID",
6226
6222
  "CondUpdated",
6227
6223
  "CondDescription",
6228
- "CondDeviceLoadPolicy",
6229
- "CondHighSpeed"
6224
+ "CondDeviceLoadPolicy"
6230
6225
  ]
6231
6226
  }
6232
6227
  }
@@ -6502,12 +6497,6 @@ export const data = {
6502
6497
  "response": "{}",
6503
6498
  "method": "patch",
6504
6499
  "path": "/v1/objects/filters/ID/{ID}/update/DeviceLoadPolicy"
6505
- },
6506
- "UpdateHighSpeed": {
6507
- "request": "pushwoosh.objects.filters.v1.UpdateHighSpeedRequest",
6508
- "response": "{}",
6509
- "method": "patch",
6510
- "path": "/v1/objects/filters/ID/{ID}/update/HighSpeed"
6511
6500
  }
6512
6501
  }
6513
6502
  },
@@ -6567,9 +6556,6 @@ export const data = {
6567
6556
  },
6568
6557
  "DeviceLoadPolicy": {
6569
6558
  "type": "string"
6570
- },
6571
- "HighSpeed": {
6572
- "type": "boolean"
6573
6559
  }
6574
6560
  }
6575
6561
  },
@@ -6914,17 +6900,6 @@ export const data = {
6914
6900
  }
6915
6901
  }
6916
6902
  },
6917
- "pushwoosh.objects.filters.v1.UpdateHighSpeedRequest": {
6918
- "type": "I",
6919
- "fields": {
6920
- "ID": {
6921
- "type": "number"
6922
- },
6923
- "value": {
6924
- "type": "boolean"
6925
- }
6926
- }
6927
- },
6928
6903
  "pushwoosh.objects.filters.v1.GetRequest": {
6929
6904
  "type": "I",
6930
6905
  "fields": {
@@ -7055,9 +7030,6 @@ export const data = {
7055
7030
  },
7056
7031
  "DeviceLoadPolicy": {
7057
7032
  "type": "string"
7058
- },
7059
- "HighSpeed": {
7060
- "type": "boolean"
7061
7033
  }
7062
7034
  }
7063
7035
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.442",
3
+ "version": "0.26.444",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1038,7 +1038,10 @@ export type PointParamsSendEmail = {
1038
1038
  sendRate: SendRate;
1039
1039
  emailType: string;
1040
1040
  emailCategory: string;
1041
+ subjectSource: ValueSource;
1042
+ senderInfoSource: ValueSource;
1041
1043
  };
1044
+ export type ValueSource = 'VALUE_SOURCE_DEFAULT' | 'VALUE_SOURCE_FROM_POINT' | 'VALUE_SOURCE_FROM_PRESET';
1042
1045
  export type From = {
1043
1046
  name: string;
1044
1047
  email: string;
@@ -105,11 +105,6 @@ 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
- };
113
108
  export type LogicExpression_Field_kind_CondID = {
114
109
  type: 'CondID';
115
110
  data: LogicExpression_Field_ID;
@@ -186,11 +181,7 @@ export type LogicExpression_Field_kind_CondDeviceLoadPolicy = {
186
181
  type: 'CondDeviceLoadPolicy';
187
182
  data: LogicExpression_Field_DeviceLoadPolicy;
188
183
  };
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;
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;
194
185
  export type LogicExpression_Field = {
195
186
  kind: LogicExpression_Field_kind;
196
187
  };
@@ -255,7 +246,6 @@ export interface FiltersCrudService {
255
246
  UpdateUpdated(request: UpdateUpdatedRequest): Promise<{}>;
256
247
  UpdateDescription(request: UpdateDescriptionRequest): Promise<{}>;
257
248
  UpdateDeviceLoadPolicy(request: UpdateDeviceLoadPolicyRequest): Promise<{}>;
258
- UpdateHighSpeed(request: UpdateHighSpeedRequest): Promise<{}>;
259
249
  }
260
250
  export type CreateRequest = {
261
251
  Code?: string;
@@ -276,7 +266,6 @@ export type CreateRequest = {
276
266
  Updated?: Date;
277
267
  Description?: string;
278
268
  DeviceLoadPolicy?: string;
279
- HighSpeed?: boolean;
280
269
  };
281
270
  export type CreateResponse = {
282
271
  filter: Filter;
@@ -401,10 +390,6 @@ export type UpdateDeviceLoadPolicyRequest = {
401
390
  ID?: number;
402
391
  value?: string;
403
392
  };
404
- export type UpdateHighSpeedRequest = {
405
- ID?: number;
406
- value?: boolean;
407
- };
408
393
  export type GetRequest = {
409
394
  ID?: number;
410
395
  };
@@ -449,7 +434,6 @@ export type Filter = {
449
434
  Updated: Date;
450
435
  Description: string;
451
436
  DeviceLoadPolicy: string;
452
- HighSpeed: boolean;
453
437
  };
454
438
  export type FilterExpression_Operation_Operator = 'OPERATOR_UNSPECIFIED' | 'OPERATOR_INTERSECT' | 'OPERATOR_UNION' | 'OPERATOR_DIFFERENCE';
455
439
  export type FilterExpression_Operation = {