feat: add window execution to runtime

This commit is contained in:
a.tolmachev
2026-04-06 10:38:23 +03:00
parent 7e4f3d142e
commit 8204a59dac
10 changed files with 708 additions and 27 deletions
+13
View File
@@ -0,0 +1,13 @@
use serde::{Deserialize, Serialize};
use serde_json::Value;
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct WindowExecutionResult {
pub summary: Value,
pub items: Vec<Value>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<Value>,
pub window_complete: bool,
pub truncated: bool,
pub has_more: bool,
}