@pushwoosh/rpc-gateway-journey-data 0.26.360 → 0.26.361
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 +10 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -0
package/data.js
CHANGED
|
@@ -2972,8 +2972,13 @@ export const data = {
|
|
|
2972
2972
|
},
|
|
2973
2973
|
"multiEntry": {
|
|
2974
2974
|
"type": "pushwoosh.cj.journey.MultiEntry"
|
|
2975
|
+
},
|
|
2976
|
+
"isTravelerPresenceExtendable": {
|
|
2977
|
+
"type": "boolean",
|
|
2978
|
+
"optional": true
|
|
2975
2979
|
}
|
|
2976
|
-
}
|
|
2980
|
+
},
|
|
2981
|
+
"oneofs": {}
|
|
2977
2982
|
},
|
|
2978
2983
|
"pushwoosh.cj.journey.PointWaitEventInfo": {
|
|
2979
2984
|
"type": "I",
|
|
@@ -3251,6 +3256,10 @@ export const data = {
|
|
|
3251
3256
|
},
|
|
3252
3257
|
"exactWeekDaysTime": {
|
|
3253
3258
|
"type": "pushwoosh.cj.journey.ExactWeekDaysTime"
|
|
3259
|
+
},
|
|
3260
|
+
"isTravelerPresenceExtendable": {
|
|
3261
|
+
"type": "boolean",
|
|
3262
|
+
"optional": true
|
|
3254
3263
|
}
|
|
3255
3264
|
},
|
|
3256
3265
|
"oneofs": {
|
package/package.json
CHANGED
|
@@ -1120,6 +1120,7 @@ export type PointParamsWaitEvent = {
|
|
|
1120
1120
|
events: PointWaitEventInfo[];
|
|
1121
1121
|
conditionsScript: string;
|
|
1122
1122
|
multiEntry: MultiEntry;
|
|
1123
|
+
isTravelerPresenceExtendable?: boolean;
|
|
1123
1124
|
};
|
|
1124
1125
|
export type PointWaitEventInfo = {
|
|
1125
1126
|
eventName: string;
|
|
@@ -1224,6 +1225,7 @@ export type PointParamsDelay_interval_exactWeekDaysTime = {
|
|
|
1224
1225
|
};
|
|
1225
1226
|
export type PointParamsDelay_interval = PointParamsDelay_interval_sec | PointParamsDelay_interval_exactTime | PointParamsDelay_interval_dynamicTime | PointParamsDelay_interval_exactDateTime | PointParamsDelay_interval_exactWeekDaysTime;
|
|
1226
1227
|
export type PointParamsDelay = {
|
|
1228
|
+
isTravelerPresenceExtendable?: boolean;
|
|
1227
1229
|
interval: PointParamsDelay_interval;
|
|
1228
1230
|
};
|
|
1229
1231
|
export type PointOutput = {
|