diff --git a/README.md b/README.md index f28431e..5327dab 100644 --- a/README.md +++ b/README.md @@ -766,18 +766,25 @@ performed by the agent and has the following structure: ```protobuf message AgentInstallStatus { - bytes server_offered_hash = 1; + string server_offered_version = 1; + bytes server_offered_hash = 2; enum Status { INSTALLED = 0; INSTALLING = 1; INSTALL_FAILED = 2; INSTALL_NO_PERMISSION = 3; } - Status status = 2; - string error_message = 3; + Status status = 3; + string error_message = 4; } ``` +