block.json
116 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "woocommerce/coupon-code", |
| 5 | "version": "1.0.0", |
| 6 | "title": "Coupon Code", |
| 7 | "category": "woocommerce", |
| 8 | "description": "Include a coupon code to entice customers to make a purchase.", |
| 9 | "supports": { |
| 10 | "email": true, |
| 11 | "html": false, |
| 12 | "align": true, |
| 13 | "color": { |
| 14 | "text": true, |
| 15 | "background": true |
| 16 | }, |
| 17 | "typography": { |
| 18 | "fontSize": true |
| 19 | }, |
| 20 | "spacing": { |
| 21 | "margin": true, |
| 22 | "padding": true |
| 23 | }, |
| 24 | "__experimentalBorder": { |
| 25 | "color": true, |
| 26 | "radius": true, |
| 27 | "style": true, |
| 28 | "width": true |
| 29 | } |
| 30 | }, |
| 31 | "attributes": { |
| 32 | "couponCode": { |
| 33 | "type": "string", |
| 34 | "default": "" |
| 35 | }, |
| 36 | "source": { |
| 37 | "type": "string", |
| 38 | "default": "createNew", |
| 39 | "enum": [ "createNew", "existing" ] |
| 40 | }, |
| 41 | "discountType": { |
| 42 | "type": "string", |
| 43 | "default": "percent" |
| 44 | }, |
| 45 | "amount": { |
| 46 | "type": "number", |
| 47 | "default": 10 |
| 48 | }, |
| 49 | "expiryDay": { |
| 50 | "type": "number", |
| 51 | "default": 10 |
| 52 | }, |
| 53 | "freeShipping": { |
| 54 | "type": "boolean", |
| 55 | "default": false |
| 56 | }, |
| 57 | "usageLimit": { |
| 58 | "type": "number", |
| 59 | "default": 0 |
| 60 | }, |
| 61 | "usageLimitPerUser": { |
| 62 | "type": "number", |
| 63 | "default": 0 |
| 64 | }, |
| 65 | "minimumAmount": { |
| 66 | "type": "string", |
| 67 | "default": "" |
| 68 | }, |
| 69 | "maximumAmount": { |
| 70 | "type": "string", |
| 71 | "default": "" |
| 72 | }, |
| 73 | "individualUse": { |
| 74 | "type": "boolean", |
| 75 | "default": false |
| 76 | }, |
| 77 | "excludeSaleItems": { |
| 78 | "type": "boolean", |
| 79 | "default": false |
| 80 | }, |
| 81 | "productIds": { |
| 82 | "type": "array", |
| 83 | "default": [], |
| 84 | "items": { |
| 85 | "type": "object" |
| 86 | } |
| 87 | }, |
| 88 | "excludedProductIds": { |
| 89 | "type": "array", |
| 90 | "default": [], |
| 91 | "items": { |
| 92 | "type": "object" |
| 93 | } |
| 94 | }, |
| 95 | "productCategoryIds": { |
| 96 | "type": "array", |
| 97 | "default": [], |
| 98 | "items": { |
| 99 | "type": "object" |
| 100 | } |
| 101 | }, |
| 102 | "excludedProductCategoryIds": { |
| 103 | "type": "array", |
| 104 | "default": [], |
| 105 | "items": { |
| 106 | "type": "object" |
| 107 | } |
| 108 | }, |
| 109 | "emailRestrictions": { |
| 110 | "type": "string", |
| 111 | "default": "" |
| 112 | } |
| 113 | }, |
| 114 | "textdomain": "woocommerce" |
| 115 | } |
| 116 |