From b453e285fd3311b185d077257a73cf43d3d09888 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 24 Nov 2025 16:32:28 +0100 Subject: [PATCH] Experiment with Twilio webhook updates (no functional change yet) --- src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.ts b/src/index.ts index 1a2326011..9df8793bd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -97,6 +97,11 @@ type TwilioSenderListClient = { }; }; }; + v1: { + services: (sid: string) => { + update: (params: Record) => Promise; + }; + }; }; incomingPhoneNumbers: IncomingPhoneNumbersClient; };