From 3c6801405da3e1ad13787a35c52c501c62c99582 Mon Sep 17 00:00:00 2001 From: Matt Cole Date: Thu, 19 Jan 2023 13:08:19 -0500 Subject: [PATCH] fix: use break() for method names rather than break_() (#897) --- lib/twiml/VoiceResponse.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/twiml/VoiceResponse.ts b/lib/twiml/VoiceResponse.ts index 8b696c431d..5f97357f04 100644 --- a/lib/twiml/VoiceResponse.ts +++ b/lib/twiml/VoiceResponse.ts @@ -1264,7 +1264,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -1338,7 +1338,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -1396,7 +1396,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -1470,7 +1470,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -1544,7 +1544,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -1618,7 +1618,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -1692,7 +1692,7 @@ namespace VoiceResponse { } /** - * Attributes to pass to break_ + * Attributes to pass to break */ export interface SsmlBreakAttributes { /** strength - Set a pause based on strength */ @@ -2798,7 +2798,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak(this.say.ele("break", attributes)); @@ -3079,7 +3079,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak( @@ -3264,7 +3264,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak( @@ -3477,7 +3477,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak(this.ssmlP.ele("break", attributes)); @@ -3685,7 +3685,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak( @@ -3904,7 +3904,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak(this.ssmlS.ele("break", attributes)); @@ -4109,7 +4109,7 @@ namespace VoiceResponse { * * @param attributes - TwiML attributes */ - break_( + break( attributes?: VoiceResponse.SsmlBreakAttributes ): VoiceResponse.SsmlBreak { return new VoiceResponse.SsmlBreak(this.ssmlW.ele("break", attributes));