@pushwoosh/rpc-v2-http-api-data 0.2.136 → 0.2.137
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/sms_presets.d.ts +7 -0
package/data.js
CHANGED
|
@@ -27133,6 +27133,12 @@ export const data = {
|
|
|
27133
27133
|
},
|
|
27134
27134
|
"items": {
|
|
27135
27135
|
"type": "number"
|
|
27136
|
+
},
|
|
27137
|
+
"strategy": {
|
|
27138
|
+
"type": "string"
|
|
27139
|
+
},
|
|
27140
|
+
"anchorTag": {
|
|
27141
|
+
"type": "string"
|
|
27136
27142
|
}
|
|
27137
27143
|
}
|
|
27138
27144
|
},
|
package/package.json
CHANGED
package/sms_presets.d.ts
CHANGED
|
@@ -48,6 +48,13 @@ export type SmsProductsSource_Rule = {
|
|
|
48
48
|
sort: string;
|
|
49
49
|
/** How many products the message carries, and the feed limit. */
|
|
50
50
|
items: number;
|
|
51
|
+
/**
|
|
52
|
+
* How the feed RANKS the products, in the feed's own vocabulary (hence not an enum);
|
|
53
|
+
* `sort` stays the fallback order an unknown value degrades to.
|
|
54
|
+
*/
|
|
55
|
+
strategy: string;
|
|
56
|
+
/** Device tag holding the anchor product id of "also_bought"; empty = unset. */
|
|
57
|
+
anchorTag: string;
|
|
51
58
|
};
|
|
52
59
|
/**
|
|
53
60
|
* One hand-picked product row, frozen as the editor saw it. The fields are exactly
|