v1.2.0
Version 1.2.0
09/10/25
Type | Location | Event | Previous Version | Updated Version | Notes |
---|---|---|---|---|---|
parameter | playbook.yaml | N/A | 1.1.0 | 1.2.0 | Updated version parameter |
parameter | playbook.yaml | cart_viewed | return MAP(<br> input.properties.products,<br> function (p)<br> return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br> }<br> end<br>) | local mapped = MAP(input.properties.products, function(p)<br>return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br> }<br>end)<br>return TO_STRING(mapped) | Updated body parameter |
parameter | playbook.yaml | checkout_started | return MAP(<br> input.properties.products,<br> function (p)<br> return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br> }<br> end<br>) | local mapped = MAP(input.properties.products, function(p)<br>return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br>}<br>end)<br>return TO_STRING(mapped) | Updated body parameter |
parameter | playbook.yaml | order_completed | return MAP(<br> input.properties.products,<br> function (p)<br> return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br> }<br> end<br>) | local mapped = MAP(input.properties.products, function(p)<br>return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br>}<br>end)<br>return TO_STRING(mapped) | Updated body parameter |
parameter | playbook.yaml | product_added | return {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}} | local product = {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}}<br>return TO_STRING(product) | Updated body parameter |
parameter | playbook.yaml | product_clicked | return {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}} | local product = {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}}<br>return TO_STRING(product) | Updated body parameter |
parameter | playbook.yaml | product_list_viewed | return MAP(<br> input.properties.products,<br> function (p)<br> return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br> }<br> end<br>) | local mapped = MAP(input.properties.products, function(p)<br>return {<br> id = p.product_id or p.sku or '',<br> name = p.name,<br> price = p.price,<br> qty = p.quantity,<br> category = p.category,<br> brand = p.brand,<br> variant = p.variant<br> }<br> end)<br>return TO_STRING(mapped) | Updated body parameter |
parameter | playbook.yaml | product_removed | return {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}} | local product = {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}}<br>return TO_STRING(product) | Updated body parameter |
parameter | playbook.yaml | product_viewed | return {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}} | local product = {{<br> id = input.properties.product_id or input.properties.sku or '',<br> name = input.properties.name,<br> price = input.properties.price,<br> qty = input.properties.quantity,<br> category = input.properties.category,<br> brand = input.properties.brand,<br> variant = input.properties.variant<br>}}<br>return TO_STRING(product) | Updated body parameter |
Updated 2 days ago