From ca85237dac62de575eac4f56331cc31887b655fd Mon Sep 17 00:00:00 2001 From: Steven Lindsay Date: Wed, 15 Jan 2025 15:30:34 +0000 Subject: [PATCH] materialization: add new capabilities for updates/deletes - Added the new capabilities to the d.ts file so they can be used in token generation. --- ably.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ably.d.ts b/ably.d.ts index 5028351ea..a738cbbfb 100644 --- a/ably.d.ts +++ b/ably.d.ts @@ -711,6 +711,10 @@ export type capabilityOp = | 'publish' | 'subscribe' | 'presence' + | 'message-update-any' + | 'message-update-own' + | 'message-delete-any' + | 'message-delete-own' | 'history' | 'stats' | 'channel-metadata'