Fix xpath filtering

This commit is contained in:
Gregory Schier
2024-08-08 22:54:15 -07:00
parent 3153a38b7b
commit b5eed9bf9d
12 changed files with 35 additions and 41 deletions

View File

@@ -1,5 +1,4 @@
use serde::{Deserialize, Serialize};
use serde_json::Value;
use ts_rs::TS;
use yaak_models::models::{Environment, Folder, GrpcConnection, GrpcEvent, GrpcRequest, HttpRequest, HttpResponse, KeyValue, Workspace};
@@ -79,7 +78,7 @@ pub struct FilterRequest {
#[serde(default, rename_all = "camelCase")]
#[ts(export)]
pub struct FilterResponse {
pub items: Vec<Value>,
pub content: String,
}
#[derive(Debug, Clone, Default, Serialize, Deserialize, TS)]

View File

@@ -1,5 +1,5 @@
pub mod error;
mod events;
pub mod events;
pub mod manager;
mod nodejs;
pub mod plugin;