From a97fa3530eef629cc8694391a7d35fa4415ca575 Mon Sep 17 00:00:00 2001 From: ko_oler <kooler89@gmail.com> Date: Tue, 12 Nov 2024 13:05:26 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=BD=D0=B0=D0=B7=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D1=8F=20=D0=BF=D0=BE=D0=BB=D0=B5=D0=B9=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?Collections?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/collections/collections.proto | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/proto/collections/collections.proto b/proto/collections/collections.proto index 4e34c5c..8e37ae5 100644 --- a/proto/collections/collections.proto +++ b/proto/collections/collections.proto @@ -85,7 +85,7 @@ message Collection { } message CreateRequest { - Collection collection = 1; + Collection coll = 1; } message CreateResponse { Collection created = 1; @@ -98,12 +98,12 @@ message GetOptions { message GetRequest { string space_id = 1; string env_id = 2; - string collection_id = 3; + string id = 3; GetOptions options = 4; } message GetResponse { - Collection collection = 1; + Collection coll = 1; } message ListRequest { @@ -122,24 +122,24 @@ message ListRequest { Filter filter = 5; } message ListResponse { - repeated Collection collections = 1; + repeated Collection colls = 1; } message UpdateRequest { - Collection collection = 1; + Collection coll = 1; } message SetSchemaRequest { string space_id = 1; string env_id = 2; - string collection_id = 3; + string id = 3; string schema = 4; } message DeleteRequest { string space_id = 1; string env_id = 2; - string collection_id = 3; + string id = 3; } service Collections { -- GitLab