Skip to content
Snippets Groups Projects
Verified Commit 73f857d1 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: consolidation

parent 5db3aad9
No related branches found
No related tags found
1 merge request!2F consolidation
......@@ -8,7 +8,6 @@ lint:
- DEFAULT
- COMMENTS
- OTHER
- UNARY_RPC
except:
ignore:
breaking:
......
......@@ -552,6 +552,8 @@ message EntityResponse {
message IdResponse {
// The entity id.
string id = 1;
// The entity version.
Version version = 5;
// Errors for this entity which occurred during the current transaction. The
// presence of errors indicates that a transaction was not successful and the
// errors describe why this is the case.
......@@ -742,27 +744,6 @@ message MultiTransactionResponse {
repeated Message transaction_infos = 4;
}
// Wraps multiple sub-transaction requests of mixed types.
message MultiTransactionRequest {
// The actual payload.
repeated TransactionRequest requests = 1;
}
// A response containing only the id (of a deleted, inserted, or updated
// entity) and the usual trias of entity messages.
message IdResponse {
// The entity id.
string id = 1;
// The entity version.
Version version = 5;
// Entity errors.
repeated Message entity_errors = 2;
// Entity warnings.
repeated Message entity_warnings = 3;
// Entity info messages.
repeated Message entity_infos = 4;
}
// Entity Transaction Service
service EntityTransactionService {
// Issue multiple mixed requests
......
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