v1.3.0
Version 1.3.0
09/18/25
| Type | Location | Event | Previous Version | Updated Version | Notes |
|---|---|---|---|---|---|
| parameter | playbook.yaml | N/A | 1.2.0 | 1.3.0 | Updated version parameter |
| parameter | playbook.yaml | cart_viewed | 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) | 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>) | Updated body parameter |
| parameter | playbook.yaml | checkout_started | 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) | 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>) | Updated body parameter |
| parameter | playbook.yaml | order_completed | 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) | 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>) | Updated body parameter |
| parameter | playbook.yaml | product_added | 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) | 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>}} | Updated body parameter |
| parameter | playbook.yaml | product_clicked | 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) | 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>}} | Updated body parameter |
| parameter | playbook.yaml | product_list_viewed | 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) | 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>) | Updated body parameter |
| parameter | playbook.yaml | product_removed | 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) | 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>}} | Updated body parameter |
| parameter | playbook.yaml | product_viewed | 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) | 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>}} | Updated body parameter |
Updated 17 days ago