Skip to content

Commit b9e6094

Browse files
committed
[Librarian] Regenerated @ a264875856b0343f622eafc05d7b82d1a272cd01 36d9907dbca3a7fad889a93ed011b406aae575ec
1 parent 0b409f3 commit b9e6094

File tree

3 files changed

+29
-7
lines changed

3 files changed

+29
-7
lines changed

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
twilio-ruby changelog
22
=====================
33

4+
[2025-10-28] Version 7.8.5
5+
--------------------------
6+
**Ai**
7+
- Add `error` as possible transcript status
8+
- Add `error` as possible transcript status
9+
10+
**Chat**
11+
- Updated v2 UserChannel `channel_status` from `not_participating` to `notParticipating`
12+
13+
**Intelligence**
14+
- Make intelligence work with RestProxy
15+
- Add additional enums to better represent the possible states
16+
- Add `error` enum to transcription status to better align with possible outputs
17+
- Add `json` output type to text classification
18+
19+
**Trusthub**
20+
- Remove required parameter Primary Profile Sid from compliance_inquiry and compliance_inquiry_individual
21+
22+
**Accounts**
23+
- Add Messaging GeoPermissions API changes
24+
25+
426
[2025-10-14] Version 7.8.4
527
--------------------------
628
**Library - Chore**

lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ def sentence_index
208208
end
209209

210210
##
211-
# @return [Float] Offset from the beginning of the transcript when this sentence starts.
211+
# @return [String] Offset from the beginning of the transcript when this sentence starts.
212212
def start_time
213213
@properties['start_time']
214214
end
215215

216216
##
217-
# @return [Float] Offset from the beginning of the transcript when this sentence ends.
217+
# @return [String] Offset from the beginning of the transcript when this sentence ends.
218218
def end_time
219219
@properties['end_time']
220220
end
@@ -232,7 +232,7 @@ def sid
232232
end
233233

234234
##
235-
# @return [Float]
235+
# @return [String]
236236
def confidence
237237
@properties['confidence']
238238
end

lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ def initialize(version)
3232
end
3333
##
3434
# Create the ComplianceInquiriesInstance
35-
# @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
3635
# @param [String] notification_email The email address that approval status updates will be sent to. If not specified, the email address associated with your primary customer profile will be used.
3736
# @param [String] theme_set_id Theme id for styling the inquiry form.
37+
# @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
3838
# @return [ComplianceInquiriesInstance] Created ComplianceInquiriesInstance
3939
def create(
40-
primary_profile_sid: nil,
4140
notification_email: :unset,
42-
theme_set_id: :unset
41+
theme_set_id: :unset,
42+
primary_profile_sid: :unset
4343
)
4444

4545
data = Twilio::Values.of({
46-
'PrimaryProfileSid' => primary_profile_sid,
4746
'NotificationEmail' => notification_email,
4847
'ThemeSetId' => theme_set_id,
48+
'PrimaryProfileSid' => primary_profile_sid,
4949
})
5050

5151
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })

0 commit comments

Comments
 (0)