twilio-ruby 6.0.1 → 6.0.2
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 +4 -4
- data/CHANGES.md +12 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +5 -2
- data/lib/twilio-ruby/rest/client.rb +5 -0
- data/lib/twilio-ruby/rest/intelligence/v2/service.rb +511 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb +226 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb +383 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +250 -0
- data/lib/twilio-ruby/rest/intelligence/v2/transcript.rb +540 -0
- data/lib/twilio-ruby/rest/intelligence/v2.rb +64 -0
- data/lib/twilio-ruby/rest/intelligence.rb +6 -0
- data/lib/twilio-ruby/rest/intelligence_base.rb +38 -0
- data/lib/twilio-ruby/rest/messaging/v1/service/us_app_to_person.rb +7 -0
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +2 -2
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +10 -2
@@ -377,7 +377,7 @@ module Twilio
|
|
377
377
|
end
|
378
378
|
|
379
379
|
##
|
380
|
-
# @return [String] The total data usage (download and upload combined) in Megabytes that each Super SIM assigned to the Fleet can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000). Defaults to
|
380
|
+
# @return [String] The total data usage (download and upload combined) in Megabytes that each Super SIM assigned to the Fleet can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000). Defaults to 250MB.
|
381
381
|
def data_limit
|
382
382
|
@properties['data_limit']
|
383
383
|
end
|
@@ -389,7 +389,7 @@ module Twilio
|
|
389
389
|
end
|
390
390
|
|
391
391
|
##
|
392
|
-
# @return [Boolean] Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands. Defaults to `
|
392
|
+
# @return [Boolean] Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands. Defaults to `false`.
|
393
393
|
def sms_commands_enabled
|
394
394
|
@properties['sms_commands_enabled']
|
395
395
|
end
|
data/lib/twilio-ruby/version.rb
CHANGED
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: 6.0.
|
4
|
+
version: 6.0.2
|
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: 2023-
|
11
|
+
date: 2023-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -478,6 +478,14 @@ files:
|
|
478
478
|
- lib/twilio-ruby/rest/insights/v1/room/participant.rb
|
479
479
|
- lib/twilio-ruby/rest/insights/v1/setting.rb
|
480
480
|
- lib/twilio-ruby/rest/insights_base.rb
|
481
|
+
- lib/twilio-ruby/rest/intelligence.rb
|
482
|
+
- lib/twilio-ruby/rest/intelligence/v2.rb
|
483
|
+
- lib/twilio-ruby/rest/intelligence/v2/service.rb
|
484
|
+
- lib/twilio-ruby/rest/intelligence/v2/transcript.rb
|
485
|
+
- lib/twilio-ruby/rest/intelligence/v2/transcript/media.rb
|
486
|
+
- lib/twilio-ruby/rest/intelligence/v2/transcript/operator_result.rb
|
487
|
+
- lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb
|
488
|
+
- lib/twilio-ruby/rest/intelligence_base.rb
|
481
489
|
- lib/twilio-ruby/rest/ip_messaging.rb
|
482
490
|
- lib/twilio-ruby/rest/ip_messaging/v1.rb
|
483
491
|
- lib/twilio-ruby/rest/ip_messaging/v1/credential.rb
|