Skip to content
Snippets Groups Projects
Commit 13c81e75 authored by ko_oler's avatar ko_oler
Browse files

Обновлены спецификации сервисов с учетом добавления EventMiddleware

parent a5054e6e
No related branches found
No related tags found
1 merge request!65Draft: Добавлена спецификация на события в системе
......@@ -124,6 +124,46 @@ message FindResponse {
int32 total = 2;
}
message EventAbortTransfer {
string id = 1;
string ord_id = 2;
}
message EventCreate {
string id = 1;
string ord_id = 2;
}
message EventDelete {
string id = 1;
string ord_id = 2;
}
message EventMove {
string id = 1;
string ord_id = 2;
}
message EventTransfer {
string id = 1;
string ord_id = 2;
}
message EventUpdate {
string id = 1;
string ord_id = 2;
}
message EventUpdateConfig {
string id = 1;
string ord_id = 2;
}
message EventMigrate {
string id = 1;
string ord_id = 2;
}
service Spaces {
rpc Create(CreateRequest) returns(CreateResponse) {}
rpc Get(GetRequest) returns(GetResponse) {}
......
......@@ -73,6 +73,17 @@ message GetByIdentityResponse {
User user = 1;
}
message EventCreate {
string id = 1;
}
message EventUpdate {
string id = 1;
}
message EventDelete {
string id = 1;
}
service Users {
// Создание пользователя или регистрация текущего пользователя в системе, если create.id == `current`
rpc Create(CreateRequest) returns(CreateResponse) {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment