@pushwoosh/rpc-gateway-journey-data 0.26.211 → 0.26.213
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 +20 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +7 -0
package/data.js
CHANGED
|
@@ -1653,6 +1653,9 @@ export const data = {
|
|
|
1653
1653
|
},
|
|
1654
1654
|
"activePeriod": {
|
|
1655
1655
|
"type": "pushwoosh.cj.journey.Period"
|
|
1656
|
+
},
|
|
1657
|
+
"multiEntry": {
|
|
1658
|
+
"type": "pushwoosh.cj.journey.MultiEntry"
|
|
1656
1659
|
}
|
|
1657
1660
|
}
|
|
1658
1661
|
},
|
|
@@ -2006,6 +2009,9 @@ export const data = {
|
|
|
2006
2009
|
},
|
|
2007
2010
|
"conditionsScript": {
|
|
2008
2011
|
"type": "string"
|
|
2012
|
+
},
|
|
2013
|
+
"multiEntry": {
|
|
2014
|
+
"type": "pushwoosh.cj.journey.MultiEntry"
|
|
2009
2015
|
}
|
|
2010
2016
|
}
|
|
2011
2017
|
},
|
|
@@ -2256,6 +2262,9 @@ export const data = {
|
|
|
2256
2262
|
},
|
|
2257
2263
|
"isThrowOut": {
|
|
2258
2264
|
"type": "boolean"
|
|
2265
|
+
},
|
|
2266
|
+
"multiEntry": {
|
|
2267
|
+
"type": "pushwoosh.cj.journey.MultiEntry"
|
|
2259
2268
|
}
|
|
2260
2269
|
}
|
|
2261
2270
|
},
|
|
@@ -3080,6 +3089,17 @@ export const data = {
|
|
|
3080
3089
|
}
|
|
3081
3090
|
}
|
|
3082
3091
|
},
|
|
3092
|
+
"pushwoosh.cj.journey.MultiEntry": {
|
|
3093
|
+
"type": "I",
|
|
3094
|
+
"fields": {
|
|
3095
|
+
"enabled": {
|
|
3096
|
+
"type": "boolean"
|
|
3097
|
+
},
|
|
3098
|
+
"attributeName": {
|
|
3099
|
+
"type": "string"
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
3083
3103
|
"pushwoosh.cj.journey.GetVoucherPoolsRequest": {
|
|
3084
3104
|
"type": "I",
|
|
3085
3105
|
"fields": {
|
package/package.json
CHANGED
|
@@ -668,6 +668,7 @@ export type PointParamsMessageBus = {
|
|
|
668
668
|
applicationCode: string;
|
|
669
669
|
eventConditions: PointEventCondition[];
|
|
670
670
|
activePeriod: Period;
|
|
671
|
+
multiEntry: MultiEntry;
|
|
671
672
|
};
|
|
672
673
|
export type Period = {
|
|
673
674
|
enabled: boolean;
|
|
@@ -787,6 +788,7 @@ export type PointParamsBooleanSplitter = {
|
|
|
787
788
|
export type PointParamsWaitEvent = {
|
|
788
789
|
events: PointWaitEventInfo[];
|
|
789
790
|
conditionsScript: string;
|
|
791
|
+
multiEntry: MultiEntry;
|
|
790
792
|
};
|
|
791
793
|
export type PointWaitEventInfo = {
|
|
792
794
|
eventName: string;
|
|
@@ -866,6 +868,7 @@ export type PointParamsGoalEvent = {
|
|
|
866
868
|
applicationCode: string;
|
|
867
869
|
eventConditions: PointEventCondition[];
|
|
868
870
|
isThrowOut: boolean;
|
|
871
|
+
multiEntry: MultiEntry;
|
|
869
872
|
};
|
|
870
873
|
export type PointParamsDelay_interval_sec = {
|
|
871
874
|
type: 'sec';
|
|
@@ -1169,6 +1172,10 @@ export type GetJourneyUsersResponse = {
|
|
|
1169
1172
|
users: GetJourneyUsersResponse_UserPoint[];
|
|
1170
1173
|
totals: number;
|
|
1171
1174
|
};
|
|
1175
|
+
export type MultiEntry = {
|
|
1176
|
+
enabled: boolean;
|
|
1177
|
+
attributeName: string;
|
|
1178
|
+
};
|
|
1172
1179
|
export type GetVoucherPoolsRequest = {
|
|
1173
1180
|
applicationCode?: string;
|
|
1174
1181
|
};
|