Skip to content

Commit

Permalink
[Librarian] Regenerated @ f75e0fb81b57afeb6b457dc85e19644ebb530f9b
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Feb 27, 2024
1 parent 4a057e2 commit ba44209
Show file tree
Hide file tree
Showing 11 changed files with 76 additions and 1,207 deletions.
27 changes: 27 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
twilio-ruby changelog
=====================

[2024-02-27] Version 6.12.0
---------------------------
**Library - Chore**
- [PR #712](https://github.com/twilio/twilio-ruby/pull/712): cluster tests enabled. Thanks to [@sbansla](https://github.com/sbansla)!

**Api**
- remove feedback and feedback summary from call resource

**Flex**
- Adding `routing_properties` to Interactions Channels Participant

**Lookups**
- Add new `line_status` package to the lookup response
- Remove `live_activity` package from the lookup response **(breaking change)**

**Messaging**
- Add tollfree multiple rejection reasons response array

**Trusthub**
- Add ENUM for businessRegistrationAuthority in compliance_registration. **(breaking change)**
- Add new field in isIsvEmbed in compliance_registration.
- Add additional optional fields in compliance_registration for Individual business type.

**Twiml**
- Add support for new Amazon Polly and Google voices (Q1 2024) for `Say` verb


[2024-02-09] Version 6.11.0
---------------------------
**Library - Chore**
Expand Down
35 changes: 1 addition & 34 deletions lib/twilio-ruby/rest/api/v2010/account/call.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ def initialize(version, account_sid: nil)
# Path Solution
@solution = { account_sid: account_sid }
@uri = "/Accounts/#{@solution[:account_sid]}/Calls.json"
# Components
@feedback_summaries = nil

end
##
# Create the CallInstance
Expand Down Expand Up @@ -302,19 +301,6 @@ def get_page(target_url)
end


##
# Access the feedback_summaries
# @return [FeedbackSummaryList]
# @return [FeedbackSummaryContext] if sid was passed.
def feedback_summaries(sid=:unset)
raise ArgumentError, 'sid cannot be nil' if sid.nil?

if sid != :unset
return FeedbackSummaryContext.new(@version, @solution[:account_sid],sid )
end

@feedback_summaries ||= FeedbackSummaryList.new(@version, account_sid: @solution[:account_sid] )
end

# Provide a user friendly representation
def to_s
Expand Down Expand Up @@ -345,7 +331,6 @@ def initialize(version, account_sid, sid)
@payments = nil
@recordings = nil
@notifications = nil
@feedback = nil
@streams = nil
end
##
Expand Down Expand Up @@ -536,17 +521,6 @@ def notifications(sid=:unset)
@notifications
end
##
# Access the feedback
# @return [FeedbackList]
# @return [FeedbackContext]
def feedback
FeedbackContext.new(
@version,
@solution[:account_sid],
@solution[:sid]
)
end
##
# Access the streams
# @return [StreamList]
# @return [StreamContext] if sid was passed.
Expand Down Expand Up @@ -926,13 +900,6 @@ def notifications
context.notifications
end

##
# Access the feedback
# @return [feedback] feedback
def feedback
context.feedback
end

##
# Access the streams
# @return [streams] streams
Expand Down
267 changes: 0 additions & 267 deletions lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb

This file was deleted.

Loading

0 comments on commit ba44209

Please sign in to comment.