ci: fix swiftformat and bun CI

This commit is contained in:
Peter Steinberger
2025-12-18 08:55:47 +01:00
parent 2f21b94a76
commit 5c705ab675
20 changed files with 259 additions and 93 deletions

View File

@@ -51,6 +51,14 @@
"minLength": 1,
"type": "string"
},
"deviceFamily": {
"minLength": 1,
"type": "string"
},
"modelIdentifier": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -185,6 +193,14 @@
"minLength": 1,
"type": "string"
},
"deviceFamily": {
"minLength": 1,
"type": "string"
},
"modelIdentifier": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -538,6 +554,14 @@
"minLength": 1,
"type": "string"
},
"deviceFamily": {
"minLength": 1,
"type": "string"
},
"modelIdentifier": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -617,6 +641,14 @@
"minLength": 1,
"type": "string"
},
"deviceFamily": {
"minLength": 1,
"type": "string"
},
"modelIdentifier": {
"minLength": 1,
"type": "string"
},
"mode": {
"minLength": 1,
"type": "string"
@@ -860,6 +892,28 @@
"minLength": 1,
"type": "string"
},
"deviceFamily": {
"minLength": 1,
"type": "string"
},
"modelIdentifier": {
"minLength": 1,
"type": "string"
},
"caps": {
"type": "array",
"items": {
"minLength": 1,
"type": "string"
}
},
"commands": {
"type": "array",
"items": {
"minLength": 1,
"type": "string"
}
},
"remoteIp": {
"minLength": 1,
"type": "string"
@@ -923,6 +977,19 @@
"type": "object",
"properties": {}
},
"NodeDescribeParams": {
"additionalProperties": false,
"type": "object",
"properties": {
"nodeId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"nodeId"
]
},
"NodeInvokeParams": {
"additionalProperties": false,
"type": "object",
@@ -1773,7 +1840,7 @@
},
"limit": {
"minimum": 1,
"maximum": 500,
"maximum": 1000,
"type": "integer"
}
},
@@ -1818,6 +1885,24 @@
"idempotencyKey"
]
},
"ChatAbortParams": {
"additionalProperties": false,
"type": "object",
"properties": {
"sessionKey": {
"minLength": 1,
"type": "string"
},
"runId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"sessionKey",
"runId"
]
},
"ChatEvent": {
"additionalProperties": false,
"type": "object",
@@ -1844,6 +1929,10 @@
"const": "final",
"type": "string"
},
{
"const": "aborted",
"type": "string"
},
{
"const": "error",
"type": "string"