changedInput schema / properties / components / description
Previous value: -"Array of component names to install (e.g., ['button', 'card', 'dialog']). Use '--all' as a single item to install all components."New value: +"Names to install, or a single 'all'/'--all' item."
addedInput schema / properties / components / minItems
Added value: +1
removedInput schema / properties / cwd / description
Removed value: -"Working directory for package manager detection. Defaults to current directory."
addedInput schema / properties / framework
Added value: +{
+ "description": "Optional framework override.",
+ "enum": [
+ "astro",
+ "react"
+ ],
+ "type": "string"
+}
changedInput schema / properties / init / description
Previous value: -"Whether to include the init command for new projects. Set to true if Starwind UI has not been initialized in the project yet."New value: +"Prepend project initialization for a new setup."
addedInput schema / properties / overwrite
Added value: +{
+ "description": "Allow the CLI to overwrite existing files.",
+ "type": "boolean"
+}
removedInput schema / properties / packageManager / description
Removed value: -"Override the auto-detected package manager. Use this if package manager detection fails or you want to force a specific one."
changedInput schema / properties / pro / description
Previous value: -"Set to true for Starwind Pro projects. This adds --pro to the init command. Required when using @starwind-pro/ blocks. Auto-detected if components contain @starwind-pro/ prefix."New value: +"Configure paid Pro authorization during optional init."
addedInput schema / properties / surface
Added value: +{
+ "description": "Defaults to styled.",
+ "enum": [
+ "styled",
+ "primitive"
+ ],
+ "type": "string"
+}
addedInput schema / properties / to
Added value: +{
+ "description": "Primitive destination passed to --to.",
+ "type": "string"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "result": {
+ "additionalProperties": {},
+ "description": "Structured Starwind installation result.",
+ "type": "object"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "type": "object"
+}