Skip to content

Commit

Permalink
added enum sort for listquery
Browse files Browse the repository at this point in the history
  • Loading branch information
dimquaa committed Mar 19, 2024
1 parent 07771eb commit 9b80c6d
Show file tree
Hide file tree
Showing 13 changed files with 894 additions and 780 deletions.
561 changes: 306 additions & 255 deletions api.swagger.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion eventbus/eventbus.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion handsfree/handsfree.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/access/access.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/accounts/accounts.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/devices/devices.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/namespaces/namespaces.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,085 changes: 571 additions & 514 deletions node/node.pb.go

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion node/node.proto
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,20 @@ message DeleteCredentialsRequest {
message DeleteResponse {}
message EmptyMessage {}

enum Sort {
title = 0;
last_updated = 1;
enabled = 2;
}

message QueryRequest {
optional string namespace = 1;
optional string account = 2;

optional int64 offset = 3;
optional int64 limit = 4;
optional string field = 5;
optional string sort = 6;
optional Sort sort = 6;

map<string, google.protobuf.Value> filters = 7;
}
Expand Down
2 changes: 1 addition & 1 deletion node/sessions/sessions.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/plugins.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shadow/shadow.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion timeseries/timeseries.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9b80c6d

Please sign in to comment.