Skip to content

Commit 94c8438

Browse files
Sync public API export @ 7a9d6ea
Automated sync of public API export.
1 parent e90d5b1 commit 94c8438

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

src/bitdrift/public/unary/common/v1/common.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ message Sort {
2828
DESC = 1;
2929
}
3030

31-
// The field to sort by.
31+
// The field to sort by. Permitted values are endpoint-specific and are documented on each
32+
// request's sort_by field.
3233
string field = 1 [(validate.rules).string = {max_len: 100}];
3334

3435
// The direction to sort by.

src/bitdrift/public/unary/issues/v1/issues.proto

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,10 @@ message ListIssueGroupsRequest {
217217
lte: 100
218218
}];
219219

220-
// Sort the list of issues based on the given list of fields. The order of the fields
221-
// in this list determines the order in which sort is applied.
220+
// Sort the list of issue groups based on the given list of fields. The order of the fields
221+
// in this list determines the order in which sort is applied. Permitted values: "age",
222+
// "start_time", "end_time", "reason", "context", "detail", "total_value", "unique_count",
223+
// "session_count", and "platform".
222224
repeated .bitdrift.public.unary.common.v1.Sort sort_by = 4 [(validate.rules).repeated = {max_items: 100}];
223225

224226
.bitdrift.public.unary.issues.v1.IssueQuery issue_query = 5;
@@ -357,7 +359,8 @@ message ListIssuesRequest {
357359
repeated .bitdrift.public.unary.issues.v1.ListIssuesRequest.ListIssuesFilters filters = 4 [(validate.rules).repeated = {max_items: 100}];
358360

359361
// Sort the list of issues based on the given list of fields. The order of the fields
360-
// in this list determines the order in which sort is applied.
362+
// in this list determines the order in which sort is applied. Permitted values:
363+
// "occurred_at", "reason", "context", and "detail".
361364
repeated .bitdrift.public.unary.common.v1.Sort sort_by = 5 [(validate.rules).repeated = {max_items: 100}];
362365

363366
.bitdrift.public.unary.issues.v1.IssueQuery issue_query = 6;

src/bitdrift/public/unary/workflows/v1/workflow.proto

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,10 @@ message ListWorkflowsRequest {
10211021
repeated .bitdrift.public.unary.workflows.v1.Filter filters = 3 [(validate.rules).repeated = {max_items: 100}];
10221022

10231023
// Sort the list of workflows based on the given list of fields. The order of the fields
1024-
// in this list determines the order in which sort is applied.
1024+
// in this list determines the order in which sort is applied. Permitted values: "id", "name",
1025+
// "created_at", "current_user_last_viewed", "owned", "user_priority",
1026+
// "current_user_favorited", "exploration_name", "owner_user_id", "owner_email", and
1027+
// "deployed".
10251028
repeated .bitdrift.public.unary.common.v1.Sort sort_by = 4 [(validate.rules).repeated = {max_items: 100}];
10261029

10271030
// Filter the list of workflows based on the platform(s) that that workflow

0 commit comments

Comments
 (0)