twilio-ruby 7.2.0 → 7.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +19 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +901 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +27 -0
- data/lib/twilio-ruby/rest/client.rb +5 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +7 -7
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +24 -7
- data/lib/twilio-ruby/rest/preview_iam.rb +6 -0
- data/lib/twilio-ruby/rest/preview_iam_base.rb +33 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +89 -14
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ba08556a001b386c939f16fa40ac4769fc3ff5c
|
4
|
+
data.tar.gz: f46241c7710f7b6deb4d3b5038a1855f557cfe2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fd587a77c48424128ee37b78cd68cd5aab23c0d0357f8a8824afa5f758ec7c44455ee22bccc32aad169412f35c0025eec8d9a619d67dc53ba81fb399e0818c4
|
7
|
+
data.tar.gz: b1727e945030c1a48a7dcb60306439ca2c27eae1cd80684c505610d62225c1dd1d17847bac9f59b9dae36814cd469426e1e0e4ecfef3b3700e8f597ea4ea8f26
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,25 @@
|
|
1
1
|
twilio-ruby changelog
|
2
2
|
=====================
|
3
3
|
|
4
|
+
[2024-06-27] Version 7.2.1
|
5
|
+
--------------------------
|
6
|
+
**Api**
|
7
|
+
- Add `transcription` resource
|
8
|
+
- Add beta feature request managed cert
|
9
|
+
|
10
|
+
**Flex**
|
11
|
+
- Changed mount name for flex_team v2 api
|
12
|
+
|
13
|
+
**Intelligence**
|
14
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
|
15
|
+
|
16
|
+
**Numbers**
|
17
|
+
- Added include_constraints query parameter to the Regulations API
|
18
|
+
|
19
|
+
**Twiml**
|
20
|
+
- Add support for `<Transcription>` noun
|
21
|
+
|
22
|
+
|
4
23
|
[2024-06-18] Version 7.2.0
|
5
24
|
--------------------------
|
6
25
|
**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.2.
|
42
|
+
gem 'twilio-ruby', '~> 7.2.1'
|
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.2.
|
48
|
+
gem install twilio-ruby -v 7.2.1
|
49
49
|
```
|
50
50
|
|
51
51
|
To build and install the development branch yourself from the latest source:
|