removedInput schema / additionalProperties
Removed value: -false
addedInput schema / properties / fillColor
Added value: +{
+ "description": "Fill color in RGBA format",
+ "properties": {
+ "a": {
+ "description": "Alpha component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "b": {
+ "description": "Blue component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "g": {
+ "description": "Green component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "r": {
+ "description": "Red component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "r",
+ "g",
+ "b"
+ ],
+ "type": "object"
+}
addedInput schema / properties / height
Added value: +{
+ "description": "Height of the star",
+ "type": "number"
+}
addedInput schema / properties / innerRadius
Added value: +{
+ "description": "Inner radius ratio (0.01-0.99, default: 0.5)",
+ "maximum": 0.99,
+ "minimum": 0.01,
+ "type": "number"
+}
addedInput schema / properties / name
Added value: +{
+ "description": "Optional name for the star",
+ "type": "string"
+}
addedInput schema / properties / parentId
Added value: +{
+ "description": "Optional parent node ID to append the star to",
+ "type": "string"
+}
addedInput schema / properties / points
Added value: +{
+ "description": "Number of points (default: 5)",
+ "minimum": 3,
+ "type": "number"
+}
addedInput schema / properties / strokeColor
Added value: +{
+ "description": "Stroke color in RGBA format",
+ "properties": {
+ "a": {
+ "description": "Alpha component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "b": {
+ "description": "Blue component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "g": {
+ "description": "Green component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "r": {
+ "description": "Red component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "r",
+ "g",
+ "b"
+ ],
+ "type": "object"
+}
addedInput schema / properties / strokeWeight
Added value: +{
+ "description": "Stroke weight",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
addedInput schema / properties / width
Added value: +{
+ "description": "Width of the star",
+ "type": "number"
+}
addedInput schema / properties / x
Added value: +{
+ "description": "X position",
+ "type": "number"
+}
addedInput schema / properties / y
Added value: +{
+ "description": "Y position",
+ "type": "number"
+}
addedInput schema / required
Added value: +[
+ "x",
+ "y",
+ "width",
+ "height"
+]