twilio-ruby 7.8.4 → 7.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 717fd198518145a4a13996430b53c260cf1dd222
4
- data.tar.gz: f1360919d7fb079bfe5a550f01ed535a6cd74caa
3
+ metadata.gz: 015adc5f61d8f2195d485cca84141077ec9784b7
4
+ data.tar.gz: b8b5e6880e7742d79b25e6878c6f032de5ff593d
5
5
  SHA512:
6
- metadata.gz: d8a236114c60303410d32928124cee48a44de3c6df09fdf2010e714588b930ea436c17086271bed1bbf16dd21f3afd170e5da3841f096ca9fdad3691b37bfd98
7
- data.tar.gz: a625a235409c75329bfb9bcd400e669bfcb3aa7dee9afb8d35b0fefe787c675c6e40803589288ff2ace124bf6104ff2904258956435be514374dde952c120949
6
+ metadata.gz: 1f4d6a7aacd816af73b3b9da41e209e7b90ebc50cdeca30e653c53b9b020d225c73402b4838599cc10a4de6f5ea9548e44393ab49e7e4bc5705b2e0c9356a723
7
+ data.tar.gz: ff63e730e815fdac4417702c163d51b19bf763e047ea2ee461c51602836a0b1fce766eadb809c15b45f380715bae6f3a7e68c6c3db44e8665c7e8da0904249a8
data/CHANGES.md CHANGED
@@ -1,6 +1,28 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
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
+
4
26
  [2025-10-14] Version 7.8.4
5
27
  --------------------------
6
28
  **Library - Chore**
data/README.md CHANGED
@@ -39,13 +39,13 @@ This library supports the following Ruby implementations:
39
39
  To install using [Bundler][bundler] grab the latest stable version:
40
40
 
41
41
  ```ruby
42
- gem 'twilio-ruby', '~> 7.8.4'
42
+ gem 'twilio-ruby', '~> 7.8.5'
43
43
  ```
44
44
 
45
45
  To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
46
46
 
47
47
  ```bash
48
- gem install twilio-ruby -v 7.8.4
48
+ gem install twilio-ruby -v 7.8.5
49
49
  ```
50
50
 
51
51
  To build and install the development branch yourself from the latest source:
@@ -208,13 +208,13 @@ module Twilio
208
208
  end
209
209
 
210
210
  ##
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.
212
212
  def start_time
213
213
  @properties['start_time']
214
214
  end
215
215
 
216
216
  ##
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.
218
218
  def end_time
219
219
  @properties['end_time']
220
220
  end
@@ -232,7 +232,7 @@ module Twilio
232
232
  end
233
233
 
234
234
  ##
235
- # @return [Float]
235
+ # @return [String]
236
236
  def confidence
237
237
  @properties['confidence']
238
238
  end
@@ -32,20 +32,20 @@ module Twilio
32
32
  end
33
33
  ##
34
34
  # 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.
36
35
  # @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.
37
36
  # @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.
38
38
  # @return [ComplianceInquiriesInstance] Created ComplianceInquiriesInstance
39
39
  def create(
40
- primary_profile_sid: nil,
41
40
  notification_email: :unset,
42
- theme_set_id: :unset
41
+ theme_set_id: :unset,
42
+ primary_profile_sid: :unset
43
43
  )
44
44
 
45
45
  data = Twilio::Values.of({
46
- 'PrimaryProfileSid' => primary_profile_sid,
47
46
  'NotificationEmail' => notification_email,
48
47
  'ThemeSetId' => theme_set_id,
48
+ 'PrimaryProfileSid' => primary_profile_sid,
49
49
  })
50
50
 
51
51
  headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '7.8.4'
2
+ VERSION = '7.8.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twilio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.8.4
4
+ version: 7.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twilio API Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-14 00:00:00.000000000 Z
11
+ date: 2025-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt