diff --git a/crabidy-core/crabidy/v1/crabidy.proto b/crabidy-core/crabidy/v1/crabidy.proto index fea0eaa..f1f00da 100644 --- a/crabidy-core/crabidy/v1/crabidy.proto +++ b/crabidy-core/crabidy/v1/crabidy.proto @@ -51,17 +51,17 @@ message GetLibraryNodeResponse { // Queue message QueueRequest { - repeated string uuid = 1; + repeated string uuids = 1; } message QueueResponse {} message ReplaceRequest { - repeated string uuid = 1; + repeated string uuids = 1; } message ReplaceResponse {} message AppendRequest { - repeated string uuid = 1; + repeated string uuids = 1; } message AppendResponse {} @@ -72,7 +72,7 @@ message RemoveResponse {} message InsertRequest { uint32 position = 1; - repeated string uuid = 2; + repeated string uuids = 2; } message InsertResponse {}