chore(ci): sync protocol + swiftformat

This commit is contained in:
Peter Steinberger
2025-12-14 00:36:30 +00:00
parent 2710841801
commit dd763b45e1
4 changed files with 60 additions and 5 deletions

View File

@@ -181,6 +181,10 @@
"minLength": 1,
"type": "string"
},
"platform": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -530,6 +534,10 @@
"minLength": 1,
"type": "string"
},
"platform": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -605,6 +613,10 @@
"minLength": 1,
"type": "string"
},
"platform": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -906,6 +918,39 @@
"token"
]
},
"NodeListParams": {
"additionalProperties": false,
"type": "object",
"properties": {}
},
"NodeInvokeParams": {
"additionalProperties": false,
"type": "object",
"properties": {
"nodeId": {
"minLength": 1,
"type": "string"
},
"command": {
"minLength": 1,
"type": "string"
},
"params": {},
"timeoutMs": {
"minimum": 0,
"type": "integer"
},
"idempotencyKey": {
"minLength": 1,
"type": "string"
}
},
"required": [
"nodeId",
"command",
"idempotencyKey"
]
},
"SessionsListParams": {
"additionalProperties": false,
"type": "object",