add columns to watch

This commit is contained in:
Ben Miller
2024-11-17 09:33:02 -07:00
parent 9d234c77d9
commit a1f5e04797

View File

@ -48,6 +48,21 @@ export function columnOnEditHandler(e: GoogleAppsScript.Events.SheetsOnEdit) {
case "shopify_status": case "shopify_status":
updateProductToShopify(row) updateProductToShopify(row)
break break
case "title":
updateProductToShopify(row)
break
case "category":
updateProductToShopify(row)
break
case "product_type":
updateProductToShopify(row)
break
case "tags":
updateProductToShopify(row)
break
case "description":
updateProductToShopify(row)
break
case "price": case "price":
updateProductToShopify(row) updateProductToShopify(row)
break break