@pushwoosh/rpc-gateway-ai-assistant 0.1.319 → 0.1.321
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 +6 -0
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +10 -0
package/data.js
CHANGED
package/package.json
CHANGED
|
@@ -1099,6 +1099,16 @@ export type ProductsRule = {
|
|
|
1099
1099
|
sort: ProductsRuleSort;
|
|
1100
1100
|
/** Grid cells emitted, and the feed limit. <= 0 → degrades to MANUAL. */
|
|
1101
1101
|
limit: number;
|
|
1102
|
+
/**
|
|
1103
|
+
* How the feed RANKS the products, in the feed's own vocabulary (hence not an
|
|
1104
|
+
* enum); `sort` stays the fallback order, and an unknown value degrades to it.
|
|
1105
|
+
*/
|
|
1106
|
+
strategy: string;
|
|
1107
|
+
/**
|
|
1108
|
+
* Device tag holding the anchor product id of "also_bought". "" = unset, and a
|
|
1109
|
+
* name unreachable in Liquid is dropped — the block falls back to the rule.
|
|
1110
|
+
*/
|
|
1111
|
+
anchorTag: string;
|
|
1102
1112
|
};
|
|
1103
1113
|
/** Abandoned cart of the recipient. Same degradation contract as ProductsRule. */
|
|
1104
1114
|
export type ProductsCart = {
|