Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use break() for method names rather than break_() #897

Merged
merged 1 commit into from Jan 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 14 additions & 14 deletions lib/twiml/VoiceResponse.ts
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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));
Expand Down Expand Up @@ -3079,7 +3079,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(
Expand Down Expand Up @@ -3264,7 +3264,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(
Expand Down Expand Up @@ -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));
Expand Down Expand Up @@ -3685,7 +3685,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(
Expand Down Expand Up @@ -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));
Expand Down Expand Up @@ -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));
Expand Down