From c2118778ee4e72d0427b7fe2b6911f143087ad73 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 24 Aug 2026 14:31:12 -0500 Subject: [PATCH] [noise] Move NoiseResumeTicket to message id 152 --- esphome/components/api/api.proto | 2 +- esphome/components/api/api_pb2.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/api/api.proto b/esphome/components/api/api.proto index e313b7e38a..61ad21964f 100644 --- a/esphome/components/api/api.proto +++ b/esphome/components/api/api.proto @@ -898,7 +898,7 @@ message NoiseEncryptionSetKeyResponse { // issues a fresh ticket on that connection. Never sent on plaintext // connections. Clients that do not understand it drop it silently. message NoiseResumeTicket { - option (id) = 151; + option (id) = 152; option (source) = SOURCE_SERVER; option (ifdef) = "USE_API_NOISE"; diff --git a/esphome/components/api/api_pb2.h b/esphome/components/api/api_pb2.h index 990b30b2be..1b44587561 100644 --- a/esphome/components/api/api_pb2.h +++ b/esphome/components/api/api_pb2.h @@ -1135,7 +1135,7 @@ class NoiseEncryptionSetKeyResponse final : public ProtoMessage { }; class NoiseResumeTicket final : public ProtoMessage { public: - static constexpr uint8_t MESSAGE_TYPE = 151; + static constexpr uint8_t MESSAGE_TYPE = 152; static constexpr uint8_t ESTIMATED_SIZE = 38; #ifdef HAS_PROTO_MESSAGE_DUMP const LogString *message_name() const override { return LOG_STR("noise_resume_ticket"); }