@pushwoosh/rpc-gateway-journey-data 0.26.443 → 0.26.445

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": {
@@ -3701,10 +3715,22 @@ export const data = {
3701
3715
  },
3702
3716
  "dynamicEntry": {
3703
3717
  "type": "boolean"
3718
+ },
3719
+ "entryMode": {
3720
+ "type": "pushwoosh.cj.journey.EntryMode"
3704
3721
  }
3705
3722
  },
3706
3723
  "oneofs": {}
3707
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
+ },
3708
3734
  "pushwoosh.cj.journey.SegmentRepeat": {
3709
3735
  "type": "I",
3710
3736
  "fields": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.443",
3
+ "version": "0.26.445",
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;
@@ -1367,7 +1370,9 @@ export type PointParamsStartBySegment = {
1367
1370
  applicationTitle: string;
1368
1371
  startAt: Date;
1369
1372
  dynamicEntry: boolean;
1373
+ entryMode: EntryMode;
1370
1374
  };
1375
+ export type EntryMode = 'ENTRY_MODE_UNKNOWN' | 'ENTRY_MODE_EXISTING_ONLY' | 'ENTRY_MODE_EXISTING_AND_NEW' | 'ENTRY_MODE_NEW_ONLY';
1371
1376
  export type SegmentRepeat = {
1372
1377
  enabled: boolean;
1373
1378
  type: string;