v1.3.0

Version 1.3.0

09/18/25

TypeLocationEventPrevious VersionUpdated VersionNotes
parameterplaybook.yamlN/A1.2.01.3.0Updated version parameter
parameterplaybook.yamlcart_viewedlocal 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
parameterplaybook.yamlcheckout_startedlocal 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
parameterplaybook.yamlorder_completedlocal 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
parameterplaybook.yamlproduct_addedlocal 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
parameterplaybook.yamlproduct_clickedlocal 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
parameterplaybook.yamlproduct_list_viewedlocal 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
parameterplaybook.yamlproduct_removedlocal 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
parameterplaybook.yamlproduct_viewedlocal 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