{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "marzipan/addtocart",
    "version": "1.0.0",
    "title": "Add to Cart",
    "category": "marzipan",
    "icon": "cart",
    "description": "Add to cart button for a product.",
    "keywords": ["add to cart", "button", "buy", "marzipan"],
    "textdomain": "marzipan",
    "editorScript": "file:./index.js",
    "editorStyle": "marzipan-editor",
    "attributes": {
        "productId": {
            "type": "string",
            "default": ""
        },
        "productType": {
            "type": "string",
            "default": "physical"
        },
        "buttonText": {
            "type": "string",
            "default": ""
        },
        "viewCartText": {
            "type": "string",
            "default": ""
        },
        "showQuantity": {
            "type": "boolean",
            "default": false
        },
        "quantity": {
            "type": "number",
            "default": 1
        },
        "redirect": {
            "type": "boolean",
            "default": false
        },
        "cartPath": {
            "type": "string",
            "default": ""
        },
        "availability": {
            "type": "string",
            "default": "all"
        },
        "outOfStock": {
            "type": "boolean",
            "default": false
        },
        "disabled": {
            "type": "boolean",
            "default": false
        }
    },
    "supports": {
        "html": false
    }
}
