addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / limit
Added value: +{
+ "default": 50,
+ "description": "Maximum number of items to return (1-100, default 50)",
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Number of items to skip for pagination (default 0)",
+ "minimum": 0,
+ "type": "integer"
+}
removedOutput schema / $defs
Removed value: -{
- "TemplateSummary": {
- "description": "Simplified template information for listing.",
- "properties": {
- "entity_type": {
- "description": "Type of entity: 'template' or 'template_group'",
- "type": "string"
- },
- "folder_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Folder ID if stored in folder"
- },
- "id": {
- "description": "Template group ID",
- "type": "string"
- },
- "is_prepared": {
- "description": "Whether the group is ready for sending",
- "type": "boolean"
- },
- "last_updated": {
- "description": "Unix timestamp of last update",
- "type": "integer"
- },
- "name": {
- "description": "Template group name",
- "type": "string"
- },
- "roles": {
- "description": "All unique roles from all templates in the group",
- "items": {
- "type": "string"
- },
- "type": "array"
- }
- },
- "required": [
- "id",
- "name",
- "entity_type",
- "last_updated",
- "is_prepared",
- "roles"
- ],
- "type": "object"
- }
-}
changedOutput schema / description
Previous value: -"List of simplified template summaries."New value: +"List of simplified template summaries with pagination."
addedOutput schema / properties / has_more
Added value: +{
+ "default": false,
+ "description": "Whether more items exist beyond this page",
+ "type": "boolean"
+}
addedOutput schema / properties / limit
Added value: +{
+ "default": 50,
+ "description": "Maximum number of items in this page",
+ "type": "integer"
+}
addedOutput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Number of items skipped",
+ "type": "integer"
+}
removedOutput schema / properties / templates / items / $ref
Removed value: -"#/$defs/TemplateSummary"
addedOutput schema / properties / templates / items / description
Added value: +"Simplified template information for listing."
addedOutput schema / properties / templates / items / properties
Added value: +{
+ "entity_type": {
+ "description": "Type of entity: 'template' or 'template_group'",
+ "type": "string"
+ },
+ "folder_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Folder ID if stored in folder"
+ },
+ "id": {
+ "description": "Template group ID",
+ "type": "string"
+ },
+ "is_prepared": {
+ "description": "Whether the group is ready for sending",
+ "type": "boolean"
+ },
+ "last_updated": {
+ "description": "Unix timestamp of last update",
+ "type": "integer"
+ },
+ "name": {
+ "description": "Template group name",
+ "type": "string"
+ },
+ "roles": {
+ "description": "All unique roles from all templates in the group",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+}
addedOutput schema / properties / templates / items / required
Added value: +[
+ "id",
+ "name",
+ "entity_type",
+ "last_updated",
+ "is_prepared",
+ "roles"
+]
addedOutput schema / properties / templates / items / type
Added value: +"object"
changedOutput schema / properties / total_count / description
Previous value: -"Total number of templates"New value: +"Total number of templates across all pages"