addedInput schema / $defs / StatusCheckParams / properties / target / description
Added value: +"Query the overall session status"
addedInput schema / $defs / StatusFileParams / properties / target / description
Added value: +"Query file status"
addedInput schema / $defs / StatusHealthParams / properties / target / description
Added value: +"Query server health"
addedInput schema / $defs / StatusLayerParams / properties / target / description
Added value: +"Query layer status"
addedInput schema / $defs / StatusLogsClearParams
Added value: +{
+ "description": "Clear the in-memory log buffer.",
+ "properties": {
+ "target": {
+ "const": "logs_clear",
+ "default": "logs_clear",
+ "description": "Clear in-memory log entries",
+ "title": "Target",
+ "type": "string"
+ }
+ },
+ "title": "StatusLogsClearParams",
+ "type": "object"
+}
addedInput schema / $defs / StatusLogsGetParams
Added value: +{
+ "description": "Retrieve recent log entries.",
+ "properties": {
+ "job_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Job id filter",
+ "title": "Job Id"
+ },
+ "level": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Minimum level filter",
+ "title": "Level"
+ },
+ "limit": {
+ "default": 50,
+ "description": "Maximum entries",
+ "maximum": 200,
+ "minimum": 1,
+ "title": "Limit",
+ "type": "integer"
+ },
+ "source": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Source filter",
+ "title": "Source"
+ },
+ "target": {
+ "const": "logs_get",
+ "default": "logs_get",
+ "description": "Read in-memory log entries",
+ "title": "Target",
+ "type": "string"
+ }
+ },
+ "title": "StatusLogsGetParams",
+ "type": "object"
+}
addedInput schema / $defs / StatusObjectParams / properties / target / description
Added value: +"Query object status"
changedInput schema / properties / status / anyOf
Previous value: -[
- {
- "$ref": "#/$defs/StatusCheckParams"
- },
- {
- "$ref": "#/$defs/StatusFileParams"
- },
- {
- "$ref": "#/$defs/StatusObjectParams"
- },
- {
- "$ref": "#/$defs/StatusLayerParams"
- },
- {
- "$ref": "#/$defs/StatusHealthParams"
- }
-]New value: +[
+ {
+ "$ref": "#/$defs/StatusCheckParams"
+ },
+ {
+ "$ref": "#/$defs/StatusFileParams"
+ },
+ {
+ "$ref": "#/$defs/StatusObjectParams"
+ },
+ {
+ "$ref": "#/$defs/StatusLayerParams"
+ },
+ {
+ "$ref": "#/$defs/StatusHealthParams"
+ },
+ {
+ "$ref": "#/$defs/StatusLogsGetParams"
+ },
+ {
+ "$ref": "#/$defs/StatusLogsClearParams"
+ }
+]
changedInput schema / properties / status / description
Previous value: -"Status query, discriminated by `target`: check, file, object, layer or health."New value: +"Status query, discriminated by `target`: check, file, object, layer, health, logs_get or logs_clear."