You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added support for the new Composite Recommendation endpoint
- Added new parameter `autoPresented` for Detail View and View Portion interactions
- Added new parameter `timeSpent` for View Portion interactions
- Added support for `reqlExpressions` on recommended items
- Added support for input classes
- Format code using `rubocop`
# - +user_id+ -> User who added the item to the cart
20
-
# - +item_id+ -> Item added to the cart
21
-
#
22
-
# * *Optional arguments (given as hash optional)*
23
-
# - +timestamp+ -> UTC timestamp of the cart addition as ISO8601-1 pattern or UTC epoch time. The default value is the current time.
24
-
# - +cascadeCreate+ -> Sets whether the given user/item should be created if not present in the database.
25
-
# - +amount+ -> Amount (number) added to cart. The default is 1. For example, if `user-x` adds two `item-y` during a single order (session...), the `amount` should equal 2.
26
-
# - +price+ -> Price of the added item. If `amount` is greater than 1, the sum of prices of all the items should be given.
27
-
# - +recommId+ -> If this cart addition is based on a recommendation request, `recommId` is the id of the clicked recommendation.
28
-
# - +additionalData+ -> A dictionary of additional data for the interaction.
29
-
#
14
+
attr_accessor:timeout,:ensure_https
15
+
16
+
##
17
+
# * *Required arguments*
18
+
# - +user_id+ -> User who added the item to the cart
19
+
# - +item_id+ -> Item added to the cart
20
+
#
21
+
# * *Optional arguments (given as hash optional)*
22
+
# - +timestamp+ -> UTC timestamp of the cart addition as ISO8601-1 pattern or UTC epoch time. The default value is the current time.
23
+
# - +cascadeCreate+ -> Sets whether the given user/item should be created if not present in the database.
24
+
# - +amount+ -> Amount (number) added to cart. The default is 1. For example, if `user-x` adds two `item-y` during a single order (session...), the `amount` should equal 2.
25
+
# - +price+ -> Price of the added item. If `amount` is greater than 1, the sum of prices of all the items should be given.
26
+
# - +recommId+ -> If this cart addition is based on a recommendation request, `recommId` is the id of the clicked recommendation.
27
+
# - +additionalData+ -> A dictionary of additional data for the interaction.
0 commit comments