From 6ee9c6ad461934ad8ba4bfd42c64ddd89a76c77c Mon Sep 17 00:00:00 2001 From: Jon Chambers Date: Wed, 22 Feb 2023 16:22:46 -0500 Subject: [PATCH] Remove deprecated registration service response fields --- service/src/main/proto/RegistrationService.proto | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/service/src/main/proto/RegistrationService.proto b/service/src/main/proto/RegistrationService.proto index 04d7bf4f9..0e268d7e7 100644 --- a/service/src/main/proto/RegistrationService.proto +++ b/service/src/main/proto/RegistrationService.proto @@ -239,11 +239,7 @@ enum ClientType { } message SendVerificationCodeResponse { - /** - * An opaque sequence of bytes that uniquely identifies the registration - * session associated with this registration attempt. - */ - bytes session_id = 1; + reserved 1; /** * Metadata for the named session. May be absent if the session could not be @@ -329,11 +325,7 @@ message CheckVerificationCodeRequest { } message CheckVerificationCodeResponse { - /** - * The outcome of the verification attempt; true if the verification code - * matched the expected code or false otherwise. - */ - bool verified = 1; + reserved 1; /** * Metadata for the named session. May be absent if the session could not be