Skip to content

Commit 3c68014

Browse files
authoredJan 19, 2023
fix: use break() for method names rather than break_() (#897)
1 parent 6dff2f9 commit 3c68014

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed
 

‎lib/twiml/VoiceResponse.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,7 @@ namespace VoiceResponse {
12641264
}
12651265

12661266
/**
1267-
* Attributes to pass to break_
1267+
* Attributes to pass to break
12681268
*/
12691269
export interface SsmlBreakAttributes {
12701270
/** strength - Set a pause based on strength */
@@ -1338,7 +1338,7 @@ namespace VoiceResponse {
13381338
}
13391339

13401340
/**
1341-
* Attributes to pass to break_
1341+
* Attributes to pass to break
13421342
*/
13431343
export interface SsmlBreakAttributes {
13441344
/** strength - Set a pause based on strength */
@@ -1396,7 +1396,7 @@ namespace VoiceResponse {
13961396
}
13971397

13981398
/**
1399-
* Attributes to pass to break_
1399+
* Attributes to pass to break
14001400
*/
14011401
export interface SsmlBreakAttributes {
14021402
/** strength - Set a pause based on strength */
@@ -1470,7 +1470,7 @@ namespace VoiceResponse {
14701470
}
14711471

14721472
/**
1473-
* Attributes to pass to break_
1473+
* Attributes to pass to break
14741474
*/
14751475
export interface SsmlBreakAttributes {
14761476
/** strength - Set a pause based on strength */
@@ -1544,7 +1544,7 @@ namespace VoiceResponse {
15441544
}
15451545

15461546
/**
1547-
* Attributes to pass to break_
1547+
* Attributes to pass to break
15481548
*/
15491549
export interface SsmlBreakAttributes {
15501550
/** strength - Set a pause based on strength */
@@ -1618,7 +1618,7 @@ namespace VoiceResponse {
16181618
}
16191619

16201620
/**
1621-
* Attributes to pass to break_
1621+
* Attributes to pass to break
16221622
*/
16231623
export interface SsmlBreakAttributes {
16241624
/** strength - Set a pause based on strength */
@@ -1692,7 +1692,7 @@ namespace VoiceResponse {
16921692
}
16931693

16941694
/**
1695-
* Attributes to pass to break_
1695+
* Attributes to pass to break
16961696
*/
16971697
export interface SsmlBreakAttributes {
16981698
/** strength - Set a pause based on strength */
@@ -2798,7 +2798,7 @@ namespace VoiceResponse {
27982798
*
27992799
* @param attributes - TwiML attributes
28002800
*/
2801-
break_(
2801+
break(
28022802
attributes?: VoiceResponse.SsmlBreakAttributes
28032803
): VoiceResponse.SsmlBreak {
28042804
return new VoiceResponse.SsmlBreak(this.say.ele("break", attributes));
@@ -3079,7 +3079,7 @@ namespace VoiceResponse {
30793079
*
30803080
* @param attributes - TwiML attributes
30813081
*/
3082-
break_(
3082+
break(
30833083
attributes?: VoiceResponse.SsmlBreakAttributes
30843084
): VoiceResponse.SsmlBreak {
30853085
return new VoiceResponse.SsmlBreak(
@@ -3264,7 +3264,7 @@ namespace VoiceResponse {
32643264
*
32653265
* @param attributes - TwiML attributes
32663266
*/
3267-
break_(
3267+
break(
32683268
attributes?: VoiceResponse.SsmlBreakAttributes
32693269
): VoiceResponse.SsmlBreak {
32703270
return new VoiceResponse.SsmlBreak(
@@ -3477,7 +3477,7 @@ namespace VoiceResponse {
34773477
*
34783478
* @param attributes - TwiML attributes
34793479
*/
3480-
break_(
3480+
break(
34813481
attributes?: VoiceResponse.SsmlBreakAttributes
34823482
): VoiceResponse.SsmlBreak {
34833483
return new VoiceResponse.SsmlBreak(this.ssmlP.ele("break", attributes));
@@ -3685,7 +3685,7 @@ namespace VoiceResponse {
36853685
*
36863686
* @param attributes - TwiML attributes
36873687
*/
3688-
break_(
3688+
break(
36893689
attributes?: VoiceResponse.SsmlBreakAttributes
36903690
): VoiceResponse.SsmlBreak {
36913691
return new VoiceResponse.SsmlBreak(
@@ -3904,7 +3904,7 @@ namespace VoiceResponse {
39043904
*
39053905
* @param attributes - TwiML attributes
39063906
*/
3907-
break_(
3907+
break(
39083908
attributes?: VoiceResponse.SsmlBreakAttributes
39093909
): VoiceResponse.SsmlBreak {
39103910
return new VoiceResponse.SsmlBreak(this.ssmlS.ele("break", attributes));
@@ -4109,7 +4109,7 @@ namespace VoiceResponse {
41094109
*
41104110
* @param attributes - TwiML attributes
41114111
*/
4112-
break_(
4112+
break(
41134113
attributes?: VoiceResponse.SsmlBreakAttributes
41144114
): VoiceResponse.SsmlBreak {
41154115
return new VoiceResponse.SsmlBreak(this.ssmlW.ele("break", attributes));

0 commit comments

Comments
 (0)
Please sign in to comment.