0.5.1-pre.007

This commit is contained in:
2026-08-10 09:28:57 +02:00
parent 34a670eaec
commit a2820062eb
81 changed files with 3357 additions and 2381 deletions

View File

@@ -5,13 +5,21 @@
"type": "object",
"additionalProperties": false,
"required": [
"active_profile",
"default_profile",
"ws_endpoint_defaults",
"profiles"
],
"properties": {
"active_profile": {
"default_profile": {
"$ref": "#/$defs/non_empty_string"
},
"ws_endpoint_defaults": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/$defs/ws_endpoint_defaults"
}
},
"profiles": {
"type": "array",
"minItems": 1,
@@ -77,72 +85,6 @@
}
}
},
"ws_endpoint": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"enabled",
"provider",
"cluster",
"url",
"connect_timeout_ms",
"request_timeout_ms",
"unsubscribe_timeout_ms",
"write_channel_capacity",
"event_channel_capacity",
"auto_reconnect",
"roles"
],
"properties": {
"name": {
"$ref": "#/$defs/non_empty_string"
},
"enabled": {
"type": "boolean"
},
"provider": {
"$ref": "#/$defs/non_empty_string"
},
"cluster": {
"$ref": "#/$defs/non_empty_string"
},
"url": {
"type": "string",
"pattern": "^wss?://"
},
"connect_timeout_ms": {
"type": "integer",
"minimum": 1
},
"request_timeout_ms": {
"type": "integer",
"minimum": 1
},
"unsubscribe_timeout_ms": {
"type": "integer",
"minimum": 1
},
"write_channel_capacity": {
"type": "integer",
"minimum": 1
},
"event_channel_capacity": {
"type": "integer",
"minimum": 1
},
"auto_reconnect": {
"type": "boolean"
},
"roles": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/$defs/endpoint_role"
}
}
}
},
"endpoint_role": {
"type": "object",
"additionalProperties": false,
@@ -195,6 +137,120 @@
}
}
},
"ws_endpoint_defaults": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"connect_timeout_ms",
"request_timeout_ms",
"unsubscribe_timeout_ms",
"write_channel_capacity",
"event_channel_capacity",
"auto_reconnect"
],
"properties": {
"name": {
"$ref": "#/$defs/non_empty_string"
},
"connect_timeout_ms": {
"type": "integer",
"minimum": 1
},
"request_timeout_ms": {
"type": "integer",
"minimum": 1
},
"unsubscribe_timeout_ms": {
"type": "integer",
"minimum": 1
},
"write_channel_capacity": {
"type": "integer",
"minimum": 1
},
"event_channel_capacity": {
"type": "integer",
"minimum": 1
},
"auto_reconnect": {
"type": "boolean"
}
}
},
"ws_overrides": {
"type": "object",
"additionalProperties": false,
"properties": {
"connect_timeout_ms": {
"type": "integer",
"minimum": 1
},
"request_timeout_ms": {
"type": "integer",
"minimum": 1
},
"unsubscribe_timeout_ms": {
"type": "integer",
"minimum": 1
},
"write_channel_capacity": {
"type": "integer",
"minimum": 1
},
"event_channel_capacity": {
"type": "integer",
"minimum": 1
},
"auto_reconnect": {
"type": "boolean"
}
}
},
"ws_endpoint_source": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"defaults",
"enabled",
"provider",
"cluster",
"url",
"roles"
],
"properties": {
"name": {
"$ref": "#/$defs/non_empty_string"
},
"defaults": {
"$ref": "#/$defs/non_empty_string"
},
"enabled": {
"type": "boolean"
},
"provider": {
"$ref": "#/$defs/non_empty_string"
},
"cluster": {
"$ref": "#/$defs/non_empty_string"
},
"url": {
"type": "string",
"pattern": "^wss?://"
},
"overrides": {
"$ref": "#/$defs/ws_overrides"
},
"roles": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/$defs/endpoint_role"
}
}
}
},
"profile": {
"type": "object",
"additionalProperties": false,
@@ -218,7 +274,7 @@
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/$defs/ws_endpoint"
"$ref": "#/$defs/ws_endpoint_source"
}
}
}