ui: trim community streaming surface

This commit is contained in:
a.tolmachev
2026-05-03 18:03:23 +00:00
parent 82b7b7278e
commit 20598ff5dc
11 changed files with 104 additions and 40 deletions
+8 -8
View File
@@ -47,24 +47,24 @@
function defaultProtocolCapabilities() {
return {
rest: {
supports_execution_modes: ['unary', 'window', 'session', 'async_job'],
supports_transport_behaviors: ['request_response', 'server_stream', 'deferred_result'],
supports_execution_modes: ['unary'],
supports_transport_behaviors: ['request_response'],
},
graphql: {
supports_execution_modes: ['unary'],
supports_transport_behaviors: ['request_response'],
},
grpc: {
supports_execution_modes: ['unary', 'window', 'session', 'async_job'],
supports_transport_behaviors: ['request_response', 'server_stream'],
supports_execution_modes: ['unary'],
supports_transport_behaviors: ['request_response'],
},
websocket: {
supports_execution_modes: ['window', 'session', 'async_job'],
supports_transport_behaviors: ['server_stream', 'stateful_session', 'deferred_result'],
supports_execution_modes: ['unary'],
supports_transport_behaviors: ['request_response'],
},
soap: {
supports_execution_modes: ['unary', 'async_job'],
supports_transport_behaviors: ['request_response', 'server_stream', 'deferred_result'],
supports_execution_modes: ['unary'],
supports_transport_behaviors: ['request_response'],
},
};
}