diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/vyconf.proto | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index 5e77581..1849cd4 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -124,11 +124,17 @@ message Request { enum Status { SUCCESS = 0; FAIL = 1; + INVALID_PATH = 2; + INVALID_VALUE = 3; + COMMIT_IN_PROGRESS = 4; + CONFIGURATION_LOCKED = 5; + INTERNAL_ERROR = 6; + PERMISSION_DENIED = 7; } message Response { required Status status = 1; optional string output = 2; - repeated string errors = 3; - repeated string warnings = 4; + optional string error = 3; + optional string warning = 4; } |