@pushwoosh/rpc-gateway-journey-data 0.27.85 → 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 +17 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -0
package/data.js
CHANGED
|
@@ -3410,6 +3410,9 @@ export const data = {
|
|
|
3410
3410
|
},
|
|
3411
3411
|
"messageType": {
|
|
3412
3412
|
"type": "pushwoosh.cj.journey.MessageType"
|
|
3413
|
+
},
|
|
3414
|
+
"attachment": {
|
|
3415
|
+
"type": "string"
|
|
3413
3416
|
}
|
|
3414
3417
|
},
|
|
3415
3418
|
"oneofs": {}
|
|
@@ -4135,6 +4138,14 @@ export const data = {
|
|
|
4135
4138
|
}
|
|
4136
4139
|
}
|
|
4137
4140
|
},
|
|
4141
|
+
"pushwoosh.cj.journey.PointParamsFilter.LoadPolicy": {
|
|
4142
|
+
"type": "E",
|
|
4143
|
+
"values": [
|
|
4144
|
+
"UNKNOWN",
|
|
4145
|
+
"ALL",
|
|
4146
|
+
"FILTER"
|
|
4147
|
+
]
|
|
4148
|
+
},
|
|
4138
4149
|
"pushwoosh.cj.journey.PointParamsFilter": {
|
|
4139
4150
|
"type": "I",
|
|
4140
4151
|
"fields": {
|
|
@@ -4147,6 +4158,9 @@ export const data = {
|
|
|
4147
4158
|
"channels": {
|
|
4148
4159
|
"type": "pushwoosh.cj.journey.ChannelCheck",
|
|
4149
4160
|
"array": true
|
|
4161
|
+
},
|
|
4162
|
+
"loadPolicy": {
|
|
4163
|
+
"type": "pushwoosh.cj.journey.PointParamsFilter.LoadPolicy"
|
|
4150
4164
|
}
|
|
4151
4165
|
}
|
|
4152
4166
|
},
|
|
@@ -5165,6 +5179,9 @@ export const data = {
|
|
|
5165
5179
|
},
|
|
5166
5180
|
"allowJourneyVersioning": {
|
|
5167
5181
|
"type": "boolean"
|
|
5182
|
+
},
|
|
5183
|
+
"allowCjSplitterDeviceCheck": {
|
|
5184
|
+
"type": "boolean"
|
|
5168
5185
|
}
|
|
5169
5186
|
}
|
|
5170
5187
|
},
|
package/package.json
CHANGED
|
@@ -1227,6 +1227,7 @@ export type PointParamsSendWhatsApp = {
|
|
|
1227
1227
|
capping: Capping;
|
|
1228
1228
|
vouchersParams: VoucherParams;
|
|
1229
1229
|
messageType: MessageType;
|
|
1230
|
+
attachment: string;
|
|
1230
1231
|
};
|
|
1231
1232
|
export type PointParamsSendEmail = {
|
|
1232
1233
|
applicationCode: string;
|
|
@@ -1502,10 +1503,12 @@ export type ChannelCheck = {
|
|
|
1502
1503
|
channel: ReachabilityChannel;
|
|
1503
1504
|
platformGroups: PlatformGroup[];
|
|
1504
1505
|
};
|
|
1506
|
+
export type PointParamsFilter_LoadPolicy = 'UNKNOWN' | 'ALL' | 'FILTER';
|
|
1505
1507
|
export type PointParamsFilter = {
|
|
1506
1508
|
filter: Filter;
|
|
1507
1509
|
filterRaw: string;
|
|
1508
1510
|
channels: ChannelCheck[];
|
|
1511
|
+
loadPolicy: PointParamsFilter_LoadPolicy;
|
|
1509
1512
|
};
|
|
1510
1513
|
export type BehaviorSplitter = {
|
|
1511
1514
|
enabled: boolean;
|
|
@@ -1867,6 +1870,7 @@ export type AccountRestrictionValues = {
|
|
|
1867
1870
|
allowCjEmailBcc: boolean;
|
|
1868
1871
|
allowCjLine: boolean;
|
|
1869
1872
|
allowJourneyVersioning: boolean;
|
|
1873
|
+
allowCjSplitterDeviceCheck: boolean;
|
|
1870
1874
|
};
|
|
1871
1875
|
export type GetJourneyGeneralTimeStatisticsRequest = {
|
|
1872
1876
|
uuid?: string;
|