addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
removedInput schema / properties / name / description
Removed value: -"Optional user-friendly name for the snapshot (e.g., \"Feature Complete\", \"Before Refactor\")"
addedInput schema / properties / name / maxLength
Added value: +200
addedInput schema / properties / name / minLength
Added value: +1
removedInput schema / properties / name / optional
Removed value: -true
removedInput schema / properties / projectPath
Removed value: -{
- "description": "Optional project path. Uses current active project if not provided.",
- "optional": true,
- "type": "string"
-}
removedInput schema / properties / prompt / description
Removed value: -"Description of changes being saved"
addedInput schema / properties / prompt / maxLength
Added value: +2000
addedInput schema / properties / prompt / minLength
Added value: +1
addedInput schema / properties / skipIfUnchanged
Added value: +{
+ "description": "Defaults to false for explicit backups",
+ "type": "boolean"
+}
removedInput schema / properties / tags / description
Removed value: -"Optional tags for categorizing snapshots (e.g., [\"stable\", \"feature\"])"
addedInput schema / properties / tags / items / maxLength
Added value: +80
addedInput schema / properties / tags / items / minLength
Added value: +1
addedInput schema / properties / tags / maxItems
Added value: +32
removedInput schema / properties / tags / optional
Removed value: -true
removedInput schema / required
Removed value: -[
- "prompt"
-]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "error": {
+ "type": "string"
+ },
+ "message": {
+ "type": "string"
+ },
+ "success": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "success",
+ "message"
+ ],
+ "type": "object"
+}