@pushwoosh/rpc-gateway-journey-data 0.26.225 → 0.26.227
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 +30 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +7 -0
package/data.js
CHANGED
|
@@ -291,6 +291,13 @@ export const data = {
|
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
293
|
},
|
|
294
|
+
"pushwoosh.cj.journey.WinnerStrategy": {
|
|
295
|
+
"type": "E",
|
|
296
|
+
"values": [
|
|
297
|
+
"ANY_GOAL",
|
|
298
|
+
"SPECIFIC_GOAL"
|
|
299
|
+
]
|
|
300
|
+
},
|
|
294
301
|
"pushwoosh.cj.journey.UpdateABSSplitterParamsRequest": {
|
|
295
302
|
"type": "I",
|
|
296
303
|
"fields": {
|
|
@@ -306,6 +313,12 @@ export const data = {
|
|
|
306
313
|
},
|
|
307
314
|
"autoSelectWinner": {
|
|
308
315
|
"type": "boolean"
|
|
316
|
+
},
|
|
317
|
+
"winnerStrategy": {
|
|
318
|
+
"type": "pushwoosh.cj.journey.WinnerStrategy"
|
|
319
|
+
},
|
|
320
|
+
"goalUuid": {
|
|
321
|
+
"type": "string"
|
|
309
322
|
}
|
|
310
323
|
}
|
|
311
324
|
},
|
|
@@ -2017,11 +2030,22 @@ export const data = {
|
|
|
2017
2030
|
"SEND"
|
|
2018
2031
|
]
|
|
2019
2032
|
},
|
|
2033
|
+
"pushwoosh.cj.journey.PointParamsBooleanSplitter.LoadPolicy": {
|
|
2034
|
+
"type": "E",
|
|
2035
|
+
"values": [
|
|
2036
|
+
"UNKNOWN",
|
|
2037
|
+
"ALL",
|
|
2038
|
+
"FILTER"
|
|
2039
|
+
]
|
|
2040
|
+
},
|
|
2020
2041
|
"pushwoosh.cj.journey.PointParamsBooleanSplitter": {
|
|
2021
2042
|
"type": "I",
|
|
2022
2043
|
"fields": {
|
|
2023
2044
|
"filterCode": {
|
|
2024
2045
|
"type": "string"
|
|
2046
|
+
},
|
|
2047
|
+
"loadPolicy": {
|
|
2048
|
+
"type": "pushwoosh.cj.journey.PointParamsBooleanSplitter.LoadPolicy"
|
|
2025
2049
|
}
|
|
2026
2050
|
}
|
|
2027
2051
|
},
|
|
@@ -2480,6 +2504,12 @@ export const data = {
|
|
|
2480
2504
|
},
|
|
2481
2505
|
"winnerSplit": {
|
|
2482
2506
|
"type": "number"
|
|
2507
|
+
},
|
|
2508
|
+
"winnerStrategy": {
|
|
2509
|
+
"type": "pushwoosh.cj.journey.WinnerStrategy"
|
|
2510
|
+
},
|
|
2511
|
+
"goalUuid": {
|
|
2512
|
+
"type": "string"
|
|
2483
2513
|
}
|
|
2484
2514
|
}
|
|
2485
2515
|
},
|
package/package.json
CHANGED
|
@@ -79,11 +79,14 @@ export type AutocompleteValue_kind = AutocompleteValue_kind_intValue | Autocompl
|
|
|
79
79
|
export type AutocompleteValue = {
|
|
80
80
|
kind: AutocompleteValue_kind;
|
|
81
81
|
};
|
|
82
|
+
export type WinnerStrategy = 'ANY_GOAL' | 'SPECIFIC_GOAL';
|
|
82
83
|
export type UpdateABSSplitterParamsRequest = {
|
|
83
84
|
journeyUuid?: string;
|
|
84
85
|
pointUuid?: string;
|
|
85
86
|
params?: number[];
|
|
86
87
|
autoSelectWinner?: boolean;
|
|
88
|
+
winnerStrategy?: WinnerStrategy;
|
|
89
|
+
goalUuid?: string;
|
|
87
90
|
};
|
|
88
91
|
export type CloneJourneysRequest = {
|
|
89
92
|
journeyUuids?: string[];
|
|
@@ -790,8 +793,10 @@ export type PointParamsSendData = {
|
|
|
790
793
|
vouchersParams: VoucherParams;
|
|
791
794
|
};
|
|
792
795
|
export type UnsubscribedPolicy = 'UNKNOWN' | 'IGNORE' | 'SEND';
|
|
796
|
+
export type PointParamsBooleanSplitter_LoadPolicy = 'UNKNOWN' | 'ALL' | 'FILTER';
|
|
793
797
|
export type PointParamsBooleanSplitter = {
|
|
794
798
|
filterCode: string;
|
|
799
|
+
loadPolicy: PointParamsBooleanSplitter_LoadPolicy;
|
|
795
800
|
};
|
|
796
801
|
export type PointParamsWaitEvent = {
|
|
797
802
|
events: PointWaitEventInfo[];
|
|
@@ -951,6 +956,8 @@ export type PointParamsABSplitter = {
|
|
|
951
956
|
split: number[];
|
|
952
957
|
autoSelectWinner: boolean;
|
|
953
958
|
winnerSplit: number;
|
|
959
|
+
winnerStrategy: WinnerStrategy;
|
|
960
|
+
goalUuid: string;
|
|
954
961
|
};
|
|
955
962
|
export type TagType = 'TYPE_UNKNOWN' | 'TYPE_INTEGER' | 'TYPE_STRING' | 'TYPE_LIST' | 'TYPE_DATE' | 'TYPE_BOOLEAN' | 'TYPE_PRICE' | 'TYPE_VERSION' | 'TYPE_DYNAMIC' | 'TYPE_LIST_APPEND';
|
|
956
963
|
export type Tag_value_int = {
|