diff --git a/backend/ee-repo-ref.txt b/backend/ee-repo-ref.txt index 8260652cea..1513557694 100644 --- a/backend/ee-repo-ref.txt +++ b/backend/ee-repo-ref.txt @@ -1 +1 @@ -7cf76a8c6694b59f4615b0c8fa61fb02411326a7 \ No newline at end of file +bf13f97982463ff0623c9bb10e6955a3bf57cb13 \ No newline at end of file diff --git a/backend/windmill-api/src/jobs.rs b/backend/windmill-api/src/jobs.rs index 43db962e6a..5318cc7d2b 100644 --- a/backend/windmill-api/src/jobs.rs +++ b/backend/windmill-api/src/jobs.rs @@ -1036,17 +1036,17 @@ pub struct ListableCompletedJob { #[derive(Deserialize, Clone, Default)] pub struct RunJobQuery { - scheduled_for: Option>, - scheduled_in_secs: Option, - parent_job: Option, - root_job: Option, - invisible_to_owner: Option, - queue_limit: Option, - payload: Option, - job_id: Option, - tag: Option, - timeout: Option, - cache_ttl: Option, + pub scheduled_for: Option>, + pub scheduled_in_secs: Option, + pub parent_job: Option, + pub root_job: Option, + pub invisible_to_owner: Option, + pub queue_limit: Option, + pub payload: Option, + pub job_id: Option, + pub tag: Option, + pub timeout: Option, + pub cache_ttl: Option, } impl RunJobQuery {