@pushwoosh/rpc-gateway-journey-data 0.26.236 → 0.26.237
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 +14 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +5 -0
package/data.js
CHANGED
|
@@ -1682,6 +1682,9 @@ export const data = {
|
|
|
1682
1682
|
},
|
|
1683
1683
|
"multiEntry": {
|
|
1684
1684
|
"type": "pushwoosh.cj.journey.MultiEntry"
|
|
1685
|
+
},
|
|
1686
|
+
"attributeEntry": {
|
|
1687
|
+
"type": "pushwoosh.cj.journey.AttributeEntry"
|
|
1685
1688
|
}
|
|
1686
1689
|
}
|
|
1687
1690
|
},
|
|
@@ -3165,6 +3168,17 @@ export const data = {
|
|
|
3165
3168
|
}
|
|
3166
3169
|
}
|
|
3167
3170
|
},
|
|
3171
|
+
"pushwoosh.cj.journey.AttributeEntry": {
|
|
3172
|
+
"type": "I",
|
|
3173
|
+
"fields": {
|
|
3174
|
+
"enabled": {
|
|
3175
|
+
"type": "boolean"
|
|
3176
|
+
},
|
|
3177
|
+
"attributeName": {
|
|
3178
|
+
"type": "string"
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
3181
|
+
},
|
|
3168
3182
|
"pushwoosh.cj.journey.GetVoucherPoolsRequest": {
|
|
3169
3183
|
"type": "I",
|
|
3170
3184
|
"fields": {
|
package/package.json
CHANGED
|
@@ -676,6 +676,7 @@ export type PointParamsMessageBus = {
|
|
|
676
676
|
eventConditions: PointEventCondition[];
|
|
677
677
|
activePeriod: Period;
|
|
678
678
|
multiEntry: MultiEntry;
|
|
679
|
+
attributeEntry: AttributeEntry;
|
|
679
680
|
};
|
|
680
681
|
export type Period = {
|
|
681
682
|
enabled: boolean;
|
|
@@ -1194,6 +1195,10 @@ export type MultiEntry = {
|
|
|
1194
1195
|
enabled: boolean;
|
|
1195
1196
|
attributeName: string;
|
|
1196
1197
|
};
|
|
1198
|
+
export type AttributeEntry = {
|
|
1199
|
+
enabled: boolean;
|
|
1200
|
+
attributeName: string;
|
|
1201
|
+
};
|
|
1197
1202
|
export type GetVoucherPoolsRequest = {
|
|
1198
1203
|
applicationCode?: string;
|
|
1199
1204
|
};
|