Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions apis/workflows/v1/job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,13 @@
tilebox.v1.TimeInterval time_interval = 1;
tilebox.v1.IDInterval id_interval = 2;

// Filter jobs by automation id.
tilebox.v1.ID automation_id = 3 [features.field_presence = EXPLICIT];
// Filter jobs by automations.
repeated tilebox.v1.ID automation_ids = 3;

Check failure on line 104 in apis/workflows/v1/job.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "3" on message "QueryFilters" changed name from "automation_id" to "automation_ids".

Check failure on line 104 in apis/workflows/v1/job.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "3" with name "automation_ids" on message "QueryFilters" changed cardinality from "optional with explicit presence" to "repeated".

Check failure on line 104 in apis/workflows/v1/job.proto

View workflow job for this annotation

GitHub Actions / Buf

Field "3" with name "automation_ids" on message "QueryFilters" changed option "json_name" from "automationId" to "automationIds".

// Filter jobs by states.
repeated JobState states = 4;

string name = 5 [(buf.validate.field).string.max_len = 100];
}

// QueryJobsRequest requests a list of jobs.
Expand Down
Loading