From a0dcec9733ed96e2686de9783149e9053c0c320d Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 4 Mar 2025 13:41:26 -0500 Subject: [PATCH] Add ENCRYPTION_CHANNEL_ACKNOWLEDGE_MESSAGE case to StandardMethods enum --- src/Socialbox/Enums/StandardMethods.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Socialbox/Enums/StandardMethods.php b/src/Socialbox/Enums/StandardMethods.php index 66eb290..2bdc72f 100644 --- a/src/Socialbox/Enums/StandardMethods.php +++ b/src/Socialbox/Enums/StandardMethods.php @@ -79,6 +79,7 @@ // Encryption Channel Methods case ENCRYPTION_ACCEPT_CHANNEL = 'encryptionAcceptChannel'; + case ENCRYPTION_CHANNEL_ACKNOWLEDGE_MESSAGE = 'encryptionChannelAcknowledgeMessage'; case ENCRYPTION_CHANNEL_EXISTS = 'encryptionChannelExists'; case ENCRYPTION_CHANNEL_SEND = 'encryptionChannelSend'; case ENCRYPTION_CLOSE_CHANNEL = 'encryptionCloseChannel';