Created
July 9, 2025 20:02
-
-
Save codigoconjuan/9930d8449772e4c63fb27f9854a966cf to your computer and use it in GitHub Desktop.
Body para el Product Action de Astro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const body = { | |
title: input.title, | |
freshcoffee_categories: input.freshcoffee_category, | |
featured_media: input.featured_media, | |
status: 'publish', | |
...(input.variable_price === "true" ? { | |
acf: { | |
variable_price: input.variable_price, | |
small: { | |
size: 'Chico', | |
price: input.small | |
}, | |
medium: { | |
size: 'Mediano', | |
price: input.medium | |
}, | |
large: { | |
size: 'Grande', | |
price: input.large | |
}, | |
}, | |
} : { | |
acf: { | |
variable_price: input.variable_price, | |
price: input.price | |
} | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment